:root {
  --bg: #fdf6e3;
  --panel: #fffdf5;
  --text: #1a1a1a;
  --muted: #555555;
  --red: #e63535;
  --yellow: #f5c842;
  --blue: #4a8fd4;
  --bw: 3px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── HERO ── */
.hero {
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 50px 20px;
  overflow: hidden;
  background: #1a1a1a;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.58) 100%);
  z-index: 1;
}

.here-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.82;
  filter: brightness(0.88) saturate(0.75);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  width: 100%;
  padding: 22px 28px;
  border: var(--bw) solid rgba(255,255,255,0.72);
  background: rgba(0,0,0,0.38);
  backdrop-filter: blur(3px);
  color: #fff;
}

.presented {
  display: inline-block;
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}

h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
  margin: 0 0 8px;
  font-weight: 900;
  line-height: 1.0;
  color: #fff;
  text-shadow: 3px 3px 0 #1a1a1a, -1px -1px 0 #1a1a1a, 1px -1px 0 #1a1a1a, -1px 1px 0 #1a1a1a;
  letter-spacing: 0.04em;
}

h1 span {
  display: block;
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  color: var(--yellow);
  text-shadow: 2px 2px 0 #1a1a1a, -1px -1px 0 #1a1a1a, 1px -1px 0 #1a1a1a, -1px 1px 0 #1a1a1a;
  margin-top: 8px;
}

.sub {
  font-size: 0.98rem;
  margin: 4px 0 4px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}

.date {
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--yellow);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 11px 24px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border: var(--bw) solid #1a1a1a;
  box-shadow: 4px 4px 0 #1a1a1a;
  border-radius: 0;
  transition: transform 0.1s, box-shadow 0.1s;
}

.btn.secondary {
  background: var(--yellow);
  color: #1a1a1a;
}

.btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #1a1a1a;
}

/* ── LAYOUT ── */
.section {
  padding: 56px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.section-title {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

/* ── EYEBROW ── */
.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  padding: 3px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--yellow);
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
  border-radius: 0;
}

.eyebrow.light {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.5);
}

/* ── HEADINGS ── */
.section h2 {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--text);
}

.section-title p { margin: 0; color: var(--muted); }

/* ── INTRO ── */
.intro { padding-top: 64px; }

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.intro-copy p { font-size: 1rem; color: var(--muted); margin-top: 12px; }

.intro-panel { display: grid; gap: 12px; }

.stat {
  padding: 16px 20px;
  background: var(--panel);
  border: var(--bw) solid #1a1a1a;
  box-shadow: 4px 4px 0 #1a1a1a;
}

.stat strong {
  display: block;
  font-size: 1.7rem;
  color: var(--red);
  font-weight: 900;
  margin-bottom: 2px;
}

.stat span {
  font-weight: 700;
  color: var(--muted);
  font-size: 0.88rem;
}

/* ── PILLS ── */
.pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  background: #fff;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
  border-radius: 0;
}

.pill.accent { background: var(--red); color: #fff; }
.pill.soft   { background: var(--yellow); color: #1a1a1a; }

.pill-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* ── CARDS ── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.card {
  background: var(--panel);
  padding: 20px;
  border: var(--bw) solid #1a1a1a;
  box-shadow: 4px 4px 0 #1a1a1a;
  border-radius: 0;
}

.card.emphasis {
  background: #fffbe8;
  border-color: #c8a200;
  box-shadow: 4px 4px 0 #c8a200;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  font-weight: 900;
}
.card p  {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}
.card.emphasis p {
  font-size: 1.8rem;
}

/* ── TIMELINE ── */
.timeline {
  list-style: none;
  padding: 0;
  max-width: 760px;
  margin: 20px auto 0;
}

.timeline li {
  padding: 12px 16px 12px 22px;
  margin-bottom: 8px;
  background: var(--panel);
  border: var(--bw) solid #1a1a1a;
  box-shadow: 3px 3px 0 #1a1a1a;
  font-size: 0.97rem;
  position: relative;
}

.timeline li::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 7px;
  background: var(--red);
}

.timeline li b {
  width: 17%;
  display: inline-block;
}

/* ── FEATURE BAND ── */
.pink {
  background: #fdf0d8;
  border-top: var(--bw) solid #1a1a1a;
  border-bottom: var(--bw) solid #1a1a1a;
  padding: 52px 20px;
  max-width: 100%;
}

/* ── RULE CARD ── */
.rule-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 24px 28px;
  background: var(--panel);
  border: var(--bw) solid #1a1a1a;
  box-shadow: 4px 4px 0 #1a1a1a;
  text-align: center;
}

.rule-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 14px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  border: 2px solid #1a1a1a;
  border-radius: 0;
}

.rule-card h3 {
  margin: 0 0 6px;
  font-size: 1.25rem;
  font-weight: 900;
}

.rule-card p { margin: 0; color: var(--muted); }

/* ── QUOTE / NOTE ── */
.note { background: var(--bg); }

.quote {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 36px;
  background: var(--panel);
  border: var(--bw) solid #1a1a1a;
  box-shadow: 5px 5px 0 #1a1a1a;
  position: relative;
}

.quote::before,
.quote::after,
.quote .corner-bl,
.quote .corner-br {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #1a1a1a;
}
.quote::before  { top: -9px;    left: -9px;    background: var(--red); }
.quote::after   { top: -9px;    right: -9px;   background: var(--blue); }

.quote p {
  font-size: 1rem;
  line-height: 2.0;
  color: var(--text);
  margin: 0;
}

/* ── CTA ── */
.cta {
  padding: 64px 20px 80px;
  text-align: center;
  background: var(--bg);
}

.cta-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 36px 32px;
  background: #1a1a1a;
  color: #fff;
  border: var(--bw) solid #1a1a1a;
  box-shadow: 6px 6px 0 var(--red);
  position: relative;
}

.cta-inner::before,
.cta-inner::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #fff;
}
.cta-inner::before { bottom: -10px; left:  -10px; background: var(--yellow); border-color: #1a1a1a; }
.cta-inner::after  { bottom: -10px; right: -10px; background: var(--blue);   border-color: #1a1a1a; }

.cta h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  margin: 10px 0 10px;
  font-weight: 900;
  color: #fff;
}

.cta p { margin: 0; color: rgba(255,255,255,0.8); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero { padding: 0 16px 32px; min-height: 50vh; }
  .hero-inner { padding: 18px 16px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; min-width: unset; }
  .section { padding: 44px 16px; }
  .pink { padding: 40px 16px; }
  .cta { padding: 52px 16px 64px; }
  .cta-inner { padding: 26px 20px; }
  .quote { padding: 22px 20px; }
}

.tac {
  text-align: center;
}