/* ==========================================================================
   Design System & Variables
   ========================================================================== */
:root {
    /* Color Palette */
    --clr-base: #FFFBFB; /* Pearl White/Soft Pink tint */
    --clr-accent: #DFA9A9; /* Muted Rose Pink / Chic Coral */
    --clr-sub: #CBA5A5; /* Deeper Muted Rose */
    --clr-text: #5A4E4E; /* Soft Warm Brown */

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

    /* Base Values */
    --line-height: 1.8;
    --ls: 0.05em;
    --section-gap: 160px;
    --side-padding: clamp(15px, 4vw, 30px); /* 菴咏區繧貞ｰ代＠謚代∴縺ｦ蟷・ｒ蠎・￥遒ｺ菫・*/
    --header-height: 80px;
}

/* ==========================================================================
   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;
}

body.no-scroll {
    overflow: hidden;
}

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

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cursive {
    font-family: var(--ff-en-cursive);
}

/* ==========================================================================
   Generic Components
   ========================================================================== */
.section-spacer {
    height: 100px;
}

.btn-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--clr-accent);
    color: #fff;
    border-radius: 9999px;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(216, 207, 196, 0.2);
    border: 1px solid transparent;
}

.btn-primary:hover {
    background-color: var(--clr-base);
    color: var(--clr-accent);
    border: 1px solid var(--clr-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(216, 207, 196, 0.3);
}

/* ==========================================================================
   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;
}

/* ==========================================================================
   FIRST VIEW (FV)
   ========================================================================== */
.fv-hero {
    position: relative;
    width: 100vw;
    background-color: #FEF9EA;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 0; /* No padding anywhere on SP */
}

/* Background Decorations */
.fv-hero__deco {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.fv-hero__deco--white-circle {
    width: 70%;
    bottom: 5%;
    left: -20%;
    opacity: 0.8;
    animation: float1 18s ease-in-out infinite alternate;
}

.fv-hero__deco--beige-circle {
    width: 60%;
    top: 25%;
    right: -15%;
    opacity: 0.7;
    animation: float2 20s ease-in-out infinite alternate;
}

@keyframes float1 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(15px, -20px); }
    100% { transform: translate(-5px, 10px); }
}

@keyframes float2 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(-15px, 20px); }
    100% { transform: translate(10px, -10px); }
}

.fv-hero__deco--blur {
    width: 100%;
    top: 30%;
    left: 0;
    opacity: 0.5;
}

/* Images */
.fv-hero__img-top-wrap {
    position: relative;
    width: 100%;
    height: 30vh;
    z-index: 2;
    overflow: hidden;
    /* Teardrop: organic curve on bottom edge */
    border-radius: 0 0 0 50% / 0 0 0 80%;
    order: 1; /* FORCED ORDER: TOP */
}

.fv-hero__img-top-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fv-hero__img-bottom-wrap {
    position: relative;
    align-self: flex-end;
    width: 85%;
    height: 25vh;
    z-index: 2;
    overflow: hidden;
    /* Teardrop: organic curve on top-left edge */
    border-radius: 50% 0 0 0 / 80% 0 0 0;
    order: 3; /* FORCED ORDER: BOTTOM */
    margin-bottom: 0; /* No bottom margin */
}

.fv-hero__img-bottom-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slideshow Images */
.slideshow-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slideshow-img.is-active {
    opacity: 1;
}

/* Center Content */
.fv-hero__content {
    position: relative;
    flex-grow: 0; /* Removed flex-grow 1 so it doesn't push images far away */
    margin: 2vh 0; /* Very small fixed gap instead of stretching */
    z-index: 4;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center in its given gap */
    align-items: center;
    width: 100%;
    padding: 0; /* Padding removed */
    order: 2; /* FORCED ORDER: MIDDLE */
}

.fv-hero__tag {
    background: linear-gradient(-45deg, #F8D7E3, #E2D9F7, #E8F0E5, #FDF3D8, #F9E9FF);
    background-size: 400% 400%;
    animation: gradientShift 10s ease infinite;
    color: var(--clr-text);
    padding: 0.6rem 1.8rem;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    display: inline-block;
    box-shadow: none; /* Shadow removed */
    font-family: var(--ff-jp-serif);
    position: relative;
    z-index: 5;
    white-space: nowrap;
}

.fv-hero__en-title {
    font-family: var(--ff-en-fancy);
    font-size: clamp(2.4rem, 10vw, 4.5rem); /* Scaled down significantly for mobile to prevent any chance of overlap */
    line-height: 1.15;
    color: #4A4A4A;
    text-align: center;
    text-shadow: 0 2px 10px rgba(255,255,255,0.8);
    margin: 0;
}

.fv-hero__jp-text {
    font-family: var(--ff-jp-serif);
    font-size: clamp(0.95rem, 3.8vw, 1.3rem);
    color: #555;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
    text-shadow: 0 2px 5px rgba(255,255,255,0.8);
}

/* Golden Decorative Curves mimicking tesut.jpg */
.fv-hero__gold-curve-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 110%;
    height: calc(30vh + var(--header-height) + 15px); /* Matches top image perfectly */
    border-bottom: 1.5px solid rgba(196, 164, 124, 0.6);
    border-right: 1.5px solid rgba(196, 164, 124, 0.6);
    border-radius: 0 0 65% 35% / 0 0 45% 55%;
    z-index: 3;
    pointer-events: none;
}

.fv-hero__gold-curve-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 95%;
    height: calc(25vh + 15px);
    border-top: 1.5px solid rgba(196, 164, 124, 0.6);
    border-left: 1.5px solid rgba(196, 164, 124, 0.6);
    border-radius: 50% 0 0 0 / 80% 0 0 0; /* Matches the image curve */
    z-index: 3;
    pointer-events: none;
}

@media (min-width: 769px) {
    .fv-hero {
        min-height: 550px;
        height: 48vw;
        max-height: 95vh;
        display: flex; /* Simple centering */
        justify-content: center;
        align-items: center;
        padding-top: 0;
    }
    
    /* Background Image: Left (Organic Teardrop/Droplet Shape) */
    .fv-hero__img-top-wrap {
        position: absolute;
        top: 0;
        left: 0;
        width: 40%; 
        height: 100%;
        /* Teardrop: sharper top-right, perfectly round bottom-right */
        border-radius: 0 15% 65% 0 / 0 20% 80% 0;
        z-index: 1; /* Sent to background */
    }
    
    /* Background Image: Right (Tall Rectangle with slight rounding) */
    .fv-hero__img-bottom-wrap {
        position: absolute;
        top: 0;
        bottom: auto;
        right: 0;
        left: auto;
        width: 40%; 
        height: 100%;
        /* Teardrop: organic curve on left edge */
        border-radius: 65% 0 0 15% / 80% 0 0 20%;
        z-index: 1;
    }
    
    /* Foreground Text Content */
    .fv-hero__content {
        position: relative; 
        top: auto;
        left: auto;
        transform: none;
        width: auto; /* Free to resize naturally */
        min-width: 0;
        height: auto;
        padding: 0;
        z-index: 10; /* Floats perfectly over the center */
    }
    
    /* Text styling for PC */
    .fv-hero__tag {
        font-size: 1.1rem;
        padding: 0.8rem 3rem;
    }
    .fv-hero__en-title {
        font-size: clamp(3rem, 5vw, 6rem);
    }
    
    .fv-hero__gold-curve-1 {
        position: absolute;
        top: -5%;
        left: -2%;
        width: 42%; 
        height: 110%;
        border: none;
        border-right: 1.5px solid rgba(196, 164, 124, 0.6);
        /* Match teardrop curve */
        border-radius: 0 15% 65% 0 / 0 20% 80% 0;
    }
    .fv-hero__gold-curve-2 {
        display: block;
        position: absolute;
        top: -5%;
        bottom: auto;
        right: -2%;
        left: auto;
        width: 42%; 
        height: 110%;
        border: none;
        border-left: 1.5px solid rgba(196, 164, 124, 0.6);
        /* Match teardrop curve */
        border-radius: 65% 0 0 15% / 80% 0 0 20%;
    }
    
    .fv-hero__deco--white-circle {
        width: 18%;
        top: 8%;
        left: 30%; /* Pushed rightwards so it peeks out from behind the left 40% image */
        bottom: auto;
    }
    .fv-hero__deco--beige-circle {
        width: 22%;
        bottom: 8%;
        right: 32%; /* Pushed leftwards so it peeks out from behind the right 40% image */
        top: auto;
    }
}
.fv__sub-en {
    display: block;
    font-family: var(--ff-en-fancy);
    font-size: 1.5rem;
    color: var(--clr-sub);
    margin-bottom: 2rem;
    letter-spacing: 0.2em;
}

/* ==========================================================================
   ABOUT & STRUGGLES
   ========================================================================== */
.about {
    padding: 0; /* FV驍ｵ・ｺ繝ｻ・ｮ髣包ｽｳ闕ｵ譏ｴ繝ｻ鬯ｮ・ｫ陷･諠ｹ・ｿ・｣驛｢・ｧ陋幢ｽｵ遶企・・ｸ・ｺ闕ｳ蟯ｩ繝ｻ驍ｵ・ｺ雋・∞・ｽ繝ｻ蝮｡繝ｻ・ｿ髫ｰ・ｨ繝ｻ・ｴ */
}

.about__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--side-padding);
}

.about__en {
    display: block;
    font-family: var(--ff-en-fancy);
    font-size: 3.5rem;
    color: var(--clr-accent);
    opacity: 0.25;
    margin-bottom: -1.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    z-index: 0;
    line-height: 1;
}

.about__title {
    font-family: var(--ff-jp-serif);
    font-size: 2.25rem;
    font-weight: 400;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.about__text {
    font-size: 1.1rem;
    line-height: 2;
}

/* Struggles Section */
/* /* Struggles Section (Full Bleed with Bubbles - Inspired by Safety) */
.struggle-full-wrap {
    width: 100%;
    margin-bottom: 0;
    background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)), url('../img/concern_bg.jpg') no-repeat center left;
    background-size: cover;
    padding: 120px 0;
    min-height: 600px;
    /* Ensure image height visibility */
    display: flex;
    align-items: center;
}

.struggle {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--side-padding);
}

.struggle__header {
    margin-bottom: 2rem;
    text-align: right;
    padding-right: 10%;
}

.struggle__bubbles {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
}

.struggle__fukidashi {
    position: relative;
    padding: 1rem 1.8rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    font-size: 1rem;
    font-weight: 500;
    color: #444;
    width: fit-content;
    white-space: nowrap;
    border: 1px solid rgba(216, 207, 196, 0.2);
}

.struggle__fukidashi::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 20%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 15px solid #fff;
}

/* Individual bubble offsets to make it look scattered/organic */
.bubble--01 {
    transform: translateX(-15%);
}

.bubble--02 {
    transform: translateX(-5%);
}

/* Redundant block deleted */

.about__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--side-padding);
}

.about__en {
    display: block;
    font-family: var(--ff-en-fancy);
    font-size: 1.25rem;
    color: var(--clr-sub);
    margin-bottom: 1rem;
    letter-spacing: 0.15em;
}

.about__title {
    font-family: var(--ff-jp-serif);
    font-size: 2.25rem;
    font-weight: 400;
    margin-bottom: 4rem;
    position: relative;
}

.about__text {
    font-size: 1.1rem;
    line-height: 2;
}

/* Struggles Section */
/* /* Struggles Section (Full Bleed with Bubbles - Inspired by Safety) */
.struggle-full-wrap {
    width: 100%;
    margin-bottom: 0;
    background: linear-gradient(135deg, #FAF8F5 0%, #F5F0EB 100%);
    padding: 120px 0;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.struggle {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--side-padding);
}

.struggle__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.struggle__header {
    margin-bottom: 2rem;
    text-align: right;
    padding-right: 10%;
}

.struggle__bubbles {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
    z-index: 10;
}

/* 3-column grid layout for concern bubbles */
.struggle__bubbles--grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    width: 100%;
    align-items: stretch;
    flex-direction: unset;
    z-index: 10;
}

.struggle__fukidashi {
    position: relative;
    padding: 1rem 1.8rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    font-size: 1rem;
    font-weight: 500;
    color: #444;
    width: fit-content;
    white-space: nowrap;
    border: 1px solid rgba(216, 207, 196, 0.2);
}

.struggle__fukidashi::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 20%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 15px solid #fff;
    z-index: 11;
}

.struggle__woman {
    width: 220px;
    margin-top: 0;
    margin-right: 0;
    z-index: 5;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.05));
}

.struggle__woman img {
    width: 100%;
}

/* Individual bubble offsets to make it look scattered/organic */
.bubble--01 {
    transform: translateX(-15%);
}

.bubble--02 {
    transform: translateX(-5%);
}

.bubble--03 {
    transform: translateX(-20%);
}

