/* ==========================================================================
   Design System & Variables
   ========================================================================== */
:root {
    /* Color Palette */
    --clr-base: #FAF8F5;
    --clr-accent: #C5A059; /* Gold-toned beige */
    --clr-sub: #A38B62;    /* Sub Gold */
    --clr-dark: #1A1A1A;   /* Chic Dark */
    --clr-text: #2D2D2D;   /* Darker Text */

    /* 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: 3vw;
    --header-height: 80px;
}

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery {
    padding: var(--section-gap) 0;
    background-color: #fff;
}

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

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery__item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0, 0.2, 1);
}

.gallery__item:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* ==========================================================================
   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;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

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(197, 160, 89, 0.2);
    border: 1px solid transparent;
}

.btn-primary:hover {
    background-color: var(--clr-dark);
    color: var(--clr-accent);
    border: 1px solid var(--clr-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 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)
   ========================================================================== */
/* Redundant old .fv block deleted */
.fv__sub-en {
    display: block;
    font-family: var(--ff-en-fancy);
    font-size: 1.5rem;
    color: var(--clr-accent);
    margin-bottom: 2rem;
    letter-spacing: 0.2em;
}

/* ==========================================================================
   FIRST VIEW (FV-VISUAL) - Faithful Re-implementation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: #ffffff;
    z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s;
}

/* FV STYLES REMOVED */

/* Bold Premium Text Shimmer (Gattsuri) */
.text-shimmer {
    background: linear-gradient(110deg, #fff 0%, #fff 35%, #fff9f0 45%, #fff 55%, #fff 100%);
    background-size: 250% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: ShimmerHeavy 4s infinite linear;
    color: #fff; /* Fallback */
}

/* Adjust shimmer for darker vertical text */
.fv-new-top__sub-v.text-shimmer,
.fv-new-main__v-text-left.text-shimmer {
    background: linear-gradient(110deg, #333 0%, #333 35%, #fff 50%, #333 65%, #333 100%);
    background-size: 250% 100%;
    animation: ShimmerHeavy 4.5s infinite linear;
}

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

/* SP Responsive (Full-screen stacking) */
@media (max-width: 768px) {
    :root {
        --header-height: 60px; /* Shorter header on mobile */
    }

    .fv-visual {
        /* Extra compact height to provide teaser for next section */
        height: 60vh;
        min-height: 350px;
    }

    .fv-new-top {
        height: 10vh; /* Condensed top bar */
        min-height: 60px;
        padding-top: 5px;
    }
    
    .fv-new-top__logo {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .fv-new-top__sub-v {
        top: auto;
        bottom: 10px;
        transform: none;
        font-size: 0.75rem;
        letter-spacing: 0.2em;
    }

    .fv-new-main {
        flex-direction: column;
        gap: 0;
        padding: 0;
        background-color: transparent; /* Changed from #333 to prevent black bottom */
        line-height: 0;
        font-size: 0;
    }

    .fv-new-main__img-box {
        width: 100%;
        flex: 1;
        height: 100%; 
        margin: 0;
        padding: 0;
        position: relative;
        overflow: hidden;
    }

    .fv-new-main__v-text-left {
        left: 50%;
        bottom: 15px;
        font-size: 0.95rem;
        padding: 10px 20px;
        letter-spacing: 0.3em;
    }

    .fv-new-bottom {
        height: 6vh; /* Even slimmer bottom bar */
        min-height: 50px;
    }

    .fv-new-bottom__text {
        flex-direction: column;
        gap: 0.2rem;
        line-height: 1.1;
        text-align: center;
        width: 100%;
        font-size: 1.1rem;
    }
}

/* ==========================================================================
   ABOUT & STRUGGLES
   ========================================================================== */
.about {
    padding: 0 0 0 0;
    background-color: #ffffff;
}

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

.about__en {
    display: block;
    font-family: var(--ff-en-fancy);
    font-size: clamp(2.5rem, 10vw, 4.5rem);
    color: var(--clr-accent);
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
    line-height: 1;
    text-transform: uppercase;
}

.about__title {
    font-family: var(--ff-jp-serif);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 4rem;
    position: relative;
    color: var(--clr-accent);
    letter-spacing: 0.2em;
}

.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: 1100px;
    margin: 0 auto;
    padding: 0 var(--side-padding);
}

.about__en {
    display: block;
    font-family: var(--ff-en-fancy);
    font-size: clamp(2.5rem, 10vw, 4.5rem);
    color: var(--clr-accent);
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
    line-height: 1;
    text-transform: uppercase;
}

.about__title {
    font-family: var(--ff-jp-serif);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 4rem;
    position: relative;
    color: var(--clr-accent);
    letter-spacing: 0.2em;
}

.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 (Full Bleed with Fixed Background Image) */
.cause-full-wrap {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    margin-left: -50vw !important;
    padding: 100px 0 !important;
    overflow: hidden;
    margin-bottom: 0 !important;
    /* Removed margin to connect with next section */

    background: url('../img/concern_bg01.jpeg') no-repeat center center fixed;
    background-size: cover;
}

.cause-full-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(77 48 2 / 8%);
    z-index: 1;
}

.cause__container {
    max-width: 1100px;
    /* Refined container width */
    margin: 0 auto;
    padding: 0 5vw;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.cause__img-box {
    flex: 1;
    max-width: 420px;
    /* Slightly refined size */
    position: relative;
    z-index: 2;
}

.cause__img-box img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    /* Smoother corner for premium look */
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease;
}

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

.cause__content {
    flex: 1.2;
    color: #3a3a3a;
    position: relative;
    z-index: 2;
    padding-right: 20px;
}

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

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

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

    .cause__container {
        flex-direction: column;
        gap: 2.5rem;
    }

    .cause__img-box {
        width: 100%;
        max-width: 100%;
    }

    .cause__highlight {
        font-size: 1.3rem;
    }
}

/* 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: 1100px;
    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 {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
    border: 1px solid rgba(223, 169, 169, 0.1);
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.personal__title {
    font-family: var(--ff-jp-serif);
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.personal__box .about__text {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.personal__cta {
    margin-top: auto;
}

.personal__cta .btn-primary {
    padding: 1rem 2rem;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .personal__box {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 0;
    }
    
    .personal__img-side {
        width: 100%;
        min-height: 250px !important;
    }
    
    .personal__text-side {
        padding: 30px 20px !important;
        text-align: center !important;
    }

    .personal__title {
        font-size: 1.4rem;
    }
}

/* ==========================================================================
   Reservation Block (inside philosophy area)
   ========================================================================== */
.reservation-personal-wrap {
    position: relative;
    padding: 30px 2rem 80px;
    background: linear-gradient(135deg, #FAF8F5 0%, #E8E2D9 100%);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-bottom: 0;
}

.reservation-personal-wrap::before {
    content: none;
}

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

.phi-reservation {
    text-align: center;
}

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

.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: #fff;
    font-weight: 500;
    outline: 1px solid #fff;
    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: 9;
    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: -1;
    transition: all 0.3s ease;
}

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

/* Button color settings */
.button-21.btn--hp a::before {
    background: var(--clr-accent);
}
.button-21.btn--line a::before {
    background: #06C755;
}
.button-21.btn--tel a::before {
    background: #D8CFC4; /* Tel */
}

@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: 3rem 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
   ========================================================================== */
.reasons {
    padding: 0;
    /* Remove gap - image full bleed */
}

.reasons__container {
    max-width: 100%;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
}

.reasons__visual {
    width: 42vw;
    position: relative;
    box-shadow: none;
    border-radius: 0;
    overflow: hidden;
    filter: sepia(0.1) brightness(0.95);
    flex-shrink: 0;
}

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

.reasons__content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 120px;
    padding: 60px 80px 60px 100px;
}

