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

:root {
    /* containers */
    --inner-narrow: clamp(880px, 88vw, 1080px);
    --inner-wide: clamp(960px, 92vw, 1180px);
    --gutter: clamp(2.4rem, 4vw, 4rem);
    --inset: clamp(2.4rem, 4vw, 10rem);

    /* fonts */
    --font-sans-ja: "Zen Kaku Gothic New", "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "YuGothic", Meiryo, "MS PGothic", sans-serif;
    --font-sans-ja-noto: "Noto Sans JP", "Zen Kaku Gothic New", system-ui, -apple-system, "Segoe UI", Roboto, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "YuGothic", Meiryo, "MS PGothic", sans-serif;
    --font-sans-latin: "Nunito Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    --font-serif-ja: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    --font-serif-latin: "EB Garamond", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;

    /* fluid type (375–1440) */
    --bp-min: 37.5rem;
    --bp-range: 106.5rem;
    --fs-2xs: clamp(1.1rem, calc(1.1rem + (1.3rem - 1.1rem) * ((100vw - var(--bp-min)) / var(--bp-range))), 1.3rem);
    --fs-xs: clamp(1.3rem, calc(1.3rem + (1.6rem - 1.3rem) * ((100vw - var(--bp-min)) / var(--bp-range))), 1.6rem);
    --fs-sm: clamp(1.4rem, calc(1.4rem + (1.7rem - 1.4rem) * ((100vw - var(--bp-min)) / var(--bp-range))), 1.7rem);
    --fs-md: clamp(1.6rem, calc(1.6rem + (2.1rem - 1.6rem) * ((100vw - var(--bp-min)) / var(--bp-range))), 2.1rem);
    --fs-xl: clamp(3.1rem, calc(3.1rem + (5.2rem - 3.1rem) * ((100vw - var(--bp-min)) / var(--bp-range))), 5.2rem);

    /* spacing */
    --space-xs: clamp(.8rem, 1.2vw, 1.6rem);
    --space-sm: clamp(1.2rem, 1.6vw, 2.4rem);
    --space-md: clamp(1.6rem, 2.4vw, 3.2rem);
    --space-lg: clamp(2.4rem, 3.2vw, 4.8rem);
    --space-xl: clamp(3.2rem, 4.2vw, 6.4rem);
    --space-2xl: clamp(4.8rem, 6vw, 9.6rem);
    --space-3xl: clamp(6.4rem, 8vw, 12.8rem);
}

/* ========== LAYOUT UTILS ========== */
.inner {
    width: min(calc(100% - 2 * var(--gutter)), var(--inner-narrow));
    margin-inline: auto;
}

.inner-wide {
    width: min(calc(100% - 2 * var(--gutter)), var(--inner-wide));
    margin-inline: auto;
}

.inner-960 {
    width: min(calc(100% - 2 * var(--gutter)), 96rem);
    margin-inline: auto;
}

.inset-left {
    padding-inline-start: var(--inset);
}

.section {
    padding-block: var(--section-pad, var(--space-2xl));
}

/* ========== PRIMITIVES ========== */
body {
    color: #6e6363;
    font-family: var(--font-sans-ja);
    font-size: 1.6rem;
    line-height: 1;
    letter-spacing: .01em;
    font-optical-sizing: auto;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: opacity .4s;
}

a:hover {
    opacity: .5;
}

/* Screen-reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* MV animation */
:root {
    --mv-bg-time: 1.7s;
    --mv-bg-delay: 0s;
    --mv-ui-time: 1.2s;
    --mv-ui-delay: .2s;
}

/* ========== VISIBILITY UTILS (SP/PC) ========== */
.sp-none-768 {
    display: block;
}

.pc-none-768 {
    display: none;
}

.sp-none-960 {
    display: block;
}

.pc-none-960 {
    display: none;
}

@media (max-width: 960px) {
    .sp-none-960 {
        display: none;
    }

    .pc-none-960 {
        display: block;
    }
}

@media (max-width: 768px) {
    .sp-none-768 {
        display: none;
    }

    .pc-none-768 {
        display: block;
    }
}

