@charset "UTF-8";
/* ============================================================
   サケナリ｜SAKENARI — 日本酒インタビューメディア
   共通スタイル（index / interviews / interview-0X で読み込む）
   アイキャッチのビジュアル言語（和紙地 + 筆の掃き + 名前プレート）を
   そのままサイト全体のトーンに広げている。
============================================================ */

:root {
  --washi:   #F6F3EA;
  --washi-2: #EFE9DA;
  --paper:   #FFFDF8;
  --ink:     #1B1A16;
  --ink-2:   #4B473F;
  --muted:   #7C7669;
  --line:    #E2DACA;
  --line-2:  #CFC5AF;
  /* メインカラー：サウナイキタイ／R25 business 系の視認性の高い青 */
  --blue:      #0051E0;
  --blue-d:    #0040B4;
  --blue-l:    #006DEE;
  --blue-pale: #EDF3FF;
  --navy:      #0F1F38;  /* フッターなどの地色 */

  /* 角丸（全体をやわらかく見せる） */
  --r-xs: 5px;
  --r-sm: 8px;
  --r:    12px;
  --r-lg: 18px;

  --green:   #2F5233;  /* INTERVIEW 01 のアイキャッチ色 */
  --green-d: #223D25;
  --gold:    #A8823C;
  --crimson: #A32449;
  --navy-ec: #1D3A66;  /* INTERVIEW 03 のアイキャッチ色 */

  /* 記事ごとに上書きするアクセント */
  --acc:  var(--green);
  --pale: #E6EAD9;

  /* 本文・見出し：Zen Kaku Gothic New（Google Fonts / SIL OFL）
     引用・由来など：Zen Old Mincho（同上）。有償フォントは使わない */
  --font-sans:  "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif;
  --font-serif: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;

  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--washi);
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; min-width: 320px; min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  /* 和紙のざらつき。外部画像を使わずSVGノイズで出す */
  background-color: var(--washi);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
:focus-visible { outline: 2px solid var(--acc); outline-offset: 3px; }

