@charset "utf-8";

/* ===================================
common
================================== */
html {
    font-size: 62.5%;
}

body {
    font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
    font-style: normal;
    color: #222222;
    background-color: #F5F2EB;
    line-height: 1.8;
    overflow-x: hidden;
}

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

.pcBr {
    display: none;
}

/*  Loading */

.loading {
    position: fixed;
    inset: 0;
    background: #F5F2EB;

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 9999;

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;
    pointer-events: none;
}

.loading.is-hidden {
    opacity: 0;
    visibility: hidden;
    display: none;
}



.loading__logo {
    width: 180px;
    opacity: 0;
    filter: blur(4px);
    transform: translateY(8px);

    animation: logoFade 0.8s ease forwards;
}



@keyframes logoFade {
    0% {
        opacity: 0;
        filter: blur(4px);
        transform: translateY(8px);
    }

    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

/* ===================================
header
================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: background-color 0.6s ease;

}

.header.is-colored {
    background-color: rgba(245, 242, 235, 0.85);
    backdrop-filter: blur(8px);
}

.header__container,
.nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 84px;
    padding: 0 5.1%;
    box-sizing: border-box;
}

.nav__header {
    flex-shrink: 0;

}


.header__logo,
.nav__logo {
    display: block;
    width: 109px;
}

.header__logo-image,
.nav__logo-image {
    display: block;
    width: 100%;
    height: auto;
}

.header__reserve {
    display: none;
}

.header__btn {
    position: relative;
    z-index: 1200;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-right: -10px;
    -webkit-tap-highlight-color: transparent;
}

.header__btn span {
    display: block;
    width: 24px;
    height: 1px;
    background-color: #0F0F0F;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.header__btn.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header__btn.is-active span:nth-child(2) {
    opacity: 0;
}

.header__btn.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background-color: #F5F2EB;
    z-index: 1100;
    padding: 0 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.6s ease, visibility 0.6s ease;

    overflow-y: auto;
    overflow-x: hidden;
}

.nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nav__item {
    opacity: 0;
    transform: translateY(15px);
    width: 100%;
    text-align: center;

    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* width: fit-content; */
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    gap: 29px;
    margin-top: 59px;
}


.nav__item a {
    display: block;
    width: 100%;

    font-size: 24px;
    color: #222222;
    letter-spacing: 0.08em;

    padding: 8px 0;

    text-decoration: none;
    text-align: center;

    transition: opacity 0.3s ease;
}

.nav__item a:hover {
    opacity: 0.5;
}

.nav.is-open .nav__item:nth-child(1) {
    transition-delay: 0.20s;
}

.nav.is-open .nav__item:nth-child(2) {
    transition-delay: 0.30s;
}

.nav.is-open .nav__item:nth-child(3) {
    transition-delay: 0.40s;
}

.nav.is-open .nav__item:nth-child(4) {
    transition-delay: 0.50s;
}

.nav.is-open .nav__item:nth-child(5) {
    transition-delay: 0.60s;
}

.nav.is-open .nav__item {
    opacity: 1;
    transform: translateY(0);
}

.nav:not(.is-open) .nav__item {
    transition-delay: 0s;
    transition-duration: 0.4s;
}

.nav__reserve {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    margin-top: 66px;
}

.nav__reserve a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 336px;
    height: 57px;
    margin: 0 auto;
    color: #222222;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.nav__reserve a::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #222222;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
}

.nav__reserve a::after {
    content: "";
    position: absolute;
    inset: 1px;
    background-color: #F5F2EB;
    clip-path: polygon(0 0, calc(100% - 13.5px) 0, 100% 13.5px, 100% 100%, 0 100%);
    transition: background-color 0.3s ease;
}

.nav__reserve a span {
    position: relative;
    z-index: 1;
}

.nav__reserve a span:first-child {
    font-family: "Tenor Sans", sans-serif;
    font-size: 18px;
    letter-spacing: 0.1em;
}

.nav__reserve a span:last-child {
    font-size: 11px;
    margin-top: 4px;
}

.nav__reserve a:hover {
    color: #F5F2EB;
}

.nav__reserve a:hover::after {
    background-color: #222222;
}

.nav__sns {
    display: flex;
    align-items: center;
    gap: 13px;
    height: 44px;
    margin-top: 60px;
    margin-left: 21px;
}

.nav__sns a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    transition: opacity 0.3s ease;
}

.nav__sns a:hover {
    opacity: 0.7;
}

.nav__sns img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

@media screen and (min-width: 600px) and (max-width: 768px) {
    .header {
        background: linear-gradient(to bottom,
                rgba(245, 242, 235, 0.58) 0%,
                rgba(245, 242, 235, 0.28) 55%,
                rgba(245, 242, 235, 0) 100%);
    }

    .header.is-colored {
        background: rgba(245, 242, 235, 0.85);
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
    }
}

/* ========================================
   HEADER - PC
======================================== */

@media screen and (min-width: 769px) {

    .header {
        position: fixed;
        top: 0;
        left: 0;

        width: 100%;
        height: 108px;

        z-index: 1000;

        background-color: transparent;

        transition:
            background-color 0.5s ease,
            backdrop-filter 0.5s ease;
    }


    .header__container {
        display: flex;
        align-items: center;

        width: 100%;
        height: 108px;

        padding-left: clamp(40px, 7vw, 101px);
        padding-right: clamp(40px, 5.2vw, 75px);

        box-sizing: border-box;
    }



    .header__logo {
        display: block;

        width: 168px;

        margin: 0;
        padding: 0;

        flex-shrink: 0;
    }


    .header__logo img {
        display: block;

        width: 100%;
        height: auto;
    }


    .nav {
        position: static;

        display: flex;
        align-items: center;

        width: auto;
        height: auto;

        margin: 0 0 0 auto;
        padding: 0;

        background: transparent;

        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform: none;

        overflow: visible;
    }


    .nav__header,
    .nav__reserve,
    .nav__sns {
        display: none;
    }




    .nav__list {
        display: flex;
        flex-direction: row;
        align-items: center;

        gap: clamp(24px, 3.2vw, 46px);

        width: auto;
        height: auto;

        margin: 0;
        padding: 0;

        list-style: none;
    }


    .nav__item {
        display: block;

        width: auto;
        height: auto;

        margin: 0;
        padding: 0;

        opacity: 1;
        visibility: visible;

        transform: none;

        transition: none;

        text-align: left;
    }


    .nav__item a {
        position: relative;
        display: block;
        padding: 8px 0;

        font-family: "Tenor Sans", sans-serif;
        font-size: 16px;
        line-height: 1;

        color: #0F0F0F;
        text-decoration: none;
        white-space: nowrap;
    }


    .nav__item a::after {
        content: "";
        position: absolute;

        left: 0;
        bottom: 2px;

        width: 0;
        height: 1px;

        background-color: #222222;

        transition: width 0.45s ease;
    }

    .nav__item a:hover::after {
        width: 100%;
    }

    .nav__item a:hover {
        opacity: 1;
    }

    .nav__item--home {
        display: none;
    }



    .header__reserve {
        position: relative;

        display: flex;
        align-items: center;
        justify-content: center;

        width: 111px;
        height: 45px;

        margin-left: clamp(24px, 3.2vw, 46px);

        flex-shrink: 0;

        border: 1px solid rgba(34, 34, 34, 0.6);

        box-sizing: border-box;

        font-family: "Tenor Sans", sans-serif;
        font-size: 16px;
        font-weight: 400;
        line-height: 1;

        letter-spacing: 1.6px;

        color: #0F0F0F;
        text-decoration: none;

        background-color: transparent;

        transition:
            color 0.35s ease,
            background-color 0.35s ease,
            border-color 0.35s ease;
    }


    .header__reserve::before,
    .header__reserve::after {
        content: none;
    }


    .header__reserve:hover {
        color: #FCFBF8;

        background-color: #222222;
        border-color: #222222;
    }


    .header__btn {
        display: none !important;
    }


    .header.is-colored {
        background-color: rgba(245, 242, 235, 0.85);

        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
    }
}

/* ===================================
hero 
================================== */

.hero {
    position: sticky;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100dvh;
    max-height: 780px;
    overflow: hidden;

    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero.is-loaded {
    opacity: 1;
    transform: scale(1);
}

.hero__container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero__media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero__picture,
.hero__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__content {
    position: absolute;
    left: 43px;
    bottom: 88px;
    z-index: 10;
    color: #F5F3EE;
}

.hero__title {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 3.2px;
}

.hero__title-line {
    display: block;
}

.hero__text {
    margin-top: 35px;
    font-family: "Tenor Sans", sans-serif;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.7px;
}

.hero__text-line {
    display: block;
}

.hero__title,
.hero__text {
    opacity: 0;
}

.hero.is-loaded .hero__title {
    animation: heroTextFade 2.8s ease-out .2s both;
}

.hero.is-loaded .hero__text {
    animation: heroEnglishFade 1.5s ease-out 1.4s both;
}

@keyframes heroTextFade {
    0% {
        opacity: 0;
    }

    35% {
        opacity: 0.35;
    }

    65% {
        opacity: 0.72;
    }

    85% {
        opacity: 0.92;
    }

    100% {
        opacity: 1;
    }
}

@keyframes heroEnglishFade {
    0% {
        opacity: 0;
    }

    40% {
        opacity: 0.22;
    }

    70% {
        opacity: 0.62;
    }

    90% {
        opacity: 0.9;
    }

    100% {
        opacity: 1;
    }
}

.hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;

    background:
        radial-gradient(circle at 78% 30%,
            rgba(255, 244, 220, 0.18) 0%,
            rgba(255, 245, 225, 0.10) 25%,
            rgba(255, 255, 255, 0) 60%);

    opacity: 0;
    animation: heroSunlight 3.5s ease-out 2.5s forwards;
}

