  :root {
    color-scheme: dark;
    --bg: #121014; --panel: #1a171b; --panel-2: #221e23; --border: #332e33;
    --text: #e8e4e6; --text-dim: #9c939b; --accent: #ff4d7e; --violet: #a86cff;
  }
  * { box-sizing: border-box; }
  body {
    margin: 0; padding: 14px 18px 44px; background: var(--bg); color: var(--text);
    font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
    line-height: 1.7; font-size: 14.5px;
  }
  .wrap { max-width: 900px; margin: 0 auto; }
  .brand-link { display: inline-flex; flex-direction: column; line-height: 1; text-decoration: none; margin-bottom: 16px; }
  .brand-en {
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    font-size: 20px; font-weight: 800; letter-spacing: .10em;
    background: linear-gradient(90deg, #ff8fb4, #ff4d7e 55%, #a86cff);
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .brand-ja { font-size: 10px; letter-spacing: .32em; color: var(--text-dim); margin-top: 5px; }

  .head { margin-bottom: 6px; display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
  .head .date { font-size: 12px; color: var(--text-dim); letter-spacing: .06em; }
  .head .archive-note { font-size: 12px; color: var(--violet); }
  h1 { font-size: 22px; margin: 0 0 16px; line-height: 1.45; }

  .lead-block {
    display: flex; gap: 14px; align-items: flex-start;
    background: var(--panel); border: 1px solid var(--border);
    border-radius: 8px; padding: 16px 18px; margin-bottom: 20px;
  }
  .lead-block img {
    width: 62px; height: 62px; border-radius: 50%; flex: none;
    border: 2px solid var(--accent); background: var(--panel-2); object-fit: cover;
  }
  .lead-name {
    font-family: "Segoe UI", Arial, sans-serif; font-weight: 800; font-size: 12.5px;
    letter-spacing: .08em; color: var(--accent); margin-bottom: 4px; text-decoration: none; display: inline-block;
  }
  .lead-text { white-space: pre-wrap; }

  .pick {
    display: flex; gap: 16px; background: var(--panel);
    border: 1px solid var(--border); border-radius: 8px;
    padding: 14px; margin-bottom: 14px; text-decoration: none; color: var(--text);
  }
  .pick:hover { border-color: var(--accent); }
  .pick .thumb { flex: none; width: 200px; aspect-ratio: 4 / 3; background: var(--panel-2); border-radius: 6px; overflow: hidden; }
  .pick .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .pick .body { flex: 1; min-width: 0; }
  .pick .title { font-size: 15px; font-weight: 700; line-height: 1.4; margin-bottom: 4px; }
  .pick .meta { font-size: 11.5px; color: var(--text-dim); margin-bottom: 8px; }
  .pick .comment { font-size: 13.5px; line-height: 1.8; }
  @media (max-width: 620px) {
    .pick { flex-direction: column; }
    .pick .thumb { width: 100%; }
  }

  .foot { margin-top: 22px; display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
  .btn {
    display: inline-block; padding: 7px 14px; background: var(--panel-2);
    border: 1px solid var(--border); border-radius: 6px;
    color: var(--text); text-decoration: none; font-size: 13px;
  }
  .btn:hover { border-color: var(--accent); }
  .essay-block {
    background: var(--panel); border: 1px solid var(--border);
    border-radius: 8px; padding: 16px 20px; margin-bottom: 14px;
  }
  .goods-block { display: flex; gap: 16px; align-items: flex-start; }
  .goods-thumb { flex: none; width: 160px; display: block; }
  .goods-thumb img { width: 100%; border-radius: 6px; display: block; background: var(--panel-2); }
  .goods-body { min-width: 0; }
  .disclaimer {
    margin-top: 20px; padding-top: 10px; border-top: 1px solid var(--border);
    color: #6f6970; font-size: 10.5px; line-height: 1.7;
  }
  .disclaimer a { color: #6f6970; }
  @media (max-width: 620px) {
    .goods-block { flex-direction: column; }
    .goods-thumb { width: 100%; max-width: 220px; }
  }
  .essay-heading a { text-decoration: none; }
  .essay-heading { font-size: 15px; margin: 0 0 8px; color: var(--accent); }
  .essay-body { font-size: 14px; line-height: 1.95; white-space: pre-wrap; }
  /* 前後の特集へ（2026-08-01）。読み終わったところで次に進めるよう本文の直後に置く */
  .feature-nav {
    margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border);
    display: flex; gap: 10px; justify-content: space-between; flex-wrap: wrap;
  }
  .feature-nav .disabled { opacity: .35; pointer-events: none; }

  .past { margin-top: 16px; font-size: 12px; color: var(--text-dim); }
  .past a { color: var(--text-dim); margin-right: 10px; }
  .past a:hover { color: var(--accent); }
  a { color: var(--accent); }
