/* campaign.css - キャンペーンページ用スタイル（デザインシステム準拠・ユニバーサル対応） */
@import 'design-tokens.css';
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Noto+Sans+JP:wght@300;400;500;700;900&family=Space+Mono:wght@400;700&display=swap');

/* ═══ Base — リセット・基本 ═══ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  background: var(--navy);
  color: var(--w);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: var(--leading-normal);
}

/* スキップリンク（アクセシビリティ・キーボード操作） */
.skip-link {
  position: absolute;
  top: -100px;
  left: 8px;
  z-index: 9999;
  padding: 10px 16px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 8px;
  outline: 2px solid var(--gold-l);
  outline-offset: 2px;
}

/* ═══ Utilities — 表示アニメーション ═══ */
.rv {
  opacity: 1;
  transform: none;
  animation: reveal var(--duration-reveal) var(--ease-out-expo) both;
}
.rv.dl1 { animation-delay: var(--reveal-delay-1); }
.rv.dl2 { animation-delay: var(--reveal-delay-2); }
.rv.dl3 { animation-delay: var(--reveal-delay-3); }
.rv.dl4 { animation-delay: var(--reveal-delay-4); }
@keyframes reveal {
  from { opacity: 0; transform: translateY(var(--reveal-offset)); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .rv,
  .rv.dl1, .rv.dl2, .rv.dl3, .rv.dl4 {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .bm { animation: none; }
  .cta-base:hover .cta-arrow { transform: none; }
}

/* ═══ Components — Hero ═══ */
/* SEO: ページタイトル（h1）— クローラー・スクリーンリーダー用、視覚はビジュアルで表現 */
/* スクリーンリーダー・クローラー専用（視覚非表示） */
.hero-title,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  text-align: center;
  padding: 0;
  overflow: visible;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background:
    radial-gradient(ellipse at 50% 30%, var(--gradient-hero-gold) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 75%, var(--gradient-hero-red) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(80, 60, 200, 0.03) 0%, transparent 45%),
    linear-gradient(180deg, var(--color-navy-deep) 0%, var(--navy) 40%, var(--color-navy-edge) 100%);
}

.hero-beams {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
}

.bm {
  position: absolute;
  top: -12%;
  height: 70%;
  background: linear-gradient(180deg, rgba(188, 149, 0, 0.22), rgba(188, 149, 0, 0.02), transparent);
  transform-origin: top center;
  filter: blur(var(--blur-beam));
  animation: bmsw var(--duration-beam) ease-in-out infinite alternate;
}
.bm:nth-child(1) { left: 10%; width: 2px; --a: -16deg; --b: -10deg; }
.bm:nth-child(2) { left: 28%; width: 1.5px; animation-delay: -2.5s; --a: -7deg; --b: -3deg; opacity: 0.5; }
.bm:nth-child(3) { left: 50%; width: 3px; animation-delay: -4s; --a: -1deg; --b: 2deg; background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(188, 149, 0, 0.03), transparent); }
.bm:nth-child(4) { left: 72%; width: 1.5px; animation-delay: -1.5s; --a: 4deg; --b: 8deg; opacity: 0.5; }
.bm:nth-child(5) { left: 90%; width: 2px; animation-delay: -3s; --a: 13deg; --b: 17deg; }
@keyframes bmsw {
  0% { transform: rotate(var(--a)); opacity: 0.4; }
  50% { opacity: 0.9; }
  100% { transform: rotate(var(--b)); opacity: 0.4; }
}

.hero-spot {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background: radial-gradient(550px circle at 50% 40%, rgba(188, 149, 0, 0.035), transparent 55%);
}
@media (max-width: 600px) {
  .hero-spot {
    background: radial-gradient(95vw circle at 50% 40%, rgba(188, 149, 0, 0.035), transparent 55%);
  }
}