.reasons__item {
    display: flex;
    align-items: flex-start;
}

.reasons__text-group {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    flex: 1;
}

/* Number Decoration (Required) */
.number-deco {
    position: relative;
    font-family: var(--ff-jp-serif);
    font-size: 64px;
    color: var(--clr-accent);
    font-weight: 400;
    line-height: 1.5;
    display: block;
    box-sizing: border-box;
    text-align: center;
    width: fit-content;
    flex-shrink: 0;
}

.number-deco::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -24px;
    width: 40px;
    height: 80px;
    border-left: 1px solid var(--clr-accent);
    transform: rotate(45deg);
    background-color: var(--clr-base);
}

.reasons__title {
    font-family: var(--ff-jp-serif);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--clr-accent);
}

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

    .reasons__content-wrapper {
        gap: 80px;
        padding: 40px 0;
    }

    .reasons__text-group {
        gap: 40px;
    }
}

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

    .reasons__visual {
        width: 100%;
        height: 60vh;
        min-height: 400px;
    }

    .reasons__content-wrapper {
        width: 100%;
        gap: 100px;
        padding: 0 var(--side-padding);
        /* Added side padding for mobile */
    }

    .reasons__item {
        flex-direction: column;
    }

    .reasons__text-group {
        flex-direction: column;
        gap: 30px;
    }

    .reasons__title {
        font-size: 1.4rem;
    }
}

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

