
    /* ── 特商法ページ専用スタイル ── */
    .tokushoho-hero {
      padding-top: var(--nav-height);
      background: var(--color-bg-warm);
      border-bottom: 1px solid var(--color-border);
    }
    .tokushoho-hero__inner {
      padding-top: var(--spacing-xl);
      padding-bottom: var(--spacing-xl);
    }
    .tokushoho-hero__eyebrow {
      font-family: var(--font-sans);
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--color-accent);
      margin-bottom: 0.8rem;
    }
    .tokushoho-hero__title {
      font-family: var(--font-en);
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 300;
      line-height: 1.1;
      letter-spacing: 0.03em;
      color: var(--color-text);
      margin-bottom: 1rem;
    }
    .tokushoho-hero__sub {
      font-size: 0.82rem;
      color: var(--color-text-muted);
      line-height: 1.7;
    }

    /* ── テーブル本体 ── */
    .tokushoho-section {
      padding: var(--spacing-2xl) 0;
    }
    .tokushoho-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.9rem;
      line-height: 1.8;
    }
    .tokushoho-table th,
    .tokushoho-table td {
      padding: 1.4rem 1.6rem;
      text-align: left;
      border-bottom: 1px solid var(--color-border);
      vertical-align: top;
    }
    .tokushoho-table th {
      width: 28%;
      font-weight: 700;
      font-size: 0.82rem;
      color: var(--color-text);
      background: var(--color-bg-warm);
      letter-spacing: 0.02em;
      white-space: nowrap;
    }
    .tokushoho-table td {
      color: var(--color-text-muted);
    }
    .tokushoho-table tr:last-child th,
    .tokushoho-table tr:last-child td {
      border-bottom: none;
    }
    .tokushoho-table__wrapper {
      border: 1px solid var(--color-border);
      border-radius: var(--radius-md);
      overflow: hidden;
    }
    .tokushoho-table a {
      color: var(--color-accent);
      text-decoration: underline;
    }
    .tokushoho-table a:hover {
      opacity: 0.75;
    }
    .tokushoho-note {
      margin-top: var(--spacing-lg);
      padding: 1.4rem 1.8rem;
      background: var(--color-bg-warm);
      border-left: 3px solid var(--color-accent);
      border-radius: 0 var(--radius-md) var(--radius-md) 0;
      font-size: 0.82rem;
      color: var(--color-text-muted);
      line-height: 1.8;
    }
    .tokushoho-note strong {
      color: var(--color-text);
    }

    /* ── レスポンシブ ── */
    @media (max-width: 640px) {
      .tokushoho-table thead { display: none; }
      .tokushoho-table,
      .tokushoho-table tbody,
      .tokushoho-table tr,
      .tokushoho-table th,
      .tokushoho-table td {
        display: block;
        width: 100%;
      }
      .tokushoho-table tr {
        border-bottom: 1px solid var(--color-border);
        padding-bottom: 0.8rem;
        margin-bottom: 0.8rem;
      }
      .tokushoho-table tr:last-child {
        border-bottom: none;
        margin-bottom: 0;
      }
      .tokushoho-table th {
        background: transparent;
        padding: 1rem 1rem 0.2rem;
        font-size: 0.72rem;
        color: var(--color-accent);
        letter-spacing: 0.1em;
        white-space: normal;
      }
      .tokushoho-table td {
        padding: 0.2rem 1rem 0.8rem;
        border-bottom: none;
      }
    }
  