/* =============================================================
   即日アリアちゃん 特化LP - style.css  2026年6月 全面刷新版
   デザインコンセプト:
     ピンク×ベージュ×ゴールドの「洗練された親しみやすさ」
     エディトリアル誌的なメリハリのあるレイアウト
     キャラクターを「装飾」ではなく「ナレーター」として機能させる
   Core Web Vitals対策:
     font-display:swap / 全img明示サイズ / min-height予約 / CLS=0目標
============================================================= */

/* ===== フォント =====
   Zen Maru Gothic: 丸みのある日本語フォントで親しみやすさと品を両立
   Playfair Display: セクション番号・アクセントに英字エレガンス
*/
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700;900&family=Playfair+Display:ital,wght@0,700;1,400&display=swap');

:root {
    /* カラー */
    --rose: #e8607a;
    --rose-mid: #f08090;
    --rose-lt: #ffd0da;
    --rose-pale: #fff4f6;
    --cream: #fdf6ee;
    --gold: #c9972a;
    --gold-lt: #f5e4b8;
    --charcoal: #2d2020;
    --text: #3a2828;
    --text-mid: #6b4c4c;
    --text-lt: #9e7878;
    --white: #ffffff;
    --border: #f0d8dc;

    /* シャドウ */
    --sh-sm: 0 2px 12px rgba(200, 60, 80, .10);
    --sh-md: 0 4px 28px rgba(200, 60, 80, .15);
    --sh-lg: 0 8px 48px rgba(200, 60, 80, .20);

    /* 形状 */
    --r-sm: 12px;
    --r-md: 20px;
    --r-lg: 32px;
    --r-pill: 999px;

    /* スペース */
    --section-py: 80px;
    --inner-w: 1400px;
}

/* ===== リセット ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    /* bodyではなくhtmlに設定: position:stickyを殺さない */
}

body {
    font-family: 'Zen Maru Gothic', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    background-color: var(--cream);
    background-image:
        linear-gradient(rgba(253, 246, 238, .82), rgba(253, 246, 238, .82)),
        url("images/aria-dot-pattern.png");
    background-repeat: repeat;
    background-size: auto, 320px 320px;
    color: var(--text);
    font-size: 16px;
    line-height: 1.75;
}

/* ===== アクセシビリティ ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -50px;
    left: 0;
    background: var(--rose);
    color: var(--white);
    padding: 10px 20px;
    font-weight: 700;
    text-decoration: none;
    z-index: 9999;
    transition: top .2s;
}

.skip-link:focus {
    top: 0;
}

/* ===== ヘルパー ===== */
.inner {
    max-width: var(--inner-w);
    margin: 0 auto;
    padding: 0 12px;
}

.section {
    padding: var(--section-py) 0;
}

.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: none;
}




/* ===== 見出しシステム ===== */
.sec-h2 {
    font-size: clamp(22px, 3.8vw, 32px);
    font-weight: 900;
    color: var(--charcoal);
    line-height: 1.3;
    margin: 0 auto 28px;
    letter-spacing: -.01em;
    text-align: center;
}

.sec-h2 span {
    /* キーワード強調: 下線グラデーション */
    background: linear-gradient(180deg, transparent 60%, var(--rose-lt) 60%);
    padding: 0 2px;
}


/* ===== デバイダー ===== */


/* ===== 更新バッジ ===== */
.update-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold-lt);
    border: 1px solid var(--gold);
    border-radius: var(--r-pill);
    padding: 3px 14px;
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 18px;
}