.bubble--04 {
    transform: translateX(-10%);
}

.bubble--05 {
    transform: translateX(-25%);
}

.bubble--06 {
    transform: translateX(0);
}

@media (max-width: 1024px) {
    .bubble--01, .bubble--02, .bubble--03, .bubble--04, .bubble--05, .bubble--06 {
        transform: translateX(0);
    }
    .struggle__fukidashi {
        white-space: normal;
        line-height: 1.5;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .struggle-full-wrap {
        padding: 80px 0;
        min-height: auto;
    }

    .struggle__header {
        text-align: center;
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .struggle__content {
        align-items: center;
    }

    .struggle__bubbles {
        align-items: center;
        gap: 2rem;
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .struggle__bubbles--grid {
        display: flex;
        flex-direction: column;
    }

    .struggle__woman {
        width: 180px;
        margin-top: 2rem;
        margin-right: 0;
    }

    .struggle__fukidashi {
        white-space: normal;
        text-align: center;
        padding: 1rem 1.5rem;
        transform: none !important;
    }

    .struggle__fukidashi::after {
        left: 50%;
    }
}

/* Cause Section */
.cause-full-wrap {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    margin-left: -50vw !important;
    padding: 0 !important;
    overflow: hidden;
    margin-bottom: 0 !important;
    background-color: #f7f3f0;
}

.cause__container {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    align-items: stretch;
    gap: 0 !important;
}

.cause__img-box {
    flex: none;
    width: 30vw;
    min-height: 600px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    max-width: none !important;
}

.cause__img-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 !important;
    box-shadow: none !important;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cause__img-box img:hover {
    transform: scale(1.05);
}

.cause__content {
    flex: 1;
    color: #3a3a3a;
    position: relative;
    z-index: 2;
    padding: 5rem var(--side-padding);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cause__highlight {
    font-family: var(--ff-jp-serif);
    font-size: clamp(1.4rem, 2.5vw, 2.1rem);
    margin-bottom: 2.5rem;
    color: var(--clr-text) !important;
    border-bottom: 1px solid rgba(80, 60, 30, 0.1) !important;
    padding-bottom: 1.5rem;
    display: inline-block;
    line-height: 1.5;
}

.cause__content .about__text {
    color: #4a4a4a !important;
    line-height: 2.2;
    font-size: 1.1rem;
    max-width: none;
}

@media (max-width: 1024px) {
    .cause__content {
        padding: 80px 5vw 80px 60px;
    }
}

@media (max-width: 768px) {
    .cause-full-wrap {
        padding: 0 !important;
    }

    .cause__container {
        flex-direction: column-reverse;
    }

    .cause__img-box {
        width: 100%;
        height: 50vh;
        min-height: 350px;
    }

    .cause__content {
        width: 100%;
        padding: 60px var(--side-padding);
    }

    .cause__highlight {
        font-size: 1.35rem;
        margin-bottom: 2rem;
    }

    .cause__content .about__text {
        max-width: 100%;
    }
}

/* Cause Collage Visual */
.cause-collage {
    position: relative;
    width: 100%;
    margin: 100px 0 var(--section-gap);
    display: flex;
    justify-content: center;
}

.cause-collage__wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 600px;
    /* Base height to handle absolute images */
}

.cause-collage__img {
    position: absolute;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    border-radius: 2px;
    overflow: hidden;
}

.cause-collage__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Main Image (Largest) */
.cause-img-main {
    width: 45%;
    height: 80%;
    top: 0;
    left: 20%;
    z-index: 2;
}

/* Sub Image 1: Overlapping main */
.cause-img-sub1 {
    width: 35%;
    height: 45%;
    bottom: -5%;
    left: 5%;
    z-index: 3;
}

/* Sub Image 2: Escaping into whitespace, floating slightly off */
.cause-img-sub2 {
    width: 30%;
    height: 50%;
    top: 15%;
    right: 5%;
    z-index: 1;
}

@media (max-width: 768px) {
    .cause-collage {
        margin: 60px 0 100px;
        display: block;
    }

    .cause-collage__wrapper {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 40px;
        /* Spacing between vertical images */
    }

    .cause-collage__img {
        position: relative;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    }

    .cause-img-main,
    .cause-img-sub1,
    .cause-img-sub2 {
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        height: auto;
        z-index: auto;
    }

    .cause-img-main {
        width: 85%;
        aspect-ratio: 4/5;
        margin-left: auto;
        /* Push to right slightly */
    }

    .cause-img-sub1 {
        width: 90%;
        aspect-ratio: 16/9;
        margin-left: 0;
        /* Push to left */
    }

    .cause-img-sub2 {
        width: 70%;
        aspect-ratio: 1/1;
        margin: 0 auto;
        /* Center horizontally */
    }
}

/* Concept Section */
.concept {
    padding-left: 10%;
    margin-bottom: 0;
    border-left: 2px solid var(--clr-base);
}

/* Personal Section (Banner style) */
.personal {
    text-align: center;
    margin-bottom: 0;
}

.personal__box {
    background: linear-gradient(135deg, #fff 0%, #FAF8F5 100%);
    padding: 1.4rem 2rem;
    border: 1px solid var(--clr-accent);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.personal__title {
    font-family: var(--ff-jp-serif);
    font-size: 1.05rem;
    margin-bottom: 0;
    white-space: nowrap;
}

.personal__box .about__text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.personal__cta {
    margin-top: 0;
    flex-shrink: 0;
}

.personal__cta .btn-primary {
    font-size: 0.85rem;
    padding: 0.7rem 1.8rem;
}

@media (max-width: 768px) {
    .personal__box {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 1.5rem 1.2rem;
    }

    .personal__title {
        white-space: normal;
    }
}

/* ==========================================================================
   Reservation Block (inside philosophy area)
   ========================================================================== */
.reservation-personal-wrap {
    position: relative;
    padding: 80px 2rem;
    background: none;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-bottom: 0;
}

.reservation-personal-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255 255 255 / 37%);
    z-index: 0;
}

.reservation-personal-wrap>* {
    position: relative;
    z-index: 1;
}

.phi-reservation {
    text-align: center;
    margin-bottom: 0px;
}

.phi-reservation__label {
    font-family: var(--ff-en-fancy);
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    color: var(--clr-sub);
    margin-bottom: 1.5rem;
}

.phi-reservation__btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ==========================================================================
   BUTTON 21
   ========================================================================== */
.button-21 a {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    color: #333;
    font-weight: 500;
    outline: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    width: 100%;
    max-width: 300px;
    text-align: center;
    padding: 16px 32px;
    margin: 12px;
    margin-inline: auto;
    text-decoration: none;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s;
    background: transparent;
}

.button-21 a::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    width: 100%;
    height: 100%;
    background: #e4beb3; /* 郢晄鱒ﾎｦ郢ｧ・ｯ郢晏生繝ｻ郢ｧ・ｸ郢晢ｽ･邵ｺ・ｫ驍ｨ・ｱ闕ｳﾂ */
    z-index: -999;
    transition: all 0.3s ease;
}

.button-21 a:hover::before {
    top: 0;
    left: 0;
    transition: all 0.3s;
}

/* 蛟句挨繧ｫ繝ｩ繝ｼ險ｭ螳・*/
.button-21.btn--hp a::before {
    background: #d4a5b3; /* 繝繧ｹ繝・ぅ繝斐Φ繧ｯ */
}
.button-21.btn--line a::before {
    background: #a3b89e; /* 繧ｻ繝ｼ繧ｸ繧ｰ繝ｪ繝ｼ繝ｳ */
}
.button-21.btn--tel a::before {
    background: #D8CFC4; /* 繝吶・繧ｸ繝･ */
}

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

    .button-21 {
        width: 100%;
    }

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

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .fv__copy {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-gap: 100px;
    }

    .fv {
        padding-top: 50px;
        align-items: flex-start;
    }

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

    .fv__text-box {
        order: 2;
        padding-top: 40px;
    }

    .fv__collage {
        order: 1;
        height: 50vh;
    }

    .fv__copy {
        font-size: 1.8rem;
    }

    .about__title {
        font-size: 1.75rem;
    }

    .cause {
        text-align: left;
    }

    .concept {
        padding-left: 0;
    }

    .personal__box {
        padding: 2rem 1.5rem;
    }
}

/* ==========================================================================
   Utilities
   ========================================================================== */
@media (min-width: 769px) {
    .pc-only {
        display: block;
    }

    .sp-only {
        display: none;
    }
}

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

    .sp-only {
        display: block;
    }
}

/* ==========================================================================
   SECTION: REASONS
   ========================================================================== */
/* NEW REASONS CARDS */
.reasons {
    padding: 100px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px var(--side-padding);
}
.reasons__header {
    text-align: center;
    margin-bottom: 5rem;
}
.reasons__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.reason-card {
    position: relative;
    background: #FFFBFB;
    border: 1px solid rgba(223, 169, 169, 0.3);
    border-radius: 20px;
    padding: 50px 30px 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reason-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(223, 169, 169, 0.15);
}
.reason-card__num {
    font-family: var(--ff-en-fancy);
    font-size: 3rem;
    color: #fff;
    background: linear-gradient(135deg, #DFA9A9 0%, #CBA5A5 100%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 5px 15px rgba(223, 169, 169, 0.4);
    letter-spacing: -1px;
}
.reason-card__icon {
    width: 30px;
    margin: 0 auto 1.5rem;
}
.reason-card__title {
    font-family: var(--ff-jp-serif);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    color: #444;
}
.reason-card .about__text {
    font-size: 1.1rem;
    text-align: left;
    color: #666;
}

@media (max-width: 1024px) {
    .reasons__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: 60px;
    }
}

/* ==========================================================================
   SECTION: TRUST / SAFETY SPEECH BUBBLES
   ========================================================================== */
.trust {
    position: relative;
    padding: var(--section-gap) var(--side-padding);
    background-color: #f7f3f0;
}

.trust__container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Woman and Bubbles Illustration Styling */
.trust__concern-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 5rem 0;
    gap: 2rem;
}

.trust__bubblesContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    margin-bottom: 2rem;
}

.trust__fukidashi {
    position: relative;
    padding: 1.5rem 2rem;
    background: #fff;
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    font-size: 1.1rem;
    font-weight: 500;
    color: #444;
    max-width: fit-content;
    white-space: nowrap;
}

/* Triangle for speech bubble */
.trust__fukidashi::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #fff;
}

/* Individual adjustments for random feel */
.fukidashi--01 {
    transform: rotate(-2deg);
}

.fukidashi--02 {
    transform: rotate(1deg) translateY(-10px);
}

.fukidashi--03 {
    transform: rotate(-1deg);
}

.trust__woman {
    width: 280px;
    position: relative;
}

.trust__woman img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.05));
}

.trust__text-block {
    margin-top: 2rem;
    text-align: center;
}

.trust__quote {
    font-family: var(--ff-jp-serif);
    font-style: italic;
    margin: 2rem 0;
    color: var(--clr-sub);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .trust__bubblesContainer {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .trust__fukidashi {
        white-space: normal;
        text-align: center;
        font-size: 1rem;
        padding: 1.2rem 1.8rem;
    }

    .trust__woman {
        width: 200px;
    }
}

/* ==========================================================================
   SECTION: CTA
   ========================================================================== */
.cta {
    position: relative;
    padding: var(--section-gap) var(--side-padding);
    background: none;
    z-index: 1;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #cfc5b636;
    z-index: -1;
}

.cta__header {
    color: #333;
}

.cta__blocks {
    color: var(--clr-text);
}

.cta__block {
    background: rgba(255, 255, 255, 0.9);
    padding: 3.5rem;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--clr-text);
}

.cta__block .about__text {
    color: var(--clr-text);
}

.cta__container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.cta__main-title {
    font-family: var(--ff-jp-serif);
    font-size: 2.25rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.cta__sub-title {
    font-size: 1.25rem;
    color: var(--clr-sub);
    margin-bottom: 2.5rem;
}

.cta__desc {
    margin-bottom: 5rem;
}

.cta__blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: left;
}

.cta__block {
    background: #fff;
    padding: 3.5rem;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cta__block--sub {
    grid-column: 1 / -1;
    background: transparent;
    border: none;
    border-top: 1px solid var(--clr-accent);
    padding: 4rem 0 0;
    text-align: center;
}

.cta__block-title {
    font-family: var(--ff-jp-serif);
    font-size: 1.4rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--clr-base);
    padding-bottom: 1rem;
}

