/* SNOTRA SELECT｜HAIR DRYER — ページ固有スタイル
   共通スタイル（トークン・header・footer・editorial-visual等）は
   site/assets/css/base.css を参照。ここでは本ページ固有の要素のみ定義する。 */

/* ---- Header（本ページ限定の余白調整。このファイルはDRYERページでしか読み込まれない
   ため、他ページのheader余白には影響しない） ---- */
header.site-header {
  padding-block: 18px 4px;
}

/* ---- Hero ----
   2026-09-18 DRYER HERO再々修正：CEO確認の結果、「人物のUPが大きすぎて視覚重量が
   REFERENCEより重い」と指摘を受けた。原因は前回のobject-fit:cover（横長3:2窓で
   顔〜髪の帯を拡大表示）にあり、列比率の問題ではなかった。今回はobject-fit:contain
   へ変更し、478×479の原画像を「クロップ・拡大せず全体表示」する方式に切り替えた
   （周囲の余白はコンテナ背景色で自然に馴染ませ、Editorial誌面の余白として見せる）。
   これにより人物は原寸相当（むしろ僅かに縮小表示）になり、「引いて見える」を実現。
   列比率も40:60固定から45:55前後へ変更し、見出し「髪を乾かすだけで、終わらせない。」
   がより1行に近い幅で収まるようにした。 */
.hero-section {
  border-top: none;
  padding-block: 10px 4px;
}
.hero-section h1 {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 4.2vw, 1.7rem);
  line-height: 1.4;
  text-wrap: balance;
  margin: 8px 0 10px;
}
.hero-section p.lede {
  color: var(--snotra-text-soft);
  font-size: 0.92rem;
  margin: 0;
}

/* 左45%／右55%を起点に、見出しの折返し・REFERENCEとの視覚バランスを見て調整。
   左右分離して見えないよう、コピーは画像と縦方向中央で揃える。
   880px未満はコピー→横長画像の自然な縦積みにする。 */
.dryer-hero-grid {
  align-items: center;
}
@media (min-width: 880px) {
  .dryer-hero-grid {
    grid-template-columns: 9fr 11fr;
    gap: 36px;
  }
}
.dryer-hero-copy .hero-rule {
  margin: 18px 0 0;
}

/* 女性ビジュアル：正方形の原画像（478×479）をクロップ・拡大せず全体表示する
   （object-fit:contain）。コンテナは横長だが、画像はその中で原寸相当に収まり、
   左右に生まれる余白はコンテナ背景色（ページ背景と同色）に馴染ませている。
   角丸も弱め、「カード」ではなくEditorial photoとして扱う。
   画像ファイル自体・保存先は変更していない。 */
.dryer-hero-visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  margin: 0;
  background: var(--snotra-bg);
}
.dryer-hero-visual .editorial-visual-img {
  object-fit: contain;
  object-position: center center;
}

/* ---- Why this pair ---- */
#why-section {
  padding-block: 22px;
}
.why-copy {
  font-size: 0.92rem;
  color: var(--snotra-text-soft);
  margin: 0;
}

/* ---- Choice guide ---- */
.conclusion-cards {
  display: grid;
  gap: 12px;
}
.conclusion-card {
  background: var(--snotra-bg-alt);
  border: 1px solid var(--snotra-line);
  border-left: 3px solid var(--snotra-gold);
  border-radius: var(--snotra-radius);
  box-shadow: var(--snotra-card-shadow);
  padding: 18px 20px;
}
.conclusion-name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
}
.conclusion-reason {
  margin: 0 0 10px;
  font-size: 0.9rem;
  color: var(--snotra-text-soft);
}
.conclusion-jump {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--snotra-text);
  text-decoration: none;
}

/* ---- Comparison table ---- */
.compare-scroll {
  overflow-x: auto;
  border: 1px solid var(--snotra-line);
  border-radius: var(--snotra-radius);
  background: var(--snotra-bg-alt);
}
table.compare {
  border-collapse: collapse;
  width: 100%;
  min-width: 480px;
  font-size: 0.86rem;
}
table.compare th, table.compare td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--snotra-line);
  vertical-align: top;
}
table.compare thead th {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  background: var(--snotra-bg);
  white-space: nowrap;
}
table.compare tbody tr:last-child td { border-bottom: none; }

/* ---- Product cards ---- */
.products {
  display: grid;
  gap: 18px;
}
.product-card {
  background: var(--snotra-bg-alt);
  border: 1px solid var(--snotra-line);
  border-radius: var(--snotra-radius);
  box-shadow: var(--snotra-card-shadow);
  padding: 20px;
}
.product-card .product-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--snotra-bg);
  border-radius: 10px;
  margin-bottom: 14px;
}
.product-card .product-name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
}
.product-card .seller-label {
  font-size: 0.78rem;
  color: var(--snotra-text-soft);
  margin: 6px 0 14px;
}
.product-card h4 {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--snotra-gold);
  margin: 14px 0 4px;
}
.product-card ul, .spec-list {
  margin: 0;
  padding-left: 1.1em;
  font-size: 0.88rem;
}
.spec-list {
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: 4px;
}

/* ---- Final choice ---- */
.final-choice-cards {
  display: grid;
  gap: 16px;
}
.final-choice-card {
  background: var(--snotra-bg-alt);
  border: 1px solid var(--snotra-line);
  border-radius: var(--snotra-radius);
  box-shadow: var(--snotra-card-shadow);
  padding: 18px;
  text-align: center;
}
.final-choice-image {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--snotra-bg);
  border-radius: 10px;
  margin: 0 auto 12px;
}
.final-choice-name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.final-choice-price {
  color: var(--snotra-text-soft);
  font-size: 0.85rem;
  margin-bottom: 14px;
}

@media (min-width: 640px) {
  .products { grid-template-columns: 1fr; }
  .conclusion-cards { grid-template-columns: 1fr 1fr; }
  .final-choice-cards { grid-template-columns: 1fr 1fr; }
}
