@charset "UTF-8";
/* ==========================================================================
   CHP Renewal - Custom Styles
   - リニューアル後のホーム / 共通セクション用カスタムCSS
   - 既存 theme.css / user.css / custom.css の後にロードして上書きする
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Brand Palette (CSS Custom Properties)
   - Key Color: #F57508 (ロゴオレンジ) — ブランドアイデンティティ
   - Ocean:    #0F3D52 (深オーシャン) — 海・老舗の威厳を出す差し色
   - Sand:     #F5F1EA — 暖かい背景
   -------------------------------------------------------------------------- */
:root {
    --chp-brand:        #F57508;
    --chp-brand-rgb:    245, 117, 8;
    --chp-brand-dark:   #c95f06;
    --chp-brand-light:  #ff9743;

    --chp-ocean:        #0F3D52;   /* 深いオーシャンブルー — 見出し・差し色の主役 */
    --chp-ocean-rgb:    15, 61, 82;
    --chp-ocean-dark:   #082939;
    --chp-ocean-light:  #1A6079;

    --chp-sand:         #F5F1EA;   /* 暖かいクリーム背景 */
    --chp-sand-deep:    #ECE4D6;   /* 区切りや境界用に少し濃い砂色 */

    --chp-text:         #1a1a1a;
    --chp-text-muted:   #6f6660;
    --chp-text-soft:    #a39891;

    --chp-bg:           #ffffff;
    --chp-bg-soft:      #f7f6f4;
    --chp-line:         rgba(0, 0, 0, 0.08);
    --chp-line-ocean:   rgba(var(--chp-ocean-rgb), 0.15);
    --chp-overlay:      rgba(0, 0, 0, 0.45);
    --chp-overlay-ocean: linear-gradient(to bottom, rgba(var(--chp-ocean-rgb), 0.35) 0%, rgba(0, 0, 0, 0.7) 100%);

    --chp-section-padding: 6rem 0;

    /* タイポグラフィ
       見出し: しっぽり明朝B1（老舗・craft）
       本文  : Noto Sans JP（広く読みやすい和文サンセリフ）
       セリフ装飾: Playfair Display（数字・英文の演出） */
    --chp-font-heading: 'Shippori Mincho B1', 'Noto Serif JP', 'Yu Mincho', '游明朝', 'Hiragino Mincho ProN', serif;
    --chp-font-body:    'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
    --chp-font-serif:   'Playfair Display', 'Georgia', 'Times New Roman', serif;
}

/* --------------------------------------------------------------------------
   タイポグラフィ適用 — ベース
   -------------------------------------------------------------------------- */
body {
    font-family: var(--chp-font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 全 chp-* スコープ内のテキスト要素に body フォントを保険で当てる
   (theme.css の h1/h2/p などの上書きを !important で確実に勝つ) */
#chpHeader, #chpHeader *,
#key-values, #key-values *,
#featured-surfboards, #featured-surfboards *,
#junior-program, #junior-program *,
#shaper-teaser, #shaper-teaser *,
#lesson-cta, #lesson-cta *,
#dealers-cta, #dealers-cta *,
[class*="chp-"] {
    font-family: var(--chp-font-body) !important;
}

/* セクション主見出しは Shippori Mincho B1（!important で確実に上書き） */
#chpHeader h1,
.chp-about-feature__title,
.chp-section-head__title,
.chp-shaper-head__title,
.chp-shaper-card__title,
.chp-feature-board__title,
.chp-lesson-header__title,
.chp-lesson-card__title,
.chp-dealers-header__title,
.chp-junior__title,
.chp-news-list__head h3 {
    font-family: var(--chp-font-heading) !important;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* セリフ装飾（数字・日付・italic 英文）は Playfair Display で確実に上書き */
.chp-est-mark__since,
.chp-est-mark__year,
.chp-about-feature__est-since,
.chp-about-feature__est-year,
.chp-value__num,
.chp-feature-board__board-type,
.chp-genre-card__type,
.chp-shaper-card__eyebrow,
.chp-news-item__date,
.chp-junior__badge-percent,
.chp-junior__badge-off {
    font-family: var(--chp-font-serif) !important;
}

/* --------------------------------------------------------------------------
   2. Common Utilities
   -------------------------------------------------------------------------- */
.chp-brand-color { color: var(--chp-brand) !important; }
.chp-deep-color  { color: var(--chp-deep)  !important; }

.chp-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--chp-brand);
    margin-bottom: 0.9rem;
}

/* セクションタイトル汎用 */
.chp-section-title {
    color: var(--chp-text);
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-bottom: 0.75rem;
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    line-height: 1.25;
}

.chp-section-lead {
    color: var(--chp-text-muted);
    max-width: 640px;
    margin: 0 auto 2.5rem;
    font-size: 1rem;
    line-height: 1.8;
}

.chp-divider {
    border: 0;
    border-top: 1px solid var(--chp-line);
    margin: 0;
}

/* ブランドカラーの主役ボタン */
.btn-chp-brand {
    background-color: var(--chp-brand);
    border: 1.5px solid var(--chp-brand);
    color: #fff;
    font-weight: 600;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.btn-chp-brand:hover,
.btn-chp-brand:focus {
    background-color: var(--chp-brand-dark);
    border-color: var(--chp-brand-dark);
    color: #fff;
    transform: translateY(-1px);
}

/* アウトライン版 */
.btn-chp-outline {
    background-color: transparent;
    border: 1.5px solid var(--chp-text);
    color: var(--chp-text);
    transition: all 0.2s ease;
}
.btn-chp-outline:hover {
    background-color: var(--chp-text);
    color: #fff;
}

/* --------------------------------------------------------------------------
   3. Section: HERO（既存テーマの上に微調整）
   -------------------------------------------------------------------------- */
#chpHeader h1 .chp-highlight {
    color: var(--chp-brand);
}
#chpHeader .bg-holder.overlay::before {
    background-color: var(--chp-overlay);
}

/* --------------------------------------------------------------------------
   4. Section: About CHP
   - SHAPERS/FACTORY と統一感のある「背景画像カード」構成
   - 老舗ブランドの威厳 + 海のモチーフを差し色（オーシャンブルー）で表現
   -------------------------------------------------------------------------- */
#key-values {
    position: relative;
    background-color: var(--chp-sand);
    padding: clamp(4rem, 8vw, 7rem) 0;
    overflow: hidden;
}

/* 上端の波形ライン */
#key-values::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 32px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 32' preserveAspectRatio='none'><path d='M0,10 C240,28 480,0 720,12 C960,22 1200,4 1440,16 L1440,0 L0,0 Z' fill='%230F3D52' fill-opacity='0.08'/></svg>");
    background-size: 100% 100%;
    pointer-events: none;
    z-index: 1;
}

/* --- About Hero Feature Card (SURFBOARDS feature と同じパターン) --- */
.chp-about-feature {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 4px;
    color: #fff;
    min-height: 360px;
    background-color: var(--chp-ocean);
    margin-bottom: 3rem;
    isolation: isolate;
    z-index: 2;
}
.chp-about-feature__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.chp-about-feature__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        90deg,
        rgba(8, 41, 57, 0.92) 0%,
        rgba(15, 61, 82, 0.55) 55%,
        rgba(15, 61, 82, 0.05) 100%
    );
}
@media (max-width: 767.98px) {
    .chp-about-feature__overlay {
        background: linear-gradient(
            180deg,
            rgba(15, 61, 82, 0.30) 0%,
            rgba(8, 41, 57, 0.92) 100%
        );
    }
}
.chp-about-feature__content {
    position: relative;
    z-index: 2;
    padding: 2.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 620px;
}
.chp-about-feature__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--chp-brand);
    font-size: 0.72rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1.5rem;
    align-self: flex-start;
}
.chp-about-feature__eyebrow::after {
    content: "";
    width: 36px; height: 1px;
    background-color: var(--chp-brand);
    opacity: 0.65;
}
.chp-about-feature__title {
    font-family: var(--chp-font-heading);
    color: #fff;
    font-size: clamp(1.85rem, 3.5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 1.5rem;
    letter-spacing: 0.02em;
}
.chp-about-feature__title .chp-mark {
    color: var(--chp-brand);
    font-weight: 800;
    letter-spacing: 0.04em;
}
.chp-about-feature__lead {
    color: rgba(255, 255, 255, 0.92);
    line-height: 2;
    font-size: 0.97rem;
    font-family: var(--chp-font-body);
    margin: 0;
    max-width: 500px;
}

/* 3 つのブランド柱を チップ で表示 */
.chp-about-feature__pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 2rem;
    max-width: 520px;
}
.chp-about-feature__pillar {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 0.95rem;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    color: #fff;
    font-family: var(--chp-font-body);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    font-weight: 500;
    white-space: nowrap;
    transition: background-color 0.25s ease, border-color 0.25s ease;
}
.chp-about-feature__pillar:hover {
    background-color: rgba(var(--chp-brand-rgb), 0.18);
    border-color: rgba(var(--chp-brand-rgb), 0.5);
}
.chp-about-feature__pillar::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--chp-brand);
    flex-shrink: 0;
}
.chp-about-feature__pillar-en {
    font-family: var(--chp-font-serif);
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.72rem;
    margin-left: 0.35rem;
}

/* Footer の CHP CIRCLE LOGO */
.chp-footer-logo {
    width: 140px;
    height: 140px;
    color: rgba(255, 255, 255, 0.92);
    display: block;
    transition: opacity 0.3s ease;
}
.chp-footer-logo:hover { opacity: 0.85; }
.chp-footer-logo svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: currentColor;
}

/* About CHP - CHP CIRCLE LOGO（右側中央寄り） */
.chp-about-feature__logo {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    width: 120px;
    height: 120px;
    z-index: 3;
    color: rgba(255, 255, 255, 0.92);
    display: block;
    opacity: 0.95;
    transition: opacity 0.3s ease, transform 0.4s ease;
}
.chp-about-feature__logo:hover {
    opacity: 1;
    transform: translateY(-50%) rotate(4deg);
}
.chp-about-feature__logo svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: currentColor;
}
/* タブレットでも横並びをキープ、本当に狭い時だけスタック */
@media (max-width: 575.98px) {
    .chp-about-feature__logo {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin: 1.5rem auto 0.5rem;
        width: 100px;
        height: 100px;
    }
    .chp-about-feature__logo:hover {
        transform: rotate(4deg);
    }
}

/* 旧 Since 1971 ハンコマーク（後方互換用に残置、新規利用しない） */
.chp-about-feature__est {
    position: absolute;
    top: 2.25rem;
    right: 2.5rem;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    color: #fff;
    z-index: 3;
    background-color: rgba(8, 41, 57, 0.30);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
.chp-about-feature__est::before,
.chp-about-feature__est::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 1px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.55);
    transform: translateX(-50%);
}
.chp-about-feature__est::before { top: -5px; }
.chp-about-feature__est::after  { bottom: -5px; }
.chp-about-feature__est-since {
    font-family: var(--chp-font-serif);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.4rem;
    letter-spacing: 0.04em;
}
.chp-about-feature__est-year {
    font-family: var(--chp-font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--chp-brand);
    letter-spacing: 0.04em;
}

@media (max-width: 991.98px) {
    .chp-about-feature__content { max-width: 70%; padding: 2.25rem 2rem; }
}
@media (max-width: 575.98px) {
    .chp-about-feature__content { max-width: 100%; padding: 2rem 1.5rem 1.5rem; }
}

/* --- Values Grid（About CHP の3カード） --- */
.chp-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}
@media (max-width: 991.98px) {
    .chp-values { grid-template-columns: 1fr; gap: 2.25rem; }
}

