/* Global Reset & Variables */
:root {
    --primary-color: #333;
    --accent-color: #699480;
    /* Green from design */
    --bg-color: #F5F5F5;
    --font-base: 'Noto Sans JP', sans-serif;
    --font-serif: 'Zen Old Mincho', serif;
    --width-base: 375px;
    --header-height: 61px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-base);
    background-color: #f0f0f0;
    /* Desktop bg */
    color: #333;
    /* Removed display: flex/justify-center to prevent scroll issues */
    min-height: 100vh;
    overflow-y: scroll;
    /* Force vertical scrollbar */
    height: auto;
}

/* Container */
.container {
    width: var(--width-base);
    min-height: 100vh;
    background-color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    margin: 0 auto;
    position: relative;
    /* overflow: hidden; Removed to prevent cutting off flow content */
    padding-top: 61px;
    padding-bottom: 0px;
    /* Removed massive buffer */
    overflow-x: visible;
    /* Explicitly allow horizontal overflow for breakout */
}

a {
    text-decoration: none;
    color: inherit;
}

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

.hero-copy-img {
    width: 100%;
    height: auto;
}

/* Feature Badge 2 */
.feature-badge-2 {
    position: absolute;
    top: 331px;
    /* 392 - 61 */
    left: 140px;
    /* Figma node 49:22 X */
    width: 96px;
    height: 96px;
    z-index: 5;
    transform: none;
    /* Remove centering transform */
}

/* Feature Badge 3 (Group 55) */
.feature-badge-3 {
    position: absolute;
    top: 371px;
    /* 432 - 61 */
    left: 246px;
    /* Right side symmetrical: 375 - 32 - 97 = 246 */
    width: 97px;
    height: 97px;
    z-index: 5;
}

