﻿/* ==========================================================================
   Design System & Variables
   ========================================================================== */
:root {
    /* Color Palette */
    --clr-base: #ffffff;
    --clr-accent: #D8CFC4;
    --clr-sub: #C5B8A5;
    --clr-text: #6B6B6B;

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

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

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

ul {
    list-style: none;
}

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

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

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

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

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

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

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

/* ==========================================================================
   FIRST VIEW (FV)
   ========================================================================== */
/* Redundant old .fv block deleted */
.fv__sub-en {
    display: block;
    font-family: var(--ff-en-fancy);
    font-size: 1.5rem;
    color: var(--clr-sub);
    margin-bottom: 2rem;
    letter-spacing: 0.2em;
}

/* ==========================================================================
   FIRST VIEW (FV-VISUAL) - Faithful Re-implementation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* 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; /* FV縺�E�荳九�E髫咎俣繧偵↑縺上�E縺溘ａE���E�謨�E� */
}

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

.about__en {
    display: flex;
    align-items: center;
    justify-content: center; /* Center align by default */
    gap: 15px;
    font-family: var(--ff-en-fancy);
    font-size: 1.1rem;
    color: #0068b7;
    letter-spacing: 0.25em;
    margin-bottom: 1rem;
}

.about__en::before,
.about__en::after {
    content: "";
    height: 1px;
    width: 60px;
    background-color: #0068b7;
}

.about__en--left {
    justify-content: flex-start;
}

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

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

/* Struggles Section */
/* /* Struggles Section (Full Bleed with Bubbles - Inspired by Safety) */
.struggle-full-wrap {
    width: 100%;
    margin-bottom: 0;
    background: linear-gradient(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__title {
    font-family: var(--ff-jp-serif);
    font-size: 2.25rem;
    font-weight: 400;
    margin-bottom: 4rem;
    position: relative;
}

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

/* Struggles Section (New Design) */
.struggle-new-wrap {
    width: 100%;
    margin-bottom: 0;
    background-color: #fff;
}

.struggle-top-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-image: url('../img/about_bg_001.jpg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.struggle-new {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px var(--side-padding) 0; /* ここにpaddingを移勁E*/
}

.struggle-new__inner {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
}

.struggle-new__left {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 55%;
    position: relative;
    z-index: 2;
    padding-bottom: 40px; /* Space before solution section */
    margin-left: auto; /* Push content to the right to leave space for image on the left */
}

.struggle-new__header {
    text-align: left;
    margin-bottom: 3rem;
}

.struggle-new__en {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--ff-en-fancy);
    font-size: 1.1rem;
    color: #073973;
    letter-spacing: 0.25em;
    margin-bottom: 1rem;
}

.struggle-new__en::before,
.struggle-new__en::after {
    content: "";
    height: 1px;
    width: 60px;
    background-color: #073973;
}

.struggle-new__title {
    font-family: var(--ff-jp-serif);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    color: #073973;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
    line-height: 1.4;
}

.struggle-new__line {
    display: none;
}

.struggle-new__lead-wrap {
    margin-bottom: 40px;
}

.struggle-new__lead-item {
    font-size: 1.05rem;
    line-height: 2;
    color: #444;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px dotted rgba(7, 57, 115, 0.4);
}

.struggle-new__lead-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.struggle-new__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.struggle-new__item {
    border: 1px solid #eaeaea;
    background: #fdfeff;
    padding: 20px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.struggle-new__item-num {
    font-family: var(--ff-jp-sans);
    font-size: 1.05rem;
    font-weight: 600;
    color: #073973;
    margin-bottom: 5px;
}

.struggle-new__item-line {
    width: 20px;
    height: 1px;
    background-color: #073973;
    margin-bottom: 15px;
}

.struggle-new__item-icon {
    width: 80px;
    height: auto;
    margin-bottom: 15px;
    mix-blend-mode: multiply; /* 白背景を透過 */
}

.struggle-new__item-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #333;
}

.struggle-new__right {
    position: absolute;
    top: 0;
    left: 0; /* Align to the left edge of the screen */
    right: auto;
    width: 45vw; /* Viewport width makes it bleed to left edge */
    height: 100%;
    display: flex;
    align-items: flex-end;
    z-index: 1;
}

.struggle-new__right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom left; /* Pin image to bottom left */
    -webkit-mask-image: linear-gradient(to left, transparent 0%, black 25%);
    mask-image: linear-gradient(to left, transparent 0%, black 25%);
}

/* Concern Solution Block */
.concern-solution {
  position: relative;
  padding: 240px 20px 80px; /* Increased padding-top to add space above content */
  margin-top: -100px; /* Slide under the trouble section curve */
  background-color: #ebf3fa;
  overflow: hidden;
  z-index: 1; /* Lower z-index so trouble overlays it */
}

/* White curved band separating TROUBLE and SOLUTION */
.concern-solution::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 140px; /* Taller than 100px overlap to show a 40px white curved band */
  background-color: #ffffff;
  z-index: 1;
  clip-path: ellipse(150% 100% at 50% 0%);
}

.concern-solution__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}

.concern-solution__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 55%;
  position: relative;
  z-index: 2;
  text-align: left;
}

.concern-solution__header {
  text-align: left;
  margin-bottom: 2.5rem;
}

.concern-solution__en {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: var(--ff-en-fancy);
  font-size: 1.1rem;
  color: #0068b7;
  letter-spacing: 0.25em;
  margin-bottom: 1rem;
}

.concern-solution__en::before,
.concern-solution__en::after {
  content: "";
  height: 1px;
  width: 60px;
  background-color: #0068b7;
}

.concern-solution__title {
  font-family: var(--ff-jp-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: #073973;
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

.concern-solution__text-main {
  font-family: var(--ff-jp-serif);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.8;
  color: #073973;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.concern-solution__text-main span {
  color: #0068b7;
}

.concern-solution__text-sub {
  font-family: var(--ff-jp-sans);
  font-size: 0.98rem;
  line-height: 1.9;
  color: #444;
  margin-bottom: 1.5rem;
}

.concern-solution__text-sub:last-child {
  margin-bottom: 0;
}

.concern-solution__right {
  position: absolute;
  top: 120px; /* Start below the overlap to prevent being cut off at the top */
  right: 0;
  left: auto;
  width: 45vw;
  height: calc(100% - 120px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: 1;
  border-radius: 0; /* Remove border-radius so the image's natural shapes and transparent corners are visible */
  overflow: visible;
}

.concern-solution__right img,
.concern-solution__right video {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom right;
}

/* Campaign Section */
.campaign {
    position: relative;
    padding: 80px 20px;
    overflow: hidden;
    font-family: var(--ff-jp-serif);
    clip-path: inset(0 0 0 0);
    z-index: 1;
}

.campaign::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/choose_pcbg.png') no-repeat center center;
    background-size: cover;
    z-index: -2;
    pointer-events: none;
}

.campaign::before {
    content: "";
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    z-index: -1;
}

.campaign__leaf-decor {
    position: absolute;
    top: 50px;
    right: 5%;
    width: 200px;
    opacity: 0.6;
    mix-blend-mode: multiply;
    z-index: 1;
    pointer-events: none;
}

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

/* Header */
.campaign__header {
    text-align: center;
    margin-bottom: 40px;
}
.campaign__en {
    display: block;
    color: #bfa674;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    margin-bottom: 10px;
    font-family: var(--ff-en-fancy);
}
.campaign__title {
    font-size: 2.4rem;
    color: #333;
    letter-spacing: 0.1em;
    font-weight: 500;
    margin-bottom: 25px;
}
.campaign__date-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.campaign__date-line {
    width: 40px;
    height: 1px;
    background-color: #cca365;
}
.campaign__date {
    font-size: 1.2rem;
    color: #555;
    letter-spacing: 0.1em;
}

/* Main Box */
.campaign__main-box {
    position: relative;
    background: #fff;
    border: 1px solid #d4b988;
    border-radius: 8px;
    padding: 60px 20px 40px;
    text-align: center;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.campaign__badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #c7a76c, #a88143);
    color: #fff;
    padding: 10px 40px;
    border-radius: 30px;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    box-shadow: 0 5px 15px rgba(168, 129, 67, 0.3);
}
.campaign__main-top {
    font-size: 1.6rem;
    color: #333;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}
.campaign__main-mid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}
.campaign__sparkle {
    width: 50px;
    mix-blend-mode: multiply;
}
.campaign__main-text-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.campaign__main-words {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: center;
}
.campaign__main-word1 {
    font-size: 5rem;
    color: #b08850;
    line-height: 1.1;
    font-weight: 600;
}
.campaign__main-word2 {
    font-size: 4.5rem;
    color: #333;
    line-height: 1.1;
    font-weight: 600;
}
.campaign__main-bottom-decor img {
    width: 250px;
    display: block;
    mix-blend-mode: multiply;
}

/* /* Benefits */
.campaign__benefits-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}
.campaign__benefits-title {
    font-size: 1.6rem;
    color: #073973;
    letter-spacing: 0.1em;
}
.campaign__benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}
.campaign__benefit-img-box {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}
.campaign__benefit-img {
    width: 100%;
    height: auto;
    display: block;
}
.campaign__benefit-card {
    display: flex;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    overflow: hidden;
    min-height: 110px;
}
.campaign__benefit-num-box {
    width: 100px;
    background: #fbf7f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px dashed #dcdcdc;
}
.campaign__benefit-num {
    font-size: 2.2rem;
    color: #b08850;
    font-family: var(--ff-en-fancy);
}
.campaign__benefit-num-line {
    width: 30px;
    height: 1px;
    background-color: #b08850;
    margin-top: 5px;
}
.campaign__benefit-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 20px 30px;
}
.campaign__benefit-left {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    width: 40%;
}
.campaign__benefit-divider {
    width: 1px;
    height: 60px;
    background: repeating-linear-gradient(to bottom, #dcdcdc 0, #dcdcdc 4px, transparent 4px, transparent 8px);
    margin: 0 30px;
}
.campaign__benefit-right {
    flex: 1;
    display: flex;
    align-items: center;
}
.campaign__benefit-strike {
    font-size: 1rem;
    color: #555;
    text-decoration: line-through;
    margin-right: 15px;
}
.campaign__benefit-arrow {
    color: #b08850;
    font-size: 0.8rem;
    margin-right: 15px;
}
.campaign__benefit-pill {
    background: #d4b988;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-right: 15px;
}
.campaign__benefit-price {
    font-size: 4.5rem;
    color: #b08850;
    line-height: 1;
    position: relative;
    display: flex;
    align-items: baseline;
    font-family: var(--ff-en-fancy);
}
.campaign__benefit-yen {
    font-size: 1.5rem;
    margin-left: 5px;
    font-family: var(--ff-jp-serif);
}
.campaign__price-decor {
    position: absolute;
    top: -10px;
    right: -25px;
    width: 25px;
    mix-blend-mode: multiply;
}
.campaign__benefit-right-text {
    flex: 1;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}
.campaign__benefit-highlight {
    color: #b08850;
    font-size: 1.3rem;
}
 */
/* CTA */
.campaign__cta {
    text-align: center;
}
.campaign__cta-lead {
    display: block;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
}
.campaign__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.campaign__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(0.95rem, 1.1vw, 1.15rem);
    padding: 18px 40px;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: 0.1em;
    position: relative;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 380px;
}
.campaign__btn--primary {
    background: linear-gradient(135deg, #008be3, #005696);
    color: #fff !important;
    box-shadow: 0 10px 25px rgba(0, 86, 150, 0.3);
}
.campaign__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 86, 150, 0.4);
    opacity: 0.95;
}
.campaign__btn--secondary {
    background: linear-gradient(135deg, #c2d1be 0%, #a3b89e 100%);
    color: #fff !important;
    box-shadow: 0 10px 25px rgba(163, 184, 158, 0.3);
}
.campaign__btn--secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(163, 184, 158, 0.4);
    opacity: 0.95;
}
.campaign__btn::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

