/* ==========================================================================
   Design System & Variables - 大人エレガントカラー
   ========================================================================== */
:root {
    /* Color Palette (White & Beige) */
    --clr-base: #FFFFFF;
    /* White */
    --clr-accent: #C6B7A0;
    /* Elegant Beige */
    --clr-sub: #F7F5F0;
    /* Very Light Beige */
    --clr-dark: #4D453E;
    /* Soft Brown */
    --clr-text: #736B63;
    /* Soft Brown Text */

    /* Typography */
    --ff-jp-sans: 'Noto Sans JP', sans-serif;
    --ff-jp-serif: 'Noto Serif JP', serif;
    --ff-en-fancy: 'Cormorant Garamond', serif;
    --ff-en-cursive: 'Dancing Script', cursive;

    /* Base Values */
    --line-height: 1.8;
    --ls: 0.05em;
    --section-gap: 120px;
    --side-padding: 3vw;
    --header-height: 80px;
    --reve-section-title-size: 52px;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    background-color: var(--clr-base);
    color: var(--clr-text);
    font-family: var(--ff-jp-sans);
    line-height: var(--line-height);
    letter-spacing: var(--ls);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    font-size: 16px;
}

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

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.reve-font-roboto {
    font-family: var(--ff-en-fancy);
    font-weight: 400;
    font-size: var(--reve-section-title-size);
    line-height: 1.1;
}

