/* ===== リセット & ベーススタイル ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* ===== 汎用クラス ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* モバイル版：横スクロール防止 + レイアウト調整 */
@media (max-width: 767px) {
    body, html {
        overflow-x: hidden;
        max-width: 100%;
    }
    
    * {
        max-width: 100%;
    }
    
    /* モバイル版：テキストを医師の頭上〜女性の肘の高さに配置（顔と被らないように） */
    .hero-content {
        top: 44% !important;
        padding: 10px 20px !important;
        animation: none !important;
        transform: translate(-50%, -50%) !important;
        width: 85% !important;
        max-width: 380px !important;
        align-items: flex-start !important;
        text-align: left !important;
    }
    
    .hero-content.fade-in-up {
        animation: none !important;
        transform: translate(-50%, -50%) !important;
    }
    
    .hero-title {
        font-size: 36px !important;
        margin-bottom: 10px !important;
        line-height: 1.2 !important;
        text-align: left !important;
        width: 100% !important;
    }
    
    .title-line-1 {
        text-align: left !important;
        margin-bottom: 4px !important;
        white-space: nowrap !important;
        overflow: visible !important;
    }
    
    .title-line-2 {
        text-align: center !important;
        padding-left: 20px !important;
        white-space: nowrap !important;
        overflow: visible !important;
    }
    
    .hero-subtitle {
        font-size: 13px !important;
        line-height: 1.5 !important;
        text-align: right !important;
        width: 100% !important;
        padding-right: 10px !important;
    }
}

.mobile-only {
    display: inline;
}

.desktop-only {
    display: none;
}

/* ===== 固定ヘッダー（モバイル） ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: rgba(26, 43, 74, 0.95);
}

/* スクロール時もロゴは通常表示 */

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header-logo {
    height: 40px;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 100%;
    width: auto;
    transition: filter 0.3s ease;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #1a2b4a;
    letter-spacing: -0.5px;
    font-family: 'Noto Sans JP', sans-serif;
}

.logo-and {
    color: #c9a84c;
    font-weight: 900;
}



/* デスクトップナビゲーション（モバイルでは非表示） */
.desktop-nav {
    display: none;
}

/* ハンバーガーメニュー（モバイルのみ） */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: #1a2b4a;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.header.scrolled .hamburger span {
    background-color: #fff;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* モバイルドロワーメニュー */
.mobile-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background-color: #1a2b4a;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    max-height: 300px;
}

.mobile-nav {
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ===== ボタンスタイル ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    min-height: 48px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: #c9a84c;
    color: #fff;
    border-color: #c9a84c;
}

.btn-primary:hover {
    background-color: #b8973b;
    border-color: #b8973b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
}

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

.btn-line:hover {
    background-color: #05b34c;
    border-color: #05b34c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 199, 85, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: #1a2b4a;
    border-color: #1a2b4a;
}

.btn-outline:hover {
    background-color: #1a2b4a;
    color: #fff;
}

.btn-large {
    padding: 14px 28px;
    font-size: 15px;
}

.btn-block {
    width: 100%;
}

/* ===== Hero Section ===== */
.hero {
    margin-top: 60px;
    background-color: #e8f0f7;
    position: relative;
}

.hero-wrapper {
    position: relative;
    min-height: 650px;
    width: 100%;
    max-width: 100%;
    background-image: url('images/hero-bg-mobile.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 20px;
}

/* モバイル：左上に配置（顔と被らない） */
.hero-badge-wrapper {
    position: absolute;
    top: 20px;
    left: 16px;
    right: auto;
    transform: none;
    z-index: 3;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(201, 168, 76, 0.95);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.05em;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    text-align: center;
    white-space: nowrap;
}

/* モバイル：医師の頭上〜女性の肘の高さに配置（顔と被らないように上に移動） */
.hero-content {
    position: absolute;
    top: 44%;
    left: 50%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
    z-index: 2;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    width: 85%;
    max-width: 380px;
}

.hero-title {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 10px 0;
    color: #fff;
    text-align: left;
    width: 100%;
    text-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.95),
        0 6px 24px rgba(0, 0, 0, 0.9),
        4px 4px 8px rgba(0, 0, 0, 0.95),
        -4px -4px 8px rgba(0, 0, 0, 0.95);
}