.hero-in {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

.mv-sec {
  width: 100%;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.mv-wrap {
  padding: 0;
  position: relative;
  width: 100%;
}

.mv-inner {
  position: relative;
  padding-top: 66.666%;
  background: #020208;
  overflow: hidden;
}

.mv-ph {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
}

.mv-ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  vertical-align: top;
}

/* ═══ Layout — セクション・コンテナ ═══ */
.mx {
  max-width: var(--container-max);
  margin: 0 auto;
}

.sec {
  padding: var(--section-padding-y) var(--section-padding-x);
}

.sh {
  display: flex;
  align-items: flex-start;
  gap: var(--space-8);
  margin-bottom: var(--space-16);
}

.sb {
  width: var(--border-width-bar);
  min-height: 26px;
  background: var(--red);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  box-shadow: var(--shadow-red-glow);
  margin-top: var(--space-2);
}

.st {
  font-size: var(--text-7xl);
  font-weight: 900;
  letter-spacing: var(--letter-wide);
  line-height: var(--leading-tight);
}

.se {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  letter-spacing: var(--letter-mono);
  color: var(--gold);
  display: block;
  margin-top: 3px;
}

.dv {
  max-width: var(--container-max);
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bg) 20%, var(--bg) 80%, transparent);
}

.pf-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ═══ Components — 賞品カード・リスト ═══ */
.pf {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  align-items: stretch;
  background: var(--card);
  border: var(--border-width) solid var(--bd);
  overflow: hidden;
  cursor: default;
}

.pf-d {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-8) var(--space-6);
  background: var(--color-card-red-tint);
  border-right: var(--border-width) solid var(--bd);
}

.pf-dn {
  font-family: var(--font-display);
  font-size: var(--text-display-md);
  line-height: 1;
  letter-spacing: var(--letter-tight);
}

.pf-dd {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--red-b);
  letter-spacing: var(--letter-wider);
  margin-top: var(--space-1);
  font-weight: 700;
}

.pf-i {
  padding: 13px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.pf-v {
  font-weight: 700;
  font-size: 0.86rem;
}

.pf-t {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gold-l);
}

.pf-a {
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: var(--dim);
  font-size: 0.75rem;
  opacity: 0;
  pointer-events: none;
}


.sched {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 14px;
  width: 100%;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-l);
  text-decoration: none;
  border-bottom: 1px solid rgba(188, 149, 0, 0.25);
  padding-bottom: 2px;
  transition: all 0.3s;
  text-align: center;
}

.sched:hover {
  color: var(--gold-b);
  border-color: var(--gold);
}

.sched svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.pd {
  padding: var(--space-20) var(--space-16);
  background: var(--card);
  border: var(--border-width) solid var(--bd);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pd::before,
.pd::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: var(--border-width-accent);
  background: linear-gradient(90deg, var(--red), var(--gold-l), var(--red));
}

.pd::before { top: 0; }
.pd::after { bottom: 0; opacity: 0.35; }

.pd-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: var(--letter-mono);
  color: var(--dim);
  margin-bottom: var(--space-6);
}

.pd-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pd-date {
  font-size: clamp(0.88rem, 2.5vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.pd-sep {
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 200;
  line-height: 1;
}

.pr-main {
  padding: var(--space-6) var(--space-8);
  background: var(--card);
  border: var(--border-width) solid var(--bd);
  margin-bottom: var(--space-2);
  position: relative;
  overflow: hidden;
}

.pr-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--border-width-bar);
  background: linear-gradient(180deg, var(--gold), var(--red));
}

.pr-title {
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 4px;
  padding-left: 0;
}

.pr-total-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-left: 0;
}

.pr-total-label {
  font-size: 0.7rem;
  color: var(--dl);
  font-weight: 500;
}

.pr-total {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-l);
  line-height: 1;
}

.notes {
  margin-top: var(--space-12);
  padding: var(--space-10) var(--space-14);
  background: var(--card-s);
  border: var(--border-width) solid var(--bd);
  border-radius: var(--radius-sm);
}

.notes p {
  font-size: 0.7rem;
  line-height: 1.85;
  color: var(--dim);
  padding-left: 0.9em;
  text-indent: -0.9em;
}

