/* ============================
   Magazine Taste (addon)
   - keep existing layout, add "editorial" vibe
   ============================ */

:root{
  --paper:#fbfcff;
  --paper2:#f4f7fc;
  --rule:rgba(11,42,85,.12);
  --ink2:rgba(11,42,85,.86);
}

/* 背景を“紙”に寄せる */
body{
  background:
    radial-gradient(1200px 500px at 20% -10%, rgba(11,42,85,.06), transparent 60%),
    radial-gradient(900px 420px at 90% 10%, rgba(11,42,85,.05), transparent 55%),
    var(--bg);
}

/* 全体を少し“紙面”っぽく */
.panel{
  background: linear-gradient(180deg, var(--paper), #fff 60%);
  border-color: rgba(11,42,85,.10);
}

/* ===== Cover Hero（表紙感）===== */
.feature-hero{
  padding: 64px 0 30px;
}
.feature-hero .container{
  position: relative;
}
.feature-hero .kicker{
  font-weight: 900;
  color: rgba(11,42,85,.55);
}
.feature-hero h1{
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: .02em;
}
.feature-hero .lead{
  max-width: 820px;
  font-size: 15px;
}

/* タイトル下に“ルール線”＋号数っぽい装飾 */
.mag-rule{
  margin-top: 14px;
  display:flex;
  gap:12px;
  align-items:center;
  color: rgba(11,42,85,.55);
  font-size: 12px;
  letter-spacing: .08em;
}
.mag-rule:before, .mag-rule:after{
  content:"";
  height:1px;
  background: var(--rule);
  flex:1;
}

/* ===== Editorial body（雑誌の本文っぽさ）===== */
.sec h2{
  position: relative;
  padding-left: 10px;
}
.sec h2:before{
  content:"";
  position:absolute;
  left:0;
  top:.35em;
  width:3px;
  height:1.1em;
  border-radius: 2px;
  background: rgba(11,42,85,.26);
}

/* 段落の行間を少し紙寄りに＋字面を締める */
.sec p{
  color: var(--ink2);
  letter-spacing: .01em;
}

/* ドロップキャップ（冒頭の“雑誌感”） */
.dropcap:first-letter{
  float:left;
  font-weight: 900;
  font-size: 42px;
  line-height: 1;
  margin: 4px 10px 0 0;
  color: var(--ink);
}

/* 引用（雑誌の“抜き”） */
.pullquote{
  margin: 14px 0 6px;
  padding: 14px 14px;
  border-left: 4px solid rgba(11,42,85,.22);
  background: rgba(11,42,85,.03);
  border-radius: 14px;
  color: rgba(11,42,85,.86);
  font-weight: 900;
  line-height: 1.7;
}
.pullquote small{
  display:block;
  margin-top: 6px;
  font-weight: 700;
  color: rgba(11,42,85,.55);
}

/* ===== TOC（目次）===== */
.toc{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}
.toc a{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(11,42,85,.10);
  background: rgba(255,255,255,.75);
  text-decoration:none;
  color: var(--ink);
}
.toc .n{
  flex:0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  font-size: 12px;
  font-weight: 900;
  background: rgba(11,42,85,.06);
  border: 1px solid rgba(11,42,85,.12);
  color: rgba(11,42,85,.78);
}
.toc .t{
  min-width:0;
  font-weight: 900;
  font-size: 13px;
  line-height: 1.45;
}
.toc .d{
  display:block;
  margin-top: 2px;
  font-size: 12px;
  color: rgba(11,42,85,.55);
  line-height: 1.6;
}

/* ===== 記事カードを“特集記事”風に ===== */
.article-card{
  border-radius: 18px;
  border-color: rgba(11,42,85,.10);
  background: linear-gradient(180deg, #fff, rgba(255,255,255,.86));
}
.article-kicker{
  letter-spacing: .10em;
  text-transform: uppercase;
}
.article-title{
  font-size: 15px;
}
.article-cta{
  opacity: .75;
}

/* サイドの関連特集を“別冊告知”っぽく */
.rel-list a{
  background: linear-gradient(180deg, #fff, rgba(255,255,255,.82));
}

/* モバイル：目次を1列に */
@media (max-width: 980px){
  .feature-hero{ padding: 46px 0 22px; }
  .feature-hero h1{ font-size: 26px; }
  .toc{ grid-template-columns: 1fr; }
}

/* ============================
   Cover Image (Magazine Style)
   ============================ */

.feature-hero{
  position: relative;
  overflow: hidden;
}

/* 薄く敷く表紙画像 */
.feature-cover{
  position:absolute;
  inset: -10% -10% auto -10%;
  height: 140%;
  background-image: url("/assets/img/feature/experience-cover.webp");
  background-size: cover;
  background-position: center;
  filter: saturate(.9) contrast(.95);
  opacity: .12; /* ← 雑誌感の肝 */
  z-index: 0;
}

/* 文字は必ず前面に */
.feature-hero .container{
  position: relative;
  z-index: 1;
}

/* ============================
   Article Number (01 / 02 ...)
   ============================ */

.article-card{
  position: relative;
}

.article-no{
  position:absolute;
  top: 10px;
  right: 12px;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: .04em;
  color: rgba(11,42,85,.18);
  line-height: 1;
  pointer-events:none;
}

/* ============================
   Wacha Wacha (Editorial Noise)
   ============================ */

/* panelの中にステッカー置けるように */
.panel{ position: relative; overflow: hidden; }

/* ステッカー共通 */
.sticker{
  position:absolute;
  z-index: 2;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(11,42,85,.16);
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 24px rgba(11,42,85,.10);
  font-size: 12px;
  font-weight: 900;
  color: rgba(11,42,85,.86);
  letter-spacing: .02em;
}
.sticker .tag{
  display:inline-flex;
  align-items:center;
  height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(11,42,85,.14);
  background: rgba(11,42,85,.04);
  font-size: 11px;
  letter-spacing: .06em;
}
.sticker.is-hot .tag{ background: rgba(255,60,120,.10); border-color: rgba(255,60,120,.25); }
.sticker.is-note .tag{ background: rgba(30,180,255,.10); border-color: rgba(30,180,255,.25); }
.sticker.is-guide .tag{ background: rgba(210,220,60,.18); border-color: rgba(210,220,60,.30); }

/* ちょい傾けると“誌面の貼り物感”出る */
.sticker.tilt1{ transform: rotate(-1.3deg); }
.sticker.tilt2{ transform: rotate(1.1deg); }
.sticker.tilt3{ transform: rotate(-0.8deg); }

/* 配置用ユーティリティ */
.sticker.p1{ top: 12px; right: 14px; }
.sticker.p2{ top: 12px; left: 14px; }
.sticker.p3{ bottom: 12px; right: 14px; }

/* モバイルは邪魔になりやすいので薄く */
@media (max-width: 980px){
  .sticker{ opacity: .86; transform: none; }
}


/* 紙面ノイズ（画像なしでOK） */
.feature-shell{
  background:
    radial-gradient(500px 180px at 15% 30%, rgba(11,42,85,.05), transparent 65%),
    radial-gradient(420px 200px at 85% 20%, rgba(11,42,85,.04), transparent 62%),
    radial-gradient(520px 240px at 70% 85%, rgba(255,60,120,.05), transparent 70%);
}

/* マーカー線っぽい装飾（見出し下） */
.sec h2{
  background:
    linear-gradient(transparent 60%, rgba(210,220,60,.25) 60% 92%, transparent 92%);
  display:inline;
  padding: 0 .12em;
}


/* カードに薄い“紙の反射” */
.article-card{
  overflow: hidden;
}
.article-card:before{
  content:"";
  position:absolute;
  inset:-40% -30% auto -30%;
  height: 120%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
  transform: rotate(-12deg);
  opacity: .25;
}

/* 連番を“誌面番号”っぽく少し主張 */
.article-no{
  mix-blend-mode: multiply;
  opacity: .65;
}