/* 背景画像カード（SURFBOARDS genre card と同じ視覚文法） */
.chp-value {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 4px;
    color: #fff;
    min-height: 400px;
    background-color: var(--chp-ocean);
    isolation: isolate;
    box-shadow: 0 8px 24px rgba(var(--chp-ocean-rgb), 0.10);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.chp-value:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(var(--chp-ocean-rgb), 0.22);
}

.chp-value__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    z-index: 0;
}
.chp-value:hover .chp-value__bg { transform: scale(1.05); }

.chp-value__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(15, 61, 82, 0.30) 0%,
        rgba(15, 61, 82, 0.75) 55%,
        rgba(8, 41, 57, 0.92) 100%
    );
}

.chp-value__inner {
    position: relative;
    z-index: 2;
    padding: 2.25rem 1.85rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex: 1;
}

.chp-value__num {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    font-family: var(--chp-font-serif);
    font-style: italic;
    font-size: 2.6rem;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    opacity: 0.45;
    letter-spacing: -0.01em;
    user-select: none;
    pointer-events: none;
    z-index: 3;
}

.chp-value__icon {
    display: block;
    width: 44px;
    height: 44px;
    color: var(--chp-brand);
    margin-bottom: 1.1rem;
}
.chp-value__icon svg { width: 100%; height: 100%; display: block; }

.chp-value__label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--chp-brand);
    font-weight: 600;
    margin-bottom: 0.55rem;
}

.chp-value__title {
    color: #fff;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 0.85rem;
    letter-spacing: 0.01em;
}

.chp-value__divider {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--chp-brand);
    margin: 0 0 0.85rem;
}

.chp-value__body {
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.85;
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 767.98px) {
    .chp-value { min-height: 340px; }
    .chp-value__inner { padding: 2rem 1.5rem 1.75rem; }
    .chp-value__num { font-size: 2.2rem; top: 1rem; right: 1.2rem; }
}

/* About CHP - News & Events 4行テキストリスト（カード装飾なし） */
.chp-news-list {
    margin-top: 3.5rem;
    position: relative;
    z-index: 2;
}
.chp-news-list__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 0 0 0.85rem;
    border-bottom: 1px solid var(--chp-line-ocean);
    margin-bottom: 0.25rem;
}
.chp-news-list__head h3 {
    margin: 0;
    color: var(--chp-ocean);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}
.chp-news-list__head h3::before {
    content: "●";
    color: var(--chp-brand);
    font-size: 0.55rem;
    margin-right: 0.55rem;
    vertical-align: middle;
    animation: chpBlink 1.6s ease-in-out infinite;
}
@keyframes chpBlink {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.3; }
}
.chp-news-list__head-cta {
    color: var(--chp-text-muted);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s ease, gap 0.25s ease;
}
.chp-news-list__head-cta:hover {
    color: var(--chp-brand);
    text-decoration: none;
    gap: 0.6rem;
}
.chp-news-list__head-cta::after { content: "→"; font-family: var(--chp-font-serif); }

.chp-news-list__items {
    list-style: none;
    margin: 0;
    padding: 0;
}
.chp-news-item {
    display: grid;
    grid-template-columns: 110px 100px 1fr auto;
    align-items: center;
    gap: 1.25rem;
    padding: 0.95rem 0.25rem;
    border-bottom: 1px dashed var(--chp-line);
    text-decoration: none;
    color: var(--chp-text);
    transition: color 0.2s ease;
}
.chp-news-item:last-child { border-bottom: none; }
.chp-news-item:hover {
    color: var(--chp-brand);
    text-decoration: none;
}
.chp-news-item:hover .chp-news-item__title { color: var(--chp-brand); }
.chp-news-item__date {
    font-family: var(--chp-font-serif);
    font-size: 0.82rem;
    color: var(--chp-text-muted);
    letter-spacing: 0.04em;
}
.chp-news-item__category {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.2rem 0.5rem;
    font-size: 0.7rem;
    color: var(--chp-ocean);
    background-color: rgba(var(--chp-ocean-rgb), 0.07);
    border: 1px solid rgba(var(--chp-ocean-rgb), 0.18);
    border-radius: 2px;
    letter-spacing: 0.06em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.chp-news-item__category--empty {
    background-color: transparent;
    border-color: transparent;
    color: transparent;
}
.chp-news-item__title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--chp-text);
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.chp-news-item__arrow {
    color: var(--chp-brand);
    font-family: var(--chp-font-serif);
    font-style: italic;
    font-size: 1.05rem;
    transition: transform 0.25s ease;
}
.chp-news-item:hover .chp-news-item__arrow { transform: translateX(4px); }

@media (max-width: 767.98px) {
    .chp-news-item {
        grid-template-columns: 1fr auto;
        gap: 0.4rem 0.75rem;
        padding: 0.9rem 1rem;
    }
    .chp-news-item__date { grid-column: 1; font-size: 0.75rem; }
    .chp-news-item__category { grid-column: 2; justify-self: end; font-size: 0.65rem; }
    .chp-news-item__title { grid-column: 1 / -1; white-space: normal; }
    .chp-news-item__arrow { display: none; }
}

/* --------------------------------------------------------------------------
   5. Reusable: Image Card（背景画像 + オーシャンオーバーレイ + テキスト）
   - About CHP / SURFBOARD ジャンルカードで使う共通パーツ
   -------------------------------------------------------------------------- */
.chp-image-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    min-height: 380px;
    background-color: var(--chp-ocean);
    isolation: isolate;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.chp-image-card:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(var(--chp-ocean-rgb), 0.28);
}
.chp-image-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    z-index: 0;
}
.chp-image-card:hover .chp-image-card__bg { transform: scale(1.06); }

.chp-image-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(15, 61, 82, 0.30) 0%,
        rgba(15, 61, 82, 0.65) 55%,
        rgba(8, 41, 57, 0.92) 100%
    );
    transition: background 0.3s ease;
}

.chp-image-card__content {
    position: relative;
    z-index: 2;
    padding: 2.25rem 1.85rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.chp-image-card__num {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    font-family: var(--chp-font-serif);
    font-style: italic;
    font-size: 2.6rem;
    line-height: 1;
    color: #fff;
    opacity: 0.45;
    letter-spacing: -0.01em;
}

.chp-image-card__icon {
    display: inline-flex;
    width: 44px;
    height: 44px;
    color: var(--chp-brand);
    margin-bottom: 1rem;
}
.chp-image-card__icon svg { width: 100%; height: 100%; display: block; }

.chp-image-card__label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--chp-brand);
    font-weight: 600;
    margin-bottom: 0.55rem;
}

.chp-image-card__title {
    color: #fff;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.45;
    margin: 0 0 0.85rem;
    letter-spacing: 0.01em;
}

.chp-image-card__divider {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--chp-brand);
    margin: 0 0 0.85rem;
}

.chp-image-card__body {
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.85;
    font-size: 0.9rem;
    margin: 0;
}

.chp-image-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--chp-brand);
    font-weight: 600;
    transition: gap 0.25s ease;
}
.chp-image-card:hover .chp-image-card__cta { gap: 0.85rem; }
.chp-image-card__cta::after {
    content: "→";
    font-family: var(--chp-font-serif);
    font-size: 0.95rem;
    line-height: 1;
}

@media (max-width: 767.98px) {
    .chp-image-card { min-height: 320px; }
    .chp-est-mark { width: 96px; height: 96px; }
    .chp-est-mark__year { font-size: 1.55rem; }
}

/* --------------------------------------------------------------------------
   5. Section: SURFBOARD (キービジュアル + 3ジャンルカード)
   -------------------------------------------------------------------------- */
#featured-surfboards {
    background-color: var(--chp-bg);
    padding: var(--chp-section-padding);
    position: relative;
}

#featured-surfboards .chp-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
#featured-surfboards .chp-section-head__eyebrow {
    color: var(--chp-brand);
    letter-spacing: 0.28em;
    font-size: 0.72rem;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}
#featured-surfboards .chp-section-head__title {
    color: var(--chp-ocean);
    font-weight: 700;
    font-size: clamp(1.85rem, 3.4vw, 2.5rem);
    margin: 0;
    line-height: 1.2;
}
#featured-surfboards .chp-section-head__cta {
    border: 1.5px solid var(--chp-ocean);
    color: var(--chp-ocean);
    padding: 0.55rem 1.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    border-radius: 2px;
}
#featured-surfboards .chp-section-head__cta:hover {
    background-color: var(--chp-ocean);
    color: #fff;
}

/* --- Hero Featured Board (横長キービジュアル) --- */
.chp-feature-board {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    min-height: 480px;
    background-color: var(--chp-ocean);
    margin-bottom: 1.5rem;
    isolation: isolate;
    transition: box-shadow 0.35s ease;
}
.chp-feature-board:hover {
    color: #fff;
    text-decoration: none;
    box-shadow: 0 24px 48px rgba(var(--chp-ocean-rgb), 0.25);
}
.chp-feature-board__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    z-index: 0;
}
.chp-feature-board:hover .chp-feature-board__bg { transform: scale(1.04); }
.chp-feature-board__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        90deg,
        rgba(8, 41, 57, 0.92) 0%,
        rgba(15, 61, 82, 0.55) 50%,
        rgba(15, 61, 82, 0.05) 100%
    );
}
@media (max-width: 767.98px) {
    .chp-feature-board__overlay {
        background: linear-gradient(
            180deg,
            rgba(15, 61, 82, 0.30) 0%,
            rgba(8, 41, 57, 0.92) 100%
        );
    }
}
.chp-feature-board__content {
    position: relative;
    z-index: 2;
    padding: 3rem 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 520px;
}
.chp-feature-board__pickup {
    display: inline-block;
    align-self: flex-start;
    background-color: var(--chp-brand);
    color: #fff;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    margin-bottom: 1.5rem;
    border-radius: 2px;
}
.chp-feature-board__board-type {
    display: block;
    font-family: var(--chp-font-serif);
    font-style: italic;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.35rem;
}
.chp-feature-board__title {
    color: #fff;
    font-size: clamp(1.85rem, 3.2vw, 2.4rem);
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 0.85rem;
    letter-spacing: 0.01em;
}
.chp-feature-board__shaper {
    color: var(--chp-brand);
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    margin-bottom: 1.25rem;
}
.chp-feature-board__shaper::before {
    content: "Shaped by ";
    font-family: var(--chp-font-serif);
    font-style: italic;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
}
.chp-feature-board__desc {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.85;
    font-size: 0.93rem;
    margin: 0 0 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.chp-feature-board__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1.5px solid #fff;
    color: #fff;
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    transition: background-color 0.2s ease, border-color 0.2s ease, gap 0.25s ease;
    align-self: flex-start;
    border-radius: 2px;
}
.chp-feature-board:hover .chp-feature-board__cta {
    background-color: var(--chp-brand);
    border-color: var(--chp-brand);
    gap: 0.85rem;
}

/* --- Genre Card Grid (3 cards) --- */
.chp-genre-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 991.98px) {
    .chp-genre-cards { grid-template-columns: 1fr; gap: 1rem; }
}