@keyframes heroSunlight {
    0% {
        opacity: 0;
    }

    100% {
        opacity: .55;
    }
}


.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transform: scale(1.03);
    filter: blur(2px);

    will-change: transform, filter;
}

.hero.is-loaded .hero__image {
    animation:
        heroFocus 3s ease-out forwards,
        heroIntro 3s cubic-bezier(.22, .61, .36, 1) forwards;
}

@keyframes heroFocus {
    0% {
        filter: blur(2px);
    }

    40% {
        filter: blur(1.7px);
    }

    70% {
        filter: blur(1.1px);
    }

    90% {
        filter: blur(0.4px);
    }

    100% {
        filter: blur(0);
    }
}

@keyframes heroIntro {
    0% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}


.hero__scroll {
    position: absolute;
    right: 47px;
    bottom: 61px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #F5F3EE;

    opacity: 0;
    transform: translateY(8px);
}

.hero.is-loaded .hero__scroll {
    animation: scrollFade 1s ease forwards;
    animation-delay: 1.5s;
}

.hero__scroll-text {
    writing-mode: vertical-rl;
    color: #fff;
    font-size: 11px;
    letter-spacing: .2em;
    opacity: .85;
}

.hero__scroll-line {
    position: relative;
    width: 1px;
    height: 90px;

    background: rgba(255, 255, 255, .18);

    overflow: hidden;
}

.hero__scroll-line::after {
    content: "";
    position: absolute;
    left: 0;
    top: -24px;

    width: 100%;
    height: 24px;

    background: #fff;
    opacity: 0;

    animation: scrollLine 2.8s ease-in-out 2.0s infinite;
}

@keyframes scrollFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollLine {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    100% {
        transform: translateY(115px);
        opacity: 0;
    }
}

.curtain-wrapper {
    position: relative;
    z-index: 2;
    background-color: #F5F2EB;
    width: 100%;

    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
}


/* ========================================
   HERO - PC
======================================== */

@media screen and (min-width: 769px) {

    .hero {
        position: sticky;
        top: 0;
        z-index: 1;

        height: 100svh;

        height: 100vh;
        max-height: 900px;

        overflow: hidden;
    }

    .hero__container {
        position: relative;
        width: 100%;
        height: 100%;
    }



    .hero__media {
        position: absolute;
        inset: 0;

        width: 100%;
        height: 100%;

        overflow: hidden;
    }

    .hero__picture {
        display: block;
        width: 100%;
        height: 100%;
    }

    .hero__image {
        display: block;

        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center center;
    }



    .hero__title-line,
    .hero__text {
        opacity: 1;
        animation: none !important;
    }

    .hero__content {
        position: absolute;

        left: clamp(60px, 10.2vw, 147px);

        top: 42.3%;

        right: auto;
        bottom: auto;

        z-index: 2;

        width: auto;

        color: #F5F3EE;
        text-align: left;

        transform: none;

        opacity: 0;
        filter: blur(2px);
    }

    .hero.is-loaded .hero__content {
        animation: heroContentFadePc 2.8s ease-out 0.2s forwards;
    }


    .hero__title {
        margin: 0;

        font-family:
            "Noto Serif JP",
            "Yu Mincho",
            "YuMincho",
            serif;

        font-size: 60px;
        font-weight: 400;

        line-height: 1.55;
        letter-spacing: 0.08em;
    }

    .hero__title-line {
        display: block;
    }


    .hero__text {
        margin: clamp(38px, 4vw, 58px) 0 0;

        font-family: "Tenor Sans", sans-serif;

        font-size: 16px;
        font-weight: 400;

        line-height: 1.35;
        letter-spacing: 1.92px;

        color: #F5F3EE;
    }

    .hero__text-line {
        display: block;
    }


    .hero__scroll {
        position: absolute;

        right: clamp(40px, 7.1vw, 102px);

        bottom: clamp(40px, 7.2vh, 65px);

        z-index: 2;

        display: flex;
        flex-direction: column;
        align-items: center;

        margin: 0;

        color: #F5F3EE;

        opacity: 0;
        transform: translateY(8px);
    }

    .hero.is-loaded .hero__scroll {
        animation: scrollFadePc 1.5s ease forwards;
        animation-delay: 2.0s;
    }

    .hero__scroll-text {
        display: block;

        font-family: "Tenor Sans", sans-serif;

        font-size: 12px;
        font-weight: 400;

        line-height: 1;
        letter-spacing: 1.44px;

        writing-mode: vertical-rl;
        text-orientation: mixed;
    }

    .hero__scroll-line {
        position: relative;
        display: block;

        width: 1px;
        height: clamp(55px, 8vh, 72px);

        margin-top: 12px;

        background-color: rgba(245, 243, 238, 0.25);
        overflow: hidden;
    }

    .hero__scroll-line::after {
        content: "";
        position: absolute;
        left: 0;
        top: -24px;

        width: 100%;
        height: 24px;

        background: #F5F3EE;
        opacity: 0;

        animation: scrollLinePc 2.8s ease-in-out 2.8s infinite;
    }

}

/* pc７６９ */