.trust__text-block .about__text {
    text-align: center !important;
}

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

@media (max-width: 768px) {
    .trust__bubblesContainer {
        flex-direction: column;
        align-items: center;
        gap: 2.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: linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)), url('../img/service_bg.jpg') no-repeat center center fixed;
    background-size: cover;
    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-accent);
    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-accent);
    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-accent);
    font-weight: 500;
}

.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-accent);
    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;
}

.header__sp-nav ul li a {
    display: block;
    font-size: 1.5rem;
    font-family: var(--ff-jp-serif);
    color: #fff;
    padding: 1.5rem 0;
}

.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: url('../img/concern_bg.jpg') no-repeat center center fixed;
    background-size: cover;
}

.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: 40vh;
    min-height: 250px;
    overflow: hidden;
    margin-bottom: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: inset(0 0 0 0);
}

.menu-visual::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/master_16-9.jpeg') no-repeat center center;
    background-size: cover;
    z-index: -1;
    pointer-events: none;
}

.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;
    width: 100%;
}

.menu-visual__overlay .about__en {
    font-size: clamp(2.5rem, 10vw, 4.5rem);
    margin-bottom: 1rem;
}

.menu-visual__overlay .about__title {
    margin-bottom: 0;
}

.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: 0;
    }
}

.menu {
    padding: 0 0 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #fcfaf7 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 0%,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 60%,
        transparent 100%
    );
    transform: translateX(-100%);
    pointer-events: none;
    z-index: 1;
}

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

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

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

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

.menu__recommend-section {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.menu__recommend-image {
    flex: 0 0 45%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.menu__recommend-content {
    flex: 1;
}

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

@media (max-width: 768px) {
    .menu__recommend-section {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 60px;
    }
    .menu__recommend-image {
        flex: none;
        width: 100%;
    }
}

.menu__recommend-label {
    display: inline-block;
    background: var(--clr-accent);
    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-accent);
    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-accent);
}


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

.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);
}

.menu__group {
    margin-top: 60px;
}

.menu__group-title {
    font-family: var(--ff-en-fancy);
    font-size: clamp(1.5rem, 5vw, 2rem);
    color: var(--clr-accent);
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--clr-accent);
    padding-bottom: 0.5rem;
    text-transform: uppercase;
}

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

.menu__grid-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px dotted var(--clr-accent);
    padding-bottom: 0.8rem;
    font-size: 1rem; /* 16px */
    color: var(--clr-text);
}

.menu__name {
    font-weight: 500;
}

.menu__price-small {
    font-family: var(--ff-jp-serif);
    font-weight: 500;
    color: var(--clr-accent);
}

.menu__note {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--clr-text);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .menu__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .menu__list {
        gap: 60px;
    }

    .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: 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-accent);
}

.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-accent);
    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 {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    opacity: 0;
}

.faq__item.is-active .faq__answer {
    max-height: 1000px;
    opacity: 1;
    padding-bottom: 30px;
}

.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-accent);
    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: url('../img/concern_bg01.jpeg') no-repeat center center fixed;
    background-size: cover;
    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.05rem;
    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-accent);
    font-weight: 500;
}

.contact__value {
    flex: 1;
}

.contact__access {
    margin-bottom: 3rem;
}

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

.contact__access-detail {
    font-size: 0.95rem;
    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;
}

@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;
    }
}

/* Legacy redundancy removed */
.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; /* Top */
    line-height: 0.8;
    pointer-events: none;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 1 !important; /* Force visible */
    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; /* Force visible */
    animation: auroraWave 15s ease infinite alternate;
}

/* Bottom Area (Gradient & Text) */
.fv-visual__bottom-bar {
    position: relative;
    width: 100%;
    flex: 0 0 auto;
    height: calc(100vw * (612 / 1366) * 0.125);
    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;
    height: calc(100vw * 612 / 1366);
    flex: 0 0 auto;
    display: flex;
    overflow: hidden;
    position: relative;
    z-index: 10;
    background-color: #f0f0f0;
}

.fv-visual__img-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Default hidden for stability */
.fv-visual__img-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2.5s ease-in-out;
}

/* Force show active images */
.fv-visual__img-container img:first-child,
.fv-visual__img-container 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;
    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__top-bar {
        height: 12vh;
        min-height: 80px;
    }

    .fv-visual__bg {
        height: 65vh;
        width: 100%;
        display: block;
    }

    .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: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    z-index: 1000;
}