.cta__block-title--sub {
    font-family: var(--ff-jp-serif);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.cta__action {
    margin-top: 2.5rem;
}

.cta__url {
    display: block;
    font-size: 0.75rem;
    color: #ccc;
    margin-top: 1rem;
    word-break: break-all;
}

.btn-line {
    background-color: #06C755;
    /* Line color */
    box-shadow: 0 4px 15px rgba(6, 199, 85, 0.2);
}

.btn-line:hover {
    background-color: #fff;
    color: #06C755;
    border-color: #06C755;
    box-shadow: 0 8px 25px rgba(6, 199, 85, 0.3);
}

.cta__tel {
    margin-top: 2rem;
}

.tel__label {
    display: block;
    font-family: var(--ff-en-fancy);
    font-size: 0.9rem;
    color: var(--clr-sub);
    letter-spacing: 0.2em;
}

.tel__number {
    font-family: var(--ff-en-fancy);
    font-size: 2.5rem;
    color: var(--clr-text);
    transition: 0.3s;
}

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

.small {
    font-size: 0.95rem;
    opacity: 0.8;
}

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

    .cta__block {
        padding: 2.5rem 1.5rem;
    }

    .tel__number {
        font-size: 2rem;
    }
}

/* ==========================================================================
   SECTION: VOICE
   ========================================================================== */
.voice {
    padding: var(--section-gap) var(--side-padding);
}

.voice__container {
    max-width: 1500px;
    margin: 0 auto;
}

.voice__header {
    text-align: center;
    margin-bottom: 120px;
}

.about__title.centered {
    margin-bottom: 2rem;
}

.voice__lead {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.voice__note {
    font-size: 0.85rem;
    opacity: 0.6;
}

.voice__stories {
    display: flex;
    flex-direction: column;
}

.voice__grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.voice__card {
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(216, 207, 196, 0.2);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.voice__card:hover {
    transform: translateY(-5px);
}

.voice__card-image {
    width: 200px;
    height: 200px;
    margin: 2.5rem 0 2.5rem 2.5rem;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.voice__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.voice__card-body {
    padding: 2.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.voice__card-title {
    font-family: var(--ff-jp-serif);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--clr-sub);
    font-weight: 500;
}

.menu-card__title {
    font-family: var(--ff-jp-serif);
    font-size: 1.5rem;
    color: var(--clr-sub);
    margin-bottom: 2rem;
    line-height: 1.4;
    font-weight: 500;
}

.featured .menu-card__title {
    margin-bottom: 1.5rem;
}

.voice__card-text-wrapper {
    margin-top: auto;
}

.voice__card-text {
    max-height: 120px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.8s ease;
}

.voice__card-text.is-expanded {
    max-height: 1500px;
}

.voice__read-more-btn {
    background: none;
    border: none;
    color: var(--clr-sub);
    font-size: 0.9rem;
    cursor: pointer;
    padding: 1rem 0;
    text-decoration: underline;
    opacity: 0.8;
}

.voice__read-more-btn:hover {
    opacity: 1;
}

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

    .voice__card-image {
        width: 150px;
        height: 150px;
        margin: 2rem auto 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .voice__card-body {
        padding: 2rem 1.5rem;
    }
}

.voice__item-title::before {
    content: '\201C';
    position: absolute;
    top: -40px;
    left: -20px;
    font-size: 5rem;
    font-family: var(--ff-jp-serif);
    color: var(--clr-accent);
    opacity: 0.3;
}

.voice__text .about__text {
    line-height: 2.2;
}

.small-note {
    font-size: 0.8rem;
    opacity: 0.6;
}

@media (max-width: 1024px) {
    .voice__item {
        gap: 40px;
    }

    .voice__content-box {
        padding: 4rem 3rem;
    }
}

@media (max-width: 768px) {
    .voice__item {
        flex-direction: column;
        gap: 50px;
        margin-bottom: 120px;
    }

    .voice__item--alt {
        flex-direction: column;
    }

    .voice__image {
        width: 100%;
    }

    .voice__content-box {
        width: 100%;
        padding: 3.5rem 2rem;
    }

    .voice__item-title {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }

    .voice__item-title::before {
        font-size: 3rem;
        top: -30px;
        left: -10px;
    }
}

/* ==========================================================================
   SECTION: SERVICE INTRO (鬯ｯ・ｯ繝ｻ・ｩ髫ｰ・ｳ繝ｻ・ｾ郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｵ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｺ鬯ｩ蟷｢・ｽ・｢髫ｴ雜｣・ｽ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｻ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｧ鬯ｯ・ｯ繝ｻ・ｩ髫ｰ・ｳ繝ｻ・ｾ郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｵ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｺ鬯ｯ・ｯ繝ｻ・ｯ郢晢ｽｻ繝ｻ・ｮ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｦ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｪ鬯ｩ蟷｢・ｽ・｢髫ｴ雜｣・ｽ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｻ鬯ｮ・ｴ隰・∞・ｽ・ｽ繝ｻ・｢鬮ｫ・ｴ闔ｨ螟ｲ・ｽ・ｽ繝ｻ・ｦ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｽ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｸ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｺ鬯ｯ・ｯ繝ｻ・ｮ郢晢ｽｻ繝ｻ・ｦ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｮ鬯ｮ・ｯ繝ｻ・ｷ郢晢ｽｻ繝ｻ・ｷ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｮ鬯ｩ蟷｢・ｽ・｢髫ｴ雜｣・ｽ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｻ)
   ========================================================================== */
.service-intro {
    padding: var(--section-gap) var(--side-padding);
    position: relative;
    overflow: hidden;
    /* Background handled by parallax fix at bottom */
    background: none;
}

.service-intro__video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.service-intro__video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) saturate(0.9);
}

.service-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    /* Slightly light overlay for readability */
    z-index: 1;
}

.service-intro__container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.service-intro__container {
    max-width: 800px;
    margin: 0 auto;
}

.service-intro__content {
    padding: 2rem 0;
}

.service-intro__lead {
    margin-bottom: 4rem;
}

.service-intro__list {
    margin-bottom: 4rem;
    padding-left: 2rem;
    border-left: 1px solid var(--clr-accent);
}

.service-intro__list li {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-intro__list li:last-child {
    margin-bottom: 0;
}

.service-intro__list li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--clr-sub);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .service-intro__list li {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
}

/* ==========================================================================
   SECTION: MENU
   ========================================================================== */
.menu-visual {
    width: 100%;
    height: 50vh;
    min-height: 300px;
    overflow: hidden;
    margin-bottom: 0;
    position: relative;
    /* Background handled by parallax fix at bottom */
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35);
    z-index: 0;
}

.menu-visual__overlay {
    position: relative;
    z-index: 1;
    text-align: center;
}

.menu-visual__overlay .about__en {
    font-size: 4.5rem !important;
    /* 3x of 1.25rem = 3.75, making it slightly more pronounced */
    margin-bottom: 1rem;
}

.menu-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
}

@media (max-width: 768px) {
    .menu-visual {
        max-height: 40vh;
        margin-bottom: 80px;
    }
}

.reasons-visual {
    width: 100%;
    height: 50vh;
    min-height: 300px;
    overflow: hidden;
    margin-bottom: 0;
    position: relative;
    /* Background handled by parallax fix at bottom */
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.reasons-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255 255 255 / 72%);
    z-index: 0;
}

.reasons-visual__overlay {
    position: relative;
    z-index: 1;
    text-align: center;
}

.reasons-visual__overlay .about__en {
    color: #7b4515 !important;
}