/* SP Responsive */
@media (max-width: 768px) {
    .struggle-new-wrap {
        /* paddingを削除 */
    }
    
    .struggle-new {
        padding-top: 60px;
    }

    .struggle-new__inner {
        flex-direction: column;
        gap: 0;
        display: flex;
    }

    .struggle-new__left {
        display: contents; /* 中身の要素を直接innerの子要素として扱ぁE*/
    }

    .struggle-new__header {
        order: 1;
        margin-bottom: 2rem;
    }

    .struggle-new__title {
        font-size: 2.0rem;
    }

    .struggle-new__lead-wrap {
        order: 2;
    }

    .struggle-new__lead-item {
        font-size: 0.95rem;
        text-align: left;
        padding-bottom: 1.2rem;
        margin-bottom: 1.2rem;
    }

    .struggle-new__right {
        position: relative;
        left: auto;
        right: auto;
        order: 3;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        height: auto;
        margin-top: 30px;
        margin-bottom: 30px;
        display: flex;
        justify-content: center;
        overflow: hidden;
    }
    
    .struggle-new__right img {
        width: 100%;
        height: auto;
        object-fit: cover;
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 25%);
        mask-image: linear-gradient(to bottom, transparent 0%, black 25%);
        transform: scale(1.05); /* 画像E体に余白がある場合に備えてわずかに拡大 */
    }

    .struggle-new__grid {
        order: 4; /* グリチEを一番下に配置 */
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .struggle-new__item-text {
        font-size: 14px;
    }

    .concern-solution {
        padding: 160px 20px 0; /* Increased padding-top to add space above content on mobile */
        margin-top: -50px;
        z-index: 1;
        background-image: none;
        background-color: #ebf3fa;
        display: flex;
        flex-direction: column;
    }

    .concern-solution::before {
        height: 80px; /* Taller than 50px overlap to show a 30px white curved band on mobile */
    }

    .concern-solution__inner {
        flex-direction: column;
        display: flex;
        text-align: center;
    }

    .concern-solution__left {
        max-width: 100%;
        text-align: center;
        padding: 0;
        order: 1;
    }

    .concern-solution__header {
        text-align: center;
        margin-bottom: 2rem;
    }

    .concern-solution__en {
        justify-content: center;
    }

    .concern-solution__title {
        font-size: 2.0rem;
        text-align: center;
    }

    .concern-solution__text-main {
        font-size: 1.15rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .concern-solution__text-sub {
        font-size: 0.9rem;
        line-height: 1.8;
        text-align: center;
        margin-bottom: 1.2rem;
    }

    .concern-solution__right {
        position: relative;
        top: 0; /* Reset top offset from desktop to prevent image from shifting down and being cut off */
        order: 2; /* 画像をテキストの下に配置 */
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        height: auto;
        margin-top: 30px;
        display: flex;
        justify-content: flex-end; /* Align to the right edge of the screen */
        overflow: visible;
    }

    .concern-solution__right img,
    .concern-solution__right video {
        width: 100%; /* Fill the container horizontally up to max-width */
        max-width: 480px; /* Prevent it from getting too huge on tablets */
        height: auto;
        object-fit: contain;
        -webkit-mask-image: none;
        mask-image: none;
        transform: none;
    }

    /* Campaign Section SP */
    .campaign {
        padding: 50px 15px;
    }
    .campaign__leaf-decor {
        width: 120px;
        top: 20px;
        right: 0;
    }
    .campaign__title {
        font-size: 1.8rem;
    }
    .campaign__date {
        font-size: 0.9rem;
    }
    .campaign__date-line {
        width: 20px;
    }
    .campaign__main-box {
        padding: 50px 10px 30px;
    }
    .campaign__badge {
        font-size: 1rem;
        padding: 8px 30px;
        top: -15px;
    }
    .campaign__main-top {
        font-size: 1.2rem;
    }
    .campaign__main-words {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }
    .campaign__main-word1 {
        font-size: 3.2rem;
        line-height: 1.1;
    }
    .campaign__main-word2 {
        font-size: 2.8rem;
        line-height: 1.1;
    }
    .campaign__sparkle {
        width: 35px;
    }
    .campaign__main-bottom-decor img {
        width: 150px;
        margin-top: 4px;
    }
/*     .campaign__benefit-card {
        flex-direction: row; /* 横並びをキーチE*/
    }
    .campaign__benefit-num-box {
        width: 60px; /* 左側の数字エリアの幁E��狭める */
        flex-direction: column;
        border-right: 1px dashed #dcdcdc;
        border-bottom: none;
        padding: 0;
        gap: 0;
        justify-content: center;
        align-items: center;
    }
    .campaign__benefit-num {
        font-size: 1.6rem;
    }
    .campaign__benefit-num-line {
        display: none;
    }
    .campaign__benefit-content {
        flex-direction: column;
        align-items: flex-start; /* 左寁E�� */
        text-align: left;
        padding: 15px;
        gap: 8px;
    }
    .campaign__benefit-left {
        width: 100%;
        font-size: 0.9rem;
        line-height: 1.4;
    }
    .campaign__benefit-divider {
        display: none; /* 仕�Eり線�E非表示 */
    }
    .campaign__benefit-right {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: center;
        gap: 6px 10px;
    }
    .campaign__benefit-strike {
        margin: 0;
        font-size: 0.85rem;
    }
    .campaign__benefit-arrow {
        margin: 0;
        font-size: 0.75rem;
    }
    .campaign__benefit-pill {
        margin: 0;
        font-size: 0.8rem;
        padding: 2px 8px;
    }
    .campaign__benefit-price {
        font-size: 2.2rem; /* スマ�E画面幁E��合わせて縮封E*/
    }
    .campaign__benefit-yen {
        font-size: 1rem;
    }
    .campaign__price-decor {
        width: 18px;
        right: -18px;
        top: -6px;
    }
    .campaign__benefit-right-text {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    .campaign__benefit-highlight {
        font-size: 1.05rem;
    } */
    .campaign__cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .campaign__btn {
        width: 100%;
        max-width: none;
        padding: 15px 0;
        font-size: 1.05rem;
    }
    .campaign__cta-lead {
        font-size: 1rem;
    }
}

/* Cause Section (Full Bleed 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 */
    /* Safari background-attachment: fixed fallback */
    clip-path: inset(0 0 0 0);
}

.cause-full-wrap::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/customer_001bg.png') no-repeat center center;
    background-size: cover;
    z-index: -1;
    pointer-events: none;
}

.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)
   ========================================================================== */
.phi-reservation__label {
    font-family: var(--ff-en-fancy);
    font-size: 1.5rem;
    letter-spacing: 0.3em;
    color: var(--clr-sub);
    margin-bottom: 2rem;
}

.reservation-menu-banner {
    max-width: 800px;
    margin: 40px auto 30px;
    width: 100%;
    transition: all 0.4s ease;
}

.reservation-menu-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.reservation-menu-banner:hover {
    transform: translateY(-4px);
}

.button-21 a {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.05rem;
    letter-spacing: 0.12em;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 16px 32px;
    margin: 12px;
    margin-inline: auto;
    text-decoration: none;
    cursor: pointer;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 4px;
    background: #ffffff;
}

.button-21 a::before {
    display: none;
}

/* Individual Colors */
.button-21.btn--line a {
    border: 1.5px solid #a3b89e; /* Sage Green */
    color: #4f614b;
}
.button-21.btn--line a:hover {
    background: #a3b89e;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(163, 184, 158, 0.25);
}

.button-21.btn--tel a {
    border: 1.5px solid #a78b52; /* Gold */
    color: #8c713a;
}
.button-21.btn--tel a:hover {
    background: #a78b52;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(167, 139, 82, 0.25);
}

.button-21.btn--hp a {
    border: 1.5px solid #d4a5b3; /* Dusty Pink */
    color: #8a5e6b;
}
.button-21.btn--hp a:hover {
    background: #d4a5b3;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(212, 165, 179, 0.25);
}

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

/* 蛟句挨繧�E�繝ｩ繝ｼ險�E�螳・*/
.button-21.btn--hp a::before {
    background: #d4a5b3; /* 繝繧�E�繝�EぁE��斐Φ繧�E� */
}
.button-21.btn--line a::before {
    background: #a3b89e; /* 繧�E�繝ｼ繧�E�繧�E�繝ｪ繝ｼ繝ｳ */
}
.button-21.btn--tel a::before {
    background: #D8CFC4; /* 繝吶・繧�E�繝･ */
}

/* Reservation Gallery */
.phi-reservation__gallery {
    margin-top: 80px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.phi-reservation__gallery-grid {
    display: flex;
    gap: 0;
}

.phi-reservation__gallery-item {
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #fff;
    border: none;
    position: relative;
    flex-shrink: 0; /* Make sure Swiper slides don't shrink */
}

.phi-reservation__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.phi-reservation__gallery-item:hover img {
    transform: scale(1.05);
}

/* Custom Swiper Pagination */
.phi-reservation__pagination {
    bottom: 15px !important;
    left: 0 !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

@media (min-width: 769px) {
    .phi-reservation__pagination {
        display: none !important;
    }
}

.phi-reservation__pagination .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.6;
    width: 8px;
    height: 8px;
    transition: all 0.3s ease;
}

.phi-reservation__pagination .swiper-pagination-bullet-active {
    background: var(--clr-sub, #a78b52);
    opacity: 1;
    width: 20px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .phi-reservation__gallery {
        margin-top: 40px;
    }
    .phi-reservation__gallery-item {
        aspect-ratio: 16/10;
    }
}

@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: 120px 0 0; /* Changed from padding: 0 to resolve margin collapse */
    /* Remove gap - image full bleed */
    position: relative;
    clip-path: inset(0 0 0 0);
    background-color: #ffffff; /* White fallback */
    z-index: 1;
}

.reasons::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px; /* PC header margin-top size */
    background-color: #ffffff;
    z-index: 2; /* Layer above fixed background to mask it with white */
}

.reasons::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/service_001bg.png') no-repeat center bottom;
    background-size: cover;
    z-index: -2;
    pointer-events: none;
}

.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;
    background-color: #ffffff; /* Match image white background */
}

.reasons__visual img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Prevent cropping of text in image */
    opacity: 0;
}

.reasons__visual img.is-active {
    opacity: 1;
    z-index: 5;
    /* Removed ZoomActiveImage animation to keep the text stable and fully visible */
}

@keyframes ZoomActiveImage {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.08);
    }
}

.reasons__visual-curtain {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #a3b89e; /* Changed to Sage Green */
    z-index: 10;
    pointer-events: none;
}

.reasons__visual-curtain.animate-slide {
    animation: CurtainReveal 1.4s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

@keyframes CurtainReveal {
    0% {
        left: -100%;
    }
    50% {
        left: 0;
    }
    100% {
        left: 100%;
    }
}

.reasons__content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px; /* Reduced from 120px to fit dividers nicely */
    padding: 60px 80px 60px 100px;
}

.reasons__item {
    display: flex;
    align-items: flex-start;
    padding-bottom: 40px;
    border-bottom: 1px dotted rgba(7, 57, 115, 0.4);
    width: 100%;
}

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

.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: #8fa7cd;
    font-weight: 400;
    line-height: 1.5;
    display: block;
    box-sizing: border-box;
    text-align: center;
    width: fit-content;
    flex-shrink: 0;
}

.number-deco--text {
    font-size: 2.2rem !important;
    letter-spacing: 0.05em;
    font-family: var(--ff-en-fancy);
    line-height: 2 !important;
}
.number-deco--text::after {
    content: none !important;
}

@media (max-width: 768px) {
    .number-deco--text {
        font-size: 1.8rem !important;
        line-height: 1.5 !important;
    }
}

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