.header__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #1a1a1a;
    position: absolute;
    left: 0;
    transition: all 0.3s;
}

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

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

.header__sp-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #4d4d4d;
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    padding: 80px 0;
}

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

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

.header__sp-nav li {
    margin-bottom: 0.3rem;
}

.header__sp-nav a {
    font-family: var(--ff-en-fancy);
    font-size: 1.25rem;
    color: #fff;
    letter-spacing: 0.15em;
    text-transform: capitalize;
}

.sp-nav__btn--hp a, .sp-nav__btn--line a {
    padding: 0.6rem 1rem;
    border-radius: 2px;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 500;
    width: 130px;
    font-family: 'Noto Sans JP', sans-serif; /* Clean font for buttons */
    letter-spacing: 0.05em;
    transition: opacity 0.3s;
}

.sp-nav__btn--hp a { background-color: var(--clr-accent); }
.sp-nav__btn--line a { background-color: #06C755; }

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

/* Enhanced Glitter / Sparkle / Stardust Effect */
.fv-glitter {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    z-index: 1002 !important;
    filter: blur(0.5px);
}

@keyframes sparkle-drift {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
        transform: translate(5px, -10px) scale(1.2);
    }
    50% {
        opacity: 1;
        transform: translate(15px, -30px) scale(1) rotate(45deg);
        box-shadow: 0 0 15px 3px rgba(255, 255, 255, 0.8);
    }
    90% {
        opacity: 0.4;
        transform: translate(25px, -50px) scale(0.8);
    }
    100% {
        transform: translate(30px, -60px) scale(0);
        opacity: 0;
    }
}

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

/* Bold Premium Text Shimmer (Gattsuri Sweep Effect) */
.text-shimmer {
    position: relative;
    color: #666; /* Base color fallback */
    background: linear-gradient(
        110deg, 
        #666 35%, 
        #fff 45%, 
        #fff 55%, 
        #666 65%
    );
    background-size: 250% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: ShimmerGattsuri 3.5s infinite linear;
    /* Prevent layout shifts by ensuring it doesn't force inline-block if not needed */
}

/* For the main title which is darker/larger */
.fv-visual__title.text-shimmer {
    background: linear-gradient(
        110deg, 
        #333 35%, 
        #fff 45%, 
        #fff 55%, 
        #333 65%
    );
    background-size: 250% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 1px rgba(255,255,255,0.05);
}

@keyframes ShimmerGattsuri {
    0% { background-position: 200% 0; }
    100% { background-position: -150% 0; }
}

/* Add a secondary subtle glow that follows the shimmer */
.text-shimmer::before {
    content: '';
    position: absolute;
    inset: -5px; /* Slight overflow for the glow */
    z-index: -1;
    background: inherit;
    background-clip: border-box; /* IMPORTANT: Fix clip so it's not text-only */
    -webkit-background-clip: border-box;
    filter: blur(12px);
    opacity: 0;
    animation: GlowPulse 3.5s infinite linear;
    pointer-events: none;
}

@keyframes GlowPulse {
    0%, 35%, 65%, 100% { opacity: 0; }
    45%, 55% { opacity: 0.25; }
}

/* Final Gradient Color Refresh (#E4E7E2, #F2EAD0, #F4DDE3) */
/* Separate top and bottom bar for better image visibility */
.fv-visual__top-bar {
    height: 15vh;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent) !important;
    z-index: 5;
}

.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 {
    position: relative;
    padding: 0 var(--side-padding) 0;
    background-color: #ffffff;
    overflow: hidden;
}

.philosophy-layout__bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    z-index: 0; /* Place in front of parent background */
    pointer-events: none;
}

@media (max-width: 768px) {
    .philosophy-layout__bg-img {
        object-position: 40% center; /* Shift focus 10% left */
        opacity: 0.7; /* Increased for better visibility on small screens */
    }
}

/* 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;
    text-align: center;
}

.phi-text-area__content {
    position: relative;
    z-index: 10;
    padding: 5rem 0;
}

.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;
    text-align: center !important;
}

.phi-text-area__para {
    margin-bottom: 2rem;
    text-align: center !important;
}

@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;
    }

    .phi-text-area {
        text-align: center;
    }
}


/* 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 5vh !important;
    /* Reduced padding to tighten spacing with next 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__container {
    width: 100%;
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    padding: 0 var(--side-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    font-family: var(--ff-en-fancy);
    font-size: 1.8rem;
    color: #1a1a1a;
    letter-spacing: 0.1em;
}

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

.header__nav ul li a {
    color: #4d4d4d;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

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

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

/* ==========================================================================
   ANIMATIONS (Floating & Particles)
   ========================================================================== */
