/* ============================================================
   花以想 / 色で選ぶ花ギフト — 全15色ページ 共通CSS
   ファイル名: hanaimo_color.css
   格納先: /item/common/css/hanaimo_color.css
   依存: hanaimo_global_fixed.css（--hni-* 変数・body・img・a リセット）
   色固有変数（--sc / --sc-deep / --sc-pale / --sc-border）は
   各ページ V列 <style> でページごとに上書きする
   更新: 2026-03
============================================================ */

/* ============================================================
   グローバルCSS との整合メモ
   - img { aspect-ratio:1/1; border-radius:3px; } が全imgに適用
     → 各imgに aspect-ratio:auto; border-radius:0; を明示リセット
   - a { text-decoration:none; color:inherit; } 適用済み → 追加不要
   - h1〜h4 { font-family:var(--hni-font) !important } → p/div は影響なし
   - .is-active グローバルは .hni-mood__btn.is-active のみ → 単独競合なし
   - body { font-family:var(--hni-font); } → 全要素に font-family 明示で安全確保
============================================================ */

/* ============================================================
   色固有変数 フォールバック定義
============================================================ */
:root {
  --sc:        #01796a;
  --sc-deep:   #015e53;
  --sc-pale:   #f4f8f6;
  --sc-border: #c6d8d3;
}

/* ============================================================
   ページラッパー
============================================================ */
.sc-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 0 8px;
  box-sizing: border-box;
  font-size: 15px;
  font-family: var(--hni-font);
  line-height: 1.85;
  color: var(--hni-text);
}

/* ============================================================
   色帯
============================================================ */
.sc-colorband {
  height: 4px;
  background: linear-gradient(to right, var(--sc-deep), var(--sc), var(--sc-pale));
  margin: 12px 0 0;
}

/* ============================================================
   15色ナビ
============================================================ */
.sc-colornav {
  background: var(--hni-white);
  border-top: 1px solid var(--hni-border);
  border-bottom: 1px solid var(--hni-border);
}
.sc-colornav-inner {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 12px;
}
.sc-colornav-inner::-webkit-scrollbar { display: none; }

.sc-colornav-btn {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 11px;
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  text-decoration: none;
  color: inherit;
  min-height: 52px;
  justify-content: center;
  font-family: var(--hni-font);
  transition: background .12s;
  -webkit-tap-highlight-color: rgba(0,0,0,.04);
}
.sc-colornav-btn:hover { background: var(--hni-bg); }
.sc-colornav-btn.is-cur { border-bottom-color: var(--sc); }

.sc-colornav-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,.08);
}
.sc-colornav-dot.dual {
  background: linear-gradient(135deg, var(--c1) var(--sp,50%), var(--c2) var(--sp,50%));
}
.sc-colornav-name {
  font-size: 9px;
  font-family: var(--hni-font);
  color: var(--hni-text-sub);
  white-space: nowrap;
  line-height: 1;
}
.sc-colornav-btn.is-cur .sc-colornav-name {
  color: var(--sc-deep);
  font-weight: 700;
}

/* ============================================================
   C. キャッチ + キーワードタグ
============================================================ */
.sc-catch { padding: 24px 20px 16px; }

.sc-catch-copy {
  font-family: var(--hni-font);
  font-size: 20px;
  font-weight: 400;
  color: var(--hni-text);
  line-height: 1.7;
  margin-bottom: 14px;
}
.sc-catch-copy em {
  font-style: normal;
  border-bottom: 1.5px solid var(--sc);
  padding-bottom: 1px;
}

.sc-kw-row { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 18px; }
.sc-kw {
  font-size: 12px;
  font-weight: 500;
  font-family: var(--hni-font);
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--sc-pale);
  color: var(--sc-deep);
  border: 1px solid var(--sc-border);
}

/* ============================================================
   C. メインビジュアル
   ブリード（calc+負マージン）は廃止し、コンテナ内幅100%に統一
   SC-catchの横padding内に収まるシンプルな実装
============================================================ */
.sc-main-visual {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--sc-pale);
  text-decoration: none;
  border-radius: 4px;
}
/* ▼ グローバル img { aspect-ratio:1/1; border-radius:3px; border:... } をリセット */
.sc-main-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  aspect-ratio: auto !important;
  border-radius: 0 !important;
  border: none !important;
}