/* =======================================================
   HEADER
======================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(253, 246, 238, .95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    width: 100%;
}

.header-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--rose-lt);
    object-fit: cover;
}

.header-site-name {
    font-weight: 900;
    font-size: 15px;
    color: var(--charcoal);
    line-height: 1.25;
}

.header-site-name small {
    display: block;
    font-size: 10px;
    font-weight: 500;
    color: var(--text-mid);
    letter-spacing: .06em;
}

.header-badge {
    margin-left: auto;
    background: var(--rose);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
    padding: 4px 12px;
    border-radius: var(--r-pill);
    white-space: nowrap;
}

/* ヘッダー右側グループ */
.header-right {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.header-update {
    font-size: 10px;
    color: var(--text-lt);
    white-space: nowrap;
}

.header-renew-badge {
    background: var(--rose-pale);
    color: var(--rose);
    border: 1px solid var(--rose-lt);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: var(--r-pill);
    white-space: nowrap;
}

/* =======================================================
   HERO
======================================================= */
.hero-legacy-removed {
    display: none;
}

/* 旧heroスタイル削除 */
/* 右下の装飾円 */
.hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 96, 122, .10) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: flex-end;
    position: relative;
    z-index: 1;
}

.hero-text {
    padding-bottom: 60px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.badge-tag {
    background: var(--white);
    border: 1.5px solid var(--rose-lt);
    color: var(--rose);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    padding: 4px 14px;
    border-radius: var(--r-pill);
}

.badge-tag.accent {
    background: var(--gold-lt);
    border-color: var(--gold);
    color: var(--gold);
}

.hero-h1 {
    font-size: clamp(26px, 5vw, 42px);
    font-weight: 900;
    line-height: 1.28;
    color: var(--charcoal);
    letter-spacing: -.02em;
    margin-bottom: 18px;
}

.hero-h1 em {
    font-style: normal;
    color: var(--rose);
}

.hero-desc {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 32px;
    max-width: 440px;
}

/* ヒーロー統計カード */
.hero-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.stat-pill {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    padding: 14px 20px;
    min-width: 96px;
    box-shadow: var(--sh-sm);
    text-align: center;
    flex: 1;
}

.stat-val {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--rose);
    line-height: 1;
}

.stat-val sub {
    font-size: 14px;
    vertical-align: baseline;
}

.stat-key {
    font-size: 11px;
    color: var(--text-lt);
    margin-top: 4px;
}

/* CTA ボタン */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--rose) 0%, #c04060 100%);
    color: var(--white);
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 16px;
    font-weight: 900;
    padding: 16px 36px;
    border-radius: var(--r-pill);
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(200, 60, 80, .36);
    transition: transform .2s, box-shadow .2s;
    letter-spacing: .03em;
}

.btn-primary::after {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E") center/contain no-repeat;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(200, 60, 80, .45);
}

/* ヒーロー画像エリア */
.hero-img-wrap {
    position: relative;
    align-self: flex-end;
}

.hero-chara {
    width: 100%;
    max-width: 380px;
    filter: drop-shadow(0 12px 32px rgba(200, 60, 80, .22));
    animation: float 3.2s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* ヒーロー画像に重なるポップ情報 */
.hero-pop {
    position: absolute;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--r-md);
    padding: 10px 16px;
    box-shadow: var(--sh-md);
    white-space: nowrap;
}

.hero-pop-rate {
    top: 60px;
    left: -40px;
}

.hero-pop-speed {
    bottom: 100px;
    right: -20px;
}

.hero-pop .pop-label {
    font-size: 10px;
    color: var(--text-lt);
    font-weight: 700;
    letter-spacing: .06em;
}

.hero-pop .pop-val {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--rose);
    line-height: 1.1;
}

.hero-pop .pop-unit {
    font-size: 11px;
    color: var(--text-mid);
}

/* =======================================================
   TOC（目次）
======================================================= */
.toc-section {
    background: var(--white);
    padding: 36px 0;
    border-bottom: 1px solid var(--border);
}

.toc-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: start;
}

.toc-label-vert {
    writing-mode: vertical-rl;
    font-family: 'Playfair Display', serif;
    font-size: 11px;
    letter-spacing: .2em;
    color: var(--rose);
    text-transform: uppercase;
    padding-top: 4px;
}

.toc-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 32px;
}

.toc-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-mid);
    padding: 7px 0;
    border-bottom: 1px solid #f5e8ea;
    transition: color .2s;
}

.toc-list li a:hover {
    color: var(--rose);
}

.toc-num {
    flex-shrink: 0;
    font-family: 'Playfair Display', serif;
    font-size: 12px;
    color: var(--rose);
    min-width: 20px;
}