.menu {
    padding: var(--section-gap) var(--side-padding);
    background-color: #FAF8F5;
    background-image:
        linear-gradient(rgba(216, 207, 196, 0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(216, 207, 196, 0.08) 1px, transparent 1px);
    background-size: 80px 80px;
}

.menu__container {
    max-width: 900px;
    margin: 0 auto;
}

.menu__header {
    text-align: center;
    margin-bottom: 100px;
}

.menu__list {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-bottom: 100px;
}

.menu__item {
    border-top: 1px solid var(--clr-accent);
    padding-top: 3rem;
    position: relative;
}

.menu__item--recommend {
    background-color: #fdfbf7;
    border-top: 2px solid var(--clr-sub);
    padding: 3.5rem 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.menu__recommend-label {
    display: inline-block;
    background: var(--clr-sub);
    color: #fff;
    padding: 4px 16px;
    border-radius: 9999px;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.menu__target {
    display: block;
    font-size: 0.9rem;
    color: var(--clr-sub);
    margin-bottom: 1rem;
    font-weight: 500;
}

.menu__item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.menu__item--recommend .menu__item-header {
    margin-bottom: 1.5rem;
}

.menu__item-title {
    font-family: var(--ff-jp-serif);
    font-size: 1.6rem;
    font-weight: 400;
}

.menu__item--recommend .menu__item-title {
    font-size: 1.5rem;
    line-height: 1.5;
}

.menu__title-sub {
    font-size: 1.2rem;
    color: var(--clr-sub);
}

.menu__price {
    font-family: var(--ff-jp-serif);
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    color: var(--clr-text);
}

.menu__price span {
    font-size: 1rem;
    margin-left: 0.25rem;
}

.menu__additional {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px dashed var(--clr-accent);
}

@media (max-width: 768px) {
    .menu-section {
        padding: 30px 0 !important;
    }
    .menu__header {
        margin-bottom: 30px !important;
    }
    .menu__list {
        gap: 40px;
    }

    .menu__item {
        padding-top: 2rem;
    }

    .menu__item--recommend {
        padding: 2.5rem 1.5rem;
    }

    .menu__item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .menu__item-title {
        font-size: 1.4rem;
        line-height: 1.5;
    }

    .menu__title-sub {
        font-size: 1rem;
        display: block;
        margin-top: 0.25rem;
    }

    .menu__price {
        font-size: 1.5rem;
        margin-top: 0.5rem;
    }

    .menu__additional {
        text-align: left !important;
    }
    
    .about__text {
        text-align: center !important;
    }

    /* User Request: Left align specific text blocks on mobile */
    .reason-card .about__text,
    .flow__content .about__text,
    .owner__content .about__text,
    .voice__card .about__text,
    .cause__content .about__text,
    .personal__text-side .about__text,
    .menu-card .about__text,
    .contact__access-detail {
        text-align: left !important;
    }
}

.menu__item--recommend {
    position: relative;
    overflow: hidden;
    padding-right: 180px !important;
}

.menu__recommend-staff {
    position: absolute;
    right: 20px;
    bottom: -10px;
    width: 280px; /* Increase size from 220px */
}

.menu__recommend-staff img {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .menu__item--recommend {
        padding-right: 1.5rem !important;
        padding-bottom: 120px !important;
    }

    .menu__recommend-staff {
        right: 10px;
        bottom: -5px;
        width: 180px; /* Increase size from 140px */
    }
}

/* ==========================================================================
   SECTION: NOTICE (鬯ｯ・ｯ繝ｻ・ｩ髫ｰ・ｳ繝ｻ・ｾ郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｵ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｺ鬯ｯ・ｯ繝ｻ・ｨ郢晢ｽｻ繝ｻ・ｾ鬮ｫ・ｰ繝ｻ・ｳ郢晢ｽｻ繝ｻ・ｾ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｽ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｲ鬯ｯ・ｮ繝ｻ・ｫ郢晢ｽｻ繝ｻ・ｰ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｫ鬯ｩ蟷｢・ｽ・｢郢晢ｽｻ繝ｻ・ｧ鬮ｯ讒ｭ・・ｹ晢ｽｻ郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・｣驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｰ鬯ｮ・ｯ繝ｻ・ｷ郢晢ｽｻ繝ｻ・ｿ鬯ｯ・ｲ隰・∞・ｽ・ｽ繝ｻ・ｴ郢晢ｽｻ邵ｺ・､遶・ｽｬ鬯ｮ・ｫ繝ｻ・ｲ髯晢ｽｶ陷ｷ・ｶ郢晢ｽｻ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ鬯ｯ・ｯ繝ｻ・ｩ髫ｰ・ｳ繝ｻ・ｾ郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｵ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｺ鬯ｩ蟷｢・ｽ・｢髫ｴ雜｣・ｽ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｻ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｮ鬯ｯ・ｯ繝ｻ・ｩ髫ｰ・ｳ繝ｻ・ｾ郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｵ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｺ鬯ｯ・ｯ繝ｻ・ｨ郢晢ｽｻ繝ｻ・ｾ鬮ｫ・ｰ繝ｻ・ｳ郢晢ｽｻ繝ｻ・ｾ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｽ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｲ鬯ｩ蟷｢・ｽ・｢髫ｴ雜｣・ｽ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｻ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・｡鬯ｯ・ｮ繝ｻ・｣鬮ｮ蜈ｷ・ｽ・ｻ郢晢ｽｻ繝ｻ・｣郢晢ｽｻ繝ｻ・ｰ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・･鬯ｯ・ｩ陝ｷ・｢繝ｻ・ｽ繝ｻ・｢鬮ｫ・ｴ髮懶ｽ｣繝ｻ・ｽ繝ｻ・｢驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｽ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｻ)
   ========================================================================== */
.notice {
    padding: var(--section-gap) var(--side-padding);
}

.notice__container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fdfbf7;
    /* 鬯ｯ・ｯ繝ｻ・ｩ髯晢ｽｷ繝ｻ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・｢鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｧ鬯ｯ・ｩ陝ｷ・｢繝ｻ・ｽ繝ｻ・｢鬮ｫ・ｴ髮懶ｽ｣繝ｻ・ｽ繝ｻ・｢驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｽ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｻ鬯ｩ蟷｢・ｽ・｢髫ｴ雜｣・ｽ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｻ鬯ｩ蟷｢・ｽ・｢髫ｴ雜｣・ｽ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｻ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｸ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｺ鬯ｯ・ｮ繝ｻ・ｯ郢晢ｽｻ繝ｻ・ｷ鬮｣雋ｻ・ｽ・ｨ髯樊ｻゑｽｽ・ｲ郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｱ鬯ｩ蟷｢・ｽ・｢髫ｴ雜｣・ｽ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｻ鬯ｮ・ｫ繝ｻ・ｶ鬯ｮ・ｮ繝ｻ・｣郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・｣鬯ｯ・ｮ繝ｻ・｣鬯ｮ・ｮ郢晢ｽｻ繝ｻ・｣繝ｻ・ｰ郢晢ｽｻ繝ｻ・､驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｹ鬮ｫ・ｴ髮懶ｽ｣繝ｻ・ｽ繝ｻ・｢驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｽ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｻ鬯ｩ蟷｢・ｽ・｢髫ｴ雜｣・ｽ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｻ鬯ｮ・ｫ繝ｻ・ｶ髫ｰ謦ｰ・ｽ・ｺ髫ｲ・ｷ繝ｻ・｣驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｽ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｹ鬯ｮ・ｫ繝ｻ・ｴ髣包ｽｳ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ鬮ｯ・ｷ郢晢ｽｻ繝ｻ・ｽ繝ｻ・ｽ鬯ｯ・ｩ陝ｷ・｢繝ｻ・ｽ繝ｻ・｢鬮ｫ・ｴ髮懶ｽ｣繝ｻ・ｽ繝ｻ・｢驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｽ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｻ鬯ｯ・ｯ繝ｻ・ｩ髯晢ｽｷ繝ｻ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・｢鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｧ鬯ｩ蟷｢・ｽ・｢髫ｴ雜｣・ｽ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｻ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｸ鬯ｯ・ｯ繝ｻ・ｩ髯晢ｽｷ繝ｻ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・｢鬯ｮ・ｫ繝ｻ・ｴ鬮ｮ諛ｶ・ｽ・｣郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・｢鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｽ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・･ */
    padding: 5rem 6rem;
}

.notice__title {
    font-family: var(--ff-jp-serif);
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: var(--clr-sub);
}

.notice__lead {
    margin-bottom: 3rem;
    font-size: 1rem;
    line-height: 2;
}

.notice__list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    /* 鬯ｯ・ｯ繝ｻ・ｯ郢晢ｽｻ繝ｻ・ｮ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｯ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｦ鬯ｯ・ｯ繝ｻ・ｩ髯ｷ閧ｴ・ｺ・ｪ鬩滂ｽｪ鬮ｫ・ｰ隴ｴ・ｧ邵ｺ蛟｡・ｹ譎｢・ｽ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｿ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・｣鬯ｯ・ｯ繝ｻ・ｩ髯晢ｽｷ繝ｻ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・｢鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｧ鬯ｯ・ｯ繝ｻ・ｮ郢晢ｽｻ繝ｻ・ｮ鬮ｯ蜈ｷ・ｽ・ｹ郢晢ｽｻ繝ｻ・ｺ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｩ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｸ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｽ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｺ鬯ｯ・ｩ陝ｷ・｢繝ｻ・ｽ繝ｻ・｢鬮ｫ・ｴ髮懶ｽ｣繝ｻ・ｽ繝ｻ・｢驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｽ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｻ鬯ｩ蟷｢・ｽ・｢髫ｴ雜｣・ｽ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｻ鬯ｩ蛹・ｽｽ・ｶ髫ｰ・ｫ繝ｻ・ｾ郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｫ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｸ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｺ鬯ｩ蟷｢・ｽ・｢髫ｴ雜｣・ｽ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｻ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｫ鬯ｯ・ｯ繝ｻ・ｮ郢晢ｽｻ繝ｻ・ｯ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｷ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｿ鬯ｯ・ｮ繝ｻ・ｫ郢晢ｽｻ繝ｻ・ｰ鬯ｮ・ｮ陷茨ｽｷ繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｽ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｶ鬯ｩ蟷｢・ｽ・｢髫ｴ雜｣・ｽ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｻ鬯ｩ蟷｢・ｽ・｢髫ｴ雜｣・ｽ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｻ*/
}

.notice__list li {
    font-size: 0.95rem;
    /* 鬯ｯ・ｯ繝ｻ・ｮ郢晢ｽｻ繝ｻ・ｯ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｷ鬯ｮ・ｯ隶灘･・ｽｽ・ｻ郢ｧ謇假ｽｽ・ｽ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｧ鬯ｮ・ｮ髮懶ｽ｣繝ｻ・ｽ繝ｻ・ｸ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｵ鬯ｯ・ｮ繝ｻ・ｫ郢晢ｽｻ繝ｻ・ｰ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｫ鬯ｩ蟷｢・ｽ・｢髫ｴ雜｣・ｽ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｻ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｸ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｺ鬯ｩ蟷｢・ｽ・｢髫ｴ雜｣・ｽ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｻ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｫ鬯ｯ・ｯ繝ｻ・ｮ郢晢ｽｻ繝ｻ・ｯ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｷ鬯ｩ蟷｢・ｽ・｢髫ｴ雜｣・ｽ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｻ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｽ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｺ鬯ｯ・ｯ繝ｻ・ｩ髫ｰ・ｳ繝ｻ・ｾ郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｵ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｺ鬯ｯ・ｮ繝ｻ・ｯ郢晢ｽｻ繝ｻ・ｷ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｷ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｶ鬯ｯ・ｯ繝ｻ・ｩ鬯ｮ・ｦ繝ｻ・ｪ驛｢譎｢・ｽ・ｻ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｸ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｺ鬯ｩ蟷｢・ｽ・｢髫ｴ雜｣・ｽ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｻ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｪ鬯ｯ・ｯ繝ｻ・ｩ髫ｰ・ｳ繝ｻ・ｾ郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｵ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｺ鬯ｯ・ｩ陝ｷ・｢繝ｻ・ｽ繝ｻ・｢鬮ｫ・ｴ髮懶ｽ｣繝ｻ・ｽ繝ｻ・｢驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｽ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｻ鬯ｩ蟷｢・ｽ・｢髫ｴ雜｣・ｽ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｻ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｰ鬯ｯ・ｮ繝ｻ・｣髮朱メ・ｲ・ｻ繝ｻ・ｽ繝ｻ・ｼ髯樊ｻゑｽｽ・ｲ郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・｣鬯ｩ蟷｢・ｽ・｢髫ｴ雜｣・ｽ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｻ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｰ鬯ｯ・ｯ繝ｻ・ｮ郢晢ｽｻ繝ｻ・ｯ鬮ｫ・ｴ隰ｫ・ｾ繝ｻ・ｽ繝ｻ・ｴ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｸ鬯ｮ・ｯ隶抵ｽｭ繝ｻ繝ｻ・ｹ譎｢・ｽ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｽ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｼ鬯ｩ蟷｢・ｽ・｢髫ｴ雜｣・ｽ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｻ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｹ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｧ鬯ｯ・ｩ陋ｹ繝ｻ・ｽ・ｽ繝ｻ・ｶ鬮｣蛹・ｽｽ・ｳ髫ｶ蜴・ｽｽ・ｸ郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・｣驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｹ鬯ｩ蟷｢・ｽ・｢髫ｴ雜｣・ｽ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｻ鬯ｯ・ｯ繝ｻ・ｮ郢晢ｽｻ繝ｻ・ｫ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｴ鬯ｩ蛹・ｽｽ・ｶ髣包ｽｳ隶厄ｽｸ繝ｻ・ｽ繝ｻ・｣郢晢ｽｻ繝ｻ・ｹ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ鬯ｩ蟷｢・ｽ・｢髫ｴ雜｣・ｽ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｻ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｭ鬯ｯ・ｩ陝ｷ・｢繝ｻ・ｽ繝ｻ・｢鬮ｫ・ｴ髮懶ｽ｣繝ｻ・ｽ繝ｻ・｢驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｽ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｻ*/
    line-height: 1.9;
    position: relative;
    padding-left: 1.5rem;
    color: var(--clr-text);
}

.notice__list li::before {
    content: '';
    position: absolute;
    top: 0.8em;
    left: 0;
    width: 4px;
    height: 4px;
    background-color: var(--clr-sub);
    /* 鬯ｯ・ｯ繝ｻ・ｮ郢晢ｽｻ繝ｻ・ｫ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｰ鬯ｮ・ｫ繝ｻ・ｴ髣費ｽｨ陞滂ｽｲ繝ｻ・ｽ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｦ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｽ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｧ鬯ｯ・ｯ繝ｻ・ｩ髫ｰ・ｳ繝ｻ・ｾ郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｵ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｺ鬯ｯ・ｮ繝ｻ・ｯ髯ｷ闌ｨ・ｽ・ｷ郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｹ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｻ鬯ｩ蟷｢・ｽ・｢髫ｴ雜｣・ｽ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｻ鬯ｩ蛹・ｽｽ・ｶ髫ｰ・ｫ繝ｻ・ｾ郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｫ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｸ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｺ鬯ｩ蟷｢・ｽ・｢髫ｴ雜｣・ｽ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｻ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｪ鬯ｯ・ｯ繝ｻ・ｮ郢晢ｽｻ繝ｻ・｣鬮ｯ蜈ｷ・ｽ・ｹ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｳ鬯ｩ蟷｢・ｽ・｢髫ｴ雜｣・ｽ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｻ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｸ鬯ｯ・ｯ繝ｻ・ｩ髯晢ｽｷ繝ｻ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・｢鬯ｮ・ｫ繝ｻ・ｴ髯滓汚・ｽ・ｱ驛｢譎｢・ｽ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｺ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・｢鬯ｯ・ｩ陝ｷ・｢繝ｻ・ｽ繝ｻ・｢鬮ｫ・ｴ髮懶ｽ｣繝ｻ・ｽ繝ｻ・｢驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｽ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・｣鬯ｯ・ｯ繝ｻ・ｩ髯晢ｽｷ繝ｻ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・｢鬯ｮ・ｫ繝ｻ・ｴ髫ｰ・ｫ繝ｻ・ｾ郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｴ鬯ｩ蟷｢・ｽ・｢髫ｴ雜｣・ｽ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｻ*/
    border-radius: 50%;
}

@media (max-width: 768px) {
    .notice__container {
        padding: 3.5rem 2rem;
    }

    .notice__title {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }

    .notice__lead {
        margin-bottom: 2.5rem;
    }

    .notice__list {
        gap: 1.5rem;
    }

    .notice__list li {
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   SECTION: FAQ
   ========================================================================== */
.faq {
    padding: var(--section-gap) var(--side-padding);
}

.faq__container {
    max-width: 900px;
    margin: 0 auto;
}

.faq__header {
    margin-bottom: 80px;
    text-align: center;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    /* 鬯ｯ・ｯ繝ｻ・ｮ郢晢ｽｻ繝ｻ・｣鬮ｯ・ｷ繝ｻ・ｴ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｴ鬯ｯ・ｮ繝ｻ・ｯ郢晢ｽｻ繝ｻ・ｷ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・･鬯ｮ・｣陋ｹ繝ｻ・ｽ・ｽ繝ｻ・ｳ鬮ｫ・ｶ鬮ｮ・｣繝ｻ・ｽ繝ｻ・｣驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｰ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ郢晢ｽｻ陷ｿ螟懶ｽｱ蝣､・ｹ譎｢・ｽ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｧ鬯ｯ・ｮ繝ｻ・ｯ郢晢ｽｻ繝ｻ・ｷ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｻ鬯ｮ・ｯ隲幄ご陲也ｹ晢ｽｻ繝ｻ・ｷ髫ｶ魃会ｽｽ・ｪ繝ｻ繧・℃鬯ｮ・ｯ繝ｻ・ｷ郢晢ｽｻ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｵ鬯ｮ・ｫ繝ｻ・ｲ郢晢ｽｻ繝ｻ・､鬯ｮ・ｴ陜捺ｻ・ｽｱ蝣､・ｹ譎｢・ｽ・ｻ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｪ鬯ｯ・ｯ繝ｻ・ｮ郢晢ｽｻ繝ｻ・ｯ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｷ鬯ｮ・｣髮具ｽｻ繝ｻ・｣繝ｻ・ｰ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・･鬯ｮ・ｴ隰・∞・ｽ・ｽ繝ｻ・ｴ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｾ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ鬩搾ｽｵ繝ｻ・ｺ郢晢ｽｻ繝ｻ・､郢晢ｽｻ邵ｺ・､遶・ｽｬ鬯ｯ・ｩ陋ｹ繝ｻ・ｽ・ｽ繝ｻ・ｶ鬮ｫ・ｰ繝ｻ・ｫ郢晢ｽｻ繝ｻ・ｾ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｽ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｫ鬯ｩ蟷｢・ｽ・｢髫ｴ雜｣・ｽ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｻ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｴ鬯ｩ蟷｢・ｽ・｢髫ｴ雜｣・ｽ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｻ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｰ鬯ｯ・ｯ繝ｻ・ｩ髫ｰ・ｳ繝ｻ・ｾ郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｵ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｺ鬯ｯ・ｩ陝ｷ・｢繝ｻ・ｽ繝ｻ・｢鬮ｫ・ｴ髮懶ｽ｣繝ｻ・ｽ繝ｻ・｢驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｽ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｻ鬯ｩ蟷｢・ｽ・｢髫ｴ雜｣・ｽ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｻ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｷ鬯ｯ・ｮ繝ｻ・ｯ髫ｶ蜴・ｽｽ・ｸ郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・｢鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｹ鬯ｯ・ｩ陋ｹ繝ｻ・ｽ・ｽ繝ｻ・ｶ鬯ｯ・ｮ繝ｻ・ｮ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｮ鬮ｯ讓奇ｽｻ繧托ｽｽ・ｽ繝ｻ・ｲ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・｣驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｰ鬯ｮ・ｯ雋頑瑳・ｱ螢ｹ繝ｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｱ鬯ｩ蟷｢・ｽ・｢髫ｴ雜｣・ｽ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｻ鬯ｩ蟷｢・ｽ・｢髫ｴ雜｣・ｽ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｻ鬯ｩ蛹・ｽｽ・ｶ髫ｰ・ｫ繝ｻ・ｾ郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｫ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｸ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｺ鬯ｩ蟷｢・ｽ・｢髫ｴ雜｣・ｽ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｻ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｮ鬯ｯ・ｯ繝ｻ・ｯ郢晢ｽｻ繝ｻ・ｯ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｮ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｫ鬯ｯ・ｮ繝ｻ・ｯ郢晢ｽｻ繝ｻ・ｷ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・･鬯ｮ・ｫ繝ｻ・ｲ郢晢ｽｻ繝ｻ・ｰ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｹ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｿ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・｣鬯ｯ・ｯ繝ｻ・ｩ髫ｰ・ｳ繝ｻ・ｾ郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｵ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｺ鬯ｩ蟷｢・ｽ・｢髫ｴ雜｣・ｽ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｻ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｧ鬯ｯ・ｯ繝ｻ・ｮ郢晢ｽｻ繝ｻ・ｫ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｰ鬯ｮ・ｯ隶厄ｽｸ繝ｻ・ｽ繝ｻ・｢驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｽ鬯ｩ蟷｢・ｽ・｢郢晢ｽｻ繝ｻ・ｹ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｱ鬯ｩ蟷｢・ｽ・｢髫ｴ雜｣・ｽ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｻ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｰ鬯ｯ・ｯ繝ｻ・ｮ郢晢ｽｻ繝ｻ・ｫ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｲ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・｢鬯ｯ・ｩ陝ｷ・｢繝ｻ・ｽ繝ｻ・｢鬮ｫ・ｴ髮懶ｽ｣繝ｻ・ｽ繝ｻ・｢驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｽ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｻ*/
}

.faq__item {
    border-bottom: 1px solid var(--clr-accent);
}

.faq__item:first-child {
    border-top: 1px solid var(--clr-accent);
}

.faq__question {
    display: flex;
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    padding: 35px 20px;
    position: relative;
    transition: opacity 0.3s;
}

.faq__question:hover {
    opacity: 0.7;
}

.faq__q-mark {
    font-family: var(--ff-jp-serif);
    font-size: 1.6rem;
    color: var(--clr-sub);
    margin-right: 25px;
    line-height: 1.2;
}

.faq__q-text {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--clr-text);
    padding-right: 40px;
    flex: 1;
}

/* Accordion Plus Icon - Delicate */
.faq__icon {
    position: relative;
    width: 16px;
    height: 16px;
    margin-top: 8px;
    flex-shrink: 0;
}

.faq__icon::before,
.faq__icon::after {
    content: '';
    position: absolute;
    background-color: var(--clr-sub);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq__icon::before {
    top: 7px;
    left: 0;
    width: 16px;
    height: 1px;
}

.faq__icon::after {
    top: 0;
    left: 7.5px;
    width: 1px;
    height: 16px;
}

/* Accordion active state */
.faq__question[aria-expanded="true"] .faq__icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq__question[aria-expanded="true"] .faq__icon::before {
    transform: rotate(180deg);
}

.faq__answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
}

.faq__answer[aria-hidden="false"] {
    grid-template-rows: 1fr;
    opacity: 1;
}

.faq__answer-inner {
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    padding: 0 20px 40px 20px;
}

.faq__a-mark {
    font-family: var(--ff-jp-serif);
    font-size: 1.6rem;
    color: var(--clr-sub);
    margin-right: 25px;
    line-height: 1.2;
    opacity: 0.5;
    /* 鬯ｯ・ｯ繝ｻ・ｩ髯晢ｽｷ繝ｻ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・｢鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｧ鬯ｯ・ｩ陝ｷ・｢繝ｻ・ｽ繝ｻ・｢鬮ｫ・ｴ髮懶ｽ｣繝ｻ・ｽ繝ｻ・｢驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｽ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｻ鬯ｩ蟷｢・ｽ・｢髫ｴ雜｣・ｽ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｻ鬯ｮ・ｯ繝ｻ・ｷ繝ｻ繧・℃鬮ｫ・ｴ闔ｨ螟ｲ・ｽ・ｽ繝ｻ・ｦ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｽ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｹ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｧ鬯ｯ・ｮ繝ｻ・ｯ髫ｴ雜｣・ｽ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｲ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｨ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ鬩幢ｽ｢繝ｻ・ｧ髫ｰ繝ｻ竏槭・・ｽ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｰ鬯ｯ・ｯ繝ｻ・ｩ髫ｰ・ｳ繝ｻ・ｾ郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｵ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｺ鬯ｯ・ｩ陝ｷ・｢繝ｻ・ｽ繝ｻ・｢鬮ｫ・ｴ髮懶ｽ｣繝ｻ・ｽ繝ｻ・｢驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｽ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｻ鬯ｯ・ｯ繝ｻ・ｯ郢晢ｽｻ繝ｻ・ｯ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｲ鬯ｩ蟷｢・ｽ・｢郢晢ｽｻ繝ｻ・ｧ鬮ｯ・ｷ繝ｻ・ｿ郢晢ｽｻ繝ｻ・･驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｯ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｰ鬯ｩ蟷｢・ｽ・｢髫ｴ雜｣・ｽ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｻ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・｡ */
}

.faq__a-text {
    flex: 1;
}

.faq__a-text .about__text {
    line-height: 2.3;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .faq__list {
        gap: 15px;
    }

    .faq__question {
        padding: 25px 10px;
    }

    .faq__q-mark {
        font-size: 1.4rem;
        margin-right: 15px;
    }

    .faq__q-text {
        font-size: 1.1rem;
        padding-right: 20px;
    }

    .faq__a-mark {
        font-size: 1.4rem;
        margin-right: 15px;
    }

    .faq__answer-inner {
        padding: 0 10px 30px 10px;
    }

    .faq__a-text .about__text {
        font-size: 1rem;
    }
}

/* ==========================================================================
   SECTION: CONTACT
   ========================================================================== */
.contact {
    position: relative;
    padding: var(--section-gap) 0;
    /* Background handled by parallax fix at bottom */
    background: none;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7); /* 鬨ｾ蜈ｷ・ｽ・ｽ驍ｵ・ｺ郢晢ｽｻ繝ｻ・ｹ髴郁ｲｻ・ｽ蟶晄≧繝ｻ・ｽ髯ｷ繝ｻ*/
    z-index: 0;
}

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

.contact__container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--side-padding);
}