@keyframes heroContentFadePc {
    0% {
        opacity: 0;
        filter: blur(2px);
    }

    100% {
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes scrollFadePc {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollLinePc {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    100% {
        transform: translateY(100px);
        opacity: 0;
    }
}




/* ========================================
   ABOUT
======================================== */

.about {
    background-color: #F5F2EB;
    padding: 120px 5.128% 0;
    margin: 0;
    box-sizing: border-box;
}




.about__media {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 41px;
}

.about__image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;

    opacity: 0;
    transform: scale(1.06) translateZ(0);

    transition:
        opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.6s cubic-bezier(0.25, 0.1, 0.25, 1);

    will-change: transform, opacity;

    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.about.is-visible .about__image {
    opacity: 1;
    transform: scale(1) translateZ(0);
}




.about__content {
    position: relative;
    text-align: center;
}

.about__heading {
    position: relative;
    text-align: center;
    margin-bottom: 50px;
}


/* Our Philosophy */

.about__bg-title {
    position: relative;

    font-family: "Tenor Sans", sans-serif;
    font-weight: 400;
    font-size: clamp(38px, 16.6vw, 90px);

    line-height: 0.95;
    letter-spacing: 0;

    color: rgba(200, 185, 166, 0.4);

    pointer-events: none;

    margin-bottom: 0;
    text-align: center;

    opacity: 0;
    transform: translateY(40px);
    filter: blur(2px);

    transition:
        opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}


/* わたしたちの想い */

.about__title {
    position: absolute;
    top: 21%;
    left: 50%;

    width: 100%;

    font-size: 20px;
    font-weight: 500;

    color: #222222;

    opacity: 0;
    transform: translate(-50%, calc(-50% + 40px));
    filter: blur(1.5px);

    transition:
        opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}



.about.is-visible .about__bg-title {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);

    transition-delay: 0.1s;
}

.about.is-visible .about__title {
    opacity: 1;
    transform: translate(-50%, -50%);
    filter: blur(0);

    transition-delay: 0.2s;
}



.about__text {
    display: flex;
    flex-direction: column;

    gap: 15px;

    width: 100%;
    max-width: clamp(288px, 60vw, 420px);

    margin: 50px auto 0;
}

.about__paragraph {
    width: 100%;

    text-align: left;

    color: #222222;

    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.28px;

    opacity: 0;
    transform: translateY(20px);

    transition:
        opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.about__paragraph:last-child {
    margin-bottom: 0;
}


/* 本文が画面に入ってから表示 */

.about__text.is-visible .about__paragraph {
    opacity: 1;
    transform: translateY(0);
}




/* ========================================
   ABOUT - PC
======================================== */

@media screen and (min-width: 769px) {

    .about {
        position: relative;
        z-index: 2;
        width: 100%;
        padding-top: 0;
        background-color: #F5F2EB;
    }


    .about__container {
        width: calc(100% - 80px);
        max-width: 1196px;
        margin: 168px auto 0;

        display: grid;
        grid-template-columns: 507fr 517fr;
        column-gap: clamp(40px, 12vw, 172px);
        align-items: start;
    }



    .about__content {
        grid-column: 1;
        grid-row: 1;

        position: relative;

        width: 100%;
        max-width: 507px;
        height: auto;
        aspect-ratio: 507 / 688;

        margin: 0;
        padding: 220px 0 0;
        box-sizing: border-box;

        display: flex;
        flex-direction: column;

        text-align: left;
    }


    /* Our Philosophy */

    .about__bg-title {
        margin: 0;

        font-family: "Tenor Sans", sans-serif;
        font-size: clamp(60px, 5.84vw, 84px);
        font-weight: 400;

        line-height: 0.83;
        letter-spacing: 0;

        text-align: center;
        color: rgba(203, 185, 166, 0.4);

    }

    .about__bg-title .sp-only {
        display: block;
    }


    /* わたしたちの想い */

    .about__title {
        position: absolute;

        top: 49%;
        left: 50%;

        width: 100%;
        margin: 0;

        font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
        font-size: clamp(22px, 2.1vw, 30px);
        font-weight: 500;
        line-height: 1.5;

        color: #222222;
        text-align: center;


    }

    .about__text {
        width: 100%;
        max-width: 470px;

        margin-top: 90px;

        display: flex;
        flex-direction: column;
        gap: 17px;

        font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
        font-size: clamp(15px, 1.25vw, 18px);
        font-weight: 400;

        line-height: 1.8;
        letter-spacing: 0.36px;

        color: #222222;
    }


    .about__media {
        grid-column: 2;
        grid-row: 1;

        position: relative;

        width: 100%;
        max-width: 517px;
        height: auto;
        aspect-ratio: 517 / 688;

        margin: 0;
        padding: 0;

        overflow: hidden;
    }

    .about__picture {
        display: block;
        width: 100%;
        height: 100%;
    }

    .about__media .about__image {
        display: block;

        width: 100%;
        height: 100%;
        max-width: none;

        object-fit: cover;
        object-position: center;
    }
}

/* pc769 */

/*  VALUES SECTION */

.values {
    padding: 90px 5.128% 0;
    box-sizing: border-box;
    background-color: #F5F2EB;
    margin-top: 0;
}


.values__heading {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    width: calc(100% - 32px);
    max-width: 500px;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 40px;
    margin-left: auto;
}

.values__heading-line {
    flex: none;
    width: 60px;
    height: 1px;
    background-color: #222222;
    transform-origin: left center;
    transform: scaleX(0) translateZ(0);
    opacity: 0;
}

.values__heading-title {
    font-family: "Tenor Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #222222;
    letter-spacing: 0.1em;
    opacity: 0;
    transform: translateY(10px);
}

.values__item {
    width: 100%;
}

.values__item-media {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto;
}

.values__item-decoration {
    position: absolute;
    bottom: -30px;
    left: -16px;
    width: 60%;
    height: 70%;
    background-color: #D7CEC3;
    z-index: 1;

    opacity: 0;
    transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.15s;
}

.values__item.is-visible .values__item-decoration {
    opacity: 1;
}



.values__item-picture {
    position: relative;
    z-index: 2;
    width: 100%;
    display: block;
    overflow: hidden;

    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
}



.values__item-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.06) translateZ(0);

    transition:
        opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.6s cubic-bezier(0.25, 0.1, 0.25, 1);

    will-change: transform, opacity;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.values__item.is-visible .values__item-image {
    opacity: 1;
    transform: scale(1) translateZ(0);
}


.values__item-content {
    margin-top: 70px;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.values__item-number {
    text-align: left;
}

.values__item-number-text {
    display: block;
    font-family: Playfair Display;
    font-size: 30px;
    color: #222222;
    opacity: 0;
    transform: translateY(45px) scale(0.96);
    filter: blur(2px);
    will-change: transform, opacity, filter;
}

.values__item-number-divider {
    display: none;
}

.values__item-number-label {
    display: block;
    font-family: "Tenor Sans", sans-serif;
    font-size: 13px;
    letter-spacing: 1.3px;
    color: #222222;
    opacity: 0;
    transform: translateY(25px);
}

.values__item-line {
    display: block;
    width: 13px;
    height: 1px;
    background-color: #222222;
    margin-top: 8px;
    margin-bottom: 24px;

    transform-origin: left center;
    transform: scaleX(0);
    opacity: 0;
}

.values__item-title-line {
    display: block;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 1.68px;
    color: #222222;
    opacity: 0;
    transform: translateY(35px);
}



.values__item-text {
    text-align: left;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.96px;
    margin-top: 30px;
    margin-right: 30px;
    margin-bottom: 0;
    padding-bottom: 120px;
    opacity: 0;
    transform: translateY(30px);
}




.values__item--02 .values__item-decoration {
    left: auto;
    right: -16px;
}

.values__item--01 .values__item-line {
    margin-left: 35px;
}

.values__item--02 .values__item-line {
    margin-left: 18px;
}

.values__item--03 .values__item-line {
    margin-left: 8px;
}

.header.is-colored {
    background-color: rgba(245, 242, 235, 0.85);
    backdrop-filter: blur(8px);
}




/* 見出しタイトル */
.is-visible .values__heading-title,
.values__heading-title.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.1s;
}

.is-visible .values__heading-line,
.values__heading-line.is-visible {
    opacity: 1;
    transform: scaleX(1) translateZ(0);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.2s;
}



.values__item.is-visible .values__item-number-text {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.1s;
}

/* ラベル */
.values__item.is-visible .values__item-number-label {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.2s;
}


.values__item.is-visible .values__item-title-line {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.3s;
}


.values__item.is-visible .values__item-text {
    opacity: 1;
    transform: translateY(0);

    transition:
        opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);

    transition-delay: 0.3s;
}

.values__item.is-visible .values__item-line {
    opacity: 1;
    transform: scaleX(1);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.35s;
}



/* ========================================
   VALUES - PC
======================================== */

@media screen and (min-width: 769px) {

    .values {
        position: relative;
        width: 100%;
        background-color: #F5F2EB;
        padding-top: clamp(180px, 16.67vw, 240px);
    }




    .values__container {
        width: min(calc(100% - 80px), 1240px);
        margin: 0 auto;
        box-sizing: border-box;
    }




    .values__heading {
        display: flex;
        align-items: center;

        width: fit-content;

        margin-left: auto;
        margin-right: clamp(45px, 4vw, 60px);
        margin-bottom: clamp(100px, 8vw, 120px);
    }

    .values__heading-line {
        width: clamp(80px, 7vw, 100px);
        height: 1px;

        margin-right: 32px;

        background-color: rgba(34, 34, 34, 0.25);

        transform: scaleX(0);
        transform-origin: left center;

        transition: transform 1.2s ease;
    }

    .values.is-visible .values__heading-line {
        transform: scaleX(1);
    }

    .values__heading-title {
        margin: 0;
        white-space: nowrap;

        font-family: "Tenor Sans", sans-serif;
        font-size: clamp(30px, 2.78vw, 40px);
        font-weight: 400;

        line-height: 1;
        letter-spacing: 0.12em;

        color: #222222;
    }



    .values__list {
        width: 100%;
    }


    .values__item-content {
        width: 100%;
    }

    .values__item-number {
        display: flex;
        align-items: center;
        gap: 10px;

        margin: 0 0 22px;

        font-family: "Tenor Sans", sans-serif;
        font-size: clamp(12px, 1.05vw, 15px);
        font-weight: 400;

        line-height: 1;
        letter-spacing: 0.08em;

        color: #222222;
    }

    /* 01 */
    .values__item-number-text {
        font-family: "Playfair Display", serif;
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0.1em;
    }

    .values__item-number-divider {
        font-family: "Noto Serif JP", serif;
        font-size: 15px;
        transform: rotate(-12deg);
    }

    .values__item-number-label {
        font-family: "Tenor Sans", sans-serif;
        font-size: 15px;
        font-weight: 400;
        letter-spacing: 0.1em;
    }

    .values__item-number-text,
    .values__item-number-divider,
    .values__item-number-label {
        display: inline-block;
    }


    .values__item-line {
        display: none;
    }


    .values__item-title {
        margin: 0 0 28px;

        font-family: "Noto Serif JP", serif;
        font-size: 40px;
        font-weight: 400;

        line-height: 1.6;
        letter-spacing: 2.4px;

        color: #222222;
    }

    .values__item .values__item-title-line {
        letter-spacing: 2.6px;
    }


    .values__item-text {
        width: 100%;
        max-width: 100%;

        margin: 0;

        font-family: "Noto Serif JP", serif;
        font-size: 18px;
        font-weight: 400;

        line-height: 1.8;
        letter-spacing: 1.08px;

        color: #222222;

        box-sizing: border-box;
        overflow-wrap: anywhere;
        padding-bottom: 0;
    }

    /* 01 */

    .values__item--01 {
        position: relative;

        display: flex;
        align-items: center;
        justify-content: space-between;

        width: 100%;
        height: auto;

        aspect-ratio: auto;

        gap: clamp(30px, 8.75vw, 126px);
    }

    .values__item--01 .values__item-media {
        position: relative;

        top: auto;
        left: auto;
        right: auto;

        width: 59.03%;
        height: auto;

        flex-shrink: 0;

        aspect-ratio: 732 / 580;

        max-width: none;
    }


    .values__item--01 .values__item-decoration {
        position: absolute;

        top: 0;
        left: 0;

        width: 53.28%;
        height: 100%;

        background-color: #D7CEC3;

        z-index: 0;
    }

    .values__item--01 .values__item-picture {
        position: absolute;

        left: 16.26%;
        top: 10.78%;

        width: 83.74%;
        height: 79.31%;

        overflow: hidden;

        z-index: 1;
    }


    .values__item--01 .values__item-content {
        position: static;

        top: auto;
        left: auto;
        right: auto;

        flex: 1;
        min-width: 0;

        width: auto;
        max-width: none;

        margin: 0;
        align-self: flex-end;
    }

    .values__item+.values__item {
        margin-top: clamp(120px, 12.5vw, 180px);
    }

    .values__item-number-text {
        transform: none;
        filter: none;
        will-change: auto;

        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .values__item.is-visible .values__item-number-text {
        opacity: 1;
        transform: none;
        filter: none;

        transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1);
        transition-delay: 0.1s;
    }


    /* 02 */

    .values__item--02 {
        position: relative;

        display: flex;
        align-items: center;
        justify-content: space-between;

        width: 100%;
        height: auto;

        aspect-ratio: auto;

        gap: clamp(30px, 8.75vw, 126px);

        flex-direction: row-reverse;
    }

    .values__item--02 .values__item-media {
        position: relative;

        top: auto;
        left: auto;
        right: auto;

        width: 59.03%;
        height: auto;

        flex-shrink: 0;

        aspect-ratio: 732 / 580;

        max-width: none;
    }

    .values__item--02 .values__item-decoration {
        position: absolute;

        top: 0;
        right: 0;
        left: auto;

        width: 53.28%;
        height: 100%;

        background-color: #D7CEC3;

        z-index: 0;
    }

    .values__item--02 .values__item-picture {
        position: absolute;

        right: 16.26%;
        top: 10.78%;

        width: 83.74%;
        height: 79.31%;

        overflow: hidden;

        z-index: 1;
    }


    .values__item--02 .values__item-content {
        position: static;

        top: auto;
        left: auto;
        right: auto;

        flex: 1;
        min-width: 0;

        width: auto;
        max-width: none;

        margin: 0;

        align-self: flex-end;
    }


    /* 03*/

    .values__item--03 {
        position: relative;

        display: flex;
        align-items: center;
        justify-content: space-between;

        width: 100%;
        height: auto;

        aspect-ratio: auto;

        gap: clamp(30px, 8.75vw, 126px);
    }

    .values__item--03 .values__item-media {
        position: relative;

        top: auto;
        left: auto;
        right: auto;

        width: 59.03%;
        height: auto;

        flex-shrink: 0;

        aspect-ratio: 732 / 580;

        max-width: none;
    }

    .values__item--03 .values__item-decoration {
        position: absolute;

        top: 0;
        left: 0;

        width: 53.28%;
        height: 100%;

        background-color: #D7CEC3;

        z-index: 0;
    }

    .values__item--03 .values__item-picture {
        position: absolute;

        left: 16.26%;
        top: 10.78%;

        width: 83.74%;
        height: 79.31%;

        overflow: hidden;

        z-index: 1;
    }


    .values__item--03 .values__item-content {
        position: static;

        top: auto;
        left: auto;
        right: auto;

        flex: 1;
        min-width: 0;

        width: auto;
        max-width: none;

        margin: 0;
        align-self: flex-end;
    }


    .values__item-image {
        display: block;

        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;
    }


    .values__item-image {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;

        opacity: 0;
        transform: scale(1.06) translateZ(0);

        transition:
            opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
            transform 1.6s cubic-bezier(0.25, 0.1, 0.25, 1);

        will-change: transform, opacity;

        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .values__item.is-visible .values__item-image {
        opacity: 1;
        transform: scale(1) translateZ(0);
    }


}

/* 769pc */


/* ========================================
   STAFF SECTION
======================================== */
.staff {
    position: relative;
    z-index: 2;
    background-color: #F5F2EB;
}


.staff__container {
    width: 100%;
    max-width: 1242px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 5.128%;
    padding-right: 5.128%;
    box-sizing: border-box;
}


.staff__heading {
    position: relative;
    text-align: center;
    margin-bottom: 60px;
}

.staff__heading-bg-title {
    font-family: "Tenor Sans", sans-serif;
    font-weight: 400;
    font-size: clamp(38px, 16.6vw, 90px);
    line-height: 0.95;
    letter-spacing: 0;
    color: rgba(200, 185, 166, 0.4);
    pointer-events: none;
    margin-bottom: 0;
    text-align: center;

    opacity: 0;
    transform: translateY(40px);
    filter: blur(2px);
    will-change: transform, opacity, filter;
}

.staff__heading-title {
    position: absolute;
    top: 80%;
    left: 50%;
    width: 100%;
    font-size: 20px;
    font-weight: 500;
    color: #222222;

    opacity: 0;
    transform: translate(-50%, calc(-50% + 40px));
    filter: blur(1.5px);
}


.staff__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}


.staff__item {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.staff__item-media {
    width: 100%;
    max-width: none;
    aspect-ratio: 350 / 420;
    margin: 0 0 50px;
    overflow: hidden;
}


.staff__item-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.15);
    /* filter: blur(1.5px); */
}