/* =======================================================
   SECTION 1 — サービス概要
======================================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 48px;
    align-items: start;
}

/* タイムライン */
.timeline {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 32px;
}

.tl-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 0;
    position: relative;
}

.tl-item::before {
    content: '';
    position: absolute;
    left: 119px;
    top: 32px;
    width: 1px;
    height: calc(100% - 8px);
    background: var(--rose-lt);
}

.tl-item:last-child::before {
    display: none;
}

.tl-date {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--rose);
    padding: 12px 16px 12px 0;
    text-align: right;
}

.tl-body {
    border-left: 2px solid var(--rose-lt);
    padding: 10px 0 24px 20px;
    position: relative;
}

.tl-body::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 14px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--rose);
    border: 2px solid var(--white);
}

.tl-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.tl-text {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.7;
}

/* 会社情報テーブル */
.info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    background: var(--white);
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--sh-sm);
}

.info-table th,
.info-table td {
    padding: 13px 18px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}

.info-table th {
    background: var(--rose-pale);
    color: var(--rose);
    font-weight: 700;
    width: 38%;
}

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

/* キャラ補足ボックス */
.chara-comment {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    padding: 20px;
    position: relative;
    margin-top: 20px;
}

.chara-comment::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 14px solid var(--border);
}

.chara-comment::after {
    content: '';
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-bottom: 13px solid var(--white);
}

.chara-comment p {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.75;
}

/* =======================================================
   SECTION 2 — 換金率
======================================================= */
.rate-section {
    background: var(--white);
}

.rate-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.rate-card {
    border-radius: var(--r-lg);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--sh-md);
}

.rate-card.first {
    background: linear-gradient(145deg, var(--rose) 0%, #c04060 100%);
    color: var(--white);
}

.rate-card.repeat {
    background: var(--cream);
    border: 2px solid var(--border);
    color: var(--charcoal);
}

.rate-card-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 8px;
    opacity: .8;
}

.rate-card-num {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.rate-card.first .rate-card-num {
    color: var(--white);
}

.rate-card.repeat .rate-card-num {
    color: var(--rose);
}

.rate-card-unit {
    font-size: 24px;
    vertical-align: super;
}

.rate-card-note {
    font-size: 12px;
    opacity: .75;
    margin-top: 8px;
}

/* デコ円 */
.rate-card::after {
    content: '';
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .10);
    pointer-events: none;
}

/* キャラ装飾 */
.rate-card-chara {
    position: absolute;
    right: 16px;
    top: 16px;
    width: 90px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .15));
}

/* シミュレーション */
.sim-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--sh-sm);
}

.sim-table thead th {
    background: var(--rose-pale);
    color: var(--rose);
    padding: 12px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .05em;
}

.sim-table thead th:first-child {
    text-align: left;
}

.sim-table tbody td {
    padding: 13px 20px;
    border-top: 1px solid var(--border);
    text-align: center;
    background: var(--white);
    font-size: 14px;
}

.sim-table tbody td:first-child {
    text-align: left;
    font-weight: 700;
}

.sim-table tbody tr:nth-child(even) td {
    background: #fdf8f9;
}

.sim-val-first {
    color: var(--rose);
    font-weight: 900;
}

/* =======================================================
   SECTION 3 — 利用手順
======================================================= */
.steps-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step-item {
    display: grid;
    grid-template-columns: 64px 1fr 180px;
    gap: 24px;
    align-items: center;
    padding-bottom: 40px;
    position: relative;
}

/* 縦線 */
.step-item::after {
    content: '';
    position: absolute;
    left: 31px;
    top: 64px;
    width: 2px;
    bottom: 0;
    background: linear-gradient(to bottom, var(--rose-lt), transparent);
}

.step-item:last-child::after {
    display: none;
}

.step-num-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--rose);
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(200, 60, 80, .3);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-body {
    background: var(--white);
    border-radius: var(--r-md);
    padding: 24px 28px;
    box-shadow: var(--sh-sm);
    border: 1px solid var(--border);
}

