@charset "UTF-8";


/*====================================*/
/* Font Loading */
/*====================================*/

:root {
    --wh: #fff;
    --bk: #333;
    --pk: #FF9395;
    --vivid-pk: #E50550;
    --light-pk: #FFEBED;
    --blue: #8FB4C7;
}

/* 共通 */

html {
    font-family: "Zen Old Mincho", serif;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: .1em;
    font-feature-settings: "palt";
    -webkit-font-feature-settings: "palt";
    color: var(--txt-bl);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    word-break: break-all;
    overflow-x: hidden;
}

.pc-only {
    display: block;
}

.sp-only {
    display: none;
}


@media screen and (max-width: 768px) {

    .pc-only {
        display: none;
    }

    .sp-only {
        display: block;
    }

    ._inner {
        width: 90%;
        margin: 0 auto;
    }

    ._flex {
        flex-direction: column;
        gap: 24px;
    }

    ._flex-img {
        width: 100%;
    }

    ._flex-text {
        width: 100%;
    }
}

img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

p {
    color: var(--bk);
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: 180%;
    letter-spacing: 0;
}

._inner {
    width: 90%;
    max-width: 1080px;
    margin: 0 auto;
}

._flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
}

._reverse {
    flex-direction: row-reverse;
}

._flex-img {
    width: 50%;
    max-width: 540px;
}

._flex-text {
    width: 50%;
    max-width: 540px;
}

._btn {
    border-radius: 4px;
    background: var(--vivid-pk);
    display: inline-flex;
    padding: 8px 48px;
    justify-content: center;
    align-items: center;
    gap: 10px;

}

._btn p {
    color: #FFF;
    font-size: clamp(1.125rem, 1.034rem + 0.39vw, 1.5rem);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

._btn-white {
    background: #FFF;
}

._btn-white p {
    color: var(--vivid-pk);
}

._title {
    color: var(--vivid-pk);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 2px;
}

._title span {
    font-size: 1rem;
    padding-left: 1rem;
}

.title-center {
    position: relative;
    color: var(--vivid-pk);
    font-size: 2.5rem;
    text-align: center;
    font-weight: 700;
    line-height: 90%;
    letter-spacing: 2px;
    display: table;
    margin: auto;
}

.title-center span {
    font-size: 1rem;
    padding: 0;
}

._pk {
    color: var(--vivid-pk);
}

.light_pk {
    color: var(--light-pk);
}

.flex__box {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
}

.text__box {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.img__box {}

.read {
    text-align: center;
    margin: 2.5rem 0 4rem;
}

@media screen and (max-width: 768px) {
    ._title {
        text-align: center;
    }

    .flex__box {
        flex-direction: column;
    }

    .text__box {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .read {
        margin: 2.5rem 0;
    }
}

/* ----フェードインアニメーション---- */
.view.view-fix,
.view.view-slideup,
.view.view-slidedown,
.view.view-slidein-L,
.view.view-slidein-R {
    opacity: 0;
}

.view.view-fix.on {
    opacity: 1;
    animation: view-fix 1s ease both;
}

.view.view-slideup.on {
    opacity: 1;
    animation: view-slideup 1s ease both;
}

.view.view-slidedown.on {
    opacity: 1;
    animation: view-slidedown 1s ease both;
}

.view.view-slidein-L.on {
    opacity: 1;
    animation: view-slidein-L 1s ease both;
}

.view.view-slidein-R.on {
    opacity: 1;
    animation: view-slidein-R 1s ease both;
}

@keyframes view-fix {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes view-slideup {
    0% {
        opacity: 0;
        transform: translate(0, 35px);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes view-slidedown {
    0% {
        opacity: 0;
        transform: translate(0, -35px);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes view-slidein-L {
    0% {
        opacity: 0;
        transform: translate(-35px, 0);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes view-slidein-R {
    0% {
        opacity: 0;
        transform: translate(35px, 0);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

/* ヘッダー */
header {
    width: 100vw;
    height: clamp(4.5rem, 4.075rem + 1.81vw, 6.25rem);
    position: fixed;
    z-index: 1000;
    background: linear-gradient(180deg, #FFF -50.5%, rgba(255, 255, 255, 0.00) 182%);
}

.header-inner {
    width: 80%;
    height: 100%;
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 4%;
}

.header-nav-item {
    white-space: nowrap;
    color: var(--bk);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.header-btn {
    padding: 0.7rem 2.5rem;
}

.header-btn p {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

/* ハンバーガーメニュー */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-btn span {
    width: 100%;
    height: 3px;
    background-color: var(--vivid-pk);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 8px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -8px);
}

/* SP版のスタイル */
@media screen and (max-width: 1080px) {
    .hamburger-btn {
        display: flex;
    }

    .header-inner {
        width: 90%;
        display: flex;
        position: relative;
        align-items: center;
        justify-content: space-between;
        flex-direction: row-reverse;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #fff;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 80px 20px 20px;
        overflow-y: auto;
    }

    .header-nav.active {
        right: 0;
    }

    .header-nav-item {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
        color: var(--vivid-pk);
    }

    .header-btn {
        padding: 0.5rem 1.5rem;
        position: relative;
        z-index: 970;
    }

    /* メニューが開いている時、背景を固定 */
    body.menu-open {
        overflow: hidden;
    }

    /* メニューオーバーレイ */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 999;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* PC版のスタイル（既存のスタイルを維持） */
@media screen and (min-width: 1081px) {
    .header-nav {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .hamburger-btn {
        display: none;
    }
}


/* ============== mv ============== */

.mv {
    width: 100%;
    height: 100vh;
    background: url(../img/mv-bg.webp) no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
}

.mv-content {
    width: 1080px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
}

.mv-img {
    width: 70%;
    max-width: 204px;
}

.mv-text h1 {
    color: var(--bk);
    font-size: 2rem;
    font-weight: 500;
    line-height: 180%;
    margin-bottom: 3rem;
}

.mv-layout {
    justify-content: center;
    gap: 16px;
}

.mv-layout a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 1rem 2rem;
}

.mv-layout a p {
    font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
    .mv {
        background: url(../img/mv-bg-sp.webp) no-repeat center center;
        height: auto;
    }

    .mv-content {
        width: 90%;
        margin: 6rem auto 4rem;
        align-items: center;
        gap: 1.5rem;
    }

    .mv-text h1 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .mv-layout {
        margin: 1.5rem 0;
    }

    .mv-layout a {
        width: 80%;
    }
}

/* ============== about ============== */

#about {
    padding: 7.5rem 0;
}

#about h3 {
    color: var(--blue);
    font-size: 24px;
    font-weight: 600;
    line-height: 160%;
}

#about .text__box {
    position: relative;
}

#about .text__box::before {
    position: absolute;
    content: "";
    top: 0;
    right: 10%;
    width: 10%;
    height: 10%;
    background: url(../img/sakura-01.webp) no-repeat center center;
    background-size: contain;
}

#about .text__box::after {
    position: absolute;
    content: "";
    bottom: -35%;
    left: 0;
    width: 25%;
    height: 25%;
    background: url(../img/sakura-02.webp) no-repeat center center;
    background-size: contain;
}

@media screen and (max-width: 768px) {
    #about {
        padding: 4rem 0;
    }

    #about .text__box::before {
        top: -7%;
        right: 5%;
        width: 13%;
    }

    #about .text__box::after {
        bottom: -23%;
        width: 35%;
    }
}

/* ============== Message ============== */
#message {
    width: 100%;
    background-size: cover;
    background: var(--light_or, #FEF8F8);
    padding: 120px 0;
}

#message h2 {
    position: relative;
    margin-bottom: 1.5rem;
    z-index: 10;
}

#message h2::before,
#insta h2::before {
    position: absolute;
    content: "";
    top: -100%;
    left: -4%;
    width: 120px;
    height: 130px;
    background: url(../img/title_deco01.webp) no-repeat center center;
    background-size: contain;
    z-index: -1;
}

#message .flex__img {
    width: 60%;
    margin-right: 1.5rem;
}

@media screen and (max-width: 768px) {
    #message {
        padding: 4rem 0;
    }

    #message .flex__img {
        margin: auto;
    }

    #message h2::before {
        top: -70%;
        left: 2%;
        width: 100px;
        height: 110px;
    }
}

/* ============== menu ============== */

#menu {
    padding: 120px 0;
}