.contact__header {
    text-align: center;
    margin-bottom: 80px;
}

.contact__content {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    align-items: stretch;
}

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

.contact__list {
    margin-bottom: 3.5rem;
}

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

.contact__list li:last-child {
    margin-bottom: 0;
}

.contact__label {
    width: 6em;
    flex-shrink: 0;
    color: var(--clr-sub);
    font-weight: 500;
}

.contact__value {
    flex: 1;
}

.contact__access {
    margin-bottom: 3rem;
}

.contact__access-route {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--clr-sub);
}

.contact__access-detail {
    font-size: 1.1rem;
    line-height: 2.2;
}

.contact__warning {
    font-size: 0.85rem;
    color: #999;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--clr-accent);
}

.contact__map {
    width: 45%;
    flex-shrink: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    min-height: 400px;
}

.contact__map iframe {
    width: 100%;
    height: 100%;
    vertical-align: bottom;
    /* margin-bottom鬯ｯ・ｯ繝ｻ・ｩ髫ｰ・ｳ繝ｻ・ｾ郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｵ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｺ鬯ｩ蟷｢・ｽ・｢髫ｴ雜｣・ｽ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｻ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｮ鬯ｯ・ｯ繝ｻ・ｯ郢晢ｽｻ繝ｻ・ｯ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｩ鬯ｮ・ｫ繝ｻ・ｲ郢晢ｽｻ繝ｻ・ｷ鬮ｯ蜈ｷ・ｽ・ｹ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｿ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｫ鬯ｯ・ｩ陝ｷ・｢繝ｻ・ｽ繝ｻ・｢鬮ｫ・ｴ髮懶ｽ｣繝ｻ・ｽ繝ｻ・｢驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｽ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｻ鬯ｯ・ｯ繝ｻ・ｩ髯晢ｽｷ繝ｻ・｢郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・｢鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｧ鬯ｯ・ｮ繝ｻ・ｯ郢晢ｽｻ繝ｻ・ｷ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｻ鬯ｯ・ｮ繝ｻ・｣鬯ｲ繝ｻ・ｼ螟ｲ・ｽ・ｽ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｨ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｽ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｶ鬯ｯ・ｮ繝ｻ・ｯ髯ｷ闌ｨ・ｽ・ｷ郢晢ｽｻ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｹ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ郢晢ｽｻ繝ｻ・ｻ鬯ｯ・ｮ繝ｻ・ｫ郢晢ｽｻ繝ｻ・ｨ鬮ｯ蛹ｺ・ｻ繧托ｽｽ・ｽ繝ｻ・･鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽ繝ｻ・ｻ*/
}

@media (max-width: 1024px) {
    .contact__content {
        gap: 50px;
    }

    .contact__map {
        width: 50%;
    }
}

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

    .contact__map {
        width: 100%;
        height: 60vw;
        min-height: 300px;
    }

    .contact__list {
        margin-bottom: 2.5rem;
    }

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

    .contact__label {
        width: auto;
        margin-bottom: 0.3rem;
    }

    .contact__access-detail {
        font-size: 0.9rem;
    }

    .contact__warning {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
}

/* ==========================================================================
   SPEECH BUBBLE (FUKIDASHI)
   ========================================================================== */
.fukidashi-14 {
    position: relative;
    display: block;
    padding: 12px 24px;
    border-bottom: solid 1px #333;
    margin: 48px auto;
    width: fit-content;
    background-color: transparent;
    z-index: 1;
}

.fukidashi-14::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 18px;
    height: 18px;
    box-sizing: border-box;
    background-color: #fff;
    /* Match section background */
    rotate: 135deg;
    translate: -50%;
    z-index: 2;
}

.fukidashi-14::after {
    content: "";
    position: absolute;
    bottom: -7px;
    left: 50%;
    width: 20px;
    height: 20px;
    box-sizing: border-box;
    border-top: solid 1px #333;
    rotate: 135deg;
    translate: -50%;
    z-index: 1;
}