.chp-genre-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    min-height: 280px;
    background-color: var(--chp-ocean);
    isolation: isolate;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.chp-genre-card:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(var(--chp-ocean-rgb), 0.22);
}
.chp-genre-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    z-index: 0;
}
.chp-genre-card:hover .chp-genre-card__bg { transform: scale(1.06); }
.chp-genre-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(15, 61, 82, 0.20) 0%,
        rgba(8, 41, 57, 0.82) 100%
    );
}
.chp-genre-card__content {
    position: relative;
    z-index: 2;
    padding: 2rem 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.chp-genre-card__type {
    display: block;
    color: var(--chp-brand);
    font-family: var(--chp-font-serif);
    font-style: italic;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.4rem;
}
.chp-genre-card__title {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.02em;
    margin: 0 0 0.65rem;
    text-transform: uppercase;
}
.chp-genre-card__name {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
}
.chp-genre-card__name span {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    font-size: 0.85rem;
}
.chp-genre-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1rem;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--chp-brand);
    font-weight: 600;
    transition: gap 0.25s ease;
}
.chp-genre-card:hover .chp-genre-card__cta { gap: 0.85rem; }
.chp-genre-card__cta::after { content: "→"; font-family: var(--chp-font-serif); }

.chp-genre-card--placeholder {
    background-color: var(--chp-sand-deep);
    color: var(--chp-text-muted);
}
.chp-genre-card--placeholder .chp-genre-card__overlay { display: none; }
.chp-genre-card--placeholder .chp-genre-card__title,
.chp-genre-card--placeholder .chp-genre-card__type { color: var(--chp-ocean); }
.chp-genre-card--placeholder .chp-genre-card__name { color: var(--chp-text-muted); }

/* --------------------------------------------------------------------------
   6. Section: SHAPER & FACTORY (container + 2 カラム画像カード)
   -------------------------------------------------------------------------- */
#shaper-teaser {
    background-color: var(--chp-bg);
    padding: var(--chp-section-padding);
}

.chp-shaper-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}
.chp-shaper-head__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--chp-brand);
    font-size: 0.72rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1.25rem;
}
.chp-shaper-head__eyebrow::before,
.chp-shaper-head__eyebrow::after {
    content: "";
    width: 28px; height: 1px;
    background-color: var(--chp-brand);
    opacity: 0.65;
}
.chp-shaper-head__title {
    font-family: var(--chp-font-heading);
    color: var(--chp-ocean);
    font-size: clamp(1.85rem, 3.4vw, 2.5rem);
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.02em;
    line-height: 1.55;
}
.chp-shaper-head__title .chp-mark {
    color: var(--chp-brand);
    font-weight: 800;
    letter-spacing: 0.04em;
}

/* 2カラムのカードグリッド */
.chp-shaper-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
@media (max-width: 767.98px) {
    .chp-shaper-cards { grid-template-columns: 1fr; gap: 1rem; }
}

/* 単一カード */
.chp-shaper-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 4px;
    color: #fff;
    min-height: 420px;
    background-color: var(--chp-ocean);
    isolation: isolate;
    text-decoration: none;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.chp-shaper-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(var(--chp-ocean-rgb), 0.25);
    color: #fff;
    text-decoration: none;
}
.chp-shaper-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    z-index: 0;
}
.chp-shaper-card:hover .chp-shaper-card__bg { transform: scale(1.05); }
.chp-shaper-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(15, 61, 82, 0.25) 0%,
        rgba(15, 61, 82, 0.65) 55%,
        rgba(8, 41, 57, 0.92) 100%
    );
}
.chp-shaper-card__content {
    position: relative;
    z-index: 2;
    padding: 2.5rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.chp-shaper-card__eyebrow {
    display: block;
    color: var(--chp-brand);
    font-family: var(--chp-font-serif);
    font-style: italic;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    margin-bottom: 0.4rem;
}
.chp-shaper-card__title {
    color: #fff;
    font-family: var(--chp-font-heading);
    font-size: clamp(1.85rem, 3vw, 2.2rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    margin: 0 0 0.85rem;
    text-transform: uppercase;
}
.chp-shaper-card__divider {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--chp-brand);
    margin: 0 0 1rem;
}
.chp-shaper-card__body {
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.85;
    font-size: 0.93rem;
    font-family: var(--chp-font-body);
    margin: 0 0 1.5rem;
}
.chp-shaper-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--chp-brand);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    transition: gap 0.25s ease;
}
.chp-shaper-card:hover .chp-shaper-card__cta { gap: 0.85rem; }
.chp-shaper-card__cta::after { content: "→"; font-family: var(--chp-font-serif); font-style: italic; }

/* --------------------------------------------------------------------------
   7. Section: Surf Lesson (体験 / 初心者 / プロ の3カード)
   - 千葉・一宮の海をイメージした薄いオーシャングラデ背景
   -------------------------------------------------------------------------- */
#lesson-cta {
    position: relative;
    background-color: var(--chp-sand);
    background-image:
        linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(var(--chp-ocean-rgb), 0.05) 100%);
    padding: clamp(4rem, 8vw, 7rem) 0;
    overflow: hidden;
}

/* 上端の波線（About CHP と同じモチーフで統一感） */
#lesson-cta::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 28px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 28' preserveAspectRatio='none'><path d='M0,8 C240,22 480,0 720,10 C960,20 1200,2 1440,14 L1440,0 L0,0 Z' fill='%230F3D52' fill-opacity='0.07'/></svg>");
    background-size: 100% 100%;
    pointer-events: none;
    z-index: 1;
}

/* --- ヘッダー --- */
.chp-lesson-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 2;
}
.chp-lesson-header__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--chp-ocean);
    font-size: 0.72rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1.25rem;
}
.chp-lesson-header__eyebrow::before,
.chp-lesson-header__eyebrow::after {
    content: "";
    width: 28px; height: 1px;
    background-color: var(--chp-ocean);
    opacity: 0.45;
}
.chp-lesson-header__title {
    font-size: clamp(1.85rem, 3.6vw, 2.65rem);
    line-height: 1.4;
    font-weight: 700;
    color: var(--chp-ocean);
    margin: 0 0 1.25rem;
    letter-spacing: 0.01em;
}
.chp-lesson-header__title .chp-mark { color: var(--chp-brand); }
.chp-lesson-header__lead {
    color: var(--chp-text);
    line-height: 2;
    font-size: 0.97rem;
    margin: 0 auto 1.25rem;
    max-width: 640px;
}
.chp-lesson-header__pros {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--chp-text-muted);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
}
.chp-lesson-header__pros::before {
    content: "Coaches";
    color: var(--chp-ocean);
    font-family: var(--chp-font-serif);
    font-style: italic;
    font-size: 0.85rem;
    padding-right: 0.65rem;
    border-right: 1px solid var(--chp-line-ocean);
}

/* --- 3 カード --- */
.chp-lesson-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}
@media (max-width: 991.98px) {
    .chp-lesson-cards { grid-template-columns: 1fr; gap: 1rem; }
}

.chp-lesson-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    min-height: 360px;
    background-color: var(--chp-ocean);
    isolation: isolate;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.chp-lesson-card:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(var(--chp-ocean-rgb), 0.25);
}
.chp-lesson-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    z-index: 0;
}
.chp-lesson-card:hover .chp-lesson-card__bg { transform: scale(1.06); }
.chp-lesson-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(15, 61, 82, 0.30) 0%,
        rgba(15, 61, 82, 0.60) 45%,
        rgba(8, 41, 57, 0.92) 100%
    );
}
.chp-lesson-card__content {
    position: relative;
    z-index: 2;
    padding: 2.25rem 1.85rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* 大きいセリフ番号（背景的） */
.chp-lesson-card__num {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    font-family: var(--chp-font-serif);
    font-style: italic;
    font-size: 2.4rem;
    line-height: 1;
    color: #fff;
    opacity: 0.55;
    letter-spacing: -0.01em;
}

/* レベル難易度ドット */
.chp-lesson-card__level {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 1rem;
    padding: 0.3rem 0.7rem;
    background-color: rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    backdrop-filter: blur(2px);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    align-self: flex-start;
}
.chp-lesson-card__level i {
    display: inline-block;
    width: 6px; height: 6px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.35);
}
.chp-lesson-card__level i.is-on { background-color: var(--chp-brand); }

.chp-lesson-card__tagline {
    display: block;
    color: var(--chp-brand);
    font-family: var(--chp-font-serif);
    font-style: italic;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    margin-bottom: 0.4rem;
}
.chp-lesson-card__title {
    color: #fff;
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 0.85rem;
    letter-spacing: 0.02em;
}
.chp-lesson-card__divider {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--chp-brand);
    margin: 0 0 0.85rem;
}
.chp-lesson-card__target {
    color: rgba(255,255,255,0.95);
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0 0 0.65rem;
}
.chp-lesson-card__body {
    color: rgba(255,255,255,0.82);
    line-height: 1.85;
    font-size: 0.88rem;
    margin: 0;
}
.chp-lesson-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1rem;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--chp-brand);
    font-weight: 600;
    transition: gap 0.25s ease;
}
.chp-lesson-card:hover .chp-lesson-card__cta { gap: 0.85rem; }
.chp-lesson-card__cta::after { content: "→"; font-family: var(--chp-font-serif); }

/* セクション下部 CTA */
.chp-lesson-footer {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}
.chp-lesson-footer__note {
    color: var(--chp-text-muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}
.chp-lesson-footer__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--chp-brand);
    color: #fff;
    padding: 0.85rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-decoration: none;
    border-radius: 2px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}
.chp-lesson-footer__cta:hover {
    background-color: var(--chp-brand-dark);
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   7.5 Section: JUNIOR PROGRAM (学割プログラムバナー)
   - キーカラー（オレンジ）を主役にしたプロモーショナルバナー
   -------------------------------------------------------------------------- */
#junior-program {
    padding: var(--chp-section-padding);
    background-color: var(--chp-bg);
}

.chp-junior {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--chp-brand) 0%, var(--chp-brand-dark) 100%);
    color: #fff;
    min-height: 260px;
    display: grid;
    grid-template-columns: 1fr 280px;
    isolation: isolate;
    box-shadow: 0 14px 30px rgba(var(--chp-brand-rgb), 0.25);
}
/* 装飾: 右側に大きな半透明サークル */
.chp-junior::before {
    content: "";
    position: absolute;
    right: -180px;
    top: 50%;
    transform: translateY(-50%);
    width: 540px;
    height: 540px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 65%);
    pointer-events: none;
}
.chp-junior::after {
    content: "";
    position: absolute;
    left: -80px;
    bottom: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.chp-junior__content {
    padding: 2.75rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.chp-junior__eyebrow {
    display: inline-block;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--chp-font-body);
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
    font-weight: 600;
}
.chp-junior__title {
    font-family: var(--chp-font-heading);
    color: #fff;
    font-size: clamp(1.65rem, 3vw, 2.15rem);
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 1rem;
    letter-spacing: 0.02em;
}
.chp-junior__lead {
    color: rgba(255, 255, 255, 0.94);
    font-family: var(--chp-font-body);
    line-height: 1.9;
    font-size: 0.93rem;
    margin: 0 0 1.5rem;
    max-width: 520px;
}
.chp-junior__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 1.5px solid #fff;
    color: #fff;
    text-decoration: none;
    border-radius: 2px;
    font-family: var(--chp-font-body);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    align-self: flex-start;
    transition: background-color 0.2s ease, color 0.2s ease, gap 0.25s ease;
}
.chp-junior__cta::after {
    content: "→";
    font-family: var(--chp-font-serif);
    font-style: italic;
}
.chp-junior__cta:hover {
    background-color: #fff;
    color: var(--chp-brand);
    text-decoration: none;
    gap: 0.85rem;
}