.step-body h3 {
    font-size: 17px;
    font-weight: 900;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.step-body p {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.8;
}

.step-chara-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.step-chara {
    width: 160px;
    filter: drop-shadow(0 6px 16px rgba(200, 60, 80, .20));
}

/* =======================================================
   SECTION 4 — 営業時間
======================================================= */
.hours-section {
    background: var(--rose-pale);
}

.hours-table-wrap {
    overflow-x: auto;
}

.hours-table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
    background: rgba(255, 255, 255, .86);
    border: 1px solid var(--border);
    font-size: 14px;
}

.hours-table th,
.hours-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    text-align: center;
    vertical-align: middle;
}

.hours-table thead th {
    background: var(--rose-pale);
    color: var(--rose);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .06em;
}

.hours-table tbody th {
    color: var(--charcoal);
    font-weight: 900;
}

.hours-table tbody td:nth-child(2) {
    color: var(--rose);
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
}

.hours-table tbody tr.closed td:nth-child(2) {
    color: #aaa;
}

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

.hours-status {
    display: inline-block;
    background: var(--rose-pale);
    color: var(--rose);
    font-size: 12px;
    font-weight: 900;
    padding: 4px 14px;
    border-radius: var(--r-pill);
    white-space: nowrap;
}

.hours-table tr.closed .hours-status {
    background: #f0f0f0;
    color: #999;
}

.hours-note-box strong {
    color: var(--gold);
}

/* =======================================================
   SECTION 5 — 口コミ
======================================================= */
.review-section {
    background: var(--white);
}

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

.review-card {
    background: var(--white);
    border-radius: var(--r-md);
    padding: 22px;
    border: 1px solid var(--border);
    position: relative;
}

.review-card.ng {
    border-top: 3px solid #f0c040;
}

.review-card.ok {
    border-top: 3px solid var(--rose);
}

/* 引用符 */
.review-card::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    right: 18px;
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--rose-lt);
    line-height: 1;
    pointer-events: none;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--rose-lt);
    flex-shrink: 0;
}

.review-src {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-lt);
}

.review-stars {
    font-size: 12px;
    color: #f5a020;
    margin-left: auto;
}

.review-text {
    font-size: 13px;
    color: var(--text);
    line-height: 1.75;
}

.review-source-link {
    margin-top: 14px;
    font-size: 12px;
    color: var(--text-lt);
}

.review-source-link a {
    color: var(--rose);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}


/* =======================================================
   SECTION 6 — トラブルQ&A
======================================================= */
.trouble-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.trouble-card {
    background: var(--white);
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--sh-sm);
    border: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 0;
}

.trouble-body {
    padding: 28px 32px;
}

.trouble-badge {
    display: inline-block;
    background: var(--rose-pale);
    color: var(--rose);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    padding: 3px 12px;
    border-radius: var(--r-pill);
    margin-bottom: 10px;
    border: 1px solid var(--rose-lt);
}

.trouble-body h3 {
    font-size: 18px;
    font-weight: 900;
    color: var(--charcoal);
    margin-bottom: 10px;
    line-height: 1.35;
}

.trouble-body p {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.85;
}

.trouble-img-wrap {
    background: var(--rose-pale);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 16px 0 0;
    overflow: hidden;
}

.trouble-chara {
    width: 160px;
    filter: drop-shadow(0 4px 12px rgba(200, 60, 80, .20));
}

/* =======================================================
   SECTION 7 — 信頼性
======================================================= */
.trust-section {
    background: var(--cream);
}

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

.trust-card {
    background: var(--white);
    border-radius: var(--r-md);
    padding: 28px;
    box-shadow: var(--sh-sm);
    border: 1px solid var(--border);
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 20px;
    align-items: start;
}