/* タイトル1行目：やや左寄せ、絶対に1行表示 */
.title-line-1 {
    text-align: left;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: visible;
}

/* タイトル2行目：中央寄り、絶対に1行表示 */
.title-line-2 {
    text-align: center;
    padding-left: 20px;
    white-space: nowrap;
    overflow: visible;
}

.text-gradient {
    color: #ffd700;
    font-weight: 900;
    text-shadow: 
        0 0 20px rgba(255, 215, 0, 0.8),
        0 2px 8px rgba(0, 0, 0, 0.9),
        0 4px 16px rgba(0, 0, 0, 0.7),
        2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    color: #fff;
    text-align: right;
    width: 100%;
    padding-right: 10px;
    text-shadow: 
        0 3px 10px rgba(0, 0, 0, 0.95),
        0 5px 20px rgba(0, 0, 0, 0.9),
        3px 3px 6px rgba(0, 0, 0, 0.95),
        -3px -3px 6px rgba(0, 0, 0, 0.95);
}

/* 画像内下部（医師の下の水色スペース）：CTAボタン */
.hero-cta-wrapper {
    position: relative;
    padding: 16px;
    z-index: 2;
    margin-top: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 500px;
}

/* ===== 社会的証明バー ===== */
.proof-bar {
    padding: 40px 0;
    background-color: #f8f9fa;
}

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

.proof-item {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.proof-number {
    font-size: 32px;
    font-weight: 900;
    color: #c9a84c;
    margin-bottom: 8px;
}

.proof-label {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

/* ===== セクション共通スタイル ===== */
.section {
    padding: 40px 0;
}

.section-title {
    font-size: 26px;
    font-weight: 900;
    color: #1a2b4a;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.4;
}

.section-subtitle {
    font-size: 15px;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
}

/* ===== 課題提起セクション ===== */
.problems {
    background-color: #f8f9fa;
}

.problems-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.problem-card {
    background-color: #fff;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.problem-icon {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.problem-icon svg {
    width: 64px;
    height: 64px;
}

.problem-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a2b4a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.problem-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ===== ソリューションセクション ===== */
.solution {
    background: linear-gradient(135deg, #1a2b4a 0%, #2a4066 100%);
    color: #fff;
}

.solution-content {
    text-align: center;
}

.solution .section-title {
    color: #fff;
}

.solution-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.text-highlight {
    color: #c9a84c;
    font-weight: 700;
}

.solution-badge {
    display: inline-block;
    padding: 12px 24px;
    background-color: rgba(201, 168, 76, 0.2);
    border: 2px solid #c9a84c;
    border-radius: 50px;
}

.badge-text {
    font-size: 14px;
    font-weight: 700;
    color: #c9a84c;
}

/* ===== 医師紹介セクション ===== */
.doctor {
    background-color: #fff;
}

.doctor-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.doctor-image {
    position: relative;
    text-align: center;
}

.doctor-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #c9a84c;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.doctor-badge {
    margin-top: 16px;
    display: inline-block;
    padding: 8px 16px;
    background-color: #c9a84c;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
}

.doctor-info {
    text-align: center;
}

.doctor-name {
    font-size: 24px;
    font-weight: 900;
    color: #1a2b4a;
    margin-bottom: 12px;
}

.doctor-title {
    font-size: 18px;
    font-weight: 500;
    margin-left: 8px;
}

.doctor-credentials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.credential {
    display: inline-block;
    padding: 6px 12px;
    background-color: #f8f9fa;
    color: #1a2b4a;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
}

.doctor-description {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    text-align: left;
}

/* ===== サービス内容セクション ===== */
.services {
    background-color: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.service-card {
    background-color: #fff;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon svg {
    width: 56px;
    height: 56px;
}

.service-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a2b4a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.service-text {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* ===== 料金プランセクション ===== */
.pricing {
    background-color: #fff;
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pricing-card {
    position: relative;
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 16px;
    border: 2px solid #e9ecef;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured,
.pricing-card.recommended {
    border-color: #c9a84c;
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background-color: #c9a84c;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    white-space: nowrap;
}

.pricing-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a2b4a;
    margin-bottom: 16px;
    margin-top: 8px;
}

.pricing-price {
    margin-bottom: 16px;
}

.price-amount {
    font-size: 36px;
    font-weight: 900;
    color: #c9a84c;
}

.price-period {
    font-size: 16px;
    color: #666;
}

.pricing-note {
    font-size: 12px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-card .btn {
    margin-top: auto;
}

/* ===== 導入メリットセクション ===== */
.benefits {
    background-color: #f8f9fa;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-card {
    background-color: #fff;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #c9a84c;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.benefit-number {
    font-size: 16px;
    font-weight: 900;
    color: #c9a84c;
    margin-bottom: 12px;
}

.benefit-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a2b4a;
    margin-bottom: 8px;
}

.benefit-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ===== 導入フローセクション ===== */
.flow {
    background-color: #fff;
}

.flow-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.flow-item {
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
}

.flow-step {
    display: inline-block;
    padding: 6px 16px;
    background-color: #c9a84c;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 12px;
}

.flow-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.flow-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a2b4a;
    margin-bottom: 8px;
}

.flow-text {
    font-size: 13px;
    color: #666;
}

.flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #c9a84c;
    transform: rotate(90deg);
    margin: -8px 0;
}

/* ===== 3月モニターキャンペーンセクション ===== */
.campaign {
    background: linear-gradient(135deg, #1a2b4a 0%, #2a4066 100%);
    padding: 60px 0;
}

.campaign-card {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.95) 0%, rgba(201, 168, 76, 0.85) 100%);
    padding: 40px 24px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin: 0 auto;
}

.campaign-badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: #dc3545;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.campaign-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 20px 0 30px;
    padding: 20px;
    background-color: rgba(220, 53, 69, 0.15);
    border-radius: 16px;
    border: 3px dashed #dc3545;
}

.countdown-label {
    font-size: 16px;
    font-weight: 700;
    color: #1a2b4a;
}

.countdown-number {
    font-size: 48px;
    font-weight: 900;
    color: #dc3545;
    line-height: 1;
    min-width: 80px;
    text-align: center;
}

.countdown-unit {
    font-size: 18px;
    font-weight: 700;
    color: #dc3545;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.campaign-title {
    font-size: 28px;
    font-weight: 900;
    color: #1a2b4a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.campaign-text {
    font-size: 16px;
    color: #1a2b4a;
    line-height: 1.8;
    margin-bottom: 30px;
}

.campaign-text strong {
    font-weight: 900;
    font-size: 18px;
}

.campaign-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.campaign-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(26, 43, 74, 0.1);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 15px;
    color: #1a2b4a;
    font-weight: 600;
}

.feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background-color: #1a2b4a;
    color: #c9a84c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.price-highlight {
    color: #dc3545;
    font-size: 20px;
    font-weight: 900;
}

.campaign-cta {
    max-width: 500px;
    margin: 0 auto;
}

.campaign-btn {
    background-color: #1a2b4a;
    border-color: #1a2b4a;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 12px;
}

.campaign-btn:hover {
    background-color: #0f1a2e;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.campaign-note {
    font-size: 13px;
    color: #1a2b4a;
    font-weight: 600;
}

/* ===== LINE CTAセクション ===== */
.line-cta {
    background: linear-gradient(135deg, #06C755 0%, #05b34c 100%);
    padding: 50px 0;
}

.line-cta-card {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.line-cta-title {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
}

.line-cta-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

/* ===== FAQセクション ===== */
.faq {
    background-color: #fff;
}

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

.faq-item {
    margin-bottom: 12px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    min-height: 60px;
    background-color: #fff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: #1a2b4a;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-icon {
    font-size: 24px;
    color: #c9a84c;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #f8f9fa;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 16px;
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

/* ===== Footer ===== */
.footer {
    background-color: #1a2b4a;
    color: #fff;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo-img {
    max-width: 250px;
    height: auto;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    min-height: 44px;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #c9a84c;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== アニメーション ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== タブレット (768px以上) ===== */
@media (min-width: 768px) {
    body {
        font-size: 16px;
    }

    .container {
        padding: 0 32px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .hero-wrapper {
        min-height: 750px;
        background-image: url('images/hero-bg-latest.jpg');
        background-size: 100% auto;
        background-position: center top;
        padding-bottom: 30px;
    }

    .hero-badge {
        font-size: 22px;
        padding: 14px 40px;
    }

    .hero-badge-wrapper {
        top: 30px;
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-content {
        top: 50%;
        left: 45%;
        right: 0;
        bottom: 220px;
        width: auto;
        max-width: none;
        transform: translateY(-50%);
        padding: 20px;
        align-items: flex-start;
        text-align: left;
    }

    .hero-title {
        font-size: 76px;
        line-height: 1.05;
        margin-bottom: 16px;
        text-align: left;
    }
    
    .title-line-1,
    .title-line-2 {
        white-space: normal;
    }

    .hero-subtitle {
        font-size: 20px;
        text-align: left;
    }

    .hero-cta-wrapper {
        padding: 20px 32px;
    }

    .hero-cta {
        flex-direction: row;
        gap: 16px;
        width: auto;
    }

    .hero-cta .btn {
        flex: 0 1 auto;
        min-width: 280px;
    }

    .proof-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

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

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

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

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

    .doctor-content {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
    }

    .doctor-image {
        flex-shrink: 0;
    }

    .doctor-image img {
        width: 280px;
        height: 280px;
    }

    .doctor-info {
        text-align: left;
    }

    .doctor-credentials {
        justify-content: flex-start;
    }

    .flow-container {
        flex-direction: row;
        align-items: flex-start;
    }

    .flow-item {
        flex: 1;
    }

    .flow-arrow {
        transform: rotate(0deg);
        margin: 0;
        padding-top: 40px;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer-links {
        flex-direction: row;
        gap: 24px;
    }

    .campaign {
        padding: 80px 0;
    }

    .campaign-card {
        padding: 50px 40px;
    }

    .campaign-title {
        font-size: 36px;
    }

    .campaign-text {
        font-size: 18px;
    }

    .campaign-features {
        flex-direction: row;
        justify-content: center;
        max-width: none;
    }

    .countdown-number {
        font-size: 64px;
        min-width: 120px;
    }

    .countdown-label {
        font-size: 18px;
    }

    .countdown-unit {
        font-size: 20px;
    }
}

/* ===== デスクトップ (1024px以上) ===== */
@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .section {
        padding: 80px 0;
    }

    .header {
        height: 72px;
    }

    .header-logo {
        height: 48px;
    }

    .hamburger {
        display: none;
    }

    .mobile-menu {
        display: none;
    }

    .desktop-nav {
        display: flex;
        gap: 16px;
    }

    .mobile-only {
        display: none;
    }

    .desktop-only {
        display: inline;
    }

    .hero {
        margin-top: 72px;
    }

    .hero-wrapper {
        min-height: 850px;
        background-size: 100% auto;
        padding-bottom: 40px;
    }

    .hero-badge {
        font-size: 26px;
        padding: 16px 50px;
    }

    .hero-badge-wrapper {
        top: 40px;
    }

    .hero-content {
        top: 50%;
        left: 40%;
        right: 0;
        bottom: 240px;
        width: auto;
        max-width: none;
        transform: translateY(-50%);
        padding: 25px;
        align-items: flex-start;
        text-align: left;
    }

    .hero-title {
        font-size: 96px;
        line-height: 1.05;
        margin-bottom: 20px;
        text-align: left;
    }
    
    .title-line-1,
    .title-line-2 {
        white-space: normal;
    }

    .hero-subtitle {
        font-size: 24px;
        text-align: left;
    }

    .hero-cta-wrapper {
        padding: 24px 40px;
    }

    .hero-cta {
        width: auto;
        gap: 20px;
    }

    .hero-cta .btn {
        min-width: 320px;
    }

    .section-title {
        font-size: 40px;
        margin-bottom: 40px;
    }

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

    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

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

    .btn {
        font-size: 16px;
        padding: 14px 28px;
    }

    .btn-large {
        padding: 16px 32px;
        font-size: 17px;
    }
    
    .doctor-image img {
        width: 320px;
        height: 320px;
    }

    .campaign-title {
        font-size: 42px;
    }

    .campaign-badge {
        font-size: 16px;
    }
}

/* ===== 超大画面 (1440px以上) ===== */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
}