/* ============================================================
   D. 誰に贈る？— シーン選択
============================================================ */
.sc-for-whom {
  margin: 20px 20px 0;
  border: 1.5px solid var(--hni-border);
  border-radius: 4px;
  overflow: hidden;
}
.sc-for-whom-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  background: var(--hni-bg);
  border-bottom: 1px solid var(--hni-border);
  font-size: 12px;
  font-weight: 700;
  font-family: var(--hni-font);
  color: var(--hni-dark);
  letter-spacing: .04em;
}
.sc-for-whom-head::before {
  content: '';
  width: 3px;
  height: 14px;
  background: var(--sc);
  border-radius: 2px;
  flex-shrink: 0;
}

.sc-scene-btns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hni-border);
}
.sc-scene-btn {
  background: var(--hni-white);
  border: none;
  cursor: pointer;
  padding: 14px 8px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: background .15s;
  min-height: 80px;
  justify-content: center;
  font-family: var(--hni-font);
  -webkit-tap-highlight-color: rgba(0,0,0,.04);
}
.sc-scene-btn:hover { background: var(--sc-pale); }

/* グローバルの .hni-mood__btn.is-active とはセレクタが異なり競合しない
   念のため box-shadow: none を明示 */
.sc-scene-btn.is-active {
  background: var(--sc-pale);
  box-shadow: none;
}
.sc-scene-btn.is-active .sc-scene-btn-label {
  color: var(--sc-deep);
  font-weight: 700;
}

.sc-scene-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-family: var(--hni-font);
  background: var(--hni-bg);
  border: 1px solid var(--hni-border);
  flex-shrink: 0;
  transition: background .15s, border-color .15s;
}
.sc-scene-btn.is-active .sc-scene-icon {
  background: var(--sc-pale);
  border-color: var(--sc-border);
}
.sc-scene-btn-label {
  font-size: 11px;
  font-family: var(--hni-font);
  color: var(--hni-text);
  line-height: 1.4;
  text-align: center;
  font-weight: 500;
}
.sc-scene-btn-sub {
  font-size: 10px;
  font-family: var(--hni-font);
  color: var(--hni-text-sub);
  line-height: 1.3;
  text-align: center;
}

.sc-scene-panel {
  display: none;
  border-top: 1px solid var(--sc-border);
}
.sc-scene-panel.is-open { display: block; }

.sc-scene-panel-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--sc-pale);
  border-radius: 0;
}
/* ▼ グローバル img リセット上書き */
.sc-scene-panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  aspect-ratio: auto !important;
  border-radius: 0 !important;
  border: none !important;
}

.sc-scene-panel-body {
  padding: 14px 16px;
  background: var(--sc-pale);
  font-size: 13px;
  font-family: var(--hni-font);
  font-weight: 400;
  color: var(--hni-text);
  line-height: 1.9;
}
.sc-scene-panel-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--hni-font);
  color: var(--sc-deep);
  background: var(--hni-white);
  border: 1px solid var(--sc-border);
  padding: 1px 8px;
  border-radius: 2px;
  margin-bottom: 8px;
}

/* ============================================================
   E. 色の心理
============================================================ */
.sc-psych {
  margin: 20px 20px 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1.5px solid var(--hni-border);
}
.sc-psych-band {
  position: relative;
  overflow: hidden;
  height: 140px;
  background: var(--sc-deep);
}
/* ▼ グローバル img リセット上書き */
.sc-psych-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  aspect-ratio: auto !important;
  border-radius: 0 !important;
  border: none !important;
}
.sc-psych-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.32) 0%, rgba(0,0,0,.08) 100%);
  display: flex;
  align-items: center;
  padding-left: 20px;
}
.sc-psych-band-word {
  font-family: var(--hni-font);
  font-size: 11px;
  letter-spacing: .28em;
  color: rgba(255,255,255,.90);
  text-transform: uppercase;
  line-height: 2.2;
  position: relative;
  z-index: 2;
}
.sc-psych-body { background: var(--hni-white); }
.sc-psych-row {
  display: flex;
  gap: 10px;
  padding: 13px 16px;
  border-bottom: 1px solid #f5f5f5;
  align-items: flex-start;
}
.sc-psych-row:last-child { border-bottom: none; }
.sc-psych-role {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--hni-font);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--hni-text-sub);
  width: 52px;
  padding-top: 1px;
  line-height: 1.4;
  text-align: center;
}
.sc-psych-text {
  flex: 1;
  font-size: 13px;
  font-family: var(--hni-font);
  font-weight: 400;
  color: var(--hni-text);
  line-height: 1.85;
}