.section-title-script {
    font-family: var(--ff-en-cursive);
    font-weight: 500;
    letter-spacing: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

p,
li,
.about__text,
.profile__text,
.menu-card__desc,
.contact__list li,
.text-\[14px\],
.text-\[18px\] {
    font-size: 16px !important;
}

h3,
h4,
.profile__name,
.menu-card__title,
.phi-text-area__main,
.text-3xl {
    font-size: 20px !important;
}

.section-title-script::before {
    content: '';
    width: 80px;
    height: 80px;
    display: block;
    background: url('img/icon.png') center / contain no-repeat;
    opacity: 1;
    margin-bottom: -15px;
}

.reve-font-serif {
    font-family: 'Zen Old Mincho', serif;
    font-weight: 400;
}

.section-padding {
    padding: 100px 0;
}

.container-custom {
    max-width: 1152px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 768px) {
    .container-custom {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

.img-container {
    overflow: hidden;
    background-color: #eee;
    position: relative;
}

.img-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   Animations
   ========================================================================== */
.js-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.js-fade.is-active {
    opacity: 1;
    transform: none;
}

.anim-soft-fade {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(20px);
    transition: all 2.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-soft-fade.is-active {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.anim-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-fade-up.is-active {
    opacity: 1;
    transform: translateY(0);
}

.anim-img-reveal {
    overflow: hidden;
    position: relative;
}

.anim-img-reveal img {
    transform: scale(1.15);
    transition: transform 4s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-img-reveal.is-active img {
    transform: scale(1);
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s, box-shadow 0.3s;
}

.header__container {
    width: 100%;
    max-width: 1562px;
    height: 100%;
    margin: 0 auto;
    padding: 0 var(--side-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    font-family: var(--ff-jp-serif);
    font-size: clamp(1.05rem, 2vw, 1.5rem);
    color: var(--clr-dark);
    letter-spacing: 0.08em;
}

.header__nav ul {
    display: flex;
    gap: clamp(1rem, 2vw, 2.5rem);
    align-items: center;
}

.header__nav ul li a {
    color: var(--clr-text);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.header__nav a:hover {
    color: var(--clr-accent);
}

.header__btn--hp a,
.header__btn--line a {
    display: block;
    padding: 0.6rem 1.4rem;
    color: var(--clr-text);
    border: 1px solid var(--clr-text);
    font-size: 0.8rem;
    transition: 0.3s;
}

.header__btn--hp a:hover,
.header__btn--line a:hover {
    opacity: 0.6;
    color: var(--clr-accent);
    border-color: var(--clr-accent);
}

@media (max-width: 1024px) {
    .header__nav {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 60px;
    }

    .header__logo {
        font-size: 20px;
    }
}

/* Hamburger & SP Nav */
.header__hamburger {
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    z-index: 1000;
    display: none;
}

@media (max-width: 1024px) {
    .header__hamburger {
        display: block;
    }
}

.header__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--clr-dark);
    position: absolute;
    left: 0;
    transition: all 0.3s;
}

.header__hamburger span:nth-child(1) {
    top: 0;
}

.header__hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.header__hamburger span:nth-child(3) {
    bottom: 0;
}

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

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

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

.header__sp-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(255, 255, 255, 0.98);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
    overflow-y: auto;
    transition: all 0.5s;
    opacity: 0;
    visibility: hidden;
}

.header__sp-nav.is-active {
    right: 0;
    opacity: 1;
    visibility: visible;
}

.header__sp-nav li {
    margin-bottom: 1.25rem;
    text-align: center;
}

.header__sp-nav-btns {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 80vw;
    max-width: 260px;
    margin-top: 15px;
}

.header__sp-nav-btns .cta-button {
    width: 100%;
    max-width: 100%;
    padding: 12px;
    font-size: 1rem;
    margin: 0;
}

.header__sp-nav a {
    font-family: var(--ff-en-fancy);
    font-size: 1.5rem;
    color: var(--clr-text);
    letter-spacing: 0.15em;
}

/* ==========================================================================
   FV SECTION
   ========================================================================== */
main>section {
    position: relative;
    isolation: isolate;
}

main>section>* {
    position: relative;
    z-index: 1;
}

/* =========================
   FV
========================= */

.fv-new {
    position: relative;
    width: 100%;
    height: calc(85svh - var(--header-height)); /* ヘッダーの高さ分を引く */
    margin-top: var(--header-height); /* ヘッダーと重ならないように開始位置を下げる */
    min-height: 600px;
    max-height: 800px;
    background-color: #faf6ee;
    /* PC用：グラデーションを薄くして、fv2.jpgの模様をしっかり見せる */
    background-image:
        linear-gradient(to right, rgba(250, 246, 238, 0.5) 0%, rgba(250, 246, 238, 0.1) 50%, rgba(250, 246, 238, 0) 100%),
        url('img/fv2.jpg');
    background-position: left center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* FV上下のゴールドライン */
.fv-new::before,
.fv-new::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 5px; /* 少し太くして見えるように変更 */
    background: linear-gradient(to right, #c7ad84 0%, #e2ceab 20%, #b89b72 50%, #e2ceab 80%, #c7ad84 100%);
    z-index: 20;
}
.fv-new::before {
    top: 0;
}
.fv-new::after {
    bottom: 0;
}


/* =========================
   FV PHOTO
========================= */

.fv-new__bg-wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 62%;
    height: 100%;
    z-index: 1;

    -webkit-mask-image:
        linear-gradient(to right,
            transparent 0%,
            rgba(0, 0, 0, 0.15) 8%,
            rgba(0, 0, 0, 0.65) 20%,
            #000 34%);

    mask-image:
        linear-gradient(to right,
            transparent 0%,
            rgba(0, 0, 0, 0.15) 8%,
            rgba(0, 0, 0, 0.65) 20%,
            #000 34%);

    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.fv-new__bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/fv1.jpg');
    background-size: cover;
    background-position: 62% center;
    transform: scale(-1.01, 1.01); /* 左右反転 */
}


/* =========================
   CONTAINER
========================= */

.fv-new__container {
    position: relative;
    width: 100%;
    max-width: 1600px;
    height: 100%;
    margin: 0 auto;
    z-index: 3;
    display: flex;
    align-items: center;
    padding-left: clamp(120px, 12vw, 240px); /* より中に入れるために余白を拡大 */
    padding-right: clamp(40px, 6vw, 100px);
    pointer-events: none;
}


/* =========================
   CONTENT
========================= */

.fv-new__content {
    position: relative;
    width: min(100%, 660px);
    z-index: 4;
    pointer-events: auto;
    padding-top: clamp(30px, 4vh, 70px);
    text-shadow: none;
}

.fv-new__content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 45%;
    width: 150%;
    height: 150%;
    transform: translate(-50%, -50%);

    /* より透明度を高くし、背景の質感を透かす */
    background:
        radial-gradient(ellipse at center,
            rgba(250, 246, 238, 0.8) 0%,
            rgba(250, 246, 238, 0.3) 45%,
            rgba(250, 246, 238, 0) 75%);

    /* 境界を滑らかにぼかす（数値を上げてふんわり感をアップ） */
    filter: blur(50px);

    z-index: -1;
    pointer-events: none;
}


/* =========================
   MAIN COPY
========================= */

.fv-new__main {
    font-family:
        var(--ff-jp-serif),
        "Noto Serif JP",
        serif;

    font-size: clamp(2.8rem, 4.2vw, 4.6rem); /* 少し大きく調整 */
    font-weight: 400;
    color: #443a33;
    line-height: 1.32;
    letter-spacing: 0.08em; /* 広げすぎない上品な間隔に再調整 */
    margin: 0;
    font-feature-settings: "palt";
}

.fv-new__main-line1,
.fv-new__main-line2 {
    display: block;
}

.fv-new__main-line1 {
    margin-bottom: 0.05em;
}

.fv-new__main-line2 {
    padding-left: 0.02em;
}

.fv-new__main-accent {
    /* 光沢感のあるグリーンのグラデーションテキストに変更 */
    background: linear-gradient(135deg, #5c7255 0%, #8ca183 40%, #a4bba8 60%, #43543d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* =========================
   DECORATION LINE
========================= */

.fv-new__divider {
    position: relative;
    width: 240px; /* 少し短くして抜け感を出す */
    height: 1px;
    margin-top: 42px;
    margin-bottom: 34px;

    /* より輝きのあるゴールドグラデーション */
    background:
        linear-gradient(to right,
            transparent 0%,
            rgba(199, 173, 132, 0.5) 30%,
            rgba(226, 206, 171, 0.9) 50%,
            rgba(199, 173, 132, 0.5) 70%,
            transparent 100%);
}

.fv-new__divider::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 6px;
    /* ひし形もゴールドグラデーションを意識した色に */
    background-color: #d2bd9c; 
    border: none;

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


/* =========================
   SUB COPY
========================= */

.fv-new__sub {
    font-family:
        var(--ff-jp-serif),
        "Noto Serif JP",
        serif;

    font-size: clamp(0.92rem, 1.15vw, 1.15rem); /* 少し大きく調整 */
    font-weight: 500; /* よりはっきり見えるように400から500に太くする */
    color: #443a33; /* 文字色も少し濃くして視認性をさらに高める */
    line-height: 2;
    letter-spacing: 0.08em; /* 広げすぎない上品な間隔に再調整 */
    margin: 0 0 44px;
    font-feature-settings: "palt";
}


/* =========================
   SALON LOGO
========================= */

.fv-new__logo {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;

    font-family:
        var(--ff-jp-serif),
        "Noto Serif JP",
        serif;

    color: #493f37;
}

.fv-new__logo-name {
    display: flex;
    align-items: baseline;
    font-size: clamp(1.15rem, 1.4vw, 1.45rem); /* 少し大きく調整 */
    letter-spacing: 0.1em; /* 広げすぎない上品な間隔に再調整 */
}

.fv-new__logo-main {
    margin-left: 14px;
    font-size: clamp(2rem, 2.5vw, 2.8rem); /* 少し大きく調整 */
    font-weight: 400;
    /* 光沢感のあるグリーンのグラデーションテキストに変更 */
    background: linear-gradient(135deg, #5c7255 0%, #8ca183 40%, #a4bba8 60%, #43543d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.08em;
}

.fv-new__logo-sub {
    display: block;
    margin-top: 7px;
    margin-left: 2px;

    font-family:
        var(--ff-en-sans),
        sans-serif;

    font-size: clamp(0.68rem, 0.8vw, 0.85rem); /* 少し大きく調整 */
    color: #a68f73;
    letter-spacing: 0.3em;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1100px) {

    .fv-new__container {
        padding-left: 10vw; /* より中に入れるために余白を拡大 */
    }

    .fv-new__content {
        width: 54%;
    }

    .fv-new__main {
        font-size: clamp(2.5rem, 4.2vw, 3.5rem);
    }
}


/* =========================
   SP
========================= */

@media (max-width: 768px) {

    .fv-new {
        height: auto;
        min-height: calc(100svh - var(--header-height)); /* ヘッダー分を引く */
        margin-top: var(--header-height); /* ヘッダーと重ならないように開始位置を下げる */
        display: block;
        background-position: left bottom;
        /* SP用：下半分（文字エリア）を白く覆うグラデーションに変更 */
        background-image:
            linear-gradient(to bottom, rgba(250, 246, 238, 0) 0%, rgba(250, 246, 238, 0.7) 40%, rgba(250, 246, 238, 0.95) 100%),
            url('img/fv2.jpg');
    }

    .fv-new__bg-wrap {
        position: relative;
        width: 100%;
        height: 43svh;
        min-height: 310px;
        top: auto;
        right: auto;

        -webkit-mask-image:
            linear-gradient(to bottom,
                #000 0%,
                #000 65%,
                transparent 100%);

        mask-image:
            linear-gradient(to bottom,
                #000 0%,
                #000 65%,
                transparent 100%);
    }

    .fv-new__bg-image {
        background-position: center center;
        transform: scaleX(-1); /* 左右反転 */
    }

    .fv-new__container {
        height: auto;

        padding:
            0 clamp(24px, 7vw, 36px) 60px;

        display: block;
    }

    .fv-new__content {
        width: 100%;
        padding-top: 0;
        margin-top: -8px;
        text-align: center; /* SPは中央揃え */
    }

    .fv-new__content::before {
        display: none;
    }

    .fv-new__main {
        font-size: clamp(1.85rem, 8.2vw, 2.25rem);
        line-height: 1.42;
        letter-spacing: 0.06em; /* 広げすぎない上品な間隔に再調整 */
        margin-bottom: 0;
    }

    .fv-new__main-line1 {
        margin-bottom: 0.05em;
    }

    .fv-new__main-line2 {
        padding-left: 0;
    }

    .fv-new__divider {
        width: 180px;
        margin-top: 28px;
        margin-bottom: 25px;
        margin-left: auto; /* 中央揃えに */
        margin-right: auto; /* 中央揃えに */
    }

    .fv-new__divider::after {
        left: 50%;
        right: auto;
    }

    .fv-new__sub {
        font-size: clamp(0.78rem, 3.4vw, 0.9rem);
        line-height: 1.9;
        letter-spacing: 0.05em; /* 広げすぎない上品な間隔に再調整 */

        white-space: normal;
        width: 100%;
        padding: 0;

        margin-bottom: 30px;
        text-align: center; /* SPは中央揃え */
    }

    .fv-new__logo {
        display: inline-flex;
        flex-direction: column;
        align-items: center; /* 中央揃え */
        text-align: center;
        width: 100%;
        margin: 0;
    }

    .fv-new__logo-name {
        font-size: 1rem;
        letter-spacing: 0.06em;
    }

    .fv-new__logo-main {
        font-size: 1.65rem;
        margin-left: 10px;
        letter-spacing: 0.07em;
    }

    .fv-new__logo-sub {
        font-size: 0.62rem;
        margin-top: 5px;
        letter-spacing: 0.27em;
    }
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.phi-text-area {
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.about {
    background: url('img/bg.png') center / cover fixed;
}

/* SP固定背景対応: about, contact */
@media (max-width: 767px),
(max-width: 1024px) and (hover: none) and (pointer: coarse) {

    .about,
    .contact {
        background: none;
        position: relative;
        isolation: isolate;
        -webkit-clip-path: inset(0);
        clip-path: inset(0);
    }

    .about::before {
        content: '';
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: url('img/spbr.png') center / cover no-repeat;
        z-index: 0;
        pointer-events: none;
    }

    .contact::before {
        content: '';
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: url('img/spbr.png') center / cover no-repeat;
        z-index: 0;
        pointer-events: none;
    }

    .about>*,
    .contact>* {
        position: relative;
        z-index: 1;
    }
}

.phi-text-area__bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--ff-en-cursive);
    font-size: clamp(72px, 15vw, 160px);
    color: #ebe3dc;
    z-index: 0;
    white-space: nowrap;
    opacity: 0;
    line-height: 1;
    animation: conceptFloatIn 1.8s ease-out forwards;
}

.phi-text-area__catch,
.phi-text-area__desc {
    position: relative;
    z-index: 1;
}

.concept-v-line {
    width: 1px;
    height: 60px;
    background-color: var(--clr-accent);
    margin: 40px auto;
    position: relative;
    z-index: 1;
}

.phi-text-area__main {
    font-family: var(--ff-jp-serif);
    font-size: clamp(26px, 6.5vw, 30px);
    color: var(--clr-dark);
    letter-spacing: 0.1em;
}

.fade-char {
    opacity: 0;
    display: inline-block;
    transform: translateY(10px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@media (min-width: 769px) {
    .phi-text-area__main {
        font-size: 32px !important;
    }
}

@keyframes conceptFloatIn {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
        filter: blur(10px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
        filter: blur(0);
    }
}

.phi-text-area__desc {
    margin-top: 3rem;
    color: var(--clr-text);
    line-height: 2.2;
}

.about__text {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   RESERVATION CTA
   ========================================================================== */
.cta-bg-01 {
    background-color: var(--clr-sub);
    padding: 80px 0;
}

.button-21 {
    flex: 1 1 0;
    max-width: 300px;
}

.button-21 a {
    font-family: var(--ff-jp-serif);
    font-size: 16px;
    letter-spacing: 0.1em;
    color: #fff;
    border: 1px solid var(--clr-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    margin: 0;
    width: 100%;
    min-height: 58px;
    transition: all 0.3s;
    background: var(--clr-accent);
}

.button-21 a:hover {
    color: var(--clr-accent);
    background-color: #fff;
    border-color: var(--clr-accent);
}

.phi-reservation__btns {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 24px;
}

@media (max-width: 768px) {
    .phi-reservation__btns {
        flex-direction: column;
        align-items: center;
    }

    .button-21 {
        width: 100%;
        max-width: 320px;
    }

    .button-21 a {
        width: 100%;
    }
}

/* ==========================================================================
   SERVICE SECTION (旧REASONS)
   ========================================================================== */
.service-section {
    background-color: var(--clr-sub);
    padding: 120px 0;
}

.service-title {
    color: var(--clr-accent);
}

.service-section h4 {
    font-family: var(--ff-en-fancy), var(--ff-jp-serif) !important;
    font-size: 20px !important;
    color: var(--clr-accent) !important;
    font-weight: 500 !important;
}

/* ==========================================================================
   MENU SECTION (リスト型・画像なし)
   ========================================================================== */
.menu {
    padding: 100px 0;
    background: url('img/menu.png') center / cover fixed;
}

/* SP固定背景対応: menu */
@media (max-width: 767px),
(max-width: 1024px) and (hover: none) and (pointer: coarse) {
    .menu {
        background: none;
        position: relative;
        isolation: isolate;
        -webkit-clip-path: inset(0);
        clip-path: inset(0);
    }

    .menu::before {
        content: '';
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: url('img/menu.png') center / cover no-repeat;
        z-index: 0;
        pointer-events: none;
    }

    .menu>* {
        position: relative;
        z-index: 1;
    }
}

/* --- 新メニューリスト (見やすく改善) --- */
.menu-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.menu-item {
    background: #fff;
    border-radius: 0;
    box-shadow: 0 8px 24px rgba(198, 183, 160, 0.15);
    border: 1px solid #F0EBE1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.menu-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(198, 183, 160, 0.25);
}

.menu-item__header {
    background-color: var(--clr-sub);
    padding: 16px 24px;
    border-bottom: 1px solid #EBE5DA;
}

.menu-item__name {
    font-family: var(--ff-jp-serif);
    font-size: 18px !important;
    color: var(--clr-dark);
    font-weight: 500;
    letter-spacing: 0.1em;
}

.menu-item__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.menu-item__row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 16px;
    border-bottom: 1px dashed #DCD5C9;
}

.menu-item__row:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.menu-item__time-price {
    display: flex;
    align-items: baseline;
    gap: 20px;
    min-width: 240px;
}

.menu-item__time {
    font-family: var(--ff-en-fancy);
    font-size: 24px;
    color: var(--clr-dark);
    font-weight: 400;
}

.menu-item__time small {
    font-size: 14px;
    font-family: var(--ff-jp-sans);
    margin-left: 4px;
}

.menu-item__price {
    font-family: var(--ff-en-fancy);
    font-size: 26px;
    color: var(--clr-accent);
    font-weight: 600;
}

.menu-item__price small {
    font-size: 14px;
    font-family: var(--ff-jp-sans);
    margin-left: 4px;
}

.menu-item__note {
    font-size: 14px;
    color: var(--clr-text);
    line-height: 1.6;
    flex: 1;
    min-width: 200px;
}

.menu-item--option .menu-item__header {
    background-color: #fdf6f6;
}

.menu-item__option-text {
    font-size: 15px;
    color: var(--clr-text);
    line-height: 1.8;
}

@media (max-width: 640px) {
    .menu-item__time-price {
        min-width: 100%;
        margin-bottom: 8px;
    }

    .menu-item__time {
        font-size: 20px;
    }

    .menu-item__price {
        font-size: 22px;
    }

    .menu-item__body {
        padding: 16px 20px;
    }
}

/* ==========================================================================
   VOICE SECTION
   ========================================================================== */
.voice-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.4) 80%, rgba(255, 255, 255, 0.8) 100%),
        linear-gradient(135deg, #faf6f0 0%, #e8dcc8 100%);
    padding: 100px 0;
}

.voice-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.voice-card {
    background: #fff;
    padding: 60px 80px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    width: 90%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.voice-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.voice-card--left {
    align-self: flex-start;
    border-radius: 0 200px 200px 0;
    padding-right: 120px;
}

.voice-card--right {
    align-self: flex-end;
    border-radius: 200px 0 0 200px;
    padding-left: 120px;
}

.voice-card__title {
    font-family: var(--ff-en-fancy);
    font-size: 36px !important;
    color: var(--clr-dark);
    margin-bottom: 24px;
    font-style: italic;
    font-weight: 500;
}

.voice-card__text {
    font-size: 15px !important;
    color: var(--clr-text);
    line-height: 2.2;
}

.voice-card__highlight {
    color: #e59393;
    /* ピンクのハイライト */
    font-weight: 500;
}

@media (max-width: 768px) {
    .voice-list {
        gap: 40px;
    }

    .voice-card {
        width: 95%;
        padding: 40px 30px;
    }

    .voice-card--left {
        border-radius: 0 80px 80px 0;
        padding-right: 40px;
    }

    .voice-card--right {
        border-radius: 80px 0 0 80px;
        padding-left: 40px;
    }
}

.voice-more {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}

.voice-more a {
    padding: 14px 40px;
    border: 1px solid var(--clr-accent);
    color: var(--clr-accent);
    font-family: var(--ff-jp-serif);
    font-size: 15px;
    letter-spacing: 0.1em;
    background: #fff;
    transition: 0.3s;
}

.voice-more a:hover {
    background: var(--clr-accent);
    color: #fff;
}

@media (max-width: 1024px) {
    .voice-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .voice-grid {
        grid-template-columns: 1fr;
    }

    .voice-card {
        padding: 24px 20px;
    }
}

/* ==========================================================================
   MESSAGE SECTION
   ========================================================================== */
.message-section {
    background: url('img/messagebg.jpeg') center / cover fixed;
    padding: 100px 0;
}

@media (max-width: 767px),
(max-width: 1024px) and (hover: none) and (pointer: coarse) {
    .message-section {
        background: none;
        position: relative;
        isolation: isolate;
        -webkit-clip-path: inset(0);
        clip-path: inset(0);
    }

    .message-section::before {
        content: '';
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url('img/messagebg.jpeg') center / cover no-repeat;
        z-index: 0;
        pointer-events: none;
    }

    .message-section>* {
        position: relative;
        z-index: 1;
    }

    .message-img {
        object-position: bottom;
    }
}

/* レイアウトはHTMLのユーティリティクラスで制御 */
.message-box__lead {
    font-family: var(--ff-jp-serif);
    font-size: clamp(1.15rem, 2.5vw, 1.45rem) !important;
    color: var(--clr-accent);
    letter-spacing: 0.12em;
    line-height: 1.8;
}

.message-box__body {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.message-box__body p {
    font-size: 15px !important;
    color: var(--clr-text);
    line-height: 2.2;
}

.message-box__sign {
    font-family: var(--ff-jp-serif);
    font-size: 15px !important;
    color: var(--clr-text);
    letter-spacing: 0.1em;
    line-height: 2;
    text-align: right;
}

.message-box__sign span {
    display: block;
    font-size: 18px !important;
    color: var(--clr-accent);
    margin-top: 4px;
}

/* ==========================================================================
   FAQ & CONTACT
   ========================================================================== */
.faq-section {
    background-color: var(--clr-sub);
    padding: 100px 0;
}

.contact {
    background: linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.9)), url('img/bg.jpg') center / cover fixed;
    padding: 100px 0;
}

/* SP固定背景対応: contact */
@media (max-width: 767px),
(max-width: 1024px) and (hover: none) and (pointer: coarse) {
    .contact {
        background: none;
        position: relative;
        isolation: isolate;
        -webkit-clip-path: inset(0);
        clip-path: inset(0);
    }

    .contact::before {
        content: '';
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.9)), url('img/bg.jpg') center / cover no-repeat;
        z-index: 0;
        pointer-events: none;
    }

    .contact>* {
        position: relative;
        z-index: 1;
    }
}

.contact__flex {
    display: flex;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch;
}

.contact__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact__map {
    flex: 1;
    min-height: 350px;
    background-color: #eee;
}

.contact__map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.contact__list li {
    display: flex;
    margin-bottom: 1.2rem;
    color: var(--clr-text);
    font-size: 1.05rem;
}

.contact__label {
    width: 6em;
    color: var(--clr-accent);
    font-weight: 500;
}

.contact__value {
    flex: 1;
    line-height: 1.6;
}

.contact__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.contact__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    min-height: 52px;
    padding: 12px 22px;
    border: 1px solid var(--clr-accent);
    background: #fff;
    color: var(--clr-accent);
    font-family: var(--ff-jp-serif);
}

.contact__button:hover {
    background: var(--clr-accent);
    color: #fff;
}

@media (max-width: 768px) {
    .contact__flex {
        flex-direction: column;
        gap: 40px;
    }

    .contact__list li {
        flex-direction: column;
        margin-bottom: 1.5rem;
    }

    .contact__label {
        margin-bottom: 0.3rem;
    }

    .contact__actions {
        flex-direction: column;
    }

    .contact__button {
        width: 100%;
    }

    .contact__map {
        width: 100%;
        min-height: 300px;
        background-color: #ccc;
    }

    .contact__map iframe {
        width: 100%;
        height: 300px;
        display: block;
    }
}

/* ==========================================================================
   PROFILE
   ========================================================================== */
.profile {
    background-color: var(--clr-base);
    padding: 80px 0 120px;
}

.about::after,
.service-section::after,
.contact::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 96px;
    z-index: 2;
    pointer-events: none;
}

.about::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--clr-sub));
}

.service-section::after {
    background: linear-gradient(to bottom, rgba(249, 243, 243, 0), var(--clr-base));
}

.contact::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--clr-sub));
}

