/* タイプ解説ページ共通スタイル */



  .types-wrap {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 16px 56px;
  }

  /* ===== フェードイン（3段階・各1秒・3秒以内に完了） ===== */
  @keyframes typesFadeIn {
    from {
      opacity: 0;
      transform: translateY(8px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .types-hero,
  .types-body,
  .types-foot {
    animation: typesFadeIn 1s ease both;
  }

  .types-hero {
    animation-delay: 0s;
  }

  .types-body {
    animation-delay: 1s;
  }

  .types-foot {
    animation-delay: 2s;
  }

  /* ===== タイプ別アクセントカラー ===== */
  .types-wrap.t-a {
    --type-accent: #6B8FB8;
  }

  /* A 冷却型: 雪色 */
  .types-wrap.t-b {
    --type-accent: #C97A5F;
  }

  /* B 再燃: 炎色 */
  .types-wrap.t-c {
    --type-accent: #8FAA8F;
  }

  /* C 並走: 風色 */
  .types-wrap.t-d {
    --type-accent: #6B7FA8;
  }

  /* D 距離: 波色 */

  /* ===== ヒーロー ===== */
  .types-hero {
    text-align: center;
    margin: 24px 0 36px;
    padding: 36px 24px;
    background: var(--bg-deep);
    border-bottom: 1px solid var(--gold-soft);
    position: relative;
  }

  .types-hero .eyebrow {
    font-size: 10px;
    letter-spacing: 0.32em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px;
    font-family: "YuGothic", sans-serif;
    font-weight: 600;
  }

  .types-hero .icon {
    font-size: 32px;
    color: var(--type-accent);
    margin-bottom: 8px;
  }

  .types-hero h1 {
    font-family: "YuMincho", serif;
    font-size: 28px;
    line-height: 1.4;
    color: var(--accent);
    letter-spacing: 0.08em;
    font-weight: 500;
    margin: 0 0 8px;
  }

  @media(min-width:768px) {
    .types-hero h1 {
      font-size: 36px;
    }
  }

  .types-hero .type-en {
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  .types-hero .summary {
    font-family: "YuMincho", serif;
    font-size: 13px;
    line-height: 1.95;
    color: var(--text-mute);
    letter-spacing: 0.04em;
    max-width: 560px;
    margin: 0 auto;
  }

  /* ===== セクション ===== */
  .types-section {
    margin-bottom: 28px;
    padding: 22px 24px;
    background: var(--bg-paper);
    border: 1px solid var(--line);
    position: relative;
  }

  .types-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--type-accent);
  }

  .types-section h2 {
    font-family: "YuMincho", serif;
    font-size: 16px;
    color: var(--accent);
    letter-spacing: 0.06em;
    font-weight: 500;
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: baseline;
    gap: 12px;
  }

  .types-section h2 .num {
    font-size: 10px;
    letter-spacing: 0.32em;
    color: var(--gold);
    font-family: "YuGothic", sans-serif;
    font-weight: 600;
  }

  .types-section .body {
    font-family: "YuMincho", serif;
    font-size: 14px;
    line-height: 2.0;
    color: var(--text);
    letter-spacing: 0.03em;
  }

  /* ===== アフィリ ===== */
  .types-affil h2 {
    text-align: center;
    font-family: "YuMincho", serif;
    font-size: 15px;
    color: var(--accent);
    letter-spacing: 0.08em;
    font-weight: 500;
    margin: 0 0 6px;
  }

  .types-affil .lead {
    text-align: center;
    font-size: 11px;
    color: var(--text-mute);
    letter-spacing: 0.04em;
    margin: 0 0 18px;
  }

  .types-affil-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 32px;
  }

  @media(min-width:640px) {
    .types-affil-list {
      grid-template-columns: 1fr 1fr;
    }
  }

  .affil-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 16px;
    background: var(--bg-paper);
    border: 1px solid var(--gold-soft);
    text-decoration: none;
    color: var(--text);
    transition: all .15s ease;
  }

  .affil-card:hover {
    border-color: var(--gold);
    background: var(--bg-deep);
  }

  .affil-card .pr-label {
    font-size: 12px;
    letter-spacing: 0.3em;
    color: var(--gold);
    font-family: "YuGothic", sans-serif;
    font-weight: 600;
    align-self: flex-start;
    padding: 2px 8px;
    border: 1px solid var(--gold-soft);
  }

  .affil-card .label {
    font-family: "YuMincho", serif;
    font-size: 14px;
    color: var(--accent);
    letter-spacing: 0.04em;
    margin-top: 4px;
  }

  .affil-card .cta {
    font-size: 12px;
    color: var(--text-mute);
    letter-spacing: 0.02em;
    line-height: 1.6;
  }

  /* ===== 他タイプ ===== */
  .types-others h2 {
    text-align: center;
    font-family: "YuMincho", serif;
    font-size: 15px;
    color: var(--accent);
    letter-spacing: 0.08em;
    font-weight: 500;
    margin: 0 0 18px;
  }

  .types-others-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 32px;
  }

  @media(min-width:640px) {
    .types-others-list {
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }
  }

  .other-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px;
    background: var(--bg-paper);
    border: 1px solid var(--line);
    text-decoration: none;
    color: var(--text);
    text-align: center;
    transition: all .15s ease;
  }

  .other-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
  }

  .other-card .icon {
    font-size: 20px;
    color: var(--gold);
  }

  .other-card .name {
    font-family: "YuMincho", serif;
    font-size: 14px;
    color: var(--accent);
    letter-spacing: 0.06em;
    margin-top: 6px;
  }

  .other-card .en {
    font-size: 9px;
    letter-spacing: 0.28em;
    color: var(--text-soft);
    text-transform: uppercase;
    font-family: "YuGothic", sans-serif;
  }

  /* ===== CTA ===== */
  .types-cta {
    text-align: center;
    margin: 32px 0;
    padding: 28px 24px;
    background: var(--bg-deep);
    border-top: 1px solid var(--gold-soft);
    border-bottom: 1px solid var(--gold-soft);
  }

  .types-cta h2 {
    font-family: "YuMincho", serif;
    font-size: 18px;
    color: var(--accent);
    letter-spacing: 0.08em;
    font-weight: 500;
    margin: 0 0 6px;
  }

  .types-cta .lead {
    font-size: 12px;
    color: var(--text-mute);
    letter-spacing: 0.04em;
    margin: 0 0 18px;
  }

  .types-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: var(--accent);
    color: var(--bg-paper);
    font-family: "YuMincho", serif;
    font-size: 14px;
    letter-spacing: 0.18em;
    text-decoration: none;
    border: 1px solid var(--accent);
    transition: all .2s;
  }

  .types-cta .btn:hover {
    background: var(--bg-paper);
    color: var(--accent);
  }

  /* ===== 免責 ===== */
  .types-disclaimer {
    padding: 18px 22px;
    background: var(--bg-deep);
    border-left: 2px solid var(--gold);
    font-size: 12px;
    color: var(--text-mute);
    line-height: 1.95;
    letter-spacing: 0.02em;
  }