/* Group 56 (Vertical Label?) */
.hero-group-56 {
    position: absolute;
    top: 31px;
    /* 92 - 61 */
    left: 332px;
    /* Node 44:96 X */
    z-index: 4;
    width: 24px;
    height: auto;
    opacity: 0;
    -webkit-mask-image: linear-gradient(to bottom, #000 50%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 50%, transparent 100%);
    -webkit-mask-size: 100% 200%;
    mask-size: 100% 200%;
    -webkit-mask-position: 0 100%;
    mask-position: 0 100%;
    -webkit-animation: nishiwakiReveal 2.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    animation: nishiwakiReveal 2.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    animation-delay: 0.5s;
    /* 同時に開始 */
}

/* Group 57 (Vertical Bar Node 33:22) */
.hero-group-57 {
    position: absolute;
    top: 31px;
    /* 92 - 61 */
    left: 279px;
    /* Node 33:22 X */
    z-index: 4;
    height: 293px;
    width: auto;
    opacity: 0;
    -webkit-mask-image: linear-gradient(to bottom, #000 50%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 50%, transparent 100%);
    -webkit-mask-size: 100% 200%;
    mask-size: 100% 200%;
    -webkit-mask-position: 0 100%;
    mask-position: 0 100%;
    -webkit-animation: nishiwakiReveal 2.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    animation: nishiwakiReveal 2.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    animation-delay: 0.5s;
    /* 同時に開始 */
}

.hero-group-57 img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* Group 58 (Vertical Bar Node 33:23) */
.hero-group-58 {
    position: absolute;
    top: 31px;
    /* 92 - 61 */
    left: 244px;
    /* Node 33:23 X */
    z-index: 4;
    width: 31px;
    height: auto;
    opacity: 0;
    -webkit-mask-image: linear-gradient(to bottom, #000 50%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 50%, transparent 100%);
    -webkit-mask-size: 100% 200%;
    mask-size: 100% 200%;
    -webkit-mask-position: 0 100%;
    mask-position: 0 100%;
    -webkit-animation: nishiwakiReveal 2.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    animation: nishiwakiReveal 2.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    animation-delay: 0.5s;
    /* 同時に開始 */
}

@-webkit-keyframes nishiwakiReveal {
    0% {
        opacity: 0;
        -webkit-mask-position: 0 100%;
        mask-position: 0 100%;
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }

    10% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        -webkit-mask-position: 0 0%;
        mask-position: 0 0%;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes nishiwakiReveal {
    0% {
        opacity: 0;
        -webkit-mask-position: 0 100%;
        mask-position: 0 100%;
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }

    10% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        -webkit-mask-position: 0 0%;
        mask-position: 0 0%;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/* Group 59 (Node 49:28) */
.hero-group-59 {
    position: absolute;
    top: 463px;
    /* 524 - 61 */
    left: 141px;
    /* Node 49:28 X */
    z-index: 5;
    width: 107px;
    /* Node width */
    height: auto;
}

/* Feature Badge 2 Internal elements removed */
.badge-img-full {
    width: 100%;
    height: auto;
}

/* Feature Badge 1 (Nodes 66:242, 44:92, 44:85, 66:244) */
.feature-badge-1 {
    position: absolute;
    top: 371px;
    /* Figma Y - 61 */
    left: 32px;
    /* Figma X */
    width: 97px;
    height: 97px;
    z-index: 5;
}

/* Internal elements removed as we use full image Group 54.svg */

/* Hero */
.hero {
    position: relative;
    width: 100%;
    height: 580px;
    /* Reduced from 800px to eliminate large gap */
    background-color: #ffffff;
    /* Unified to pure white */
    overflow: hidden;
}

/* CTA Button Group */
.hero-cta-container {
    position: absolute;
    top: 492px;
    left: 20px;
    width: 336px;
    z-index: 10;
    transition: opacity 0.3s ease;
    overflow: hidden;
}

.hero-cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 3s ease-in-out infinite;
    animation-delay: 1s;
    z-index: 1;
    pointer-events: none;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

.hero-cta-container:hover {
    opacity: 0.8;
}

.hero-cta-container img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 0;
}

/* Node 546:1034 Removed */

/* 4 Big Benefits (Node 542:990) */
.benefits-group {
    position: relative;
    /* Changed from absolute to flow below hero */
    margin: 10px auto 0;
    /* Reduced margin even further to bring content up */
    width: 337px;
    /* Node width */
    height: 700px;
    /* Let content dictate height */
    z-index: 5;
}

.benefits-group img {
    margin: 0;
    padding: 0;
    display: block;
    /* Remove inline gap */
}

.benefits-group>img:first-child {
    position: relative;
    z-index: 0;
}

/* Node 369:21 "1,000" Overlay */
.benefits-price-1000 {
    position: absolute;
    top: 162px;
    /* Adjusted lower by user request */
    left: 144px;
    /* 163 - 19 */
    width: 142px;
    /* Node width */
    height: 84px;
    /* Node height */
    z-index: 6;
    /* On top of base image */
    overflow: hidden;
}

.benefits-price-1000 img {
    width: 100%;
    height: auto;
    display: block;
}

.benefits-price-1000::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 3s ease-in-out infinite;
    animation-delay: 1.5s;
    z-index: 1;
    pointer-events: none;
}


/* Node 378:158 "0" */
.benefits-price-0 {
    position: absolute;
    top: 439px;
    /* 444 - 5 */
    left: 229px;
    /* 234 - 5 */
    width: 38px;
    height: 91px;
    z-index: 6;
    overflow: hidden;
}

.benefits-price-0 img {
    width: 100%;
    height: auto;
    display: block;
}

.benefits-price-0::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 3s ease-in-out infinite;
    animation-delay: 2s;
    z-index: 1;
    pointer-events: none;
}

/* Vector 86 */
.benefits-vector-86 {
    position: absolute;
    top: 592px;
    /* 587 + 5 */
    left: 79px;
    /* 76 + 3 */
    width: 223px;
    height: auto;
    z-index: 6;
}

.benefits-vector-86 img {
    width: 100%;
    height: auto;
    display: block;
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
}

.benefits-vector-86.animate-draw img {
    -webkit-animation: drawLine 0.8s ease-out forwards;
    animation: drawLine 0.8s ease-out forwards;
}

/* Vector 73 (Underline) */
.benefits-vector-73 {
    position: absolute;
    top: 344px;
    /* Adjusted upwards by user request */
    left: 76px;
    /* 95 - 19 */
    width: 120px;
    /* 119.5 */
    height: auto;
    z-index: 6;
}

.benefits-vector-73 img {
    width: 100%;
    height: auto;
    display: block;
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
}

.benefits-vector-73.animate-draw img {
    -webkit-animation: drawLine 0.8s ease-out forwards;
    animation: drawLine 0.8s ease-out forwards;
}

@-webkit-keyframes drawLine {
    0% {
        -webkit-clip-path: inset(0 100% 0 0);
        clip-path: inset(0 100% 0 0);
    }

    100% {
        -webkit-clip-path: inset(0 0% 0 0);
        clip-path: inset(0 0% 0 0);
    }
}

@keyframes drawLine {
    0% {
        -webkit-clip-path: inset(0 100% 0 0);
        clip-path: inset(0 100% 0 0);
    }

    100% {
        -webkit-clip-path: inset(0 0% 0 0);
        clip-path: inset(0 0% 0 0);
    }
}

/* Vector 75 (Underline 2) */
.benefits-vector-75 {
    position: absolute;
    top: 411px;
    /* 1055 - 644 */
    left: 81px;
    /* 100 - 19 */
    width: 103px;
    /* 103 */
    height: auto;
    z-index: 6;
}

.benefits-vector-75 img {
    width: 100%;
    height: auto;
    display: block;
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
}

.benefits-vector-75.animate-draw img {
    -webkit-animation: drawLine 0.8s ease-out forwards;
    animation: drawLine 0.8s ease-out forwards;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

/* Container */
.container {
    width: var(--width-base);
    min-height: 100vh;
    background-color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    margin: 0 auto;
    position: relative;
    /* overflow: hidden; Removed to prevent cutting off flow content */
    padding-top: 61px;
}

/* Utility */
.font-serif {
    font-family: var(--font-serif);
}

.placeholder-box {
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #666;
}

/* Header Styles (Group 54) */
.header {
    width: 375px;
    /* Constrain width since it is outside container */
    height: 61px;
    /* Figma: 61px */
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    /* Fixed relative to viewport */
    top: 0;
    /* Center horizontal: left 50% + transform */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.header-left {
    display: flex;
    align-items: center;
    padding-left: 19px;
    /* From Figma: x=19 for Group */
}

.header-logo {
    width: 126px;
    /* Figma: 126px */
    height: 29px;
    /* Figma: 29px */
    margin-right: 11px;
    /* Gap between logo and text */
}

.header-store-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.store-name {
    font-size: 15px;
    /* Figma: 15px */
    font-weight: 900;
    /* Black/Bold */
    line-height: 1.2;
}

.store-sub {
    font-size: 10px;
    /* Figma: 10px */
    font-weight: 700;
    line-height: 1.2;
}

.header-reservation-btn {
    width: 139px;
    /* Figma: Rectangle 28 w=139 */
    height: 100%;
    /* Full height 61px */
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header-reservation-btn span {
    color: #FFF;
    text-align: center;
    font-family: "Zen Old Mincho", serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    /* 129.412% */
}

/* Pain Points Section (Node 2094:322) */
.nayami-section {
    position: relative;
    width: 375px;
    height: auto;
    margin: 65px auto 0;
    overflow: hidden;
    background-color: #88AA9A;
    padding-bottom: 65px;
}

.nayami-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: none;
    /* Hide SVG background in favor of background-color for now if it conflicts */
}

.nayami-bg .bg-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nayami-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-top: 55px;
    /* 1457 - 1402 approx title position */
}

/* Title */
.nayami-title-box {
    width: 232px;
    height: auto;
    margin-bottom: 30px;
}

.nayami-title-img {
    width: 100%;
    height: auto;
}

/* Card */
.nayami-card-box {
    width: 337px;
    height: auto;
    margin: 0 auto 64px;
    display: block;
    border-radius: 2px;
    background: #FFF;
    box-shadow: 8px 8px 12px 0 rgba(0, 0, 0, 0.10);
}

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

/* Mirror */
.nayami-mirror-box {
    width: 100%;
    position: relative;
    height: 240px;
    margin-bottom: 39px;
}

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

.mirror-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-rect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.62;
}

.overlay-msg {
    position: relative;
    z-index: 5;
    width: 250px;
    height: auto;
    opacity: 0;
    transition: opacity 1.2s ease-out;
}

.overlay-msg.animate-fadeUp {
    opacity: 1;
}

/* Bubbles */
.nayami-bubbles-container {
    width: 375px;
    height: 250px;
    position: relative;
    margin-bottom: 5px;
    /* Moved up closer */
}

.bubble-img {
    position: absolute;
    width: 113px;
    height: auto;
}

.b1 {
    top: 51px;
    left: 19px;
}

.b2 {
    top: 0;
    left: 131px;
}

.b3 {
    top: 49px;
    left: 248px;
}

/* Cause */
.nayami-cause-container {
    width: 337px;
    text-align: center;
    margin: -90px auto 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cause-main-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 25px;
}

.cause-img-1 {
    width: 320px;
    height: auto;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.cause-underline-img {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(calc(-50% - 28px));
    width: 206px;
    height: auto;
    z-index: 1;
}

.cause-img-2 {
    width: 260px;
    height: auto;
}

/* Instructor (FPO 4045 1 in metadata but looks like a photo) */
.nayami-instructor-container {
    width: 100%;
    height: 235px;
    margin-top: -15px;
    margin-bottom: 90px;
}

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

/* CTA */
.nayami-cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 337px;
    margin-top: -65px;
}

.cta-header-img {
    width: 100%;
    height: auto;
}

.cta-button-link {
    width: 336px;
    display: block;
}

.cta-btn-img {
    width: 100%;
    height: auto;
}

/* Standard Section (Node 2101:322 / Group 70.svg) */
.kijun-section {
    width: 375px;
    margin: 0 auto;
    /* margin-top removed as requested */
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 60px;
    /* Space above title */
    padding-bottom: 65px;
    position: relative;
    z-index: 5;
}

.kijun-title-box {
    width: 299px;
    height: 126px;
    margin-bottom: -20px;
    /* Adjusted from -30px to drop image another 10px */
    position: relative;
    z-index: 10;
}

.kijun-title-img {
    width: 100%;
    height: auto;
}

.kijun-staff-box {
    width: 100%;
    height: auto;
    margin-bottom: 60px;
    /* Space between top image and title word below it */
    position: relative;
    /* Removed overflow:hidden and fixed height to allow full image visibility */
    z-index: 5;
}

.kijun-staff-img {
    display: block;
    width: 100%;
    height: auto;
    /* Position back to static flow to push down subsequent content */
}

.kijun-message-box {
    width: 260px;
    margin-bottom: 70px;
}

.kijun-message-img {
    width: 100%;
    height: auto;
}

.kijun-points-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 19px;
    margin-bottom: 60px;
}

.kijun-point-img {
    width: auto;
    max-width: 100%;
    height: auto;
    margin-bottom: 45px;
}

.kijun-point-img.p1 {
    width: 309px;
    /* Figma 301:20 width */
    margin-bottom: 26px;
    /* 3673 (p2 Y) - (3578 (p1 Y) + 69 (p1 H)) = 26px */
}

.kijun-point-img.p2 {
    width: 48px;
    /* Original width matched to node 303:25 */
    margin-bottom: 45px;
}

.kijun-point-img.p3 {
    width: 276px;
    /* Figma Combined Node 250:62 / 121:135 width */
    margin-bottom: 0px;
    /* Reduced from 20px to pull the next box up by another 20px */
}

.kijun-qualifications-box {
    position: relative;
    width: 337px;
    margin-bottom: 0px;
    /* Set to 0px to eliminate the gap */
}

.kijun-point-img.p4 {
    width: 337px;
    /* Figma 128:188 width */
    display: block;
}

.kijun-underline-55 {
    position: absolute;
    top: 37px;
    /* 3832 (Rect Y) - 3795 (Text Y) = 37 */
    left: 42px;
    /* 61 (Rect X) - 19 (Group X) = 42 */
    width: 187px;
    height: 2px;
}

.kijun-point-img.p5 {
    width: 181px;
    margin-bottom: 30px;
}

.kijun-point-img.p6 {
    width: 236px;
    margin-bottom: 0px;
}

/* Detailed Staff & CTA Section (Node 226:36) */
.kijun-detail-container {
    position: relative;
    width: 337px;
    margin: -43px auto 0;
    height: auto;
}

.kijun-detail-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.detail-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.kijun-detail-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 53px 19px 50px;
}