.notes .notes-lead {
  font-size: clamp(0.88rem, 2.5vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  padding-left: 0;
  text-indent: 0;
}
.notes .notes-lead-main {
  color: var(--w);
}
.notes .notes-lead-sub {
  color: var(--color-red-notice);
}
.notes p + p {
  margin-top: 6px;
}

/* ═══ Components — CTA ボタン ═══ */
.cta-base {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--duration-slow) var(--ease-out-back), box-shadow var(--duration-slow) ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.cta-base:focus-visible,
.cta-base:focus {
  outline: 2px solid var(--gold-l);
  outline-offset: 3px;
}

.cta-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background: linear-gradient(135deg, var(--red), var(--red-b) 50%, #ff3366);
  background-size: 200% 200%;
  animation: bgsh 4s ease infinite;
}

@keyframes bgsh {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.cta-shim {
  position: absolute;
  top: 0;
  left: -130%;
  width: 70%;
  height: 100%;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.11) 48%, rgba(255, 255, 255, 0.16) 50%, rgba(255, 255, 255, 0.11) 52%, transparent 70%);
  transform: skewX(-18deg);
  animation: sw 4s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes sw {
  0% { left: -130%; }
  55% { left: 160%; }
  100% { left: 160%; }
}

.cta-glow {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: var(--radius-md);
  border: var(--border-width) solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: gw var(--duration-cta-glow) ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes gw {
  0%, 100% { border-color: rgba(255, 255, 255, 0.08); }
  50% {
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), inset 0 0 20px rgba(255, 255, 255, 0.02);
  }
}

.cta-base::before {
  content: '';
  position: absolute;
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
  border-radius: var(--radius-lg);
  z-index: -1;
  background: linear-gradient(135deg, var(--red), var(--red-b), var(--gold), var(--red));
  background-size: 300% 300%;
  animation: bgsh var(--duration-cta-shine) ease infinite;
  opacity: 0.35;
  filter: blur(var(--blur-glow));
  transition: opacity var(--duration-slow), filter var(--duration-slow);
}

.cta-base:hover::before {
  opacity: 0.75;
  filter: blur(var(--blur-glow-hover));
}

.cta-base:hover {
  transform: translateY(-3px) scale(1.04);
}

.cta-base:hover .cta-shim {
  animation-duration: 2s;
}

.cta-base:hover .cta-arrow {
  transform: translateX(4px);
}

.cta-base:active {
  transform: translateY(0) scale(0.97);
  transition-duration: 0.1s;
}

.cta-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--w);
}

.cta-text {
  font-weight: 900;
  letter-spacing: 0.16em;
}

.cta-arrow {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0.8;
}

.cta-inline {
  padding: var(--space-14) 64px;
  font-size: var(--text-9xl);
  box-shadow: var(--shadow-cta);
}

.cta-inline:hover {
  box-shadow: var(--shadow-cta-hover);
}

.cta-sec {
  text-align: center;
  padding: var(--space-36) var(--section-padding-x);
  position: relative;
}

.cta-sec > div {
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}

.cta-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(204, 0, 51, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

/* フローティング CTA（画面外で追従） */
.cta-float {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  padding: 12px var(--section-padding-x) 12px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(to top, rgba(8, 12, 28, 0.98) 0%, rgba(8, 12, 28, 0.92) 70%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.35);
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s var(--ease-out-expo), opacity 0.35s ease, visibility 0.35s;
  pointer-events: none;
}

.cta-float.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cta-float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding: 14px 24px;
  font-size: var(--text-8xl);
  box-shadow: var(--shadow-cta);
}

.cta-float-btn:hover {
  box-shadow: var(--shadow-cta-hover);
}

.cta-sub {
  font-size: 0.7rem;
  color: var(--dim);
  margin-top: 14px;
  position: relative;
}

/* ═══ Components — 特典規約 ═══ */
.tm-area {
  padding: var(--section-padding-y) var(--section-padding-x) var(--space-36);
}

.tm-area .mx {
  max-width: var(--container-max);
  margin: 0 auto;
}