/* Match background for fukidashi inside struggle section */
.struggle-full-wrap .fukidashi-14::before {
    background-color: #FAF8F5;
}

/* ==========================================================================
   SPEECH BUBBLE (FUKIDASHI-10) - Skewed Style
   ========================================================================== */
.fukidashi-10 {
    position: relative;
    display: block;
    padding: 8px 32px;
    border: solid 1px #c5b8a5;
    transform: skewX(-15deg);
    background-color: #c5b8a5;
    color: #fff;
    margin: 48px;
    margin-inline: auto;
    width: fit-content;
}

.fukidashi-10::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 30%;
    height: 28px;
    width: 28px;
    border-right: 2px solid #c5b8a5;
    transform: rotate(40deg);
}

.fukidashi-10 .about__title {
    transform: skewX(15deg);
}

@media (max-width: 768px) {
    .fukidashi-10 {
        padding: 12px 16px;
        margin: 30px auto;
        text-align: center; /* 驛｢・ｧ繝ｻ・ｻ驛｢譎｢・ｽ・ｳ驛｢・ｧ繝ｻ・ｿ驛｢譎｢・ｽ・ｼ髫ｰ・ｰ郢晢ｽｻ遶擾ｽｴ */
    }
    .fukidashi-10 .about__title {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   FAITHFUL REPRODUCTION OF TEST.JPG DESIGN (FINAL UNIFIED - CLEANED)
   ========================================================================== */
.fv-visual {
    height: auto;
    min-height: 500px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    z-index: 1; /* 驛｢譎冗函郢晢ｽｻ驛｢・ｧ繝ｻ・ｹ驍ｵ・ｺ繝ｻ・ｨ驍ｵ・ｺ繝ｻ・ｪ驛｢・ｧ驕擾ｽｩ陜ｴ・ｴ髯橸ｽｻ繝ｻ・､驛｢・ｧ陜｣・､繝ｻ・｢繝ｻ・ｺ鬩包ｽｶ郢晢ｽｻ*/
}

/* Logo Section (Top Left) */
.fv-visual__logo {
    position: absolute;
    top: 5vh;
    left: 4vw;
    font-family: var(--ff-en-fancy);
    font-size: clamp(4rem, 8vw, 10rem);
    color: #fff;
    z-index: 300; /* 髫ｴ蟶壹℃髯ｷ螟ｧ豸ｵ隰ｫ繝ｻ・ｸ・ｺ繝ｻ・ｸ */
    line-height: 0.8;
    pointer-events: none;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 1 !important; /* 髯滓汚・ｽ・ｷ髯具ｽｻ繝ｻ・ｶ鬮ｯ・ｦ繝ｻ・ｨ鬩穂ｼ夲ｽｽ・ｺ */
    transform: none !important;
}

/* Top Area (Gradient) */
.fv-visual__top-bar {
    position: relative;
    width: 100%;
    flex: 0 0 auto;
    height: calc(100vw * (612 / 1366) * 0.125);
    min-height: 30px;
    background: linear-gradient(90deg, #F4DDE3 0%, #DAD0F2 50%, #E4E7E2 100%);
    z-index: 50;
    pointer-events: none;
    background-size: 200% 100% !important;
    opacity: 1 !important; /* 髯滓汚・ｽ・ｷ髯具ｽｻ繝ｻ・ｶ鬮ｯ・ｦ繝ｻ・ｨ鬩穂ｼ夲ｽｽ・ｺ */
    animation: auroraWave 15s ease infinite alternate; /* fadein驛｢・ｧ繝ｻ・｢驛｢譏懶ｽｹ譁滄豪・ｹ・ｧ髮区ｩｸ・ｽ・､隰費ｽｶ繝ｻ・ｰ驍ｵ・ｺ繝ｻ・ｦ髯ｷ螂・ｽｽ・ｳ鬮ｯ・ｦ繝ｻ・ｨ鬩穂ｼ夲ｽｽ・ｺ */
}

/* Bottom Area (Gradient & Text) */
.fv-visual__bottom-bar {
    position: relative;
    width: 100%;
    flex: 0 0 auto;
    height: calc(100vw * (612 / 1366) * 0.125); /* 鬨ｾ蛹・ｽｽ・ｻ髯ｷ蜑・ｽｸ鄙ｫ繝ｻ鬯ｯ・ｮ陋滂ｽ･繝ｻ繝ｻ・ｸ・ｺ繝ｻ・ｮ1/8 = 髯ｷ闌ｨ・ｽ・ｨ髣厄ｽｴ髦ｮ蜷ｶ繝ｻ1髯ｷ謇假ｽｽ・ｲ */
    min-height: 80px;
    background: linear-gradient(90deg, #F4DDE3 0%, #DAD0F2 50%, #E4E7E2 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    text-align: right;
    padding-right: 5vw;
    z-index: 50;
    background-size: 200% 100% !important;
    animation: elegantFadeIn 2.5s ease 0.5s forwards, auroraWave 15s ease infinite alternate;
}

.fv-visual__title {
    font-family: var(--ff-jp-serif);
    font-size: clamp(1.4rem, 2.5vw, 2.5rem);
    color: #fff;
    letter-spacing: 0.3em;
    margin-bottom: 0.3rem;
    font-weight: 300;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.fv-visual__cursive {
    font-family: var(--ff-en-cursive);
    font-size: clamp(1.5rem, 2.5vw, 2.8rem);
    color: #fff;
    opacity: 0.9;
    letter-spacing: 0.2em;
    font-style: italic;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Background Images (Fixed Aspect Area) */
.fv-visual__bg {
    width: 100%;
    height: 612px; /* PC驍ｵ・ｺ繝ｻ・ｧ驍ｵ・ｺ繝ｻ・ｮ髯憺屮・ｽ・ｺ髫ｴ蟷｢・ｽ・ｬ驍ｵ・ｺ繝ｻ・ｮ鬯ｯ・ｮ陋滂ｽ･繝ｻ繝ｻ*/
    height: calc(100vw * 612 / 1366); /* 鬨ｾ蛹・ｽｽ・ｻ鬯ｮ・ｱ繝ｻ・｢髯晢ｽｷ郢晢ｽｻ遶頑･｢諠ｺ陋ｹ・ｻ繝ｻ蜀暦ｽｸ・ｺ陝ｶ蜷ｮ陞ｺ髯ｷ・ｿ繝ｻ・ｯ髯樊ｺｷ・ｳ・ｨ郢晢ｽｻ鬯ｯ・ｮ陋滂ｽ･繝ｻ繝ｻ*/
    flex: 0 0 auto;
    display: flex;
    overflow: hidden;
    position: relative;
    z-index: 10;
    background-color: #f0f0f0; /* 髣包ｽｳ郢晢ｽｻ遯ｶ・ｲ髣包ｽｳ遶・ｽｬ鬨ｾ蛹・ｽｽ・ｻ髯ｷ蜑・ｽｸ蟯ｩﾂ・ｲ驍ｵ・ｺ繝ｻ・ｪ驍ｵ・ｺ闕ｳ蟯ｩﾂ・ｻ驛｢・ｧ郢ｧ鬘疲ｨｪ驍ｵ・ｺ繝ｻ・ｧ鬮ｫ遨ゑｽｹ譏ｶ譁｡驛｢・ｧ闕ｵ譎｢・ｽ閧ｲ・ｸ・ｺ郢晢ｽｻ遶翫・*/
}

.fv-visual__img-left,
.fv-visual__img-right {
    flex: 1;
    overflow: hidden;
    position: relative;
}

/* Default visible for stability */
.fv-visual__img-left img,
.fv-visual__img-right img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0; /* JS驍ｵ・ｺ繝ｻ・ｧ驛｢・ｧ繝ｻ・ｹ驛｢・ｧ繝ｻ・､驛｢譏ｴ繝ｻ郢晢ｽ｡驍ｵ・ｺ髴郁ｲｻ・ｽ讙趣ｽｹ・ｧ闕ｵ譏ｶ遨宣し・ｺ繝ｻ・ｧ髣包ｽｳ遶・ｽｬ髫ｴ魃会ｽｽ・ｦ髯溯ｼ斐・繝ｻ・ｩ郢晢ｽｻ*/
    transition: opacity 1.5s ease-in-out;
}

/* 1髫ｴ・ｫ陞溘ｇ・ｲ・ｼ驍ｵ・ｺ驍ｵ・ｺ闔会ｽ｣郢晢ｽｻ髫ｴ蟶壹℃髯具ｽｻ隴擾ｽｴ・ゑｽｰ驛｢・ｧ髢ｾ・･繝ｻ・ｵ繝ｻ・ｶ髯昴・・ｽ・ｾ驍ｵ・ｺ繝ｻ・ｫ鬮ｫ遨ゑｽｹ譏ｶ髮ｷ驛｢・ｧ陷茨ｽｷ繝ｻ・ｼ郢晢ｽｻS驍ｵ・ｺ隰疲ｺｯ蜉帝し・ｺ闕ｵ譏ｶ繝ｻ驍ｵ・ｺ闕ｳ蟯ｩﾂ・ｻ驛｢・ｧ繝ｻ蟆ｻ郢晢ｽｻ郢晢ｽｻ*/
.fv-visual__img-left img:first-child,
.fv-visual__img-right img:first-child {
    opacity: 1 !important;
}

.fv-visual__img-left img.is-active,
.fv-visual__img-right img.is-active {
    opacity: 1 !important; /* 驛｢・ｧ繝ｻ・ｹ驛｢譎｢・ｽ・ｩ驛｢・ｧ繝ｻ・､驛｢譎擾ｽｳ・ｨ邵ｺ蜥擾ｽｹ譎｢・ｽ・ｧ驛｢譎｢・ｽ・ｼ驍ｵ・ｺ繝ｻ・ｮ鬨ｾ蛹・ｽｽ・ｻ髯ｷ蜑・ｽｸ螂・ｽｽ蟶晢ｿ｡繝ｻ・ｺ髯橸ｽｳ雋・ｪ繝ｻ鬮ｯ・ｦ繝ｻ・ｨ鬩穂ｼ夲ｽｽ・ｺ */
}

/* Vertical Text */
.fv-visual__v-text {
    position: absolute;
    writing-mode: vertical-rl;
    font-family: var(--ff-jp-serif);
    font-size: clamp(1.2rem, 1.8vw, 2rem);
    letter-spacing: 0.5em;
    z-index: 300; /* 髣皮判縺倡ｹ晢ｽｻ鬮ｫ陬懈が繝ｻ・ｴ驛｢・ｧ陋ｹ・ｻ繝ｻ鬘伜初驗呻ｽｫ遶翫・*/
    line-height: 1.8;
    font-weight: 500;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    opacity: 1 !important; /* 髫ｴ蟶壹℃髯具ｽｻ隴擾ｽｴ・ゑｽｰ驛｢・ｧ髣・ｽｽ繝ｻ・ｦ闕ｵ譏ｶ譁｡驛｢・ｧ闕ｵ譎｢・ｽ閧ｲ・ｸ・ｺ郢晢ｽｻ遶翫・*/
    transform: none !important;
}

.fv-visual__v-text--left {
    bottom: 10px; /* 髣包ｽｳ郢晢ｽｻ髯ｷ謇假ｽｽ・ｲ驍ｵ・ｺ繝ｻ・ｮ驛｢譎√・郢晢ｽｻ驍ｵ・ｺ繝ｻ・ｮ髣包ｽｳ繝ｻ・ｭ驍ｵ・ｺ繝ｻ・ｫ鬩墓慣・ｽ・ｺ髯橸ｽｳ雋・ｪ繝ｻ鬯ｯ貊難ｽｺ蛛・ｽｼ讓｣諱ｷ繝ｻ・ｼ驛｢・ｧ遶・ｽｬ驛｢・ｧ陋ｹ・ｻ遶包ｽｧ驍ｵ・ｺ繝ｻ・ｫ */
    left: 6vw;
    color: #808080;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.fv-visual__v-text--right {
    top: 10px; /* 髣包ｽｳ郢晢ｽｻ髯ｷ謇假ｽｽ・ｲ驍ｵ・ｺ繝ｻ・ｮ驛｢譎√・郢晢ｽｻ驍ｵ・ｺ繝ｻ・ｮ髣包ｽｳ繝ｻ・ｭ驍ｵ・ｺ繝ｻ・ｫ鬩墓慣・ｽ・ｺ髯橸ｽｳ雋・ｪ繝ｻ鬯ｯ貊難ｽｺ蛛・ｽｼ讓｣諱ｷ繝ｻ・ｼ驛｢・ｧ遶・ｽｬ驛｢・ｧ陋ｹ・ｻ遶包ｽｧ驍ｵ・ｺ繝ｻ・ｫ */
    right: 4vw;
    color: #D2ADD9;
}

/* Bubbles Styling & Animation */
.fv-visual__bubbles {
    position: absolute;
    inset: 0;
    z-index: 15; /* 髯ｷﾂ陷･荵暦ｽ・10)驛｢・ｧ陋ｹ・ｻ繝ｻ鬘伜初驗呻ｽｫ遶・ｽｬ遶丞｣ｹﾎ｣驛｢譎｢・ｽ・ｼ(50)驛｢・ｧ陋ｹ・ｻ繝ｻ鬘伜初郢晢ｽｻ*/
    pointer-events: none;
}

.fv-bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 230, 245, 0.9) 0%, rgba(255, 230, 245, 0) 70%);
    opacity: 0;
    filter: blur(5px);
}

/* Animation TR (Top Right to Center) */
.fv-bubble--tr {
    animation: bubbleFloatTR linear forwards;
}

@keyframes bubbleFloatTR {
    0% {
        transform: translate(0, 0) scale(0.5);
        opacity: 0.2;
    }

    30% {
        opacity: 0.8;
    }

    100% {
        transform: translate(-30vw, 30vh) scale(1.5);
        opacity: 0;
    }
}

/* Animation BL (Bottom Left to Center) */
.fv-bubble--bl {
    animation: bubbleFloatBL linear forwards;
}

@keyframes bubbleFloatBL {
    0% {
        transform: translate(0, 0) scale(0.5);
        opacity: 0.2;
    }

    30% {
        opacity: 0.8;
    }

    100% {
        transform: translate(30vw, -30vh) scale(1.5);
        opacity: 0;
    }
}

.fv-visual__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    text-align: center;
    color: #fff;
}

.fv-visual__scroll-text {
    font-family: var(--ff-en-fancy);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* Navigation Indicators (Bubbles) Container */
.fv-visual__bubbles {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
}

/* Scroll Indicator */
.fv-visual__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    text-align: center;
    color: #fff;
}

/* Responsive Overrides */
@media (min-width: 769px) {
    .fv-visual {
        height: auto;
        overflow: hidden;
    }
}

@media (max-width: 768px) {
    .fv-visual {
        height: auto;
        min-height: 85vh;
        margin-bottom: 0;
    }

    .fv-visual__top-bar {
        height: 12vh;
        min-height: 80px;
    }

    .fv-visual__bg {
        flex-direction: column-reverse; /* 鬨ｾ蛹・ｽｽ・ｻ髯ｷ蜑・ｽｸ鄙ｫ繝ｻ髣包ｽｳ髮榊・・ｽ・ｸ闕ｵ譎｢・ｽ螳壽ｦ繝ｻ・･驛｢・ｧ隴ｴ・ｧ陝�蟶ｷ・ｸ・ｺ郢晢ｽｻ*/
        height: 65vh; /* 驛｢・ｧ繝ｻ・ｹ驛｢譎・ｽｧ・ｭ郢晢ｽｻ驍ｵ・ｺ繝ｻ・ｧ驍ｵ・ｺ繝ｻ・ｮ鬯ｯ・ｮ陋滂ｽ･繝ｻ繝ｻ・ｹ・ｧ陋幢ｽｵ繝ｻ・ｰ驍ｵ・ｺ繝ｻ・｣驍ｵ・ｺ闕ｵ譎｢・ｽ莨・ｿ｡繝ｻ・ｺ髣厄ｽｫ郢晢ｽｻ*/
        width: 100%;
    }

    .fv-visual__bottom-bar {
        height: 12vh;
        min-height: 110px;
        padding: 0 20px;
        text-align: center;
        align-items: center;
    }

    .fv-visual__logo {
        position: absolute;
        top: 2vh;
        left: 5vw; /* 驛｢譎｢・ｽ・ｭ驛｢・ｧ繝ｻ・ｴ驛｢・ｧ髮区ｩｸ・ｽ・ｷ繝ｻ・ｦ髯句ｹ｢・ｽ・ｴ驍ｵ・ｺ繝ｻ・ｫ鬯ｩ貅ｷ隱ｿ繝ｻ・ｽ繝ｻ・ｮ */
        transform: none;
        text-align: left;
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .fv-visual__v-text {
        font-size: clamp(1rem, 4.2vw, 1.3rem);
        font-weight: 600;
        letter-spacing: 0.3em;
        line-height: 1.6;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.9), 0 0 20px rgba(255, 255, 255, 0.6);
    }

    .fv-visual__v-text--left {
        left: 2.5vw;
        bottom: 40px;
        top: auto;
        color: #555;
    }

    .fv-visual__v-text--right {
        right: 2.5vw;
        top: 30px;
        bottom: auto;
        color: #884DA7;
    }
}

/* ==========================================================================
   Hamburger & SP Nav
   ========================================================================== */
.header__hamburger {
    width: 32px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 1100;
}

.header__hamburger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--clr-text);
    position: absolute;
    left: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.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 {
    background: var(--clr-text);
}

