        :root {
            --color-bg: #FFFAF5;
            --color-bg-warm: #FFF5EB;
            --color-bg-section: #FDF8F3;
            --color-text: #5C4A3D;
            --color-text-light: #8B7355;
            --color-accent: #E8927C;
            --color-accent-hover: #D4785F;
            --color-accent-light: #F5C6A5;
            --color-white: #FFFFFF;
            --color-border: #E8DDD4;
            --font-display: 'Zen Maru Gothic', sans-serif;
            --font-body: 'Noto Sans JP', sans-serif;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            color: var(--color-text);
            background-color: var(--color-bg);
            line-height: 1.8;
            font-weight: 400;
        }

        /* ===== HERO SECTION ===== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-warm) 50%, #FFEEE0 100%);
            padding: 2rem 1.5rem;
        }

        .hero-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 3rem;
            max-width: 1100px;
            width: 100%;
            position: relative;
            z-index: 1;
        }

        .hero-image {
            width: 100%;
            max-width: 600px;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(92, 74, 61, 0.15);
            animation: fadeInUp 1s ease-out 0.1s backwards;
        }

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

        @media (min-width: 900px) {
            .hero-wrapper {
                flex-direction: row;
                justify-content: space-between;
            }

            .hero-content {
                flex: 1;
                text-align: left;
                padding-right: 2rem;
            }

            .hero-image {
                flex: 1;
                max-width: 500px;
            }

            .hero-info {
                justify-content: flex-start;
            }
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -30%;
            width: 80%;
            height: 150%;
            background: radial-gradient(ellipse, rgba(245, 198, 165, 0.3) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -20%;
            width: 60%;
            height: 80%;
            background: radial-gradient(ellipse, rgba(232, 146, 124, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-content {
            text-align: center;
            padding: 2rem;
            position: relative;
            z-index: 1;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease-out 0.2s backwards;
        }

        .logo-image {
            height: 50px;
            width: auto;
        }

        .logo-text {
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--color-accent);
            letter-spacing: 0.05em;
        }

        @media (min-width: 900px) {
            .logo-image {
                height: 60px;
            }

            .logo-text {
                font-size: 1.4rem;
            }
        }

        .hero-tag {
            display: inline-block;
            background: var(--color-white);
            color: var(--color-accent);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 2rem;
            box-shadow: 0 4px 20px rgba(232, 146, 124, 0.15);
            animation: fadeInUp 1s ease-out 0.2s backwards;
        }

        .hero-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 6vw, 3.5rem);
            font-weight: 700;
            color: var(--color-text);
            margin-bottom: 1rem;
            letter-spacing: 0.1em;
            animation: fadeInUp 1s ease-out 0.3s backwards;
            white-space: nowrap;
        }

        .hero-subtitle {
            font-family: var(--font-display);
            font-size: clamp(1rem, 3vw, 1.4rem);
            color: var(--color-text-light);
            margin-bottom: 2.5rem;
            font-weight: 400;
            animation: fadeInUp 1s ease-out 0.4s backwards;
        }

        .hero-description {
            max-width: 480px;
            margin: 0 auto 2.5rem;
            font-size: 1rem;
            line-height: 2;
            color: var(--color-text);
            animation: fadeInUp 1s ease-out 0.5s backwards;
        }

        .hero-info {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 2.5rem;
            font-size: 0.9rem;
            color: var(--color-text-light);
            animation: fadeInUp 1s ease-out 0.6s backwards;
        }

        .hero-info span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .hero-info svg {
            width: 18px;
            height: 18px;
            stroke: var(--color-accent);
        }

        .btn-primary {
            display: inline-block;
            background: var(--color-accent);
            color: var(--color-white);
            padding: 1.2rem 3rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 30px rgba(232, 146, 124, 0.35);
            animation: fadeInUp 1s ease-out 0.7s backwards;
        }

        .btn-primary:hover {
            background: var(--color-accent-hover);
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(232, 146, 124, 0.45);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }

        .scroll-indicator svg {
            width: 24px;
            height: 24px;
            stroke: var(--color-text-light);
        }

        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(10px); }
        }

        /* ===== SECTION COMMON ===== */
        section {
            padding: 5rem 1.5rem;
        }

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

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(1.5rem, 5vw, 2rem);
            text-align: center;
            margin-bottom: 1rem;
            color: var(--color-text);
        }

        .section-subtitle {
            text-align: center;
            color: var(--color-text-light);
            margin-bottom: 3rem;
            font-size: 0.95rem;
        }

        /* ===== CONCERNS SECTION ===== */
        .concerns {
            background: var(--color-bg-section);
        }

        .concerns-list {
            list-style: none;
            max-width: 600px;
            margin: 0 auto;
        }

        .concerns-list li {
            padding: 1rem 0;
            padding-left: 2rem;
            position: relative;
            border-bottom: 1px dashed var(--color-border);
        }

        .concerns-list li:last-child {
            border-bottom: none;
        }

        .concerns-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            background: var(--color-accent-light);
            border-radius: 50%;
        }

        .concerns-cta {
            text-align: center;
            margin-top: 3rem;
            padding: 2rem;
            background: var(--color-white);
            border-radius: 20px;
            box-shadow: 0 4px 30px rgba(92, 74, 61, 0.06);
        }

        .concerns-cta p {
            font-family: var(--font-display);
            font-size: 1.2rem;
            color: var(--color-accent);
        }

        /* ===== REASONS SECTION ===== */
        .reasons {
            background: var(--color-white);
        }

        .reason-cards {
            display: grid;
            gap: 2rem;
        }

        .reason-card {
            background: var(--color-bg);
            padding: 2.5rem 2rem;
            border-radius: 24px;
            position: relative;
            overflow: hidden;
        }

        .reason-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
        }

        .reason-number {
            font-family: var(--font-display);
            font-size: 3rem;
            font-weight: 700;
            color: var(--color-accent-light);
            line-height: 1;
            margin-bottom: 1rem;
        }

        .reason-title {
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--color-text);
        }

        .reason-text {
            color: var(--color-text-light);
            font-size: 0.95rem;
            line-height: 2;
        }

        /* ===== FLOW SECTION ===== */
        .flow {
            background: var(--color-bg-section);
        }

        .flow-steps {
            position: relative;
        }

        .flow-steps::before {
            content: '';
            position: absolute;
            left: 24px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg, var(--color-accent-light) 0%, var(--color-accent) 100%);
        }

        .flow-step {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
            position: relative;
        }

        .flow-step:last-child {
            margin-bottom: 0;
        }

        .flow-step-number {
            width: 50px;
            height: 50px;
            background: var(--color-white);
            border: 3px solid var(--color-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-weight: 700;
            color: var(--color-accent);
            flex-shrink: 0;
            position: relative;
            z-index: 1;
        }

        .flow-step-content {
            background: var(--color-white);
            padding: 1.5rem 2rem;
            border-radius: 16px;
            flex-grow: 1;
            box-shadow: 0 4px 20px rgba(92, 74, 61, 0.06);
        }

        .flow-step-title {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            color: var(--color-text);
        }

        .flow-step-text {
            color: var(--color-text-light);
            font-size: 0.9rem;
            line-height: 1.8;
        }

        /* ===== PRICE SECTION ===== */
        .price {
            background: var(--color-white);
        }

        .price-table {
            background: var(--color-bg);
            border-radius: 24px;
            overflow: hidden;
        }

        .price-table table {
            width: 100%;
            border-collapse: collapse;
        }

        .price-table th,
        .price-table td {
            padding: 1.25rem 1.5rem;
            text-align: left;
            border-bottom: 1px solid var(--color-border);
        }

        .price-table th {
            background: var(--color-accent);
            color: var(--color-white);
            font-weight: 500;
            font-size: 0.9rem;
        }

        .price-table tr:last-child td {
            border-bottom: none;
        }

        .price-table td:last-child {
            text-align: right;
            font-weight: 500;
        }

        .price-note {
            margin-top: 1.5rem;
            padding: 1.5rem;
            background: var(--color-bg-warm);
            border-radius: 12px;
            font-size: 0.9rem;
            color: var(--color-text-light);
        }

        /* ===== FAQ SECTION ===== */
        .faq {
            background: var(--color-bg-section);
        }

        .faq-list {
            display: grid;
            gap: 1.5rem;
        }

        .faq-item {
            background: var(--color-white);
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(92, 74, 61, 0.04);
        }

        .faq-question {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.05rem;
            margin-bottom: 1rem;
            color: var(--color-text);
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .faq-question::before {
            content: 'Q';
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            background: var(--color-accent);
            color: var(--color-white);
            border-radius: 50%;
            font-size: 0.85rem;
            flex-shrink: 0;
        }

        .faq-answer {
            color: var(--color-text-light);
            font-size: 0.95rem;
            line-height: 2;
            padding-left: 2.5rem;
        }

        /* ===== VOICE SECTION ===== */
        .voice {
            background: var(--color-white);
        }

        .voice-cards {
            display: grid;
            gap: 1.5rem;
        }

        .voice-card {
            background: var(--color-bg);
            border-radius: 20px;
            padding: 2rem;
            position: relative;
        }

        .voice-card::before {
            content: '"';
            position: absolute;
            top: 1rem;
            left: 1.5rem;
            font-size: 4rem;
            font-family: Georgia, serif;
            color: var(--color-accent-light);
            line-height: 1;
        }

        .voice-text {
            font-size: 0.95rem;
            line-height: 2;
            margin-bottom: 1rem;
            padding-top: 1.5rem;
        }

        .voice-author {
            font-size: 0.85rem;
            color: var(--color-text-light);
            text-align: right;
        }

        /* ===== INFO SECTION ===== */
        .info {
            background: var(--color-bg-section);
        }

        .info-box {
            background: var(--color-white);
            border-radius: 24px;
            padding: 2.5rem 2rem;
            box-shadow: 0 4px 30px rgba(92, 74, 61, 0.06);
        }

        .info-table {
            width: 100%;
            margin-bottom: 1.5rem;
        }

        .info-table tr {
            border-bottom: 1px dashed var(--color-border);
        }

        .info-table tr:last-child {
            border-bottom: none;
        }

        .info-table th,
        .info-table td {
            padding: 1rem 0;
            text-align: left;
            vertical-align: top;
        }

        .info-table th {
            width: 120px;
            font-weight: 500;
            color: var(--color-text);
            font-size: 0.9rem;
        }

        .info-table td {
            color: var(--color-text-light);
            font-size: 0.95rem;
        }

        .info-note {
            background: var(--color-bg-warm);
            padding: 1rem 1.5rem;
            border-radius: 12px;
            font-size: 0.85rem;
            color: var(--color-text-light);
        }

        /* ===== CTA SECTION ===== */
        .cta {
            background: linear-gradient(135deg, var(--color-bg-warm) 0%, #FFEEE0 100%);
            text-align: center;
        }

        .cta-title {
            font-family: var(--font-display);
            font-size: clamp(1.5rem, 5vw, 2rem);
            margin-bottom: 1rem;
            color: var(--color-text);
        }

        .cta-text {
            color: var(--color-text-light);
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }

        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 320px;
            margin: 0 auto 2rem;
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            background: var(--color-white);
            color: var(--color-text);
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(92, 74, 61, 0.1);
        }

        .btn-secondary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(92, 74, 61, 0.15);
        }

        .btn-secondary svg {
            width: 20px;
            height: 20px;
        }


        .cta-info {
            font-size: 0.85rem;
            color: var(--color-text-light);
        }

        /* ===== FOOTER ===== */
        footer {
            background: var(--color-text);
            color: var(--color-bg);
            padding: 2rem 1.5rem;
            text-align: center;
        }

        .footer-clinic {
            font-family: var(--font-display);
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .footer-address {
            font-size: 0.85rem;
            opacity: 0.8;
            margin-bottom: 1rem;
        }

        .footer-copy {
            font-size: 0.75rem;
            opacity: 0.6;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 600px) {
            section {
                padding: 3.5rem 1.25rem;
            }

            .hero-info {
                flex-direction: column;
                gap: 0.75rem;
            }

            .flow-steps::before {
                left: 20px;
            }

            .flow-step-number {
                width: 42px;
                height: 42px;
                font-size: 0.9rem;
            }

            .flow-step-content {
                padding: 1.25rem 1.5rem;
            }

            .price-table th,
            .price-table td {
                padding: 1rem;
                font-size: 0.9rem;
            }

            .info-table th {
                width: 100px;
            }
        }

        /* ===== NOTICE SECTION ===== */
        .notice {
            background: var(--color-white);
        }

        .notice-box {
            background: #FFF9F7;
            border: 2px solid var(--color-accent-light);
            border-radius: 20px;
            padding: 2rem;
        }

        .notice-item {
            margin-bottom: 2rem;
        }

        .notice-item:last-of-type {
            margin-bottom: 1.5rem;
        }

        .notice-item-title {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--color-accent);
            margin-bottom: 1rem;
            padding-left: 0.5rem;
            border-left: 4px solid var(--color-accent);
        }

        .notice-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .notice-list li {
            padding: 0.5rem 0 0.5rem 1.5rem;
            position: relative;
            font-size: 0.95rem;
            color: var(--color-text);
            line-height: 1.7;
        }

        .notice-list li::before {
            content: '•';
            position: absolute;
            left: 0.5rem;
            color: var(--color-accent);
        }

        .notice-footer {
            font-size: 0.9rem;
            color: var(--color-text-light);
            background: var(--color-white);
            padding: 1rem;
            border-radius: 10px;
            margin-top: 0.5rem;
        }