/* ============================================================
   F. 店主アドバイス
============================================================ */
.sc-owner {
  margin: 16px 20px 0;
  background: var(--hni-beige);
  border: 1px solid var(--hni-border);
  border-left: 3px solid var(--hni-gold);
  border-radius: 3px;
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.sc-owner-ava {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #e8dcc8;
  background: var(--hni-gold-bg);
}
/* ▼ グローバル img リセット上書き */
.sc-owner-ava img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: auto !important;
  border-radius: 0 !important;
  border: none !important;
}
.sc-owner-body { flex: 1; min-width: 0; }
.sc-owner-meta { display: flex; align-items: center; gap: 6px; margin-bottom: 5px; }
.sc-owner-label {
  font-size: 10px;
  font-weight: 700;
  font-family: var(--hni-font);
  letter-spacing: .1em;
  color: var(--hni-gold);
  text-transform: uppercase;
}
.sc-owner-name {
  font-size: 10px;
  font-family: var(--hni-font);
  color: #aaa;
}
.sc-owner-quote {
  font-family: var(--hni-font);
  font-size: 13px;
  font-weight: 400;
  color: var(--hni-text);
  line-height: 1.95;
}

/* ============================================================
   G. マナー ◎△✕
============================================================ */
.sc-manner { margin: 20px 20px 0; }
.sc-manner-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--hni-font);
  color: var(--hni-dark);
  letter-spacing: .04em;
}
.sc-manner-head::before {
  content: '';
  width: 3px;
  height: 14px;
  background: var(--hni-primary);
  border-radius: 2px;
  flex-shrink: 0;
}
.sc-manner-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sc-mc {
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}
.sc-mc-head {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 12px 12px 14px;
  flex-shrink: 0;
  width: 130px;
  border-right: 1px solid rgba(0,0,0,.06);
}
.sc-mc-mark {
  font-size: 18px;
  font-family: var(--hni-font);
  line-height: 1;
  flex-shrink: 0;
}
.sc-mc-label {
  font-size: 13px;
  font-weight: 700;
  font-family: var(--hni-font);
  letter-spacing: .02em;
  line-height: 1.4;
}
.sc-mc-text {
  font-size: 14px;
  font-family: var(--hni-font);
  font-weight: 400;
  color: var(--hni-text);
  line-height: 1.85;
  padding: 12px 14px;
  flex: 1;
}
.sc-mc--ok   { background: #f0faf5; }
.sc-mc--warn { background: var(--hni-gold-bg); }
.sc-mc--ng   { background: var(--sc-pale); }
.sc-mc--ok   .sc-mc-mark,
.sc-mc--ok   .sc-mc-label { color: #2a7d4f; }
.sc-mc--warn .sc-mc-mark,
.sc-mc--warn .sc-mc-label { color: var(--hni-gold-text); }
.sc-mc--ng   .sc-mc-mark,
.sc-mc--ng   .sc-mc-label { color: var(--sc); }

.sc-manner-toggle {
  width: 100%;
  margin-top: 8px;
  background: none;
  border: 1px solid var(--hni-border);
  border-radius: 3px;
  padding: 10px 14px;
  font-size: 12px;
  font-family: var(--hni-font);
  color: var(--hni-primary);
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  transition: background .15s;
  -webkit-tap-highlight-color: rgba(0,0,0,.04);
}
.sc-manner-toggle:hover { background: var(--hni-bg); }
.sc-manner-detail {
  display: none;
  margin-top: 4px;
  padding: 13px 14px;
  background: var(--hni-beige);
  border: 1px solid var(--hni-border);
  border-radius: 3px;
  font-size: 13px;
  font-family: var(--hni-font);
  font-weight: 400;
  color: var(--hni-text-sub);
  line-height: 1.9;
}
.sc-manner-detail.is-open { display: block; }

/* ============================================================
   H. 代替色カード
============================================================ */
.sc-alt { margin: 20px 20px 0; }
.sc-alt-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--hni-font);
  color: var(--hni-dark);
  letter-spacing: .04em;
}
.sc-alt-head::before {
  content: '';
  width: 3px;
  height: 14px;
  background: var(--hni-border);
  border-radius: 2px;
  flex-shrink: 0;
}
.sc-alt-grid { display: flex; flex-direction: column; gap: 6px; }
.sc-alt-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--hni-white);
  border: 1.5px solid var(--hni-border);
  border-radius: 3px;
  text-decoration: none;
  color: var(--hni-text);
  min-height: 56px;
  transition: border-color .18s, background .18s;
  -webkit-tap-highlight-color: rgba(0,0,0,.04);
}
.sc-alt-card:hover { border-color: var(--hni-primary); background: var(--hni-bg); }
.sc-alt-thumb {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.07);
  background: var(--hni-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* sc-colornav-dot をthumb全体に広げる */
.sc-alt-thumb .sc-colornav-dot {
  width: 44px;
  height: 44px;
  border-radius: 0;
  border: none;
  flex-shrink: 0;
}
/* ▼ グローバル img リセット上書き */
.sc-alt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: auto !important;
  border-radius: 0 !important;
  border: none !important;
}
.sc-alt-body { flex: 1; min-width: 0; }
.sc-alt-name {
  font-size: 13px;
  font-weight: 500;
  font-family: var(--hni-font);
  color: var(--hni-dark);
  margin-bottom: 2px;
}
.sc-alt-reason {
  font-size: 11px;
  font-family: var(--hni-font);
  color: var(--hni-text-sub);
  line-height: 1.5;
}
/* content: に HTML エンティティは使用不可。Unicode エスケープで記述 */
.sc-alt-card::after {
  content: '\203A';
  font-size: 18px;
  color: var(--hni-border);
  flex-shrink: 0;
  transition: transform .15s, color .15s;
}
.sc-alt-card:hover::after {
  color: var(--hni-primary);
  transform: translateX(3px);
}

