@charset "UTF-8";

#fukushi-world{
    background-color: var(--fw) ;
    color: #fff;
    overflow: hidden;
    position: relative;
    font-family: "Poppins","Zen Kaku Gothic Antique", sans-serif;
    font-weight: 700;
	letter-spacing: 0.05rem;
    font-size: 1.2rem;
}
#fukushi-world h3{
    font-size: 1.2rem;
}

#fw-about{
    padding: 80px 0;
    position: relative;
}
#fw-about::before {
    content: "";
    position: absolute;
    pointer-events: none;
    right: 25%;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 26px 28px 0 28px;
    border-color: #e48d5a transparent transparent transparent;
}

@media screen and (max-width: 999px) {/*tablet*/
    #fw-about::before {
        right: 20%;
    }
}
@media screen and (min-width: 0px) and (max-width: 600px){ /*smart*/
    #fw-about::before {
        right: 15%;
    }
}