@charset "utf-8";

/* -------------
about
---------------- */

#about .about__box {
    display: flex;
    justify-content: flex-start;
    margin: 0 auto 140px;
}

#about .about__box .imgbox {
    width: 540px;
}

#about .about__box .imgbox img {
    width: 100%;
    height: auto;
}

#about .about__box .textbox {
    width: calc(100% - 540px);
    margin-top: -24px;
    padding-left: 60px;
    box-sizing: border-box;
}

#about .about__box .textbox h2 {
    margin-bottom: 20px;
    font-size: 40px;
    font-family: "游明朝体", "Yu Mincho", "YuMincho", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    line-height: 1.9;
    letter-spacing: 10px;
}

#about .about__box .textbox p {
    font-size: 16px;
    font-weight: 200;
    line-height: 2.5;
    letter-spacing: 1px;
}

#about .about__box .textbox p + p {
    margin-top: 40px;
}

/* ------------------------------------------------------------ mobile */
@media only screen and (max-width: 640px) {
    /* -------------
    about
    ---------------- */
    
    #about {
        position: relative;
    }

    #about::before {
        width: 100%;
        height: 200px;
    }

    #about .about__box {
        display: block;
        width: 100%;
        margin: 0 auto 40px;
    }

    #about .about__box .imgbox {
        width: 100%;
        margin-bottom: 20px;
    }

    #about .about__box .textbox {
        width: 100%;
        margin-top: 0;
        padding-left: 0;
    }

    #about .about__box .textbox h2 {
        margin-bottom: 16px;
        font-size: 28px;
        line-height: 1.8;
        letter-spacing: 8px;
    }

    #about .about__box .textbox p {
        font-size: 14px;
        line-height: 2;
        letter-spacing: 1px;
    }

    #about .about__box .textbox p + p {
        margin-top: 24px;
    }
}