.tm-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.tm-hd .tm-hd-sh {
  margin-bottom: 0;
}

/* details/summary 用（静的・JS不要） */
.tm-details {
  margin-top: var(--space-8);
  background: var(--card);
  border: var(--border-width) solid var(--bd);
  border-radius: var(--radius-sm);
}

.tm-details summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-5) var(--space-8);
  font-size: var(--text-base);
  color: var(--dim);
  border: var(--border-width) solid var(--bd);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: all var(--duration-normal);
}

.tm-details summary::-webkit-details-marker {
  display: none;
}

.tm-details summary:hover {
  color: var(--ws);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
}

.tm-details[open] summary {
  margin-bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.tm-details summary .tm-summary-open {
  display: none;
}
.tm-details[open] summary .tm-summary-closed {
  display: none;
}
.tm-details[open] summary .tm-summary-open {
  display: inline;
}

.tm-inner {
  padding: var(--space-16);
  font-size: var(--text-lg);
  line-height: var(--leading-loose);
  color: var(--dim);
  word-break: break-all;
  max-height: 24em;
  overflow-y: auto;
  overflow-x: hidden;
}

.tm-inner,
.tm-inner p,
.tm-inner .tm-heading,
.tm-inner .tm-section,
.tm-inner .tm-notice,
.tm-inner .tm-change-block,
.tm-inner .tm-change-block p,
.tm-inner .tm-change-label,
.tm-inner .tm-strike,
.tm-inner .tm-strike-sm {
  line-height: var(--leading-loose);
}

.tm-inner p {
  margin-bottom: 10px;
}

.tm-inner p.tm-flow {
  margin-top: -8px;
  margin-bottom: 2px;
}

.tm-inner p:last-child {
  margin-bottom: 0;
}

.tm-heading {
  font-size: 0.82rem;
  font-weight: 900;
  color: var(--ws);
  margin-bottom: 12px !important;
  letter-spacing: 0.04em;
}

.tm-section {
  font-weight: 900;
  color: var(--ws);
  margin-top: 18px !important;
  margin-bottom: 6px !important;
}

.tm-notice {
  padding: var(--space-3) var(--space-5);
  background: var(--color-card-red-tint);
  border-left: var(--border-width-accent) solid var(--red);
  margin-bottom: var(--space-5) !important;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.tm-red {
  color: var(--color-red-notice);
}

.tm-bold {
  font-weight: bold;
}

.tm-change-block {
  padding: var(--space-8) var(--space-10);
  border: var(--border-width) solid var(--bd);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-6) !important;
  background: rgba(255, 255, 255, 0.015);
}

.tm-change-block.tm-change-new {
  border-color: var(--color-accent-red-subtle);
  background: var(--color-card-red-tint-new);
}

.tm-change-label {
  font-weight: 900;
  color: var(--ws);
  margin-bottom: 6px !important;
  font-size: 0.76rem;
}

.tm-strike {
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.25);
  opacity: 0.55;
}

.tm-strike-sm {
  font-size: 0.68rem;
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.2);
  opacity: 0.45;
  margin-top: 6px;
}

/* ═══ Components — フッター ═══ */
.ft {
  text-align: center;
  padding: var(--space-24) var(--section-padding-x) 90px;
  padding-bottom: calc(90px + var(--space-14) + env(safe-area-inset-bottom, 0px));
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--dim);
  letter-spacing: var(--letter-wide);
  border-top: var(--border-width) solid var(--bd);
}

.ft-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.ft-nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin: 0 0 var(--space-16);
  padding: 0;
  list-style: none;
}

.ft-nav-list a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s;
}

.ft-nav-list a:hover,
.ft-nav-list a:focus {
  color: var(--w);
  text-decoration: underline;
}
.ft-nav-list a:focus-visible {
  outline: 2px solid var(--gold-l);
  outline-offset: 2px;
}

.ft-copy {
  margin: 0;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: var(--letter-wide);
}