.reasons__subtitle {
    font-family: var(--ff-jp-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

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

    .reasons__content-wrapper {
        gap: 40px; /* Reduced from 80px to fit dividers nicely */
        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: 40px; /* Reduced from 100px to fit dividers nicely */
        padding: 0 var(--side-padding) 60px;
        /* Added side and bottom padding for mobile */
    }

    .reasons__item {
        flex-direction: column;
        padding-bottom: 40px;
        border-bottom: 1px dotted rgba(7, 57, 115, 0.4);
    }

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

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

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

/* ==========================================================================
   SECTION: GALLERY (gallery_05 - gallery_16)
   ========================================================================== */
.gallery-section {
    padding: var(--section-gap) 0;
    background-color: #fafaf8;
    overflow: hidden;
}

.gallery-section__header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 var(--side-padding);
}

.gallery-section__swiper {
    width: 100%;
    position: relative;
    padding-bottom: 60px !important;
}

.gallery-section__slide {
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.gallery-section__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-section__slide:hover img {
    transform: scale(1.05);
}

.gallery-section__pagination {
    bottom: 20px !important;
}

.gallery-section__pagination .swiper-pagination-bullet {
    background: #cca365;
    opacity: 0.4;
    width: 8px;
    height: 8px;
    margin: 0 6px !important;
    transition: all 0.3s ease;
}

.gallery-section__pagination .swiper-pagination-bullet-active {
    background: #bfa674;
    opacity: 1;
    width: 24px;
    border-radius: 4px;
}

.gallery-section__prev,
.gallery-section__next {
    color: #cca365 !important;
    width: 40px;
    height: 40px;
    background: none !important;
    border-radius: 0;
    box-shadow: none !important;
    border: none !important;
    transition: all 0.3s ease;
    top: calc(50% - 30px) !important;
}

.gallery-section__prev::after,
.gallery-section__next::after {
    font-size: 1.8rem !important;
    font-weight: 300;
}

.gallery-section__prev:hover,
.gallery-section__next:hover {
    color: #bfa674 !important;
    transform: scale(1.2);
}

.gallery-section__prev {
    left: 5px !important;
}

.gallery-section__next {
    right: 5px !important;
}

@media (max-width: 768px) {
    .gallery-section__prev,
    .gallery-section__next {
        display: none !important;
    }
}
/* ==========================================================================
   SECTION: TRUST / SAFETY SPEECH BUBBLES
   ========================================================================== */
.trust {
    position: relative;
    padding: var(--section-gap) var(--side-padding);
    background-color: #ffffff; /* 背景を白にして画像を明るく見せめE*/
}

.trust__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/service_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0.85; /* 画像を45%の不透明度に調整し、背景をより濃く見せる */
}

.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__qa-link {
    color: #73561f;
    text-decoration: underline;
    font-weight: bold;
    transition: opacity 0.3s ease;
}

.trust__qa-link:hover {
    opacity: 0.7;
}

.trust__quote {
    font-family: var(--ff-jp-serif);
    font-style: italic;
    margin: 2rem 0;
    color: #73561f;
    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;
    }

    .trust__text-block .trust__desc {
        text-align: left !important;
    }
}

/* ==========================================================================
   SECTION: CTA
   ========================================================================== */
.cta {
    position: relative;
    padding: var(--section-gap) var(--side-padding);
    z-index: 1;
    overflow: hidden;
    /* Safari background-attachment: fixed fallback */
    clip-path: inset(0 0 0 0);
}

.cta::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)), url('../img/service_bg.jpg') no-repeat center center;
    background-size: cover;
    z-index: -2;
    pointer-events: none;
}

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

/* Reservation Area (About内の予約セクション) */
.reservation-area {
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    padding: 100px 0;
    margin-bottom: 0;
    overflow: hidden;
    /* Safari background-attachment: fixed fallback */
    clip-path: inset(0 0 0 0);
}

.reservation-area::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/service_bg.jpg') no-repeat center center;
    background-size: cover;
    z-index: -2;
    pointer-events: none;
}

.reservation-area__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: #475548ad; */
    z-index: 0;
}

.cta__header {
    color: #333;
}

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

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

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

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

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

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

.cta__desc {
    margin-bottom: 5rem;
}

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

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

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

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

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

.cta__action {
    margin-top: 2.5rem;
}

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

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

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

.cta__tel {
    margin-top: 2rem;
}

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

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

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

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

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

    .cta__block {
        padding: 2.5rem 1.5rem;
    }

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

/* ==========================================================================
   SECTION: VOICE
   ========================================================================== */
.voice {
    padding: var(--section-gap) var(--side-padding);
    position: relative !important;
    overflow: hidden;
    clip-path: inset(0 0 0 0) !important;
    z-index: 1;
}

.voice::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/customer_001bg.png') no-repeat center center;
    background-size: cover;
    z-index: -2;
    pointer-events: none;
}

.voice::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.45);
    z-index: -1;
}

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

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

.voice__header-img {
    margin: 1.5rem auto 2.5rem;
    text-align: center;
}

.voice__header-decor {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: inline-block;
}

.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);
    border-radius: 16px; /* Modern rounded corners */
    display: flex;
    flex-direction: row-reverse; /* Text on left, image on right */
    align-items: stretch; /* Stretch image container to full card height */
    transition: transform 0.3s ease;
    overflow: hidden; /* Clip the full-bleed image to the card's rounded corners */
}

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

.voice__card-image {
    width: 35%; /* 35% of card width (~40% of layout space) */
    margin: 0; /* Remove all margins to make the image full-bleed on the right side */
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 0;
    border: none;
    box-shadow: none;
    background-color: #ffffff;
}

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

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

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

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

.voice__card-text {
    position: relative;
}

.voice__card-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.voice__card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.voice__card-btn--contact {
    color: #ffffff !important;
    background-color: #0068b7;
    border: 1px solid #0068b7;
}

.voice__card-btn--contact:hover {
    background-color: #005696;
    border-color: #005696;
    transform: translateY(-1px);
}

.voice__card-btn--qa {
    color: #073973 !important;
    background-color: #ffffff;
    border: 1px solid #c5b8a5;
}

.voice__card-btn--qa:hover {
    background-color: #f7f5f2;
    border-color: #b5a691;
    transform: translateY(-1px);
}







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

    .voice__card-image {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 75%;
        height: 100%;
        margin: 0;
        border-radius: 0;
        border: none;
        box-shadow: none;
        background-color: transparent !important;
        pointer-events: none;
        z-index: 1;
    }

    .voice__card-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: right bottom;
        opacity: 0.55;
    }

    .voice__card-body {
        position: relative;
        z-index: 2;
        padding: 2rem 1.5rem;
        background: transparent;
    }

    .voice__card-links {
        justify-content: center;
    }
}

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

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

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

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

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

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

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

    .voice__image {
        width: 100%;
    }

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

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

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

/* ==========================================================================
   SECTION: SERVICE INTRO
   ========================================================================== */
.service-intro {
    padding: var(--section-gap) var(--side-padding);
    position: relative;
    overflow: hidden;
    /* Safari background-attachment: fixed fallback */
    clip-path: inset(0 0 0 0);
}

.service-intro::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/concern_bg.jpg') no-repeat center center;
    background-size: cover;
    z-index: -1;
    pointer-events: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

/* ==========================================================================
   SECTION: MENU
   ========================================================================== */
/* .menu-visual {
    width: 100%;
    height: 50vh;
    min-height: 300px;
    overflow: hidden;
    margin-bottom: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Safari background-attachment: fixed fallback */
    clip-path: inset(0 0 0 0);
}

.menu-visual::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/menu_bg_01.jpg') 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;
}

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

.menu-visual__overlay .about__en::before,
.menu-visual__overlay .about__en::after {
    display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
    .menu__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: 3.5rem 3rem !important; /* Reset padding to remove the right/bottom space for absolute image */
}

.menu__recommend-staff {
    /* Keep for fallback, though we'll use a new class for the large image */
    position: absolute;
    right: 20px;
    bottom: -10px;
    width: 280px; 
}

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

.menu__recommend-image {
    margin-top: 2rem;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

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

@media (max-width: 768px) {
    .menu__item--recommend {
        padding: 2.5rem 1.5rem !important; /* Reset mobile padding */
    }

    .menu__recommend-staff {
        right: 10px;
        bottom: -5px;
        width: 180px; 
    }
    
    .menu__recommend-image {
        margin-top: 1.5rem;
    }
}
 */
/* ==========================================================================
   SECTION: NOTICE
   ========================================================================== */
.notice {
    padding: var(--section-gap) var(--side-padding);
}

.notice__container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fdfbf7;
    padding: 5rem 6rem;
}

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

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

.notice__list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.notice__list li {
    font-size: 0.95rem;
    line-height: 1.9;
    position: relative;
    padding-left: 1.5rem;
    color: var(--clr-text);
}

.notice__list li::before {
    content: '';
    position: absolute;
    top: 0.8em;
    left: 0;
    width: 4px;
    height: 4px;
    background-color: var(--clr-sub);
    border-radius: 50%;
}

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

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

    .notice__lead {
        margin-bottom: 2.5rem;
    }

    .notice__list {
        gap: 1.5rem;
    }

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

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

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

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

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

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

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

.faq__question:hover {
    opacity: 0.7;
}

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

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

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

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

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

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

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

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

.faq__answer {
    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-sub);
    margin-right: 25px;
    line-height: 1.2;
    opacity: 0.5;
}

.faq__a-text {
    flex: 1;
}

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

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

    .faq__question {
        padding: 25px 10px;
    }

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

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

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

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

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

/* ==========================================================================
   SECTION: CONTACT
   ========================================================================== */
.contact {
    position: relative;
    padding: var(--section-gap) 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    /* Safari background-attachment: fixed fallback */
    clip-path: inset(0 0 0 0);
}

.contact::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/customer_001bg.png') no-repeat center center;
    background-size: cover;
    z-index: -2;
    pointer-events: none;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: -1;
}

.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: #073973;
    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-sub);
}

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

/* ==========================================================================
   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; /* 繧�E�繝ｳ繧�E�繝ｼ謠・∴ */
    }
    .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; /* 譛蜑埼擁E���E� */
    line-height: 0.8;
    pointer-events: none;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 1 !important; /* 蠑ｷ蛻�E�陦�E�遉ｺ */
    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; /* 蠑ｷ蛻�E�陦�E�遉ｺ */
    animation: auroraWave 15s ease infinite alternate; /* fadein繧�E�繝九Γ繧貞､悶�E�縺�E�蜊ｳ陦�E�遉ｺ */
}

/* Bottom Area (Gradient & Text) */
.fv-visual__bottom-bar {
    position: relative;
    width: 100%;
    flex: 0 0 auto;
    height: calc(100vw * (612 / 1366) * 0.125); /* 逕ｻ蜒上�E鬮倥�E�E���E�1/8 = 蜈ｨ菴薙�E1蜑ｲ */
    min-height: 80px;
    background: linear-gradient(90deg, #F4DDE3 0%, #DAD0F2 50%, #E4E7E2 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    text-align: right;
    padding-right: 5vw;
    z-index: 50;
    background-size: 200% 100% !important;
    animation: elegantFadeIn 2.5s ease 0.5s forwards, auroraWave 15s ease infinite alternate;
}

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

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

/* Background Images (Fixed Aspect Area) */
.fv-visual__bg {
    width: 100%;
    height: 612px; /* PC縺�E�縺�E�蝓ｺ譛ｬ縺�E�鬮倥�E�E*/
    height: calc(100vw * 612 / 1366); /* 逕ｻ髱�E�蟷・↓蜷医�E�縺帙◆蜿�E�螟峨・鬮倥�E�E*/
    flex: 0 0 auto;
    display: flex;
    overflow: hidden;
    position: relative;
    z-index: 10;
    background-color: #f0f0f0; /* 荳・′荳逕ｻ蜒上′縺�E�縺上※繧り牡縺�E�隕九∴繧九ｈ縺・ↁE*/
}

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

/* 1譫夂岼縺�E�縺溘�E繧�E�繧�E�繝�EぁE��悶↑逕ｻ蜒上ｒ陦�E�遉ｺ */
.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; /* 莉悶・隕∫�E��E�繧医�E�荳翫ↁE*/
    line-height: 1.8;
    font-weight: 500;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    opacity: 1 !important; /* 譛蛻昴°繧芽�E�九∴繧九ｈ縺・ↁE*/
    transform: none !important;
}