.staff__item-role,
.staff__item-name,
.staff__item-text,
.staff__item-link {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: clamp(275px, 80vw, 380px);
    opacity: 0;
    transform: translateY(20px);
}


.staff__item-role {
    font-family: "Cormorant", serif;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1.2px;
    color: #222222;
}

.staff__item-name {
    font-family: "Cormorant", serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.9px;
    color: #222222;
    margin-bottom: 30px;
}


/* 本文 */

.staff__item-text {
    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.8px;
    color: #222222;
    margin-bottom: 40px;
}


.staff__item-link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;

    width: 100%;
    max-width: 275px;
    min-height: 44px;

    margin-left: auto;
    margin-right: auto;

    padding: 8px 0;

    text-decoration: none;
    color: #222222;
    cursor: pointer;
}

.staff__item-link-text {
    font-family: "Cormorant", serif;
    font-size: 14px;
    letter-spacing: 1.4px;
}

.staff__item-link-arrow {
    width: 45px;
    height: auto;
    display: block;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.staff__item-link:hover .staff__item-link-arrow {
    transform: translateX(6px);
}


.staff.is-visible .staff__item-image {
    transform: scale(1);

    transition:
        transform 1.9s cubic-bezier(0.25, 0.1, 0.25, 1);

    transition-delay: 0.2s;
}


.staff.is-visible .staff__heading-bg-title {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);

    transition:
        opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);

    transition-delay: 0.1s;
}


.staff.is-visible .staff__heading-title {
    opacity: 1;
    transform: translate(-50%, -50%);
    filter: blur(0px);

    transition:
        opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);

    transition-delay: 0.2s;
}


.staff__item.is-visible .staff__item-role,
.staff__item.is-visible .staff__item-name,
.staff__item.is-visible .staff__item-text,
.staff__item.is-visible .staff__item-link {
    opacity: 1;
    transform: translateY(0);

    transition:
        opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);

    transition-delay: 0.3s;
}


.staff__item.is-visible {
    opacity: 1;
    transform: translateY(0);

    transition:
        opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}


/* ========================================
   STAFF / PC
======================================== */

@media screen and (min-width: 769px) {

    .staff {
        position: relative;
        z-index: 2;
        width: 100%;
        background-color: #F5F2EB;
        padding-top: 260px;
    }


    .staff__container {
        width: calc(100% - 80px);
        max-width: 1242px;
        margin: 0 auto;
        padding: 0;
    }


    .staff__heading {
        position: relative;
        width: 100%;
        height: 110px;
        margin: 0 0 130px;
        text-align: center;
    }


    .staff__heading-bg-title {
        margin: 0;

        font-family: "Tenor Sans", sans-serif;
        font-size: 84px;
        font-weight: 400;
        line-height: 1;
        letter-spacing: 0;

        color: rgba(203, 185, 166, 0.4);
        text-align: center;
    }


    .staff__heading-title {
        position: absolute;
        top: 50%;
        left: 50%;

        width: 100%;
        margin: 0;

        font-family:
            "Noto Serif JP",
            "Yu Mincho",
            "YuMincho",
            serif;

        font-size: 30px;
        font-weight: 500;
        line-height: 1.5;

        color: #222222;
        text-align: center;

        opacity: 0;

        transform:
            translate(-50%, calc(-50% + 40px));

        filter: blur(1.5px);
    }


    .staff__list {
        width: 100%;
        margin: 0;
        padding: 0;

        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 55px;
        align-items: stretch;

        list-style: none;
    }


    .staff__item {
        width: 100%;
        max-width: none;

        display: flex;
        flex-direction: column;

        margin: 0;
    }


    .staff__item-media {
        width: 100%;
        max-width: none;

        aspect-ratio: 350 / 420;

        margin: 0 0 20px;

        overflow: hidden;
    }


    .staff__item-picture {
        display: block;
        width: 100%;
        height: 100%;
    }


    .staff__item-image {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;

        transform: scale(1.08);
        /* filter: none; */
    }


    .staff__item-role,
    .staff__item-name,
    .staff__item-text,
    .staff__item-link {
        width: 100%;
        max-width: none;

        margin-left: 0;
        margin-right: 0;
    }


    .staff__item-role {
        margin-bottom: 0;

        font-family: "Cormorant", serif;
        font-size: 14px;
        font-weight: 300;

        line-height: 1.2;
        letter-spacing: 1.4px;

        color: #222222;
    }


    .staff__item-name {
        margin-top: 0;
        margin-bottom: 20px;

        font-family: "Cormorant", serif;
        font-size: 24px;
        font-weight: 600;

        line-height: 1.2;
        letter-spacing: 2.4px;

        color: #222222;
    }


    .staff__item-text {
        margin-bottom: 20px;

        font-family:
            "Noto Serif JP",
            "Yu Mincho",
            "YuMincho",
            serif;

        font-size: 18px;
        font-weight: 400;

        line-height: 1.8;
        letter-spacing: 0.05em;

        margin-bottom: 0;

        color: #222222;
    }


    .staff__item-link {
        display: flex;
        align-items: center;
        justify-content: flex-end;

        gap: 8px;

        min-height: 40px;

        padding: 0;
        margin-top: auto;

        text-decoration: none;

        color: #0F0F0F;
    }


    .staff__item-link-text {
        font-family: "Cormorant", serif;
        font-size: 14px;
        letter-spacing: 1.4px;
    }


    .staff__item-link-arrow {
        display: block;
        width: 45px;
        height: auto;
    }


    .staff.is-visible .staff__heading-title {
        opacity: 1;

        transform: translate(-50%, -50%);

        filter: blur(0);

        transition:
            opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
            transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
            filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);

        transition-delay: 0.2s;
    }


    .staff.is-visible .staff__item-image {
        transform: none;
        /* filter: none; */

        transition:
            transform 1.9s cubic-bezier(0.25, 0.1, 0.25, 1);

        transition-delay: 0.2s;
    }
}