/* 30% OFF バッジエリア */
.chp-junior__badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}
.chp-junior__badge-percent {
    font-family: var(--chp-font-serif);
    font-size: clamp(3.5rem, 6vw, 5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
}
.chp-junior__badge-off {
    font-family: var(--chp-font-serif);
    font-size: 1.35rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.92);
    margin-top: 0.4rem;
    letter-spacing: 0.06em;
}
.chp-junior__badge-note {
    margin-top: 1rem;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    font-family: var(--chp-font-body);
    text-transform: uppercase;
}

@media (max-width: 767.98px) {
    .chp-junior {
        grid-template-columns: 1fr;
    }
    .chp-junior__content { padding: 2rem 1.5rem 1.5rem; }
    .chp-junior__badge {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.18);
        padding: 1.5rem;
        flex-direction: row;
        gap: 0.85rem;
    }
    .chp-junior__badge-percent { font-size: 2.8rem; }
    .chp-junior__badge-off { margin-top: 0; }
    .chp-junior__badge-note { margin-top: 0; margin-left: auto; }
}

/* --------------------------------------------------------------------------
   8. Section: Dealers (日本地図 + 加盟お問い合わせ)
   -------------------------------------------------------------------------- */
#dealers-cta {
    position: relative;
    background-color: var(--chp-bg);
    padding: var(--chp-section-padding);
    overflow: hidden;
}

/* --- ヘッダー --- */
.chp-dealers-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 4rem;
}
.chp-dealers-header__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--chp-ocean);
    font-size: 0.72rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1.25rem;
}
.chp-dealers-header__eyebrow::before,
.chp-dealers-header__eyebrow::after {
    content: "";
    width: 28px; height: 1px;
    background-color: var(--chp-ocean);
    opacity: 0.45;
}
.chp-dealers-header__title {
    font-size: clamp(1.85rem, 3.6vw, 2.65rem);
    line-height: 1.4;
    font-weight: 700;
    color: var(--chp-ocean);
    margin: 0 0 1.25rem;
}
.chp-dealers-header__lead {
    color: var(--chp-text);
    line-height: 2;
    font-size: 0.97rem;
    margin: 0 auto;
    max-width: 640px;
}

/* --- 2カラム本体 --- */
.chp-dealers-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
@media (max-width: 991.98px) {
    .chp-dealers-body { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* --- マップエリア --- */
.chp-japan-map {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
}
.chp-japan-map__silhouette {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.4s ease;
}
.chp-japan-map__silhouette svg { width: 100%; height: 100%; display: block; }
.chp-japan-map:hover .chp-japan-map__silhouette { opacity: 0.92; }

/* Chibafornia ハイライト — 房総半島の上にオレンジのグロー */
.chp-japan-map__chibafornia {
    position: absolute;
    top: 63%;
    left: 67%;
    width: 100px;
    height: 100px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(var(--chp-brand-rgb), 0.45) 0%,
        rgba(var(--chp-brand-rgb), 0.20) 35%,
        rgba(var(--chp-brand-rgb), 0)    70%
    );
    pointer-events: none;
    z-index: 1;
    animation: chpChibafloraGlow 3.6s ease-in-out infinite;
}
@keyframes chpChibafloraGlow {
    0%, 100% { opacity: 0.85; transform: translate(-50%, -50%) scale(1); }
    50%      { opacity: 1;    transform: translate(-50%, -50%) scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
    .chp-japan-map__chibafornia { animation: none; }
}

/* 本社マーカー（千葉・一宮 / Chibafornia） */
.chp-japan-map__hq {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--chp-brand);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 6px rgba(var(--chp-brand-rgb), 0.25), 0 0 0 1px #fff inset;
    z-index: 2;
}
.chp-japan-map__hq-label {
    position: absolute;
    transform: translate(8%, -50%);
    background-color: var(--chp-ocean);
    color: #fff;
    padding: 0.4rem 0.75rem;
    border-radius: 2px;
    white-space: nowrap;
    z-index: 3;
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}
.chp-japan-map__hq-label::before {
    content: "";
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-right-color: var(--chp-ocean);
}
.chp-japan-map__hq-label__main {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    font-weight: 700;
}
.chp-japan-map__hq-label__sub {
    font-family: var(--chp-font-serif);
    font-style: italic;
    font-size: 0.66rem;
    letter-spacing: 0.04em;
    color: var(--chp-brand);
    margin-top: 0.1rem;
}

/* --- 右カラム：統計+CTA --- */
.chp-dealers-info { padding: 0 0.5rem; }

.chp-dealers-stats {
    display: flex;
    gap: 2.25rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--chp-line-ocean);
}
.chp-dealers-stat__num {
    display: block;
    font-family: var(--chp-font-serif);
    color: var(--chp-ocean);
    font-size: 2.4rem;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 0.35rem;
}
.chp-dealers-stat__num .chp-mark { color: var(--chp-brand); }
.chp-dealers-stat__label {
    display: block;
    color: var(--chp-text-muted);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
}

.chp-dealers-regions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}
.chp-dealers-region {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    font-size: 0.78rem;
    color: var(--chp-ocean);
    background-color: rgba(var(--chp-ocean-rgb), 0.06);
    border: 1px solid rgba(var(--chp-ocean-rgb), 0.15);
    border-radius: 2px;
    letter-spacing: 0.04em;
}

/* CTA */
.chp-dealers-actions {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.chp-dealers-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.35rem;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 2px;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.chp-dealers-action::after {
    content: "→";
    font-family: var(--chp-font-serif);
    font-style: italic;
    font-size: 1.1rem;
    transition: transform 0.25s ease;
}
.chp-dealers-action:hover::after { transform: translateX(4px); }

.chp-dealers-action--primary {
    background-color: var(--chp-ocean);
    color: #fff;
    border: 1.5px solid var(--chp-ocean);
}
.chp-dealers-action--primary:hover {
    background-color: var(--chp-ocean-dark);
    color: #fff;
    text-decoration: none;
}

.chp-dealers-action--secondary {
    background-color: transparent;
    color: var(--chp-text);
    border: 1.5px solid var(--chp-line);
}
.chp-dealers-action--secondary:hover {
    background-color: rgba(var(--chp-brand-rgb), 0.08);
    border-color: var(--chp-brand);
    color: var(--chp-brand);
    text-decoration: none;
}
.chp-dealers-action__sub {
    display: block;
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--chp-text-muted);
    letter-spacing: 0.04em;
    margin-top: 0.15rem;
}
.chp-dealers-action--secondary:hover .chp-dealers-action__sub {
    color: var(--chp-brand);
    opacity: 0.85;
}

/* --------------------------------------------------------------------------
   9. Section: Latest News
   -------------------------------------------------------------------------- */
#latest-news {
    background-color: var(--chp-bg-soft);
    padding: var(--chp-section-padding);
}
#latest-news h2 {
    color: var(--chp-text);
    font-weight: 700;
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
}
#latest-news h6 {
    color: var(--chp-brand);
    letter-spacing: 0.22em;
    font-size: 0.72rem;
}
#latest-news .card {
    background-color: #fff;
    border: 1px solid var(--chp-line);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
#latest-news .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}
#latest-news .card-img-top {
    background-color: var(--chp-bg-soft);
}
#latest-news .card-body h3 {
    color: var(--chp-text);
    font-weight: 600;
    line-height: 1.4;
    font-size: 1rem;
}
#latest-news .badge.bg-secondary {
    background-color: var(--chp-brand) !important;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.08em;
    font-size: 0.7rem;
}

/* --------------------------------------------------------------------------
   10. Coming Soon ページ
   -------------------------------------------------------------------------- */
#coming-soon {
    background-color: var(--chp-bg-soft);
    min-height: 70vh;
}
#coming-soon h1 {
    color: var(--chp-text);
    font-weight: 700;
}
#coming-soon h6 {
    color: var(--chp-brand);
    letter-spacing: 0.22em;
}
#coming-soon .btn-outline-dark {
    border: 1.5px solid var(--chp-text);
    color: var(--chp-text);
}
#coming-soon .btn-outline-dark:hover {
    background-color: var(--chp-brand);
    border-color: var(--chp-brand);
    color: #fff;
}

/* --------------------------------------------------------------------------
   11. レスポンシブ調整
   -------------------------------------------------------------------------- */
@media (max-width: 767.98px) {
    :root {
        --chp-section-padding: 4rem 0;
    }
    #shaper-teaser .position-relative.overflow-hidden {
        min-height: 40vh;
    }
    #lesson-cta .bg-dark {
        padding: 2rem !important;
    }
    .chp-value-item__num {
        font-size: 2.5rem;
    }
}

/* --------------------------------------------------------------------------
   12. prefers-reduced-motion 配慮
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    #featured-surfboards .card,
    #latest-news .card,
    .btn-chp-brand,
    #lesson-cta .btn-warning,
    #featured-surfboards .card::before {
        transition: none !important;
    }
    #featured-surfboards a:hover .card,
    #latest-news .card:hover {
        transform: none !important;
    }
}

/* ==========================================================================
   13. SURFBOARD DETAIL PAGE (resources/js/Pages/ProductDetail.vue)
   - HERO band + Gallery + Spec + Description + Shaper + Related
   ========================================================================== */

/* タイポグラフィ保険（detail スコープ内も明朝/Noto を確実に） */
.chp-detail-hero, .chp-detail-hero *,
.chp-detail-main, .chp-detail-main *,
.chp-detail-desc, .chp-detail-desc *,
.chp-detail-shaper, .chp-detail-shaper *,
.chp-detail-related, .chp-detail-related * {
    font-family: var(--chp-font-body);
}
.chp-detail-hero__title,
.chp-detail-info__heading,
.chp-detail-desc__title,
.chp-detail-shaper__name,
.chp-detail-related__title,
.chp-detail-related__name {
    font-family: var(--chp-font-heading) !important;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.chp-detail-hero__shaper-label,
.chp-detail-hero__type,
.chp-detail-info__price-main,
.chp-detail-info__price-mark,
.chp-detail-desc__eyebrow,
.chp-detail-shaper__eyebrow,
.chp-detail-related__eyebrow,
.chp-detail-related__price,
.chp-detail-spec__value {
    font-family: var(--chp-font-serif) !important;
}

/* --- HERO BAND --- */
.chp-detail-hero {
    position: relative;
    overflow: hidden;
    background-color: var(--chp-ocean-dark);
    color: #fff;
    padding: clamp(7rem, 14vw, 11rem) 0 clamp(3.5rem, 7vw, 5rem);
    isolation: isolate;
}
.chp-detail-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(10px) brightness(0.7);
    transform: scale(1.1);
    z-index: 0;
}
/* 専用ヒーロー画像が設定されている場合は blur せずに本来の構図を見せる */
.chp-detail-hero--with-hero .chp-detail-hero__bg {
    filter: brightness(0.78);
    transform: none;
}
.chp-detail-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(8, 41, 57, 0.92) 0%,
        rgba(15, 61, 82, 0.78) 60%,
        rgba(15, 61, 82, 0.55) 100%
    );
}
.chp-detail-hero__inner {
    position: relative;
    z-index: 2;
}
.chp-detail-breadcrumb {
    margin-bottom: 1.5rem;
}
.chp-detail-breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.chp-detail-breadcrumb li {
    color: rgba(255, 255, 255, 0.65);
}
.chp-detail-breadcrumb li + li::before {
    content: "/";
    margin-right: 0.5rem;
    color: rgba(255, 255, 255, 0.35);
}
.chp-detail-breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
}
.chp-detail-breadcrumb a:hover { color: var(--chp-brand-light); }
.chp-detail-breadcrumb [aria-current="page"] { color: #fff; }

/* Brand tag (上部) */
.chp-detail-hero__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.chp-detail-hero__brand-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.35rem 0.95rem 0.35rem 0.7rem;
    background: rgba(255,255,255,0.92);
    color: #111;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px -6px rgba(0,0,0,0.4);
}
.chp-detail-hero__brand-tag--chp {
    background: linear-gradient(135deg, var(--chp-brand) 0%, var(--chp-brand-dark) 100%);
    color: #fff;
    padding-left: 1rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.chp-detail-hero__brand-logo {
    height: 22px;
    max-width: 80px;
    object-fit: contain;
    display: block;
}
.chp-detail-hero__brand-country {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
}

/* 一覧カードのブランドバッジ */
.chp-product-brand-badge {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    font-weight: 700;
}
.chp-product-brand-badge--chp {
    background: var(--chp-brand);
    color: #fff;
}
.chp-product-brand-badge--import {
    background: #fff;
    color: var(--chp-text);
    border: 1px solid var(--chp-line);
}

.chp-detail-hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}
.chp-detail-hero__type {
    display: inline-block;
    padding: 0.3rem 0.95rem;
    background-color: var(--chp-ocean);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 999px;
}
.chp-detail-hero__level {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    border-radius: 999px;
}
.chp-detail-hero__title {
    font-size: clamp(2rem, 5.5vw, 3.4rem);
    line-height: 1.18;
    margin: 0 0 1.25rem;
    color: #fff;
}
.chp-detail-hero__shaper {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}
.chp-detail-hero__shaper-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--chp-brand-light);
}
.chp-detail-hero__shaper-label::after {
    content: "—";
    margin-left: 0.6rem;
    color: rgba(255, 255, 255, 0.35);
}
.chp-detail-hero__shaper-name {
    font-size: 1.05rem;
    letter-spacing: 0.04em;
}