.mincho { font-family: var(--font-serif); }
.wrap { width: min(100%, 1180px); margin-inline: auto; padding-inline: clamp(20px, 5vw, 48px); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ============================================================
   HEADER
============================================================ */
.hd {
  position: sticky; top: 0; z-index: 40;
  background: rgba(246,243,234,.94);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.hd-in { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 74px; }
.logo { display: block; line-height: 1; color: var(--blue); }
.logo b { display: block; font: 900 clamp(21px, 2.1vw, 27px)/1 var(--font-sans); letter-spacing: .1em; }
.logo span { display: block; margin-top: 7px; font: 600 9px/1 var(--font-sans); letter-spacing: .42em; color: var(--gold); }
.hd-nav { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 32px); font-size: 14px; font-weight: 500; }
.hd-nav a { padding: 6px 0; border-bottom: 1px solid transparent; white-space: nowrap; }
.hd-nav a:hover { color: var(--blue); border-color: var(--blue); }
.hd-nav .btn-sm { padding: 11px 20px; background: var(--blue); color: #fff; border: 0; border-radius: 999px; }
.hd-nav .btn-sm:hover { background: var(--blue-d); color: #fff; }
.hd-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line-2); background: transparent; border-radius: var(--r-sm); position: relative; cursor: pointer; }
.hd-toggle span { position: absolute; left: 12px; width: 20px; height: 1.5px; background: var(--ink); transition: .2s; }
.hd-toggle span:nth-child(1) { top: 17px; }
.hd-toggle span:nth-child(2) { bottom: 17px; }

/* ============================================================
   アイキャッチ（16:9）
   写真版は <img>、未撮影の回は .ec でCSSだけで同じ意匠を組む
============================================================ */
.ec { position: relative; container-type: inline-size; aspect-ratio: 16 / 9; overflow: hidden; border-radius: var(--r); background: var(--pale); isolation: isolate; }
.ec img { width: 100%; height: 100%; object-fit: cover; }

/* 筆で掃いたような斜めのアクセント。clip-path を少しだけ揺らして筆先に見せる */
.ec-art::before, .ec-art::after { content: ""; position: absolute; inset: 0; pointer-events: none; }
.ec-art::before {
  background: var(--acc); opacity: .11;
  clip-path: polygon(60% 0, 100% 0, 100% 100%, 44% 100%);
}
.ec-art::after {
  background: var(--acc); opacity: .5;
  clip-path: polygon(60% 0, 61.2% 0, 45.2% 100%, 44% 100%);
}
.ec-art {
  display: grid; grid-template-columns: 1fr; align-content: center; gap: 0;
  /* 1つの font-size を基準に em で組み、カード幅が変わっても比率が崩れないようにする */
  font-size: 3.3cqw;
  padding: 5.6% 6% 5.6% 5.6%;
  background:
    radial-gradient(120% 90% at 8% 12%, rgba(255,255,255,.55), transparent 60%),
    var(--pale);
}
.ec-art > * { position: relative; z-index: 2; max-width: 48%; }
.ec-brand { margin: 0 0 .72em; color: var(--acc); line-height: 1; }
.ec-brand b { display: block; font: 900 1em/1 var(--font-sans); letter-spacing: .1em; }
.ec-brand i { display: block; margin-top: .5em; font: 600 .4em/1 var(--font-sans); letter-spacing: .4em; font-style: normal; }
.ec-no { display: inline-block; margin: 0 0 .72em; padding: .42em .95em; background: var(--acc); color: #fff; font: 600 .55em/1 var(--font-sans); letter-spacing: .2em; }
.ec-title { margin: 0 0 .72em; color: var(--acc); font: 700 1.3em/1.32 var(--font-sans); letter-spacing: .01em; }
.ec-mark { display: none; }
.ec-name { display: inline-block; margin: 0 0 .5em; padding: .42em 1em; background: var(--acc); color: #fff; text-align: center; }
.ec-name span { display: block; font: 500 .5em/1.3 var(--font-sans); letter-spacing: .12em; padding-bottom: .55em; border-bottom: 1px dotted rgba(255,255,255,.6); }
.ec-name b { display: block; padding-top: .5em; font: 700 .95em/1 var(--font-sans); letter-spacing: .09em; }
.ec-name b i { font: 500 .58em/1 var(--font-sans); font-style: normal; letter-spacing: .04em; }
.ec-tag { margin: 0; color: var(--acc); font: 500 .64em/1.5 var(--font-sans); letter-spacing: .04em; }

/* ============================================================
   記事カード（枠で囲わず、縦罫で仕切るリスト型）
   余白を詰めて一覧性を優先している
============================================================ */
.grid-wrap { overflow: hidden; }
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(288px, 1fr));
  gap: clamp(30px, 3.4vw, 44px) 0;
  /* 右端の縦罫を親の overflow で切り、左端は本文位置に揃える */
  margin: 0 -1px 0 calc(var(--cell-pad) * -1);
  --cell-pad: clamp(16px, 1.7vw, 26px);
}
.card {
  position: relative; container-type: inline-size; display: flex; flex-direction: column;
  padding: 0 var(--cell-pad) 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: opacity .2s ease;
}
.card .ec { border: 1px solid var(--line); }
.card .ec img { transition: transform .45s ease; }
.card:hover .ec img { transform: scale(1.045); }
.card:hover .card-title a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
/* タイトルのリンクをカード全面に広げる（a の入れ子を避けつつカードごと押せるように） */
.card-title a.stretched::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.card-body { padding: 14px 0 0; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.card-cat { margin: 0; color: var(--blue); font-size: 12.5px; font-weight: 700; letter-spacing: .06em; }
.card-title { margin: 0; font: 700 clamp(16px, 1.35vw, 19px)/1.62 var(--font-sans); color: var(--ink); }
.card-title a { color: inherit; transition: color .2s; }
.card-tags { margin: 4px 0 0; display: flex; flex-wrap: wrap; gap: 6px; }
.card-tags a { position: relative; z-index: 2; padding: 5px 12px; background: var(--blue-pale); color: var(--blue-d); border-radius: 999px; font-size: 11.5px; font-weight: 600; letter-spacing: .02em; transition: .16s; }
.card-tags a:hover { background: var(--blue); color: #fff; }
.card-date { position: relative; z-index: 2; margin: auto 0 0; padding-top: 12px; font-size: 12px; color: var(--muted); letter-spacing: .06em; }
.card--soon { opacity: .95; }
.card--soon .card-title { color: var(--ink-2); }

/* 画像の左上に出すバッジ（NEW / 近日公開） */
.flag { position: absolute; top: 12px; right: 12px; z-index: 3; padding: 6px 12px; border-radius: 999px; background: var(--blue); box-shadow: 0 6px 14px -8px rgba(0,0,0,.5); }
.flag em { font: 700 11px/1 var(--font-sans); letter-spacing: .08em; color: #fff; font-style: normal; }
.flag--soon { background: rgba(27,26,22,.86); }
.flag--soon em { font-size: 10.5px; }

@media (max-width: 620px) {
  .grid { --cell-pad: 0px; margin: 0; gap: 30px 0; }
  .card { border-right: 0; padding-inline: 0; }
}

/* ============================================================
   セクションの体裁
============================================================ */
.sec { padding: clamp(64px, 8vw, 108px) 0; }
.sec--paper { background: var(--paper); border-block: 1px solid var(--line); }
.sec-hd { margin: 0 0 clamp(30px, 4vw, 48px); display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.sec-hd p { margin: 0 0 12px; color: var(--blue); font-size: 11px; font-weight: 700; letter-spacing: .3em; }
.sec-hd h2 { margin: 0; font: 700 clamp(24px, 3.1vw, 38px)/1.45 var(--font-sans); letter-spacing: .02em; }
.more { display: inline-flex; align-items: center; gap: 10px; padding-bottom: 6px; border-bottom: 1px solid var(--ink); font-size: 13.5px; font-weight: 600; white-space: nowrap; }
.more:hover { color: var(--blue); border-color: var(--blue); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 22px; min-height: 66px; padding: 18px 34px; background: var(--blue); color: #fff; font: 600 clamp(15px, 1.3vw, 18px)/1.5 var(--font-sans); letter-spacing: .04em; border: 1px solid var(--blue); border-radius: 999px; box-shadow: 0 12px 24px -14px rgba(0,81,224,.8); transition: .2s ease; }
.btn:hover { background: var(--blue-d); border-color: var(--blue-d); color: #fff; transform: translateY(-2px); box-shadow: 0 16px 26px -14px rgba(0,81,224,.9); }
.btn--ghost { background: transparent; color: var(--blue); border-color: var(--blue); box-shadow: none; }
.btn--ghost:hover { background: var(--blue-pale); border-color: var(--blue); color: var(--blue-d); box-shadow: none; }

/* ============================================================
   FOOTER
============================================================ */
.ft { background: var(--navy); color: #E7ECF5; padding: clamp(48px, 6vw, 76px) 0 28px; }
.ft .logo { color: #fff; }
.ft-top { display: grid; grid-template-columns: minmax(240px, 1.1fr) 2fr; gap: clamp(28px, 4vw, 64px); }
.ft-catch { margin: 20px 0 0; font-size: 14px; line-height: 2; color: rgba(231,236,245,.8); }
.ft-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 28px 24px; }
.ft-cols h3 { margin: 0 0 14px; font-size: 11px; font-weight: 700; letter-spacing: .24em; color: #6FA8FF; }
.ft-cols a, .ft-cols p { display: block; margin: 0 0 11px; font-size: 13.5px; line-height: 1.7; color: rgba(231,236,245,.85); }
.ft-cols a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.ft-sub { margin-top: clamp(34px, 4vw, 52px); padding: 22px 0 0; border-top: 1px solid rgba(231,236,245,.18); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 12px; color: rgba(231,236,245,.6); }
/* 交流会（サブ事業）への導線 */
.ft-sister { margin: 26px 0 0; padding: 20px 22px; border: 1px solid rgba(231,236,245,.26); border-radius: var(--r); display: block; }
.ft-sister b { display: block; font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 6px; letter-spacing: .04em; }
.ft-sister span { font-size: 12.5px; line-height: 1.8; color: rgba(231,236,245,.72); }
.ft-sister:hover { border-color: #6FA8FF; background: rgba(0,81,224,.14); }

/* ============================================================
   レスポンシブ
============================================================ */
@media (max-width: 900px) {
  .ft-top { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .hd-toggle { display: block; }
  .hd-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 8px clamp(20px, 5vw, 48px) 20px;
    display: none;
  }
  .hd-nav.open { display: flex; }
  .hd-nav a { padding: 15px 0; border-bottom: 1px solid var(--line); }
  .hd-nav .btn-sm { margin-top: 14px; text-align: center; padding: 15px; border-bottom: 0; }
  .ec-art > * { max-width: 52%; }
}

/* ============================================================
   記事ページ（interview-0X.html）と一覧ページ（interviews.html）
============================================================ */
.crumbs { padding: 18px 0 0; font-size: 12px; color: var(--muted); letter-spacing: .03em; }
.crumbs a:hover { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.crumbs span { margin: 0 8px; opacity: .55; }

/* ---- 記事ヘッダー ---- */
.art-head { padding-block: 22px clamp(30px, 4vw, 46px); }
.art-cat { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 16px; }
.tag { display: inline-block; padding: 6px 14px; border-radius: 999px; background: var(--pale); color: var(--acc); font-size: 11.5px; font-weight: 700; letter-spacing: .08em; }
.art-cat .tag { background: var(--acc); color: #fff; }
.art-cat time { font-size: 12px; letter-spacing: .1em; color: var(--muted); }
.art-title { margin: 0 0 18px; font: 900 clamp(27px, 3.6vw, 46px)/1.45 var(--font-sans); letter-spacing: .01em; }
.art-sub { margin: 0 0 26px; font: 500 clamp(15px, 1.4vw, 19px)/1.85 var(--font-serif); color: var(--acc); }
.art-eyecatch { margin: 0; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 26px 54px -34px rgba(27,26,22,.5); }
.art-eyecatch img { width: 100%; height: auto; }
.art-figcap { margin: 12px 0 0; font-size: 12px; line-height: 1.8; color: var(--muted); }

/* ---- 本文 + サイドバー ---- */
.art-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: clamp(32px, 4.5vw, 64px); padding-bottom: clamp(56px, 7vw, 96px); align-items: start; }

.prose { font-size: clamp(14.5px, 1.12vw, 16px); line-height: 2.15; color: var(--ink-2); }
.prose > p { margin: 0 0 1.9em; }
.prose h2 {
  margin: 3.2em 0 1.3em; padding: 0 0 .6em 0; position: relative;
  font: 700 clamp(20px, 2.1vw, 27px)/1.6 var(--font-sans); color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.prose h2::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 64px; height: 3px; background: var(--acc); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 2.6em 0 1em; font: 700 clamp(16px, 1.5vw, 19px)/1.7 var(--font-sans); color: var(--ink); }
.prose strong { color: var(--ink); font-weight: 700; background: linear-gradient(transparent 64%, rgba(0,81,224,.16) 64%); }
.prose a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--blue-d); }
.prose ul { margin: 0 0 1.9em; padding: 0; list-style: none; }
.prose ul li { position: relative; margin-bottom: .8em; padding-left: 22px; }
.prose ul li::before { content: ""; position: absolute; left: 3px; top: .95em; width: 9px; height: 1px; background: var(--acc); }

/* 一問一答 */
.qa { margin: 0 0 1.9em; }
.qa dt, .qa dd { position: relative; padding-left: 46px; }
.qa dt { margin-bottom: .7em; font-weight: 700; color: var(--ink); }
.qa dd { margin: 0 0 1.9em; }
.qa dt::before, .qa dd::before {
  content: ""; position: absolute; left: 0; top: .12em; width: 30px; height: 30px; border-radius: 50%;
  background-size: cover; background-position: center 18%; border: 1px solid var(--line);
}
/* 聞き手と話し手の顔を出して、どちらの発言かを一目で分かるようにする */
.qa dt::before { background-image: var(--face-q, none); background-color: var(--blue-pale); }
.qa dd::before { background-image: var(--face-a, none); background-color: var(--pale); }
.qa dt { color: var(--blue-d); }

/* 引用（大きく抜くところ） */
.pull { margin: 3.2em 0; padding: 0; background: none; border: 0; }
.pull p { margin: 0; font: 500 clamp(19px, 2.15vw, 27px)/1.95 var(--font-serif); color: var(--acc); letter-spacing: .015em; }
.pull cite { display: block; position: relative; margin-top: 20px; padding-left: 30px; font-size: 12.5px; font-style: normal; color: var(--muted); letter-spacing: .06em; }
.pull cite::before { content: ""; position: absolute; left: 0; top: .68em; width: 18px; height: 1px; background: var(--acc); }

/* 補足ボックス */
.note { margin: 2.4em 0; padding: clamp(20px, 2.4vw, 28px); background: var(--blue-pale); border: 1px solid #D5E2FA; border-radius: var(--r); font-size: 13.5px; line-height: 2; }
.note h4 { margin: 0 0 10px; font-size: 12px; font-weight: 700; letter-spacing: .2em; color: var(--blue); }
.note p:last-child { margin-bottom: 0; }
.note p { margin: 0 0 .9em; }

/* 編集後記 */
.afterword { margin: 3.4em 0 0; padding: clamp(24px, 3vw, 34px); background: var(--washi-2); border: 1px solid var(--line); border-radius: var(--r); }
.afterword h3 { margin: 0 0 14px; font-size: 12px; font-weight: 700; letter-spacing: .24em; color: var(--blue); }
.afterword p { margin: 0 0 1.2em; font-size: 13.5px; line-height: 2.05; }
.afterword p:last-child { margin: 0; }

/* シェア */
.share { margin: 2.8em 0 0; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.share span { font-size: 12px; font-weight: 700; letter-spacing: .2em; color: var(--muted); }
.share a { padding: 10px 20px; border: 1px solid var(--line-2); border-radius: 999px; font-size: 13px; font-weight: 600; }
.share a:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-pale); }

/* ---- サイドバー ---- */
/* 記事が長いのでサイドバー自体を追従させ、入りきらない分は内側でスクロールさせる */
.side { position: sticky; top: 88px; max-height: calc(100vh - 108px); overflow-y: auto; overscroll-behavior: contain; scrollbar-width: thin; display: flex; flex-direction: column; gap: 20px; padding-right: 4px; }
.side::-webkit-scrollbar { width: 6px; }
.side::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 999px; }
.side-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 22px; }
.side-card > h3 { margin: 0 0 16px; padding-bottom: 12px; border-bottom: 1px solid var(--line); font-size: 11.5px; font-weight: 700; letter-spacing: .22em; color: var(--blue); }

/* 取材先データ */
.profile-lead { margin: 0 0 16px; display: flex; gap: 14px; align-items: center; }
.profile-lead .initial { flex: 0 0 auto; width: 50px; height: 50px; display: grid; place-items: center; border-radius: 50%; background: var(--acc); color: #fff; font: 700 20px/1 var(--font-serif); }
.profile-lead b { display: block; font-size: 15px; font-weight: 700; color: var(--ink); }
.profile-lead small { display: block; margin-top: 5px; font-size: 11.5px; color: var(--muted); letter-spacing: .04em; }
.profile-dl { margin: 0; font-size: 12.5px; line-height: 1.8; }
.profile-dl div { display: grid; grid-template-columns: 68px 1fr; gap: 10px; padding: 9px 0; border-top: 1px dotted var(--line-2); }
.profile-dl div:first-child { border-top: 0; padding-top: 0; }
.profile-dl dt { color: var(--muted); letter-spacing: .06em; }
.profile-dl dd { margin: 0; color: var(--ink); }
.profile-dl a { color: var(--blue); word-break: break-all; text-decoration: underline; text-underline-offset: 2px; }
.profile-note { margin: 14px 0 0; padding-top: 12px; border-top: 1px dotted var(--line-2); font-size: 11.5px; line-height: 1.8; color: var(--muted); }

/* 取材募集バナー */
.recruit { display: block; padding: 24px 22px 26px; background: linear-gradient(158deg, var(--blue-l), var(--blue-d)); color: #fff; border-radius: var(--r); box-shadow: 0 16px 30px -20px rgba(0,81,224,.9); transition: .22s ease; }
.recruit:hover { background: var(--blue-d); color: #fff; transform: translateY(-3px); }
.recruit em { display: inline-block; margin-bottom: 12px; padding: 5px 11px; background: rgba(255,255,255,.18); font: 700 10px/1 var(--font-sans); letter-spacing: .2em; font-style: normal; }
.recruit b { display: block; font: 700 18px/1.6 var(--font-sans); margin-bottom: 10px; }
.recruit p { margin: 0 0 16px; font-size: 12.5px; line-height: 1.9; color: rgba(255,255,255,.86); }
.recruit span { display: inline-flex; align-items: center; gap: 10px; padding: 11px 20px; background: #fff; color: var(--blue-d); font-size: 13px; font-weight: 700; border-radius: 999px; }

/* 目次 */
.toc ol { margin: 0; padding: 0; list-style: none; counter-reset: toc; font-size: 13px; }
.toc li { counter-increment: toc; border-top: 1px dotted var(--line-2); }
.toc li:first-child { border-top: 0; }
.toc a { display: grid; grid-template-columns: 26px 1fr; gap: 8px; padding: 11px 0; line-height: 1.7; }
.toc a::before { content: counter(toc, decimal-leading-zero); color: var(--blue); font-weight: 700; font-size: 11px; padding-top: .35em; }
.toc a:hover { color: var(--blue); }

/* サイドの関連記事 */
.mini { display: flex; gap: 12px; padding: 13px 0; border-top: 1px dotted var(--line-2); }
.mini:first-of-type { border-top: 0; padding-top: 0; }
.mini img { flex: 0 0 96px; width: 96px; height: 54px; object-fit: cover; border: 1px solid var(--line); border-radius: var(--r-sm); }
.mini b { display: block; font-size: 12.5px; font-weight: 600; line-height: 1.65; color: var(--ink); }
.mini small { display: block; margin-top: 5px; font-size: 11px; color: var(--muted); }
.mini:hover b { color: var(--blue); }

/* 運営情報 */
.org { font-size: 12.5px; line-height: 1.95; color: var(--ink-2); }
.org p { margin: 0 0 10px; }
.org p:last-child { margin: 0; }
.org b { color: var(--ink); }
.org a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; word-break: break-all; }

/* 記事下のCTA */
.art-foot-cta { background: linear-gradient(180deg, var(--blue-pale), var(--washi-2)); border-block: 1px solid var(--line); padding: clamp(46px, 6vw, 78px) 0; text-align: center; }
.art-foot-cta h2 { margin: 0 0 16px; font: 900 clamp(21px, 2.5vw, 32px)/1.55 var(--font-sans); }
.art-foot-cta p { margin: 0 auto 28px; max-width: 640px; font-size: 14px; line-height: 2.05; color: var(--ink-2); }

/* ---- 一覧ページ ---- */
.list-head { padding-block: clamp(30px, 4vw, 50px) clamp(20px, 2.4vw, 30px); }
.list-head h1 { margin: 0 0 14px; font: 900 clamp(28px, 3.4vw, 44px)/1.4 var(--font-sans); }
.list-head p { margin: 0; font-size: 14px; line-height: 2.05; color: var(--ink-2); }
.filters { display: flex; gap: 8px; flex-wrap: wrap; padding-bottom: 18px; }
.filters button { padding: 9px 17px; background: var(--paper); border: 1px solid var(--line-2); border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--ink-2); cursor: pointer; transition: .18s; }
.filters button:hover { border-color: var(--blue); color: var(--blue); }
.filters button[aria-pressed="true"] { background: var(--blue); border-color: var(--blue); color: #fff; }
.list-count { padding: 0 0 16px; font-size: 12.5px; color: var(--muted); letter-spacing: .06em; }

@media (max-width: 1000px) {
  .art-layout { grid-template-columns: 1fr; }
  .side { position: static; max-height: none; overflow: visible; padding-right: 0; }
}

/* ============================================================
   取材依頼ページ（contact.html）
============================================================ */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: clamp(32px, 4.5vw, 64px); padding-bottom: clamp(52px, 6vw, 88px); align-items: start; }
.blk-h { margin: 0 0 clamp(20px, 2.4vw, 28px); padding-bottom: 12px; position: relative; border-bottom: 1px solid var(--line); font: 700 clamp(19px, 2vw, 25px)/1.6 var(--font-sans); }
.blk-h::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 64px; height: 3px; background: var(--blue); }
.blk-h + .steps + .blk-h, .steps + .blk-h { margin-top: clamp(44px, 5vw, 68px); }

.steps { display: flex; flex-direction: column; }
.step { display: grid; grid-template-columns: 46px 1fr; gap: 18px; padding: 20px 0; border-bottom: 1px dotted var(--line-2); }
.step:last-child { border-bottom: 0; }
.step > span { width: 46px; height: 46px; display: grid; place-items: center; background: var(--blue-pale); color: var(--blue); border-radius: 50%; font: 700 15px/1 var(--font-sans); letter-spacing: .02em; }
.step b { display: block; margin-bottom: 8px; font: 700 clamp(15.5px, 1.4vw, 18px)/1.6 var(--font-sans); color: var(--ink); }
.step p { margin: 0; font-size: 13.5px; line-height: 2; color: var(--ink-2); }

.faq { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 18px 40px 18px 0; position: relative; font-size: 14.5px; font-weight: 600; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 8px; top: 50%; width: 10px; height: 10px; margin-top: -7px; border-right: 2px solid var(--blue); border-bottom: 2px solid var(--blue); transform: rotate(45deg); transition: transform .2s; }
.faq[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq summary:hover { color: var(--blue); }
.faq p { margin: 0; padding: 0 0 20px; font-size: 13.5px; line-height: 2.05; color: var(--ink-2); }

.side-card .btn { gap: 12px; padding: 14px 20px; font-size: 14px; }
.side-card .cta-list dd { font-size: 13px; }
.profile-lead .avatar { width: 56px; height: 56px; flex: 0 0 auto; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 50%; border: 1px solid var(--line); }
.recruit span i { font-style: normal; }

@media (max-width: 1000px) { .contact-grid { grid-template-columns: 1fr; } }

/* ============================================================
   人物写真を主役にした引用（トップの「なぜ、日本酒なのか」）
============================================================ */
.voices { display: grid; grid-template-columns: repeat(auto-fit, minmax(276px, 1fr)); gap: clamp(16px, 1.8vw, 24px); }
.vcard { position: relative; display: block; aspect-ratio: 3 / 4.15; border-radius: var(--r-lg); overflow: hidden; background: var(--washi-2); box-shadow: 0 22px 44px -30px rgba(27,26,22,.6); }
.vcard img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; transition: transform .7s cubic-bezier(.2,.7,.3,1); }
.vcard:hover img { transform: scale(1.06); }
.vcard::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(12,16,24,0) 26%, rgba(12,16,24,.30) 48%, rgba(12,16,24,.86) 100%);
}
.vcard-body { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 0 clamp(20px, 2vw, 26px) clamp(22px, 2.2vw, 28px); color: #fff; }
.vcard blockquote { margin: 0 0 16px; font: 500 clamp(15.5px, 1.45vw, 19px)/1.9 var(--font-serif); letter-spacing: .01em; text-shadow: 0 2px 16px rgba(0,0,0,.45); }
.vcard-who { margin: 0; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.28); }
.vcard-who b { font-size: 14.5px; font-weight: 700; }
.vcard-who span { display: block; margin-top: 6px; font-size: 11.5px; line-height: 1.7; color: rgba(255,255,255,.78); }
.vcard-go { position: absolute; top: 16px; right: 16px; z-index: 2; padding: 7px 14px; border-radius: 999px; background: rgba(255,255,255,.16); backdrop-filter: blur(6px); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.vcard:hover .vcard-go { background: var(--blue); }

/* ============================================================
   質問カード（about.html の「必ず聞いている質問」）
============================================================ */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(276px, 1fr)); gap: clamp(16px, 2vw, 24px); }
.quote { position: relative; margin: 0; padding: clamp(28px, 3vw, 38px) clamp(24px, 2.6vw, 32px) clamp(26px, 3vw, 34px); background: var(--blue-pale); border-radius: var(--r); display: flex; flex-direction: column; gap: 18px; overflow: hidden; }
.quote::before { content: "“"; position: absolute; top: -18px; right: 14px; font: 700 110px/1 var(--font-serif); color: var(--blue); opacity: .13; }
.quote blockquote { margin: 0; position: relative; font: 600 clamp(16px, 1.55vw, 20px)/1.85 var(--font-sans); color: var(--blue-d); }
.quote figcaption { margin-top: auto; font-size: 12.5px; line-height: 1.95; color: var(--ink-2); }
.quote figcaption b { display: block; margin-bottom: 6px; color: var(--ink); font-size: 14px; font-weight: 700; }

/* ============================================================
   運営メンバー
============================================================ */
.members { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(20px, 2.4vw, 30px); }
.member { display: grid; grid-template-columns: clamp(96px, 11vw, 140px) 1fr; gap: clamp(18px, 2.2vw, 26px); align-items: start; padding: clamp(22px, 2.6vw, 30px); background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); }
.member-photo { width: 100%; height: auto; aspect-ratio: 1 / 1; border-radius: 50%; object-fit: cover; border: 1px solid var(--line); }
.member-photo--initial { display: grid; place-items: center; background: var(--blue-pale); color: var(--blue); font: 700 clamp(30px, 3.4vw, 44px)/1 var(--font-serif); border: 1px solid #D5E2FA; }
.member h3 { margin: 0 0 4px; font: 700 clamp(17px, 1.6vw, 20px)/1.5 var(--font-sans); }
.member .role { margin: 0 0 14px; font-size: 12px; font-weight: 600; letter-spacing: .1em; color: var(--blue); }
.member p { margin: 0 0 10px; font-size: 13.5px; line-height: 2; color: var(--ink-2); }
.member p:last-child { margin: 0; }
@media (max-width: 560px) { .member { grid-template-columns: 1fr; } .member-photo { width: 116px; } }

/* 補足の一段落（トップ／about の「必ず聞いている質問」の下） */
.why-note { margin: clamp(28px, 3.6vw, 42px) 0 0; padding: clamp(20px, 2.4vw, 28px); background: var(--washi-2); border-radius: var(--r); font-size: 13.5px; line-height: 2.05; color: var(--ink-2); }
.why-note strong { color: var(--blue-d); font-weight: 700; }

/* ============================================================
   名前の由来（杯と杯が触れて、音が鳴る）
============================================================ */
.origin { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.origin-photo { position: relative; margin: 0; }
.origin-photo img { width: 100%; height: auto; aspect-ratio: 1400 / 608; object-fit: cover; }
.origin-photo figcaption {
  position: absolute; inset: auto 0 0 0; padding: 56px clamp(20px, 2.4vw, 28px) clamp(18px, 2vw, 24px);
  background: linear-gradient(transparent, rgba(10,14,22,.78));
  color: #fff; font: 500 clamp(14px, 1.35vw, 17px)/1.85 var(--font-serif); letter-spacing: .06em;
}
.origin-photo figcaption b { display: block; margin-bottom: 8px; font: 700 11px/1 var(--font-sans); letter-spacing: .34em; color: rgba(255,255,255,.72); }
.origin-body { padding: clamp(24px, 3vw, 36px); }
.origin-body h3 { margin: 0 0 10px; font-size: 11.5px; font-weight: 700; letter-spacing: .26em; color: var(--blue); }
.origin-body .kanji { margin: 0 0 20px; font: 500 clamp(34px, 3.8vw, 50px)/1.15 var(--font-serif); letter-spacing: .18em; color: var(--blue-d); }
.origin-body .kanji small { display: block; margin-top: 12px; font: 700 10px/1 var(--font-sans); letter-spacing: .38em; color: var(--muted); }
.origin-body p { margin: 0 0 14px; font-size: 13.5px; line-height: 2.1; color: var(--ink-2); }
.origin-body p:last-child { margin: 0; }
.origin-body em { font-style: normal; font-weight: 700; color: var(--ink); }

/* ============================================================
   記事ページの作り込み
============================================================ */
/* 読了バー */
.progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 60; background: transparent; pointer-events: none; }
.progress i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--blue-l), var(--blue)); transition: width .12s linear; }

/* 記事ヘッダーの情報行 */
.art-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin: 0 0 18px; }
.art-meta time, .art-meta .num { font-size: 12px; letter-spacing: .1em; color: var(--muted); }
.art-meta .num { padding: 5px 12px; border: 1px solid var(--line-2); border-radius: 999px; font-weight: 700; color: var(--ink-2); }

/* 要点 */
.points { margin: 0 0 2.6em; padding: clamp(22px, 2.6vw, 30px) clamp(22px, 2.6vw, 32px); background: var(--washi-2); border-radius: var(--r); }
.points h2 { margin: 0 0 14px !important; padding: 0 !important; border: 0 !important; font: 700 12px/1 var(--font-sans) !important; letter-spacing: .24em !important; color: var(--blue) !important; }
.points h2::after { display: none; }
.points ul { margin: 0; padding: 0; list-style: none; }
.points li { position: relative; margin: 0 0 12px; padding-left: 30px; font-size: 14px; line-height: 1.95; color: var(--ink); font-weight: 500; }
.points li:last-child { margin: 0; }
.points li::before { content: ""; position: absolute; left: 6px; top: .74em; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); }

