/* ===== 保険選定 WordPress プラグイン スタイル ===== */

:root {
    --hoken-orange: #FF9800;
    --hoken-orange-dark: #F57C00;
    --hoken-green: #06C755;
    --hoken-green-dark: #05B04D;
    --hoken-blue: #4A90E2;
    --hoken-purple: #9C27B0;
    --hoken-gray: #6B7280;
    --hoken-border: #E5E7EB;
    --hoken-radius: 16px;
    --hoken-radius-lg: 24px;
    --hoken-shadow: 0 4px 20px rgba(0,0,0,0.08);
    --hoken-shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
}

/* SWELLの余白・コンテナをリセット */
.hoken-section {
    padding: 60px 0 !important;
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    box-sizing: border-box !important;
}
.hoken-container { margin: 0 auto; padding: 0 40px; }
.hoken-container-md { max-width: 860px; }
.hoken-container-lg { max-width: 1160px; }

/* SWELLのh2装飾を完全に消す */
.hoken-section h2,
.hoken-section h3,
.hoken-section-title {
    border: none !important;
    border-left: none !important;
    border-bottom: none !important;
    padding-left: 0 !important;
    padding-bottom: 0 !important;
    box-shadow: none !important;
    background: none !important;
    margin-top: 0 !important;
}
.hoken-section h2::before,
.hoken-section h2::after,
.hoken-section h3::before,
.hoken-section h3::after,
.hoken-section-title::before,
.hoken-section-title::after {
    display: none !important;
    content: none !important;
}