.profile__flex {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 var(--side-padding);
}

.profile__image {
    flex: 0 0 520px;
    padding: 0;
    border: none;
    border-radius: 0;
}

.profile__image img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    border-radius: 0;
}

.profile__content {
    flex: 1;
}

.profile__name {
    font-family: var(--ff-jp-serif);
    font-size: 1.6rem;
    color: var(--clr-dark);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--clr-sub);
    padding-bottom: 10px;
    display: inline-block;
}

.profile__text {
    font-size: 0.95rem;
    line-height: 2.2;
    color: var(--clr-text);
}

@media (max-width: 768px) {
    .profile__flex {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .profile__image {
        flex: 0 0 auto;
        width: min(100%, 360px);
        margin: 0 auto;
    }

    .profile__content {
        text-align: left;
    }

    .profile__name {
        text-align: center;
        display: block;
    }
}

/* ==========================================================================
   FOOTER & FLOATING
   ========================================================================== */
.footer {
    background-color: var(--clr-sub);
    color: var(--clr-text);
    padding: 60px 0 40px;
    text-align: center;
}

.footer__logo {
    font-family: var(--ff-jp-serif);
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--clr-accent);
    letter-spacing: 0.08em;
}

.pagetop {
    position: fixed;
    left: 30px; /* 右側のご予約ボタンと干渉しないよう左下に配置 */
    bottom: 30px; 
    width: 50px;
    height: 50px;
    background-color: var(--clr-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pagetop.is-show {
    opacity: 1;
    visibility: visible;
}

.pagetop__arrow {
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(-45deg);
    margin-top: 4px;
}

/* Mobile CTA */
.sp-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    display: none;
    z-index: 3000;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.sp-cta__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

.sp-cta__btn--instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.sp-cta__btn--line {
    background: #00B900;
}

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

    .footer {
        padding-bottom: 100px;
    }

    .pagetop {
        bottom: 80px; 
        left: 20px;
    }
}

/* ==========================================================================
   INFINITE SLIDER
   ========================================================================== */
.infinite-slider {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    line-height: 0;
    background-color: var(--clr-sub);
}

.infinite-slider__track {
    display: flex;
    width: max-content;
    animation: infiniteScroll 50s linear infinite;
}

.infinite-slider__track img {
    height: 300px;
    width: auto;
    object-fit: cover;
    margin: 0;
    padding: 0;
}

@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .infinite-slider__track img {
        height: 180px;
    }
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(50% - 10px);
    max-width: 320px;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff !important;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.cta-button--instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.cta-button--line {
    background: #00B900;
}

.cta-button--ekiten {
    background: #FFA500;
}

/* ==========================================================================
   Floating Reservation Button
   ========================================================================== */
.floating-reserve-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 170px; /* 少し余白を持たせる上品なサイズ感 */
    height: 170px;
    background: linear-gradient(135deg, #5c7255 0%, #8ca183 40%, #a4bba8 60%, #43543d 100%); /* 光沢のあるグリーン */
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
    z-index: 990;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.5); /* 馴染む明るい縁取り */
}