.header__hamburger.is-active span:nth-child(1) { transform: translateY(9.5px) rotate(-45deg); }
.header__hamburger.is-active span:nth-child(2) { opacity: 0; transform: translateX(-20px); }
.header__hamburger.is-active span:nth-child(3) { transform: translateY(-9px) rotate(45deg); }

.header__sp-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #FEF9EA 0%, #FFFBFB 100%);
    z-index: 1050;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
}

.header__sp-nav::before,
.header__sp-nav::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    opacity: 0.4;
}

.header__sp-nav::before {
    width: 300px;
    height: 300px;
    background: var(--clr-accent);
    top: -50px;
    left: -50px;
}

.header__sp-nav::after {
    width: 400px;
    height: 400px;
    background: #F2EAD0;
    bottom: -100px;
    right: -100px;
}

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

.header__sp-nav ul {
    list-style: none;
    text-align: center;
    width: 100%;
    padding: 0 40px;
}

.header__sp-nav li {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.header__sp-nav.is-active li {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation for SP nav items */
.header__sp-nav.is-active li:nth-child(1) { transition-delay: 0.1s; }
.header__sp-nav.is-active li:nth-child(2) { transition-delay: 0.2s; }
.header__sp-nav.is-active li:nth-child(3) { transition-delay: 0.3s; }
.header__sp-nav.is-active li:nth-child(4) { transition-delay: 0.4s; }
.header__sp-nav.is-active li:nth-child(5) { transition-delay: 0.5s; }
.header__sp-nav.is-active li:nth-child(6) { transition-delay: 0.6s; }

.header__sp-nav a {
    font-family: var(--ff-en-fancy);
    font-size: 2rem;
    color: var(--clr-text);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    line-height: 1.2;
}

.sp-nav__jp {
    display: block;
    font-family: var(--ff-jp-sans);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--clr-sub);
    margin-top: 2px;
    text-transform: none;
    font-weight: 400;
}

.sp-nav__btn--hp a, .sp-nav__btn--line a {
    font-family: var(--ff-jp-sans);
    padding: 1rem 3rem;
    border-radius: 99px;
    color: #fff !important;
    display: inline-block;
    font-size: 1rem;
    margin-top: 1rem;
    text-transform: none;
    letter-spacing: 0.05em;
    width: 100%;
    max-width: 280px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.footer-btn--hp { background-color: #d4a5b3 !important; border-right: 1px solid rgba(255, 255, 255, 0.2); } 
.footer-btn--hp:hover { filter: brightness(0.9); } 
.footer-btn--line { background-color: #a3b89e !important; } 
.footer-btn--line:hover { filter: brightness(0.9); }

/* ==========================================================================
   PARALLAX FIX FOR IOS SAFARI (Added 2024-04-10)
   ========================================================================== */
.struggle-section,
.reservation-area,
.reasons-visual,
.menu-visual,
.reservation-personal-wrap,
.cta,
.service-intro,
.contact {
    position: relative !important;
    background-image: none !important;
    background-attachment: scroll !important;
    clip-path: inset(0);
    z-index: 1;
}

.struggle-section::after,
.reservation-area::after,
.reasons-visual::after,
.menu-visual::after,
.reservation-personal-wrap::after,
.cta::after,
.service-intro::after,
.contact::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -2;
    will-change: transform;
    pointer-events: none;
}

/* Specific background images */
.struggle-section::after { background-image: url('../img/concern_bg.jpg'); }
.reservation-area::after { background-image: url('../img/service_bg.jpg'); }
.reasons-visual::after { background-image: url('../img/service_bg001.jpg'); }
.menu-visual::after { background-image: url('../img/master_16-9.jpg'); }
.reservation-personal-wrap::after { background-image: url('../img/service_bg.jpg'); }
.cta::after { background-image: url('../img/service_bg.jpg'); }
.service-intro::after { background-image: url('../img/concern_bg.jpg'); }
.contact::after { background-image: url('../img/concern_bg01.jpeg'); }

/* Extra check for content above fixed background */
.struggle-section > *, .reservation-area > *, .reasons-visual > *,
.menu-visual > *, .reservation-personal-wrap > *, .cta > *,
.service-intro > *, .contact > * {
    position: relative;
    z-index: 1;
}

/* Specific fixes for existing pseudo-elements (overlays) */
.reasons-visual::before, .menu-visual::before, .reservation-personal-wrap::before, .cta::before {
    z-index: 0 !important;
}

/* Gradient Animation (Aurora Wave) */
.fv-visual__top-bar,
.fv-visual__bottom-bar {
    background-size: 200% 100% !important;
    animation: auroraWave 15s ease infinite alternate;
}

@keyframes auroraWave {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

/* Plan 1: Elegant Slow Fade In */
.fv-visual__top-bar,
.fv-visual__bottom-bar {
    opacity: 0;
    animation: elegantFadeIn 2.5s ease 0.5s forwards, auroraWave 15s ease infinite alternate;
}

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

    100% {
        opacity: 1;
    }
}

/* Final Loading & Sync Animation Fix */
#loading-screen {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease;
}

.loader-dot {
    width: 15px;
    height: 15px;
    background: #DAD0F2;
    border-radius: 50%;
    margin: 0 5px;
    animation: loaderBounce 1.4s infinite ease-in-out both;
}

@keyframes loaderBounce {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

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

.fv-visual {
    /* Fixed visibility since loading screen was removed */
    opacity: 1;
}


/* Final Bubble Visibility Fix */
.fv-bubble {
    z-index: 200 !important;
    /* Force bubbles to the very top */
    pointer-events: none;
}

/* FORCE BUBBLE TO TOP OVER ALL LAYERS */
#js-bubbles {
    position: absolute;
    inset: 0;
    z-index: 1000 !important;
    /* Above images and gradient bars */
    pointer-events: none;
}

.fv-bubble {
    z-index: 1001 !important;
}

/* Glitter / Sparkle Particles Effect */
.fv-glitter {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px 2px rgba(255, 255, 255, 1), 0 0 20px 5px rgba(255, 230, 245, 0.8);
    opacity: 0;
    pointer-events: none;
    z-index: 1002 !important;
}

@keyframes sparkle {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }

    20% {
        opacity: 1;
        transform: scale(1.2) rotate(45deg);
    }

    50% {
        opacity: 0.8;
        transform: scale(0.8) rotate(90deg);
    }

    80% {
        opacity: 1;
        transform: scale(1.2) rotate(135deg);
    }

    100% {
        transform: scale(0) rotate(180deg);
        opacity: 0;
    }
}

.fv-glitter--anim {
    animation: sparkle linear forwards;
}

/* Final Gradient Color Refresh (#E4E7E2, #F2EAD0, #F4DDE3) */
.fv-visual__top-bar,
.fv-visual__bottom-bar {
    background: linear-gradient(90deg, #E4E7E2 0%, #F2EAD0 50%, #F4DDE3 100%) !important;
    background-size: 200% 100% !important;
}

/* ==========================================================================
   PHILOSOPHY REDESIGN (Faithful to test2.jpg)
   ========================================================================== */
.philosophy-layout {
    padding: clamp(60px, 8vh, 120px) var(--side-padding) 12vh;
    background: linear-gradient(-45deg, #FFFBFC, #F7F7FF, #F5FFF8, #FFFDF0, #FDF7FF);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    overflow: hidden;
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    margin-left: -50vw !important;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Collage Area */
.philosophy-collage {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 15vh;
    height: 100vh;
    /* Base height for positioning */
    min-height: 800px;
}

.philosophy-collage__logo {
    position: absolute;
    top: 5vh;
    left: 0;
    font-family: var(--ff-jp-serif);
    font-size: clamp(4rem, 8vw, 12rem);
    color: #444;
    line-height: 0.9;
    z-index: 10;
}

.philosophy-collage__img {
    position: absolute;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.philosophy-collage__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Top Right Large Image */
.phi-img-1 {
    top: 10vh;
    right: 0;
    width: 38%;
    aspect-ratio: 4 / 5;
    z-index: 5;
}

/* Center Left Vertical Image */
.phi-img-2 {
    top: 35vh;
    left: 30%;
    width: 25%;
    aspect-ratio: 3 / 4;
    z-index: 6;
}

/* Bottom Right Box Image */
.phi-img-3 {
    bottom: 5vh;
    right: 5%;
    width: 35%;
    aspect-ratio: 16 / 9;
    z-index: 4;
}

/* Small Bokeh Image Overlaying Box */
.phi-img-4 {
    bottom: 12vh;
    right: 35%;
    width: 10%;
    aspect-ratio: 1 / 1;
    z-index: 7;
}

/* Philosophy Text Section */
.phi-text-area {
    position: relative;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.phi-text-area__bg-text {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: auto !important;
    /* Changed from 100% to auto to avoid container bias */
    font-family: var(--ff-jp-serif);
    font-size: clamp(80px, 15vw, 280px);
    color: #eee9e3;
    letter-spacing: 0.05em;
    z-index: 1 !important;
    pointer-events: none;
    white-space: nowrap !important;
    opacity: 0.4 !important;
    display: block !important;
}

.phi-text-area__content {
    position: relative;
    z-index: 10;
    padding: 5rem var(--side-padding);
    text-align: center;
}

.phi-text-area__icon {
    width: 40px;
    height: auto;
    margin: 0 auto 2rem;
    display: block;
}

.phi-text-area__catch {
    margin-bottom: 2rem;
}

.phi-text-area__sub {
    font-size: 1.2rem;
    color: #444;
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 0.5rem;
}

.phi-text-area__main {
    font-family: var(--ff-jp-serif);
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    color: #333;
    letter-spacing: 0.1em;
}

.phi-text-area__main .bracket {
    font-size: 1.2em;
    font-weight: 300;
}

.phi-text-area__desc {
    margin-top: 5vh;
    font-size: 0.95rem;
    line-height: 2.5;
    color: #666;
}

.phi-text-area__para {
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .philosophy-collage {
        height: auto;
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .philosophy-collage__img {
        position: static !important;

        max-width: 600px;
        margin: 0 auto 20px !important;
        display: block;
    }

    .philosophy-collage__logo {
        position: static;
        font-size: 3rem;
        margin-bottom: 30px;
        text-align: center;
    }

    .phi-text-area__bg-text {
        font-size: 5rem;
    }

    .phi-text-area__main {
        font-size: 1.8rem;
    }
}


/* Final Cleaned Philosophy Section Styles */
.philosophy-layout {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    margin-left: -50vw !important;
    padding: clamp(20px, 4vh, 40px) 0 10vh !important;
    /* Reduced padding to tighten spacing with Cause section */
    overflow: hidden;
}

@media (min-width: 1025px) {

    /* Precise Adjustments for Philosophy Collage Part (if visible) */
    .phi-img-1 {
        top: 10vh;
        right: 0;
        width: 38%;
        aspect-ratio: 4/5;
        z-index: 5;
    }

    .phi-img-2 {
        top: 35vh;
        left: 30%;
        width: 25%;
        aspect-ratio: 3/4;
        z-index: 6;
    }

    .phi-img-3 {
        bottom: 5vh;
        right: 5%;
        width: 35%;
        aspect-ratio: 16/9;
        z-index: 4;
    }

    .phi-img-4 {
        bottom: 12vh;
        right: 35%;
        width: 10%;
        aspect-ratio: 1/1;
        z-index: 7;
    }

    .philosophy-collage {
        position: relative;
        max-width: 1200px;
        margin: 0 auto 15vh;
        height: 100vh;
        min-height: 800px;
        width: 100vw;
    }

    .philosophy-collage__logo {
        position: absolute;
        top: 5vh;
        left: 5vw;
        font-family: var(--ff-jp-serif);
        font-size: clamp(4rem, 8vw, 12rem);
        color: #444;
        line-height: 0.9;
        z-index: 100;
    }
}



/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(254, 249, 234, 0.8); /* Muted beige from FV */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(223, 169, 169, 0.15);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

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

.header__logo {
    font-family: var(--ff-en-fancy);
    font-size: 1.75rem;
    color: var(--clr-text);
    letter-spacing: 0.15em;
    font-weight: 400;
    text-transform: uppercase;
}

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

.header__nav li {
    display: flex;
    align-items: center;
}

.header__nav a {
    font-family: var(--ff-en-fancy);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 400;
    position: relative;
    padding: 5px 0;
}

.header__nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--clr-accent);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(-50%);
}

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

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

.header__btn--hp,
.header__btn--line {
    margin-left: 1rem;
}

.header__btn--hp a {
    display: block;
    padding: 0.7rem 1.8rem;
    background: #d4a5b3; /* 關ｽ縺｡逹縺・◆繝繧ｹ繝・ぅ繝斐Φ繧ｯ */
    color: #fff !important;
    border-radius: 999px;
    font-size: 0.75rem !important;
    font-family: var(--ff-jp-sans);
    letter-spacing: 0.05em;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 179, 0.2);
}

.header__btn--hp a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 179, 0.3);
    filter: brightness(0.95);
}

.header__btn--line a {
    display: block;
    padding: 0.7rem 1.8rem;
    background: #a3b89e; /* 關ｽ縺｡逹縺・◆繧ｻ繝ｼ繧ｸ繧ｰ繝ｪ繝ｼ繝ｳ */
    color: #fff !important;
    border-radius: 999px;
    font-size: 0.75rem !important;
    font-family: var(--ff-jp-sans);
    letter-spacing: 0.05em;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(163, 184, 158, 0.2);
}

.header__btn--line a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(163, 184, 158, 0.3);
    filter: brightness(0.95);
}

/* ==========================================================================
   MOODBOARD SECTION (RIL STYLE)
   ========================================================================== */
.moodboard-section {
    background-color: #fff;
    overflow: hidden;
}

@keyframes mood-float-1 {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(20px, -30px) rotate(3deg); }
}
@keyframes mood-float-2 {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-25px, 20px) rotate(-5deg); }
}
@keyframes mood-float-3 {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(15px, 15px) rotate(8deg); }
}