/* ============================================================
   I. LINE CTA
============================================================ */
.sc-cta {
  margin: 20px 20px 0;
  background: var(--hni-bg);
  border: 1px solid var(--hni-border);
  border-radius: 4px;
  padding: 18px 16px;
  text-align: center;
}
.sc-cta-text {
  font-size: 13px;
  font-family: var(--hni-font);
  color: var(--hni-text-sub);
  line-height: 1.8;
  margin-bottom: 12px;
}
.sc-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--hni-primary);
  color: #fff;
  font-family: var(--hni-font);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 3px;
  text-decoration: none;
  min-height: 48px;
  transition: background .18s;
  -webkit-tap-highlight-color: rgba(0,0,0,.08);
}
.sc-cta-btn:hover { background: var(--hni-dark); }
.sc-cta-btn-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #06c755;
  flex-shrink: 0;
  display: inline-block;
}

/* ============================================================
   PC 補正（681px 以上）
============================================================ */
@media (min-width: 681px) {
  .sc-catch { padding: 24px 24px 20px; }
  .sc-for-whom { margin: 20px 24px 0; }
  .sc-psych    { margin: 20px 24px 0; }
  .sc-owner    { margin: 16px 24px 0; }
  .sc-manner   { margin: 20px 24px 0; }
  .sc-alt      { margin: 20px 24px 0; }
  .sc-cta      { margin: 20px 24px 0; }
  .sc-psych-band { height: 200px; }
  .sc-main-visual { aspect-ratio: 16 / 7; }
  .sc-scene-panel-img { aspect-ratio: 16 / 7; }
}
/* ============================================================
   花以想 — /c/item/item-blueflower 青い花特集ページ専用CSS
   追記先  : color.css 末尾
   prefix  : hni-bf-（Blue Flower feature）
   PARTS   : blueflower_lead_magazine.html
   作成日  : 2026-03

   カラー設計:
     --hni-bf-ink     #1e5fa0  深紺  … 大見出し・ダーク帯背景
     --hni-bf-blue    #4f9fd8  中青  … ラベル・ボーダー・アクセント
     --hni-bf-pale    #e6f4fc  淡青  … 背景・薄地
   ブランドグリーン（--hni-primary / --hni-dark）は
   LINE CTA・店主枠・関連リンクなどHanaimo共通コンポーネントで維持
============================================================ */


/* ============================================================
   ブルーカラー変数（このページ専用）
============================================================ */

.hni-bf-root {
  --hni-bf-ink:    #1e5fa0;
  --hni-bf-blue:   #4f9fd8;
  --hni-bf-pale:   #e6f4fc;
  --hni-bf-border: #9dd0ee;
}


/* ============================================================
   0. ルート・グローバルCSS衝突打ち消し
============================================================ */

.hni-bf-root img {
  aspect-ratio: auto !important;
  border-radius: 0 !important;
  border: none !important;
}