.fv-visual__v-text--left {
    bottom: 10px; /* 荳・蜑ｲ縺�E�繝�E・縺�E�荳�E�縺�E�遒ｺ螳溘�E鬟溘＞霎�E�繧繧医≧縺�E� */
    left: 6vw;
    color: #808080;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.fv-visual__v-text--right {
    top: 10px; /* 荳・蜑ｲ縺�E�繝�E・縺�E�荳�E�縺�E�遒ｺ螳溘�E鬟溘＞霎�E�繧繧医≧縺�E� */
    right: 4vw;
    color: #D2ADD9;
}

/* Bubbles Styling & Animation */
.fv-visual__bubbles {
    position: absolute;
    inset: 0;
    z-index: 15; /* 蜀咏悄(10)繧医�E�荳翫√ヰ繝ｼ(50)繧医�E�荳・*/
    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) {
/* Redundant old code removed to avoid conflicts with new FV structure
    .fv-visual {
        height: auto;
        min-height: 85vh;
        margin-bottom: 0;
    }
*/

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

    .fv-visual__bg {
        height: 65vh; /* 繧�E�繝槭・縺�E�縺�E�鬮倥�E�E��偵�E�縺�E�縺九ｊ遒�E�菫・*/
        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; /* 繝ｭ繧�E�繧貞ｷ�E�蛛ｴ縺�E�驟咲�E��E� */
        transform: none;
        text-align: left;
        font-size: clamp(2rem, 10vw, 3rem);
    }
}

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

/* 1譫夂岼縺E縺溘E繧E繧E繝EぁE悶↑逕ｻ蜒上ｒ陦E遉ｺ */
.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; /* 莉悶・隕∫EE繧医E荳翫ↁE*/
    line-height: 1.8;
    font-weight: 500;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    opacity: 1 !important; /* 譛€蛻昴°繧芽E九∴繧九ｈ縺・ↁE*/
    transform: none !important;
}

.fv-visual__v-text--left {
    bottom: 10px; /* 荳・蜑ｲ縺E繝E・縺E荳E縺E遒ｺ螳溘E鬟溘＞霎E繧€繧医≧縺E */
    left: 6vw;
    color: #808080;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.fv-visual__v-text--right {
    top: 10px; /* 荳・蜑ｲ縺E繝E・縺E荳E縺E遒ｺ螳溘E鬟溘＞霎E繧€繧医≧縺E */
    right: 4vw;
    color: #D2ADD9;
}

/* Bubbles Styling & Animation */
.fv-visual__bubbles {
    position: absolute;
    inset: 0;
    z-index: 15; /* 蜀咏悄(10)繧医E荳翫€√ヰ繝ｼ(50)繧医E荳・*/
    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) {
/* Redundant old code removed to avoid conflicts with new FV structure
    .fv-visual {
        height: auto;
        min-height: 85vh;
        margin-bottom: 0;
    }
*/

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

    .fv-visual__bg {
        height: 65vh; /* 繧E繝槭・縺E縺E鬮倥EE偵E縺E縺九ｊ遒E菫・*/
        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; /* 繝ｭ繧E繧貞ｷE蛛ｴ縺E驟咲EE */
        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: #4f614b;
    position: absolute;
    left: 0;
    transition: all 0.4s;
}

.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: rgba(255, 255, 255, 0.98);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
    opacity: 0;
    visibility: hidden; /* 髢峨§縺E繧区凾縺E迚ｩ送EE噪縺E繧よｶ医☁E*/
}

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

.header__sp-nav ul {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
}

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

.header__sp-nav a {
    font-family: var(--ff-jp-serif);
    font-size: 1.5rem;
    color: #333;
    letter-spacing: 0.1em;
}

.sp-nav__btn--hp a, .sp-nav__btn--line a, .sp-nav__btn--tel a {
    padding: 0.8rem 2rem;
    border-radius: 4px;
    display: block;
    font-size: 1.1rem;
    margin: 0.5rem auto 0;
    width: fit-content;
    min-width: 200px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.sp-nav__btn--hp a {
    background-color: #ffffff;
    border: 1.5px solid #d4a5b3;
    color: #8a5e6b !important;
}
.sp-nav__btn--line a {
    background-color: #ffffff;
    border: 1.5px solid #a3b89e;
    color: #4f614b !important;
}
.sp-nav__btn--tel a {
    background-color: #ffffff;
    border: 1.5px solid #0068b7;
    color: #0068b7 !important;
}

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

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

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

@keyframes loaderBounce {

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

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

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


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

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

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

/* 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 {
    padding: clamp(40px, 6vh, 80px) var(--side-padding) 10vh;
    overflow: hidden;
}

.philosophy-layout::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(244, 244, 246, 0.55), rgba(244, 244, 246, 0.55)), url("../img/about_bg.jpg") no-repeat center center;
    background-size: cover;
    z-index: -1;
    pointer-events: none;
}

/* 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;
    padding: 5rem 0;
}

.phi-text-area__icon {
    width: 40px;
    height: auto;
    margin: 0 auto 2rem;
    display: block;
    mix-blend-mode: multiply;
    position: relative;
    z-index: 0;
}

.phi-text-area__catch {
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
}

.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(1.6rem, 2.6vw, 2.4rem);
    color: #333;
    letter-spacing: 0.1em;
    line-height: 1.6;
}

.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;
    position: relative;
    z-index: 10;
}

.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.35rem;
        line-height: 1.6;
    }

    .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;
    /* Safari background-attachment: fixed fallback */
    clip-path: inset(0 0 0 0) !important;
}

@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
   ========================================================================== */
/* Deleted redundant fixed header to allow sticky header at top to work */

.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.5rem;
    color: var(--clr-text);
    letter-spacing: 0.1em;
}

.header__logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header__logo img {
    height: auto;
    max-height: 60px;
    width: auto;
    display: block;
}

.header__logo-text {
    font-family: var(--ff-jp-serif);
    font-size: 1.35rem;
    font-weight: 500;
    margin-left: 12px;
    color: #073973; /* Brand dark green */
    letter-spacing: 0.15em;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .header__logo-text {
        font-size: 1.05rem;
        margin-left: 8px;
        letter-spacing: 0.1em;
    }
}

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

.header__nav a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

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

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

/* BUTTON-21 styles deleted as they are duplicates of the correct version defined earlier */

.header__btn--hp a {
    display: block;
    padding: 0.6rem 1.4rem;
    background-color: #ffffff;
    border: 1.5px solid #d4a5b3;
    box-shadow: 0 4px 15px rgba(212, 165, 179, 0.15);
    color: #8a5e6b !important;
    border-radius: 4px;
    font-size: 0.8rem !important;
    transition: 0.3s;
}

.header__btn--hp a:hover {
    background-color: #d4a5b3;
    color: #ffffff !important;
    box-shadow: 0 8px 25px rgba(212, 165, 179, 0.25);
    transform: translateY(-2px);
}

.header__btn--line a {
    display: block;
    padding: 0.6rem 1.4rem;
    background-color: #ffffff;
    border: 1.5px solid #a3b89e;
    box-shadow: 0 4px 15px rgba(163, 184, 158, 0.15);
    color: #4f614b !important;
    border-radius: 4px;
    font-size: 0.8rem !important;
    transition: 0.3s;
}

.header__btn--line a:hover {
    background-color: #a3b89e;
    color: #ffffff !important;
    box-shadow: 0 8px 25px rgba(163, 184, 158, 0.25);
    transform: translateY(-2px);
}

.header__btn--tel a {
    display: block;
    padding: 0.6rem 1.4rem;
    background-color: #0068b7;
    border: 1.5px solid #0068b7;
    box-shadow: 0 4px 15px rgba(0, 104, 183, 0.15);
    color: #ffffff !important;
    border-radius: 4px;
    font-size: 0.85rem !important;
    font-weight: 500;
    transition: 0.3s;
}

.header__btn--tel a:hover {
    background-color: #005696;
    border-color: #005696;
    color: #ffffff !important;
    box-shadow: 0 8px 25px rgba(0, 86, 150, 0.25);
    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;
    }
    .header__logo img {
        max-height: 45px;
    }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: #193e60;
    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__logo a {
    display: inline-block;
    text-decoration: none;
}

.footer__logo img {
    height: auto;
    max-height: 80px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.footer__logo-text {
    font-family: var(--ff-jp-serif);
    font-size: 1.25rem;
    font-weight: 500;
    margin-top: 10px;
    letter-spacing: 0.2em;
    color: #ffffff;
    text-align: center;
}

.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: 0; /* Moved to parent padding-top to prevent margin collapse */
    position: relative;
    z-index: 3;
}

/* Adjust Main spacing - Sticky handles this automatically */

@media (max-width: 768px) {
    main {
        padding-top: 0;
    }
    .reasons {
        padding-top: 80px; /* SP padding-top to prevent margin collapse */
    }
    .reasons::before {
        height: 80px; /* Mobile header margin-top size */
    }
    .reasons__header {
        margin-top: 0;
        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: #e4beb3; /* 繝斐Φ繧�E�繝吶・繧�E�繝･縺�E�邨�E�荳 */
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-btn--hp:hover {
    background-color: #d4a89d;
}

.footer-btn--line {
    background-color: #e4beb3; /* 繝斐Φ繧�E�繝吶・繧�E�繝･縺�E�邨�E�荳 */
}

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

/* 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: 2rem;
    }
    .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: #073973;
    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: #8fa7cd;
    line-height: 1;
}

.new-faq-answer-text {
    font-size: 1rem;
    color: #8fa7cd;
    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)
   ========================================================================== */
/* ==========================================================================
   NEW FV SLIDESHOW (Responsive & Full-bleed)
   ========================================================================== */
.fv-section-new {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #ffffff;
    padding-top: var(--header-height); /* Spacing so header doesn't cover the image */
}

.fv-link-wrapper {
    display: block;
    width: 100%;
    cursor: pointer;
    text-decoration: none;
}

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

.fv-slide-img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0;
    animation: fvFade 15s infinite;
}

/* Ensure images inside picture elements scale correctly */
.fv-slide-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* Ensure the first slide provides natural height */
.fv-slide-img:first-child {
    position: relative;
}

/* Layer the remaining slides on top */
.fv-slide-img:not(:first-child) {
    position: absolute;
    top: 0;
    left: 0;
}

/* Slide Specific Delays */
.fv-slide-img.slide-1 {
    animation-delay: 0s;
}

.fv-slide-img.slide-2 {
    animation-delay: 5s;
}

.fv-slide-img.slide-3 {
    animation-delay: 10s;
}

/* Smooth Fade transition: 15s total (5s per slide, 0.75s transition) */
@keyframes fvFade {
    0% {
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    33.3% {
        opacity: 1;
    }
    38.3% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.fv-container {
    width: 100%;
    max-width: 100%; /* Full-bleed layout */
    margin: 0 auto;
    padding: 0; /* Zero margin / padding */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
}

/* Center Column - Spacious with breathing room */
.fv-left {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    max-width: 650px;
    width: 100%;
    min-height: auto;
    padding-top: 0;
}

/* 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 centered layout */
.fv-deco-01 {
    top: -5%;
    left: 26%;
    width: clamp(150px, 20vw, 220px);
}

.fv-deco-02 {
    bottom: -5%;
    left: 28%;
    width: clamp(200px, 25vw, 320px);
}

.fv-deco-03 {
    bottom: 10%;
    right: 28%;
    width: clamp(180px, 22vw, 300px);
}

.fv-deco-04 {
    top: 15%;
    right: 26%;
    width: clamp(120px, 15vw, 180px);
}

.fv-deco-05 {
    top: -8%;
    left: 48%;
    width: clamp(160px, 18vw, 240px);
}

.fv-left-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px; /* Centered content constraint */
    text-align: center;
}

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

.fv-catch.is-active,
.fv-sub.is-active,
.fv-logo.is-active,
.fv-tagline.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(1.5rem, 3vw, 2.4rem);
    font-weight: 500;
    color: #333;
    letter-spacing: 0.15em;
    margin-bottom: 2.8rem;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.fv-logo .sp-only {
    display: none; /* PC時はスマホ用テキストを完全に非表示にする */
}

.fv-logo-cross {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: #999;
    letter-spacing: 0.3em;
    line-height: 2;
    
    /* 初期状態：隠して少し回転縮小 */
    opacity: 0;
    transform: scale(0.3) rotate(-45deg);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
    
    /* マシンピラティス（8文字 = インデックス0〜7）が出終わった直後（0.48s）にポンッと飛び出させる！ */
    transition-delay: 0.48s;
}

/* 親ロゴがアクティブになったら、クルッとバウンス拡大出現 */
.fv-logo.is-active .fv-logo-cross {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.fv-logo .char {
    /* 前半（マシンピラティス：インデックス0〜7）は順次出現 */
    transition-delay: calc(0.06s * var(--char-index));
}

/* 後半（パーソナルトレーニング：インデックス8以降）は、×（クロス）が出現した後に上品に流れ始めるようディレイを+0.35sシフト！ */
.fv-logo .char[style*="--char-index: 8"],
.fv-logo .char[style*="--char-index: 9"],
.fv-logo .char[style*="--char-index: 10"],
.fv-logo .char[style*="--char-index: 11"],
.fv-logo .char[style*="--char-index: 12"],
.fv-logo .char[style*="--char-index: 13"],
.fv-logo .char[style*="--char-index: 14"],
.fv-logo .char[style*="--char-index: 15"],
.fv-logo .char[style*="--char-index: 16"],
.fv-logo .char[style*="--char-index: 17"] {
    transition-delay: calc(0.06s * var(--char-index) + 0.35s);
}

.fv-tagline {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(1.8rem, 4.2vw, 3.2rem);
    font-weight: 600;
    color: #4f614b; /* Brand dark green color */
    letter-spacing: 0.25em;
    text-indent: 0.25em;
    text-align: center;
    margin-bottom: 2.2rem;
    line-height: 1.4;
}

.fv-tagline .fv-sub-line {
    display: block;
}

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

/* FV Features: 3-column */
.fv-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: auto;
    padding-top: 1rem;
    
    /* 初期非表示 */
    opacity: 0;
    transition: opacity 0.6s ease;
}

.fv-features.is-active {
    opacity: 1;
}

.fv-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0 1.2rem;
    
    /* 初期沈下・非表示 */
    opacity: 0;
    transform: translateY(20px); /* 下からスッと浮き上がるための20px待機 */
    transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1), transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 親要素に is-active クラスが付いたら、--item-index に従って0.15秒ずつのスタッガーディレイで浮かび上がる */
.fv-features.is-active .fv-feature-item {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(0.15s * var(--item-index));
}

.fv-feature-title {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(0.8rem, 1.1vw, 1rem);
    color: #444;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.fv-feature-desc {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(0.65rem, 0.85vw, 0.78rem);
    color: #999;
    letter-spacing: 0.05em;
}

.fv-feature-divider {
    width: 1px;
    height: 32px;
    background: #d8d0c8;
    flex-shrink: 0;
    
    /* 初期状態は縦方向に縮めておく */
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.15s; /* カラムの浮き上がりと同時に上品に伸びる */
}

/* 親がアクティブになったら縦にシュッと100%伸びる */
.fv-features.is-active .fv-feature-divider {
    transform: scaleY(1);
}

/* FV Badge: Circle & Label */
.fv-badge-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 2rem;
}