.trust-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: var(--r-sm);
    background: var(--rose-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon-wrap img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.trust-body h3 {
    font-size: 16px;
    font-weight: 900;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.trust-body p {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.75;
}

/* =======================================================
   SECTION 8 — 比較テーブル
======================================================= */
.compare-section {
    background: var(--white);
}

.compare-wrap {
    overflow-x: auto;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--sh-sm);
}

.compare-table thead th {
    padding: 16px 20px;
    text-align: center;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .04em;
}

.compare-table thead th:first-child {
    background: #f5f5f5;
    color: var(--text-mid);
    text-align: left;
}

.compare-table thead th.old {
    background: #fee5e5;
    color: #c02020;
}

.compare-table thead th.new {
    background: linear-gradient(135deg, var(--rose), #c04060);
    color: var(--white);
}

.compare-table tbody th {
    padding: 13px 20px;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    color: var(--charcoal);
    background: #fafafa;
    border-top: 1px solid var(--border);
}

.compare-table tbody td {
    padding: 13px 20px;
    text-align: center;
    font-size: 13px;
    border-top: 1px solid var(--border);
    background: var(--white);
}

.compare-table .yes {
    color: var(--rose);
    font-weight: 900;
}

.compare-table .no {
    color: #bbb;
}

/* =======================================================
   SECTION 9 — FAQ
======================================================= */
.faq-section {
    background: var(--rose-pale);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--r-md);
    box-shadow: var(--sh-sm);
    border: 1px solid var(--border);
    overflow: hidden;
}

.faq-q {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
    transition: background .2s;
}

.faq-q:hover {
    background: var(--rose-pale);
}

.faq-q-mark {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--rose);
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-q-text {
    flex: 1;
    font-size: 14px;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.5;
}

.faq-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    fill: none;
    stroke: var(--rose);
    stroke-width: 2;
    transition: transform .3s;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-a {
    display: none;
    padding: 0 24px 22px 70px;
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.85;
    border-top: 1px solid var(--border);
}

.faq-item.open .faq-a {
    display: block;
}

.faq-a-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--rose-pale);
    color: var(--rose);
    font-family: 'Playfair Display', serif;
    font-size: 12px;
    font-weight: 700;
    margin-right: 8px;
    vertical-align: middle;
    flex-shrink: 0;
}

/* =======================================================
   著者ボックス（E-E-A-T）
======================================================= */
.author-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 24px 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-top: 48px;
    box-shadow: var(--sh-sm);
}

.author-avatar-wrap {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose), var(--rose-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.author-info h3 {
    font-size: 15px;
    font-weight: 900;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.author-tag {
    display: inline-block;
    background: var(--rose-pale);
    color: var(--rose);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
    padding: 2px 10px;
    border-radius: var(--r-pill);
    border: 1px solid var(--rose-lt);
    margin: 0 4px 8px 0;
}

.author-info p {
    font-size: 12px;
    color: var(--text-mid);
    line-height: 1.75;
}

/* =======================================================
   CTA セクション
======================================================= */
.cta-section {
    background: linear-gradient(135deg, var(--rose) 0%, #c04060 60%, #a03050 100%);
    padding: var(--section-py) 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/background.png') center/cover;
    opacity: .06;
}

.cta-inner {
    position: relative;
    z-index: 1;
}

.cta-chara {
    width: 160px;
    margin: 0 auto 24px;
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, .22));
    animation: float 3.2s ease-in-out infinite;
}

.cta-section h2 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 900;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, .15);
    line-height: 1.3;
    margin-bottom: 12px;
}

.cta-section p {
    color: rgba(255, 255, 255, .85);
    font-size: 14px;
    margin-bottom: 36px;
}

.btn-cta-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--rose);
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 18px;
    font-weight: 900;
    padding: 18px 52px;
    border-radius: var(--r-pill);
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .20);
    transition: transform .2s, box-shadow .2s;
    letter-spacing: .02em;
}

.btn-cta-white::after {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e8607a' stroke-width='2.5'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E") center/contain no-repeat;
}

.btn-cta-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, .28);
}

/* =======================================================
   DISCLAIMER / FOOTER
======================================================= */
.disclaimer {
    background: var(--cream);
    border-top: 1px solid var(--border);
    padding: 32px 0;
}

.disclaimer-inner {
    font-size: 12px;
    color: var(--text-lt);
    line-height: 1.9;
}

.disclaimer-inner strong {
    color: var(--rose);
}

.disclaimer-inner a {
    color: var(--rose);
}