/* ===== Prevent footer from being hidden by fixed bottom bar ===== */
@media (max-width: 960px) {
    body {
        padding-bottom: 90px;
    }

    body.is-nav-open {
        padding-bottom: 0;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 69px;
    }
}

/* ========== SHARED COMPONENTS ========== */
/* Buttons */
.u-btn-area {
    display: block;
    text-align: center;
    margin-top: var(--space-xl);
}

.c-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--space-lg);
    height: 5rem;
    padding: 0 clamp(1.8rem, 2.1vw, 2.4rem) 0 clamp(2.2rem, 2.4vw, 3.2rem);
    border: none;
    border-radius: 9999px;
    background-color: #B5756E;
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    line-height: 1;
    transition: color .5s, opacity .5s, filter .5s ease .02s;
}

.c-btn__label {
    letter-spacing: .063em;
}

.c-btn__icon {
    flex-shrink: 0;
    width: 1.8rem;
    height: auto;
    transition: transform .25s ease;
}

.c-btn:hover {
    filter: brightness(1.1);
}

.c-btn:hover .c-btn__icon {
    transform: translateX(clamp(3px, calc((6 / 1440) * 100vw), 6px));
}

@media (prefers-reduced-motion: reduce) {

    .c-btn,
    .c-btn * {
        transition: none !important;
    }
}

@media (max-width: 960px) {
    .c-btn {
        height: 4.4rem;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .c-btn {
        justify-content: center;
        height: 4.2rem;
        font-size: 14px;
    }

    .c-btn.c-btn--menu {
        position: absolute;
        top: 4.8rem;
        width: 4.5rem;
        height: 4.5rem;
        padding: inherit;
    }

    .c-btn__icon {
        width: 1.6rem;
        height: auto;
    }
}

/* Section title */
.c-title__main {
    text-align: center;
    color: #6C3C36;
    font-family: var(--font-serif-latin);
    font-size: 52px;
}

.c-title__sub {
    display: block;
    margin-top: var(--space-xs);
    font-family: var(--font-sans-ja);
    font-size: 16px;
}

@media (max-width:960px) {
    .c-title__main {
        font-size: 42px;
    }

    .c-title__sub {
        font-size: 14px;
    }
}

@media (max-width:760px) {
    .c-title__main {
        font-size: 31px;
    }

    .c-title__sub {
        font-size: 13px;
    }
}

/* Underline link */
.c-link--underline {
    color: #b5756e;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: #b5756e;
}

/* ========== HEADER (shared) ========== */
.header {
    position: sticky;
    top: 0;
    z-index: 1400;
    background-color: #CC8A82;
    color: #fff;
    isolation: isolate;
}

.header__inner {
    display: block;
    width: 100%;
    height: 86px;
    margin-inline: 0;
    padding-block: 1.6rem;
    padding-inline-end: var(--inset);
}

.header__container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    position: relative;
    z-index: 10000;
    color: inherit;
    font-family: var(--font-serif-latin);
    font-size: clamp(2.2rem, 1rem + 0.3vw, 2.6rem);
    letter-spacing: .01em;
    text-align: center;
}

.header__logo-sub {
    display: block;
    margin-top: .5rem;
    font-family: var(--font-sans-ja);
    font-size: 1.1rem;
    letter-spacing: .08em;
}

.header__nav-list {
    display: flex;
    align-items: center;
    column-gap: var(--space-lg);
}

.header__nav-item {
    font-family: var(--font-sans-latin);
    font-size: 1.6rem;
    letter-spacing: .11em;
}

/* header links hover override */
.header__nav-item a {
    text-decoration: none;
    opacity: 1;
    transition: none;
}

.header__nav-item a:hover {
    opacity: 1;
}

.header__nav-item--cta .header__reserve-btn {
    display: inline-block;
    padding: 2rem var(--space-sm);
    border-radius: .6rem;
    background: #fff;
    color: #BC766D;
    font-family: var(--font-sans-ja-noto);
    font-weight: 400;
    font-size: clamp(1.2rem, 1.3vw, 1.4rem);
    letter-spacing: .037em;
    transition: background-color .35s ease;
}