.hni-bf-root h2,
.hni-bf-root h3 {
  font-family: var(--hni-font) !important;
  border-bottom: none !important;
  border-left: none !important;
  padding-bottom: 0 !important;
  padding-left: 0 !important;
  margin: 0 !important;
  color: var(--hni-dark);
}

.hni-bf-root {
  max-width: 900px;
  margin: 0 auto 56px;
  padding: 0 16px;
  color: var(--hni-text);
  font-size: 15px;
  line-height: 1.9;
  box-sizing: border-box;
}


/* ============================================================
   A. ヒーロー
============================================================ */

.hni-bf-hero {
  display: grid;
  grid-template-columns: 1fr 42%;
  min-height: 440px;
  margin-bottom: 64px;
  overflow: hidden;
}
.hni-bf-hero__text {
  padding: 48px 40px 48px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hni-bf-hero__issue {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
/* ブルー: ラベルライン */
.hni-bf-hero__issue-line {
  width: 28px;
  height: 1px;
  background: var(--hni-bf-blue);
}
/* ブルー: "Flower Feature / Blue" ラベル */
.hni-bf-hero__issue-label {
  font-size: 10px;
  letter-spacing: .26em;
  color: var(--hni-bf-blue);
  text-transform: uppercase;
  font-weight: 700;
}
.hni-bf-hero h2 {
  font-size: clamp(24px, 3.6vw, 38px) !important;
  font-weight: 700 !important;
  line-height: 1.45 !important;
  color: var(--hni-bf-ink) !important;
  margin: 0 0 10px !important;
  letter-spacing: -.01em !important;
}
.hni-bf-hero h2 em {
  font-style: normal;
}
.hni-bf-hero__sub {
  font-size: 12px;
  color: var(--hni-text-sub);
  letter-spacing: .1em;
  margin: 0 0 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hni-border);
}
.hni-bf-hero__body {
  font-size: 14px;
  line-height: 2.0;
  color: var(--hni-text-sub);
  margin: 0 0 24px;
}
.hni-bf-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
/* ブルー: タグの文字・枠・背景 */
.hni-bf-hero__tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--hni-bf-blue);
  border: 1px solid var(--hni-bf-border);
  background: var(--hni-bf-pale);
  padding: 6px 12px;
  border-radius: 2px;
  letter-spacing: .04em;
}
.hni-bf-hero__img-wrap {
  position: relative;
  overflow: hidden;
}
.hni-bf-hero__img-wrap::before {
  content: "BLUE";
  position: absolute;
  bottom: -12px;
  right: -16px;
  font-size: 86px;
  font-weight: 900;
  color: rgba(255,255,255,.5);
  letter-spacing: -.04em;
  z-index: 2;
  pointer-events: none;
  line-height: 1;
  font-family: var(--hni-font) !important;
}
.hni-bf-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 680px) {
  .hni-bf-hero { grid-template-columns: 1fr; min-height: unset; }
  .hni-bf-hero__text { padding: 28px 0 20px; }
  .hni-bf-hero__img-wrap { height: 260px; margin: 0 -16px; order: -1; }
  /* スマホ: brを非表示にして自然な折り返しに委ねる */
  .hni-bf-hero h2 br { display: none; }
}


/* ============================================================
   セクション共通ヘッダー
============================================================ */

.hni-bf-sec-head { margin-bottom: 40px; }
.hni-bf-sec-head__row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
/* ブルー: 英語セクションラベル */
.hni-bf-sec-head__en {
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--hni-bf-blue);
  font-weight: 700;
  flex-shrink: 0;
}
.hni-bf-sec-head__rule {
  flex: 1;
  height: 1px;
  background: var(--hni-border);
}
.hni-bf-sec-head h2 {
  font-size: 20px !important;
  font-weight: 600 !important;
  color: var(--hni-bf-ink) !important;
  margin: 0 0 6px !important;
  line-height: 1.5 !important;
  letter-spacing: .05em !important;
}
.hni-bf-sec-head__cap {
  font-size: 13px;
  color: var(--hni-text-sub);
  margin: 0;
}


/* ============================================================
   B. 花の種類（雑誌見開き特集）
============================================================ */

.hni-bf-flowers-wrap { margin-bottom: 72px; }

