  /* ---------- Tokens (Tweak-driven defaults) ---------- */
  :root {
    --washi: #f4ede0;
    /* paper base */
    --washi-warm: #ece3d1;
    /* deeper warm card */
    --ink: #141414;
    --ink-soft: #3b3b3b;
    --ink-mute: #7a7268;

    --shinbashi: #64bcc7;
    /* 新橋色 — primary */
    --shinbashi-d: #3f96a2;
    --moegi: #006D4D;
    /* 萌葱色 */
    --kaki: #F39800;
    /* 柿色 */
    --noshime: #1f3551;
    /* 熨斗目色 */
    --hi: #a8353a;
    /* 緋色 accent – quieter */

    --rule: #1a1a1a;
    --hair: rgba(20, 20, 20, .14);

    --fs-display: clamp(64px, 9.2vw, 148px);
    --fs-h1: clamp(40px, 5.2vw, 78px);
    --fs-h2: clamp(28px, 3vw, 44px);
    --fs-body: 16px;
    --fs-small: 12px;

    --mincho: "Shippori Mincho", "Cormorant Garamond", "Hiragino Mincho ProN", serif;
    --sans: "Noto Sans JP", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --mono: "JetBrains Mono", "SFMono-Regular", Menlo, monospace;
  }

  * {
    box-sizing: border-box
  }

  html,
  body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
  }

  body {
    background: var(--washi);
    color: var(--ink);
    font-family: var(--sans);
    font-size: var(--fs-body);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "palt";
  }

  a {
    color: inherit;
    text-decoration: none
  }

  img {
    max-width: 100%;
    display: block
  }

  /* Subtle washi grain */
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    background-image:
      radial-gradient(rgba(30, 20, 10, .04) 1px, transparent 1px),
      radial-gradient(rgba(30, 20, 10, .03) 1px, transparent 1px);
    background-size: 3px 3px, 7px 7px;
    background-position: 0 0, 1px 1px;
    mix-blend-mode: multiply;
    opacity: .55;
  }

  .wrap {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 48px;
  }

  @media (max-width:720px) {
    .wrap {
      padding: 0 22px
    }
  }

  .rule {
    border-top: 1px solid var(--rule);
  }

  .hair {
    border-top: 1px solid var(--hair);
  }

  .kicker {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--ink-mute);
  }

  .tate {
    writing-mode: vertical-rl;
    text-orientation: mixed;
  }

  /* ---------- Top nav ---------- */
  .topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    background: var(--washi);
    border-bottom: 1px solid var(--rule);
  }

  .topbar-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    padding: 14px 48px;
  }

  @media (max-width:720px) {
    .topbar-inner {
      padding: 12px 22px;
      grid-template-columns: 1fr auto
    }
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--mincho);
    font-weight: 700;
    letter-spacing: .04em;
  }

  .brand .mark {
    width: auto;
    height: 30px;
  }

  .brand .name {
    width: auto;
    height: 160px;
  }

  .nav {
    display: flex;
    gap: 24px;
    justify-content: center;
    font-size: 13px;
    letter-spacing: .08em;
  }

  .nav a {
    position: relative;
    padding: 6px 0;
    color: var(--ink-soft);
  }

  .nav a:hover {
    color: var(--ink)
  }

  .nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 0;
    height: 1px;
    background: var(--ink);
    transition: right .35s ease;
  }

  .nav a:hover::after {
    right: 0;
  }

  .top-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    letter-spacing: .14em;
  }

  .top-right .lang {
    display: flex;
    gap: 8px;
    color: var(--ink-mute);
    font-family: var(--mono);
  }

  .top-right .lang .on {
    color: var(--ink);
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: var(--ink);
    color: var(--washi);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    border: 1px solid var(--ink);
    transition: background .2s, color .2s;
  }

  .btn:hover {
    background: var(--shinbashi);
    border-color: var(--shinbashi);
    color: var(--ink);
  }

  .btn.ghost {
    background: transparent;
    color: var(--ink);
  }

  .btn.ghost:hover {
    background: var(--ink);
    color: var(--washi);
  }

  .btn.primary {
    background: var(--shinbashi);
    color: var(--ink);
    border-color: var(--shinbashi);
  }

  .btn.primary:hover {
    background: var(--ink);
    color: var(--shinbashi);
  }

  @media (max-width:960px) {

    .nav,
    .top-right {
      display: none
    }
  }

  /* Hamburger button */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }

  .hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--ink);
    transition: transform .3s, opacity .3s;
  }

  .hamburger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  @media (max-width:960px) {
    .hamburger {
      display: flex
    }
  }

  /* Mobile nav drawer */
  .mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    top: 57px;
    background: var(--washi);
    z-index: 9;
    flex-direction: column;
    padding: 40px 28px 60px;
    border-top: 1px solid var(--ink);
    overflow-y: auto;
  }

  .mobile-nav.open {
    display: flex;
  }

  .mobile-nav a {
    font-family: var(--mincho);
    font-size: 24px;
    letter-spacing: .06em;
    padding: 20px 0;
    border-bottom: 1px solid var(--hair);
    color: var(--ink);
  }

  .mobile-nav a:hover {
    color: var(--shinbashi);
  }

  .mobile-nav .mobile-cta {
    margin-top: 36px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  /* ---------- Hero (16:9 full-bleed) ---------- */
  .hero {
    position: relative;
    padding: 28px 0 0;
  }

  .hero-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--ink);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .2em;
    color: var(--ink-mute);
  }

  .hero-meta .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--kaki);
    margin-right: 10px;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {

    0%,
    100% {
      opacity: 1
    }

    50% {
      opacity: .4
    }
  }

  .hero-stage {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0b0b0d;
    border: 1px solid var(--ink);
    color: var(--washi);
  }

  .hero-stage .img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 40%;
    background-image: url("uploads/KAZ20181201010_TP_V.webp");
    transform: scale(1.02);
    transition: transform 8s ease;
  }

  .hero-stage:hover .img {
    transform: scale(1.06);
  }

  .hero-stage .veil {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(10, 10, 12, .15) 0%, rgba(10, 10, 12, .05) 35%, rgba(10, 10, 12, .55) 72%, rgba(10, 10, 12, .88) 100%),
      linear-gradient(90deg, rgba(10, 10, 12, .75) 0%, rgba(10, 10, 12, .28) 42%, rgba(10, 10, 12, 0) 62%);
  }

  .hero-stage .grain {
    position: absolute;
    inset: 0;
    opacity: .08;
    background-image:
      radial-gradient(rgba(255, 255, 255, .8) 1px, transparent 1px),
      radial-gradient(rgba(0, 0, 0, .9) 1px, transparent 1px);
    background-size: 3px 3px, 5px 5px;
    mix-blend-mode: overlay;
    pointer-events: none;
  }

  /* Stage chrome — thin borders echoing noh stage framing */
  .hero-stage .frame {
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(244, 237, 224, .22);
    pointer-events: none;
  }

  .hero-stage .corner {
    position: absolute;
    width: 22px;
    height: 22px;
    border: 1px solid var(--shinbashi);
  }

  .hero-stage .corner.tl {
    top: 13px;
    left: 13px;
    border-right: 0;
    border-bottom: 0;
  }

  .hero-stage .corner.tr {
    top: 13px;
    right: 13px;
    border-left: 0;
    border-bottom: 0;
  }

  .hero-stage .corner.bl {
    bottom: 13px;
    left: 13px;
    border-right: 0;
    border-top: 0;
  }

  .hero-stage .corner.br {
    bottom: 13px;
    right: 13px;
    border-left: 0;
    border-top: 0;
  }

  /* Content overlay */
  .hero-content {
    position: absolute;
    inset: 0;
    padding: clamp(40px, 6vw, 96px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .hero-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .24em;
    color: rgba(244, 237, 224, .7);
  }

  .hero-top .tate {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: var(--mincho);
    font-size: 13px;
    letter-spacing: .6em;
    color: rgba(244, 237, 224, .85);
  }

  .hero-bot {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: clamp(20px, 3vw, 40px);
    flex-wrap: wrap;
    width: 100%;
  }

  .hero-bot>div:first-child {
    flex: 1 1 min(520px, 100%);
    min-width: 0;
    container-type: inline-size;
  }

  .hero h1 {
    font-family: var(--mincho);
    font-weight: 500;
    font-size: clamp(28px, 4.8vw, 96px);
    line-height: 1.05;
    letter-spacing: .01em;
    margin: 0 0 clamp(12px, 1.5vw, 22px);
    color: var(--washi);
    text-wrap: balance;
  }

  .hero h1 .jp {
    display: block;
    font-size: .26em;
    letter-spacing: .2em;
    color: rgba(244, 237, 224, .75);
    margin-bottom: 18px;
    font-weight: 400;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--shinbashi);
    font-family: "Cormorant Garamond", var(--mincho);
    font-weight: 400;
  }

  .hero h1 u {
    text-decoration: none;
    background-image: linear-gradient(transparent 62%, rgba(100, 188, 199, .55) 62%, rgba(100, 188, 199, .55) 82%, transparent 82%);
    padding: 0 4px;
  }

  .hero-lede {
    font-family: var(--mincho);
    font-size: clamp(11px, 3.1cqi, 16px);
    line-height: 1.85;
    max-width: min(580px, 100%);
    color: rgba(244, 237, 224, .85);
    margin: 0 0 clamp(16px, 2vw, 28px);
    overflow-wrap: anywhere;
  }

  .hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
  }

  .hero-cta .btn {
    border-color: rgba(244, 237, 224, .9);
  }

  .hero-cta .btn.ghost {
    color: var(--washi);
    border-color: rgba(244, 237, 224, .7);
  }

  .hero-cta .btn.ghost:hover {
    background: var(--washi);
    color: var(--ink);
  }

  .hero-cta .status {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(244, 237, 224, .6);
  }

  /* Right rail: vertical label + mini cube */
  .hero-rail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    flex: 0 0 auto;
  }

  .hero-rail .cube {
    width: clamp(80px, 8vw, 140px);
    height: auto;
    opacity: .95;
  }

  .hero-rail .caption {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .22em;
    color: rgba(244, 237, 224, .55);
    text-transform: uppercase;
    text-align: right;
  }

  /* Seigaiha strip below hero */
  .seigaiha-strip {
    margin-top: 26px;
    height: 44px;
    background-image: var(--seigaiha);
    background-size: 44px 44px;
    background-repeat: repeat;
    background-position: center;
    opacity: .45;
  }

  @media (max-width: 600px) {
    .hero-content {
      padding: 18px 20px;
    }

    .hero-rail {
      display: none;
    }

    .hero h1 {
      font-size: clamp(26px, 7.5vw, 48px);
      line-height: 1.1;
    }

    .hero-top .tate {
      display: none;
    }

    .hero-cta .status {
      display: none;
    }
  }

  @media (max-width:960px) and (min-width:601px) {
    .hero-rail .cube {
      width: clamp(60px, 7vw, 110px);
    }
  }

  @media (max-width: 720px) {

    .hero-lede,
    .hero-cta {
      display: none;
    }
  }

  @media (max-width: 1024px) {

    .hero-cta,
    .hero-rail {
      display: none;
    }

    .brand .name {
      height: 80px;
    }
  }

  /* ---------- Section header ---------- */
  .section {
    padding: 60px 0 40px;
  }

  .section-head {
    display: grid;
    grid-template-columns: 96px 1fr auto;
    gap: 32px;
    align-items: baseline;
    padding-bottom: 26px;
    border-bottom: 1px solid var(--ink);
    margin-bottom: 46px;
  }

  .section-head .num {
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: .14em;
    color: var(--ink-mute);
  }

  .section-head h2 {
    font-family: var(--mincho);
    font-weight: 500;
    font-size: var(--fs-h2);
    line-height: 1.1;
    margin: 0;
    letter-spacing: .02em;
  }

  .section-head h2 .en {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 400;
    font-size: .46em;
    color: var(--ink-mute);
    margin-bottom: 10px;
    letter-spacing: .04em;
  }

  .section-head .aside {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .2em;
    color: var(--ink-mute);
    text-transform: uppercase;
    text-align: right;
  }

  @media (max-width:720px) {
    .section-head {
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .section-head .aside {
      text-align: left;
    }
  }

  /* ---------- About band ---------- */
  .about-band {
    padding: 80px 0 72px;
    border-bottom: 1px solid var(--ink);
  }

  .about-inner {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: start;
  }

  @media (max-width:760px) {
    .about-inner {
      grid-template-columns: 1fr;
      gap: 32px;
    }
  }

  .about-left .kicker {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 22px;
  }

  .about-headline {
    font-family: var(--mincho);
    font-weight: 500;
    font-size: clamp(26px, 3.2vw, 46px);
    line-height: 1.45;
    letter-spacing: .03em;
    margin: 0;
  }

  .about-headline::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: var(--shinbashi);
    margin-top: 28px;
  }

  .about-right p {
    font-family: var(--mincho);
    font-size: clamp(15px, 1.25vw, 17px);
    line-height: 2.0;
    color: var(--ink-soft);
    margin: 0 0 32px;
  }

  .about-right p strong {
    color: var(--ink);
    font-weight: 600;
    background-image: linear-gradient(transparent 68%, rgba(100, 188, 199, .4) 68%);
    padding: 0 2px;
  }

  .about-pills {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .about-pills li {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .14em;
    padding: 0;
    /* paddingを解除（単一リンクを広げるため） */
    border: 1px solid var(--ink);
    color: var(--ink-soft);
    white-space: nowrap;
    transition: background .2s, color .2s;
    cursor: pointer;
  }

  /* 単一リンク：ピル全体の余白とクリック領域 */
  .about-pills li a {
    display: block;
    padding: 6px 14px;
    color: inherit;
    text-decoration: none;
  }

  /* 複数リンクを含むピル用の例外処理 */
  .about-pills li.is-multi {
    padding: 6px 14px;
    /* li自体に余白を持たせる */
    cursor: default;
  }

  .about-pills li.is-multi a {
    display: inline;
    padding: 0;
    color: inherit;
    text-decoration: none;
  }

  .about-pills li.is-multi a:hover {
    text-decoration: underline;
  }

  .about-pills li:hover {
    background: var(--shinbashi);
    border-color: var(--shinbashi);
    color: var(--ink);
  }

  /* ---------- Content lineup ---------- */
  .lineup {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--ink);
    border-left: 1px solid var(--ink);
  }

  .lineup-row {
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    transition: background .3s;
    overflow: hidden;
  }

  .lineup-row:hover {
    background: rgba(100, 188, 199, .06);
  }

  .lineup-row.is-kaki:hover {
    background: rgba(243, 152, 0, .06);
  }

  .lineup-row.is-moegi:hover {
    background: rgba(0, 109, 77, .05);
  }

  .lineup-row.is-noshime:hover {
    background: rgba(31, 53, 81, .05);
  }

  /* Thumbnail image area */
  .lineup-row .thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--washi-warm);
    position: relative;
    overflow: hidden;
    background-image:
      repeating-linear-gradient(135deg,
        rgba(20, 20, 20, .045) 0px,
        rgba(20, 20, 20, .045) 1px,
        transparent 1px,
        transparent 9px);
    display: flex;
    align-items: flex-end;
    border-bottom: 1px solid var(--hair);
  }

  .lineup-row .thumb .thumb-lbl {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .18em;
    color: var(--ink-mute);
    text-transform: uppercase;
    padding: 8px 12px;
    position: relative;
    z-index: 1;
  }

  .lineup-row .thumb .thumb-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 0;
    transition: transform .6s ease;
  }

  .lineup-row:hover .thumb .thumb-img {
    transform: scale(1.04);
  }

  .lineup-row .thumb:has(.thumb-img) {
    background-image: none;
  }

  .lineup-row .thumb .thumb-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--shinbashi);
    z-index: 2;
  }

  .lineup-row.is-kaki .thumb .thumb-accent {
    background: var(--kaki);
  }

  .lineup-row.is-moegi .thumb .thumb-accent {
    background: var(--moegi);
  }

  .lineup-row.is-noshime .thumb .thumb-accent {
    background: var(--noshime);
  }

  /* Text body */
  .lineup-row .body {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
  }

  .lineup-row .no {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--ink-mute);
    letter-spacing: .14em;
  }

  .lineup-row .cat {
    font-family: var(--mincho);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: .04em;
    line-height: 1.2;
  }

  .lineup-row .cat .en {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 12px;
    color: var(--ink-mute);
    margin-top: 3px;
    letter-spacing: .08em;
  }

  .lineup-row .desc {
    font-family: var(--mincho);
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.8;
    flex: 1;
  }

  .lineup-row .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 4px;
  }

  .lineup-row .tags span {
    font-family: var(--mono);
    font-size: 10px;
    padding: 2px 8px;
    border: 1px solid var(--hair);
    color: var(--ink-soft);
    letter-spacing: .06em;
  }

  @media (max-width:900px) {
    .lineup {
      grid-template-columns: repeat(2, 1fr);
    }
  }

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

  /* ---------- Programme schedule (EPG) ---------- */
  .epg {
    background: var(--washi-warm);
    border: 1px solid var(--ink);
    padding: 24px;
    overflow-x: auto;
  }

  .epg table {
    width: 100%;
    border-collapse: collapse;
    min-width: 860px;
    font-size: 13px;
  }

  .epg thead th {
    font-family: var(--mono);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: 14px 10px;
    border-bottom: 1px solid var(--ink);
    text-align: left;
    color: var(--ink-mute);
  }

  .epg thead th.today {
    color: var(--ink);
  }

  .epg thead th .date {
    font-family: var(--mincho);
    font-size: 18px;
    color: var(--ink);
    display: block;
    margin-top: 4px;
    letter-spacing: 0;
    text-transform: none;
  }

  .epg tbody td {
    padding: 10px 10px;
    border-bottom: 1px solid var(--hair);
    vertical-align: top;
    font-family: var(--mincho);
  }

  .epg .time {
    font-family: var(--mono);
    color: var(--ink-mute);
    font-size: 11px;
    letter-spacing: .08em;
    width: 72px;
  }

  .epg .slot {
    padding: 10px 12px;
    border-left: 2px solid transparent;
    cursor: pointer;
    transition: background .25s, border-color .25s;
  }

  .epg .slot:hover {
    background: var(--washi);
  }

  .epg .slot.sb {
    border-left-color: var(--shinbashi);
  }

  .epg .slot.mg {
    border-left-color: var(--moegi);
  }

  .epg .slot.kk {
    border-left-color: var(--kaki);
  }

  .epg .slot.ns {
    border-left-color: var(--noshime);
  }

  .epg .slot .genre {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .18em;
    color: var(--ink-mute);
    text-transform: uppercase;
    display: block;
    margin-bottom: 3px;
  }

  .epg .slot .title {
    font-size: 14px;
    color: var(--ink);
    line-height: 1.4;
  }

  .epg .slot.live .genre::before {
    content: "● LIVE   ";
    color: var(--hi);
    font-weight: 700;
  }

  .epg-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--hair);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .14em;
    color: var(--ink-mute);
    text-transform: uppercase;
  }

  /* ---------- Mission band ---------- */
  .mission {
    background: var(--noshime);
    color: var(--washi);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    margin-top: 120px;
  }

  .mission::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--seigaiha-light);
    background-size: 44px 44px;
    opacity: .18;
    pointer-events: none;
  }

  .mission .wrap {
    position: relative;
  }

  .mission .kicker {
    color: var(--shinbashi);
  }

  .mission h2 {
    font-family: var(--mincho);
    font-weight: 400;
    font-size: clamp(32px, 4.2vw, 64px);
    line-height: 1.4;
    margin: 28px 0 0;
    max-width: 30em;
    letter-spacing: .04em;
  }

  .mission h2 em {
    font-style: normal;
    color: var(--shinbashi);
  }

  .mission .meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, .2);
  }

  .mission .meta h3 {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 400;
    font-size: 32px;
    margin: 0 0 8px;
    color: var(--shinbashi);
  }

  .mission .meta p {
    margin: 0;
    color: rgba(255, 255, 255, .8);
    font-size: 14px;
    line-height: 1.8;
    font-family: var(--mincho);
  }

  @media (max-width:720px) {
    .mission .meta {
      grid-template-columns: 1fr
    }
  }

  /* ---------- Values ---------- */
  .values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
  }

  .value {
    padding: 40px 26px 46px;
    border-right: 1px solid var(--hair);
    position: relative;
  }

  .value:last-child {
    border-right: none;
  }

  .value .ch {
    font-family: var(--mincho);
    font-size: 72px;
    line-height: 1;
    color: var(--shinbashi);
    margin-bottom: 22px;
    letter-spacing: .02em;
  }

  .value h3 {
    font-family: var(--mincho);
    font-weight: 500;
    font-size: 22px;
    margin: 0 0 6px;
  }

  .value .en {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 13px;
    color: var(--ink-mute);
    margin-bottom: 20px;
  }

  .value p {
    font-family: var(--mincho);
    font-size: 14px;
    line-height: 1.9;
    color: var(--ink-soft);
    margin: 0;
  }

  .value.is-kaki .ch {
    color: var(--kaki);
  }

  .value.is-moegi .ch {
    color: var(--moegi);
  }

  .value.is-noshime .ch {
    color: var(--noshime);
  }

  @media (max-width:960px) {
    .values {
      grid-template-columns: repeat(2, 1fr);
    }

    .value {
      border-bottom: 1px solid var(--hair);
    }

    .value:nth-child(2n) {
      border-right: none;
    }
  }

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

    .value {
      border-right: none;
      border-bottom: 1px solid var(--hair);
    }
  }

  /* ---------- Featured programme card row ---------- */
  .features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .feature {
    background: var(--washi-warm);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--hair);
    transition: transform .4s, border-color .3s;
  }

  .feature:hover {
    transform: translateY(-3px);
    border-color: var(--ink);
  }

  .feature .thumb {
    aspect-ratio: 4 / 3;
    background-image:
      repeating-linear-gradient(135deg,
        rgba(20, 20, 20, .055) 0px,
        rgba(20, 20, 20, .055) 1px,
        transparent 1px,
        transparent 8px);
    background-color: var(--washi);
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
  }

  .feature .thumb .lbl {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .2em;
    color: var(--ink-mute);
    text-transform: uppercase;
    padding: 10px 12px;
  }

  .feature .thumb .badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .18em;
    padding: 3px 9px;
    background: var(--ink);
    color: var(--washi);
  }

  .feature .thumb .badge.sb {
    background: var(--shinbashi);
    color: var(--ink);
  }

  .feature .thumb .badge.kk {
    background: var(--kaki);
    color: var(--ink);
  }

  .feature .thumb .badge.mg {
    background: var(--moegi);
    color: var(--washi);
  }

  .feature .body {
    padding: 22px 22px 26px;
  }

  .feature .body .meta {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .18em;
    color: var(--ink-mute);
    text-transform: uppercase;
    margin-bottom: 10px;
  }

  .feature .body h3 {
    font-family: var(--mincho);
    font-weight: 500;
    font-size: 22px;
    margin: 0 0 6px;
    letter-spacing: .02em;
  }

  .feature .body p {
    font-family: var(--mincho);
    font-size: 13px;
    color: var(--ink-soft);
    margin: 6px 0 0;
    line-height: 1.8;
  }

  @media (max-width:860px) {
    .features {
      grid-template-columns: 1fr 1fr
    }
  }

  @media (max-width:560px) {
    .features {
      grid-template-columns: 1fr
    }
  }

  /* ---------- System diagram (strict, not gimmicky) ---------- */
  .stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--ink);
  }

  .stack>div {
    padding: 36px;
    border-right: 1px solid var(--hair);
  }

  .stack>div:last-child {
    border-right: none;
  }

  .stack h3 {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 400;
    font-size: 28px;
    margin: 0 0 16px;
    color: var(--shinbashi-d);
  }

  .stack h3 .jp {
    display: block;
    font-family: var(--mincho);
    font-style: normal;
    font-size: 14px;
    color: var(--ink);
    margin-top: 4px;
    letter-spacing: .08em;
  }

  .stack ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
  }

  .stack li {
    font-family: var(--mincho);
    font-size: 14px;
    color: var(--ink-soft);
    padding: 10px 0;
    border-top: 1px solid var(--hair);
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .stack li::before {
    content: attr(data-no);
    font-family: var(--mono);
    font-size: 10px;
    color: var(--ink-mute);
    letter-spacing: .14em;
    min-width: 28px;
  }

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

    .stack>div {
      border-right: none;
      border-bottom: 1px solid var(--hair);
    }
  }

  /* ---------- Pricing ---------- */
  .pricing {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
  }

  @media (max-width:860px) {
    .pricing {
      grid-template-columns: 1fr
    }
  }

  .price-card {
    background: var(--ink);
    color: var(--washi);
    padding: 48px;
    position: relative;
    overflow: hidden;
  }

  .price-card::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 260px;
    height: 260px;
    background-image: var(--seigaiha-light);
    background-size: 44px 44px;
    opacity: .2;
  }

  .price-card .kicker {
    color: var(--shinbashi);
  }

  .price-card h2 {
    font-family: var(--mincho);
    font-weight: 400;
    font-size: clamp(32px, 8.5vw, 42px);
    margin: 20px 0 4px;
    letter-spacing: .04em;
  }

  .price-card .en {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    color: rgba(255, 255, 255, .6);
    font-size: 14px;
  }

  .price-card .num {
    margin-top: 42px;
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-family: var(--mincho);
  }

  .price-card .num .amt {
    font-size: 82px;
    line-height: 1;
    color: var(--shinbashi);
    letter-spacing: -.02em;
  }

  .price-card .num .per {
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
    font-family: var(--mono);
    letter-spacing: .14em;
  }

  .price-card .list {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .15);
    font-family: var(--mincho);
    font-size: 14px;
    line-height: 2.1;
    color: rgba(255, 255, 255, .85);
  }

  .price-card .list span {
    color: var(--shinbashi);
    margin-right: 10px;
  }

  .price-card .cta {
    margin-top: 36px;
  }

  .price-card .cta .btn {
    background: var(--shinbashi);
    color: var(--ink);
    border-color: var(--shinbashi);
  }

  .price-card .cta .btn:hover {
    background: var(--washi);
    border-color: var(--washi);
  }

  .pricing .notes h3 {
    font-family: var(--mincho);
    font-weight: 500;
    font-size: 28px;
    margin: 0 0 20px;
    line-height: 1.4;
  }

  .pricing .notes p {
    font-family: var(--mincho);
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.9;
    max-width: 520px;
  }

  .pricing .notes ul {
    list-style: none;
    margin: 32px 0 0;
    padding: 0;
  }

  .pricing .notes li {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 20px;
    padding: 14px 0;
    border-top: 1px solid var(--hair);
    font-family: var(--mincho);
    font-size: 14px;
  }

  .pricing .notes li b {
    font-weight: 500;
    color: var(--ink-mute);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding-top: 4px;
  }

  /* ---------- Newsletter / registration ---------- */
  .signup {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 100px 0;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
  }

  @media (max-width:720px) {
    .signup {
      grid-template-columns: 1fr
    }
  }

  .signup h2 {
    font-family: var(--mincho);
    font-weight: 400;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.25;
    margin: 0;
    letter-spacing: .04em;
  }

  .signup form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 480px;
    justify-self: end;
    width: 100%;
  }

  @media (max-width:720px) {
    .signup form {
      justify-self: start;
    }
  }

  .signup label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ink-mute);
  }

  .signup input {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--ink);
    padding: 12px 0;
    font-family: var(--mincho);
    font-size: 18px;
    color: var(--ink);
    outline: none;
    transition: border-color .2s;
  }

  .signup input:focus {
    border-color: var(--shinbashi);
  }

  .signup .row {
    display: flex;
    gap: 14px;
    margin-top: 20px;
    align-items: center;
    flex-wrap: wrap;
  }

  .signup .muted {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .18em;
    color: var(--ink-mute);
  }

  .signup .small {
    font-family: var(--mincho);
    font-size: 12px;
    color: var(--ink-mute);
    margin-top: 18px;
  }

  /* ---------- Footer ---------- */
  footer {
    padding: 60px 0 38px;
    font-size: 13px;
  }

  .footgrid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 56px;
  }

  @media (max-width:720px) {
    .footgrid {
      grid-template-columns: 1fr 1fr
    }
  }

  .footgrid h4 {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin: 0 0 16px;
  }

  .footgrid a {
    display: block;
    padding: 4px 0;
    font-family: var(--mincho);
    font-size: 14px;
    color: var(--ink-soft);
  }

  .footgrid a:hover {
    color: var(--ink);
  }

  .footcopy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--hair);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .14em;
    color: var(--ink-mute);
    flex-wrap: wrap;
    gap: 14px;
  }

  .brand-lg {
    display: block;
    width: 210px;
    height: auto;
    margin: 6px 0 18px -2px;
  }

  footer p.tag {
    font-family: var(--mincho);
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.9;
    max-width: 360px;
  }

  /* ---------- Seigaiha pattern (shared) ---------- */
  :root {
    --seigaiha: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 44'><g fill='none' stroke='%2364bcc7' stroke-width='0.9'><path d='M0 22 A22 22 0 0 1 44 22'/><path d='M6 22 A16 16 0 0 1 38 22'/><path d='M12 22 A10 10 0 0 1 32 22'/><path d='M18 22 A4 4 0 0 1 26 22'/><path d='M-22 44 A22 22 0 0 1 22 44'/><path d='M-16 44 A16 16 0 0 1 16 44'/><path d='M-10 44 A10 10 0 0 1 10 44'/><path d='M-4 44 A4 4 0 0 1 4 44'/><path d='M22 44 A22 22 0 0 1 66 44'/><path d='M28 44 A16 16 0 0 1 60 44'/><path d='M34 44 A10 10 0 0 1 54 44'/><path d='M40 44 A4 4 0 0 1 48 44'/></g></svg>");
    --seigaiha-light: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 44'><g fill='none' stroke='%2364bcc7' stroke-width='1.1'><path d='M0 22 A22 22 0 0 1 44 22'/><path d='M6 22 A16 16 0 0 1 38 22'/><path d='M12 22 A10 10 0 0 1 32 22'/><path d='M18 22 A4 4 0 0 1 26 22'/><path d='M-22 44 A22 22 0 0 1 22 44'/><path d='M-16 44 A16 16 0 0 1 16 44'/><path d='M-10 44 A10 10 0 0 1 10 44'/><path d='M-4 44 A4 4 0 0 1 4 44'/><path d='M22 44 A22 22 0 0 1 66 44'/><path d='M28 44 A16 16 0 0 1 60 44'/><path d='M34 44 A10 10 0 0 1 54 44'/><path d='M40 44 A4 4 0 0 1 48 44'/></g></svg>");
  }

  /* ---------- Tweaks panel ---------- */
  .tweaks {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    background: var(--washi);
    border: 1px solid var(--ink);
    width: 280px;
    font-family: var(--mono);
    font-size: 11px;
    display: none;
    box-shadow: 6px 6px 0 rgba(0, 0, 0, .08);
  }

  .tweaks.open {
    display: block;
  }

  .tweaks h5 {
    margin: 0;
    padding: 14px 16px;
    border-bottom: 1px solid var(--hair);
    letter-spacing: .24em;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
  }

  .tweaks .body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .tweaks label {
    display: block;
    letter-spacing: .18em;
    color: var(--ink-mute);
    margin-bottom: 8px;
    text-transform: uppercase;
    font-size: 10px;
  }

  .tweaks .swatches {
    display: flex;
    gap: 8px;
  }

  .tweaks .sw {
    width: 28px;
    height: 28px;
    cursor: pointer;
    border: 1px solid var(--hair);
    transition: transform .2s;
  }

  .tweaks .sw:hover {
    transform: scale(1.1);
  }

  .tweaks .sw.on {
    outline: 2px solid var(--ink);
    outline-offset: 2px;
  }

  .tweaks select,
  .tweaks input[type=range] {
    width: 100%;
    font-family: var(--mono);
    font-size: 11px;
    border: 1px solid var(--hair);
    background: var(--washi);
    padding: 6px;
  }

  /* Accent-as-primary bindings driven by Tweaks */
  body[data-accent="kaki"] {
    --shinbashi: #F39800;
    --shinbashi-d: #b26b00;
  }

  body[data-accent="moegi"] {
    --shinbashi: #006D4D;
    --shinbashi-d: #004d37;
  }

  body[data-accent="noshime"] {
    --shinbashi: #1f3551;
    --shinbashi-d: #14273c;
  }

  body[data-bg="cooler"] {
    --washi: #f2f1eb;
    --washi-warm: #e7e6de;
  }

  body[data-bg="paler"] {
    --washi: #f9f5eb;
    --washi-warm: #f1ebd9;
  }

  body[data-bg="ink"] {
    --washi: #1a1a1a;
    --washi-warm: #242422;
    --ink: #f4ede0;
    --ink-soft: #d3ccbe;
    --ink-mute: #9a9385;
    --rule: #f4ede0;
    --hair: rgba(244, 237, 224, .15);
  }

  body[data-pattern="off"] .seigaiha-strip,
  body[data-pattern="off"] .mission::before,
  body[data-pattern="off"] .price-card::after {
    display: none;
  }

  /* ---------- Monitor Recruitment ---------- */
  .monitor-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: start;
    margin-top: 20px;
  }

  @media (max-width: 960px) {
    .monitor-container {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  }

  .monitor-catch {
    font-family: var(--mincho);
    font-weight: 500;
    font-size: clamp(20px, 2.2vw, 32px);
    line-height: 1.5;
    margin: 0 0 32px;
    color: var(--ink);
    border-left: 3px solid var(--shinbashi);
    padding-left: 16px;
  }

  .monitor-block {
    margin-bottom: 32px;
  }

  .monitor-sub-title {
    font-family: var(--mincho);
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 16px;
    letter-spacing: 0.08em;
    border-bottom: 1px solid var(--rule);
    padding-bottom: 8px;
  }

  /* 特典リスト */
  .monitor-features {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .monitor-features li {
    position: relative;
    padding-left: 24px;
    font-family: var(--mincho);
    font-size: 15px;
    line-height: 2;
    color: var(--ink-soft);
    margin-bottom: 8px;
  }

  .monitor-features li::before {
    content: "・";
    position: absolute;
    left: 4px;
    color: var(--shinbashi);
    font-weight: bold;
  }

  /* スケジュール */
  .monitor-schedule {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .monitor-schedule li {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 20px;
    padding: 12px 0;
    border-top: 1px solid var(--hair);
    font-family: var(--mincho);
    font-size: 14px;
  }

  .monitor-schedule li:first-child {
    border-top: none;
  }

  .monitor-schedule li b {
    font-weight: 500;
    color: var(--ink-mute);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
  }

  .monitor-schedule li span {
    color: var(--ink);
    font-weight: 600;
  }

  .monitor-action {
    margin-top: 36px;
  }

  .monitor-note {
    margin: 18px 0 0;
    padding: 14px 16px;
    background: rgba(100, 188, 199, 0.08);
    border-left: 2px solid var(--shinbashi);
    font-family: var(--mincho);
    font-size: 13px;
    line-height: 1.8;
    color: var(--ink-soft);
  }

  .monitor-action .btn {
    padding: 14px 28px;
    font-size: 12px;
  }

  /* 利用規約のスクロールボックス */
  .monitor-terms {
    width: 100%;
  }

  .terms-box {
    background: var(--washi-warm);
    border: 1px solid var(--hair);
    padding: 24px;
    height: 380px;
    overflow-y: auto;
    border-radius: 2px;
  }

  .terms-item {
    margin-bottom: 20px;
  }

  .terms-item:last-child {
    margin-bottom: 0;
  }

  .terms-item h5 {
    font-family: var(--mincho);
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 6px;
    color: var(--ink);
  }

  .terms-item p {
    font-family: var(--sans);
    font-size: 12px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin: 0;
  }

  /* 規約ボックスのスクロールバー風合い調整 */
  .terms-box::-webkit-scrollbar {
    width: 6px;
  }

  .terms-box::-webkit-scrollbar-track {
    background: transparent;
  }

  .terms-box::-webkit-scrollbar-thumb {
    background: var(--ink-mute);
    opacity: 0.3;
    border-radius: 3px;
  }

  /* ============ PRIVACY POLICY MODAL ============ */
  .modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .modal.open {
    opacity: 1;
    pointer-events: auto;
  }

  .modal-content {
    background-color: var(--washi);
    border: 1px solid var(--rule);
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
  }

  .modal-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(20, 20, 20, 0.03) 1px, transparent 0);
    background-size: 16px 16px;
    pointer-events: none;
    z-index: 1;
  }

  .modal.open .modal-content {
    transform: scale(1);
  }

  .modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--ink);
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    padding: 4px;
    transition: color 0.2s, transform 0.2s;
  }

  .modal-close:hover {
    color: var(--shinbashi);
    transform: scale(1.1);
  }

  .modal-body {
    padding: 48px 32px 32px;
    overflow-y: auto;
    font-family: var(--sans);
    color: var(--ink-soft);
    line-height: 1.8;
    z-index: 2;
  }

  .modal-body::-webkit-scrollbar {
    width: 6px;
  }

  .modal-body::-webkit-scrollbar-track {
    background: transparent;
  }

  .modal-body::-webkit-scrollbar-thumb {
    background: var(--ink-mute);
    border-radius: 3px;
  }

  .modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--ink);
  }

  .privacy-title {
    font-family: var(--mincho);
    font-size: 24px;
    color: var(--ink);
    margin-bottom: 24px;
    border-bottom: 1px solid var(--rule);
    padding-bottom: 12px;
  }

  .privacy-text p {
    margin-bottom: 1.5em;
    font-size: 15px;
  }

  .privacy-text h3 {
    font-family: var(--mincho);
    font-size: 18px;
    color: var(--ink);
    margin-top: 2em;
    margin-bottom: 1em;
  }

  .privacy-text h4 {
    font-family: var(--mincho);
    font-size: 16px;
    color: var(--ink-soft);
    margin-top: 1.5em;
    margin-bottom: 0.8em;
  }

  .privacy-text hr {
    border: none;
    border-top: 1px dashed var(--hair);
    margin: 2em 0;
  }

  .privacy-text ol,
  .privacy-text ul {
    padding-left: 1.5em;
    margin-bottom: 1.5em;
    font-size: 14px;
  }

  .privacy-text li {
    margin-bottom: 0.5em;
  }

  .privacy-text a {
    color: var(--shinbashi-d);
    text-decoration: underline;
    transition: color 0.2s;
  }

  .privacy-text a:hover {
    color: var(--shinbashi);
  }

  .privacy-text .date,
  .privacy-text .sign {
    text-align: right;
    margin-top: 2em;
    font-family: var(--mincho);
  }

  @media (max-width: 768px) {
    .modal-content {
      width: 95%;
      max-height: 90vh;
    }

    .modal-body {
      padding: 40px 20px 20px;
    }

    .privacy-title {
      font-size: 20px;
    }
  }