/* pc769 */

/* ====================================
   GALLERY SECTION
==================================== */

.gallery {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 120px auto 0;
    padding: 70px 0 30px;
    background-color: #938D87;
    overflow: hidden;
    box-sizing: border-box;
}

.gallery__container {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery__heading {
    position: absolute !important;
    top: 45px !important;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 100%;
    font-family: 'Tenor Sans', sans-serif;
    font-size: clamp(32px, 10.25vw, 40px);
    color: rgba(245, 242, 235, 0.6);
    line-height: 1.3;
    letter-spacing: 0.27em;
    text-align: center;
    pointer-events: none;
}



.gallery__heading {
    position: absolute;
    top: 0px;
    z-index: 10;
}


.gallery__slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 5.128%;
    padding-right: 5.128%;
    box-sizing: border-box;
}


.gallery__picture {
    position: relative;
    display: block;

    width: 100%;
    max-width: 600px;
    aspect-ratio: 350 / 390;

    overflow: hidden;

    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
}

.gallery__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08) translateZ(0);
    transition: transform 1.9s cubic-bezier(0.25, 0.1, 0.25, 1);

    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.gallery.is-visible .gallery__image,
.gallery__slide.is-visible .gallery__image,
.gallery__image.is-visible {
    transform: scale(1) translateZ(0);
}



/* ページネーション */
.gallery__pagination.swiper-pagination {
    position: relative;
    bottom: auto;
    margin-top: 16px;
    text-align: center;
}

.gallery .swiper-pagination-bullet {
    background: #ffffff;
    opacity: 0.4;
    width: 6px;
    height: 6px;
    margin: 0 4px !important;
    transition: opacity 0.3s, transform 0.3s;
}

.gallery .swiper-pagination-bullet-active {
    background: #ffffff;
    opacity: 1;
}

/* pc用 */
.gallery__nav {
    color: #F5F2EB;
}

.gallery__nav,
.gallery .swiper-button-prev,
.gallery .swiper-button-next {
    display: none;
}


/* ==================================================
   GALLERY - PC
================================================== */

@media screen and (min-width: 769px) {


    .gallery {
        position: relative;

        width: 100%;
        max-width: none;

        margin: 260px auto 0;

        padding:
            clamp(80px, 8vw, 115px) 0 clamp(60px, 6vw, 90px);

        background-color: #938D87;

        overflow: hidden;
        box-sizing: border-box;
    }


    .gallery__container {
        position: relative;

        width: 100%;
        height: auto;

        margin: 0 auto;
    }



    .gallery__slider {
        position: relative;

        width: 100%;

        overflow: visible;
    }


    .gallery__track {
        align-items: center;
    }



    .gallery__slide {
        opacity: 0.5;
        transform: scale(0.86);
        transform-origin: center center;

        transition:
            transform 1.4s cubic-bezier(0.22, 1, 0.36, 1),
            opacity 1.2s ease;
    }




    .gallery .swiper-slide-active {
        opacity: 1;
        transform: scale(1);
        z-index: 3;
    }

    .gallery .swiper-slide-prev,
    .gallery .swiper-slide-next {
        opacity: 0.5;
        transform: scale(0.86);
    }



    .gallery__picture {
        position: relative;
        display: block;

        width: 100%;
        max-width: none;

        aspect-ratio: 16 / 9;

        overflow: hidden;

        -webkit-mask-image:
            -webkit-radial-gradient(white, black);

        mask-image:
            radial-gradient(white, black);
    }


    .gallery .gallery__image {
        display: block;

        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;

        transform: none;
        filter: none;

        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }


    .gallery__heading {
        position: absolute !important;

        top: 47% !important;
        left: 26%;

        transform:
            translate(-50%, -50%) rotate(-90deg);

        width: auto;
        margin: 0;

        font-family: "Tenor Sans", sans-serif;

        font-size: clamp(44px, 5.9vw, 85px);
        font-weight: 400;

        line-height: 1;
        letter-spacing: 24px;

        color: rgba(245, 242, 235, 0.6);

        white-space: nowrap;

        z-index: 20;

        pointer-events: none;
    }



    .gallery__pagination.swiper-pagination {
        position: relative;

        bottom: auto;

        margin-top: clamp(20px, 2.4vw, 34px);

        text-align: center;
    }


    .gallery .swiper-pagination-bullet {
        width: 5px;
        height: 5px;

        margin: 0 6px !important;

        background-color: #F5F2EB;

        opacity: 0.35;

        transition:
            opacity 0.4s ease,
            transform 0.4s ease;
    }


    .gallery .swiper-pagination-bullet-active {
        opacity: 1;

        transform: scale(1.15);
    }


    .gallery__nav,
    .gallery .swiper-button-prev,
    .gallery .swiper-button-next {
        display: flex !important;

        align-items: center;
        justify-content: center;

        width: 44px;
        height: 44px;

        margin: 0;

        color: #F5F2EB;

        opacity: 0.75;

        cursor: pointer;

        z-index: 50;

        transition:
            opacity 0.35s ease,
            transform 0.35s ease;
    }


    .gallery .swiper-button-prev {
        left: 15%;
        right: auto;
        top: 40%;
    }

    .gallery .swiper-button-next {
        right: 15%;
        left: auto;
        top: 40%;
    }


    .gallery .swiper-button-prev::after,
    .gallery .swiper-button-next::after {
        font-size: 20px;
        font-weight: 300;
    }


    .gallery .swiper-button-prev:hover {
        opacity: 1;
        transform: translateY(-50%) scale(1.08);
    }

    .gallery .swiper-button-next:hover {
        opacity: 1;
        transform: translateY(-50%) scale(1.08);
    }

    .gallery__slider {
        position: static;
    }
}


@media screen and (min-width: 769px) and (max-width: 1099px) {

    .gallery .swiper-button-prev {
        left: 8%;
    }

    .gallery .swiper-button-next {
        right: 8%;
    }

    .gallery__heading {
        left: 20%;
    }
}

/* pc769 */

/* ========================================
   PRICE HEADING
======================================== */
.price__heading {
    position: relative;
    text-align: center;
    margin-bottom: 70px;
}

.price__heading-bg-title {
    font-family: "Tenor Sans", sans-serif;
    font-weight: 400;
    font-size: clamp(38px, 16.6vw, 65px);
    line-height: 0.95;
    letter-spacing: 0;
    color: rgba(200, 185, 166, 0.4);
    margin: 0;
    pointer-events: none;

    opacity: 0;
    transform: translateY(40px);
    filter: blur(2px);

    transition:
        opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.price__heading-title {
    position: absolute;
    top: 80%;
    left: 50%;
    width: 100%;

    font-family: "Noto Serif JP", serif;
    font-size: 20px;
    font-weight: 500;
    color: #222222;

    opacity: 0;
    transform: translate(-50%, calc(-50% + 40px));
    filter: blur(1.5px);

    transition:
        opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}



.price.is-visible .price__heading-bg-title {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);

    transition-delay: 0.1s;
}

.price.is-visible .price__heading-title {
    opacity: 1;
    transform: translate(-50%, -50%);
    filter: blur(0);

    transition-delay: 0.2s;
}



.price {
    margin-top: 170px;
    margin-bottom: 200px;
}

.price__container {
    width: 100%;
    padding: 0 5.128%;
    box-sizing: border-box;
}

.price__list {
    width: 100%;
}


.price__category {
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 70px;
}


.price__category:last-child {
    margin-bottom: 0;
}


/* CUT / COLOR / PERM / TREATMENT / OTHER */

.price__category-title {
    font-family: "Tenor Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.15em;
    color: #222222;

    margin: 0 0 38px;

    opacity: 0;
    transform: translateY(12px);
}

/* menu */

.price__menu {
    width: 100%;
    margin: 0;
}


.price__item {
    display: flex;
    align-items: baseline;

    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 26px;

    gap: 10px;

    opacity: 0;
    transform: translateY(10px);
}

.price__item:last-child {
    margin-bottom: 0;
}


/* メニュー名 */

.price__item-name {
    flex-shrink: 1;
    min-width: 0;

    font-family: "Noto Serif JP", serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.04em;
    color: #222222;
}


.price__item-line {
    flex: 1 1 auto;
    min-width: 5px;
}


.price__item-value {
    position: relative;
    flex-shrink: 0;
    margin: 0 14px 0 auto;

    font-family: "Tenor Sans", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.15em;
    color: #222222;

    white-space: nowrap;
    text-align: right;
}


.price__item-value--from::after {
    content: "〜";
    position: absolute;
    left: calc(100% + 2px);
    top: 0;

    font-family: "Noto Serif JP", serif;
    font-size: 12px;
    letter-spacing: 0;
}


/* 「ご相談ください。」 */