.site-footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, .55);
    padding: 48px 0 32px;
    text-align: center;
    font-size: 12px;
    line-height: 2;
}

.footer-logo {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px;
}

.site-footer a {
    color: var(--rose-lt);
    text-decoration: none;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px 24px;
    margin: 16px 0;
}

.footer-nav a {
    color: rgba(255, 255, 255, .45);
    font-size: 11px;
}

.footer-nav a:hover {
    color: var(--rose-lt);
}

/* =======================================================
   セクション区切り波型（単調さを排除）
======================================================= */
.wave-top {
    display: block;
    width: 100%;
    height: 48px;
    overflow: hidden;
    line-height: 0;
}

.wave-top svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* =======================================================
   RESPONSIVE
======================================================= */
@media (max-width: 768px) {
    :root {
        --section-py: 56px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-img-wrap {
        display: none;
    }

    .hero-text {
        padding-bottom: 40px;
    }

    .hero-h1 {
        font-size: 26px;
    }

    .toc-list {
        grid-template-columns: 1fr;
    }

    .toc-inner {
        grid-template-columns: 1fr;
    }

    .toc-label-vert {
        writing-mode: horizontal-tb;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .rate-hero {
        grid-template-columns: 1fr;
    }

    .rate-card-chara {
        width: 70px;
        top: 10px;
        right: 10px;
    }

    .step-item {
        grid-template-columns: 56px 1fr;
    }

    .step-chara-wrap {
        display: none;
    }

    .hours-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .review-grid {
        grid-template-columns: 1fr;
    }

    .trouble-card {
        grid-template-columns: 1fr;
    }

    .trouble-img-wrap {
        height: 120px;
    }

    .trouble-chara {
        width: 100px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .faq-a {
        padding-left: 24px;
    }

    .stat-pill {
        min-width: 80px;
    }

    .rate-card-num {
        font-size: 52px;
    }

    .step-item::after {
        left: 27px;
    }
}

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

    .trust-card {
        grid-template-columns: 1fr;
    }
}

/* ===== プリント ===== */
@media print {

    .site-header,
    .cta-section,
    .btn-primary,
    .btn-cta-white {
        display: none;
    }

    body {
        font-size: 11pt;
        color: #000;
        background: #fff;
    }
}

/* =======================================================
   ページレイアウト
   構造:
     <header>   ← 全幅
     <section.hero>  ← 全幅
     <div.site-body> ← 2カラム flex
       <aside.toc-sidebar> sticky追尾
       <div.main-content>  スクロール
     </div>
     <aside.disclaimer> ← 全幅
     <footer>   ← 全幅
======================================================= */



/* =======================================================
   TOCサイドバー（左側スティッキー追尾）
======================================================= */
.toc-sticky {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    box-shadow: var(--sh-sm);
    max-height: calc(100vh - 104px);
    overflow-y: auto;
}

.toc-sidebar-title {
    background: linear-gradient(135deg, var(--rose), #c04060);
    color: var(--white);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 12px 16px;
}

.toc-sidebar-list {
    list-style: none;
    padding: 8px 0;
}

.toc-sidebar-list li {
    border-bottom: 1px solid #faf0f2;
}

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

.toc-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    text-decoration: none;
    font-size: 12px;
    color: var(--text-mid);
    line-height: 1.4;
    transition: background .15s, color .15s;
    border-left: 3px solid transparent;
}

.toc-link:hover {
    background: var(--rose-pale);
    color: var(--rose);
    border-left-color: var(--rose-lt);
}

/* アクティブ状態（JSで付与） */
.toc-link.active {
    background: var(--rose-pale);
    color: var(--rose);
    font-weight: 700;
    border-left-color: var(--rose);
}

.toc-n {
    font-family: 'Playfair Display', serif;
    font-size: 10px;
    color: var(--rose);
    flex-shrink: 0;
    min-width: 18px;
    opacity: .7;
}

.toc-link.active .toc-n {
    opacity: 1;
}

/* TOC内CTA */
.toc-cta-btn {
    display: block;
    background: linear-gradient(135deg, var(--rose), #c04060);
    color: var(--white);
    text-decoration: none;
    font-size: 11px;
    font-weight: 900;
    text-align: center;
    padding: 12px 8px;
    letter-spacing: .04em;
    transition: opacity .2s;
}

.toc-cta-btn:hover {
    opacity: .88;
}

/* =======================================================
   レスポンシブ: タブレット以下でサイドバーを非表示
======================================================= */
@media (max-width: 960px) {}

/* =======================================================
   HERO リニューアル版（hero.png使用）
======================================================= */

.hero {
    padding: 0;
    line-height: 0;
}

.hero::after {
    display: none;
}

/* hero.png: 全幅・縦横比維持・見切れなし */
.hero-img-block {
    display: none;
}

/* 旧要素 */
.hero-main-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px 12px 0 0;
}

/* hero-bottom styles removed */

/* レスポンシブ調整 */
@media (max-width: 640px) {

    /* hero.png はそのままの縦横比で全幅表示 */
    .hero-meta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .hero-stat-bar {
        width: 100%;
    }

    .hstat {
        padding: 12px 0;
        flex: 1;
    }

    .hstat-val {
        font-size: 24px;
    }
}



/* =======================================================
   ハンバーガー + SPナビ
======================================================= */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: 8px;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--rose);
    border-radius: 2px;
    transition: transform .28s ease, opacity .28s ease;
}

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

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

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