.detail-title {
    width: 250px;
    margin-bottom: 23px;
    /* Adjusted to lower content by 10px */
}

.detail-title-img {
    width: 100%;
    height: auto;
}

.staff-hayashi-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}

.hayashi-profile-img {
    width: 260px;
    height: auto;
    margin-bottom: 30px;
}

.hayashi-desc-img {
    width: 290px;
    height: auto;
    margin-bottom: 30px;
}

.hayashi-quals-img {
    width: 290px;
    height: auto;
}

.staff-saito-block {
    width: 290px;
    /* Matched to Hayashi enlarged items width */
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto 0px;
    /* Reduced bottom margin from 70px to 0px */
    padding-top: 50px;
    border-top: 1px solid #ffffff;
    /* Reverted to line, set to white */
}

.saito-profile-img {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.saito-quals-img {
    width: 290px;
    height: auto;
}

.detail-cta-area {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 45px;
}

.cta-slogan-img {
    width: 337px;
    max-width: 120%;
    height: auto;
    margin-bottom: 9px;
}

.cta-レッスン-btn {
    width: 310px;
    display: block;
    transition: opacity 0.3s;
}

.cta-レッスン-btn:hover {
    opacity: 0.8;
}

.cta-btn-img-large {
    width: 100%;
    height: auto;
}

/* Section: どっちのメニュー？ (Node 535:735) */
.dochi-menu-section {
    width: 375px;
    background-color: #ffffff;
    padding: 52px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.dochi-title-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 0px;
}

.dochi-title {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 700;
    color: #2d694d;
    text-align: center;
    margin: 0;
    line-height: 1;
}

.dochi-line-decoration {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 0px;
}

.dochi-line-img {
    width: auto;
    height: auto;
    max-width: 187px;
}

.dochi-menu-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 15px;
}