@keyframes fv-float-up {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    20% { opacity: 0.6; }
    80% { opacity: 0.6; }
    100% { transform: translateY(-150px) scale(1.2); opacity: 0; }
}

@keyframes fv-glitter-fade {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1.2); }
}

.fv-bubble {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    animation: fv-float-up linear infinite;
    filter: blur(8px);
}

.fv-glitter {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    box-shadow: 0 0 10px rgba(255,255,255,0.8);
}

.fv-glitter--anim {
    animation: fv-glitter-fade ease-in-out infinite;
}

.header__btn--hp a {
    display: block;
    padding: 0.6rem 1.4rem;
    background-color: var(--clr-accent);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.2);
    color: #fff !important;
    border-radius: 999px;
    font-size: 0.8rem !important;
    transition: 0.3s;
}

.header__btn--hp a:hover {
    background-color: var(--clr-dark);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.header__btn--line a {
    display: block;
    padding: 0.6rem 1.4rem;
    background-color: #06C755;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #fff !important;
    border-radius: 999px;
    font-size: 0.8rem !important;
    transition: 0.3s;
}

.header__btn--line a:hover {
    background-color: #05a044;
    transform: translateY(-2px);
}

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

@media (max-width: 768px) {
    /* Header height adjustment */
    .header__logo {
        font-size: 1.2rem;
    }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: #4d4d4d;
    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;
    margin-top: 100px;
}

@media (max-width: 768px) {
    main {
        padding-top: 0;
    }
    .reasons__header {
        margin-top: 100px;
        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;
}

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

/* Mobile Footer Bar */
.mobile-footer-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background: #fff;
    display: none; /* Hidden by default (PC) */
    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 */
    }
}

.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;
}

.footer-btn--hp {
    background-color: var(--clr-accent);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-btn--hp:hover {
    background-color: var(--clr-sub);
}

.footer-btn--line {
    background-color: #06C755;
}

.footer-btn--line:hover {
    background-color: #05a044;
}

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

/* --- Horizontal Personal Box (Matches 2nd Page) --- */
.personal__box {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
    border: 1px solid rgba(223, 169, 169, 0.1);
    width: 100%;
    max-width: none;
    margin: 0 auto;
}

.personal__img-side {
    flex: 1;
    min-height: 350px;
    min-width: 300px;
}

.personal__img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.personal__text-side {
    flex: 1.2;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding: 3rem;
}

.personal__title {
    font-family: var(--ff-jp-serif);
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    white-space: normal;
}

@media (max-width: 768px) {
    .personal__text-side {
        padding: 40px 15px !important;
    }
    .personal__title {
        font-size: 1.5rem;
    }
}

/* --- New FAQ System --- */
.new-faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--side-padding);
}

.new-faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.new-faq-item {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.new-faq-item:hover {
    border-color: var(--clr-accent);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.new-faq-trigger {
    width: 100%;
    padding: 25px;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
}

.new-faq-q {
    font-family: var(--ff-en-fancy);
    font-size: 1.8rem;
    color: var(--clr-accent);
    line-height: 1;
}

.new-faq-btn-text {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
    flex: 1;
    line-height: 1.5;
}

.new-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: #fafafa;
}

.new-faq-inner {
    padding: 0 25px 30px 65px;
    display: flex;
    gap: 20px;
}

.new-faq-a {
    font-family: var(--ff-en-fancy);
    font-size: 1.8rem;
    color: #bbb;
    line-height: 1;
}

.new-faq-answer-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

.new-faq-item.is-open .new-faq-content {
    max-height: 500px;
}

.new-faq-item.is-open {
    border-color: var(--clr-accent);
}

.new-faq-icon {
    position: relative;
    width: 14px;
    height: 14px;
    margin-left: auto;
    transition: transform 0.3s ease;
}

.new-faq-icon::before,
.new-faq-icon::after {
    content: '';
    position: absolute;
    background: var(--clr-accent);
    border-radius: 2px;
}

.new-faq-icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.new-faq-icon::after {
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.new-faq-item.is-open .new-faq-icon {
    transform: rotate(135deg);
}


/* ==========================================================================
   FV OPTION 2 (ONZS Shibuya Style)
   ========================================================================== */
/* FV Section - 2 Column Layout */
.fv-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)), url('../img/service_bg.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 0 0;
}