.fv-badge-circle {
    width: 78px;
    height: 78px;
    background-color: #a78b52; /* 上品なゴールドブラウン / 茶色 */
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    line-height: 1.35;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(167, 139, 82, 0.25);
    
    /* 初期状態：極小サイズかつ少し反時計回りに回転して待機 */
    opacity: 0;
    transform: scale(0.3) rotate(-35deg);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}

/* 親に is-active が付与された際、クルッと回りながら上品に拡大して着地 */
.fv-badge-row.is-active .fv-badge-circle {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.fv-badge-line1 {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.fv-badge-line2 {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.fv-badge-label {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    font-weight: 500;
    color: #333;
    letter-spacing: 0.15em;
    line-height: 1.5;
    text-align: left;
    
    /* 初期状態：左からスライドしてくる準備 */
    opacity: 0;
    transform: translateX(-20px);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
    transition-delay: 0.15s; /* サークルが回り始めた直後に寄り添うようにフェードイン */
}

/* アクティブ時に正位置に戻る */
.fv-badge-row.is-active .fv-badge-label {
    opacity: 1;
    transform: translateX(0);
}

/* FV Actions: 4 Items Row */
.fv-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 2.2rem;
    width: 100%;
}

/* アクションボタン内の子要素（ボタンとアイコン）を初期非表示・沈下 */
.fv-actions > * {
    opacity: 0;
    transform: translateY(15px);
    transition: transform 1.0s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

/* 親に is-active クラスが付与されたら、トントンと綺麗に浮き上がる */
.fv-actions.is-active > * {
    opacity: 1;
    transform: translateY(0);
}

/* CSSのみで極上のスタッガーディレイを設定（HTML側での記述エラーを防ぐ最高峰設計） */
.fv-actions.is-active > *:nth-child(1) { transition-delay: calc(0.12s * 0); }
.fv-actions.is-active > *:nth-child(2) { transition-delay: calc(0.12s * 1); }
.fv-actions.is-active > *:nth-child(3) { transition-delay: calc(0.12s * 2); }
.fv-actions.is-active > *:nth-child(4) { transition-delay: calc(0.12s * 3); }

.fv-actions__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0.75rem 1.1rem;
    border-radius: 0; /* 完全な四角形に変更 */
    font-size: clamp(0.78rem, 1vw, 0.88rem);
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.fv-actions__btn--tel {
    background: linear-gradient(135deg, #d8c3a5 0%, #a78b52 100%); /* 美しいアンティークゴールドグラデーション */
    color: #ffffff !important;
    padding: 0.85rem 1.6rem; /* 大きめのボタン */
    font-size: clamp(0.82rem, 1.1vw, 0.95rem);
    box-shadow: 0 4px 16px rgba(167, 139, 82, 0.35);
}

.fv-actions__btn--tel:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 22px rgba(167, 139, 82, 0.45);
    background: linear-gradient(135deg, #c7b293 0%, #917747 100%);
}

.fv-actions__btn--line {
    background: linear-gradient(135deg, #c2d1be 0%, #a3b89e 100%); /* セージグリーングラデーション */
    color: #ffffff !important;
    padding: 0.85rem 1.6rem;
    font-size: clamp(0.82rem, 1.1vw, 0.95rem);
    box-shadow: 0 4px 16px rgba(163, 184, 158, 0.35);
}

.fv-actions__btn--line:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 22px rgba(163, 184, 158, 0.45);
    background: linear-gradient(135deg, #b0c0ac 0%, #8e9e8a 100%);
}

@media (max-width: 480px) {
    .fv-actions {
        gap: 10px;
    }
}

/* FV Check Row: 3 Benefits */
.fv-check-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    margin-top: 2.2rem;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.fv-check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
    
    /* 初期非表示・沈下 */
    opacity: 0;
    transform: translateY(15px);
    transition: transform 1.0s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}

/* 親に is-active クラスが付与されたら、順番にふわりと浮き上がる */
.fv-check-row.is-active .fv-check-item {
    opacity: 1;
    transform: translateY(0);
}

/* メリット3項目のスタッガー（CSSのみで完結！） */
.fv-check-row.is-active .fv-check-item:nth-child(1) { transition-delay: calc(0.15s * 0); }
.fv-check-row.is-active .fv-check-item:nth-child(2) { transition-delay: calc(0.15s * 1); }
.fv-check-row.is-active .fv-check-item:nth-child(3) { transition-delay: calc(0.15s * 2); }

.fv-check-icon {
    width: 20px;
    height: 20px;
    border: 1px solid #a78b52; /* 極細の上品なゴールド枠 */
    border-radius: 50%; /* 柔らかい円型（サークル）チェックボックス */
    position: relative;
    display: inline-block;
    background-color: #FAF6F0; /* ニュアンスベージュ */
    flex-shrink: 0;
    margin-top: 2px;
    
    /* 初期状態：極小に縮小 */
    transform: scale(0);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); /* ポンッという愛らしいバウンスエフェクト */
}

/* カラムが浮き上がると同時に、アイコンが「ポンッ」と時間差を伴って可愛く拡大出現！ */
.fv-check-row.is-active .fv-check-item:nth-child(1) .fv-check-icon { transform: scale(1); transition-delay: calc(0.15s * 0 + 0.2s); }
.fv-check-row.is-active .fv-check-item:nth-child(2) .fv-check-icon { transform: scale(1); transition-delay: calc(0.15s * 1 + 0.2s); }
.fv-check-row.is-active .fv-check-item:nth-child(3) .fv-check-icon { transform: scale(1); transition-delay: calc(0.15s * 2 + 0.2s); }

/* 極細の美しいチェックマーク */
.fv-check-icon::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 7px;
    width: 4px;
    height: 8px;
    border-right: 1.5px solid #a78b52;
    border-bottom: 1.5px solid #a78b52;
    transform: rotate(45deg);
}

.fv-check-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-align: left;
}

.fv-check-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(0.82rem, 1.1vw, 0.95rem);
    font-weight: 700;
    color: #333;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.fv-check-desc {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(0.68rem, 0.9vw, 0.76rem);
    color: #666;
    letter-spacing: 0.02em;
    line-height: 1.3;
    white-space: nowrap; /* 文字列が勝手に折り返されず、常に美しく1行で表示されるように強制 */
}

@media (max-width: 767px) {
    .fv-check-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        max-width: 295px; /* 横幅を260pxから295pxに微調整し、1行のテキストが確実にゆったりと収まるようにスペースを確保 */
        margin-top: 2rem;
    }
    .fv-check-item {
        width: 100%;
    }
}

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

.fv-stack-item {
    position: relative;
    width: 33%;
    max-width: 580px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #f0f0f0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fv-stack-top {
    align-self: center;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.fv-stack-bottom-wrapper {
    align-self: center;
    margin-top: 0;
    z-index: 2;
    position: relative;
    width: 33%;
    max-width: 580px;
    overflow: visible;
}

.fv-stack-bottom {
    width: 100% !important;
    aspect-ratio: 1 / 1;
}

/* Bottom Image Badge: Elegant Circular Brown Badge */
.fv-bottom-badge {
    position: absolute;
    top: -55px; /* 右上にはみ出して重ねる */
    right: -25px;
    width: 136px;
    height: 136px;
    background-color: #f7f3ec; /* 上品で柔らかなニュアンス・ライトベージュ */
    border: 1px solid rgba(140, 113, 58, 0.25); /* 輪郭を美しく引き締める淡いゴールドブラウンの極細枠線 */
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #8c713a; /* 中の文字は上品な濃いゴールドブラウンに反転！ */
    z-index: 10;
    box-shadow: 0 10px 25px rgba(140, 113, 58, 0.12); /* ライトベージュに合わせた優しく上品な落ち影 */
    text-align: center;
    overflow: visible; /* 波紋エフェクトを外側に美しく広げるため */
    text-decoration: none; /* aタグの下線を削除 */
    cursor: pointer;
    
    /* 初期表示状態：極小サイズかつ少し傾いた状態で隠れておく */
    opacity: 0;
    transform: scale(0.3) rotate(-25deg);
    transition: transform 1.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.9s ease;
}

.fv-bottom-badge:hover {
    transform: scale(1.08) rotate(0deg) !important;
    box-shadow: 0 14px 30px rgba(140, 113, 58, 0.22);
}

/* 下段の写真（.fv-stack-bottom）がJSで浮き上がった瞬間に、バッジも一緒にクルンと拡大・フェードイン！ */
.fv-stack-bottom.show ~ .fv-bottom-badge {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* 浮き上がりが完全に完了した後に、ゆっくりと深呼吸パルス（脈打ち）を上品に起動 */
.fv-stack-bottom.show ~ .fv-bottom-badge {
    animation: bottomBadgePulse 3.5s ease-in-out infinite;
    animation-delay: 1.3s; /* transition完了後の完璧なディレイ */
}

/* 演出1：ゆっくりと自転する内側のダッシュ（点線）アンティークリング */
.fv-bottom-badge::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px dashed rgba(140, 113, 58, 0.35); /* ゴールドブラウンのアンティークな点線リング */
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    animation: badgeRingRotate 24s linear infinite; /* 24秒かけて非常にゆっくり優雅に自転 */
}

/* 演出2：背後からふわっと広がり消えていく極細のゴールド波紋エフェクト */
.fv-bottom-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1.5px solid #a78b52; /* サロンのテーマカラーである上品なアンティークゴールド */
    border-radius: 50%;
    pointer-events: none;
    z-index: -1; /* バッジ本体の裏側に配置 */
    opacity: 0;
    animation: badgeRippleEffect 3.5s cubic-bezier(0.1, 0.8, 0.3, 1) infinite; /* 深呼吸パルスと同期 */
}