/* ═══ Responsive — ブレークポイント ═══ */
@media (max-width: 768px) {
  .hero { padding: 0; }
  .sec { padding: var(--section-padding-y-sm) var(--section-padding-x-sm); }
  .tm-area { padding: var(--section-padding-y-sm) var(--section-padding-x-sm) var(--space-36); }
  .sh { gap: var(--space-6); }
  .st { font-size: clamp(0.94rem, 2.8vw, 1rem); }
  .cta-sec { padding: var(--space-28) var(--section-padding-x-sm); }
  .cta-inline { padding: var(--space-12) 48px; font-size: var(--text-7xl); min-height: 48px; }
  .cta-float { padding: 10px var(--section-padding-x-sm) 10px; padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px)); }
  .cta-float-btn { max-width: 100%; padding: 14px 24px; font-size: var(--text-7xl); min-height: 48px; }
  .tm-inner { font-size: 0.8rem; max-height: 20em; }
  .tm-details summary { white-space: normal; word-break: break-word; }
  .pr-title { font-size: clamp(0.82rem, 2.2vw, 0.92rem); }
  .ft { padding-left: var(--section-padding-x-sm); padding-right: var(--section-padding-x-sm); }
}

@media (max-width: 640px) {
  .pf { grid-template-columns: 72px 1fr; }
  .pf-d { padding: 12px 8px; }
  .pf-dn { font-size: 1.25rem; }
  .pf-i { padding: 11px 14px; }
  .pf-v { font-size: 0.82rem; }
  .pf-a { display: none; }
  .pd-row { flex-direction: column; gap: 6px; }
  .pd-date { font-size: 0.92rem; }
  .notes { padding: var(--space-8) var(--space-10); }
  .notes p { font-size: 0.75rem; }
  .notes .notes-lead { font-size: 0.92rem; }
  .pr-main { padding: var(--space-5) var(--space-6); }
  .sched { font-size: 0.94rem; flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 400px) {
  .st { font-size: 0.9rem; }
  .pf { grid-template-columns: 1fr; }
  .pf-d {
    flex-direction: row;
    gap: 8px;
    border-right: none;
    border-bottom: 1px solid var(--bd);
    padding: 10px 14px;
  }
  .cta-inline { padding: 16px 24px; font-size: 0.92rem; min-height: 48px; }
  .cta-float-btn { padding: 14px 20px; min-height: 48px; }
  .pr-main { padding: var(--space-4) var(--space-5); }
  .pr-title { font-size: 0.82rem; }
  .pr-total { font-size: 1rem; }
  .tm-details summary { padding: var(--space-4) var(--space-6); font-size: 0.7rem; }
  .tm-inner { padding: var(--space-12); font-size: 0.78rem; max-height: 18em; }
  .ft { padding-left: var(--space-10); padding-right: var(--space-10); }
}

/* 極小画面（320px 前後） */
@media (max-width: 360px) {
  .sec { padding: var(--section-padding-y-sm) var(--space-10); }
  .tm-area { padding: var(--section-padding-y-sm) var(--space-10) var(--space-36); }
  .cta-sec { padding: var(--space-24) var(--space-10); }
  .cta-float { padding: 10px var(--space-10) 10px; padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px)); }
  .cta-inline { padding: 14px 20px; font-size: 0.88rem; min-height: 48px; }
  .st { font-size: 0.88rem; }
  .ft { padding-left: var(--space-10); padding-right: var(--space-10); }
  .ft-nav-list { gap: 6px 12px; }
  .ft-nav-list a { font-size: 0.7rem; }
}

/* ═══ Print — 印刷時 ═══ */
@media print {
  .skip-link,
  .cta-float,
  .cta-sec::before,
  .hero-beams,
  .hero-spot,
  .cta-base::before {
    display: none !important;
  }
  body { background: #fff; color: #111; }
  .cta-base { box-shadow: none; border: 1px solid #333; }
  .ft { border-color: #ccc; color: #333; }
  .ft-nav-list a { color: #333; }
  .ft-copy { color: #666; }
}