.dochi-menu-title {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 0px
}

.ques-icon-img {
    width: auto;
    height: auto;
    max-width: 335px;
}

.dochi-table-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 0px;
    padding: 0px;
}

.table-img {
    width: 100%;
    height: auto;
    max-width: 337px;
}

.effects-services-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-top: 40px;
    padding: 0 15px;
}

.effects-services-title {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.title2-img {
    width: auto;
    height: auto;
    max-width: 230px;
}

.effects-table-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 0;
}

.table2-img {
    width: 100%;
    height: auto;
    max-width: 337px;
}

/* Section: お客様の声 (Voice Section) */
.voice-section {
    width: 375px;
    background-color: #88aa9a;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.voice-bg {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 52px;
    padding-bottom: 52px;
}

.voice-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 26px;
}

.voice-title-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 0px;
}

/* メインタイトル画像 */
.voice-main-title-img {
    width: auto;
    height: auto;
    max-width: 213px;
}

.voice-subtitle {
    width: 100%;
    max-width: 225px;
    display: flex;
    justify-content: center;
    margin-top: 5px;
}

/* ゴールドバッジ画像 */
.voice-gold-badge-img {
    width: auto;
    height: auto;
    max-width: 90%;
}

.voice-cta-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* CTAサブタイトル画像 */
.voice-cta-subtitle-img {
    width: auto;
    height: auto;
    max-width: 192px;
    margin-top: 35px;
}