#menu h2 {
    margin-bottom: 4rem;
}

#menu h2::before {
    position: absolute;
    content: "";
    top: -50%;
    left: -84%;
    width: 134px;
    height: 112px;
    background: url(../img/title_deco02.webp) no-repeat center center;
    background-size: contain;
    z-index: -1;
}

/* ご新規様限定 料金 */
.menu__new-list {
    background-color: var(--light-pk);
    padding: 1rem;
    margin-bottom: 4rem;
}

.menu__new-list .border {
    border: solid 2px var(--wh);
    padding: 2.5rem 0;
}

.menu__new-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.menu__new-title p {
    color: var(--vivid-pk);
    text-align: center;
    font-size: 1.5rem;
    padding: 8px 24px;
    font-weight: 700;
    line-height: 140%;
    border-radius: 50px;
    background: var(--wh);
}

.menu__new-title h3 {
    font-size: 2rem;
    font-weight: 600;
}

.menu__new-price {
    color: var(--vivid-pk);
    text-align: center;
    font-size: 3.5rem;
    padding-top: 1rem;
}

.menu__new-price span {
    font-size: 2.5rem;
}

/* メインメニュー */
.menu__main-list {
    position: relative;
    background: #F4F4F4;
    padding: 4rem 2.5rem;
}

.menu__main-list::before {
    position: absolute;
    content: "";
    top: -2%;
    left: 4%;
    width: 12%;
    height: 8%;
    background: url(../img/sakura-03.webp) no-repeat center center;
    background-size: contain;
}

.menu__main-list::after {
    position: absolute;
    content: "";
    bottom: -2%;
    right: 5%;
    width: 20%;
    height: 10%;
    background: url(../img/sakura-02.webp) no-repeat center center;
    background-size: contain;
}