/* 目次の現在地 */
.toc a.is-active { color: var(--blue); font-weight: 700; }
.toc a.is-active::before { color: var(--blue); }

/* 前後の記事 */
.art-nav { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(14px, 1.8vw, 22px); padding: clamp(34px, 4vw, 52px) 0 0; margin-top: clamp(34px, 4vw, 52px); border-top: 1px solid var(--line); }
.art-nav a { display: grid; grid-template-columns: 104px 1fr; gap: 16px; align-items: center; padding: 16px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); transition: .2s ease; }
.art-nav a:hover { border-color: var(--blue); transform: translateY(-2px); }
.art-nav a:hover b { color: var(--blue); }
.art-nav img { width: 104px; height: 59px; object-fit: cover; border-radius: var(--r-sm); border: 1px solid var(--line); }
.art-nav span { display: block; font-size: 11px; font-weight: 700; letter-spacing: .16em; color: var(--muted); margin-bottom: 7px; }
.art-nav b { display: block; font-size: 13.5px; font-weight: 700; line-height: 1.65; color: var(--ink); }
.art-nav .next { direction: rtl; }
.art-nav .next > * { direction: ltr; }
.art-nav .next span, .art-nav .next b { text-align: right; }
@media (max-width: 760px) {
  .art-nav { grid-template-columns: 1fr; }
  .art-nav a { grid-template-columns: 84px 1fr; }
  .art-nav img { width: 84px; height: 48px; }
  .art-nav .next { direction: ltr; }
  .art-nav .next span, .art-nav .next b { text-align: left; }
}