/* SPナビ本体: デフォルトhidden */
.sp-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 2px solid var(--rose-lt);
    box-shadow: 0 8px 24px rgba(200, 60, 80, .14);
    z-index: 198;
    padding: 12px 16px 20px;
    max-height: calc(100vh - 60px);
}

.sp-nav.open {
    display: block;
}

.sp-nav ol {
    list-style: none;
}

.sp-nav-link {
    display: block;
    padding: 12px 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: color .15s, background .15s;
}

.sp-nav-link:hover {
    color: var(--rose);
    background: var(--rose-pale);
}

.sp-nav-cta {
    display: block;
    background: linear-gradient(135deg, var(--rose), #c04060);
    color: var(--white);
    text-align: center;
    font-weight: 900;
    font-size: 15px;
    padding: 14px;
    border-radius: var(--r-pill);
    text-decoration: none;
    margin-top: 14px;
}

/* SP・タブレットでハンバーガー表示 */
@media (max-width: 960px) {
    .header-inner {
        padding-right: 48px;
    }

    .hamburger {
        display: flex;
        position: absolute;
        top: 50%;
        right: 0;
        margin: 0;
        transform: translateY(-50%);
    }

    .header-right {
        display: none;
    }
}

/* =======================================================
   レイアウト専用CSS - layout.css
   確実に動くシンプルな構造
   stickyの大原則:
   1. 親・祖先にoverflow:hidden/auto/scrollを一切設定しない
   2. 親flexにalign-items:flex-startを設定
   3. stickyにするのはサイドバー要素自体
======================================================= */

/* 2カラムラッパー */


/* TOCサイドバー本体: stickyはここに設定 */


/* 右コンテンツ */




/* SP対応 */
@media (max-width: 960px) {}

/* =======================================================
   メインレイアウト（3カラム）
   左:TOC 中:コンテンツ 右:バナー
   TOC・右バナーはCSS stickyで追尾
======================================================= */
.site-body {
    display: grid;
    grid-template-columns: 220px minmax(0, 880px) 180px;
    align-items: start;
    justify-content: center;
    gap: 22px;
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 20px 16px 0;
    box-sizing: border-box;
    position: relative;
}

/* 左TOC */
.toc-sidebar {
    min-width: 0;
    align-self: start;
}

/* 中央コンテンツ */
.main-content {
    min-width: 0;
}

.main-content .inner {
    padding: 0;
    max-width: 100%;
}

/* 右バナー */
.right-sidebar {
    min-width: 0;
    align-self: start;
}

.right-sticky {
    width: 100%;
}

.right-sidebar a {
    display: block;
}

.right-sidebar img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: var(--sh-sm);
}

.sp-fixed-banner {
    display: none;
}