.hni-bf-feature {
  display: grid;
  grid-template-columns: 58% 42%;
  align-items: stretch;
  margin-bottom: 48px;
}
.hni-bf-feature--flip { grid-template-columns: 42% 58%; }
.hni-bf-feature--flip .hni-bf-feature__img-col { order: 2; }
.hni-bf-feature--flip .hni-bf-feature__text-col {
  order: 1;
  padding: 44px 44px 44px 0;
}

.hni-bf-feature__img-col {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}
.hni-bf-feature__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.hni-bf-feature__img-col:hover .hni-bf-feature__img { transform: scale(1.03); }

.hni-bf-feature__caption {
  position: absolute;
  bottom: 10px;
  left: 12px;
  right: 12px;
  font-size: 10px;
  color: rgba(255,255,255,.75);
  letter-spacing: .12em;
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
}
/* ブルー: テキスト列の上アクセントボーダー */
.hni-bf-feature__text-col {
  padding: 44px 0 44px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  border-top: 3px solid var(--hni-bf-blue);
}

/* ブルー: 装飾連番（淡く） */
.hni-bf-feature__num {
  position: absolute;
  top: -12px;
  right: 0;
  font-size: 110px;
  font-weight: 900;
  line-height: 1;
  color: rgba(79,159,216,.09);
  pointer-events: none;
  user-select: none;
  letter-spacing: -.04em;
  z-index: 0;
  font-family: var(--hni-font) !important;
}
.hni-bf-feature--flip .hni-bf-feature__num { right: unset; left: 0; }

.hni-bf-feature__inner { position: relative; z-index: 1; }

/* ブルー: "Blue Flower No.01" ラベル */
.hni-bf-feature__index {
  font-size: 10px;
  letter-spacing: .22em;
  color: var(--hni-bf-blue);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hni-bf-feature__index::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--hni-bf-blue);
}
.hni-bf-feature h3 {
  font-size: 24px !important;
  font-weight: 700 !important;
  color: var(--hni-bf-ink) !important;
  line-height: 1.35 !important;
  margin: 0 0 4px !important;
}
.hni-bf-feature__yomi {
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--hni-text-sub);
  margin: 0 0 16px;
  display: block;
}
.hni-bf-feature__desc {
  font-size: 14px;
  line-height: 2.0;
  color: var(--hni-text);
  margin: 0 0 18px;
}
.hni-bf-feature__footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--hni-border);
}
/* ブルー: 開花期ラベル */
.hni-bf-feature__season {
  font-size: 11px;
  font-weight: 700;
  color: var(--hni-bf-blue);
  letter-spacing: .06em;
}
.hni-bf-feature__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--hni-border);
}
.hni-bf-feature__lang {
  font-size: 12px;
  color: var(--hni-text-sub);
  font-style: italic;
}
.hni-bf-feature-rule {
  border: none;
  border-top: 1px solid var(--hni-border);
  margin: 0 0 48px;
}
.hni-bf-flower-note {
  font-size: 12px;
  color: var(--hni-text-sub);
  padding: 14px 18px;
  background: var(--hni-bg);
  border-left: 3px solid var(--hni-border);
  line-height: 1.8;
  margin-top: -10px;
  margin-bottom: 16px;
}

@media (max-width: 680px) {
  .hni-bf-feature,
  .hni-bf-feature--flip { grid-template-columns: 1fr; }
  .hni-bf-feature__img-col { min-height: 240px; order: 0 !important; }
  .hni-bf-feature__text-col,
  .hni-bf-feature--flip .hni-bf-feature__text-col { padding: 24px 0; order: 1 !important; }
  .hni-bf-feature__num { font-size: 72px; }
}


/* ============================================================
   プルクォート
   ブルー: 深紺（--hni-bf-ink）背景に変更
   金アンダーライン付き帰属表示はそのまま維持
============================================================ */

.hni-bf-pullquote {
  margin: 0 0 64px;
  padding: 44px 40px;
  background: var(--hni-bf-ink);
  position: relative;
  overflow: hidden;
}
.hni-bf-pullquote::before {
  content: "\201C";
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 160px;
  line-height: 1;
  color: rgba(255,255,255,.06);
  font-family: Georgia, serif;
  pointer-events: none;
}
.hni-bf-pullquote__text {
  font-family: var(--hni-font-serif) !important;
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.85;
  letter-spacing: .06em;
  color: rgba(255,255,255,.92);
  margin: 0 0 18px;
  position: relative;
  z-index: 1;
}
.hni-bf-pullquote__attr {
  font-family: var(--hni-font) !important;
  font-size: 11px;
  letter-spacing: .2em;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hni-bf-pullquote__attr::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--hni-gold);
}