/* ============================================================
   ABOUT / CTA / インタビュアー（トップと about・contact で共有）
============================================================ */
.about-in { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 4.4vw, 60px); align-items: start; }
.about-lead { margin: 0 0 22px; font: 700 clamp(20px, 2.2vw, 28px)/1.65 var(--font-sans); }
.about-in p { font-size: 14px; line-height: 2.15; color: var(--ink-2); }
.voice { margin: clamp(30px, 4vw, 46px) 0 0; padding: clamp(24px, 3vw, 34px); background: var(--paper); border: 1px solid var(--line); }
.voice h3 { margin: 0 0 14px; font-size: 12px; font-weight: 700; letter-spacing: .26em; color: var(--blue); }
.voice p { margin: 0 0 12px; font-size: 13.5px; line-height: 2.05; }
.voice p:last-child { margin: 0; }
.voice--photo { display: grid; grid-template-columns: clamp(150px, 17vw, 208px) 1fr; gap: clamp(22px, 2.6vw, 34px); align-items: start; }
.voice--photo img { width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; border-radius: 50%; border: 4px solid var(--paper); box-shadow: 0 14px 30px -18px rgba(27,26,22,.55), 0 0 0 1px var(--line); }
.voice-name { font-size: 16px !important; font-weight: 700; color: var(--ink); margin-bottom: 14px !important; }
.voice-name small { display: block; margin-top: 6px; font-size: 11.5px; font-weight: 500; color: var(--muted); letter-spacing: .04em; }
.cta { background: linear-gradient(180deg, var(--blue-pale), var(--washi-2)); border-block: 1px solid var(--line); }
.cta-in { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(30px, 4vw, 56px); align-items: center; }
.cta h2 { margin: 0 0 18px; font: 900 clamp(24px, 3vw, 38px)/1.45 var(--font-sans); }
.cta h2 span { color: var(--blue); }
.cta p { margin: 0 0 24px; font-size: 14px; line-height: 2.1; color: var(--ink-2); }
.cta-list { margin: 0; padding: clamp(24px, 3vw, 32px); background: var(--paper); border: 1px solid var(--line); }
.cta-list dt { font-size: 11px; font-weight: 700; letter-spacing: .24em; color: var(--blue); margin-bottom: 14px; }
.cta-list dd { margin: 0 0 11px; padding-left: 22px; position: relative; font-size: 13.5px; line-height: 1.85; }
.cta-list dd::before { content: ""; position: absolute; left: 4px; top: .78em; width: 8px; height: 1px; background: var(--blue); }
.cta-list dd:last-child { margin-bottom: 0; }
@media (max-width: 900px) { .about-in, .cta-in { grid-template-columns: 1fr; } }

