@charset "UTF-8";
/* ==========================================================================
   休日エンタメノート スタイルシート
   - 記事本文の読みやすさを最優先
   - 落ち着いた配色（紺＋生成り）／過度な装飾やアニメーションは使わない
   - 画像がなくても成立するレイアウト
   ========================================================================== */

:root {
  --bg: #fdfdfb;
  --surface: #ffffff;
  --surface-2: #f4f4f0;
  --text: #23262b;
  --text-muted: #5d6570;
  --line: #e2e2dc;
  --line-strong: #cfcfc7;
  --accent: #1f3a5f;
  --accent-soft: #eef2f7;
  --accent-text: #1f3a5f;
  --radius: 10px;
  --wrap: 1080px;
  --wrap-narrow: 760px;
  --font: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Yu Gothic Medium",
    "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #16181c;
    --surface: #1c1f24;
    --surface-2: #22262c;
    --text: #e8e9ea;
    --text-muted: #a7aeb8;
    --line: #31353c;
    --line-strong: #434952;
    --accent: #9fc0e8;
    --accent-soft: #222b36;
    --accent-text: #b6d0f0;
  }
}

*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

a { color: var(--accent-text); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { text-decoration: none; }

h1, h2, h3, h4 { line-height: 1.5; letter-spacing: 0.01em; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: #fff; padding: 10px 16px; z-index: 100;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* --- ヘッダー ------------------------------------------------------------ */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.header-inner { padding-block: 18px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.brand-mark {
  width: 34px; height: 34px; flex: none; border-radius: 8px;
  background: linear-gradient(135deg, var(--accent) 0%, #47617f 100%);
  position: relative;
}
.brand-mark::after {
  content: ""; position: absolute; inset: 9px 8px auto 8px; height: 3px;
  background: rgba(255, 255, 255, 0.9); border-radius: 2px;
  box-shadow: 0 6px 0 rgba(255, 255, 255, 0.55);
}
.brand-text { display: flex; flex-direction: column; }
.brand-name { font-size: 19px; font-weight: 700; letter-spacing: 0.04em; }
.brand-sub { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

.site-nav { background: var(--surface); border-bottom: 1px solid var(--line); }
.nav-list {
  display: flex; gap: 4px; list-style: none; margin: 0; padding: 0 12px;
  overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.nav-list::-webkit-scrollbar { display: none; }
.nav-list a {
  display: block; white-space: nowrap; padding: 11px 12px; font-size: 14px;
  color: var(--text); text-decoration: none; border-bottom: 2px solid transparent;
}
.nav-list a:hover { color: var(--accent-text); }
.nav-list a[aria-current="page"] { color: var(--accent-text); border-bottom-color: var(--accent); font-weight: 700; }

/* --- パンくず ------------------------------------------------------------ */
.breadcrumb { border-bottom: 1px solid var(--line); background: var(--bg); }
.breadcrumb ol {
  display: flex; flex-wrap: wrap; gap: 6px; list-style: none;
  margin: 0; padding-block: 10px; font-size: 12.5px; color: var(--text-muted);
}
.breadcrumb li + li::before { content: "›"; margin-right: 6px; color: var(--line-strong); }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb li:last-child span { color: var(--text); }

/* --- ヒーロー ------------------------------------------------------------ */
.hero {
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
  padding-block: 52px 46px;
}
.hero-eyebrow {
  margin: 0 0 12px; font-size: 12px; letter-spacing: 0.18em;
  color: var(--text-muted); text-transform: none;
}
.hero-title { margin: 0 0 16px; font-size: clamp(24px, 5.2vw, 38px); line-height: 1.45; }
.hero-lead { margin: 0 0 24px; max-width: 640px; color: var(--text-muted); font-size: 15px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 0; }

/* --- ボタン -------------------------------------------------------------- */
.btn {
  display: inline-block; padding: 11px 22px; border-radius: 999px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  background: var(--accent); color: #fff; border: 1px solid var(--accent);
}
.btn:hover { opacity: 0.88; }
.btn-ghost { background: var(--surface); color: var(--accent-text); border-color: var(--line-strong); }

/* --- セクション ---------------------------------------------------------- */
.section { padding-block: 40px; }
.section-title {
  margin: 0 0 20px; font-size: 20px; padding-left: 12px;
  border-left: 4px solid var(--accent);
}
.more-link { display: flex; flex-wrap: wrap; gap: 20px; margin: 24px 0 0; font-size: 14px; }

.page-head { padding-block: 36px 8px; }
.page-eyebrow { margin: 0 0 6px; font-size: 12px; letter-spacing: 0.16em; color: var(--text-muted); }
.page-title { margin: 0 0 12px; font-size: clamp(22px, 4.6vw, 30px); }
.page-lead { margin: 0; color: var(--text-muted); font-size: 15px; max-width: var(--wrap-narrow); }
.page-updated { margin: 12px 0 0; font-size: 13px; color: var(--text-muted); }

/* --- 価値の説明（トップ） ------------------------------------------------ */
.value-grid {
  display: grid; gap: 14px; list-style: none; margin: 0; padding: 0;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.value-grid li {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px 20px;
}
.value-grid p { margin: 0; font-size: 14px; color: var(--text-muted); }
.value-head { font-weight: 700; color: var(--text) !important; margin-bottom: 6px !important; font-size: 15px !important; }

/* --- 記事カード ---------------------------------------------------------- */
.card-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
}
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
}
.card:hover { border-color: var(--line-strong); }
.card-link { display: block; height: 100%; text-decoration: none; color: inherit; }
.card-body { padding: 18px 20px 20px; }
.card-meta { display: flex; align-items: center; gap: 10px; margin: 0 0 10px; font-size: 12px; color: var(--text-muted); }
.card-title { margin: 0 0 8px; font-size: 17px; line-height: 1.6; }
.card-link:hover .card-title { color: var(--accent-text); }
.card-desc { margin: 0; font-size: 13.5px; color: var(--text-muted); line-height: 1.8; }
.card-more { margin: 12px 0 0; font-size: 12px; color: var(--text-muted); }

.tag {
  display: inline-block; padding: 2px 10px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent-text);
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.04em; text-decoration: none;
  border: 1px solid transparent;
}
a.tag:hover { border-color: var(--line-strong); }

.empty { color: var(--text-muted); font-size: 14px; }

/* --- アイキャッチ -------------------------------------------------------- */
/* 画像がある場合は画像を、ない場合はCSSで描いたオリジナル図柄を表示します。
   作品の画像は使わないため、抽象的な図柄で記事の雰囲気だけを表します。 */
.thumb { aspect-ratio: 16 / 9; overflow: hidden; background: var(--surface-2); }
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.thumb-art {
  position: relative;
  display: flex; align-items: flex-end; justify-content: flex-start;
  background-color: #2c3e55;
  background-image:
    radial-gradient(circle at 78% 26%, rgba(255, 255, 255, 0.22) 0 14%, transparent 14.5%),
    linear-gradient(135deg, #24384f 0%, #40566f 100%);
}
.thumb-art::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 42%;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0 6px, transparent 6px 16px);
}
.thumb-label {
  position: relative; margin: 0 0 12px 14px; padding: 3px 12px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em;
  color: #fff; background: rgba(0, 0, 0, 0.34); border-radius: 999px;
  backdrop-filter: blur(2px);
}
.thumb-movie { background-image: radial-gradient(circle at 80% 24%, rgba(255,255,255,.2) 0 13%, transparent 13.5%), linear-gradient(135deg, #22344a 0%, #4a5f78 100%); }
.thumb-anime { background-image: radial-gradient(circle at 22% 30%, rgba(255,255,255,.2) 0 12%, transparent 12.5%), linear-gradient(135deg, #3a3a5c 0%, #6a6a92 100%); }
.thumb-drama { background-image: radial-gradient(circle at 74% 70%, rgba(255,255,255,.16) 0 16%, transparent 16.5%), linear-gradient(135deg, #43333f 0%, #755a68 100%); }
.thumb-manga { background-image: radial-gradient(circle at 26% 68%, rgba(255,255,255,.18) 0 13%, transparent 13.5%), linear-gradient(135deg, #34443a 0%, #5e7566 100%); }
.thumb-vod { background-image: radial-gradient(circle at 82% 34%, rgba(255,255,255,.18) 0 11%, transparent 11.5%), linear-gradient(135deg, #2f3f4d 0%, #566b7c 100%); }
.thumb-holiday { background-image: radial-gradient(circle at 20% 26%, rgba(255,255,255,.22) 0 14%, transparent 14.5%), linear-gradient(135deg, #4a4335 0%, #7b7159 100%); }

.post-hero { margin: 26px 0 0; }
.post-hero .thumb { border-radius: var(--radius); }
.post-hero figcaption { margin-top: 8px; font-size: 12px; color: var(--text-muted); }

/* --- 気分・時間・集中力のチップ ------------------------------------------ */
.chip-list { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0 0 8px; padding: 0; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px; border-radius: 999px; font-size: 14px; font-weight: 700;
  background: var(--surface); border: 1px solid var(--line-strong);
  color: var(--text); text-decoration: none;
}
a.chip:hover { background: var(--accent-soft); border-color: var(--accent); color: var(--accent-text); }
.chip.is-current { background: var(--accent); border-color: var(--accent); color: #fff; }
.chip-count { font-size: 11px; font-weight: 500; opacity: 0.7; }
.chip-sm { padding: 4px 12px; font-size: 12.5px; font-weight: 500; }
.chip-static { background: var(--surface-2); border-style: dashed; cursor: default; }
.card-chips { display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0 0; }
.card-chips .chip-static { padding: 3px 10px; font-size: 11.5px; font-weight: 500; }

.section-lead { margin: -8px 0 18px; color: var(--text-muted); font-size: 14.5px; }

.axis-box {
  margin: 26px 0 0; padding: 16px 20px;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius);
}
.axis-title { margin: 0 0 10px; font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; color: var(--text-muted); }
.axis-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 8px; }
.axis-row:last-child { margin-bottom: 0; }
.axis-name { font-size: 12.5px; color: var(--text-muted); min-width: 5em; }
.axis-values { display: flex; flex-wrap: wrap; gap: 6px; }

.axis-cards { display: grid; gap: 14px; margin-top: 24px; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.axis-card { padding: 18px 20px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.axis-card-title { margin: 0 0 8px; font-size: 16px; display: flex; align-items: baseline; gap: 10px; }
.axis-card-title a { text-decoration: none; }
.axis-card-title a:hover { text-decoration: underline; }
.axis-card-desc { margin: 0; font-size: 13.5px; color: var(--text-muted); line-height: 1.8; }

/* --- 文字だけの一覧 ------------------------------------------------------ */
.compact-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.compact-list li { border-bottom: 1px solid var(--line); }
.compact-list a {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px;
  padding: 14px 4px; text-decoration: none; color: var(--text); font-size: 15px;
}
.compact-list a:hover { color: var(--accent-text); }
.compact-cat { font-size: 11.5px; color: var(--text-muted); min-width: 7em; }

/* --- カテゴリー一覧 ------------------------------------------------------ */
.cat-grid {
  display: grid; gap: 14px; list-style: none; margin: 0; padding: 0;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.cat-grid a {
  display: block; height: 100%; padding: 18px 20px; text-decoration: none; color: inherit;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
}
.cat-grid a:hover { border-color: var(--line-strong); }
.cat-name { display: inline-block; font-weight: 700; font-size: 16px; margin-right: 10px; }
.cat-count { font-size: 12px; color: var(--text-muted); }
.cat-desc { display: block; margin-top: 8px; font-size: 13px; color: var(--text-muted); line-height: 1.8; }

/* --- ページ送り ---------------------------------------------------------- */
.pager { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 34px; }
.pager a, .pager span {
  display: inline-block; padding: 8px 14px; border-radius: var(--radius);
  border: 1px solid var(--line); background: var(--surface);
  font-size: 14px; text-decoration: none; color: var(--text);
}
.pager .is-current { background: var(--accent); color: #fff; border-color: var(--accent); font-weight: 700; }
.pager a:hover { border-color: var(--line-strong); }

/* --- 記事ページ ---------------------------------------------------------- */
.post .wrap, .static-page .wrap { max-width: var(--wrap-narrow); }
.post-header { padding-block: 34px 0; }
.post-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin: 0 0 14px; font-size: 12.5px; color: var(--text-muted); }
.post-title { margin: 0 0 14px; font-size: clamp(23px, 5vw, 32px); line-height: 1.5; }
.post-desc { margin: 0 0 10px; color: var(--text-muted); font-size: 15px; }
.post-sub { margin: 0; font-size: 13px; color: var(--text-muted); }

.ad-notice {
  margin: 20px 0 0; padding: 9px 14px; font-size: 12.5px; color: var(--text-muted);
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 6px;
}

/* 目次 */
.toc {
  margin: 30px 0 8px; padding: 20px 22px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
}
.toc-title { margin: 0 0 10px; font-weight: 700; font-size: 15px; }
.toc ul { margin: 0; padding-left: 1.1em; }
.toc li { font-size: 14px; margin-bottom: 6px; }
.toc-h3 { list-style: none; font-size: 13.5px; margin-left: -0.2em; }
.toc-h3::before { content: "－ "; color: var(--line-strong); }
.toc a { color: var(--text); text-decoration: none; }
.toc a:hover { color: var(--accent-text); text-decoration: underline; }

/* 本文 */
.post-body { font-size: 16.5px; }
.post-body > h2 {
  margin: 52px 0 18px; padding-bottom: 10px; font-size: 22px;
  border-bottom: 2px solid var(--line-strong);
  scroll-margin-top: 20px;
}
.post-body > h3 {
  margin: 36px 0 12px; font-size: 18px; padding-left: 11px;
  border-left: 3px solid var(--accent); scroll-margin-top: 20px;
}
.post-body p { margin: 0 0 1.6em; }
.post-body ul, .post-body ol { margin: 0 0 1.6em; padding-left: 1.4em; }
.post-body li { margin-bottom: 0.6em; }
.post-body strong { font-weight: 700; background: linear-gradient(transparent 62%, var(--accent-soft) 62%); }
.post-body blockquote {
  margin: 0 0 1.6em; padding: 4px 18px; border-left: 3px solid var(--line-strong);
  color: var(--text-muted);
}
.post-body hr { border: none; border-top: 1px solid var(--line); margin: 40px 0; }
.post-body a { font-weight: 500; }

.post-body table {
  width: 100%; border-collapse: collapse; margin: 0 0 1.6em; font-size: 14.5px;
  display: block; overflow-x: auto; white-space: nowrap;
}
.post-body th, .post-body td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; }
.post-body th { background: var(--surface-2); font-weight: 700; }

/* 補足ボックス */
.box {
  margin: 0 0 1.8em; padding: 16px 20px 4px;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface);
}
.box-title { margin: 0 0 8px; font-size: 13px; font-weight: 700; color: var(--accent-text); letter-spacing: 0.06em; }
.box p { font-size: 14.5px; }
.box-note { background: var(--surface-2); }
.box-point { border-left: 4px solid var(--accent); }

/* アフィリエイトCTA（リンク設定後のみ表示） */
.cta {
  margin: 2.2em 0; padding: 22px; text-align: center;
  border: 1px solid var(--line-strong); border-radius: var(--radius); background: var(--surface-2);
}
.cta-title { margin: 0 0 8px; font-weight: 700; font-size: 16px; }
.cta-text { margin: 0 0 16px; font-size: 14px; color: var(--text-muted); }
.cta-action { margin: 0 0 10px; }
.cta-note { margin: 0; font-size: 11.5px; color: var(--text-muted); }

/* お問い合わせページのメールアドレス表示（迷惑メール対策） */
.mail-address {
  font-size: 18px; font-weight: 700; letter-spacing: 0.06em;
  padding: 14px 18px; background: var(--surface-2);
  border: 1px solid var(--line); border-radius: var(--radius);
  word-break: break-all;
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.post-footer {
  margin-top: 48px; padding-top: 20px; border-top: 1px solid var(--line);
  font-size: 13px; color: var(--text-muted);
}
.post-footer p { margin: 0 0 6px; }

.related { margin-top: 8px; }

/* --- フッター ------------------------------------------------------------ */
.site-footer {
  margin-top: 56px; padding-block: 40px 34px;
  background: var(--surface); border-top: 1px solid var(--line);
  font-size: 13.5px;
}
.footer-brand { margin: 0 0 4px; font-weight: 700; font-size: 16px; }
.footer-sub { margin: 0 0 22px; color: var(--text-muted); font-size: 13px; }
.footer-links {
  display: flex; flex-wrap: wrap; gap: 8px 20px; list-style: none; margin: 0 0 14px; padding: 0;
}
.footer-links a { color: var(--text); }
.footer-cats a { color: var(--text-muted); font-size: 13px; }
.footer-note { margin: 0 0 6px; color: var(--text-muted); font-size: 12.5px; }
.copyright { margin: 18px 0 0; color: var(--text-muted); font-size: 12px; }

/* --- スマートフォン ------------------------------------------------------ */
@media (max-width: 600px) {
  body { font-size: 15.5px; }
  .wrap { padding-inline: 16px; }
  .hero { padding-block: 34px 30px; }
  .section { padding-block: 30px; }
  .card-grid { grid-template-columns: 1fr; }
  .cat-grid, .value-grid, .axis-cards { grid-template-columns: 1fr; }
  .chip { padding: 8px 14px; font-size: 13.5px; }
  .axis-name { min-width: 100%; }
  .post-body { font-size: 16px; }
  .post-body > h2 { margin-top: 42px; font-size: 20px; }
  .post-body > h3 { font-size: 17px; }
  .toc { padding: 16px 18px; }
  .site-footer { margin-top: 40px; }
}

@media print {
  .site-nav, .breadcrumb, .site-footer, .related, .toc, .cta { display: none; }
}