.sp-fixed-banner a,
.sp-fixed-banner img {
    display: block;
}

.sp-fixed-banner img {
    width: 100%;
    height: auto;
}

/* SP */
@media (max-width: 960px) {
    .site-body {
        display: block;
        padding: 0;
    }

    .toc-sidebar {
        display: none;
    }

    .right-sidebar {
        display: none;
    }

    .main-content {
        padding: 0 16px;
    }

    .main-content main > #about.section {
        padding-top: 12px !important;
    }

    body {
        padding-bottom: 92px;
    }

    .sp-fixed-banner {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 250;
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 -6px 24px rgba(200, 60, 80, .18);
    }
}

/* =======================================================
   口コミ 横スクロール
======================================================= */
.review-scroll-hint {
    font-size: 12px;
    color: var(--text-lt);
    text-align: right;
    margin-bottom: 8px;
    letter-spacing: .04em;
}

.review-scroll-wrap {
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
    scrollbar-color: var(--rose-lt) transparent;
    padding: 4px 0 14px;
    margin-bottom: 24px;
    max-width: 100%;
    scroll-snap-type: x mandatory;
}

.review-scroll-wrap::-webkit-scrollbar {
    height: 8px;
}

.review-scroll-wrap::-webkit-scrollbar-track {
    background: transparent;
}

.review-scroll-wrap::-webkit-scrollbar-thumb {
    background: var(--rose-lt);
    border-radius: 4px;
}

/* review-gridを横並びに */
.review-scroll-wrap .review-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    width: max-content;
    min-width: max-content;
}

.review-scroll-wrap .review-card {
    width: 460px;
    max-width: calc(100vw - 96px);
    flex-shrink: 0;
    scroll-snap-align: start;
}

/* セクション背景を交互に切り替える */
.main-content main > article.section {
    position: relative;
    background: transparent;
    z-index: 0;
}

.main-content main > article.section:first-of-type {
    padding-top: 32px;
}

.main-content main > #about.section {
    padding-top: 0 !important;
}

.main-content main > article.section::before {
    content: '';
    position: absolute;
    inset: 0 -260px;
    z-index: -1;
    background-color: rgba(255, 252, 248, .88);
    background-image:
        linear-gradient(rgba(255, 252, 248, .82), rgba(255, 252, 248, .82)),
        url("images/aria-dot-pattern.png");
    background-repeat: repeat;
    background-size: auto, 320px 320px;
    pointer-events: none;
}

.main-content main > article.section:nth-of-type(even)::before {
    background-color: #ffe7ed;
    background-image: none;
}

.main-content main > article.section:nth-of-type(odd)::before {
    background-color: rgba(255, 252, 248, .88);
    background-image:
        linear-gradient(rgba(255, 252, 248, .82), rgba(255, 252, 248, .82)),
        url("images/aria-dot-pattern.png");
}

.toc-sticky {
    background: rgba(255, 255, 255, .88);
}

/* フォントサイズ 可読性向上 */
body {
    font-size: 17px;
}

.review-text {
    font-size: 15px;
    line-height: 1.8;
}

.step-body p {
    font-size: 15px;
    line-height: 1.85;
}

.trouble-body p {
    font-size: 15px;
    line-height: 1.85;
}

.info-table th,
.info-table td {
    font-size: 15px;
}

.faq-q-text {
    font-size: 15px;
}

.faq-a {
    font-size: 14px;
}

.sec-h2 {
    font-size: clamp(22px, 3.5vw, 34px);
}

.step-body h3 {
    font-size: 18px;
}

.trouble-body h3 {
    font-size: 18px;
}

/* HERO直後の余白を明示的に詰める */
.main-content > .hero {
    min-height: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
}

.main-content > .hero + main,
.main-content > .hero + main > #about.section,
.main-content > .hero + main > #about.section > .inner,
.main-content > .hero + main > #about.section .about-grid {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.main-content > .hero + main > #about.section .sec-h2 {
    margin-top: 0 !important;
}

@media (max-width: 960px) {
    .main-content > .hero + main > #about.section {
        padding-top: 0 !important;
    }
}