.header__reserve-btn:hover,
.c-drawer__btn:hover,
.c-stickybar__btn:hover {
    opacity: 1;
    background-color: #C2756C;
    color: #fff;
    outline: 1px solid #fff;
}

.c-drawer__btn:hover::after,
.c-stickybar__btn:hover::after {
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: translateX(7px) rotate(45deg);
}

.header__logo-link,
.header__nav-link,
.header__reserve-btn {
    cursor: pointer;
}

.header__nav-link {
    position: relative;
    display: inline-block;
}

.header__nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left top;
    transition: transform .3s;
}

.header__nav-link:hover::after {
    transform: scaleX(1);
}

.header__nav-link[aria-current="page"]::after,
.header__nav-link.is-current::after {
    transform: scaleX(1);
}

/* anchor offset targets */
/* ===== Anchor offset (for sticky header) ===== */
:root {
    --anchor-offset: 86px;
}

@media (max-width: 960px) {
    :root {
        --anchor-offset: 64px;
    }
}

#access {
    scroll-margin-top: var(--anchor-offset);
}

/* ========== MOBILE HEADER / DRAWER (<=960px) ========== */
@media (max-width:960px) {
    .header {
        position: relative;
        top: auto;
        background-color: #CC8A82;
        color: #fff;
    }

    .header__inner {
        display: flex;
        align-items: center;
        width: 100%;
        height: 64px;
        margin-inline: auto;
        padding-inline-end: var(--inset);
        background: none;
    }

    .header__container {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        height: auto;
    }

    .header__logo {
        font-size: 19px;
        line-height: 1.2;
    }

    .header__logo-sub {
        margin-top: .2rem;
        font-size: 10px;
    }

    .header__nav-link::after {
        transition: transform .6s;
    }

    .is-nav-open .header__logo {
        position: fixed;
        top: 0;
        z-index: 1250;
        padding-top: 1.3rem;
        color: #fff;
        transform: translateZ(0);
    }

    /* burger */
    .header__button {
        position: fixed;
        top: max(1rem, env(safe-area-inset-top));
        right: 1rem;
        z-index: 1500;
        width: 44px;
        height: 44px;
        margin-left: auto;
        background: #CC8A82;
        border: 0;
        cursor: pointer;
    }

    .is-nav-open .header__button {
        background: transparent;
    }

    .header__line {
        position: absolute;
        left: 8px;
        width: 28px;
        height: 1px;
        background: #fff;
        transform-origin: right 50%;
        transition: transform .25s ease, opacity .2s ease;
    }

    .header__line:nth-child(1) {
        top: 14px;
    }

    .header__line:nth-child(2) {
        top: 22px;
    }

    .header__line:nth-child(3) {
        top: 30px;
    }

    .header__button.is-open .header__line:nth-child(1) {
        transform: rotate(-33deg);
    }

    .header__button.is-open .header__line:nth-child(2) {
        opacity: 0;
    }

    .header__button.is-open .header__line:nth-child(3) {
        transform: rotate(33deg);
    }

    /* drawer */
    .header__nav {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: flex;
        flex-direction: column;
        min-height: 100dvh;
        box-sizing: border-box;
        padding-block-start: calc(64px + max(0px, env(safe-area-inset-top)));
        padding-block-end: calc(64px + max(0px, env(safe-area-inset-top)));
        padding-inline: 10%;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        row-gap: clamp(3rem, 4.2vh, 8rem);
        background: url("/img/bg_nav-sp.jpg") no-repeat center/cover;
        color: #fff;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(4%);
        transition: opacity .35s ease, transform .35s ease, visibility .35s;
        will-change: transform, opacity;
    }

    .header__nav::before,
    .header__nav::after {
        content: "";
        display: block;
        flex: 1 1 auto;
        min-height: 16px;
    }

    .header__nav-list {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: clamp(3rem, 4.2vh, 8rem);
        padding: 0;
        list-style: none;
        letter-spacing: .11em;
    }

    .header__nav-link {
        display: block;
        font-family: var(--font-sans-latin);
        font-size: 22px;
    }

    /* drawer items */
    .c-drawer__menu-jp {
        display: inline-block;
        margin-top: clamp(.4rem, .6vw, .9rem);
        margin-left: 20px;
        font-family: var(--font-sans-ja);
        font-size: 12px;
        letter-spacing: 0;
    }

    .c-drawer__cta-box {
        display: flex;
        flex-direction: column;
        gap: clamp(1rem, 2vh, 6rem);
        width: 100%;
        margin-top: clamp(2rem, 3vh, 4rem);
    }

    .c-drawer__btn {
        position: relative;
        display: block;
        padding: clamp(1.5rem, 2.4vw, 4.6rem) 0;
        text-align: center;
        background: #fff;
        color: #BC766D;
        border-radius: 5px;
        font-family: var(--font-serif-ja);
        font-size: clamp(1.6rem, 2.6vw, 1.8rem);
        font-weight: 500;
        transition: transform .35s ease, background-color .35s ease, opacity .35s ease;
    }

    .c-drawer__btn span {
        display: block;
        margin-top: .4em;
        font-family: var(--font-sans-latin);
        font-size: 1.4rem;
        font-weight: 300;
        letter-spacing: .1em;
    }

    .c-drawer__btn::after {
        content: "";
        position: absolute;
        top: 0;
        right: 1em;
        bottom: 0;
        width: 10px;
        height: 10px;
        margin: auto;
        border-top: 1px solid #BC766D;
        border-right: 1px solid #BC766D;
        transform: rotate(45deg);
        box-sizing: border-box;
        transition: transform .25s ease;
    }

    .c-drawer__btn:hover::after,
    .c-stickybar__btn:hover::after {
        transform: translateX(7px) rotate(45deg);
    }
}

