/* column.css — コラム記事共通スタイル（cledusolの各記事インラインCSSを1本に統合） */

/* ─── ページ ─── */
.pb-wrap { background: #f5f0e8; min-height: 100vh; }

/* ─── ヒーロー ─── */
.pb-hero {
    background: linear-gradient(160deg, #1a1510 0%, #241e14 100%);
    padding: 64px 24px 0;
    text-align: center;
    overflow: hidden;
    position: relative;
}
.pb-hero::after {
    content: '';
    display: block;
    height: 48px;
    background: #f5f0e8;
    clip-path: ellipse(55% 100% at 50% 100%);
    margin-top: 48px;
}
.pb-hero-eyebrow {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: #b8965a;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.pb-hero-title {
    font-family: 'Cormorant Garamond', 'Noto Serif JP', Georgia, serif;
    font-size: clamp(1.45rem, 3.6vw, 2.5rem);
    font-weight: 600;
    color: #faf8f2;
    letter-spacing: 0.03em;
    line-height: 1.5;
    margin-bottom: 20px;
}
.pb-hero-sub {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.88rem;
    color: #a09070;
    line-height: 2.0;
    max-width: 540px;
    margin: 0 auto 32px;
}

/* 目次ナビ */
.pb-toc {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding-bottom: 40px;
}
.pb-toc-item {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.72rem;
    color: rgba(250,248,242,0.55);
    text-decoration: none;
    padding: 5px 14px;
    border: 1px solid rgba(184,150,90,0.3);
    border-radius: 20px;
    letter-spacing: 0.04em;
    transition: color 0.2s, border-color 0.2s;
}
.pb-toc-item:hover {
    color: #b8965a;
    border-color: rgba(184,150,90,0.7);
}

/* ─── コンテナ ─── */
.pb-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 8px 24px 80px;
}

/* ─── セクション ─── */
.pb-section {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e8e0d0;
    padding: 40px 44px;
    margin-top: 24px;
    box-shadow: 0 2px 14px rgba(26,21,16,0.05);
    position: relative;
    scroll-margin-top: 80px;
}

.pb-section-num {
    position: absolute;
    top: -14px;
    left: 36px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #faf8f2;
    background: #b8965a;
    padding: 3px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.pb-section-title {
    font-family: 'Cormorant Garamond', 'Noto Serif JP', Georgia, serif;
    font-size: 1.45rem;
    font-weight: 600;
    color: #1a1510;
    letter-spacing: 0.04em;
    line-height: 1.45;
    margin: 8px 0 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e8e0d0;
    position: relative;
}
.pb-section-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #b8965a;
}

.pb-lead {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.95rem;
    color: #1a1510;
    line-height: 2.0;
    margin-bottom: 20px;
    font-weight: 600;
}
.pb-body {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.88rem;
    color: #3a3028;
    line-height: 2.1;
    margin-bottom: 16px;
}
.pb-body:last-child { margin-bottom: 0; }

/* ─── 統計強調 ─── */
.pb-stats {
    display: flex;
    gap: 16px;
    margin: 22px 0;
    flex-wrap: wrap;
}
.pb-stat {
    flex: 1;
    min-width: 130px;
    background: #1a1510;
    border-radius: 8px;
    padding: 18px 16px 14px;
    text-align: center;
}
.pb-stat-num {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #b8965a;
    line-height: 1;
    margin-bottom: 6px;
}
.pb-stat-label {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.7rem;
    color: #a09070;
    line-height: 1.55;
}

/* ─── ポイントボックス ─── */
.pb-data-box {
    background: #faf8f2;
    border-left: 3px solid #b8965a;
    border-radius: 0 8px 8px 0;
    padding: 18px 22px;
    margin: 20px 0;
}
.pb-data-source {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    color: #b8965a;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pb-data-source::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 1px;
    background: #b8965a;
}
.pb-data-text {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.85rem;
    color: #2a2018;
    line-height: 1.95;
    margin: 0;
}

/* ─── ポイントリスト ─── */
.pb-list {
    list-style: none;
    padding: 0;
    margin: 18px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pb-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Noto Serif JP', serif;
    font-size: 0.88rem;
    color: #2a2018;
    line-height: 1.85;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0ebe0;
}
.pb-list li:last-child { border-bottom: none; padding-bottom: 0; }
.pb-list li::before {
    content: '—';
    color: #b8965a;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 3px;
    font-family: Georgia, serif;
}
.pb-list strong {
    color: #1a1510;
    font-weight: 600;
}

/* ─── 比較カード（概要グリッド） ─── */
.pg-overview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 22px;
}
.pg-overview-card {
    background: #faf8f2;
    border: 1px solid #e8e0d0;
    border-top: 3px solid #b8965a;
    border-radius: 0 0 8px 8px;
    padding: 18px 16px 16px;
    text-align: left;
}
.pg-overview-age {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1510;
    margin-bottom: 8px;
    line-height: 1.2;
}
.pg-overview-age-link {
    display: block;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    width: fit-content;
}
.pg-overview-age-link:hover {
    color: #8a6530;
    border-bottom-color: #b8965a;
}
.pg-overview-desc {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.78rem;
    color: #5a4a38;
    line-height: 1.8;
}
.pg-overview-price {
    display: inline-block;
    font-family: 'Noto Serif JP', serif;
    font-size: 0.68rem;
    color: #faf8f2;
    background: #b8965a;
    padding: 2px 10px;
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
}