/* --- MAIN: Gallery + Info Panel --- */
.chp-detail-main {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background-color: var(--chp-bg);
}

/* Gallery */
.chp-detail-gallery {
    position: static;
}
@media (min-width: 992px) {
    .chp-detail-gallery--sticky {
        position: sticky;
        top: 96px;
    }
}
.chp-detail-gallery__main {
    position: relative;
    background-color: var(--chp-sand);
    border: 1px solid var(--chp-line);
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
}
.chp-detail-gallery__main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.chp-detail-gallery__placeholder {
    opacity: 0.4;
}
.chp-detail-gallery__placeholder img {
    max-width: 120px;
    height: auto;
}
.chp-detail-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.6rem;
    margin-top: 0.75rem;
}
.chp-detail-gallery__thumb {
    position: relative;
    aspect-ratio: 1 / 1;
    background-color: var(--chp-sand);
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    padding: 0;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease;
}
.chp-detail-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.chp-detail-gallery__thumb:hover {
    transform: translateY(-2px);
}
.chp-detail-gallery__thumb.is-active {
    border-color: var(--chp-brand);
}
@media (max-width: 991.98px) {
    .chp-detail-gallery { position: static; }
}

/* Info Panel */
.chp-detail-info {
    background-color: var(--chp-bg-soft);
    border: 1px solid var(--chp-line);
    border-radius: 6px;
    padding: clamp(1.5rem, 3vw, 2.25rem);
}
.chp-detail-info__rating {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
    color: var(--chp-text-muted);
    font-size: 0.78rem;
}
.chp-detail-info__rating .stars {
    color: #f4b400;
    letter-spacing: 0.05em;
}
.chp-detail-info__rating-note {
    font-style: italic;
}
.chp-detail-info__price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.5rem;
    color: var(--chp-ocean);
    margin: 0 0 0.75rem;
    line-height: 1;
}
.chp-detail-info__price-mark {
    font-size: 1.3rem;
    color: var(--chp-text-muted);
}
.chp-detail-info__price-main {
    font-size: clamp(2rem, 4.5vw, 2.6rem);
    font-weight: 700;
    color: var(--chp-text);
    letter-spacing: 0.02em;
}
.chp-detail-info__price-tax {
    font-size: 0.85rem;
    color: var(--chp-text-muted);
    font-weight: 400;
    letter-spacing: 0.02em;
}
.chp-detail-info__divider {
    border: 0;
    border-top: 1px solid var(--chp-line);
    margin: 1.25rem 0;
}
.chp-detail-info__section + .chp-detail-info__section { margin-top: 1.5rem; }
.chp-detail-info__heading {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--chp-text);
    margin: 0 0 0.85rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--chp-sand-deep);
    letter-spacing: 0.04em;
}

/* Spec */
.chp-detail-spec {
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}
.chp-detail-spec__row {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1rem;
    padding: 0.6rem 0;
    border-bottom: 1px dashed var(--chp-line);
    align-items: baseline;
}
.chp-detail-spec__row:last-child { border-bottom: none; }
.chp-detail-spec__label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--chp-text-muted);
    margin: 0;
}
.chp-detail-spec__value {
    margin: 0;
    font-size: 1.05rem;
    color: var(--chp-text);
    font-weight: 600;
    letter-spacing: 0.02em;
}
.chp-detail-spec__unit {
    margin-left: 0.2rem;
    font-size: 0.85rem;
    color: var(--chp-text-muted);
    font-weight: 400;
}

/* Size variations */
.chp-detail-sizes {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.chp-detail-sizes__row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.4rem 0.75rem;
    padding: 0.55rem 0;
    border-bottom: 1px dashed var(--chp-line);
    font-family: var(--chp-font-serif);
}
.chp-detail-sizes__row:last-child { border-bottom: none; }
.chp-detail-sizes__dim {
    font-size: 1rem;
    font-weight: 600;
    color: var(--chp-text);
    letter-spacing: 0.02em;
}
.chp-detail-sizes__sep {
    margin: 0 0.35rem;
    color: var(--chp-text-muted);
    font-weight: 400;
}
.chp-detail-sizes__vol {
    font-size: 0.9rem;
    color: var(--chp-text-muted);
    font-weight: 500;
}
.chp-detail-sizes__unit {
    margin-left: 0.15rem;
    font-size: 0.8rem;
}

/* CTA */
.chp-detail-info__cta {
    margin-top: 1.75rem;
    display: grid;
    gap: 0.65rem;
}
.chp-detail-info__btn {
    display: inline-block;
    width: 100%;
    padding: 0.85rem 1.25rem;
    text-align: center;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.chp-detail-info__btn--brand {
    background-color: var(--chp-brand);
    color: #fff;
    border: 1.5px solid var(--chp-brand);
}
.chp-detail-info__btn--brand:hover {
    background-color: var(--chp-brand-dark);
    border-color: var(--chp-brand-dark);
    color: #fff;
    transform: translateY(-1px);
}
.chp-detail-info__btn--outline {
    background-color: transparent;
    color: var(--chp-ocean);
    border: 1.5px solid var(--chp-ocean);
}
.chp-detail-info__btn--outline:hover {
    background-color: var(--chp-ocean);
    color: #fff;
    transform: translateY(-1px);
}

/* --- DESCRIPTION --- */
.chp-detail-desc {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background-color: var(--chp-sand);
    text-align: center;
}
.chp-detail-desc__eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--chp-brand);
    margin: 0 0 0.85rem;
}
.chp-detail-desc__title {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    color: var(--chp-text);
    margin: 0 0 1.25rem;
}
.chp-detail-desc__divider {
    width: 48px;
    height: 2px;
    background-color: var(--chp-brand);
    border: 0;
    margin: 0 auto 1.75rem;
}
.chp-detail-desc__body {
    font-size: 1rem;
    line-height: 2;
    color: var(--chp-text);
    margin: 0;
    text-align: left;
}
@media (min-width: 768px) {
    .chp-detail-desc__body { text-align: left; }
}

/* TinyMCE で書かれたリッチテキスト本文 */
.chp-rte p { margin: 0 0 1em; }
.chp-rte p:last-child { margin-bottom: 0; }
.chp-rte h1, .chp-rte h2, .chp-rte h3, .chp-rte h4 {
    margin: 1.6em 0 0.6em;
    line-height: 1.4;
    font-weight: 700;
    color: var(--chp-text);
}
.chp-rte h2 { font-size: 1.35rem; }
.chp-rte h3 { font-size: 1.15rem; }
.chp-rte h4 { font-size: 1.05rem; }
.chp-rte ul, .chp-rte ol { margin: 0 0 1em 1.25em; padding: 0; }
.chp-rte li { margin: 0.25em 0; }
.chp-rte a { color: var(--chp-accent, #1466ff); text-decoration: underline; }
.chp-rte a:hover { opacity: .85; }
.chp-rte img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1em auto;
    border-radius: 4px;
}
/* YouTube / Vimeo / その他 oEmbed 動画埋め込み（TinyMCE media プラグイン） */
.chp-rte iframe,
.chp-rte video {
    display: block;
    width: 100% !important;
    max-width: 880px;
    height: auto !important;
    aspect-ratio: 16 / 9;
    margin: 1.5em auto;
    border: 0;
    border-radius: 4px;
    background: #000;
}
.chp-rte table {
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0;
    font-size: 0.95rem;
}
.chp-rte th, .chp-rte td {
    border: 1px solid var(--chp-line);
    padding: 0.5rem 0.75rem;
    text-align: left;
}
.chp-rte th { background: rgba(0,0,0,.03); font-weight: 600; }
.chp-rte hr { border: 0; border-top: 1px solid var(--chp-line); margin: 1.5em 0; }
.chp-rte code {
    background: rgba(0,0,0,.05);
    padding: 0.1em 0.4em;
    border-radius: 3px;
    font-size: 0.9em;
}

/* --- SHAPER CARD --- */
.chp-detail-shaper {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background-color: var(--chp-bg);
}
.chp-detail-shaper__card {
    background-color: var(--chp-ocean);
    color: #fff;
    border-radius: 6px;
    padding: clamp(2rem, 5vw, 3.5rem);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.chp-detail-shaper__card::before {
    content: "";
    position: absolute;
    right: -40px;
    top: -40px;
    width: 220px;
    height: 220px;
    border: 2px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    z-index: 0;
}
.chp-detail-shaper__card::after {
    content: "";
    position: absolute;
    right: 40px;
    bottom: -80px;
    width: 160px;
    height: 160px;
    border: 2px solid rgba(245, 117, 8, 0.18);
    border-radius: 50%;
    z-index: 0;
}
.chp-detail-shaper__eyebrow,
.chp-detail-shaper__name,
.chp-detail-shaper__profile,
.chp-detail-shaper__link {
    position: relative;
    z-index: 1;
}
.chp-detail-shaper__eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--chp-brand-light);
    margin: 0 0 0.5rem;
}
.chp-detail-shaper__name {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    margin: 0 0 1rem;
    color: #fff;
}
.chp-detail-shaper__profile {
    font-size: 0.95rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 1.5rem;
    max-width: 720px;
}
.chp-detail-shaper__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    text-decoration: none;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    border-radius: 999px;
    transition: background-color 0.2s ease, border-color 0.2s ease, gap 0.2s ease;
}
.chp-detail-shaper__link:hover {
    background-color: var(--chp-brand);
    border-color: var(--chp-brand);
    color: #fff;
    gap: 0.85rem;
}
.chp-detail-shaper__link::after {
    content: "→";
    font-family: var(--chp-font-serif);
}