/* 取材前のリサーチメモ／質問リスト */
.research { margin: 0 0 2.6em; padding: clamp(22px, 2.6vw, 30px) clamp(22px, 2.6vw, 32px); background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); }
.research h2 { margin: 0 0 6px !important; padding: 0 !important; border: 0 !important; font: 700 12px/1 var(--font-sans) !important; letter-spacing: .24em !important; color: var(--acc) !important; }
.research h2::after { display: none; }
.research > p { margin: 0 0 16px; font-size: 12.5px; line-height: 1.9; color: var(--muted); }
.research dl { margin: 0; display: grid; gap: 0; }
.research dl > div { display: grid; grid-template-columns: 84px 1fr; gap: 14px; padding: 11px 0; border-top: 1px dotted var(--line-2); }
.research dl > div:first-child { border-top: 0; padding-top: 0; }
.research dt { font-size: 12px; font-weight: 700; letter-spacing: .06em; color: var(--acc); padding-top: .15em; }
.research dd { margin: 0; font-size: 13.5px; line-height: 1.9; color: var(--ink-2); }

.qlist { margin: 3em 0 0; padding: clamp(24px, 3vw, 34px); background: var(--washi-2); border-radius: var(--r); }
.qlist h3 { margin: 0 0 6px; font-size: 12px; font-weight: 700; letter-spacing: .24em; color: var(--blue); }
.qlist > p { margin: 0 0 18px; font-size: 12.5px; line-height: 1.9; color: var(--muted); }
.qlist ol { margin: 0; padding: 0; list-style: none; counter-reset: q; }
.qlist li { counter-increment: q; position: relative; padding: 9px 0 9px 40px; font-size: 13.5px; line-height: 1.85; color: var(--ink-2); border-top: 1px dotted var(--line-2); }
.qlist li:first-child { border-top: 0; }
.qlist li::before { content: "Q" counter(q); position: absolute; left: 0; top: 1em; font: 700 11px/1 var(--font-sans); color: var(--blue); letter-spacing: .04em; }
.qlist li b { color: var(--ink); font-weight: 700; }
.qlist-note { margin: 16px 0 0; padding-top: 14px; border-top: 1px solid var(--line); font-size: 12.5px; line-height: 1.95; color: var(--muted); }