/* Drawer open state */
.is-nav-open .header__nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/* ========== SP STICKY BOTTOM BAR ========== */
.c-stickybar {
    position: fixed;
    bottom: 0;
    z-index: 900;
    width: 100%;
    gap: clamp(1rem, 2vh, 6rem);
    margin-top: 0;
    background-color: #CC8A82;
}

.c-stickybar__list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1.3rem;
    width: 100%;
    margin-top: 0;
    padding: 1.5rem 4rem;
}

.c-stickybar__item {
    width: 50%;
}

.c-stickybar__btn {
    padding: 1.2rem 0;
    font-size: 16px;
}

.c-stickybar__btn span {
    margin-top: .4em;
}

/* hide while drawer open */
body.is-nav-open .c-stickybar {
    display: none;
}

@media (max-width:768px) {
    .header__nav-list {
        gap: 3rem;
    }

    .header__nav-link {
        font-size: 20px;
    }

    .c-drawer__btn {
        font-weight: 600;
    }

    .c-drawer__menu-jp {
        font-weight: 200;
    }

    .header__nav-link::after {
        height: 1px;
        bottom: -4px;
    }

    .c-stickybar__list {
        padding: 1rem 2.6rem;
        gap: 1.3rem;
    }

    .c-stickybar__btn {
        padding: 1.1rem 0;
        font-size: 14px;
        font-weight: 600;
    }

    .c-stickybar__btn span {
        font-size: 10px;
        margin-top: .3rem;
    }

    .c-stickybar__btn::after {
        width: 8px;
        height: 8px;
    }
}

/* ========== CTA (Contact) ========== */
.cta {
    text-align: center;
    padding-block: var(--space-xl);
    color: #fff;
    background: linear-gradient(rgba(0, 0, 0, .18), rgba(0, 0, 0, .18)), url("/img/bg_cta.jpg") no-repeat center/cover;
}

.cta__title {
    margin-bottom: 4.2rem;
    color: #fff;
    letter-spacing: .05em;
}

.cta__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.cta__btn {
    position: relative;
    display: inline-block;
    width: 310px;
    padding-block: clamp(1.4rem, 1.7vw, 2rem);
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    text-align: center;
    font-family: var(--font-serif-ja);
    font-size: 20px;
    transition: .3s;
}