/* --- RELATED --- */
.chp-detail-related {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background-color: var(--chp-sand);
}
.chp-detail-related__head {
    text-align: center;
    margin-bottom: 2.25rem;
}
.chp-detail-related__eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--chp-brand);
    margin: 0 0 0.65rem;
}
.chp-detail-related__title {
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    color: var(--chp-text);
    margin: 0;
}
.chp-detail-related__card {
    display: block;
    background-color: #fff;
    border: 1px solid var(--chp-line);
    border-radius: 6px;
    overflow: hidden;
    color: var(--chp-text);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    height: 100%;
}
.chp-detail-related__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px -20px rgba(15, 61, 82, 0.35);
    border-color: var(--chp-brand);
    color: var(--chp-text);
}
.chp-detail-related__media {
    aspect-ratio: 3 / 4;
    background-color: var(--chp-sand);
    overflow: hidden;
}
.chp-detail-related__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.chp-detail-related__card:hover .chp-detail-related__media img {
    transform: scale(1.04);
}
.chp-detail-related__body {
    padding: 1.1rem 1.2rem 1.3rem;
}
.chp-detail-related__board-type {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--chp-brand);
    margin: 0 0 0.4rem;
}
.chp-detail-related__name {
    font-size: 1.05rem;
    line-height: 1.4;
    margin: 0 0 0.4rem;
    color: var(--chp-text);
}
.chp-detail-related__shaper {
    font-size: 0.78rem;
    color: var(--chp-text-muted);
    margin: 0 0 0.6rem;
    letter-spacing: 0.02em;
}
.chp-detail-related__price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--chp-ocean);
    margin: 0;
    letter-spacing: 0.02em;
}
.chp-detail-related__footer {
    text-align: center;
    margin-top: 2.5rem;
}
.chp-detail-related__all {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.6rem;
    border: 1.5px solid var(--chp-text);
    color: var(--chp-text);
    text-decoration: none;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    border-radius: 999px;
    transition: background-color 0.2s ease, color 0.2s ease, gap 0.2s ease;
}
.chp-detail-related__all:hover {
    background-color: var(--chp-text);
    color: #fff;
    gap: 0.85rem;
}
.chp-detail-related__all::after {
    content: "→";
    font-family: var(--chp-font-serif);
}

/* Mobile tweak */
@media (max-width: 575.98px) {
    .chp-detail-gallery__thumbs {
        grid-template-columns: repeat(4, 1fr);
    }
    .chp-detail-spec__row {
        grid-template-columns: 90px 1fr;
    }
}

/* ===========================================================
   HERO SCROLL CUE
=========================================================== */
.chp-detail-hero__scroll {
    position: absolute;
    bottom: 1.8rem;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 36px;
    border: 1.5px solid rgba(255,255,255,0.7);
    border-radius: 12px;
    z-index: 3;
}
.chp-detail-hero__scroll span {
    position: absolute;
    top: 6px;
    left: 50%;
    width: 3px;
    height: 8px;
    margin-left: -1.5px;
    background: rgba(255,255,255,0.9);
    border-radius: 2px;
    animation: chp-scroll-cue 1.6s ease-in-out infinite;
}
@keyframes chp-scroll-cue {
    0%   { transform: translateY(0); opacity: 0.9; }
    100% { transform: translateY(14px); opacity: 0; }
}

/* ===========================================================
   STATS BAR — Brand-showcase strip
=========================================================== */
.chp-detail-stats {
    padding: 0;
    background: var(--chp-ocean-dark, #0b3954);
    color: #fff;
}
.chp-detail-stats__row {
    margin: 0;
}
.chp-detail-stats__cell {
    padding: 1.5rem 1.2rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.chp-detail-stats__cell:last-child { border-right: none; }
@media (max-width: 991.98px) {
    .chp-detail-stats__cell { border-right: none; }
    .chp-detail-stats__cell:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
    .chp-detail-stats__cell:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
}
.chp-detail-stats__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.85);
}
.chp-detail-stats__icon i { font-size: 1.4rem; }
.chp-detail-stats__label {
    margin: 0 0 0.2rem;
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}
.chp-detail-stats__value {
    margin: 0;
    font-family: var(--chp-font-serif);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.2;
    color: #fff;
}
.chp-detail-stats__value small {
    margin-left: 0.2rem;
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.1em;
}

/* ===========================================================
   PRICE BAND (full-width dark)
=========================================================== */
.chp-detail-priceband {
    background: var(--chp-ocean-dark, #082939);
    color: #fff;
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.chp-detail-priceband::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center top, rgba(255,255,255,0.05), transparent 65%);
    pointer-events: none;
}
.chp-detail-priceband__eyebrow {
    margin: 0 0 0.6rem;
    font-size: 0.72rem;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    position: relative;
}
.chp-detail-priceband__price {
    margin: 0 0 0.5rem;
    font-family: var(--chp-font-serif);
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.04em;
    line-height: 1.2;
    position: relative;
}
.chp-detail-priceband__mark {
    font-size: 0.65em;
    margin-right: 0.1rem;
    color: var(--chp-brand);
}
.chp-detail-priceband__tax {
    margin-left: 0.6rem;
    font-size: 0.42em;
    font-weight: 400;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.08em;
}
.chp-detail-priceband__note {
    margin: 0 auto 1.5rem;
    font-size: 0.92rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.78);
    max-width: 600px;
    position: relative;
}
.chp-detail-priceband__cta {
    position: relative;
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
}
.chp-detail-priceband__btn {
    display: inline-block;
    min-width: 220px;
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.chp-detail-priceband__btn--brand {
    background: var(--chp-brand);
    color: #fff;
    border: 1.5px solid var(--chp-brand);
}
.chp-detail-priceband__btn--brand:hover {
    background: var(--chp-brand-dark);
    border-color: var(--chp-brand-dark);
    color: #fff;
    transform: translateY(-1px);
}
.chp-detail-priceband__btn--outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.4);
}
.chp-detail-priceband__btn--outline:hover {
    background: rgba(255,255,255,0.92);
    color: var(--chp-text);
    border-color: rgba(255,255,255,0.92);
    transform: translateY(-1px);
}

/* ===========================================================
   VIDEO SECTION (cinematic, dark)
=========================================================== */
.chp-detail-video--cinematic {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #fff;
    padding: clamp(4rem, 8vw, 6.5rem) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.chp-detail-video--cinematic::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(ellipse at center top, rgba(255,255,255,0.06), transparent 60%);
    pointer-events: none;
}
.chp-detail-video__eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin: 0 0 0.6rem;
    position: relative;
}
.chp-detail-video__title {
    font-family: var(--chp-font-serif);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin: 0 0 2rem;
    color: #fff;
    letter-spacing: 0.04em;
    position: relative;
}
.chp-detail-video__frame {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 40px 80px -30px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.05);
    position: relative;
}
.chp-detail-video__frame iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    border: 0;
    background: #000;
}

/* ===========================================================
   STICKY INFO PANEL
=========================================================== */
.chp-detail-info--sticky {
    position: static;
}
@media (min-width: 992px) {
    .chp-detail-info--sticky {
        position: sticky;
        top: 96px;
    }
}
.chp-detail-info__highlights {
    list-style: none;
    margin: 1.25rem 0 1.5rem;
    padding: 1rem 1.1rem;
    border: 1px solid var(--chp-line);
    border-radius: 4px;
    background: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 1rem;
}
.chp-detail-info__highlights li {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-family: var(--chp-font-serif);
}
.chp-detail-info__highlight-label {
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--chp-text-muted);
}
.chp-detail-info__highlight-value {
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--chp-text);
}
.chp-detail-info__highlight-value small {
    margin-left: 0.15rem;
    font-size: 0.72rem;
    color: var(--chp-text-muted);
    font-weight: 400;
}
.chp-detail-info__highlight-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--chp-text);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    width: max-content;
}
.chp-detail-info__highlight-link i {
    font-size: 0.75rem;
}
.chp-detail-info__highlight-link:hover {
    color: var(--chp-accent, #1466ff);
}
.chp-detail-info__note {
    margin: 1rem 0 0;
    font-size: 0.78rem;
    color: var(--chp-text-muted);
    line-height: 1.7;
}

/* ===========================================================
   STORY + SPEC blocks (右カラム内で縦積み)
=========================================================== */
.chp-detail-storyspec {
    padding: clamp(3.5rem, 7vw, 6rem) 0;
    background: #fff;
    scroll-margin-top: 80px;
}
.chp-detail-storyspec__block {
    margin-bottom: 2.5rem;
    scroll-margin-top: 80px;
}
.chp-detail-storyspec__block:last-child { margin-bottom: 0; }
.chp-detail-storyspec__eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--chp-text-muted);
    margin: 0 0 0.5rem;
}
.chp-detail-storyspec__title {
    font-family: var(--chp-font-serif);
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    margin: 0 0 1rem;
    color: var(--chp-text);
    letter-spacing: 0.04em;
    line-height: 1.3;
}
.chp-detail-storyspec__divider {
    width: 56px;
    height: 2px;
    background: var(--chp-text);
    border: 0;
    margin: 0 0 1.75rem;
    opacity: 0.85;
}
.chp-detail-storyspec__body {
    font-size: 1rem;
    line-height: 2;
    color: var(--chp-text);
    margin: 0;
}
.chp-detail-storyspec__body--empty {
    color: var(--chp-text-muted);
    font-style: italic;
}

/* Spec card (specifications column) */
.chp-detail-spec-card {
    margin: 0 0 2rem;
    padding: 0;
    border: 1px solid var(--chp-line);
    border-radius: 4px;
    background: #fff;
    overflow: hidden;
}
.chp-detail-spec-card__row {
    display: grid;
    grid-template-columns: 140px 1fr;
    align-items: center;
    padding: 0.85rem 1.1rem;
    border-bottom: 1px solid var(--chp-line);
    font-family: var(--chp-font-serif);
}
.chp-detail-spec-card__row:last-child { border-bottom: none; }
.chp-detail-spec-card__row dt {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--chp-text-muted);
    font-weight: 600;
}
.chp-detail-spec-card__row dd {
    margin: 0;
    font-size: 1.02rem;
    color: var(--chp-text);
    font-weight: 700;
    letter-spacing: 0.04em;
}
.chp-detail-spec-card__row dd small {
    margin-left: 0.15rem;
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--chp-text-muted);
}
.chp-detail-spec-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: var(--chp-ocean-dark, #0b3954);
}
.chp-detail-spec-card__icon svg {
    width: 22px;
    height: 22px;
}

/* Sticky Info の jump link */
.chp-detail-info__jump {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--chp-text);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
}
.chp-detail-info__jump:hover { color: var(--chp-accent, #1466ff); }
.chp-detail-info__jump i { font-size: 0.72rem; }
.chp-detail-sizetable {
    background: #fff;
    border: 1px solid var(--chp-line);
    border-radius: 4px;
    overflow: hidden;
}
.chp-detail-sizetable__head {
    margin: 0;
    padding: 0.75rem 1.1rem;
    background: var(--chp-ocean-dark, #0b3954);
    color: #fff;
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 600;
    font-family: var(--chp-font-serif);
}
.chp-detail-sizetable table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--chp-font-serif);
}
.chp-detail-sizetable thead th {
    background: rgba(0,0,0,0.03);
    padding: 0.6rem 0.9rem;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--chp-text-muted);
    text-align: left;
    border-bottom: 1px solid var(--chp-line);
    font-weight: 600;
}
.chp-detail-sizetable tbody td {
    padding: 0.7rem 0.9rem;
    border-bottom: 1px solid var(--chp-line);
    font-size: 0.95rem;
    color: var(--chp-text);
    font-weight: 600;
}
.chp-detail-sizetable tbody tr:last-child td { border-bottom: none; }
.chp-detail-sizetable tbody td small {
    margin-left: 0.15rem;
    font-size: 0.7rem;
    color: var(--chp-text-muted);
    font-weight: 400;
}
.chp-detail-sizetable__note {
    margin: 0.6rem 1rem 0.85rem;
    font-size: 0.74rem;
    color: var(--chp-text-muted);
}
.chp-detail-sizetable__empty {
    color: var(--chp-text-muted);
    font-size: 0.95rem;
    text-align: center;
    padding: 2rem 0;
}