.menu__main-list h3,
.menu__main-option h4 {
    color: var(--vivid-pk);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 160%;
    text-align: center;
    margin-bottom: 2.5rem;
}

.menu__main-grid,
.ba__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.menu__main-box p {
    line-height: 160%;
}

.menu__main-box span {
    font-size: 14px;
}

.menu__main-box h4 {
    color: var(--vivid-pk);
    font-size: 1.5rem;
    font-weight: 600;
}

.menu__main-box ul li {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    padding: 1rem 0 0.5rem;
    border-bottom: solid 1px var(--bk);
}

.menu__main-option {
    background: var(--wh);
    padding: 2.5rem;
    margin-top: 3rem;
}

.menu__main-option h4 {
    font-size: 2rem;
}

.menu__main-option ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    height: 230px;
    gap: 0 2.5rem;
}

.menu__main-option ul li {
    width: 47.8%;
}

.cta {
    background: var(--pk);
    padding: 5rem 0;
}

@media screen and (max-width: 768px) {
    #menu {
        padding: 4rem 0;
    }

    #menu h2 {
        margin: 0 auto 2rem;
    }

    /* ご新規様限定 料金 */
    .menu__new-list {
        margin-bottom: 2rem;
    }

    .menu__new-list .border {
        padding: 1.5rem 1rem;
    }

    .menu__new-title {
        flex-direction: column;
    }

    .menu__new-title h3 {
        font-size: 1.5rem;
    }

    .menu__new-price {
        font-size: 2rem;
    }

    .menu__new-price span {
        font-size: 1.8rem;
        font-weight: 900;
    }

    /* メインメニュー */
    .menu__main-list {
        padding: 2.5rem 1.2rem;
    }

    .menu__main-list h3 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .menu__main-list::before {
        top: -1%;
        width: 20%;
        height: 3%;
    }

    .menu__main-list::after {
        bottom: -0.5%;
        right: 10%;
        width: 30%;
        height: 3%;
    }

    .menu__main-option h4 {
        font-size: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .menu__main-grid,
    .ba__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .menu__main-box p {
        line-height: 150%;
    }

    .menu__main-box p:first-child {
        width: 75%;
    }

    .menu__main-option {
        padding: 2rem 1rem;
        margin-top: 2rem;
    }

    .menu__main-option h4 {
        margin-bottom: 1rem;
    }

    .menu__main-option ul {
        height: auto;
    }

    .menu__main-option ul li {
        width: 100%;
    }

    .cta {
        padding: 3rem 0;
    }

}

/* ============== Before / After ============== */

#before-after {
    background: var(--light-pk);
    padding: 120px 0;
}

.ba__box {
    background: var(--wh);
    display: flex;
    text-align: center;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
}

.ba__box img {
    width: auto;
}

.ba__box h4 {
    color: var(--vivid-pk);
    font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
    #before-after {
        padding: 4rem 0;
    }


}


#review {
    background-image: url(../img/bg_wave.webp), url(../img/bg_wave2.webp);
    background-repeat: repeat-x, repeat-x;
    background-size: contain;
    background-position: center top, center bottom;
    background-color: var(--blue);
    padding: 73px 0;
}

#review ._inner {
    margin: 7.5rem auto;
}

.review__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-top: 4rem;
}

.review__box {
    display: flex;
    padding: 1.5rem;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    background: var(--wh);
}

.review__box h4 {
    color: var(--pk);
}

.review__box img {
    width: 54%;
}

@media screen and (max-width: 768px) {
    #review ._inner {
        margin: 1.5rem auto;
    }

    .review__list {
        grid-template-columns: 1fr;
        margin-top: 3rem;
    }
}

/* ============== insta ============== */

#insta {
    padding: 120px 0;
}

#insta h2::before {
    top: -80%;
    left: -15%;
}

.insta__more {
    display: block;
    width: 240px;
    margin: auto;
    text-align: center;
}

@media screen and (max-width: 768px) {
    #insta {
        padding: 4rem 0;
    }
}

/* ============== accsess ============== */
#access {
    background: var(--light-pk);
    padding: 120px 0;
}

#access .flex__box {
    margin-top: 4rem;
}

#access .flex__box h3 {
    color: var(--vivid-pk);
    font-size: 1.5rem;
    line-height: 130%;
}

#access .flex__box h4 {
    font-size: 20px;
    padding-bottom: 0.5rem;
}

#access .text__box {
    gap: 1.5rem;
}

.access_list a {
    color: var(--vivid-pk);
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    #access {
        padding: 4rem 0;
    }

    #access .flex__box {
        margin-top: 2.5rem;
    }

    #access iframe {
        width: 100%;
    }
}


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

footer {
    width: 100%;
    background: var(--pk);
    padding: 4rem 0 2.5rem;
}

.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-nav a {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
}

.copyright {
    text-align: center;
    margin-top: 48px;
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
}

@media screen and (max-width: 768px) {

    footer {
        padding: 80px 0;
    }

    .footer-layout {
        flex-direction: column;
    }

    .footer-layout .insta {
        width: 40%;
        max-width: 48px;
        aspect-ratio: 48/48;
    }

    .footer-layout ._btn {
        width: 100%;
        max-width: 240px;
    }
}