.cta__btn span {
    display: block;
    margin-top: .8rem;
    font-family: var(--font-sans-latin);
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: .11em;
    opacity: .9;
}

.cta__btn::after {
    content: "";
    position: absolute;
    top: 0;
    right: 1em;
    bottom: 0;
    width: 10px;
    height: 10px;
    margin: auto;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    box-sizing: border-box;
    transition: transform .25s ease;
}

.cta__btn:hover {
    background-color: rgba(255, 255, 255, .3);
}

.cta__btn:hover::after {
    transform: translateX(7px) rotate(45deg);
}

.cta__note {
    margin-top: 4rem;
    font-size: var(--fs-xs);
    opacity: .9;
}

@media (max-width:960px) {
    .cta__btn {
        width: 28rem;
        font-size: 18px;
    }
}

@media (max-width:768px) {
    .cta__btn {
        width: 26rem;
        font-weight: 500;
        font-size: 16px;
        text-shadow: 0 0 20px rgba(0, 0, 0, .6);
    }

    .cta__title {
        margin-bottom: 3rem;
    }

    .cta__note {
        margin-top: 3rem;
        line-height: 1.41;
    }

    .cta__btn span {
        margin-top: .4em;
        font-size: 1.4rem;
    }

    .cta__buttons {
        gap: 1.6rem;
    }
}

/* ========== FOOTER ========== */
.footer {
    text-align: center;
    padding-top: clamp(3.5rem, 3.2vw, 4.3rem);
    background-color: #F5EAE7;
    color: #7a6260;
}

.footer__logo {
    color: #6E6767;
    font-family: var(--font-serif-latin);
    font-size: 2.9rem;
    font-weight: 500;
    letter-spacing: .01em;
    text-align: center;
}

.footer__logo-sub {
    display: block;
    margin-top: .6rem;
    color: #6E6767;
    font-family: var(--font-sans-ja);
    font-size: 12px;
    letter-spacing: .07em;
}

.footer__sns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.6rem 0 2rem;
}

.footer__sns img {
    width: 35px;
    height: 35px;
}

.footer__info {
    margin-bottom: var(--space-2xl);
    font-size: 13px;
    line-height: 1.72;
}

.footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(2rem, 4vw, 5.44rem);
    margin-bottom: var(--space-sm);
    color: #BE867F;
    font-family: var(--font-sans-latin);
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: .11em;
}

.footer__copy {
    padding-block: var(--space-xs);
    background-color: #fff;
    color: #D3ACA8;
    font-size: 1.1rem;
}

@media (max-width:960px) {
    .footer__sns {
        margin: 1.5rem 0 2rem;
    }

    .footer__logo-sub {
        font-size: 1rem;
    }

    .footer__info {
        font-size: 11px;
    }

    .footer__copy {
        font-size: 1rem;
    }

    .footer__logo {
        font-size: 24px;
    }
}

@media (max-width:768px) {
    .footer__logo-sub {
        font-size: 11px;
    }

    .footer__sns {
        margin: 1rem 0 1.6rem;
        gap: .8rem;
    }

    .footer__copy {
        padding: 1.2rem;
    }
}

/* ========== SUB MV (shared) ========== */
.mv-sub {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 28rem;
    text-align: center;
    overflow: hidden;
    background-color: #f8f3f0;
}

.mv-sub::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 40%;
    max-width: 460px;
    background: url("/img/bg_mv-subpage01.png") no-repeat left top / contain;
    z-index: 0;
    pointer-events: none;
}

.mv-sub::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 38%;
    max-width: 440px;
    background: url("/img/bg_mv-subpage02.png") no-repeat right bottom / contain;
    z-index: 0;
    pointer-events: none;
}

.mv-sub::backdrop {
    background-color: #F8F3F0;
}

.mv-sub__title {
    position: relative;
    z-index: 1;
    color: #74403A;
    font-family: var(--font-serif-latin);
    font-size: 45px;
    letter-spacing: .05em;
}