/* ===========================================================
   WHY CHP STRIP
=========================================================== */
.chp-detail-why {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: linear-gradient(180deg, var(--chp-bg, #faf9f7) 0%, #fff 100%);
    text-align: center;
}
.chp-detail-why__eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--chp-text-muted);
    margin: 0 0 0.4rem;
}
.chp-detail-why__title {
    font-family: var(--chp-font-serif);
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    margin: 0 0 2.5rem;
    color: var(--chp-text);
    letter-spacing: 0.04em;
}
.chp-detail-why__grid {
    text-align: left;
}
.chp-detail-why__item {
    padding: 1.5rem;
    height: 100%;
    border: 1px solid var(--chp-line);
    border-radius: 4px;
    background: #fff;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.chp-detail-why__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px -28px rgba(0,0,0,0.35);
}
.chp-detail-why__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--chp-ocean-dark, #0b3954);
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.chp-detail-why__item-title {
    font-family: var(--chp-font-serif);
    font-size: 1.05rem;
    margin: 0 0 0.5rem;
    color: var(--chp-text);
    letter-spacing: 0.04em;
}
.chp-detail-why__item-text {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.75;
    color: var(--chp-text-muted);
}

/* ===========================================================
   MOBILE STICKY CTA BAR
=========================================================== */
.chp-detail-mobile-cta {
    display: none;
}
.chp-detail-mobile-cta__spacer { display: none; }
@media (max-width: 991.98px) {
    .chp-detail-mobile-cta {
        position: fixed;
        left: 0; right: 0; bottom: 0;
        z-index: 90;
        background: #fff;
        border-top: 1px solid var(--chp-line);
        box-shadow: 0 -10px 30px -15px rgba(0,0,0,0.3);
        padding: 0.55rem 0.7rem calc(0.55rem + env(safe-area-inset-bottom));
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    .chp-detail-mobile-cta__price {
        font-family: var(--chp-font-serif);
        font-weight: 700;
        font-size: 1.15rem;
        color: var(--chp-text);
        flex: 0 0 auto;
        padding: 0 0.25rem;
    }
    .chp-detail-mobile-cta__price small {
        font-size: 0.78rem;
        margin-right: 0.1rem;
        color: var(--chp-text-muted);
        font-weight: 500;
    }
    .chp-detail-mobile-cta__btn {
        flex: 1 1 0;
        text-align: center;
        padding: 0.65rem 0.5rem;
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        border-radius: 4px;
        text-decoration: none;
        white-space: nowrap;
    }
    .chp-detail-mobile-cta__btn--brand {
        background: var(--chp-accent, #f57508);
        color: #fff;
    }
    .chp-detail-mobile-cta__btn--brand:hover { opacity: 0.92; color: #fff; }
    .chp-detail-mobile-cta__btn--outline {
        border: 1.5px solid var(--chp-text);
        color: var(--chp-text);
    }
    .chp-detail-mobile-cta__btn--outline:hover {
        background: var(--chp-text);
        color: #fff;
    }
    .chp-detail-mobile-cta__spacer {
        display: block;
        height: calc(72px + env(safe-area-inset-bottom));
    }
}

/* Spec / sizes mobile tweak */
@media (max-width: 575.98px) {
    .chp-detail-spec-card__row {
        grid-template-columns: 110px 1fr;
        padding: 0.7rem 0.9rem;
    }
    .chp-detail-sizetable thead th,
    .chp-detail-sizetable tbody td {
        padding: 0.55rem 0.6rem;
        font-size: 0.88rem;
    }
}

/* ==========================================================
   LINEUP PAGE (Toyota-style)
========================================================== */

/* HERO with 3-phase intro */
.chp-line-hero {
    position: relative;
    overflow: hidden;
    background-color: var(--chp-ocean-dark);
    color: #fff;
    padding: clamp(5rem, 11vw, 8rem) 0 clamp(3rem, 6vw, 4.5rem);
    isolation: isolate;
    min-height: clamp(380px, 48vw, 560px);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Phase 1: Mosaic */
.chp-line-hero__mosaic {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 2px;
    background: #000;
    z-index: 2;
}
@media (max-width: 767.98px) {
    .chp-line-hero__mosaic {
        grid-template-columns: repeat(5, 1fr);
        grid-template-rows: repeat(4, 1fr);
    }
}
.chp-line-hero__tile {
    background: rgba(255,255,255,0.04);
    overflow: hidden;
}
.chp-line-hero__tile img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    animation: chpTileIn 0.32s cubic-bezier(.16,1,.3,1);
}
@keyframes chpTileIn {
    from { opacity: 0; transform: scale(1.15); filter: brightness(1.8); }
    to   { opacity: 1; transform: scale(1);    filter: brightness(1); }
}

/* Phase 2: Typing */
.chp-line-hero__typing {
    position: relative;
    z-index: 2;
    width: 100%;
    animation: chpFadeIn 0.4s ease;
}
.chp-line-hero__eyebrow--typing,
.chp-line-hero__title--typing,
.chp-line-hero__sub--typing {
    min-height: 1.2em; /* レイアウト揺れ防止 */
}
.chp-line-hero__cursor {
    display: inline-block;
    margin-left: 2px;
    color: var(--chp-brand);
    animation: chpCursorBlink 0.7s steps(2, jump-none) infinite;
}
@keyframes chpCursorBlink { 50% { opacity: 0; } }
@keyframes chpFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Skip button */
.chp-line-hero__skip {
    position: absolute;
    top: 1rem; right: 1rem;
    z-index: 5;
    background: rgba(0,0,0,0.4);
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}
.chp-line-hero__skip:hover {
    background: rgba(255,255,255,0.92);
    color: #111;
}

/* Phase 3 (final) — 背景はゆっくり、テキストは少し遅れて柔らかく */
.chp-line-hero--final .chp-line-hero__bg {
    opacity: 0;
    transform: scale(1.06);
    animation: chpHeroBgIn 2.2s cubic-bezier(.16,1,.3,1) forwards;
}
.chp-line-hero--final .chp-line-hero__overlay {
    opacity: 0;
    animation: chpFadeIn 1.6s 0.2s ease forwards;
}
.chp-line-hero--final .chp-line-hero__inner {
    opacity: 0;
    animation: chpFadeIn 0.9s 0.7s ease forwards;
}
@keyframes chpHeroBgIn {
    0%   { opacity: 0; transform: scale(1.06); }
    100% { opacity: 1; transform: scale(1); }
}
.chp-line-hero__bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    filter: brightness(0.55);
    z-index: 0;
}
.chp-line-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 100%);
    z-index: 1;
}
.chp-line-hero__inner {
    position: relative; z-index: 2; text-align: center;
    width: 100%;
}

/* Banner copy refresh (CUSTOM ORDER / PUKAS) */
.chp-banner-eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.7rem;
    letter-spacing: 0.36em;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    font-weight: 600;
}
.chp-banner-headline {
    font-family: var(--chp-font-serif);
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    line-height: 1.4;
    letter-spacing: 0.04em;
    margin: 0 0 1rem;
    font-weight: 700;
}
.chp-banner-sub {
    font-size: 0.95rem;
    line-height: 1.85;
    margin: 0 0 1rem;
    color: rgba(255,255,255,0.9);
    font-weight: 400;
}
.chp-line-hero__eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.36em;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
}
.chp-line-hero__title {
    font-family: var(--chp-font-serif);
    font-size: clamp(1.6rem, 3.6vw, 2.6rem);
    margin: 0 0 1rem;
    letter-spacing: 0.04em;
    line-height: 1.5;
    font-weight: 700;
}
.chp-line-hero__sub {
    margin: 0 auto;
    max-width: 720px;
    font-size: 0.95rem;
    line-height: 1.95;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.85);
}
.chp-line-hero__cta {
    display: inline-block;
    margin-top: 1.75rem;
    padding: 0.85rem 2.1rem;
    background: var(--chp-brand);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    border-radius: 999px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}
.chp-line-hero__cta:hover {
    background: var(--chp-brand-dark);
    color: #fff;
    transform: translateY(-2px);
}

/* BRAND TABS (sticky) */
.chp-line-tabs {
    position: sticky;
    top: 0;
    z-index: 30;
    background: #fff;
    border-bottom: 1px solid var(--chp-line);
    box-shadow: 0 4px 12px -10px rgba(0,0,0,0.2);
}
.chp-line-tabs__inner {
    display: flex;
    gap: 0.25rem;
    overflow-x: auto;
    padding: 0.5rem 0;
    scrollbar-width: thin;
}
.chp-line-tabs__btn {
    flex: 0 0 auto;
    background: transparent;
    border: none;
    padding: 0.65rem 1.1rem;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--chp-text-muted);
    text-transform: uppercase;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color 0.18s ease, color 0.18s ease;
}
.chp-line-tabs__btn small {
    margin-left: 0.4rem;
    font-size: 0.7rem;
    color: var(--chp-text-soft);
    font-weight: 500;
}
.chp-line-tabs__btn:hover {
    color: var(--chp-text);
    background: var(--chp-bg-soft);
}
.chp-line-tabs__btn.is-active {
    background: var(--chp-ocean);
    color: #fff;
}
.chp-line-tabs__btn.is-active small { color: rgba(255,255,255,0.7); }
.chp-line-tabs__btn--chp.is-active { background: var(--chp-brand); }

/* SECTION common */
.chp-line-section {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.chp-line-section--featured { background: var(--chp-bg-soft); }
.chp-line-section--lineup {
    background: #fff;
    border-top: 1px solid var(--chp-line);
}
.chp-line-section__head {
    text-align: center;
    margin-bottom: 2rem;
}
.chp-line-section__head--lineup {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    text-align: left;
}
.chp-line-section__eyebrow {
    margin: 0 0 0.4rem;
    font-size: 0.72rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--chp-text-muted);
}
.chp-line-section__title {
    margin: 0;
    font-family: var(--chp-font-serif);
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    color: var(--chp-text);
    letter-spacing: 0.04em;
}

/* FIND-ROW (旧: Type + Level セクション内) */
.chp-line-findrow {
    margin-bottom: 2rem;
}
.chp-line-findrow:last-child { margin-bottom: 0; }
.chp-line-findrow__label {
    margin: 0 0 0.85rem;
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--chp-text-muted);
    font-weight: 600;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--chp-line);
}

/* コンパクト化されたピル UI */
.chp-line-section--find {
    padding: clamp(2rem, 4vw, 3rem) 0;
}
.chp-line-section__head--find {
    text-align: left;
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.chp-line-section__head--find .chp-line-section__eyebrow { margin: 0; }
.chp-line-section__head--find .chp-line-section__title {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
}

.chp-line-pillrow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.6rem;
    padding: 0.5rem 0;
}
.chp-line-pillrow + .chp-line-pillrow {
    border-top: 1px dashed var(--chp-line);
    margin-top: 0.4rem;
    padding-top: 0.9rem;
}
.chp-line-pillrow__label {
    flex: 0 0 auto;
    width: 80px;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--chp-text-muted);
    font-weight: 600;
}
@media (max-width: 575.98px) {
    .chp-line-pillrow__label { width: 100%; margin-bottom: 0.2rem; }
}