.fv-container {
    width: 100%;
    max-width: 1600px; /* Expanded max-width for more horizontal presence */
    margin: 0 auto;
    padding: 0 60px; /* Slightly reduced to use more of the screen */
    display: grid;
    grid-template-columns: 0.45fr 0.55fr; /* More balanced ratio */
    gap: 40px; /* Reduced gap to allow more room for elements */
    align-items: center;
}

/* Left Column - Spacious with breathing room */
.fv-left {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 600px;
}

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

.fv-deco {
    position: absolute;
    opacity: 0;
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.fv-deco.show {
    opacity: 0.45;
}

/* Decoration positioning based on reference image */
.fv-deco-01 {
    top: 8%;
    right: 15%;
    width: clamp(150px, 28%, 220px);
}

.fv-deco-02 {
    bottom: 0%;
    left: -15%;
    width: clamp(200px, 50%, 320px);
}

.fv-deco-03 {
    bottom: 12%;
    left: 45%;
    transform: translateX(-50%);
    width: clamp(180px, 42%, 300px);
}

.fv-deco-04 {
    top: 28%;
    right: 10%;
    width: clamp(120px, 22%, 180px);
}

.fv-deco-05 {
    top: 32%;
    right: -8%;
    width: clamp(160px, 32%, 240px);
}

.fv-left-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%; /* Removed hard constraint to allow wide spacing */
    text-align: left;
}

.fv-catch,
.fv-sub,
.fv-logo,
.fv-read-more {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fv-catch.is-active,
.fv-sub.is-active,
.fv-logo.is-active {
    opacity: 1;
    --opacity: 1;
    --translate-y: 0;
}

.char {
    display: inline-block;
    opacity: var(--opacity, 0);
    transform: translateY(var(--translate-y, 15px));
    transition: opacity 0.6s cubic-bezier(0.77, 0, 0.175, 1),
        transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    transition-delay: calc(0.04s * var(--char-index));
    white-space: pre;
}

.fv-catch {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    line-height: 1.75;
    color: #333;
    letter-spacing: 0.08em;
    margin-bottom: 1.2rem;
}

.fv-catch-line {
    display: block;
}

.fv-sub {
    font-size: clamp(0.85rem, 1.3vw, 1rem);
    letter-spacing: 0.18em;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.fv-logo {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    font-weight: 500;
    color: #333;
    letter-spacing: 0.45em; /* Extreme spacing for wide, airy presence */
    margin-bottom: 2.8rem;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
}

.fv-logo .char {
    transition-delay: calc(0.06s * var(--char-index));
}

.fv-read-more {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.fv-read-more.is-visible {
    opacity: 1;
}

.fv-read-more-line {
    width: 1px;
    height: 0;
    background-color: #333;
}

.fv-read-more-line.animate {
    animation: lineGrow 1.2s ease-out forwards;
}

@keyframes lineGrow {
    from { height: 0; }
    to { height: 70px; }
}

.fv-read-more-text {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: #666;
    text-transform: lowercase;
}

/* Right Column - Image Grid */
.fv-right {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
}

/* New Vertical Stack Layout */
.fv-image-stack {
    display: flex;
    flex-direction: column;
    gap: 40px; /* Increased gap for more breathing room with taller images */
    width: 100%;
    height: 900px; /* Increased height to accommodate taller 4:3 images */
    align-self: center;
}

.fv-stack-item {
    position: relative;
    width: 60%; /* Narrower for more sophisticated white space */
    aspect-ratio: 4 / 3; /* Even taller for a refined, catalog-like aesthetic */
    overflow: hidden;
    background-color: #f0f0f0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fv-stack-top {
    align-self: flex-end; /* Align right */
}

.fv-stack-bottom {
    align-self: flex-start; /* Align left */
}

.fv-stack-item.show {
    opacity: 1;
    transform: translateY(0);
}

.fv-stack-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.fv-stack-item img.active {
    opacity: 1;
}

.fv-grid-1 { grid-column: 2 / 3; grid-row: 1 / 2; }
.fv-grid-2 { grid-column: 3 / 4; grid-row: 1 / 3; }
.fv-grid-3 { grid-column: 1 / 3; grid-row: 2 / 3; }
.fv-grid-4 { grid-column: 1 / 2; grid-row: 3 / 4; }
.fv-grid-5 { grid-column: 2 / 3; grid-row: 3 / 4; }
.fv-grid-6 { grid-column: 3 / 4; grid-row: 3 / 4; }

@media (min-width: 1025px) {
    .fv-right {
        width: 120%; /* Slightly reduced overflow to balance the new wide text side */
        max-width: 120%;
        margin-left: -5%;
    }
}

@media (max-width: 1024px) {
    .fv-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 30px;
    }
    .fv-left {
        min-height: auto;
        justify-content: center;
        padding-left: 0;
    }
    .fv-left-content {
        max-width: 100%;
        text-align: center;
    }
    .fv-decorations { display: block; opacity: 0.6; }
    .fv-deco-01 { width: 100px; top: 5%; right: 5%; }
    .fv-deco-02 { width: 150px; bottom: -5%; left: -10%; }
    .fv-deco-03 { width: 140px; bottom: 10%; left: 50%; }
    .fv-deco-04 { width: 80px; top: 20%; right: 0%; }
    .fv-deco-05 { width: 120px; top: 25%; right: -5%; }
    .fv-catch { font-size: clamp(1.3rem, 4vw, 1.8rem); margin-bottom: 1rem; }
    .fv-sub { margin-bottom: 2rem; }
    .fv-logo { font-size: clamp(2.5rem, 10vw, 4rem); margin-bottom: 2rem; }
    .fv-read-more { align-items: center; margin: 0 auto; }
    .fv-right { min-height: 500px; }
    .fv-image-stack { min-height: 500px; height: auto; gap: 20px; }
    .fv-stack-item { width: 75%; }
}

@media (max-width: 768px) {
    .fv-section { padding: 80px 0 0; }
    .fv-container { padding: 0 20px; gap: 30px; }
    .fv-left { padding: 0; }
    .fv-catch { font-size: 1.2rem; line-height: 1.6; }
    .fv-sub { font-size: 0.85rem; }
    .fv-logo { font-size: 2.5rem; }
    @keyframes lineGrowMobile {
        from { height: 0; }
        to { height: 50px; }
    }
    .fv-read-more-line.animate { animation: lineGrowMobile 1.2s ease-out forwards; }
    .fv-read-more-text { font-size: 0.8rem; }
    .fv-right { min-height: 400px; }
    .fv-image-stack { min-height: 400px; gap: 15px; height: auto; }
    .fv-stack-item { width: 85%; }
}

@media (max-width: 480px) {
    .fv-catch { font-size: 1.1rem; }
    .fv-logo { font-size: 2rem; margin-bottom: 1.5rem; }
    .fv-right { min-height: 350px; }
    .fv-image-stack { min-height: 350px; gap: 6px; }
}

.fv-sub-line {
    display: inline;
}

@media (max-width: 768px) {
    .fv-sub-line {
        display: block;
    }
}


/* ==========================================================================
   Back to Top & Mobile CTA (Override version)
   ========================================================================== */

/* Pagetop Button */
.pagetop {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--clr-sub);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

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

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

/* Mobile CTA */
.sp-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    display: flex;
    z-index: 2000;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
}

/* Scroll Hide State */
.sp-cta.is-hidden {
    transform: translateY(100%);
}

.sp-cta__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: 0.3s;
}