@media (max-width: 480px) {
  .hni-bf-pullquote { padding: 32px 22px; }
}


/* ============================================================
   C. 意味・花言葉（2×2グリッド）
============================================================ */

.hni-bf-meanings { margin-bottom: 64px; }
.hni-bf-meaning-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--hni-border);
  border: 1px solid var(--hni-border);
}
.hni-bf-meaning-item {
  background: var(--hni-white);
  padding: 26px 24px;
  position: relative;
}
/* ブルー: 装飾数字 */
.hni-bf-meaning-item__n {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  color: rgba(79,159,216,.09);
  pointer-events: none;
  user-select: none;
  font-family: var(--hni-font) !important;
}
.hni-bf-meaning-item h3 {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: var(--hni-dark) !important;
  margin: 0 0 3px !important;
  position: relative;
  z-index: 1;
}
/* ブルー: "Sincerity" などの英語キーワード */
.hni-bf-meaning-item__kw {
  font-size: 10px;
  letter-spacing: .22em;
  color: var(--hni-bf-blue);
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 12px;
  display: block;
}
.hni-bf-meaning-item__desc {
  font-size: 13px;
  color: var(--hni-text);
  line-height: 1.85;
  margin: 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 540px) {
  .hni-bf-meaning-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   D. 色彩心理 — リデザイン
   白地 + 淡青背景 + 左ボーダーアクセント
============================================================ */

.hni-bf-psych {
  background: var(--hni-white);
  padding: 0;
  margin-bottom: 64px;
}
.hni-bf-psych .hni-bf-sec-head__en  { color: var(--hni-bf-blue); }
.hni-bf-psych .hni-bf-sec-head__rule { background: var(--hni-border); }
.hni-bf-psych .hni-bf-sec-head h2   { color: var(--hni-bf-ink) !important; }
.hni-bf-psych .hni-bf-sec-head__cap { color: var(--hni-text-sub); }

.hni-bf-psych-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
/* カード: 横並び（アイコン + テキスト）/ 左ボーダーアクセント */
.hni-bf-psych-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 22px 22px 20px;
  background: var(--hni-bf-pale);
  border: 1px solid var(--hni-bf-border);
  border-left: 3px solid var(--hni-bf-blue);
  border-radius: 0 3px 3px 0;
}
.hni-bf-psych-card__icon {
  display: none;
}
.hni-bf-psych-card__body { flex: 1; }
.hni-bf-psych-card h3 {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: var(--hni-bf-blue) !important;
  margin: 0 0 8px !important;
  line-height: 1.55 !important;
}
.hni-bf-psych-card__desc {
  font-size: 13px;
  color: var(--hni-text);
  line-height: 1.85;
  margin: 0;
}

@media (max-width: 540px) {
  .hni-bf-psych { padding: 0; }
  .hni-bf-psych-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   E. シーン別（3カード）
   ブルー: カード上ボーダー・オーバーレイグラデーション
============================================================ */

.hni-bf-scenes-wrap { margin-bottom: 64px; }
/* シーン見出し上のコンテキストタグ */
.hni-bf-scene-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.hni-bf-scene-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
/* ブルー: カード上ボーダー */
.hni-bf-scene-card {
  background: var(--hni-white);
  border: 1px solid var(--hni-border);
  border-top: 3px solid var(--hni-bf-blue);
  border-radius: 3px;
  overflow: hidden;
}
.hni-bf-scene-card__img-wrap {
  height: 180px;
  overflow: hidden;
  background: var(--hni-bg);
  position: relative;
}
.hni-bf-scene-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.hni-bf-scene-card:hover .hni-bf-scene-card__img { transform: scale(1.04); }
/* ブルー: 画像下オーバーレイ */
.hni-bf-scene-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 12px;
  background: linear-gradient(transparent, rgba(28,61,114,.7));
}
.hni-bf-scene-card__tag {
  font-size: 9px;
  letter-spacing: .24em;
  color: rgba(255,255,255,.8);
  text-transform: uppercase;
  font-weight: 700;
}
.hni-bf-scene-card__body { padding: 18px 16px 20px; }
.hni-bf-scene-card h3 {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: var(--hni-dark) !important;
  margin: 0 0 10px !important;
  line-height: 1.55 !important;
}
.hni-bf-scene-card__desc {
  font-size: 12px;
  color: var(--hni-text-sub);
  line-height: 1.85;
  margin: 0 0 12px;
}
/* ブルー: おすすめヒント */
.hni-bf-scene-card__hint {
  font-size: 11px;
  color: var(--hni-bf-blue);
  font-weight: 700;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 5px;
}
.hni-bf-scene-card__hint::before { content: "—"; font-weight: 300; }

