/* feature.html — 特集詳細 固有スタイル */

/* 大判ヒーロー */
.feature-hero { position: relative; height: 460px; overflow: hidden; }
.feature-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.feature-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.30) 55%, rgba(0,0,0,.55) 100%);
  z-index: 1;
}
.feature-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  height: 100%;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 56px;
  color: #fff;
}
.feature-hero-breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,.8); }
.feature-hero-breadcrumb a:hover { color: #fff; text-decoration: underline; }
.feature-hero-breadcrumb .sep { color: rgba(255,255,255,.5); }
.feature-hero-tagline {
  font-family: 'Caveat', cursive;
  font-weight: 600;
  font-size: 30px;
  color: #fff;
  transform: rotate(-2deg);
  transform-origin: left;
  margin-top: 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.feature-hero-title {
  font-family: 'Zen Old Mincho', serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 1.25;
  letter-spacing: .02em;
  margin-top: 6px;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}
.feature-hero-meta { font-size: 12.5px; color: rgba(255,255,255,.85); margin-top: 18px; display: flex; gap: 16px; }

/* 本文 */
.feature-article { padding: 64px 0 72px; }
.feature-lead { font-size: 16px; line-height: 2.1; color: #333; max-width: 820px; margin-bottom: 8px; }

/* 本文内の画像ブロック */
.article-figure { margin: 36px 0; border-radius: 14px; overflow: hidden; box-shadow: var(--card-shadow); }
.article-figure img { width: 100%; height: auto; display: block; }
.article-figure .ph { height: 340px; border-radius: 14px; }
.article-figcaption { font-size: 12px; color: #9a9a92; margin-top: 10px; padding: 0 2px; }

/* 関連商品見出し */
.feature-products { border-top: 1px solid #ededea; padding-top: 56px; margin-top: 56px; }

@media (max-width: 760px) {
  .feature-hero { height: 360px; }
  .feature-hero-title { font-size: 34px; }
  .feature-hero-tagline { font-size: 24px; }
  .article-figure .ph { height: 220px; }
}