@media (max-width:960px) {
    .mv-sub {
        min-height: 24rem;
    }

    .mv-sub::before {
        width: 40%;
        max-width: 360px;
    }

    .mv-sub::after {
        width: 39%;
        max-width: 340px;
    }

    .mv-sub__title {
        font-size: 40px;
    }
}

@media (max-width:768px) {
    .mv-sub {
        min-height: 15rem;
    }

    .mv-sub::before {
        width: 50%;
        max-width: 240px;
    }

    .mv-sub::after {
        width: 50%;
        max-width: 220px;
    }

    .mv-sub__title {
        font-size: 27px;
        font-weight: 400;
    }
}

/* ========== MISC / HELPERS ========== */
.asterisk {
    color: #C94444;
}

.body--lock {
    overflow: hidden;
}

/* ========== LINE MODAL (shared) ========== */
.line-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.line-modal.is-open {
    display: block;
}

.line-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    opacity: 0;
    transition: opacity .28s ease;
}

.line-modal__dialog {
    position: relative;
    max-width: 640px;
    width: calc(100% - 2 * var(--gutter, 16px));
    margin: min(6vh, 4rem) auto;
    padding: 30px 22px 30px;
    background: #fff;
    border-radius: 16px;
    opacity: 0;
    transform: translateY(14px) scale(.985);
    transition: opacity .28s ease, transform .28s ease;
    will-change: opacity, transform;
}

/* content */
.line-modal__title {
    text-align: center;
    color: #CE8279;
    font-family: var(--font-sans-ja-noto);
    font-size: 23px;
    font-weight: 400;
    letter-spacing: .02em;
    line-height: 1.5;
}

.line-modal__desc {
    text-align: center;
    margin-top: 2rem;
    font-size: 15px;
    line-height: 1.4;
}

.line-modal__content {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 1rem;
    margin-top: 2.6rem;
}

.line-modal__qr {
    width: 100%;
    max-width: 240px;
    height: auto;
    margin: 0 auto;
}

.line-modal__qr figcaption {
    margin-top: .5rem;
    color: #777;
    font-size: 12px;
}

.line-modal__button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 260px;
    max-width: 340px;
    margin: 0 auto;
    background: #06C755;
    line-height: 1.2;
}

.line-modal__button::after {
    content: "";
    position: absolute;
    top: 0;
    right: 1em;
    bottom: 0;
    width: 7px;
    height: 7px;
    margin: auto;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    box-sizing: border-box;
    transition: transform .25s ease;
}

.line-modal__button:hover {
    opacity: .5;
    color: #fff;
    outline: 1px solid #fff;
}

.line-modal__button:hover::after {
    transform: translateX(6px) rotate(45deg);
}

.line-modal__id {
    text-align: center;
    margin-top: 2rem;
    color: #666;
    font-size: 14px;
}

.line-modal__close {
    position: absolute;
    inset: 10px 10px auto auto;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #f4f0f0;
    font-size: 20px;
    cursor: pointer;
}

.line-modal__close {
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.line-modal__close:focus {
    outline: none;
}

@media (max-width:768px) {
    .line-modal__dialog {
        padding: 30px 20px 30px;
    }

    .line-modal__title {
        font-size: 18px;
        font-weight: 500;
    }

    .line-modal__desc {
        font-size: 14px;
    }

    .line-modal__content {
        gap: 1.4rem;
        justify-content: center;
    }

    .line-modal__button {
        max-width: 260px;
        font-size: 15px;
    }
}

/* 目標状態（JSが .is-animate を付与） */
.line-modal.is-animate .line-modal__overlay {
    opacity: 1;
}

.line-modal.is-animate .line-modal__dialog {
    opacity: 1;
    transform: none;
}

/* ========== MENU (shared across TOP/MENU) ========== */
.menu {
    background-color: #fff;
    background-image: url("/img/image_menu-flower01.png"), url("/img/image_menu-flower02.png");
    background-repeat: no-repeat, no-repeat;
    background-position: right top, left bottom;
    background-size: clamp(22rem, 24vw, 46rem), clamp(26rem, 28vw, 52rem);
}

.menu__inner {
    padding-bottom: var(--space-2xl);
}

.menu__title-box {
    padding-bottom: var(--space-2xl);
}

.menu__container {
    display: grid;
    row-gap: 4rem;
}

.menu__item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
}