@media (max-width: 640px) {
  .hni-bf-scene-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   F. 店主コメント
   Hanaimoブランド要素 → グリーンを維持
============================================================ */

.hni-bf-owner-wrap {
  margin-bottom: 64px;
  background: var(--hni-beige);
  border: 1px solid var(--hni-border);
  border-left: 4px solid var(--hni-primary);
  border-radius: 0 3px 3px 0;
  padding: 36px 32px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  align-items: flex-start;
}
.hni-bf-owner-wrap__portrait {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid var(--hni-primary);
}
.hni-bf-owner-wrap__label {
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--hni-primary);
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 4px;
}
.hni-bf-owner-wrap h3 {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: var(--hni-dark) !important;
  margin: 0 0 14px !important;
  letter-spacing: .05em !important;
}
.hni-bf-owner-wrap__quote {
  font-family: var(--hni-font-serif) !important;
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  line-height: 2.0;
  color: var(--hni-text);
  margin: 0;
  padding-left: 16px;
  border-left: 2px solid var(--hni-border);
}

@media (max-width: 480px) {
  .hni-bf-owner-wrap { grid-template-columns: 1fr; padding: 24px 20px; text-align: center; }
  .hni-bf-owner-wrap__portrait { margin: 0 auto; }
  .hni-bf-owner-wrap__quote { text-align: left; }
}


/* ============================================================
   G. インディゴページへの誘導リンク
   Hanaimoブランド要素 → グリーンを維持
============================================================ */

.hni-bf-related {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  background: var(--hni-bg);
  border: 1px solid var(--hni-border);
  border-left: 3px solid var(--hni-primary);
  border-radius: 0 3px 3px 0;
  text-decoration: none;
  color: inherit;
  margin-bottom: 64px;
  transition: border-color .2s, box-shadow .2s;
}
.hni-bf-related:hover {
  border-color: var(--hni-primary);
  box-shadow: 0 2px 14px rgba(1,94,83,.12);
}
.hni-bf-related__swatch {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  display: block;
  border-radius: 6px;
  object-fit: cover;
}
.hni-bf-related__sup {
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--hni-text-sub);
  text-transform: uppercase;
  margin: 0 0 3px;
}
.hni-bf-related__title {
  font-family: var(--hni-font) !important;
  font-size: 15px;
  font-weight: 700;
  color: var(--hni-dark);
  margin: 0 0 3px;
}
.hni-bf-related__desc {
  font-size: 12px;
  color: var(--hni-text-sub);
  margin: 0;
}
.hni-bf-related__arrow {
  font-size: 20px;
  color: var(--hni-primary);
  line-height: 1;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .hni-bf-related { grid-template-columns: 48px 1fr; }
  .hni-bf-related__arrow { display: none; }
}


/* ============================================================
   H. LINE CTA
   Hanaimoブランド要素 → グリーンを維持
============================================================ */

.hni-bf-cta {
  background: var(--hni-bg);
  border: 1px solid var(--hni-border);
  border-top: 3px solid var(--hni-primary);
  border-radius: 3px;
  padding: 40px 28px;
  text-align: center;
  margin-bottom: 16px;
}
.hni-bf-cta__label {
  font-size: 10px;
  letter-spacing: .26em;
  color: var(--hni-primary);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}
.hni-bf-cta h2 {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--hni-dark) !important;
  margin: 0 0 12px !important;
  line-height: 1.55 !important;
  letter-spacing: .04em !important;
}
.hni-bf-cta__body {
  font-size: 14px;
  color: var(--hni-text-sub);
  line-height: 1.9;
  margin: 0 0 24px;
}
.hni-bf-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--hni-line);
  color: #fff;
  font-family: var(--hni-font) !important;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  padding: 0 36px;
  height: 52px;
  min-width: 240px;
  border-radius: 3px;
  letter-spacing: .04em;
  transition: opacity .2s;
}
.hni-bf-cta__btn:hover { opacity: .85; }
.hni-bf-cta__note {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  color: var(--hni-text-sub);
}