/* --- 背景色 --- */
.hoken-bg-white { background: #fff; }
.hoken-bg-cream { background: linear-gradient(to bottom, #fff, #FFF9E6); }
.hoken-bg-purple-light { background: linear-gradient(to bottom, #fff, #F3E5F5); }
.hoken-bg-green-light { background: linear-gradient(to bottom, #fff, #E8F5E9); }
.hoken-bg-orange-gradient { background: linear-gradient(to bottom, #FFF5E6, #FFE8CC); }

/* --- セクションヘッダー --- */
.hoken-section-header { text-align: center; margin-bottom: 48px; }
.hoken-section-label {
    display: block;
    font-size: 11px !important;
    font-weight: 700 !important;
    color: var(--hoken-orange);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 10px;
}
.hoken-section-label.hoken-label-blue { color: var(--hoken-blue); }
.hoken-section-title {
    font-size: clamp(28px, 4vw, 44px) !important;
    font-weight: 900 !important;
    color: #111827 !important;
    margin: 0 0 12px !important;
    line-height: 1.25 !important;
    letter-spacing: -0.01em !important;
}
.hoken-section-desc {
    font-size: 15px !important;
    color: var(--hoken-gray) !important;
    line-height: 1.7 !important;
    margin: 0 !important;
}

/* --- バッジ --- */
.hoken-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 16px; border-radius: 999px; font-size: 12px; font-weight: 700; margin-bottom: 16px; }
.hoken-badge-green { background: #E8F5E9; color: #2E7D32; }
.hoken-badge-purple { background: #F3E5F5; color: #6A1B9A; }
.hoken-badge-outline { display: inline-block; background: #FFF9E6; border: 2px solid #FFD700; padding: 10px 24px; border-radius: 999px; font-size: 16px !important; font-weight: 700; color: #111827; }

/* --- カード --- */
.hoken-card { background: #fff; border-radius: var(--hoken-radius-lg); padding: 40px 48px; }
.hoken-card-bordered { border: 2px solid #FFE4B5; }
.hoken-card-shadow { box-shadow: var(--hoken-shadow-lg); }

/* --- フォーム --- */
.hoken-form { display: flex; flex-direction: column; gap: 28px; }
.hoken-form-group { display: flex; flex-direction: column; gap: 14px; }
.hoken-form-label {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #111827 !important;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 !important;
}
.hoken-step-num { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; background: var(--hoken-orange); color: #fff; border-radius: 50%; font-size: 13px; font-weight: 700; flex-shrink: 0; }
.hoken-select { width: 100%; padding: 14px 20px; border: 2px solid var(--hoken-border); border-radius: 12px; font-size: 15px !important; background: #fff; cursor: pointer; transition: border-color 0.2s; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='%236B7280'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.hoken-select:focus { outline: none; border-color: var(--hoken-orange); }
.hoken-select-purple:focus { border-color: var(--hoken-purple); }
.hoken-select-green:focus { border-color: #4CAF50; }

/* --- ラジオグリッド --- */
.hoken-radio-grid { display: grid; gap: 12px; }
.hoken-grid-2 { grid-template-columns: repeat(2, 1fr); }
.hoken-grid-3 { grid-template-columns: repeat(3, 1fr); }
.hoken-grid-4 { grid-template-columns: repeat(4, 1fr); }
.hoken-radio-card input[type="radio"] { display: none; }
.hoken-radio-card { cursor: pointer; }
.hoken-radio-inner { border: 2px solid var(--hoken-border); border-radius: 12px; padding: 16px 12px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 6px; transition: all 0.2s; }
.hoken-radio-inner i { font-size: 28px; }
.hoken-radio-inner span { font-size: 13px !important; font-weight: 700 !important; color: #111827; }
.hoken-radio-card input:checked + .hoken-radio-inner { border-color: var(--hoken-orange); background: #FFF9E6; }
.hoken-radio-purple input:checked + .hoken-radio-inner { border-color: var(--hoken-purple); background: #F3E5F5; }
.hoken-radio-green input:checked + .hoken-radio-inner { border-color: #4CAF50; background: #E8F5E9; }
.hoken-radio-desc .hoken-radio-inner { flex-direction: row; justify-content: flex-start; text-align: left; padding: 14px; }
.hoken-radio-inner.hoken-radio-left { flex-direction: row; gap: 12px; text-align: left; justify-content: flex-start; }
.hoken-radio-title { font-size: 14px !important; font-weight: 700 !important; color: #111827; }
.hoken-radio-sub { font-size: 11px !important; color: var(--hoken-gray); }

/* --- アイコン色 --- */
.hoken-icon-orange { color: var(--hoken-orange); }
.hoken-icon-blue { color: var(--hoken-blue); }
.hoken-icon-pink { color: #E91E63; }
.hoken-icon-purple { color: var(--hoken-purple); }
.hoken-icon-green { color: #4CAF50; }

/* --- ボタン --- */
.hoken-btn-orange { background: var(--hoken-orange); color: #fff !important; border: none; border-radius: 999px; padding: 14px 40px; font-size: 16px !important; font-weight: 700 !important; cursor: pointer; transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; text-decoration: none !important; }
.hoken-btn-orange:hover { background: var(--hoken-orange-dark); box-shadow: 0 6px 20px rgba(255,152,0,0.4); }
.hoken-btn-green { background: var(--hoken-green); color: #fff !important; border: none; border-radius: 999px; padding: 14px 40px; font-size: 16px !important; font-weight: 700 !important; cursor: pointer; transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; text-decoration: none !important; }
.hoken-btn-green:hover { background: var(--hoken-green-dark); }
.hoken-btn-lg { padding: 16px 48px !important; font-size: 17px !important; }
.hoken-btn-full-sp { width: 100%; justify-content: center; }
.hoken-btn-consult { color: #fff !important; border: none; border-radius: 999px; padding: 13px 28px; font-size: 15px !important; font-weight: 700 !important; cursor: pointer; transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.hoken-btn-reset { background: #fff; color: #374151 !important; border: 2px solid var(--hoken-border); border-radius: 999px; padding: 13px 28px; font-size: 15px !important; font-weight: 700 !important; cursor: pointer; transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.hoken-btn-reset:hover { background: #F9FAFB; }

/* --- 注意書き --- */
.hoken-disclaimer { background: #F5F5F5; padding: 14px 16px; border-radius: 10px; font-size: 11px !important; color: #9CA3AF !important; line-height: 1.7; margin-top: 20px; }
.hoken-disclaimer-result ul { margin: 6px 0 0; padding-left: 20px; }
.hoken-disclaimer-result li { margin-bottom: 4px; font-size: 11px !important; }

/* --- 情報ボックス --- */
.hoken-info-box { padding: 14px 16px; border-radius: 12px; font-size: 13px !important; color: #374151; display: flex; align-items: flex-start; gap: 8px; margin-top: 20px; line-height: 1.7; }
.hoken-info-purple { background: #F3E5F5; }
.hoken-info-green { background: #E8F5E9; }

/* --- ユーティリティ --- */
.hoken-text-center { text-align: center; }
.hoken-mt-6 { margin-top: 24px; }
.hoken-mt-8 { margin-top: 32px; }
.hoken-mb-4 { margin-bottom: 16px; }
.hoken-mb-6 { margin-bottom: 24px; }
.hoken-text-gray { color: var(--hoken-gray); }

/* ===== ヒーローセクション ===== */
.hoken-hero {
    position: relative !important;
    min-height: 85vh !important;
    display: flex !important;
    align-items: center !important;
    background: url('https://admin-testsite-77777.com/wp-content/uploads/2025/08/%E5%90%8D%E7%A7%B0_%E6%9C%AA_%E8%A8%AD%E5%AE%9A.jpeg') center center / cover no-repeat !important;
    overflow: hidden !important;
    width: 100vw !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
}
.hoken-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(255,255,255,0.75) 0%, rgba(255,249,230,0.85) 100%); z-index: 0; }
.hoken-hero-content { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; padding: 80px 40px; text-align: center; }
.hoken-hero-title {
    font-size: clamp(38px, 6vw, 70px) !important;
    font-weight: 900 !important;
    color: #111827 !important;
    line-height: 1.2 !important;
    margin: 0 0 20px !important;
    letter-spacing: -0.02em !important;
}
.hoken-orange { color: var(--hoken-orange) !important; }
.hoken-hero-sub {
    font-size: clamp(15px, 2vw, 19px) !important;
    color: #374151 !important;
    font-weight: 600 !important;
    margin: 0 0 10px !important;
}
.hoken-hero-desc {
    font-size: clamp(13px, 1.5vw, 15px) !important;
    color: #6B7280 !important;
    margin: 0 0 36px !important;
    line-height: 1.9 !important;
}
.hoken-hero-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 50px; }
.hoken-hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 560px; margin: 0 auto; }
.hoken-stat-card { background: rgba(255,255,255,0.92); border: 2px solid #FFE4B5; border-radius: 14px; padding: 20px 12px; }
.hoken-stat-num { font-size: clamp(26px, 3vw, 38px) !important; font-weight: 900 !important; color: var(--hoken-orange) !important; line-height: 1 !important; }
.hoken-stat-label { font-size: 11px !important; color: #374151; font-weight: 600; margin-top: 6px; }

/* ===== ライフステージグリッド ===== */
.hoken-stage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.hoken-stage-card { background: #fff; border: 2px solid var(--hoken-border); border-radius: var(--hoken-radius-lg); padding: 28px 20px; text-align: center; cursor: pointer; transition: all 0.2s; box-shadow: var(--hoken-shadow); }
.hoken-stage-card:hover { border-color: var(--hoken-blue); box-shadow: var(--hoken-shadow-lg); transform: translateY(-2px); }
.hoken-stage-icon { width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; transition: transform 0.2s; }
.hoken-stage-card:hover .hoken-stage-icon { transform: scale(1.1); }
.hoken-stage-icon i { font-size: 32px; color: #fff; }
.hoken-stage-card h3 { font-size: 17px !important; font-weight: 800 !important; color: #111827 !important; margin: 0 0 4px !important; }
.hoken-stage-card p { font-size: 12px !important; color: var(--hoken-gray) !important; margin: 0 0 14px !important; }
.hoken-stage-cta { color: var(--hoken-blue); font-weight: 700; font-size: 13px !important; display: flex; align-items: center; justify-content: center; gap: 4px; }

/* ===== 診断結果 ===== */
.hoken-result-header { border-radius: var(--hoken-radius-lg); padding: 36px 32px; text-align: center; color: #fff; margin-bottom: 20px; }
.hoken-result-done-badge { display: inline-block; background: rgba(255,255,255,0.2); padding: 5px 18px; border-radius: 999px; font-size: 12px !important; font-weight: 700; margin-bottom: 14px; }
.hoken-result-header h3 { font-size: 26px !important; font-weight: 900 !important; margin: 0 0 14px !important; }
.hoken-result-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.hoken-result-tag { background: rgba(255,255,255,0.2); padding: 5px 14px; border-radius: 999px; font-size: 12px !important; }
.hoken-results-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 20px; }
.hoken-result-card { background: #fff; border: 2px solid var(--hoken-border); border-radius: var(--hoken-radius-lg); overflow: hidden; transition: border-color 0.2s; box-shadow: var(--hoken-shadow); }
.hoken-result-card-inner { padding: 24px 28px; }
.hoken-result-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.hoken-result-badge { color: #fff; padding: 3px 10px; border-radius: 999px; font-size: 11px !important; font-weight: 700; }
.hoken-result-company { font-size: 18px !important; font-weight: 800 !important; color: #111827; }
.hoken-result-product { font-size: 20px !important; font-weight: 800 !important; margin: 0 0 8px; }
.hoken-result-price { display: flex; align-items: baseline; gap: 8px; }
.hoken-result-price-label { font-size: 12px !important; color: var(--hoken-gray); }
.hoken-result-price-num { font-size: 28px !important; font-weight: 900 !important; color: #111827; }
.hoken-result-features { border-top: 1px solid var(--hoken-border); padding-top: 16px; margin-top: 16px; }
.hoken-result-features-title { font-size: 12px !important; font-weight: 700; color: #374151; margin: 0 0 10px; }
.hoken-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.hoken-feature-item { display: flex; align-items: flex-start; gap: 6px; padding: 10px; border-radius: 8px; font-size: 12px !important; color: #374151; line-height: 1.5; }
.hoken-feature-item i { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.hoken-result-actions { margin-top: 16px; }
.hoken-result-cta-box { background: #fff; border: 2px solid #FFE4B5; border-radius: var(--hoken-radius-lg); padding: 28px; margin-bottom: 16px; }
.hoken-result-cta-box h4 { font-size: 18px !important; font-weight: 800 !important; color: #111827; margin: 0 0 10px; display: flex; align-items: center; gap: 8px; }
.hoken-result-cta-box p { font-size: 14px !important; color: var(--hoken-gray); margin: 0 0 18px; line-height: 1.7; }
.hoken-cta-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }
.hoken-cta-feature { display: flex; align-items: flex-start; gap: 10px; padding: 14px; border-radius: 10px; }
.hoken-cta-feature i { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.hoken-cta-feature strong { font-size: 14px !important; }
.hoken-cta-feature small { font-size: 12px !important; }
.hoken-cta-buttons { display: flex; flex-wrap: wrap; gap: 12px; }

/* ===== FAQ ===== */
.hoken-faq-list { display: flex; flex-direction: column; gap: 10px; }
.hoken-faq-item { background: #F9FAFB; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.hoken-faq-q { width: 100%; padding: 18px 22px; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; text-align: left; transition: background 0.2s; }
.hoken-faq-q:hover { background: #E8F5E9; }
.hoken-faq-q-inner { display: flex; align-items: flex-start; gap: 12px; flex: 1; }
.hoken-faq-badge { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; background: #E8F5E9; color: #2E7D32; border-radius: 8px; font-weight: 800; font-size: 13px !important; flex-shrink: 0; }
.hoken-faq-q-inner span { font-size: 14px !important; font-weight: 700 !important; color: #111827; padding-top: 2px; line-height: 1.6; }
.hoken-faq-arrow { font-size: 22px; color: #9CA3AF; transition: transform 0.2s; flex-shrink: 0; }
.hoken-faq-a { padding: 0 22px 18px 62px; }
.hoken-faq-a p { font-size: 13px !important; color: #374151; line-height: 1.85; margin: 0; }

/* ===== LINE連絡セクション ===== */
.hoken-line-contact-box { background: #fff; border-radius: var(--hoken-radius-lg); padding: 44px; text-align: center; box-shadow: var(--hoken-shadow-lg); max-width: 560px; margin: 0 auto; }
.hoken-line-icon-wrap { width: 72px; height: 72px; background: var(--hoken-green); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 36px; color: #fff; }
.hoken-line-contact-box h3 { font-size: 26px !important; font-weight: 900 !important; color: #111827; margin: 0 0 8px !important; }
.hoken-line-contact-box > p { font-size: 15px !important; color: var(--hoken-gray); margin: 0 0 22px !important; }
.hoken-line-features { list-style: none; padding: 0; margin: 0 0 26px; display: flex; flex-direction: column; gap: 10px; text-align: left; }
.hoken-line-features li { display: flex; align-items: center; gap: 10px; font-size: 14px !important; color: #374151; }
.hoken-line-features i { color: var(--hoken-green); font-size: 17px; }

/* ===== モーダル ===== */
.hoken-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 20px; }
.hoken-modal-box { background: #fff; border-radius: var(--hoken-radius-lg); max-width: 420px; width: 100%; max-height: 90vh; overflow-y: auto; padding: 36px 28px; position: relative; }
.hoken-modal-close { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; background: #F3F4F6; border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 18px; color: #374151; transition: background 0.2s; }
.hoken-modal-close:hover { background: #E5E7EB; }
.hoken-modal-inner { text-align: center; }
.hoken-line-modal-icon { width: 72px; height: 72px; background: var(--hoken-green); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 36px; color: #fff; }
.hoken-modal-inner h3 { font-size: 24px !important; font-weight: 900 !important; margin: 0 0 8px !important; }
.hoken-modal-inner > p { font-size: 14px !important; color: var(--hoken-gray); margin: 0 0 18px !important; }
.hoken-qr-wrap { border: 4px solid var(--hoken-green); border-radius: 14px; padding: 14px; margin-bottom: 18px; }
.hoken-qr-placeholder { font-size: 13px !important; color: var(--hoken-gray); padding: 16px 0; }
.hoken-qr-note { font-size: 11px !important; color: var(--hoken-gray); margin-top: 10px; }

/* ===== お客様の声 ===== */
.hoken-voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.hoken-voice-card { background: #fff; border-radius: var(--hoken-radius-lg); padding: 22px; box-shadow: var(--hoken-shadow); border: 1px solid var(--hoken-border); }
.hoken-voice-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.hoken-voice-profile { display: flex; flex-direction: column; gap: 3px; }
.hoken-voice-age { font-size: 20px !important; font-weight: 900 !important; color: #111827; }
.hoken-voice-type { font-size: 11px !important; color: var(--hoken-gray); }
.hoken-voice-save { text-align: right; }
.hoken-voice-save-label { display: block; font-size: 10px !important; color: var(--hoken-gray); margin-bottom: 2px; }
.hoken-voice-save-num { font-size: 13px !important; font-weight: 800 !important; color: var(--hoken-orange); }
.hoken-voice-prices { display: flex; align-items: center; gap: 6px; background: #F9FAFB; border-radius: 8px; padding: 10px 12px; margin-bottom: 14px; }
.hoken-voice-price-item { flex: 1; text-align: center; }
.hoken-voice-price-label { display: block; font-size: 10px !important; color: var(--hoken-gray); margin-bottom: 3px; }
.hoken-voice-price-num { font-size: 14px !important; font-weight: 800 !important; }
.hoken-voice-before { color: #9CA3AF; text-decoration: line-through; }
.hoken-voice-after { color: var(--hoken-orange); }
.hoken-voice-arrow { color: var(--hoken-orange); font-size: 18px; flex-shrink: 0; }
.hoken-voice-text { font-size: 13px !important; color: #374151; line-height: 1.8 !important; margin: 0 0 10px; font-style: italic; }
.hoken-voice-initial { font-size: 12px !important; font-weight: 700; color: var(--hoken-gray); text-align: right; margin: 0; }
.hoken-voice-note { text-align: center; font-size: 11px !important; color: var(--hoken-gray); margin-top: 20px; }

/* ===== 選ばれる理由 ===== */
.hoken-reason-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.hoken-reason-card { background: #fff; border-radius: var(--hoken-radius-lg); padding: 28px 20px; text-align: center; box-shadow: var(--hoken-shadow); transition: transform 0.2s, box-shadow 0.2s; }
.hoken-reason-card:hover { transform: translateY(-4px); box-shadow: var(--hoken-shadow-lg); }
.hoken-reason-icon { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.hoken-reason-icon i { font-size: 30px; }
.hoken-reason-card h3 { font-size: 16px !important; font-weight: 800 !important; color: #111827 !important; margin: 0 0 10px !important; line-height: 1.4 !important; }
.hoken-reason-card p { font-size: 13px !important; color: var(--hoken-gray) !important; line-height: 1.8 !important; margin: 0 !important; }

/* ===== レスポンシブ ===== */
@media (max-width: 768px) {
    .hoken-card { padding: 24px 20px; }
    .hoken-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .hoken-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .hoken-stage-grid { grid-template-columns: repeat(2, 1fr); }
    .hoken-features-grid { grid-template-columns: 1fr; }
    .hoken-cta-features { grid-template-columns: 1fr; }
    .hoken-cta-buttons { flex-direction: column; }
    .hoken-voice-grid { grid-template-columns: 1fr; }
    .hoken-reason-grid { grid-template-columns: repeat(2, 1fr); }
    .hoken-hero-stats { gap: 10px; }
}
@media (max-width: 480px) {
    .hoken-section { padding: 48px 0 !important; }
    .hoken-grid-3 { grid-template-columns: 1fr 1fr; }
    .hoken-stage-grid { grid-template-columns: 1fr 1fr; }
    .hoken-reason-grid { grid-template-columns: 1fr; }
    .hoken-stat-card { padding: 14px 8px; }
    .hoken-hero-buttons { flex-direction: column; align-items: stretch; }
    .hoken-btn-orange, .hoken-btn-green { justify-content: center; }
    .hoken-container { padding: 0 20px; }
}

/* ===== HPヒーロー ===== */
.hoken-hp-hero {
    position: relative !important;
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    background: url('https://admin-testsite-77777.com/wp-content/uploads/2025/08/%E5%90%8D%E7%A7%B0_%E6%9C%AA_%E8%A8%AD%E5%AE%9A.jpeg') center center / cover no-repeat !important;
    width: 100vw !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
}
.hoken-hp-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.88) 0%, rgba(255,249,230,0.82) 100%);
    z-index: 0;
}
.hoken-hp-hero-content {
    position: relative; z-index: 1;
    max-width: 900px; margin: 0 auto;
    padding: 100px 40px; text-align: center;
}
.hoken-hp-hero-badge {
    display: inline-block;
    background: var(--hoken-orange);
    color: #fff;
    font-size: 13px !important;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 999px;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}
.hoken-hp-hero-title {
    font-size: clamp(36px, 5.5vw, 64px) !important;
    font-weight: 900 !important;
    color: #111827 !important;
    line-height: 1.25 !important;
    margin: 0 0 24px !important;
    letter-spacing: -0.02em !important;
}
.hoken-hp-hero-desc {
    font-size: clamp(15px, 2vw, 18px) !important;
    color: #374151 !important;
    line-height: 1.9 !important;
    margin: 0 0 36px !important;
}
.hoken-hp-hero-buttons {
    display: flex; flex-wrap: wrap;
    justify-content: center; gap: 16px;
    margin-bottom: 56px;
}
.hoken-hp-hero-stats {
    display: flex; align-items: center;
    justify-content: center; gap: 0;
    background: rgba(255,255,255,0.9);
    border: 2px solid #FFE4B5;
    border-radius: 20px;
    padding: 24px 32px;
    max-width: 700px; margin: 0 auto;
    flex-wrap: wrap;
}
.hoken-hp-stat { text-align: center; padding: 0 24px; }
.hoken-hp-stat-num {
    display: block;
    font-size: clamp(28px, 3.5vw, 40px) !important;
    font-weight: 900 !important;
    color: var(--hoken-orange);
    line-height: 1;
}
.hoken-hp-stat-num small { font-size: 0.5em; font-weight: 700; }
.hoken-hp-stat-label {
    display: block;
    font-size: 11px !important;
    color: #374151;
    font-weight: 600;
    margin-top: 6px;
}
.hoken-hp-stat-divider {
    width: 1px; height: 48px;
    background: #FFE4B5;
}

/* ===== HPについて ===== */
.hoken-hp-about-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hoken-hp-about-lead {
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #111827 !important;
    line-height: 1.8 !important;
    margin: 0 0 20px !important;
}
.hoken-hp-about-body {
    font-size: 15px !important;
    color: #374151 !important;
    line-height: 1.9 !important;
    margin: 0 0 16px !important;
}
.hoken-hp-about-points {
    display: flex; flex-direction: column; gap: 12px;
    margin: 24px 0;
}
.hoken-hp-about-point {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px !important; color: #374151;
}
.hoken-hp-about-point i { color: var(--hoken-orange); font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.hoken-hp-about-image { position: relative; }
.hoken-hp-about-img-wrap {
    width: 100%; aspect-ratio: 4/3;
    border-radius: 20px; overflow: hidden;
    box-shadow: var(--hoken-shadow-lg);
}
.hoken-hp-about-card {
    position: absolute; bottom: -20px; left: -20px;
    background: var(--hoken-orange);
    color: #fff; border-radius: 16px;
    padding: 16px 20px; text-align: center;
    box-shadow: 0 8px 24px rgba(255,152,0,0.4);
}
.hoken-hp-about-card-num { font-size: 32px !important; font-weight: 900 !important; line-height: 1; }
.hoken-hp-about-card-text { font-size: 12px !important; font-weight: 700; margin-top: 4px; }
.hoken-hp-about-card-text small { font-size: 10px !important; opacity: 0.8; }

/* ===== 取扱保険会社 ===== */
.hoken-company-categories { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 24px; }
.hoken-company-category { background: #fff; border-radius: var(--hoken-radius-lg); padding: 28px; box-shadow: var(--hoken-shadow); }
.hoken-company-cat-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.hoken-company-cat-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.hoken-company-cat-title { font-size: 18px !important; font-weight: 800 !important; margin: 0 !important; }
.hoken-company-list { display: flex; flex-wrap: wrap; gap: 8px; }
.hoken-company-item { display: flex; align-items: center; gap: 6px; background: #F9FAFB; border: 1px solid var(--hoken-border); border-radius: 8px; padding: 6px 12px; font-size: 13px !important; color: #374151; }
.hoken-company-item i { font-size: 14px; color: var(--hoken-gray); }
.hoken-company-note { background: #FFF9E6; border: 1px solid #FFE4B5; border-radius: 12px; padding: 14px 18px; font-size: 13px !important; color: #374151; display: flex; align-items: flex-start; gap: 8px; line-height: 1.7; }
.hoken-company-note i { color: var(--hoken-orange); font-size: 18px; flex-shrink: 0; margin-top: 1px; }

/* ===== HP CTA ===== */
.hoken-hp-cta-section { background: linear-gradient(135deg, #FF9800, #F57C00) !important; }
.hoken-hp-cta-box { text-align: center; padding: 20px 0; }
.hoken-hp-cta-title { font-size: clamp(26px, 4vw, 40px) !important; font-weight: 900 !important; color: #fff !important; margin: 0 0 16px !important; line-height: 1.3 !important; }
.hoken-hp-cta-desc { font-size: 16px !important; color: rgba(255,255,255,0.9) !important; margin: 0 0 32px !important; line-height: 1.7 !important; }
.hoken-hp-cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-bottom: 16px; }
.hoken-hp-cta-section .hoken-btn-orange { background: #fff !important; color: var(--hoken-orange) !important; }
.hoken-hp-cta-section .hoken-btn-orange:hover { background: #FFF9E6 !important; }
.hoken-hp-cta-note { font-size: 12px !important; color: rgba(255,255,255,0.8) !important; margin: 0 !important; }

/* ===== お問い合わせ ===== */
.hoken-contact-wrap { max-width: 640px; margin: 0 auto; }
.hoken-contact-line-box { background: #F0FDF4; border: 2px solid #86EFAC; border-radius: var(--hoken-radius-lg); padding: 32px; text-align: center; margin-bottom: 24px; }
.hoken-contact-line-box h3 { font-size: 20px !important; font-weight: 800 !important; color: #111827; margin: 12px 0 8px !important; }
.hoken-contact-line-box p { font-size: 14px !important; color: var(--hoken-gray); margin: 0 0 20px !important; }
.hoken-contact-divider { text-align: center; position: relative; margin: 24px 0; }
.hoken-contact-divider::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--hoken-border); }
.hoken-contact-divider span { position: relative; background: #fff; padding: 0 16px; font-size: 13px !important; color: var(--hoken-gray); }
.hoken-contact-form h3 { font-size: 20px !important; font-weight: 800 !important; color: #111827; margin: 0 0 24px !important; }
.hoken-contact-field { margin-bottom: 20px; }
.hoken-contact-field label { display: block; font-size: 14px !important; font-weight: 700; color: #374151; margin-bottom: 8px; }
.hoken-required { color: var(--hoken-orange); }
.hoken-input { width: 100%; padding: 13px 16px; border: 2px solid var(--hoken-border); border-radius: 10px; font-size: 15px !important; transition: border-color 0.2s; box-sizing: border-box; }
.hoken-input:focus { outline: none; border-color: var(--hoken-orange); }
.hoken-textarea { width: 100%; padding: 13px 16px; border: 2px solid var(--hoken-border); border-radius: 10px; font-size: 15px !important; transition: border-color 0.2s; resize: vertical; box-sizing: border-box; }
.hoken-textarea:focus { outline: none; border-color: var(--hoken-orange); }

/* ===== レスポンシブ追加 ===== */
@media (max-width: 768px) {
    .hoken-hp-about-wrap { grid-template-columns: 1fr; gap: 40px; }
    .hoken-hp-about-image { order: -1; }
    .hoken-hp-about-card { bottom: -16px; left: -10px; }
    .hoken-company-categories { grid-template-columns: 1fr; }
    .hoken-hp-hero-stats { gap: 16px; padding: 20px; }
    .hoken-hp-stat-divider { display: none; }
    .hoken-hp-stat { padding: 0 12px; }
    .hoken-hp-cta-buttons { flex-direction: column; align-items: stretch; }
}

/* ===== ご相談の流れ ===== */
.hoken-flow-wrap { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.hoken-flow-item { position: relative; display: grid; grid-template-columns: 100px 1fr; gap: 24px; align-items: flex-start; }
.hoken-flow-step { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hoken-flow-icon { width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.hoken-flow-icon i { font-size: 32px; }
.hoken-flow-num { font-size: 11px !important; font-weight: 800 !important; color: #fff; padding: 4px 10px; border-radius: 999px; letter-spacing: 0.05em; }
.hoken-flow-content { background: #fff; border-radius: var(--hoken-radius); padding: 24px; box-shadow: var(--hoken-shadow); margin-bottom: 8px; }
.hoken-flow-title { font-size: 20px !important; font-weight: 800 !important; color: #111827; margin: 0 0 8px !important; }
.hoken-flow-desc { font-size: 14px !important; color: #374151; line-height: 1.8 !important; margin: 0 0 12px !important; }
.hoken-flow-time { font-size: 12px !important; font-weight: 700; display: flex; align-items: center; gap: 4px; }
.hoken-flow-arrow { grid-column: 1; text-align: center; font-size: 24px; color: #D1D5DB; padding: 4px 0; }

/* ===== 保険の種類 ===== */
.hoken-types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.hoken-type-card { background: #fff; border-radius: var(--hoken-radius-lg); overflow: hidden; box-shadow: var(--hoken-shadow); transition: transform 0.2s, box-shadow 0.2s; }
.hoken-type-card:hover { transform: translateY(-4px); box-shadow: var(--hoken-shadow-lg); }
.hoken-type-header { padding: 20px; display: flex; align-items: center; gap: 14px; }
.hoken-type-icon { font-size: 32px; flex-shrink: 0; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; }
.hoken-type-title { font-size: 18px !important; font-weight: 800 !important; margin: 0 0 2px !important; }
.hoken-type-subtitle { font-size: 12px !important; color: #6B7280; margin: 0 !important; }
.hoken-type-body { padding: 20px; }
.hoken-type-desc { font-size: 13px !important; color: #374151; line-height: 1.8 !important; margin: 0 0 14px !important; }
.hoken-type-target { display: flex; align-items: center; gap: 6px; font-size: 12px !important; font-weight: 700; color: #374151; margin-bottom: 12px; background: #F9FAFB; padding: 8px 12px; border-radius: 8px; }
.hoken-type-target i { font-size: 16px; }
.hoken-type-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.hoken-type-tag { font-size: 11px !important; font-weight: 700; padding: 4px 10px; border-radius: 999px; }

/* ===== 対応エリア ===== */
.hoken-area-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hoken-area-map { display: flex; justify-content: center; align-items: center; }
.hoken-area-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--hoken-orange); color: #fff; font-size: 14px !important; font-weight: 700; padding: 8px 20px; border-radius: 999px; margin-bottom: 20px; }
.hoken-area-title { font-size: clamp(24px, 3vw, 36px) !important; font-weight: 900 !important; color: #111827; margin: 0 0 16px !important; line-height: 1.3 !important; }
.hoken-area-desc { font-size: 15px !important; color: #374151; line-height: 1.8 !important; margin: 0 0 28px !important; }
.hoken-area-options { display: flex; flex-direction: column; gap: 16px; }
.hoken-area-option { display: flex; align-items: flex-start; gap: 14px; }
.hoken-area-option-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.hoken-area-option h4 { font-size: 15px !important; font-weight: 800 !important; color: #111827; margin: 0 0 4px !important; }
.hoken-area-option p { font-size: 13px !important; color: #6B7280; margin: 0 !important; line-height: 1.7 !important; }

@media (max-width: 768px) {
    .hoken-flow-item { grid-template-columns: 80px 1fr; gap: 16px; }
    .hoken-types-grid { grid-template-columns: 1fr; }
    .hoken-area-wrap { grid-template-columns: 1fr; gap: 32px; }
    .hoken-area-map { order: -1; }
}