/* ============================================================
   STORY（なぜこのメディアを始めたのか）
============================================================ */
.story { display: grid; grid-template-columns: minmax(200px, 300px) 1fr; gap: clamp(30px, 4.4vw, 60px); align-items: start; }
.story-photo { margin: 0; text-align: center; }
.story-photo img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 50%; border: 5px solid var(--paper); box-shadow: 0 20px 40px -24px rgba(27,26,22,.55), 0 0 0 1px var(--line); }
.story-photo figcaption { margin-top: 20px; font-size: 15px; font-weight: 700; color: var(--ink); }
.story-photo figcaption span { display: block; margin-top: 7px; font-size: 12px; font-weight: 500; letter-spacing: .04em; color: var(--muted); }
.story-body p { margin: 0 0 1.7em; font-size: clamp(14.5px, 1.15vw, 16px); line-height: 2.2; color: var(--ink-2); }
.story-body p:last-child { margin: 0; }
.story-body p.lead { font: 700 clamp(18px, 1.9vw, 24px)/1.85 var(--font-sans); color: var(--ink); margin-bottom: 1.4em; }
.story-body strong { color: var(--ink); font-weight: 700; background: linear-gradient(transparent 64%, rgba(0,81,224,.16) 64%); }
.story-body .pull { --acc: var(--blue-d); margin: 2.4em 0; }
@media (max-width: 820px) {
  .story { grid-template-columns: 1fr; }
  .story-photo { max-width: 200px; }
  .story-photo figcaption { text-align: left; }
}