.chp-line-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.95rem;
    background: #fff;
    border: 1px solid var(--chp-line);
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--chp-text);
    cursor: pointer;
    transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.chp-line-pill:hover:not(:disabled) {
    border-color: var(--chp-ocean);
    box-shadow: 0 6px 18px -12px rgba(0,0,0,0.35);
}
.chp-line-pill:disabled,
.chp-line-pill.is-empty {
    opacity: 0.4;
    cursor: not-allowed;
}
.chp-line-pill.is-active {
    background: var(--chp-ocean);
    color: #fff;
    border-color: var(--chp-ocean);
}
.chp-line-pill.is-active .chp-line-pill__count { color: rgba(255,255,255,0.75); }
.chp-line-pill__icon {
    display: inline-flex;
    align-items: center;
    width: 18px; height: 18px;
    color: var(--chp-ocean);
}
.chp-line-pill__icon svg { width: 18px; height: 18px; }
.chp-line-pill.is-active .chp-line-pill__icon { color: #fff; }
.chp-line-pill__count {
    font-size: 0.74rem;
    color: var(--chp-text-muted);
    font-weight: 500;
    padding-left: 0.25rem;
    border-left: 1px solid var(--chp-line);
    margin-left: 0.15rem;
}
.chp-line-pill.is-active .chp-line-pill__count { border-left-color: rgba(255,255,255,0.3); }

/* レベル別カラーアクセント */
.chp-line-pill--lv-beginner.is-active     { background: #4caf50; border-color: #4caf50; }
.chp-line-pill--lv-intermediate.is-active { background: #1466ff; border-color: #1466ff; }
.chp-line-pill--lv-advanced.is-active     { background: #d32f2f; border-color: #d32f2f; }

.chp-line-pillclear {
    margin-left: 0.25rem;
    background: transparent;
    border: 0;
    color: var(--chp-text-muted);
    font-size: 0.78rem;
    cursor: pointer;
    text-decoration: underline;
}
.chp-line-pillclear:hover { color: var(--chp-text); }

/* TYPE CARD */
.chp-line-typecard {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border: 1px solid var(--chp-line);
    border-radius: 6px;
    text-decoration: none;
    color: var(--chp-text);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.chp-line-typecard:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px -22px rgba(0,0,0,0.35);
    border-color: var(--chp-ocean);
    color: var(--chp-text);
}
.chp-line-typecard.is-empty {
    opacity: 0.4;
    pointer-events: none;
}
.chp-line-typecard__icon {
    width: 56px; height: 56px;
    flex: 0 0 56px;
    color: var(--chp-ocean);
}
.chp-line-typecard__icon svg { width: 100%; height: 100%; }
.chp-line-typecard__body { flex: 1 1 auto; }
.chp-line-typecard__label {
    margin: 0 0 0.2rem;
    font-family: var(--chp-font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}
.chp-line-typecard__count {
    margin: 0;
    font-size: 0.92rem;
    color: var(--chp-text-muted);
    font-family: var(--chp-font-serif);
}
.chp-line-typecard__count span {
    font-size: 1.4rem;
    color: var(--chp-text);
    font-weight: 700;
}
.chp-line-typecard__arrow {
    color: var(--chp-text-muted);
    font-size: 1.2rem;
    transition: transform 0.2s ease, color 0.2s ease;
}
.chp-line-typecard:hover .chp-line-typecard__arrow {
    color: var(--chp-ocean);
    transform: translateX(4px);
}

/* FEATURED ROW (horizontal scroll) */
.chp-line-featuredrow {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 1fr);
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
}
@media (min-width: 768px) {
    .chp-line-featuredrow {
        grid-auto-columns: minmax(240px, 1fr);
        gap: 1.25rem;
    }
}
.chp-line-card--featured { scroll-snap-align: start; }

/* LEVEL CARD */
.chp-line-levelcard {
    display: block;
    padding: 1.5rem 1.25rem;
    background: #fff;
    border: 1px solid var(--chp-line);
    border-radius: 6px;
    text-decoration: none;
    color: var(--chp-text);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.chp-line-levelcard:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px -22px rgba(0,0,0,0.35);
    color: var(--chp-text);
}
.chp-line-levelcard.is-empty { opacity: 0.4; pointer-events: none; }
.chp-line-levelcard__en {
    margin: 0 0 0.3rem;
    font-size: 0.74rem;
    letter-spacing: 0.28em;
    color: var(--chp-text-muted);
    text-transform: uppercase;
}
.chp-line-levelcard__ja {
    margin: 0 0 1rem;
    font-family: var(--chp-font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.chp-line-levelcard__count {
    margin: 0;
    font-family: var(--chp-font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--chp-text);
}
.chp-line-levelcard__count small {
    font-size: 0.78rem;
    color: var(--chp-text-muted);
    font-weight: 400;
    margin-left: 0.2rem;
}
.chp-line-levelcard--beginner     { border-top: 4px solid #4caf50; }
.chp-line-levelcard--intermediate { border-top: 4px solid #1466ff; }
.chp-line-levelcard--advanced     { border-top: 4px solid #d32f2f; }

/* SEARCH BAR */
.chp-line-search {
    position: relative;
    flex: 0 1 360px;
}
.chp-line-search__input {
    width: 100%;
    padding: 0.7rem 2.2rem 0.7rem 2.2rem;
    border: 1px solid var(--chp-line);
    border-radius: 999px;
    background: var(--chp-bg-soft);
    font-size: 0.95rem;
}
.chp-line-search__input:focus {
    outline: none;
    border-color: var(--chp-ocean);
    background: #fff;
}
.chp-line-search > i {
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--chp-text-muted);
    font-size: 0.85rem;
}
.chp-line-search__clear {
    position: absolute;
    right: 0.6rem;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--chp-text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    line-height: 1;
}
.chp-line-resultcount {
    margin: 0 0 1.5rem;
    color: var(--chp-text-muted);
    font-size: 0.9rem;
}
.chp-line-resultcount strong {
    color: var(--chp-text);
    font-size: 1.05rem;
}

/* TYPE BLOCK in ALL LINEUP */
.chp-line-typeblock {
    margin-bottom: 3rem;
    scroll-margin-top: 80px;
}
.chp-line-typeblock__title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0 0 1.25rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--chp-ocean);
    font-family: var(--chp-font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--chp-text);
}
.chp-line-typeblock__title small {
    margin-left: auto;
    font-size: 0.78rem;
    color: var(--chp-text-muted);
    font-weight: 500;
    letter-spacing: 0.04em;
}
.chp-line-typeblock__icon {
    width: 28px; height: 28px;
    display: inline-flex;
    align-items: center; justify-content: center;
    color: var(--chp-ocean);
}
.chp-line-typeblock__icon svg { width: 28px; height: 28px; }

/* PRODUCT CARD (info BELOW image) */
.chp-line-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--chp-line);
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    color: var(--chp-text);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    height: 100%;
}
.chp-line-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px -22px rgba(0,0,0,0.35);
    border-color: var(--chp-ocean-light);
    color: var(--chp-text);
}
.chp-line-card__media {
    position: relative;
    aspect-ratio: 3 / 4;
    background: var(--chp-sand);
    overflow: hidden;
}
.chp-line-card__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.chp-line-card:hover .chp-line-card__media img { transform: scale(1.04); }
.chp-line-card__type {
    position: absolute;
    top: 0.6rem; left: 0.6rem;
    padding: 0.25rem 0.6rem;
    background: rgba(15,61,82,0.92);
    color: #fff;
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    border-radius: 999px;
    font-weight: 700;
    text-transform: uppercase;
}
.chp-line-card__body {
    padding: 0.85rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1 1 auto;
}
.chp-line-card__brand {
    align-self: flex-start;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    font-weight: 700;
    margin-bottom: 0.2rem;
}
.chp-line-card__brand.is-chp {
    background: var(--chp-brand);
    color: #fff;
}
.chp-line-card__brand.is-import {
    background: #fff;
    color: var(--chp-text);
    border: 1px solid var(--chp-line);
}
.chp-line-card__name {
    margin: 0;
    font-family: var(--chp-font-serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--chp-text);
    letter-spacing: 0.03em;
    line-height: 1.35;
}
.chp-line-card__shaper {
    margin: 0;
    font-size: 0.78rem;
    color: var(--chp-text-muted);
    letter-spacing: 0.04em;
}
.chp-line-card__price {
    margin: 0.4rem 0 0;
    font-family: var(--chp-font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--chp-text);
}

/* EMPTY STATE */
.chp-line-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--chp-text-muted);
}
.chp-line-empty i { color: var(--chp-text-soft); }

@media (max-width: 575.98px) {
    .chp-line-section__head--lineup { align-items: stretch; }
    .chp-line-search { flex-basis: 100%; }
}

/* ==========================================================
   CUSTOM ORDER (全幅バナー)
========================================================== */
.chp-line-customorder {
    position: relative;
    padding: clamp(3rem, 7vw, 5.5rem) 0;
    background: #842029;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
    text-align: center;
}
.chp-line-customorder__bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.chp-line-customorder__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.65) 100%);
    z-index: 1;
}
.chp-line-customorder__inner {
    position: relative;
    z-index: 2;
}
.chp-line-customorder .chp-banner-headline {
    margin: 0 auto 1rem;
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
}
.chp-line-customorder .chp-banner-sub {
    margin: 0 auto 1.75rem;
    max-width: 640px;
}

/* ==========================================================
   BRAND STRIP (登録済みブランドのリンク集)
========================================================== */
.chp-line-brandstrip {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #fff;
    padding: clamp(3rem, 6vw, 5rem) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.chp-line-brandstrip::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center top, rgba(255,255,255,0.04), transparent 60%);
    pointer-events: none;
}
.chp-line-brandstrip .chp-line-section__head { margin-bottom: 2.5rem; position: relative; }
.chp-line-brandstrip .chp-line-section__eyebrow { color: rgba(255,255,255,0.5); }
.chp-line-brandstrip .chp-line-section__title { color: #fff; }

.chp-line-brandgrid {
    position: relative;
    justify-content: center;
}
.chp-line-brandtile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 180px;
    padding: 1.5rem 1.25rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
a.chp-line-brandtile {
    cursor: pointer;
}
a.chp-line-brandtile:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-3px);
    color: #fff;
}
.chp-line-brandtile.is-empty {
    opacity: 0.55;
    cursor: default;
}
.chp-line-brandtile.is-empty .chp-line-brandtile__cta {
    color: rgba(255,255,255,0.5);
    font-style: italic;
}
.chp-line-brandtile__cta i {
    font-size: 0.7em;
    margin-left: 0.2em;
}
.chp-line-brandtile__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    margin-bottom: 1rem;
    width: 100%;
}
.chp-line-brandtile__logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1); /* 白色化 */
    opacity: 0.85;
    transition: filter 0.25s ease, opacity 0.25s ease;
}
.chp-line-brandtile:hover .chp-line-brandtile__logo img {
    filter: none; /* オリジナルカラー復活 */
    opacity: 1;
}
.chp-line-brandtile__name {
    font-family: var(--chp-font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #fff;
}
.chp-line-brandtile__meta {
    margin: 0 0 0.85rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}
.chp-line-brandtile__count {
    padding-left: 0.5rem;
    border-left: 1px solid rgba(255,255,255,0.15);
}
.chp-line-brandtile__cta {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    font-weight: 700;
    color: var(--chp-brand);
    text-transform: uppercase;
    transition: gap 0.2s ease;
}
.chp-line-brandtile:hover .chp-line-brandtile__cta {
    color: var(--chp-brand-light);
}