.sp-cta__btn:active {
    opacity: 0.7;
}

.sp-cta__btn--hp {
    background-color: var(--clr-accent);
    color: #fff;
}

.sp-cta__btn--line {
    background-color: var(--clr-dark);
    color: #fff;
}

/* Adjustments for Mobile CTA */
@media (max-width: 768px) {
    .footer {
        padding-bottom: 100px !important; /* Space for CTA + margin for copyright */
    }

    .pagetop {
        right: 20px;
        bottom: 80px; /* Above CTA */
        width: 50px;
        height: 50px;
    }
}

.sp-only {
    display: none !important;
}

@media (max-width: 768px) {
    .sp-only {
        display: flex !important;
    }
    /* Hide CTA and pagetop when menu is open */
    body.no-scroll .sp-cta,
    body.is-menu-open .pagetop {
        display: none !important;
    }
}

/* MENU FOOTER INFO */
.menu__footer-info {
    margin-top: 100px;
    padding-top: 60px;
    border-top: 1px solid #eee;
}

.menu__info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.menu__info-item h4 {
    font-size: 1.1rem;
    font-family: var(--ff-jp-serif);
    color: var(--clr-accent);
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    text-align: left;
}

.menu__info-content {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #444;
}

.menu__info-content ul {
    list-style: none;
    padding: 0;
}

.menu__info-content li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 1.2em;
}

.menu__info-content li::before {
    content: "・";
    position: absolute;
    left: 0;
}

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

/* MENU TICKER */
.menu__ticker {
    margin-top: 100px;
    overflow: hidden;
    white-space: nowrap;
    padding: 40px 0;
    background-color: transparent;
    user-select: none;
}