/* ─── 警告リスト（危険サイン等） ─── */
.pb-warn-list {
    list-style: none;
    padding: 0;
    margin: 18px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pb-warn-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Noto Serif JP', serif;
    font-size: 0.86rem;
    color: #7a2e20;
    line-height: 1.75;
    background: #fdf3f0;
    border: 1px solid #f0d4cc;
    border-radius: 8px;
    padding: 12px 16px;
}
.pb-warn-list li::before {
    content: '⚠';
    flex-shrink: 0;
    color: #c2503c;
    font-weight: 700;
    margin-top: 1px;
}
.pb-warn-list strong { color: #5a1f15; font-weight: 700; }

/* ─── 文例ボックス ─── */
.pb-letter {
    margin: 22px 0;
    border: 1px dashed #c8a060;
    border-radius: 10px;
    background: #fdfaf3;
    overflow: hidden;
}
.pb-letter-label {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #1a1510;
    color: #f5ede0;
    font-family: 'Noto Serif JP', serif;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 8px 18px;
}
.pb-letter-body {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.85rem;
    color: #2a2018;
    line-height: 2.0;
    padding: 20px 22px;
    white-space: pre-line;
}
.pb-letter-body strong { color: #8a6530; font-weight: 700; }

/* ─── 理由カード ─── */
.pb-reason-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 18px 0;
}
.pb-reason-card {
    background: #faf8f2;
    border: 1px solid #e8e0d0;
    border-left: 3px solid #b8965a;
    border-radius: 0 8px 8px 0;
    padding: 14px 18px;
}
.pb-reason-title {
    font-family: 'Cormorant Garamond', 'Noto Serif JP', Georgia, serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #b8965a;
    letter-spacing: 0.02em;
    margin-bottom: 6px;
}
.pb-reason-desc {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.85rem;
    color: #3a3028;
    line-height: 1.85;
}

/* ─── 比較表 ─── */
.pb-table-wrap {
    overflow-x: auto;
    margin: 20px 0;
    border: 1px solid #e8e0d0;
    border-radius: 8px;
}
.pb-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Noto Serif JP', serif;
    font-size: 0.8rem;
    white-space: nowrap;
}
.pb-table th {
    background: #1a1510;
    color: #faf8f2;
    padding: 10px 16px;
    text-align: left;
    font-weight: 600;
    letter-spacing: 0.03em;
}
.pb-table td {
    padding: 10px 16px;
    border-bottom: 1px solid #e8e0d0;
    color: #3a3028;
}
.pb-table tr:last-child td { border-bottom: none; }
.pb-table tr:nth-child(even) td { background: #faf8f2; }
.pb-table strong { color: #1a1510; font-weight: 600; }
.pb-table-note {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.74rem;
    color: #9a8a70;
    margin: -8px 0 20px;
}

/* ─── CTA ─── */
.pb-cta {
    text-align: center;
    margin-top: 40px;
    padding: 48px 28px 44px;
    background: #1a1510;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.pb-cta::before {
    content: '♩ ♪ ♫ ♬';
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    letter-spacing: 0.5em;
    color: rgba(184,150,90,0.3);
    white-space: nowrap;
}
.pb-cta-title {
    font-family: 'Cormorant Garamond', 'Noto Serif JP', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #faf8f2;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    line-height: 1.45;
}
.pb-cta-sub {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.82rem;
    color: #a09070;
    margin-bottom: 28px;
    line-height: 1.9;
}
.pb-cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.pb-cta-btn {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, #c8a060, #8a6530);
    color: #faf8f2;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.08em;
    transition: opacity 0.2s, transform 0.15s;
    box-shadow: 0 4px 14px rgba(184,150,90,0.3);
}
.pb-cta-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.pb-cta-btn-sub {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    color: #d4c5a0;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid rgba(184,150,90,0.45);
    font-family: 'Noto Serif JP', serif;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    transition: border-color 0.2s, color 0.2s;
}
.pb-cta-btn-sub:hover { border-color: #b8965a; color: #faf8f2; }

/* ─── 関連記事 ─── */
.pb-related {
    margin-top: 40px;
}
.pb-related-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    color: #b8965a;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.pb-related-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0d2b0;
}
.pb-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}
.pb-related-card {
    display: block;
    background: #faf8f2;
    border: 1px solid #e8e0d0;
    border-left: 3px solid #b8965a;
    border-radius: 0 8px 8px 0;
    padding: 16px 20px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}
.pb-related-card:hover {
    background: #f5ede0;
    border-left-color: #8a6530;
}
.pb-related-label {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.68rem;
    color: #b8965a;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}
.pb-related-name {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: #1a1510;
    line-height: 1.6;
}
.pb-related-arrow {
    color: #b8965a;
    margin-left: 4px;
}

/* 戻る */
.pb-back { text-align: center; margin-top: 28px; }
.pb-back a {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.8rem;
    color: #aaa;
    text-decoration: none;
    padding-bottom: 1px;
    border-bottom: 1px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}
.pb-back a:hover { color: #b8965a; border-bottom-color: #b8965a; }

@media (max-width: 600px) {
    .pb-section { padding: 32px 18px 28px; }
    .pb-section-num { left: 16px; }
    .pb-stats { flex-direction: column; }
    .pg-overview { grid-template-columns: 1fr; }
    .pb-related-grid { grid-template-columns: 1fr; }
    .pb-cta-btns { flex-direction: column; align-items: center; }
    .pb-cta-btn, .pb-cta-btn-sub { width: 100%; max-width: 280px; text-align: center; }
    .pb-letter-body { padding: 16px 16px; font-size: 0.82rem; }
}