.fv-badge-txt1 {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.85rem; /* サイズアップして視認性アップ */
    font-weight: 700;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(140, 113, 58, 0.3); /* ゴールドブラウンの仕切り線 */
    padding-bottom: 4px;
    margin-bottom: 5px;
    width: 82%;
    color: #8c713a; /* ゴールドブラウン */
    display: block;
    z-index: 2;
}

.fv-badge-txt2 {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.64rem; /* サイズアップ */
    font-weight: 400;
    letter-spacing: 0.03em;
    color: #a78b52; /* アンティークゴールド */
    transform: scale(0.9);
    margin-bottom: 3px;
    display: block;
    z-index: 2;
}

.fv-badge-txt3 {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.8rem; /* サイズアップ */
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #8c713a; /* ゴールドブラウン */
    display: block;
    z-index: 2;
}

@keyframes bottomBadgePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(140, 113, 58, 0.12);
    }
    50% {
        transform: scale(1.05); /* 脈動をわずかに強調してより生き生きと */
        box-shadow: 0 16px 32px rgba(140, 113, 58, 0.22);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(140, 113, 58, 0.12);
    }
}

/* 点線リングの優雅な自転キーフレーム */
@keyframes badgeRingRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ゴールド波紋の広がりキーフレーム */
@keyframes badgeRippleEffect {
    0% {
        transform: scale(1);
        opacity: 0.85;
    }
    50% {
        transform: scale(1.24); /* 緩やかに外側へ24%拡大 */
        opacity: 0; /* 広がりながらフェードアウト */
    }
    100% {
        transform: scale(1.24);
        opacity: 0;
    }
}

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

/* Decorative Cursive Text on Top Image */
.fv-stack-cursive {
    position: absolute;
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    z-index: 5; /* Overlap both images */
    font-family: 'Cormorant Garamond', serif; /* 最高級ホテルライクな極上クラシックセリフフォント */
    font-style: italic; /* 優雅なイタリック斜体に指定 */
    color: #a78b52; /* 上品なアンティークゴールド */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center text lines */
    text-align: center; /* Center text lines */
    line-height: 1.05; /* セリフフォントとして最も端正に見える完璧な行間 */
    pointer-events: none; /* クリックやホバーを邪魔しない */
    
    /* 浮き上がりアニメーション用の初期設定 */
    opacity: 0;
    transform: translate(-50%, calc(-50% + 30px)) rotate(-7deg); /* Center and slide down */
    transform-origin: center center;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.15s; /* 画像が浮き上がり始めてから一瞬遅れて優雅に追いかける極上の遅延効果 */
}

/* 上の画像（.fv-stack-top）にshowクラスが付いた瞬間に同期して優雅に浮き上がる */
.fv-stack-top.show ~ .fv-stack-cursive {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(-7deg); /* Center and slide up */
}

.cursive-line1 {
    font-size: clamp(1.2rem, 2.5vw, 2.0rem); /* Cormorant Garamond 用に調整された気品あるハーフサイズ */
    font-weight: 300; /* 極細で極めてエレガントに */
    letter-spacing: 0.08em; /* セリフ特有 of 優雅な余白を持たせる */
    color: #8c713a; /* 上品なゴールドブラウン */
    opacity: 0.28; /* 透かし（ウォーターマーク）のように控えめ極薄の半透明で気品高く！ */
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8); /* 美しい輪郭を引き立たせる白シャドウ */
}

.cursive-line2 {
    font-size: clamp(1.2rem, 2.5vw, 2.0rem);
    font-weight: 300;
    letter-spacing: 0.08em;
    padding-left: 2.2rem; /* イタリックの傾きに合わせた自然なずらし幅 */
    color: #8c713a;
    opacity: 0.28;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
}

@media (max-width: 1024px) {
    .fv-stack-cursive {
        top: 15%;
        left: 62%;
        transform: translate(0, 30px) rotate(-6deg);
    }
    .fv-stack-top.show ~ .fv-stack-cursive {
        transform: translate(0, 0) rotate(-6deg);
    }
}

@media (max-width: 768px) {
    .fv-stack-cursive {
        top: 2% !important; /* さらに上へ引き上げて画像を徹底的に回避 */
        left: 81% !important; /* 極限まで右側へ押し出し、画像の枠線からほぼ完全に独立したアウトサイドへ！ */
        
        /* 初期状態：外側へ逃がしつつフワッと浮遊 */
        opacity: 0;
        transform: translate(0, 15px) rotate(-5deg);
        transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
        transition-delay: 0.15s;
    }
    
    /* スマホ時のアクティブ出現トランスフォーム */
    .fv-stack-top.show ~ .fv-stack-cursive {
        opacity: 1;
        transform: translate(0, 0) rotate(-5deg) !important;
    }
    
    .cursive-line1, .cursive-line2 {
        font-size: clamp(0.95rem, 3.2vw, 1.4rem) !important; /* 美しくはみ出しが読める完璧なサイズ */
    }
    .cursive-line2 {
        padding-left: 1.0rem;
    }
}

.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: 100%;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Laptop Optimization for First View (screens between 1025px and 1440px wide, or screens with height 900px or less) */
@media (min-width: 1025px) and (max-width: 1440px), (min-width: 1025px) and (max-height: 900px) {
    .fv-section {
        padding: 80px 0 30px;
        min-height: 100vh;
    }
    .fv-container {
        gap: 30px;
        padding: 0 40px;
    }
    .fv-left {
        min-height: 520px;
    }
    .fv-logo {
        margin-bottom: 1.5rem;
    }
    .fv-sub {
        margin-bottom: 1.5rem;
    }
    .fv-catch {
        margin-bottom: 0.8rem;
    }
    .fv-tagline {
        margin-bottom: 1.2rem;
    }
    .fv-badge-row {
        margin-top: 1.2rem;
    }
    .fv-actions {
        margin-top: 1.5rem;
    }
    .fv-check-row {
        margin-top: 1.5rem;
        gap: 20px;
    }
    .fv-stack-item,
    .fv-stack-bottom-wrapper {
        width: 33%;
        max-width: 480px;
        aspect-ratio: 1 / 1;
    }
    .fv-stack-bottom {
        aspect-ratio: 1 / 1;
    }
    .fv-bottom-badge {
        width: 110px;
        height: 110px;
        top: -45px;
        right: -10px; /* Bring the badge slightly inward to prevent cutting off at screen edges */
    }
    .fv-badge-txt1 {
        font-size: 0.75rem;
        padding-bottom: 2px;
        margin-bottom: 3px;
    }
    .fv-badge-txt2 {
        font-size: 0.58rem;
        margin-bottom: 2px;
    }
    .fv-badge-txt3 {
        font-size: 0.7rem;
    }
}

@media (max-width: 1024px) {
    .fv-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding: 0 30px;
    }
    .fv-left {
        order: 1;
        min-height: auto;
        justify-content: center;
        padding-left: 0;
        width: 100%;
        max-width: 100%;
    }
    .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-stack-top {
        order: 2;
        width: 78% !important;
        max-width: none !important;
        align-self: center;
        aspect-ratio: 4 / 3;
    }
    .fv-stack-bottom-wrapper {
        order: 3;
        width: 78% !important;
        max-width: none !important;
        margin-top: -50px !important;
        align-self: center;
    }
    .fv-stack-bottom {
        width: 100% !important;
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 768px) {
    .fv-section { padding: 80px 0 40px; }
    
    /* 親コンテナを縦積みFlexに設定し、要素の間隔をスマートに調整 */
    .fv-container { 
        padding: 0 20px; 
        gap: 0; 
        display: flex; 
        flex-direction: column; 
    }
    
    /* 魔法の display: contents で親階層をフラット化し、直下の order 制御を有効に */
    .fv-left,
    .fv-left-content { 
        display: contents; 
    }
    
    /* スマートフォン時の極上の視覚的順序（order）を設定 */
    .fv-stack-top {
        order: 1;
        width: 82% !important;
        max-width: none !important;
        margin: 0 auto 2.2rem !important; /* Margins to separate from text below */
        aspect-ratio: 4 / 3;
    }
    
    .fv-catch { order: 2; font-size: 1.2rem; line-height: 1.6; }
    .fv-sub { order: 3; font-size: 0.85rem; }
    .fv-logo { order: 4; font-size: 2.5rem; margin-bottom: 1.2rem !important; }
    
    /* ★タグライン（姿勢改善〜サポート）をロゴ（パーソナルトレーニング）のすぐ真下に配置！ */
    .fv-tagline { order: 5; margin-bottom: 1.5rem !important; }
    
    .fv-badge-row { order: 6; margin-top: 0 !important; margin-bottom: 2.2rem !important; }
    .fv-features { order: 7; margin-bottom: 1.8rem !important; }
    
    .fv-stack-bottom-wrapper {
        order: 8;
        width: 82% !important;
        max-width: none !important;
        margin: 0 auto 2.2rem !important; /* Normal bottom margin, no negative overlap */
        z-index: 5 !important;
    }
    .fv-stack-bottom {
        width: 100% !important;
        aspect-ratio: 4 / 3;
    }
    
    .fv-actions {
        order: 9;
        margin-top: 0 !important;
        margin-bottom: 2rem !important;
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
        width: 100%;
    }
    .fv-actions__btn {
        width: 100%;
        max-width: 290px;
        padding: 0.85rem 1.2rem;
        font-size: 0.85rem;
    }
    .fv-check-row { order: 10; margin-top: 0 !important; margin-bottom: 2rem !important; }
    
    /* 下矢印は一番下へ */
    .fv-read-more { order: 11; }
    
    @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; }
    
    /* Responsive Badge Sizing for Mobile */
    .fv-bottom-badge {
        width: 100px !important; /* 少しコンパクトにして上品に */
        height: 100px !important;
        top: -48px !important;   /* 画像の上の枠線にポンッと綺麗に乗せて露出させる！ */
        right: 8px !important;   /* 画面の右端にはみ出さず完璧に見えるよう内側へシフト！ */
        z-index: 100 !important; /* 上の画像(fv-stack-top)の下に絶対に潜り込まないよう最前面へ！ */
    }
    .fv-badge-txt1 {
        font-size: 0.68rem;
        padding-bottom: 3px;
        margin-bottom: 4px;
        width: 82%;
    }
    .fv-badge-txt2 {
        font-size: 0.52rem;
        margin-bottom: 2px;
    }
    .fv-badge-txt3 {
        font-size: 0.66rem;
    }

    /* 3つのアピールポイント（姿勢改善・不調ケア・ボディメイク）をスマホで綺麗に1行に収めるための最適化 */
    .fv-feature-item {
        padding: 0 0.4rem; /* 左右の余白を縮めて横幅にゆとりを確保 */
    }
    .fv-feature-title {
        font-size: 0.85rem;
        white-space: nowrap; /* 「ボディメイク」などが絶対に途中で改行しないように1行に強制 */
    }
    .fv-feature-desc {
        font-size: 0.62rem;
        white-space: nowrap; /* 説明文も綺麗に1行で表示 */
    }
    .fv-feature-divider {
        height: 24px; /* 仕切り線の高さもバランス良く小さく */
    }

    /* キャッチフレーズもスマホで絶対に1行で折れないように最適化 */
    .fv-tagline {
        font-size: clamp(1.6rem, 7vw, 2.4rem);
        letter-spacing: 0.2em;
        text-indent: 0.2em;
        white-space: nowrap;
        margin-bottom: 1.5rem;
    }

    /* スマホ時に「パーソナルトレーニング」を綺麗に2行に折るための出し分け */
    .fv-logo .pc-only {
        display: none !important;
    }
    .fv-logo .sp-only {
        display: block !important;
    }
}

