@charset "utf-8";

.js-split span {
    display: inline-block;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.js-split.is-active span {
    opacity: 1;
    transform: translateY(0);
}

/*===========================
article__header
===========================*/

.article__header {
    position: relative;
    padding: 280px 0 210px;
    overflow: hidden;
}

.page__title {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-left: 23.4%;
}

.page__title::before {
    position: absolute;
    content: '';
    display: inline-block;
    width: 659px;
    height: 636px;
    background-image: url(../images/circle.webp);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    left: -422px;
    top: -50%;
    transform: translateY(-50%);
    z-index: -1;
}

.title__jp {
    font-family: "Zen Kaku Gothic New";
    font-size: 2.8rem;
    font-weight: 400;
    line-height: normal;
}

.title__en {
    font-family: "DM Sans";
    font-size: 1.4rem;
    font-weight: 200;
    line-height: normal;
}

@media screen and (max-width: 767px) {
    .article__header {
        padding: 150px 0 100px;
    }

    .page__title {
        gap: 10px;
        margin-left: 13.3%;
    }

    .page__title::before {
        width: 300px;
        height: 295px;
        left: -100px;
        top: -24%;
        transform: translateY(-50%);
    }

    .title__jp {
        font-size: 2rem;
    }

    .title__en {
        font-size: 1rem;
    }
}

/*===========================
menuList
===========================*/

.section__menuList {
    padding: 140px 0 0;
}

.menu__content {
    margin: 0 auto 100px;
    width: fit-content;
    display: flex;
    gap: 60px;
}

.menu__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.menu__title a{
    display: flex;
    align-items: center;
    gap: 25px;
}

.arrow {
    display: block;
    width: 70px;
    height: 70px;
    cursor: pointer;
    background-image: url(../images/arrow_pc.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: background-image 0.5s ease;
    flex-shrink: 0;
}

.menu__title a:hover .arrow {
    background-image: url(../images/hoverArrow_pc.webp);
}

.menu__name {
    font-family: "Zen Kaku Gothic New";
    font-size: 2rem;
    font-weight: 400;
    line-height: 150%;
    transition: 0.3s ease;
}

.menu__title a:hover .menu__name {
    color: #FD7777;
}

.sale__pc {
    width: 340px;
    height: auto;
    display: inline-block;
    animation: yurayura-sale 3.5s ease-in-out infinite;
    will-change: transform;
}

@keyframes yurayura-sale {
    0% { transform: rotate(-1deg) translateX(0); }
    50% { transform: rotate(1deg) translateX(8px); }
    100% { transform: rotate(-1deg) translateX(0); }
}

.sale__sp {
    display: none;
}

@media screen and (max-width: 767px) {
    .section__menuList {
        padding: 70px 0 0;
    }

    .menu__content {
        margin: 0 auto 45px;
        flex-direction: column-reverse;
        gap: 60px;
    }

    .menu__list {
        gap: 20px;
    }

    .menu__title a{
        gap: 10px;
    }

    .arrow {
        width: 40px;
        height: 40px;
        background-image: url(../images/arrow_sp.webp);
    }

    .menu__title a:hover .arrow {
        background-image: url(../images/hoverArrow_sp.webp);
    }

    .menu__name {
        font-size: 1.6rem;
    }

    .sale__pc {
        display: none;
    }

    .sale__sp {
        display: block;
        width: 300px;
        height: auto;
        display: inline-block;
        animation: yurayura-sale 3.5s ease-in-out infinite;
        will-change: transform;
    }
}

/*===========================
menu__detail
===========================*/

.menu__detail {
    background-color: #F8E7DD;
    overflow-x: hidden;
}

.wave__sevenPc {
    margin-bottom: 100px;
    width: 100%;
    height: auto;
}

.wave__sevenSp {
    display: none;
}

.treatment__list {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    width: 60%;
    gap: 160px;
}

.basic {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 50px;
    z-index: 10;
}

.basic::before {
    position: absolute;
    content: '';
    display: inline-block;
    width: 536px;
    height: 509px;
    background-image: url(../images/silhouette_one.webp);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    left: -394px;
    top: -12%;
    transform: translateY(-50%);
    z-index: -1;
}

.treatment__title {
    color: #FD7777;
    font-family: "Zen Kaku Gothic New";
    font-size: 2.6rem;
    font-weight: 400;
    line-height: 150%;
    z-index: 10;
}

.big {
    font-size: 3.6rem;
}

.treatment__detail {
    display: flex;
    flex-direction: column;
    gap: 30px;
    z-index: 10;
}

.treatment__explanation {
    font-family: "Zen Kaku Gothic New";
    font-size: 2rem;
    font-weight: 400;
    line-height: 150%;
    z-index: 10;
}

.treatment__txtLeft {
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 180%;
    z-index: 10;
}

.hours__price {
    display: flex;
    flex-direction: column;
    width: 532px;
    z-index: 10;
}

.hoursPrice__detail {
    display: flex;
    padding: 20px 30px;
    align-items: center;
    gap: 35px;
    width: 532px;
    border-top: 0.5px solid rgba(46, 13, 3, 0.50);
    border-bottom: 0.5px solid rgba(46, 13, 3, 0.50);
    z-index: 10;
}

.hoursPrice__detailSecond {
    display: flex;
    padding: 20px 30px;
    align-items: center;
    gap: 35px;
    border-bottom: 0.5px solid rgba(46, 13, 3, 0.50);
    z-index: 10;
}

.menu__hours {
    display: flex;
    padding: 5px 10px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    border: 0.5px solid #4A2B22;
    font-family: "Noto Sans JP";
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 150%;
    z-index: 10;
}

.price__list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 10;
}

.price__detail {
    display: flex;
    align-items: center;
    gap: 60px;
    z-index: 10;
}

.time {
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 150%;
    z-index: 10;
}

.fee {
    display: flex;
    padding: 0 5px;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(rgba(248, 248, 248, 0.8) 0%, rgba(248, 248, 248, 0.8) 100%);
    background-repeat: no-repeat;
    background-size: 100% 5px;
    background-position: left 0 bottom 10%;
    font-family: "Noto Sans JP";
    font-size: 2rem;
    font-weight: 400;
    line-height: 150%;
    z-index: 10;
}

.price__detailSecond {
    display: flex;
    align-items: center;
    gap: 20px;
}

.back__onePc {
    position: absolute;
    width: 1000px;
    height: auto;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.back__onePc img {
    display: block;
    width: 100%;
    height: auto;
}

.back__oneSp {
    display: none;
}

.total {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 50px;
    text-align: right;
}

.total::before {
    position: absolute;
    content: '';
    display: inline-block;
    width: 516px;
    height: 396px;
    background-image: url(../images/silhouette_two.webp);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    right: -394px;
    top: -12%;
    transform: translateY(-50%);
    z-index: 1;
}

.treatment__detailRight {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: end;
}

.treatment__txtRight {
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 180%;
    z-index: 10;
}

.back__twoPc {
    position: absolute;
    width: 1000px;
    height: auto;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.back__twoPc img {
    display: block;
    width: 100%;
    height: auto;
}

.back__twoSp {
    display: none;
}

.short {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.short::before {
    position: absolute;
    content: '';
    display: inline-block;
    width: 460px;
    height: 358px;
    background-image: url(../images/silhouette_three.webp);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    left: -380px;
    top: -56%;
    transform: translateY(-50%);
    z-index: 1;
}

.hoursPrice__content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hoursPrice__flex {
    display: flex;
    padding: 20px 30px;
    align-items: center;
    gap: 35px;
    width: 532px;
    border-top: 0.5px solid rgba(46, 13, 3, 0.50);
    border-bottom: 0.5px solid rgba(46, 13, 3, 0.50);
    z-index: 10;
}

.notes {
    margin-top: 10px;
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 150%;
    z-index: 10;
}

.back__threePc {
    position: absolute;
    width: 850px;
    height: auto;
    top: 50%;
    left: 28%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.back__threePc img {
    display: block;
    width: 100%;
    height: auto;
}

.back__threeSp {
    display: none;
}

.reset {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 50px;
    text-align: right;
}

.reset::before {
    position: absolute;
    content: '';
    display: inline-block;
    width: 600px;
    height: 560px;
    background-image: url(../images/silhouette_four.webp);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    right: -420px;
    top: -56%;
    transform: translateY(-50%);
    z-index: 1;
}

.back__fourPc {
    position: absolute;
    width: 850px;
    height: auto;
    top: 50%;
    left: 64%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.back__fourPc img {
    display: block;
    width: 100%;
    height: auto;
}

.back__fourSp {
    display: none;
}

.facial {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.facial::before {
    position: absolute;
    content: '';
    display: inline-block;
    width: 700px;
    height: 550px;
    background-image: url(../images/silhouette_five.webp);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    left: -430px;
    top: -32%;
    transform: translateY(-50%);
    z-index: 1;
}

.back__fivePc {
    position: absolute;
    width: 900px;
    height: auto;
    top: 50%;
    left: 33%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.back__fivePc img {
    display: block;
    width: 100%;
    height: auto;
}

.back__fiveSp {
    display: none;
}

.wave__onePc {
    margin-top: 200px;
    width: 100%;
    height: auto;
}

.wave__oneSp {
    display: none;
}

@media screen and (max-width: 767px) {
    .wave__sevenPc {
        display: none;
    }

    .wave__sevenSp {
        display: block;
        margin-bottom: 110px;
        width: 100%;
        height: auto;
    }

    .treatment__list {
        width: 90%;
        gap: 150px;
    }

    .basic {
        gap: 25px;
    }

    .basic::before {
        width: 250px;
        height: 220px;
        left: -90px;
        top: -17%;
        transform: translateY(-50%);
    }

    .treatment__title {
        font-size: 1.8rem;
        padding: 0 5%;
    }

    .big {
        font-size: 2.4rem;
    }

    .treatment__detail {
        gap: 20px;
    }

    .treatment__explanation {
        font-size: 1.6rem;
        padding: 0 5%;
    }

    .treatment__txtLeft {
        font-size: 1.4rem;
        line-height: 150%;
        padding: 0 5%;
    }

    .hours__price {
        width: 100%;
        max-width: 400px;
    }

    .hoursPrice__detail {
        flex-direction: column;
        padding: 15px 5%;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
    }

    .hoursPrice__detailSecond {
        flex-direction: column;
        padding: 15px 5%;
        align-items: flex-start;
        gap: 10px;
    }

    .menu__hours {
        font-size: 1.6rem;
    }

    .price__detail {
        gap: 45px;
    }

    .time {
        font-size: 1.4rem;
    }

    .fee {
        font-size: 1.6rem;
    }

    .price__detailSecond {
        gap: 10px;
    }

    .back__onePc {
        display: none;
    }

    .back__oneSp {
        display: block;
        position: absolute;
        width: 550px;
        height: auto;
        top: 50%;
        left: 45%;
        transform: translate(-50%, -50%);
        z-index: 1;
    }
    
    .back__oneSp img {
        display: block;
        width: 100%;
        height: auto;
    }

    .total {
        gap: 25px;
        text-align: left;
    }

    .total::before {
        width: 200px;
        height: 153px;
        right: -32px;
        top: -8%;
        transform: translateY(-50%);
    }

    .treatment__detailRight {
        gap: 20px;
        align-items: start;
    }

    .treatment__txtRight {
        font-size: 1.4rem;
        line-height: 150%;
        padding: 0 5%;
    }

    .back__twoPc {
        display: none;
    }
    
    .back__twoSp {
        display: block;
        position: absolute;
        width: 550px;
        height: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
    }
    
    .back__twoSp img {
        display: block;
        width: 100%;
        height: auto;
    }
    
    .short {
        gap: 25px;
    }

    .short::before {
        width: 200px;
        height: 155px;
        left: -58px;
        top: -20%;
        transform: translateY(-50%);
    }

    .hoursPrice__content {
        width: 100%;
    }

    .hoursPrice__flex {
        padding: 15px 5%;
        align-items: center;
        gap: 10px;
        width: 100%;
        max-width: 400px;
    }

    .notes {
        margin-top: 5px;
        font-size: 1.2rem;
        padding: 0 5%;
    }

    .back__threePc {
        display: none;
    }

    .back__threeSp {
        display: block;
        position: absolute;
        width: 530px;
        height: auto;
        top: 50%;
        left: 40%;
        transform: translate(-50%, -50%);
        z-index: 1;
    }

    .back__threeSp img {
        display: block;
        width: 100%;
        height: auto;
    }

    .reset {
        gap: 25px;
        text-align: left;
    }

    .reset::before {
        width: 300px;
        height: 285px;
        right: -110px;
        top: -24%;
        transform: translateY(-50%);
    }

    .back__fourPc {
        display: none;
    }

    .back__fourSp {
        display: block;
        position: absolute;
        width: 550px;
        height: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
    }

    .back__fourSp img {
        display: block;
        width: 100%;
        height: auto;
    }

    .facial {
        gap: 25px;
    }

    .facial::before {
        width: 300px;
        height: 250px;
        left: -105px;
        top: -12%;
        transform: translateY(-50%);
    }

    .back__fivePc {
        display: none;
    }

    .back__fiveSp {
        display: block;
        position: absolute;
        width: 550px;
        height: auto;
        top: 55%;
        left: 45%;
        transform: translate(-50%, -50%);
        z-index: 1;
    }

    .back__fiveSp img {
        display: block;
        width: 100%;
        height: auto;
    }

    .wave__onePc {
        display: none;
    }

    .wave__oneSp {
        display: block;
        margin-top: 180px;
        width: 100%;
        height: auto;
        transform: scale(1.01);
        transform-origin: top center;
    }
}

/*===========================
comments
===========================*/

.none {
    display: none;
}

.comments__detail {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 auto;
    width: fit-content;
}

.comments__txt {
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 150%;
}

.wave__fourPc {
    margin-top: 60px;
    width: 100%;
    height: auto;
}

.wave__fourSp {
    display: none;
}

@media screen and (max-width: 767px){
    .comments__detail {
        margin: 45px auto;
        width: 80%;
    }

    .comments__txt {
        font-size: 1.4rem;
    }

    .wave__fourPc {
        display: none;
    }

    .wave__fourSp {
        display: block;
        margin-top: 70px;
        width: 100%;
        height: auto;
        transform: scale(1.01);
        transform-origin: top center;
    }
}

/*===========================
footer
===========================*/

.footer {
    padding-top: 100px;
    background-color: #F8E7DD;
}