.member strong { color: var(--ink); font-weight: 700; background: linear-gradient(transparent 64%, rgba(0,81,224,.16) 64%); }

/* ============================================================
   タグ（記事内・タグ一覧・絞り込み中の表示）
============================================================ */
.art-tags { margin: 2.8em 0 0; padding-top: 24px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.art-tags > span { margin-right: 4px; font-size: 12px; font-weight: 700; letter-spacing: .2em; color: var(--muted); }
.art-tags a { padding: 8px 16px; background: var(--blue-pale); color: var(--blue-d); border-radius: 999px; font-size: 13px; font-weight: 600; transition: .16s; }
.art-tags a:hover { background: var(--blue); color: #fff; }

.tagcloud { padding: 0 0 clamp(24px, 3vw, 34px); }
.tagcloud h2 { margin: 0 0 14px; font-size: 11.5px; font-weight: 700; letter-spacing: .24em; color: var(--muted); }
.tagcloud ul { margin: 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.tagcloud a { display: inline-flex; align-items: baseline; gap: 6px; padding: 8px 15px; background: var(--paper); border: 1px solid var(--line-2); border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--ink-2); transition: .16s; }
.tagcloud a:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-pale); }
.tagcloud a b { font-size: 11px; font-weight: 700; color: var(--muted); }
.tagcloud a[aria-current="true"] { background: var(--blue); border-color: var(--blue); color: #fff; }
.tagcloud a[aria-current="true"] b { color: rgba(255,255,255,.72); }

.active-tag { display: none; align-items: center; gap: 12px; flex-wrap: wrap; margin: 0 0 18px; padding: 14px 18px; background: var(--blue-pale); border-radius: var(--r); font-size: 13.5px; color: var(--blue-d); }
.active-tag.on { display: flex; }
.active-tag b { font-weight: 700; }
.active-tag a { margin-left: auto; padding: 7px 15px; background: #fff; border-radius: 999px; font-size: 12.5px; font-weight: 600; color: var(--blue-d); }
.active-tag a:hover { background: var(--blue); color: #fff; }