/* 内側の細い二重線 */
.floating-reserve-btn::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 1px solid rgba(255, 255, 255, 0.3); /* 白い極細線でエレガントに */
    border-radius: 50%;
    pointer-events: none;
}

/* Reserved (英語あしらい) */
.floating-reserve-btn__en {
    font-family: var(--ff-en-fancy);
    font-size: 18px;
    color: #e2ceab; /* シャンパンゴールドで見やすく上品に */
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    font-style: italic;
}

/* 日本語テキスト */
.floating-reserve-btn__ja {
    font-family: var(--ff-jp-serif);
    font-size: 18px;
    color: #ffffff; /* 白抜きで見やすく */
    line-height: 1.6;
    letter-spacing: 0.1em;
    text-align: center;
}

.floating-reserve-btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    /* ホバー時は少しだけ明るく光るようなグラデーション */
    background: linear-gradient(135deg, #6b8263 0%, #9cb192 40%, #b2c9b6 60%, #52664d 100%);
}

@media (max-width: 768px) {
    .floating-reserve-btn {
        display: none !important; /* スマホ時は非表示（既存の下部固定メニューを使用するため） */
    }
}

.cta-button--phone {
    background: var(--clr-dark);
}

@media (max-width: 768px) {
    .cta-button {
        width: 100%;
        max-width: 100%;
    }
}