.price__item-value--note {
    font-family: "Noto Serif JP", serif;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0;
    margin-right: 0;
}




/* CUT / COLORなど */

.price__category.is-visible .price__category-title {
    opacity: 1;
    transform: translateY(0);

    transition:
        opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}


/* メニュー */

.price__category.is-visible .price__item {
    opacity: 1;
    transform: translateY(0);

    transition:
        opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.price__category.is-visible .price__item:nth-child(1) {
    transition-delay: 0.05s;
}

.price__category.is-visible .price__item:nth-child(2) {
    transition-delay: 0.1s;
}

.price__category.is-visible .price__item:nth-child(3) {
    transition-delay: 0.15s;
}

.price__category.is-visible .price__item:nth-child(4) {
    transition-delay: 0.2s;
}

.price__category.is-visible .price__item:nth-child(5) {
    transition-delay: 0.25s;
}

.price__category.is-visible .price__item:nth-child(6) {
    transition-delay: 0.3s;
}

.price__note {
    margin-top: 80px;

    opacity: 0;
    transform: translateY(10px);
}

.price__note.is-visible {
    opacity: 1;
    transform: translateY(0);

    transition:
        opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);

    transition-delay: 0.3s;
}

.price__note-line {
    font-family: "Noto Serif JP", serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.08em;
    color: #222222;
    margin: 0;
}

/* ==================================================
   PRICE - PC
================================================== */

@media screen and (min-width: 769px) {

    .price {
        position: relative;
        z-index: 2;

        width: 100%;

        margin-top: 260px;

        background-color: #F5F2EB;
    }


    .price__container {
        width: min(calc(100% - 80px), 764px);

        margin: 0 auto;
        padding: 0;
    }




    .price__heading {
        position: relative;

        width: 100%;

        margin-bottom: 120px;

        text-align: center;
    }


    .price__heading-bg-title {
        margin: 0;

        font-family: "Tenor Sans", sans-serif;

        font-size: clamp(60px, 5.84vw, 84px);
        font-weight: 400;

        line-height: 0.95;

        color: rgba(200, 185, 166, 0.4);
    }


    .price__heading-title {
        position: absolute;

        top: 80%;
        left: 50%;

        width: 100%;

        margin: 0;

        font-family: "Noto Serif JP", serif;

        font-size: 30px;
        font-weight: 500;

        color: #222222;

        text-align: center;

        opacity: 0;

        transform:
            translate(-50%, calc(-50% + 40px));

        filter: blur(1.5px);
    }


    .price.is-visible .price__heading-title {
        opacity: 1;

        transform: translate(-50%, -50%);

        filter: blur(0);

        transition:
            opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
            transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
            filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);

        transition-delay: 0.2s;
    }


    .price__category {
        display: grid;

        grid-template-columns:
            150px minmax(0, 1fr);

        column-gap: 22px;

        width: 100%;
        max-width: none;

        margin-bottom: 70px;
    }


    .price__category:last-child {
        margin-bottom: 0;
    }


    .price__category-title {
        margin: 0;

        padding-top: 1px;

        font-family: "Tenor Sans", sans-serif;

        font-size: 16px;
        font-weight: 400;

        line-height: 1.3;
        letter-spacing: 0.15em;

        color: #222222;
    }



    .price__menu {
        width: 100%;

        margin: 0;
    }



    .price__item {
        display: grid;


        grid-template-columns:
            minmax(110px, max-content) 1fr 95px;

        align-items: center;

        column-gap: 14px;

        width: 100%;
        max-width: none;

        min-height: 32px;
        margin: 0 0 26px;

        opacity: 0;

        transform: translateY(20px);
    }



    .price__item-name {
        min-width: 0;

        font-family: "Noto Serif JP", serif;

        font-size: 16px;
        font-weight: 400;

        line-height: 1.3;
        letter-spacing: 0.04em;

        color: #222222;

        white-space: nowrap;
        grid-column: 1;
    }




    .price__item::before {
        content: "";
        grid-column: 2;

        display: block;
        width: 100%;
        height: 1px;

        background-color: rgba(187, 180, 165, 0.55);
        transform: translateY(20px);
    }

    .price__item:has(.price__item-value--note)::before {
        display: none;
    }



    .price__item-value {
        position: relative;

        width: 100%;

        margin: 0;

        padding-right: 14px;

        box-sizing: border-box;

        font-family: "Tenor Sans", sans-serif;

        font-size: 15px;
        font-weight: 400;

        line-height: 1.3;
        letter-spacing: 0.15em;

        color: #484747;

        white-space: nowrap;

        text-align: right;
        grid-column: 3;
    }




    .price__item-value--from::after {
        content: "〜";

        position: absolute;

        left: auto;

        right: 0;
        top: 0;

        font-family: "Noto Serif JP", serif;

        font-size: 12px;

        line-height: 1.3;

        color: #484747;
    }



    .price__item-value--note {
        padding-right: 0;

        font-family: "Noto Serif JP", serif;

        font-size: 12px;
        font-weight: 300;

        letter-spacing: 0;

        text-align: right;
    }



    .price__note {
        width: max-content;

        margin-top: 56px;
        margin-left: auto;
        margin-right: 0;

        position: relative;
        left: 6px;

        opacity: 0;
        transform: translateY(10px);
    }

    .price__item-value--note {
        padding-right: 0;
        text-align: right;
    }

    .price__note-line {

        font-family: "Noto Serif JP", serif;
        font-size: 12px;
        font-weight: 300;
        line-height: 1.6;
        letter-spacing: 3.2px;

        color: rgba(34, 34, 34, 0.8);

        text-align: left;
    }



    .price.is-visible .price__note {
        opacity: 1;
        transform: translateY(0);

        transition:
            opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
            transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);

        transition-delay: 0.3s;
    }
}

/* pc769 */
/* ========================================
   ACCESS SECTION
======================================== */

.access {
    position: relative;
    width: 100%;
    background-color: #F5F2EB;

    /* Price側で下120pxを取っているので上は0 */
    padding: 0 0 120px;

    box-sizing: border-box;
}

.access__container {
    width: 100%;
    max-width: none;
    margin: 0 auto;

    padding: 0 5.128%;
    box-sizing: border-box;
}




.access__heading {
    position: relative;
    text-align: center;
    margin-bottom: 70px;
}



.access__heading-bg-title {
    font-family: "Tenor Sans", sans-serif;
    font-weight: 400;

    font-size: clamp(38px, 16.6vw, 65px);

    line-height: 0.95;
    letter-spacing: 0;

    color: rgba(200, 185, 166, 0.4);

    margin: 0;
    pointer-events: none;

    opacity: 0;
    transform: translateY(40px);
    filter: blur(2px);

    transition:
        opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);

}



.access__heading-title {
    position: absolute;
    top: 72%;
    left: 50%;

    width: 100%;

    font-family: "Noto Serif JP", serif;
    font-size: 20px;
    font-weight: 500;

    color: #222222;

    opacity: 0;
    transform: translate(-50%, calc(-50% + 40px));
    filter: blur(1.5px);

    transition:
        opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);

}


.access.is-visible .access__heading-bg-title {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);

    transition-delay: 0.1s;
}

.access.is-visible .access__heading-title {
    opacity: 1;
    transform: translate(-50%, -50%);
    filter: blur(0);

    transition-delay: 0.2s;
}



.access__media {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 70px;

    overflow: hidden;
}

.access__picture {
    display: block;
    width: 100%;
}


.access__image {
    display: block;
    width: 100%;
    aspect-ratio: 350 / 241;
    object-fit: cover;

    opacity: 0;
    transform: scale(1.04);

    transition:
        opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.access.is-visible .access__image {
    opacity: 1;
    transform: scale(1);

    transition-delay: 0.2s;
}


.access__content {
    width: 100%;
    max-width: 480px;

    margin: 0 auto;
}


.access__info {
    width: 100%;
    margin: 0;
}

.access__item {
    width: 100%;

    margin-bottom: 34px;
    padding-bottom: 30px;

    border-bottom: 0.5px solid rgba(34, 34, 34, 0.25);

    opacity: 0;
    transform: translateY(12px);
}

.access__item:last-child {
    margin-bottom: 0;
}



.access__item-title {
    font-family: "Tenor Sans", sans-serif;

    font-size: 18px;
    font-weight: 400;

    line-height: 1.3;

    letter-spacing: 0.27em;

    color: #222222;

    margin-bottom: 12px;
}



.access__item-value {
    margin: 0;

    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    font-weight: 400;

    line-height: 1.45;
    letter-spacing: 0.04em;

    color: #222222;
}



.access__item-address {
    font-style: normal;
}



.access__item-postal-code {
    display: inline-block;
    margin-bottom: 5px;
    font-family: "Tenor Sans", sans-serif;
}



.access__item-address-text {
    display: inline-block;
}




.access__item-hours {
    display: flex;
    flex-direction: column;

    margin-bottom: 8px;
}

.access__item-hours:last-child {
    margin-bottom: 0;
}

.access__item-days,
.access__item-time {
    display: block;
}

.access__item-time {
    font-family: "Tenor Sans", sans-serif;
}

.access__number {
    font-family: "Tenor Sans", sans-serif;
}


.access__item {
    border-bottom: 0.5px solid #979595;
}



.access__item.is-visible {
    opacity: 1;
    transform: translateY(0);

    transition:
        opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}




.access__map {
    width: 100%;
    max-width: 600px;
    margin: 55px auto 0;

    opacity: 0;

    transition:
        opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
}




.access__map-picture {
    display: block;

    width: 100%;
    max-width: none;

    margin: 0 auto;
}

.access__map-image {
    display: block;

    width: 100%;
    height: auto;

    aspect-ratio: 345 / 162;

    object-fit: contain;
}




.access__map-link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;

    width: fit-content;
    min-height: 44px;
    padding: 8px 0 8px 16px;

    margin: 8px 0 0 auto;

    color: #222222;
    text-decoration: none;

    cursor: pointer;
}


