@charset "utf-8";



/* ==============================
main
================================== */


.article__header {
    position: relative;
    width: 100%;
    height: 100%;
    background: url(../images/MV-sp.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 189px 0 33px 0;
}

.MV__title {
    font-family: 'Shippori Mincho';
    font-weight: 500;
    font-size: 2rem;
    color: var(--primary-mauvepink, #A36D6A);
    padding-left: 31px;
}

.MV__txt {
    font-size: 1.2rem;
    padding: 13px 0 0 38px;
}

@media screen and (min-width:769px) {
    .article__header {
        background: url(../images/MV-pc.jpg);
        padding: 388px 0 120px 0;
        background-repeat: no-repeat;
        max-width: 1440px;
        margin: 0 auto;
    }

    .MV__title {
        font-size: 4rem;
        padding-left: var(--contentPadding);
    }

    .MV__txt {
        font-size: 1.6rem;
        padding: 78px 0 0 var(--contentPadding);
    }
}

/* About */
.section--about {
    position: relative;
}

.about__img {
    position: absolute;
    width: 259px;
    height: auto;
    right: 0;
    margin-top: 12px;
}

.about__img--sp {
    position: relative;
    display: inline-block;
}

.about__img::before {
    content: '';
    position: absolute;
    border: 2px solid var(--primary-lightpink, #FFE1DD);
    width: 100%;
    height: 100%;
    bottom: -20px;
    left: -20px;
}

.about__img--pc {
    display: none;
}

.about {
    padding-top: 47px;
    margin-top: 250px;
}

.about__txt {
    margin-top: 20px;
}

.about__txt:first-child {
    margin-top: 0;
}

@media screen and (min-width: 769px) {
    .section--about {
        padding-top: 160px;
        max-width: 1440px;
        margin: 0 auto;
    }

    .about__content {
        max-width: 1080px;
        /* margin: 0 auto; */
    }

    .about__img {
        width: 38.88%;
        top: 100px;
    }

    /* .about__img::before {
        width: 86.6%;
        height: 86.6%;
        bottom: -50px;
        left: -50px;
    } */

    .about__img--sp {
        display: none;
    }

    .about__img--pc {
        display: inline-block;
        position: relative;
    }

    .about {
        padding: 78px 53.33% 0 0;
        margin-top: 0;
    }
}

/* Feature */
.section--feature {
    margin-bottom: 400px;
}

.feature {
    padding-top: 76px;
    position: relative;
}

.feature__item {
    padding-top: 42px;
}

.feature__item:first-child {
    padding-top: 0;
}

.feature__title {
    font-size: 2rem;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.feature__title:before {
    content: '';
    background: url(../images/train.svg);
    display: inline-block;
    width: 36px;
    height: 44px;
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
    margin-right: 24px;
}

.feature__title--second:before {
    background: url(../images/yen.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.feature__title--last:before {
    background: url(../images/polish.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.feature__txt {
    margin: 12px 0 0 60px;
}

.feature__img--pc {
    display: none;
}

.feature__img {
    position: absolute;
    width: 259px;
    height: auto;
    left: 0;
    margin-top: 90px;
}

.feature__img--sp {
    position: relative;
    display: inline-block;
}

.feature__img::before {
    content: '';
    position: absolute;
    border: 2px solid var(--primary-lightpink, #FFE1DD);
    width: 100%;
    height: 100%;
    bottom: -20px;
    left: 20px;
}

@media screen and (min-width: 769px) {
    .section--feature {
        display: flex;
        flex-direction: row-reverse;
        padding: 186px var(--contentsp2Padding) 135px var(--contentsp2Padding);
        margin-bottom: 0;
        position: relative;
        max-width: 1440px;
        margin: 0 auto;
        flex: 1;
    }

    .feature__content {
        padding-left: 49.58%;
    }

    .feature {
        padding-top: 81px;
    }

    .feature__img {
        width: 36.94%;
        top: 100px;
    }

    .feature__img--sp {
        display: none;
    }

    .feature__img--pc {
        display: block;
        position: relative;
    }
}

/* Pre Open */
.preopen {
    /* width: 100%;
    height: 100%; */
    background: url(../images/preBg-sp.jpg);
    padding: 89px 30px;
    margin-top: 102px;
}

.preopen p {
    color: var(--primary-white, #FFF);
    text-shadow: 4px 4px 4px var(--primary-black25, #64646440);
    text-align: center;
    margin-top: 6px;
    font-size: 1.6rem;
    font-weight: 700;
}

.preopen__big {
    font-size: 4rem;
}

.preopen__medium {
    font-size: 2.4rem;
}

.preopen__small {
    font-size: 2rem;
}

.preopen p:first-child {
    margin-top: 0;
}

@media screen and (min-width:769px) {
    .preopen {
        background: url(..//images/preBg-pc.jpg);
        margin-top: 0;
    }

    .preopen p {
        font-size: 2rem;
        margin-top: 34px;
    }

    .preopen p br {
        display: none;
    }

    .preopen__big {
        font-size: 4.8rem;
    }

    .preopen__medium {
        font-size: 3.2rem;
    }
}

/* Plan */
.section--plan {
    padding: 67px 0 71px;
}

.plan__bg {
    background-color: var(--primary-lightgray, #F2F2F2);
    border-radius: 50px;
    padding: 64px var(--contentspPadding);
}

.plan__headline {
    font-weight: 700;
    margin-top: 25px;
}

.plan {
    margin-top: 36px;
}

.plan__item {
    background-color: var(--primary-white, #FFF);
    margin-top: 24px;
    box-shadow: 4px 4px 4px var(--primary-black25, #64646440);
    padding: 48px 0;
    position: relative;
}

.plan__title {
    color: var(--primary-white);
    background-color: var(--primary-silverpink);
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    max-width: 253px;
    padding: 7px;
    margin: 0 auto;
    border-radius: 20px;
}

.plan__price {
    text-align: center;
    font-size: 2rem;
    border-bottom: solid 1px var(--primary-black25);
    padding: 20px 0;
    max-width: 305px;
    margin: 0 auto;
}

.plan__item p:first-of-type {
    margin-top: 40px;
}

.plan__price span {
    font-size: 3.2rem;
    font-weight: 700;
    margin-left: 24px;
}

.plan__txt {
    font-size: 1.6rem;
    text-align: center;
    margin-top: 33px;
}

.section--plan .button__viewmore {
    margin-top: 36px;
}

@media screen and (min-width: 980px) {
    .section--plan {
        padding: 40px 55px 47px;
    }

    .plan__bg {
        padding: 80px 133px 96px;
    }

    .plan__content {
        max-width: 1080px;
        margin: 0 auto;
    }

    .section--plan .section__topic {
        text-align: center;
    }

    .section--plan .section__topic::before {
        width: 100px;
        top: 92px;
        left: 50%;
        margin-left: -50px;
    }

    .section--plan .section__topic--ja {
        margin-top: 12px;
    }

    .plan__headline {
        text-align: center;
        margin-top: 34px;
        font-size: 1.6rem;
    }

    .plan {
        display: flex;
        margin: 32px auto 0;
        gap: 0 24px;
        justify-content: center;
    }

    .plan__item {
        margin-top: 0;
        width: 100%;
        padding: 42px 22px;
    }

    .plan__price {
        max-width: 318px;
    }

    .plan__price span {
        font-size: 3.6rem;
    }

    .section--plan .button__viewmore {
        margin-top: 79px;
    }
}

/* Service */
.service {
    text-align: center;
    justify-content: center;
    /* aspect-ratio: 1/1; */
    max-width: 300px;
    margin: 0 auto;
}

.service__item {
    text-align: center;
    background-color: var(--primary-frostypink, #FFF3F2);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    margin: 42px auto 0;
    /* padding: 58px 10px; */
    padding: 19.666% 3.333%;
    position: relative;
}

/* .service__item::before {
    position: absolute;
    content: '';
    background: var(--primary-frostypink);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    right: 0;
    bottom: 0;
} */

.service__item:last-child {
    height: 300px;
}

.service__title {
    color: var(--primary-mauvepink, #A36D6A);
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    z-index: 200;
}

.service__title::after {
    position: absolute;
    content: '';
    width: 163.5px;
    height: 5px;
    border-radius: 6px;
    background: var(--primary-lightpink, #FFE1DD);
    top: 54px;
    left: 50%;
    margin-left: -82px;
}

.service__item:last-child .service__title::after {
    top: 84px;
}

.service__txt {
    text-align: left;
    margin: 48px auto 0;
    width: 228px;
    /* z-index: 900;
    position: absolute; */
}

@media screen and (min-width: 1080px) {
    .section--service {
        max-width: 1440px;
        margin: 0 auto;
    }

    .service {
        display: flex;
        margin-top: 48px;
        gap: 0 64px;
        aspect-ratio: 1/1;
    }

    .service__content {
        max-width: 1080px;
        margin: 0 auto;
    }

    .service__item {
        margin-top: 0;
        aspect-ratio: 1/1;
    }


}

/* Access */
.section--access {
    padding-bottom: 82px;
}

.access {
    padding: 26px 0;
}

.access h3 {
    margin-top: 47px;
}

.access__txt::before {
    content: '';
    display: inline-block;
    background: var(--primary-black, #646464);
    border-radius: 50%;
    width: 5px;
    height: 5px;
    margin: 0 5px 2.5px 0;
}

.access p {
    margin-top: 14px;
}

.map__frame {
    width: 100%;
    height: 291px;
}

.section--access .button__viewmore {
    margin-top: 26px;
}

.access .button__viewmore {
    display: none;
}

@media screen and (min-width: 769px) {
    .section--access {
        padding: 120px var(--contentsp2Padding) 161px;
    }

    .access__content {
        max-width: 1080px;
        margin: 0 auto;
    }

    .access__flex {
        display: flex;
        justify-content: space-between;
    }

    .access {
        margin-right: 52px;
        padding-top: 100px;
    }

    .access .button__viewmore {
        display: block;
        margin-top: 83px;
    }

    .map {
        width: 60%;
        height: 465px;
    }

    .map__frame {
        height: 465px;
    }

    .map .button__viewmore {
        display: none;
    }
}

/* FAQ */
.section--faq {
    background-color: var(--primary-frostypink, #FFF3F2);
    padding-bottom: 76px;
}

.faq {
    background-color: var(--primary-white, #FFF);
    margin-top: 24px;
}

.faq__item {
    border-bottom: var(--primary-black25, #64646440) 1px solid;
    position: relative;
    cursor: pointer;
}

.faq__title {
    font-weight: 400;
    padding: 30px 20px 30px 60px;
    border-bottom: var(--primary-black25, #64646440) 1px solid;
    position: relative;
}

.faq__item:first-child .faq__title {
    border-top: var(--primary-black25, #64646440) 1px solid;
}

.faq__txt {
    display: none;
    padding: 30px 20px 30px 60px;
    background-color: var(--primary-lightgray, #F2F2F2);
    position: relative;
}

.faq__title::before {
    content: 'Q';
    color: var(--primary-mauvepink, #A36D6A);
    font-size: 2.4rem;
    font-weight: 700;
    position: absolute;
    top: 50%;
    left: 18px;
    margin-top: -19px;
}

.faq__txt::before {
    content: 'A';
    color: var(--primary-mauvepink, #A36D6A);
    font-size: 2.4rem;
    font-weight: 700;
    position: absolute;
    top: 50%;
    left: 18px;
    margin-top: -19px;
}

/* FAQ回答を開くボタン */
.faq__btn {
    display: block;
    cursor: pointer;
    width: 25px;
    height: 25px;
    position: absolute;
    top: 28px;
    right: 20px;
    z-index: 500;
}

.faq__btn-line {
    position: absolute;
    background-color: var(--primary-mauvepink, #A36D6A);
    display: block;
    width: 20px;
    height: 3px;
    top: 8;
    right: 0;
    border-radius: 6px;
    transition: all 0.4s;
}

.faq__btn-line:last-child {
    position: absolute;
    background-color: var(--primary-mauvepink, #A36D6A);
    display: block;
    width: 20px;
    height: 3px;
    border-radius: 6px;
    transform: rotate(90deg);
    transition: all 0.4s;
}

/* ボタンが×になるアニメーション */
.faq__btn.active .faq__btn-line {
    transform: rotate(45deg);
}

.faq__btn.active .faq__btn-line:last-child {
    transform: rotate(-45deg);
}

.faq__txt.active {
    display: block;
}

.section--faq .button__viewmore {
    margin-top: 24px;
}

@media screen and (min-width: 769px) {
    .section--faq .section__topic::before {
        top: 50px;
    }

    .faq__flex {
        display: flex;
        justify-content: space-between;
        max-width: 1080px;
        margin: 0 auto;
    }

    .faq {
        margin-left: 11.45%;
        width: 751px;
    }

    .section--faq .button__viewmore {
        margin-top: 100px;
    }
}