@media (max-width: 480px) {
    .fv-catch { font-size: 1.1rem; }
    .fv-logo { font-size: 2rem; margin-bottom: 1.5rem; }
    .fv-stack-bottom-wrapper { margin-top: -30px !important; }
    
    /* 極小スマホ（iPhone SEなど）向けに余白とサイズを限界調整 */
    .fv-feature-item {
        padding: 0 0.25rem;
    }
    .fv-feature-title {
        font-size: 0.78rem;
    }
    .fv-feature-desc {
        font-size: 0.58rem;
        transform: scale(0.95);
    }
}

.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: #0068b7;
    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: -70px; /* 初期状態は画面外に沈めて完全に隠しておく */
    left: 0;
    width: 100%;
    height: 60px;
    display: flex;
    z-index: 2000;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    
    /* 下からフワッとスライドインしてくる極上のトランジションを設定 */
    transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, visibility 0.4s ease;
    opacity: 0;
    visibility: hidden;
}

/* スクロールしてFVを抜けたら、下から上品にスライドイン！ */
.sp-cta.is-show {
    bottom: 0;
    opacity: 1;
    visibility: visible;
}

.sp-cta__btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: 0.3s;
    gap: 3px;
}

.sp-cta__btn svg {
    display: block;
    margin: 0;
    fill: currentColor;
}

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

.sp-cta__btn--line {
    background-color: #a3b89e; /* Sage Green */
    color: #ffffff;
}

.sp-cta__btn--tel {
    background-color: #0068b7;
    color: #ffffff;
    flex-direction: row;
    font-size: 14px;
    gap: 8px;
}

.sp-cta__btn--hp {
    background-color: #d4a5b3; /* Dusty Pink */
    color: #ffffff;
}

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

    /* Task 5: Spacing for headline in personal section */
    .personal__text-side {
        padding: 40px 15px !important; /* Narrower side padding as requested */
    }

    .personal__title {
       font-size: 1.4rem; /* Slightly smaller for mobile if needed */
    }
}

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

/* Small device breakpoint (375px and below) */
.sp-small {
    display: none !important;
}