.access__map-link-text {
    font-family: "Tenor Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: 2px;
    white-space: nowrap;
}


.access__map-link-arrow {
    display: block;

    width: 45px;
    height: auto;

    transition: transform 0.3s ease;
}

.access__map-link:hover .access__map-link-arrow {
    transform: translateX(6px);
}



.access__map.is-visible {
    opacity: 1;

}



/* ========================================
   ACCESS SECTION - PC
======================================== */

@media screen and (min-width: 769px) {

    .access {
        padding: 0 0 clamp(120px, 10vw, 160px);
    }

    .access__container {
        width: min(100% - 80px, 950px);
        max-width: 950px;
        margin: 0 auto;
        padding: 0;
    }



    .access__heading {
        margin-bottom: clamp(70px, 7.8vw, 112px);
    }

    .access__heading-bg-title {
        font-size: clamp(52px, 4.5vw, 65px);
        line-height: 0.95;
    }

    .access__heading-title {
        top: 72%;

        font-size: 20px;
    }



    .access__media {
        width: 100%;
        max-width: none;

        margin: 0 0 clamp(70px, 7.8vw, 112px);

        aspect-ratio: 950 / 450;
        overflow: hidden;
    }

    .access__picture {
        display: block;
        width: 100%;
        height: 100%;
    }

    .access__image {
        display: block;

        width: 100%;
        height: 100%;

        aspect-ratio: auto;
        object-fit: cover;
    }




    .access__content {
        display: grid;


        grid-template-columns:
            minmax(280px, 337px) minmax(0, 551px);

        column-gap: clamp(50px, 4.3vw, 62px);

        align-items: end;

        width: 100%;
        max-width: none;

        margin: 0;
    }

    .access__info {
        width: 100%;
    }

    .access__item {
        width: 100%;

        margin-bottom: 20px;
        padding-bottom: 16px;

        border-bottom: 0.5px solid #6F6D6D;
    }

    .access__item:last-child {
        margin-bottom: 0;

        padding-bottom: 0;
        border-bottom: none;
    }

    .access__item-title {
        margin-bottom: 12px;

        font-size: 17px;
        line-height: 1.3;
        letter-spacing: 0.27em;
    }

    .access__item-value {
        font-size: 16px;
        line-height: 1.3;
        letter-spacing: 0.04em;
    }

    .access__item-postal-code {
        margin-bottom: 5px;
    }



    .access__item-hours {
        display: grid;
        grid-template-columns: 110px auto;
        align-items: baseline;
        justify-content: start;
        margin-bottom: 6px;
    }

    .access__item-days {
        min-width: 0;
    }

    .access__item-time {
        font-family: "Tenor Sans", sans-serif;
        font-size: 15px;
        font-weight: 400;
        line-height: 1.3;
        letter-spacing: 0.04em;
        white-space: nowrap;
        text-align: left;
    }

    .access__item-address-text,
    .access__item-days,
    .access__item-text,
    .access__unit {
        font-family: "Noto Serif JP", serif;
        font-weight: 300;
    }

    .access__number {
        font-family: "Tenor Sans", sans-serif;
        font-weight: 400;
    }


    .access__map {
        width: 100%;
        max-width: none;

        margin: 0;
    }

    .access__map-picture {
        display: block;

        width: 100%;
        max-width: none;

        margin: 0;
    }

    .access__map-image {
        display: block;

        width: 100%;
        height: auto;

        aspect-ratio: 551 / 257;

        object-fit: contain;
    }



    .access__map-link {
        margin: 30px 0 0 auto;
    }

    .access__map-link-text {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .access__map-link-arrow {
        width: 45px;
    }
}

/* ========================================
   RESERVE SECTION
======================================== */

.reserve {
    position: relative;
    width: 100%;
    background-color: #FCFBF8;
    padding: 110px 0 110px;
    box-sizing: border-box;
}

.reserve__container {
    width: 100%;
    max-width: 390px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}


.reserve__heading {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 62px;
}



.reserve__heading-bg-title {
    margin: 0;

    font-family: "Tenor Sans", sans-serif;
    font-size: clamp(38px, 16.6vw, 65px);
    font-weight: 400;
    line-height: 57px;
    letter-spacing: 12px;

    color: rgba(203, 185, 166, 0.4);

    pointer-events: none;

    opacity: 0;
    transform: translateY(30px);
    filter: blur(2px);
}



.reserve__heading-title {
    position: absolute;
    top: 71%;
    left: 50%;

    width: 100%;
    margin: 0;

    font-family: "Noto Serif JP", serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: 5px;

    color: #222222;

    opacity: 0;
    transform: translate(-50%, calc(-50% + 30px));
    filter: blur(1.5px);
}


.reserve__text {
    margin: 0 0 55px;

    font-family: "Noto Serif JP", serif;
    font-size: 11px;
    font-weight: 300;
    line-height: 20px;
    letter-spacing: 1px;

    color: #222222;
    text-align: center;

    opacity: 0;
    transform: translateY(6px);


    display: none;

}


.reserve__actions {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;

    /* opacity: 0;
    transform: translateY(6px); */
}



.reserve__tel {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    max-width: 280px;
    height: 45px;

    margin: 0 auto 18px;

    color: #222222;
    text-decoration: none;

    box-sizing: border-box;
}



.reserve__tel::before {
    content: "";
    position: absolute;
    inset: 0;

    background-color: #222222;

    clip-path: polygon(0 0,
            calc(100% - 12px) 0,
            100% 12px,
            100% 100%,
            0 100%);
}



.reserve__tel::after {
    content: "";
    position: absolute;
    inset: 1px;

    background-color: #FCFBF8;

    clip-path: polygon(0 0,
            calc(100% - 11px) 0,
            100% 11px,
            100% 100%,
            0 100%);

    transition: background-color 0.3s ease;
}



.reserve__tel-icon {
    position: relative;
    z-index: 1;

    display: block;
    width: 21px;
    height: 21px;

    margin-right: 14px;

    object-fit: contain;
}



.reserve__tel-number {
    position: relative;
    z-index: 1;

    font-family: "Tenor Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 4px;

    white-space: nowrap;
}

.reserve__tel-label {
    display: none;
}


.reserve__web {
    width: 100%;
    max-width: 280px;

    margin: 0 auto;
    text-align: center;
}



.reserve__web-button {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 45px;

    color: #222222;
    text-decoration: none;

    box-sizing: border-box;
}



.reserve__web-button::before {
    content: "";
    position: absolute;
    inset: 0;

    background-color: #222222;

    clip-path: polygon(0 0,
            calc(100% - 12px) 0,
            100% 12px,
            100% 100%,
            0 100%);
}



.reserve__web-button::after {
    content: "";
    position: absolute;
    inset: 1px;

    background-color: #FCFBF8;

    clip-path: polygon(0 0,
            calc(100% - 11px) 0,
            100% 11px,
            100% 100%,
            0 100%);

    transition: background-color 0.3s ease;
}



.reserve__web-button-text {
    position: relative;
    z-index: 1;

    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 4px;

    white-space: nowrap;
}



.reserve__web-button-arrow {
    position: absolute;
    right: 11px;
    z-index: 1;

    display: block;
    width: 15px;
    height: auto;

    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}



.reserve__web-note {
    margin: 7px 0 0;

    font-family: "Noto Serif JP", serif;
    font-size: 11px;
    font-weight: 300;
    line-height: 14px;
    letter-spacing: 2.9px;

    color: rgba(34, 34, 34, 0.8);
    text-align: center;
}




@media (hover: hover) {

    .reserve__tel:hover,
    .reserve__web-button:hover {
        color: #FCFBF8;
    }

    .reserve__tel:hover::after,
    .reserve__web-button:hover::after {
        background-color: #222222;
    }

    .reserve__tel:hover .reserve__tel-icon {
        filter: brightness(0) invert(1);
    }



    .reserve__web-button:hover .reserve__web-button-arrow {
        transform: translateX(6px);
        filter: brightness(0) invert(1);
    }
}


.reserve.is-visible .reserve__heading-bg-title {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);

    transition:
        opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);

    transition-delay: 0.1s;
}

.reserve.is-visible .reserve__heading-title {
    opacity: 1;
    transform: translate(-50%, -50%);
    filter: blur(0);

    transition:
        opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);

    transition-delay: 0.2s;
}



.reserve.is-visible .reserve__text {
    opacity: 1;
    transform: translateY(0);

    transition:
        opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);

    transition-delay: 0.3s;
}

/* ========================================
   RESERVE - PC
======================================== */