.mood-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.mood-slides img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease-in-out, transform 8s linear;
    transform: scale(1.1);
}

.mood-slides img.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

@media (max-width: 768px) {
    .moodboard-section {
        padding: 80px 0 !important;
    }
    .moodboard__panel {
        width: 100% !important;
        height: 300px !important;
        margin-left: 0 !important;
    }
    .moodboard__panel--bottom {
        width: 90% !important;
        margin-left: auto !important;
    }
}

.moodboard__panel img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

@media (max-width: 768px) {
    .header {
        height: 60px;
    }
    .header__logo {
        font-size: 1.2rem;
    }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: #333;
    color: #fff;
    padding: 80px 0 40px;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--side-padding);
    text-align: center;
}

.footer__logo {
    font-family: var(--ff-jp-serif);
    font-size: 2rem;
    margin-bottom: 2.5rem;
    letter-spacing: 0.15em;
    color: #fff !important;
}

.footer__nav {
    margin-bottom: 3rem;
}

.footer__nav ul {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer__nav a {
    font-size: 0.9rem;
    opacity: 0.7;
    color: #fff !important;
}

.footer__nav a:hover {
    opacity: 1;
}

.footer__copyright {
    font-size: 0.8rem;
    opacity: 0.4;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

/* ==========================================================================
   REASONS HEADER
   ========================================================================== */
.reasons__header {
    text-align: center;
    margin-bottom: 80px;
}

/* Adjust Main spacing for fixed header */
main {
    padding-top: var(--header-height);
}

@media (max-width: 768px) {
    main {
        padding-top: 60px;
    }
    .reasons__header {
        margin-top: 80px;
        margin-bottom: 60px;
    }
}
/* Hot Pepper CTA Button */
.btn-hp {
    background-color: #AD1457 !important;
    box-shadow: 0 4px 15px rgba(173, 20, 87, 0.2) !important;
}

.btn-hp:hover {
    background-color: #880E4F !important;
    box-shadow: 0 8px 25px rgba(173, 20, 87, 0.3) !important;
}

/* ==========================================================================
   CONCERN (Elegant Design)
   ========================================================================== */
.concern-full-wrap {
    width: 100%;
    margin-bottom: 0;
    background: linear-gradient(rgba(255, 251, 251, 0.85), rgb(253 253 253 / 0%)), url('../img/concern_bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
}

.concern {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.concern__content {
    background: rgba(255, 255, 255, 0.95);
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(223, 169, 169, 0.3);
}

.concern__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.concern__list li {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: var(--clr-text);
    padding-bottom: 1rem;
    border-bottom: 1px dashed rgba(223, 169, 169, 0.4);
}

.concern__check {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: var(--clr-accent);
    mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"/></svg>') no-repeat center / contain;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"/></svg>') no-repeat center / contain;
    margin-right: 1rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .concern-full-wrap {
        padding: 60px 0;
    }
    .concern__content {
        padding: 2.5rem 1.5rem;
    }
    .concern__list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .concern__list li {
        font-size: 1rem;
        align-items: flex-start;
    }
    .concern__check {
        margin-top: 3px;
    }
    /* Menu Content Padding for SP */
    .menu-card, .menu-card__content {
        padding: 2.5rem 1.5rem !important;
    }

    /* Owner Message SP Spacing */
    .owner-section {
        padding: 30px 0 !important;
    }
    .owner-section .sp-only {
        margin-bottom: 5px !important;
    }
    .owner-section .about__en {
        margin-bottom: 0.2rem !important;
        color: #b37373 !important; /* Deeper accent for better visibility */
        opacity: 1 !important;
        font-weight: 600;
        font-size: 1.4rem !important;
    }
}

/* ==========================================================================
   FIXED UI ELEMENTS
   ========================================================================== */

/* Mobile Footer Bar */
.mobile-footer-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background: #fff;
    display: none;
    z-index: 9999;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
}
 
 @media (max-width: 768px) {
     .mobile-footer-bar {
         display: flex; /* Shown as flex on mobile */
     }
 }

/* Hide fixed elements when hamburger menu is open */
body.is-menu-open .mobile-footer-bar,
body.is-menu-open .pagetop {
    display: none !important;
}

.footer-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background-color 0.3s;
    gap: 8px;
}

.footer-btn__icon {
    font-size: 1.2rem;
}



/* Back to Top Button */
.pagetop {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--clr-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    text-align: center;
}

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

.pagetop:hover {
    transform: translateY(-5px);
    background-color: var(--clr-sub);
}

.pagetop__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

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

.pagetop__text {
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .pagetop {
        right: 15px;
        bottom: 84px; /* 64px footer bar + 20px gap */
        width: 50px;
        height: 50px;
    }
    
    .pagetop__arrow {
        width: 8px;
        height: 8px;
    }
    
    .pagetop__text {
        font-size: 0.6rem;
    }
}


.footer-btn--hp { background-color: #d4a5b3 !important; border-right: 1px solid rgba(255, 255, 255, 0.2); } .footer-btn--hp:hover { filter: brightness(0.9); } .footer-btn--line { background-color: #a3b89e !important; } .footer-btn--line:hover { filter: brightness(0.9); }

/* ==========================================================================
   PARALLAX FIX FOR IOS SAFARI (Added 2024-04-10)
   ========================================================================== */
.struggle-section,
.reservation-area,
.reasons-visual,
.menu-visual,
.reservation-personal-wrap,
.cta,
.service-intro,
.contact {
    position: relative !important;
    background-image: none !important;
    background-attachment: scroll !important;
    clip-path: inset(0);
    z-index: 1;
}

.struggle-section::after,
.reservation-area::after,
.reasons-visual::after,
.menu-visual::after,
.reservation-personal-wrap::after,
.cta::after,
.service-intro::after,
.contact::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -2;
    will-change: transform;
    pointer-events: none;
}

/* Specific background images */
.struggle-section::after { background-image: url('../img/concern_bg.jpg'); }
.reservation-area::after { background-image: url('../img/service_bg.jpg'); }
.reasons-visual::after { background-image: url('../img/service_bg001.jpg'); }
.menu-visual::after { background-image: url('../img/master_16-9.jpg'); }
.reservation-personal-wrap::after { background-image: url('../img/service_bg.jpg'); }
.cta::after { background-image: url('../img/service_bg.jpg'); }
.service-intro::after { background-image: url('../img/concern_bg.jpg'); }
.contact::after { background-image: url('../img/concern_bg01.jpeg'); }

/* Extra check for content above fixed background */
.struggle-section > *, .reservation-area > *, .reasons-visual > *,
.menu-visual > *, .reservation-personal-wrap > *, .cta > *,
.service-intro > *, .contact > * {
    position: relative;
    z-index: 1;
}

/* Specific fixes for existing pseudo-elements (overlays) */
.reasons-visual::before, .menu-visual::before, .reservation-personal-wrap::before, .cta::before {
    z-index: 0 !important;
}