.voice-cta-btn {
    width: 100%;
    max-width: 337px;
    display: flex;
    justify-content: center;
    transition: opacity 0.3s;
}

.voice-cta-btn:hover {
    opacity: 0.8;
}

/* CTAボタン画像 */
.voice-cta-button-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
}

/* Q&A Section */
.qa-section {
    width: 375px;
    margin: 0 auto;
    position: relative;
}

.qa-bg {
    width: 100%;
    min-height: 800px;
    background-color: #d3e7de;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 52px;
    padding-bottom: 65px;
}

.qa-title-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qa-title {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 0;
    color: #2d694d;
    text-align: center;
    letter-spacing: 2.88px;
    white-space: nowrap;
    padding-bottom: 26px;
}

.qa-q {
    font-size: 32px;
    display: inline-block;
}

.qa-amp {
    font-size: 21px;
    display: inline-block;
    letter-spacing: 2.73px;
    margin: 0 2px;
}

.qa-a {
    font-size: 32px;
    display: inline-block;
    letter-spacing: 0;
}

/* ==================== Section: 店舗情報 (Store Information) ==================== */
.tenpo-section {
    width: 100%;
    padding: 40px 20px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.tenpo-title-container {
    text-align: center;
}

.tenpo-title-en {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    color: #2d694d;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.tenpo-title-ja {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    color: #2d694d;
    margin: 8px 0 0 0;
    padding: 0;
    line-height: 1.4;
}

.tenpo-main-image-container {
    width: 100%;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tenpo-main-image {
    width: 100%;
    height: auto;
    display: block;
}

.tenpo-promo-container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    margin-top: 3px;
    padding: 0 3px;
}

.tenpo-promo-item {
    width: 100%;
}

.tenpo-promo-image {
    width: 100%;
    height: auto;
    display: block;
}

.tenpo-access-container {
    width: 100%;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.tenpo-access-title {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 700;
    color: #2d694d;
    margin: 0 0 16px 0;
    padding: 0;
    line-height: 1;
}

.tenpo-access-subtitle {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 400;
    color: #000;
    margin: 0 0 7px 0;
    padding: 0;
    text-align: justify;
}

.tenpo-access-list {
    list-style: none;
    padding: 0 0 0 24px;
    margin: 0;
    text-align: left;
    display: inline-block;
    max-width: 242px;
}

.tenpo-access-list li {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 1.75;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    align-items: center;
    margin-left: -24px;
    padding-left: 24px;
    position: relative;
}

.tenpo-access-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    width: 24px;
    text-align: center;
}

.station-name {
    min-width: 0;
}

.walk-time {
    text-align: left;
    white-space: nowrap;
}

.tenpo-address-info {
    margin-top: 5px;
    text-align: left;
}

.tenpo-address-postal {
    font-family: var(--font-serif);
    font-size: 13px;
    font-weight: 400;
    color: #000;
    margin: 0;
    padding: 0;
    line-height: 1.4;
    white-space: nowrap;
}

.tenpo-address-text {
    font-family: var(--font-serif);
    font-size: 13px;
    font-weight: 400;
    color: #000;
    margin: 0;
    padding: 0;
    line-height: 1.4;
}

.tenpo-address-building {
    font-family: var(--font-serif);
    font-size: 13px;
    font-weight: 400;
    color: #000;
    margin: 0;
    padding: 0;
    line-height: 1.4;
}

.tenpo-map-container {
    width: 100%;
    margin-top: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
}

.tenpo-map-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.tenpo-time-container {
    width: 100%;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.tenpo-time-image {
    width: 100%;
    max-width: 267px;
    height: auto;
    display: block;
}

/* ==================== Section: 店舗情報 (Store Information) ==================== */
.tenpo-section {
    width: 100%;
    padding: 40px 0px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tenpo-title-container {
    text-align: center;
}

.tenpo-title-en {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    color: #2d694d;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.tenpo-title-ja {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    color: #2d694d;
    margin: 8px 0 0 0;
    padding: 0;
    line-height: 1.4;
}

/* ==================== Section: ビフォーアフター (Before-After Section) ==================== */
.ba-section {
    background-color: #88AA9A;
    width: 375px;
    height: 792px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 52px;
}

/* タイトル画像 */
.ba-title-img {
    max-width: 245px;
    height: auto;
}

/* サブタイトル画像 */
.ba-subtitle-img {
    max-width: 245px;
    height: auto;
    margin-top: 23px;
}

/* CTAワード画像 */
.ba-cta-word-img {
    max-width: 178px;
    height: auto;
    margin-top: 35px;
}

/* CTAボタン画像 */
.ba-cta-button-img {
    max-width: 336px;
    height: auto;
    margin-top: 12px;
}

.ba-cta-button-img:hover {
    opacity: 0.8;
}

/* Future Section (未来への投げかけ) */
.future-section {
    background-color: #88AA9A;
    width: 375px;
    height: 742px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 56px;
    padding-bottom: 65px;
    position: relative;
    z-index: 5;
}

/* タイトル画像 */
.future-title-img {
    max-width: 290px;
    height: auto;
    margin-bottom: 27px;
}

/* サブタイトル画像1 */
.future-subtitle-img-1 {
    max-width: 253px;
    height: auto;
    margin-bottom: 31px;
}

/* サブタイトル画像2 */
.future-subtitle-img-2 {
    max-width: 308px;
    height: auto;
}

/* メイン画像 */
.future-main-img {
    max-width: 100%;
    height: auto;
    margin-top: 27px;
}

/* CTAサブ画像 */
.future-cta-sub-img {
    max-width: 180px;
    height: auto;
    margin-top: 31px;
}

/* CTAボタンのリンク */
.future-section>a {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* CTAボタン画像 */
.future-cta-button-img {
    margin-top: 16px;
    max-width: 336px;
    height: auto;
}

/* フッター4大特典セクション */
.footer-benefits-group {
    position: relative;
    margin: 67px auto 32px;
    /* 10px + 57px offset, 32px bottom offset */
    width: 337px;
    height: 700px;
    z-index: 5;
}

.footer-benefits-group>img:first-child {
    margin: 0;
    padding: 0;
    /* Remove padding that caused offset issues */
    display: block;
    position: relative;
    z-index: 0;
}

/* Node 369:21 "1,000" Overlay */
.footer-benefits-price-1000 {
    position: absolute;
    top: 162px;
    left: 144px;
    width: 142px;
    height: 84px;
    z-index: 6;
    overflow: hidden;
}

.footer-benefits-price-1000 img {
    width: 100%;
    height: auto;
    display: block;
}

.footer-benefits-price-1000::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 3s ease-in-out infinite;
    animation-delay: 1.5s;
    z-index: 1;
    pointer-events: none;
}


/* Node 378:158 "0" */
.footer-benefits-price-0 {
    position: absolute;
    top: 439px;
    left: 229px;
    width: 38px;
    height: 91px;
    z-index: 6;
    overflow: hidden;
}

.footer-benefits-price-0 img {
    width: 100%;
    height: auto;
    display: block;
}

.footer-benefits-price-0::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 3s ease-in-out infinite;
    animation-delay: 2s;
    z-index: 1;
    pointer-events: none;
}

/* Vector 86 */
.footer-benefits-vector-86 {
    position: absolute;
    top: 592px;
    left: 79px;
    width: 223px;
    height: auto;
    z-index: 6;
}

.footer-benefits-vector-86 img {
    width: 100%;
    height: auto;
    display: block;
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
}

.footer-benefits-vector-86.animate-draw img {
    -webkit-animation: drawLine 0.8s ease-out forwards;
    animation: drawLine 0.8s ease-out forwards;
}

/* Vector 73 (Underline) */
.footer-benefits-vector-73 {
    position: absolute;
    top: 344px;
    left: 76px;
    width: 120px;
    height: auto;
    z-index: 6;
}

.footer-benefits-vector-73 img {
    width: 100%;
    height: auto;
    display: block;
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
}

.footer-benefits-vector-73.animate-draw img {
    -webkit-animation: drawLine 0.8s ease-out forwards;
    animation: drawLine 0.8s ease-out forwards;
}

/* Vector 75 (Underline 2) */
.footer-benefits-vector-75 {
    position: absolute;
    top: 411px;
    left: 81px;
    width: 103px;
    height: auto;
    z-index: 6;
}

.footer-benefits-vector-75 img {
    width: 100%;
    height: auto;
    display: block;
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
}

.footer-benefits-vector-75.animate-draw img {
    -webkit-animation: drawLine 0.8s ease-out forwards;
    animation: drawLine 0.8s ease-out forwards;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

/* -- footer CTA Section -- */
.footer-cta-container {
    width: 375px;
    margin: 90px auto 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-cta-sub-img {
    width: auto;
    height: auto;
    max-width: 115px;
}

.footer-cta-button-link {
    display: block;
    transition: opacity 0.3s;
}

.footer-cta-button-link:hover {
    opacity: 0.9;
}

.footer-cta-button-img {
    width: auto;
    height: auto;
    max-width: 336px;
}

.footer-logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.footer-logo {
    max-width: 234px;
    height: auto;
}

.footer-menu-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 65px;
    padding-bottom: 33px;
}

.footer-menu-item {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 10px;
    color: #000;
    text-decoration: none;
    line-height: 1.174;
    font-weight: 400;
}

.footer-menu-divider {
    width: 1px;
    height: 16px;
    background-color: #000;
}

/* スライダーの調整 */
.swiper {
    width: 100%;
    padding-bottom: 40px !important;
}

.swiper-slide {
    width: 323px;
    /* 375px - (11px見せる×2) - (余白15px×2) = 323px */
    display: flex;
    justify-content: center;
    align-items: center;
    /* 上下中央揃え */
    transition: opacity 0.3s;
    opacity: 0.4;
    /* 非アクティブスライドを少し薄く */
}

.swiper-slide-active {
    opacity: 1;
    /* アクティブスライドはくっきり */
}

/* ページネーション（ドット）のカスタマイズ */
.swiper-pagination-bullet {
    background: #444 !important;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* ビフォーアフタースライダー */
.lp-result-swiper {
    width: 100%;
    padding-top: 30px !important;
    padding-bottom: 35px !important;
}

.lp-result-swiper .swiper-slide {
    width: 320px;
    /* スライドの横幅 */
    transition: transform 0.3s;
}

/* ページネーションのドット色 */
.lp-result-pagination .swiper-pagination-bullet-active {
    background: #444 !important;
}

/* お客様の声スライダー */
.lp-voice-swiper {
    width: 100%;
}

.lp-voice-swiper .swiper-slide {
    width: 320px;
    /* スライドの横幅 */
    transition: transform 0.3s;
}

/* ページネーションのドット色 */
.lp-voice-pagination .swiper-pagination-bullet-active {
    background: #444 !important;
}

/* スライダーカードの共通スタイル */
.lp-result-card {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.result-image-box {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.result-image-box img {
    width: 100%;
    max-width: 336px;
    height: auto;
    display: block;
    border-radius: 2px;
    box-shadow: 8px 8px 12px 0px rgba(0, 0, 0, 0.25);
}

/* Q&Aコンテナ */
.lp-qa-container {
    max-width: 337px;
    margin-bottom: 65px;
    margin: 0 auto;
}

/* 個別アイテム */
.lp-qa-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

/* 質問ボタン（通常時） */
.lp-qa-question {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #ffffff;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 5px;
    font-family: var(--font-serif);
    /* 本体のフォントを継承 */
}

/* 開いている時の質問ボタン */
.lp-qa-item.is-open .lp-qa-question {
    background-color: #89a797;
    color: #ffffff;
    border-radius: 5px 5px 0 0;
}

/* Qアイコン */
.lp-q-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #89a797;
    margin-right: 15px;
    font-family: var(--font-serif);
    /* 明朝体に統一 */
}

.lp-qa-item.is-open .lp-q-icon {
    color: #ffffff;
}

/* 質問テキスト */
.lp-q-text {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    padding-right: 30px;
    line-height: 1.4;
    font-family: var(--font-serif);
    /* 明朝体に統一 */
}

.lp-qa-item.is-open .lp-q-text {
    color: #ffffff;
}

/* プラス・マイナスアイコン */
.lp-qa-toggle {
    position: absolute;
    right: 20px;
    width: 20px;
    height: 20px;
}

.lp-qa-toggle::before,
.lp-qa-toggle::after {
    content: "";
    position: absolute;
    background-color: #89a797;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s;
}

/* 横線 */
.lp-qa-toggle::before {
    width: 18px;
    height: 2px;
}

/* 縦線（プラスの時だけ表示） */
.lp-qa-toggle::after {
    width: 2px;
    height: 18px;
}

.lp-qa-item.is-open .lp-qa-toggle::before,
.lp-qa-item.is-open .lp-qa-toggle::after {
    background-color: #ffffff;
}

.lp-qa-item.is-open .lp-qa-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
    /* 縦線を消してマイナスにする */
}

/* 回答エリア */
.lp-qa-answer {
    font-size: 16px;
    max-height: 0;
    overflow: hidden;
    background-color: #ffffff;
    transition: max-height 0.4s ease;
    text-align: left;
    border-radius: 0 0 5px 5px;
}

.lp-qa-answer-inner {
    padding: 20px;
    color: #333;
    line-height: 1.6;
    border-top: 1px solid #eee;
    font-family: var(--font-serif);
    /* 明朝体に統一 */
}

/* Q&A内の予約ボタン */
.lp-qa-link {
    display: inline-block;
    margin-top: 16px;
    padding: 12px 24px;
    background-color: #2d694d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(45, 105, 77, 0.2);
}

.lp-qa-link:hover {
    background-color: #234d39;
    box-shadow: 0 4px 8px rgba(45, 105, 77, 0.3);
    transform: translateY(-1px);
}

.lp-qa-link:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(45, 105, 77, 0.2);
}