@media screen and (min-width: 769px) {


    .reserve {
        position: relative;

        width: 100%;
        min-height: clamp(620px, 55.14vw, 794px);

        padding:
            clamp(110px, 9vw, 150px) 0 clamp(120px, 10vw, 160px);

        background-color: #FAF8F4;

        box-sizing: border-box;
    }


    .reserve__container {
        width: min(calc(100% - 80px), 1200px);

        margin: 0 auto;
        padding: 0;

        box-sizing: border-box;
        transform: translateY(90px);
    }



    .reserve__heading {
        position: relative;

        width: 100%;
        height: clamp(120px, 10.5vw, 150px);

        margin: 0 0 26px;

        text-align: center;
    }

    .reserve__heading-bg-title {
        position: absolute;

        top: 50%;
        left: 50%;

        width: max-content;
        margin: 0;

        font-family: "Tenor Sans", sans-serif;
        font-size: clamp(88px, 10.42vw, 150px);
        font-weight: 400;

        line-height: 1;
        letter-spacing: 0.19em;

        color: rgba(203, 185, 166, 0.30);

        pointer-events: none;

        opacity: 0;
        transform: translate(-50%, calc(-50% + 30px));
        filter: blur(2px);
    }

    .reserve__heading-title {
        position: absolute;

        top: 75%;
        left: 50%;

        width: max-content;
        margin: 0;

        font-family: "Noto Serif JP", serif;
        font-size: clamp(24px, 2.08vw, 30px);
        font-weight: 500;

        line-height: 1.3;
        letter-spacing: 0.10em;

        color: #222222;

        opacity: 0;
        transform: translate(-50%, calc(-50% + 30px));
        filter: blur(1.5px);
    }

    .reserve__text {
        display: block;

        margin: 0 0 76px;

        font-family: "Noto Serif JP", serif;
        font-size: 15px;
        font-weight: 300;

        line-height: 1.3;
        letter-spacing: 0.10em;

        color: #222222;

        text-align: center;

        opacity: 0;
    }


    .reserve__actions {
        display: flex;
        flex-direction: row;

        justify-content: center;
        align-items: flex-start;

        gap: clamp(55px, 7.8vw, 112px);

        width: 100%;

    }



    .reserve__tel {
        position: relative;

        display: flex;
        align-items: center;
        justify-content: center;

        width: 250px;
        max-width: none;
        height: 50px;

        margin: 0;

        color: #222222;
        text-decoration: none;

        border-bottom: 1px solid #B8B0A5;

        box-sizing: border-box;

        pointer-events: none;
        cursor: default;

    }



    .reserve__tel::before,
    .reserve__tel::after {
        display: none;
    }



    .reserve__tel-icon {
        display: none;
    }


    .reserve__tel-label {
        display: inline-block;

        margin-right: 18px;

        font-family: "Tenor Sans", sans-serif;
        font-size: 16px;
        font-weight: 400;

        line-height: 1.3;
        letter-spacing: 0;
    }


    .reserve__tel-number {
        font-family: "Tenor Sans", sans-serif;
        font-size: 18px;
        font-weight: 400;

        line-height: 1.3;
        letter-spacing: 0.27em;

        white-space: nowrap;
    }




    .reserve__web {
        width: 336px;
        max-width: none;

        margin: 0;

        text-align: center;
    }


    .reserve__web-button {
        position: relative;

        display: flex;
        align-items: center;
        justify-content: center;

        width: 336px;
        height: 50px;

        color: #222222;
        text-decoration: none;

        box-sizing: border-box;
    }


    .reserve__web-button::after {
        background-color: #FAF8F4;
    }


    .reserve__web-button-text {
        position: relative;
        z-index: 1;

        font-family: "Noto Serif JP", serif;
        font-size: 16px;
        font-weight: 400;

        line-height: 1.3;
        letter-spacing: 0.27em;

        white-space: nowrap;
    }


    .reserve__web-button-arrow {
        position: absolute;
        right: 30px;

        z-index: 1;

        width: 25px;
        height: auto;
    }


    .reserve__web-note {
        margin: 7px 0 0;

        font-family: "Noto Serif JP", serif;
        font-size: 11px;
        font-weight: 300;

        line-height: 1.3;
        letter-spacing: 0;

        color: rgba(34, 34, 34, 0.70);

        text-align: center;
    }


    .reserve__tel:hover {
        color: #222222;
    }


    .reserve.is-visible .reserve__heading-bg-title {
        opacity: 1;
        transform: translate(-50%, -50%);
        filter: blur(0);
    }

    .reserve.is-visible .reserve__heading-title {
        opacity: 1;
        transform: translate(-50%, -50%);
        filter: blur(0);
    }


}

/* pc769 */

/* ========================================
   FOOTER
======================================== */

.footer {
    position: relative;
    z-index: 2;

    width: 100%;
    background-color: #EFE8DF;
}

.footer__container {
    width: min(calc(100% - 50px), 480px);
    /* max-width: 390px; */
    min-height: 498px;

    margin: 0 auto;
    padding: 68px 25px 20px;

    box-sizing: border-box;

    position: relative;
}




.footer__brand {
    margin: 0;
}

.footer__logo {
    display: block;
    width: 142px;
    height: auto;

    margin: 0 0 40px;
}

.footer__logo-image {
    display: block;
    width: 100%;
    height: auto;
}


/* SPではキャッチコピー非表示 */
.footer__catch {
    display: none;
}




.footer__nav {
    margin-top: 25px;
}

.footer__nav-list {
    margin: 0;
    padding: 0;

    list-style: none;
}

.footer__nav-item {
    margin: 0;
}


.footer__nav-link {
    display: flex;
    align-items: center;

    width: fit-content;
    min-height: 44px;

    padding-right: 18px;

    font-family: "Tenor Sans", sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 1px;

    color: #222222;
    text-decoration: none;

    transition: opacity 0.3s ease;
}


@media (hover: hover) {
    .footer__nav-link:hover {
        opacity: 0.5;
    }
}



.footer__address {
    margin-top: 25px;

    font-family: "Tenor Sans", sans-serif;
    font-size: 15px;
    font-weight: 400;
    font-style: normal;

    line-height: 24px;
    letter-spacing: 0.6px;

    color: #222222;
}


/*COPYRIGHT*/

.footer__copyright {
    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 20px;

    padding-top: 18px;

    border-top: 0.5px solid rgba(34, 34, 34, 0.18);

    text-align: center;
}

.footer__copyright-text {
    font-family: "Tenor Sans", sans-serif;
    font-size: 12px;
    font-weight: 300;

    line-height: 16px;
    letter-spacing: 1px;

    color: #222222;
}

/* ========================================
   FOOTER - PC / TABLET (769px〜)
======================================== */

@media screen and (min-width: 769px) {

    .footer {
        position: relative;
        z-index: 2;

        width: 100%;
        background-color: #EFE8DF;
    }

    .footer__container {
        position: relative;

        display: grid;


        grid-template-columns:
            202px clamp(20px, 5vw, 80px) max-content minmax(20px, 1fr) 1px minmax(20px, 1fr) max-content;
        width: min(calc(100% - 120px), 1196px);
        max-width: none;

        min-height: clamp(500px, 41.9vw, 603px);

        margin: 0 auto;

        padding:
            clamp(80px, 7.6vw, 109px) 0 clamp(35px, 3vw, 43px);

        box-sizing: border-box;
    }



    .footer__brand {
        grid-column: 1;
        margin: 0;
    }

    .footer__logo {
        width: 202px;
        margin: 0 0 60px;
    }

    .footer__logo-image {
        display: block;

        width: 202px;
        height: 30px;

        object-fit: contain;
    }



    .footer__catch {
        display: block;

        width: 260px;

        font-family: "Noto Serif JP", serif;
        font-size: 16px;
        font-weight: 300;

        line-height: 1.75;
        letter-spacing: 0.04em;

        color: #222222;
    }



    .footer__nav {
        grid-column: 3;

        margin: 0;
    }

    .footer__nav-list {
        display: flex;
        flex-direction: column;

        margin: 0;
        padding: 0;

        list-style: none;
    }

    .footer__nav-item {
        margin: 0;
    }

    .footer__nav-link {
        display: flex;
        align-items: center;

        width: fit-content;

        min-width: 44px;
        min-height: 44px;

        padding: 0;

        font-family: "Tenor Sans", sans-serif;
        font-size: 18px;
        font-weight: 400;

        line-height: 1;
        letter-spacing: 0;

        color: #222222;

        text-decoration: none;
    }




    .footer__address {
        grid-column: 6;

        margin: 0;

        font-family: "Tenor Sans", sans-serif;
        font-size: 16px;
        font-weight: 400;
        font-style: normal;

        line-height: 1.6;
        letter-spacing: 0.04em;

        color: #222222;
    }


    .footer__container::before {
        content: "";

        position: absolute;

        top: clamp(80px, 7.6vw, 109px);
        left: 50%;

        width: 1px;
        height: 134px;

        background-color: rgba(34, 34, 34, 0.18);

        transform: translateX(-50%);
    }


    /* COPYRIGHT*/

    .footer__copyright {
        position: absolute;

        left: 0;
        right: 0;

        bottom: clamp(35px, 3vw, 43px);

        padding-top: 18px;

        border-top: 0.5px solid rgba(34, 34, 34, 0.18);

        text-align: center;
    }

    .footer__copyright-text {
        font-family: "Tenor Sans", sans-serif;
        font-size: 10px;
        font-weight: 300;

        line-height: 1.4;
        letter-spacing: 1px;

        color: #222222;
    }
}

/* pc769 */



@media screen and (min-width: 769px) and (hover: hover) {

    .footer__nav-link {
        transition: opacity 0.3s ease;
    }

    .footer__nav-link:hover {
        opacity: 0.6;
    }
}