@media (max-width: 768px) {
    .sp-only {
        display: flex !important;
    }
    br.sp-only {
        display: block !important;
    }
    .why-choose__title {
        font-size: 1.7rem !important;
    }
    /* Hide CTA when menu is open */
    body.no-scroll .sp-cta {
        display: none !important;
    }
    body.no-scroll .pagetop {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
}

@media (max-width: 375px) {
    .sp-small {
        display: block !important;
    }
    br.sp-small {
        display: block !important;
    }
    .why-choose__title {
        font-size: 1.4rem;
    }
}

/* Before & After Section */
.before-after {
    position: relative;
    padding: 100px 20px;
    background-color: #ebf3fa; /* Very soft beige matching the brand */
    overflow: hidden;
}

.before-after__inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.before-after__header {
    text-align: center;
    margin-bottom: 50px;
}



.before-after__title {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    color: #073973;
    letter-spacing: 0.1em;
    font-weight: 500;
    margin-bottom: 20px;
    font-family: var(--ff-jp-serif);
}

.before-after__lead {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

/* Slider */
.before-after__slider {
    padding: 20px 50px 80px !important; /* 左右に矢印用の余白、下にドット用の余白を確俁E*/
    position: relative;
}

.before-after__slide {
    height: auto;
    transition: transform 0.3s ease;
}

.before-after__img-box {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    background: #fff;
    border: 1px solid #eaeaea;
    transition: box-shadow 0.3s ease;
}

.before-after__img-box:hover {
    box-shadow: 0 15px 40px rgba(191, 166, 116, 0.15);
}

.before-after__img-box img {
    width: 100%;
    height: auto;
    display: block;
}

/* Pagination & Navigation */
.before-after__pagination {
    bottom: 30px !important; /* 画像�E遥か下に配置 */
}

.before-after__pagination .swiper-pagination-bullet {
    background: #cca365;
    opacity: 0.4;
    width: 8px;
    height: 8px;
    margin: 0 6px !important;
    transition: all 0.3s ease;
}

.before-after__pagination .swiper-pagination-bullet-active {
    background: #bfa674;
    opacity: 1;
    width: 24px;
    border-radius: 4px;
}

.before-after__prev,
.before-after__next {
    color: #cca365 !important; /* 上品なゴールド�E細矢印に変更 */
    width: 40px;
    height: 40px;
    background: none !important; /* 白ぁE��枠を削除 */
    border-radius: 0;
    box-shadow: none !important; /* シャドウを削除 */
    border: none !important; /* ボ�Eダーを削除 */
    transition: all 0.3s ease;
    top: calc(50% - 30px) !important; /* 上下中央揁E���E�ドチE��余白刁E��老E�Eして調整�E�E*/
}

.before-after__prev::after,
.before-after__next::after {
    font-size: 1.8rem !important; /* 矢印を少し細く大きめに */
    font-weight: 300;
}

.before-after__prev:hover,
.before-after__next:hover {
    color: #bfa674 !important;
    transform: scale(1.2); /* ホバー時にふわっと少し拡大 */
}

.before-after__prev {
    left: 5px !important; /* 確保した余白のなかに綺麗に収めめE*/
}

.before-after__next {
    right: 5px !important;
}

.before-after__note {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin-top: 20px;
}

/* SP Responsive */
@media (max-width: 768px) {
    .before-after {
        padding: 60px 15px;
    }
    
    .before-after__header {
        margin-bottom: 30px;
    }
    
    .before-after__lead {
        font-size: 0.9rem;
    }
    
    .before-after__slider {
        padding: 10px 0 50px !important; /* スマ�Eでははみ出し効果を活かすため左右パディングは0 */
        overflow: visible !important;
    }
    
    .before-after__prev,
    .before-after__next {
        display: none !important;
    }
}

/* Before & After Modal Overlay */
.ba-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.ba-modal.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.ba-modal__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(25, 20, 15, 0.85);
    backdrop-filter: blur(8px);
    cursor: zoom-out;
}

.ba-modal__content {
    position: relative;
    max-width: 90%;
    max-height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0.92);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.ba-modal.is-active .ba-modal__content {
    transform: scale(1);
}

.ba-modal__content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ba-modal__close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.8rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ba-modal__close:hover {
    color: #bfa674;
    transform: scale(1.1);
}

/* Modal Body Lock Styling */
body.no-scroll {
    overflow: hidden !important;
}

/* SP Responsive for Modal */
@media (max-width: 768px) {
    .ba-modal__content {
        max-width: 95%;
        max-height: 75vh;
    }
    
    .ba-modal__content img {
        max-height: 75vh;
    }
    
    .ba-modal__close {
        top: -45px;
        right: 0px;
        font-size: 2.4rem;
    }
}

/* ==========================================================================
   WHY CHOOSE US Section (Comparison Table)
   ========================================================================== */
.why-choose {
    padding: 100px 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: radial-gradient(circle at top left, #fff, #faf6f0);
}

/* 背景画像が強すぎなぁE��ぁE��白の半透�Eオーバ�Eレイを重ねて斁E��を読みめE��くすめE*/
.why-choose::before {
    display: none;
}
.why-choose-disabled::before {
    content: "";
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: rgba(255, 255, 255, 0.88); /* 背景画像をより薁E���E�控えめに�E�見せるためにオーバ�Eレイの不透�E度をアチE�E */
    z-index: -1;
}

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

.why-choose__header {
    text-align: center;
    margin-bottom: 50px;
}

.why-choose__en {
    display: block;
    color: #bfa674;
    font-size: 1.2rem;
    letter-spacing: 0.15em;
    font-family: var(--ff-en-fancy);
    margin-bottom: 10px;
}

.why-choose__title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    color: #333;
    font-family: var(--ff-jp-serif);
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.why-choose__lead {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

.why-choose__top-img {
    max-width: 140px;
    margin: 5px auto 20px;
}

.why-choose__top-img img {
    width: 100%;
    height: auto;
}

/* Table Styles */
.why-choose__table-wrap {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 60px;
}

.why-choose__table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    text-align: center;
}

.why-choose__table th,
.why-choose__table td {
    padding: 25px 15px;
    vertical-align: middle;
    border-bottom: 1px solid #eaeaea;
    background-clip: padding-box;
}

.why-choose__table tbody tr:last-child th,
.why-choose__table tbody tr:last-child td {
    border-bottom: none;
}

.why-choose__th-blank {
    width: 25%;
    border-right: 1px solid #eaeaea;
    border-bottom: 2px solid #eaeaea;
}

.why-choose__th-our {
    width: 40%;
    background-color: #fbf9f6;
    border-right: 1px solid #eaeaea;
    border-bottom: 2px solid #bfa674 !important;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}

.why-choose__th-logo {
    font-family: var(--ff-en-fancy);
    font-size: 1.5rem;
    color: #bfa674;
    letter-spacing: 0.1em;
}

.why-choose__th-other {
    width: 35%;
    background-color: #f7f7f7;
    color: #888;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 2px solid #eaeaea;
}

/* Row Headers (Left Col) */
.why-choose__row-header {
    border-right: 1px solid #eaeaea;
    background-color: #fff;
    text-align: center;
}

/* 各項目の背景色をそれぞれ変える（PC版・サイトトーンに合わせた上品な淡い色） */
.why-choose__row:nth-child(1) .why-choose__row-header { background-color: #fdfaf6; }
.why-choose__row:nth-child(2) .why-choose__row-header { background-color: #fdf5f5; }
.why-choose__row:nth-child(3) .why-choose__row-header { background-color: #f4f8f6; }
.why-choose__row:nth-child(4) .why-choose__row-header { background-color: #f5f7fa; }
.why-choose__row:nth-child(5) .why-choose__row-header { background-color: #fbf5fa; }

.why-choose__row-icon {
    display: block;
    width: 40px;
    height: auto;
    margin: 0 auto 10px;
    mix-blend-mode: multiply; /* 白背景を透明化して馴染ませる */
}

.why-choose__row-label {
    font-size: 1rem;
    color: #333;
    font-weight: bold;
    letter-spacing: 0.05em;
}

/* Our Column (Middle Col) */
.why-choose__td-our {
    background-color: #fbf9f6;
    border-right: 1px solid #eaeaea;
    color: #333;
    font-size: 1.05rem;
    font-weight: bold;
    line-height: 1.6;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}
.why-choose__td-our::before {
    content: "◁E;
    display: block;
    color: #cca365;
    font-size: 1.5rem;
    margin-bottom: 5px;
}
.why-choose__marker {
    background: linear-gradient(transparent 65%, rgba(204, 163, 101, 0.35) 65%);
    font-weight: 800;
}

/* Other Column (Right Col) */
.why-choose__td-other {
    background-color: #f7f7f7;
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
}
.why-choose__td-other::before {
    content: "△";
    display: block;
    color: #bbb;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* Row Staggered Animation */
.why-choose__row {
    opacity: 0;
    transition: opacity 0.6s ease;
}
.why-choose.is-active .why-choose__row {
    opacity: 1;
}
.why-choose.is-active .why-choose__row:nth-child(1) { transition-delay: 0.1s; }
.why-choose.is-active .why-choose__row:nth-child(2) { transition-delay: 0.2s; }
.why-choose.is-active .why-choose__row:nth-child(3) { transition-delay: 0.3s; }
.why-choose.is-active .why-choose__row:nth-child(4) { transition-delay: 0.4s; }
.why-choose.is-active .why-choose__row:nth-child(5) { transition-delay: 0.5s; }

/* Footer Styles */
.why-choose__footer {
    text-align: center;
}

.why-choose__footer-text {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: #333;
    font-weight: bold;
    line-height: 1.8;
    font-family: var(--ff-jp-serif);
    margin-bottom: 30px;
}

.why-choose__footer-img {
    max-width: 250px;
    margin: 0 auto;
}

.why-choose__footer-img img {
    width: 100%;
    height: auto;
}

/* SP Responsive */
@media (max-width: 768px) {
    .why-choose {
        padding: 60px 15px;
    }
    .campaign::after {
        background-image: url('../img/choose_pcbg.png');
        background-position: right center;
    }
    
    .why-choose__table-wrap {
        background: transparent;
        box-shadow: none;
        margin-bottom: 40px;
        overflow: visible;
    }
    .why-choose__table, .why-choose__table tbody, .why-choose__table th, .why-choose__table td, .why-choose__row {
        display: block;
        width: auto;
        border: none;
        padding: 0;
    }
    .why-choose__table thead {
        display: none;
    }
    
    .why-choose__row {
        background: #fbf9f6;
        border: 1px solid #eaeaea;
        border-radius: 12px;
        margin-bottom: 30px;
        overflow: hidden;
        display: block;
        box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    }
    
    .why-choose__row-header {
        background: #f7f7f7;
        padding: 40px 15px !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 12px;
        border-bottom: 1px solid #eaeaea;
    }
    
    /* 各項目の背景色をそれぞれ変える（サイトトーンに合わせた上品な淡い色） */
    .why-choose__row:nth-child(1) .why-choose__row-header { background-color: #fdfaf6; } /* 淡いベージュ */
    .why-choose__row:nth-child(2) .why-choose__row-header { background-color: #fdf5f5; } /* 淡いピンク系ベージュ */
    .why-choose__row:nth-child(3) .why-choose__row-header { background-color: #f4f8f6; } /* 淡いグリーン系ベージュ */
    .why-choose__row:nth-child(4) .why-choose__row-header { background-color: #f5f7fa; } /* 淡いブルー系ベージュ */
    .why-choose__row:nth-child(5) .why-choose__row-header { background-color: #fbf5fa; } /* 淡いパープル系ベージュ */
    
    .why-choose__row-icon {
        display: block;
        margin: 0 auto;
        width: 60px;
        mix-blend-mode: multiply;
    }
    
    .why-choose__row-label {
        font-size: 1rem;
    }
    
    .why-choose__td-our, .why-choose__td-other {
        padding: 22px 20px !important;
        position: relative;
        text-align: center;
        display: block;
        line-height: 1.8;
    }
    
    .why-choose__td-our {
        background: #fbf9f6;
        font-size: 0.95rem;
        border-bottom: 1px solid #eaeaea;
    }
    
    .why-choose__td-other {
        background: #fff;
        font-size: 0.85rem;
    }
    
    
    .why-choose__td-our::before, .why-choose__td-other::before {
        display: block;
        width: fit-content;
        margin: 0 auto 12px auto;
        font-size: 0.75rem;
        font-weight: bold;
        padding: 4px 10px;
        border-radius: 4px;
        letter-spacing: 0.05em;
    }
    
    @keyframes heartbeatPoyo {
        0% { transform: scale(1); }
        15% { transform: scale(1.15); }
        30% { transform: scale(1); }
        45% { transform: scale(1.15); }
        60% { transform: scale(1); }
        100% { transform: scale(1); }
    }
    
    .why-choose__td-our::before {
        content: attr(data-label);
        background: #cca365;
        color: #fff;
        animation: heartbeatPoyo 2.5s infinite ease-in-out;
    }
    
    .why-choose__td-other::before {
        content: "△ " attr(data-label);
        background: #eee;
        color: #555;
    }
    
    .why-choose__footer-text {
        font-size: 1.15rem;
    }
}
.campaign__main-box {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.campaign__main-img {
    max-width: 680px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.sp-nav__btn--hp a:hover,
.sp-nav__btn--hp a:active {
    background-color: #d4a5b3;
    color: #ffffff !important;
}

.sp-nav__btn--line a:hover,
.sp-nav__btn--line a:active {
    background-color: #a3b89e;
    color: #ffffff !important;
}
.sp-nav__btn--tel a:hover,
.sp-nav__btn--tel a:active {
    background-color: #0068b7;
    color: #ffffff !important;
}

/* ==========================================================================
   Struggle Section Scroll Jank Fix (GPU Acceleration)
   ========================================================================== */
/* お悩みセクション画像のスクロール時の位置ズレ・ガタつき・チラつきバグをGPUアクセラレーションで100%完全解消 */
.struggle-new__right img {
    transform: translateZ(0);
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
/* Voice Slider Pagination */
.voice-slider__pagination .swiper-pagination-bullet {
    background: #ccc;
    opacity: 0.6;
    width: 8px;
    height: 8px;
    transition: all 0.3s ease;
}
.voice-slider__pagination .swiper-pagination-bullet-active {
    background: #a78b52;
    opacity: 1;
    width: 20px;
    border-radius: 4px;
}

/* ==========================================================================
   Flow Section (Vertical Layout)
   ========================================================================== */
.flow-section {
    padding: 100px 0;
    position: relative !important;
    overflow: hidden;
    clip-path: inset(0 0 0 0) !important;
}

.flow-section::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(244, 244, 246, 0.25), rgba(244, 244, 246, 0.25)), url("../img/flow_bg.png") no-repeat center center;
    background-size: cover;
    z-index: -1;
    pointer-events: none;
    opacity: 0.95; /* 背景画像をより濃く鮮明に見せるための不透明度調整 */
}

.flow-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--side-padding, 20px);
}

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

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

.flow-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    color: #000;
    opacity: 0.6;
    animation: flowArrowBounce 2.5s infinite ease-in-out;
    margin: -10px 0;
}



@keyframes flowArrowBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(6px);
    }
}

.flow-item {
    display: flex;
    align-items: stretch;
    background: #fff;
    border: 1px solid #f3eedf;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(167, 139, 82, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.flow-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(167, 139, 82, 0.08);
    border-color: var(--clr-sub, #a78b52);
}

/* Alternating layout for desktop */
.flow-item:nth-child(even) {
    flex-direction: row-reverse;
}

.flow-item__img-box {
    width: 45%;
    min-height: 240px;
    overflow: hidden;
    background-color: #f0f0f0;
    position: relative;
}

.flow-item__img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.flow-item:hover .flow-item__img-box img {
    transform: scale(1.05);
}

.flow-item__content {
    width: 55%;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flow-item__num {
    font-family: var(--ff-en-fancy, serif);
    font-size: 2.2rem;
    color: #8fa7cd;
    line-height: 1;
    display: block;
    margin-bottom: 12px;
    opacity: 0.8;
}

.flow-item__title {
    font-family: var(--ff-jp-serif, serif);
    font-size: 1.25rem;
    color: #073973;
    margin-bottom: 12px;
    line-height: 1.4;
    font-weight: 500;
}

.flow-item__text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .flow-section {
        padding: 70px 0;
    }
    
    .flow-list {
        gap: 30px;
    }

    .flow-item,
    .flow-item:nth-child(even) {
        flex-direction: column;
    }

    .flow-item__img-box {
        width: 100%;
        min-height: auto;
        aspect-ratio: 16 / 10;
    }

    .flow-item__content {
        width: 100%;
        padding: 25px 20px;
    }
    
    .flow-item__title {
        font-size: 1.15rem;
    }
}

/* .menu__bullets-list {
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .menu__bullets-list {
        font-size: 0.825rem;
    }
} */

/* ==========================================================================
   SHORTCUT CTA SECTION
   ========================================================================== */
.shortcut-cta {
    padding: 60px 20px 80px;
    background-color: #ffffff;
    text-align: center;
    position: relative;
    z-index: 2;
}

.shortcut-cta__inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.shortcut-cta__banner {
    width: 100%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.shortcut-cta__banner img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.shortcut-cta__banner:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(167, 139, 82, 0.12);
}

.shortcut-cta__banner:hover img {
    transform: scale(1.03);
}

.shortcut-cta__title {
    font-family: var(--ff-jp-serif);
    font-size: 1.35rem;
    font-weight: 500;
    color: #333;
    letter-spacing: 0.1em;
    margin-top: 10px;
    position: relative;
}

.shortcut-cta__title::after {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    background-color: #a78b52;
    margin: 8px auto 0;
}

.shortcut-cta__actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    margin-top: 5px;
}

.shortcut-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.95rem 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 320px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 0;
}

.shortcut-cta__btn--tel {
    background: linear-gradient(135deg, #d8c3a5 0%, #a78b52 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 16px rgba(167, 139, 82, 0.3);
}

.shortcut-cta__btn--tel:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 22px rgba(167, 139, 82, 0.4);
    background: linear-gradient(135deg, #c7b293 0%, #917747 100%);
}

.shortcut-cta__btn--line {
    background: linear-gradient(135deg, #c2d1be 0%, #a3b89e 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 16px rgba(163, 184, 158, 0.3);
}

.shortcut-cta__btn--line:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 22px rgba(163, 184, 158, 0.4);
    background: linear-gradient(135deg, #b0c0ac 0%, #8e9e8a 100%);
}

@media (max-width: 768px) {
    .shortcut-cta {
        padding: 50px 15px 60px;
    }
    
    .shortcut-cta__inner {
        gap: 24px;
    }
    
    .shortcut-cta__title {
        font-size: 1.15rem;
    }

    .shortcut-cta__actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .shortcut-cta__btn {
        width: 100%;
        max-width: none;
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   TROUBLE SECTION (New Curved Design)
   ========================================================================== */
.trouble-section {
    position: relative;
    padding: 100px 20px 150px;
    background-color: #f0f5fa;
    overflow: hidden;
    clip-path: ellipse(150% 100% at 50% 0%); /* Curved bottom */
    z-index: 2; /* Ensure it overlays solution section */
}

.trouble-container {
    max-width: 1100px;
    margin: 0 auto;
}

.trouble-header {
    text-align: center;
    margin-bottom: 4rem;
}

.trouble-en {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-family: var(--ff-en-fancy);
    font-size: 1.1rem;
    color: #0068b7;
    letter-spacing: 0.25em;
    margin-bottom: 1rem;
}

.trouble-en::before,
.trouble-en::after {
    content: "";
    height: 1px;
    width: 60px;
    background-color: #0068b7;
}

.trouble-title {
    font-family: var(--ff-jp-serif);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    color: #073973;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
    line-height: 1.4;
}

.trouble-lead {
    font-family: var(--ff-jp-serif);
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
}

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

.trouble-box {
    background-color: #fff;
    border-radius: 16px;
    padding: 35px 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trouble-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(7, 57, 115, 0.08);
}

.trouble-box__icon-wrap {
    width: 80px;
    height: 80px;
    background-color: #ebf3fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trouble-box__icon-wrap img {
    width: 60%;
    height: auto;
    object-fit: contain;
}

.trouble-box__content {
    flex: 1;
}

.trouble-box__title {
    font-family: var(--ff-jp-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: #0068b7;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px dotted rgba(0, 104, 183, 0.25);
    line-height: 1.4;
}

.trouble-box__text {
    font-family: var(--ff-jp-sans);
    font-size: 0.92rem;
    line-height: 1.7;
    color: #444;
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .trouble-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .trouble-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
    }
    
    .trouble-box__title {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media (max-width: 768px) {
    .trouble-section {
        padding: 70px 15px 100px;
        clip-path: ellipse(200% 100% at 50% 0%);
    }
    
    .trouble-header {
        margin-bottom: 3rem;
    }
    
    .trouble-lead {
        font-size: 1rem;
        text-align: left;
    }
}

/* ==========================================================================
   REASON SECTION (Copied section with fixed background)
   ========================================================================== */
.reason-section {
    position: relative;
    clip-path: inset(0 0 0 0); /* Flat bottom, clips fixed background to section boundary */
    background-color: transparent !important; /* Override default solid background */
    z-index: 1;
}

@media (max-width: 768px) {
    .reason-section {
        clip-path: inset(0 0 0 0);
    }
}

.reason-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f0f5fa; /* Fallback light blue base */
    z-index: -3;
}

.reason-section::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/reson_bg_01.png') no-repeat center center;
    background-size: cover;
    z-index: -2;
    pointer-events: none;
}