.menu__image-box {
    position: relative;
    overflow: hidden;
}

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

.menu__text-box {
    background-color: #FAF2F0;
}

.menu__text-box--alt {
    background-color: #F7F4F2;
}

.menu__text-box-inner {
    position: relative;
    padding: var(--space-lg) 8.3% 8.3% var(--space-lg);
}

.menu__type {
    color: #B97D7C;
    font-family: var(--font-serif-latin);
    font-size: 78px;
    font-weight: 100;
}

.menu__type--alt {
    color: #B8967B;
}

.menu__type-sub {
    display: block;
    margin-top: var(--space-sm);
    color: #8B5B5B;
    font-size: 17px;
    font-weight: 500;
}

.menu__type::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    margin-top: var(--space-sm);
    background-color: #BC9F9C;
}

.menu__content-box {
    margin-top: var(--space-sm);
    color: #6e6363;
    font-size: 1.5rem;
    line-height: 1.89;
}

.menu__btn-area {
    display: flex;
    justify-content: flex-end;
    margin-top: var(--space-md);
}

.c-btn--menu-alt {
    background-color: #886759;
}


@media (max-width: 960px) {
    .menu__type {
        font-size: 72px;
    }

    .menu__type-sub {
        font-size: 15px;
    }
}


@media (max-width: 768px) {

    /* Menu */
    .menu {
        background-size: 17rem, 20rem;
    }

    .menu__container {
        width: 94%;
        margin: 0 auto;
        row-gap: 3rem;
    }

    .menu__item {
        grid-template-columns: 1fr;
    }

    .menu__text-box-inner {
        padding: 6% 6% 3%;
    }

    .menu__type {
        font-size: 44px;
    }

    .menu__type-sub {
        font-size: 14px;
    }

    .menu__type::after {
        display: none;
    }

    .c-btn.c-btn--menu {
        position: absolute;
        top: 4.8rem;
        width: 4.5rem;
        height: 4.5rem;
        padding: 0;
    }

    .menu__image-box {
        width: 100%;
        aspect-ratio: 2 / 1;
    }
}

/* ========== REVEAL-UP (IntersectionObserver hooks) ========== */
.has-io .reveal-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 1.2s ease, transform 1.2s ease;
    transition-delay: .1s;
    will-change: opacity, transform;
    visibility: hidden;
    pointer-events: none;
}

.has-io .reveal-up.is-inview {
    opacity: 1;
    transform: none;
    visibility: visible;
    pointer-events: auto;
}

/* お知らせ */
.has-io .information {
    opacity: 0;
    transform: translateY(12px);
    animation: mv-fade-up var(--mv-ui-time) ease var(--mv-ui-delay) forwards;
    will-change: opacity, transform;
}

/* ディレイ調整 */
.mv-sub__title.reveal-up {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 1s ease, transform 1s ease;
    transition-delay: .06s;
    will-change: opacity, transform;
}

.concept__text.reveal-up {
    transition-delay: .4s;
}

.ab-feature__card--procell.reveal-up,
.ab-feature__menu-list.reveal-up,
.ab-profile__right.reveal-up,
.procell__title-box.reveal-up {
    transition-delay: .4s;
}

.ab-feature__text-box.reveal-up {
    transition-delay: .35s;
}

.mcard.reveal-up,
.bottom__menu-tabs__list.reveal-up,
.procell__menu-link__area.reveal-up {
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
    transition-delay: .06s;
}

.menu-sec.reveal-up .gallery.reveal-up {
    transition-delay: .1s;
}

@media (max-width:768px) {
    .ab-feature__text-box.reveal-up {
        transition-delay: .2s;
    }

    .ab-feature__card--procell.reveal-up,
    .ab-feature__menu-list.reveal-up {
        transition-delay: .2s;
    }
}