.ticker__track {
    display: inline-block;
    animation: ticker-animation 30s linear infinite;
}

.ticker__track span {
    font-family: var(--ff-en-fancy);
    font-size: clamp(4rem, 15vw, 10rem);
    color: rgba(197, 160, 89, 0.08);
    margin-right: 80px;
    text-transform: uppercase;
    font-weight: 400;
}

@keyframes ticker-animation {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Adjust footer info margin */
.menu__footer-info {
    margin-top: 60px !important;
}

/* GALLERY LIGHTBOX */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox.is-active {
    display: flex;
}

.lightbox__content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox__content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 4px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.lightbox__close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

/* SP MENU ADJUSTMENTS */
@media (max-width: 768px) {
    .menu__grid {
        gap: 1.5rem;
    }
    .menu__grid-item {
        font-size: 0.9rem; /* Smaller text on mobile */
    }
    .menu__name {
        flex: 1;
    }
    .menu__price-small {
        white-space: nowrap;
    }
}

/* ==========================================================================
   NEW FV SECTION (Asymmetrical Layout)
   ========================================================================== */
.fv-new {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: #f4f6f7;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: var(--header-height);
}

.fv-new__container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Images */
.fv-new__image-left,
.fv-new__image-right {
    position: absolute;
    z-index: 1;
    overflow: hidden;
}

.fv-new__slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.fv-new__slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.fv-new__slide img.active {
    opacity: 1;
}

.fv-new__image-left {
    width: 32%;
    aspect-ratio: 3 / 4;
    left: 8%;
    top: 5%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.fv-new__image-right {
    width: 20%;
    aspect-ratio: 3 / 4;
    right: 12%;
    bottom: 15%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Text Area */
.fv-new__text-area {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}

.fv-new__brand {
    font-family: var(--ff-en-fancy);
    font-size: clamp(5rem, 14vw, 12rem);
    color: #111;
    line-height: 1;
    letter-spacing: 0.1em;
    margin-left: 0.1em;
    font-weight: 300;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 0 4px 15px rgba(0, 0, 0, 0.15);
}

.fv-new__catch {
    font-family: var(--ff-jp-serif);
    font-size: clamp(1rem, 2vw, 1.2rem);
    letter-spacing: 0.3em;
    color: #111;
    margin-top: 0.2rem; /* 間隔を縮小 */
    font-weight: 500;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 0 2px 10px rgba(0, 0, 0, 0.15);
}

.fv-new__sub {
    font-family: var(--ff-en-fancy);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    color: #111; /* Color matched to brand */
    margin-top: 0.1rem; /* 間隔を縮小 */
    font-weight: 500; /* Weight increased */
}

/* Scroll */
.fv-new__scroll {
    position: absolute;
    bottom: 30px;
    right: 30px;
    writing-mode: vertical-rl;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
}

.fv-new__scroll-text {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: #333;
    font-family: var(--ff-en-fancy);
}

.fv-new__scroll::after {
    content: '';
    width: 1px;
    height: 60px;
    background-color: #333;
    animation: scrollDown 2s infinite cubic-bezier(0.65, 0, 0.35, 1);
}

@keyframes scrollDown {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* SP Layout */
@media (max-width: 768px) {
    .fv-new {
        min-height: 100vh;
        min-height: 100svh;
        padding-top: var(--header-height);
    }
    
    .fv-new__container {
        flex-direction: column;
        justify-content: center;
        height: auto;
        min-height: calc(100svh - var(--header-height));
        padding: 40px 0;
        gap: 0;
    }

    .fv-new__image-left,
    .fv-new__image-right {
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
    }

    .fv-new__image-left {
        width: 65%;
        aspect-ratio: 4 / 5;
        align-self: flex-start;
        margin-left: 5%;
        margin-top: 10%; /* 位置を下方向に調整 */
        position: relative;
        z-index: 1;
    }

    .fv-new__image-right {
        width: 40%;
        aspect-ratio: 4 / 5;
        position: absolute;
        top: 0%; /* 最上部に配置 */
        right: 8%;
        z-index: 2;
    }

    .fv-new__text-area {
        position: relative;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 60px; /* 画像群との距離 */
        z-index: 5;
        box-sizing: border-box;
    }

    .fv-new__brand {
        font-size: 70px;
        letter-spacing: 0.02em;
        margin-left: 0.02em;
    }

    /* Disable animations for SP FV */
    .fv-new .js-fade {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .fv-new__scroll {
        display: none;
    }
}
