@charset "UTF-8";

/* =========================================================
   Pickleball EXPO 2026 — 公式サイト共通スタイル
   ========================================================= */

/* ---------- 1. デザイントークン ---------- */
:root {
  --ink: #0a1a2b;
  --navy: #123a5e;
  --brand: #1f4e79;
  --brand-2: #2e75b6;
  --accent: #c8f31d;
  --accent-deep: #a5cc10;
  --cta: #ff5a1f;
  --cta-dark: #e04812;

  --paper: #ffffff;
  --paper-2: #f4f7fb;
  --paper-3: #e9eff7;
  --line: #dce4ee;
  --muted: #5b6b7c;

  --tag-change: #b7472a;
  --tag-new: #2e7d32;
  --tag-tbd: #b8860b;

  --font-sans: "Noto Sans JP", "Yu Gothic", "游ゴシック体", "Hiragino Sans",
    "Meiryo", system-ui, sans-serif;
  --font-display: "Anton", "Noto Sans JP", sans-serif;

  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 24px;
  --radius-pill: 999px;

  --shadow-s: 0 1px 2px rgba(10, 26, 43, 0.06),
    0 2px 8px rgba(10, 26, 43, 0.05);
  --shadow-m: 0 4px 12px rgba(10, 26, 43, 0.08),
    0 12px 32px rgba(10, 26, 43, 0.08);
  --shadow-l: 0 8px 24px rgba(10, 26, 43, 0.1),
    0 24px 60px rgba(10, 26, 43, 0.12);

  --header-h: 76px;
  --bottomnav-h: 62px;
  --container: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- 2. リセット ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* 固定ヘッダー分だけアンカー位置をずらす */
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.9;
  color: var(--ink);
  background: var(--paper);
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

body.is-locked {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  width: 100%;
}

:focus-visible {
  outline: 3px solid var(--brand-2);
  outline-offset: 3px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 999;
  padding: 10px 18px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-pill);
  transform: translateY(-200%);
  transition: transform 0.2s var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

/* ---------- 3. レイアウト部品 ---------- */
.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section {
  padding-block: clamp(64px, 9vw, 116px);
  scroll-margin-top: calc(var(--header-h) + 8px);
}

.section--tint {
  background: var(--paper-2);
}

.section--dark {
  background:
    radial-gradient(
      1000px 520px at 88% -10%,
      rgba(46, 117, 182, 0.55),
      transparent 62%
    ),
    linear-gradient(165deg, var(--ink) 0%, #0e2b46 55%, var(--brand) 100%);
  color: #fff;
}

.section-head {
  margin-bottom: clamp(32px, 4.5vw, 56px);
}

.section-head--center {
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: clamp(0.8rem, 1.4vw, 0.95rem);
  letter-spacing: 0.16em;
  color: var(--brand-2);
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.section-head--center .eyebrow::before {
  display: none;
}

.section--dark .eyebrow {
  color: var(--accent);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.1rem, 6vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-top: 10px;
}

.section-title-ja {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: 12px;
}

.section--dark .section-title-ja {
  color: rgba(255, 255, 255, 0.72);
}

.lead {
  font-size: clamp(1rem, 2.2vw, 1.14rem);
  color: var(--muted);
  max-width: 62ch;
}

.section-head--center .lead {
  margin-inline: auto;
}

.section--dark .lead {
  color: rgba(255, 255, 255, 0.8);
}

/* ---------- 4. ボタン ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  text-align: center;
  border: 2px solid transparent;
  transition:
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease),
    background-color 0.2s var(--ease),
    color 0.2s var(--ease),
    border-color 0.2s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn::after {
  content: "→";
  font-size: 1.05em;
  line-height: 1;
  transition: transform 0.2s var(--ease);
}

.btn:hover::after {
  transform: translateX(4px);
}

.btn--primary {
  background: var(--cta);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 90, 31, 0.32);
}

.btn--primary:hover {
  background: var(--cta-dark);
  box-shadow: 0 10px 28px rgba(255, 90, 31, 0.38);
}

.btn--accent {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 6px 20px rgba(200, 243, 29, 0.3);
}

.btn--accent:hover {
  background: var(--accent-deep);
}

.btn--solid {
  background: var(--brand);
  color: #fff;
}

.btn--solid:hover {
  background: var(--navy);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: #fff;
}

.btn--outline {
  background: var(--paper);
  color: var(--brand);
  border-color: var(--line);
  box-shadow: var(--shadow-s);
}

.btn--outline:hover {
  border-color: var(--brand-2);
  color: var(--brand-2);
}

.btn--lg {
  padding: 18px 38px;
  font-size: 1.06rem;
}

.btn--block {
  width: 100%;
}

/* テキストリンク（→付き） */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--brand-2);
  border-bottom: 2px solid transparent;
  transition:
    color 0.2s var(--ease),
    border-color 0.2s var(--ease);
}

.arrow-link::before {
  content: "→";
  transition: transform 0.2s var(--ease);
}

.arrow-link:hover {
  color: var(--brand);
  border-bottom-color: var(--accent);
}

.arrow-link:hover::before {
  transform: translateX(3px);
}

.section--dark .arrow-link {
  color: var(--accent);
}

.section--dark .arrow-link:hover {
  color: #fff;
}

/* ---------- 5. ヘッダー ---------- */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition:
    box-shadow 0.25s var(--ease),
    border-color 0.25s var(--ease),
    background-color 0.25s var(--ease);
}

.header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-s);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  width: min(100% - 32px, 1400px);
  margin-inline: auto;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex-shrink: 0;
  line-height: 1.15;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.16rem;
  letter-spacing: 0.02em;
  color: var(--brand);
  white-space: nowrap;
}

.brand__year {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--muted);
  font-weight: 700;
  white-space: nowrap;
}

.gnav {
  margin-left: auto;
}

.gnav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.gnav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 13px;
  border-radius: var(--radius-s);
  font-family: var(--font-display);
  font-size: 0.87rem;
  letter-spacing: 0.07em;
  color: var(--ink);
  white-space: nowrap;
  transition:
    color 0.2s var(--ease),
    background-color 0.2s var(--ease);
}

.gnav__link:hover,
.gnav__item.is-active > .gnav__link {
  color: var(--brand-2);
  background: var(--paper-2);
}

/* PROGRAM ドロップダウン */
.gnav__item--has-menu {
  position: relative;
}

.gnav__caret {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.2s var(--ease);
}

.gnav__item--has-menu.is-open .gnav__caret {
  transform: rotate(-135deg) translate(-2px, -2px);
}

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  min-width: 288px;
  padding: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-l);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px);
  transition:
    opacity 0.2s var(--ease),
    transform 0.2s var(--ease),
    visibility 0.2s;
}

.dropdown--right {
  left: auto;
  right: 0;
  transform: translate(0, -8px);
}

.gnav__item--has-menu.is-open .dropdown,
.entry-menu-wrap.is-open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.entry-menu-wrap.is-open .dropdown--right {
  transform: translate(0, 0);
}

.dropdown__link {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 10px 14px;
  border-radius: var(--radius-s);
  transition: background-color 0.15s var(--ease);
}

.dropdown__link:hover {
  background: var(--paper-2);
}

.dropdown__en {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--brand);
}

.dropdown__ja {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ヘッダー右側 */
.header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.utility-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--muted);
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition:
    color 0.2s var(--ease),
    border-color 0.2s var(--ease),
    background-color 0.2s var(--ease);
}

.utility-link:hover {
  color: var(--brand);
  border-color: var(--brand-2);
  background: var(--paper-2);
}

.entry-menu-wrap {
  position: relative;
}

.entry-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  background: var(--cta);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 14px rgba(255, 90, 31, 0.34);
  transition:
    background-color 0.2s var(--ease),
    transform 0.2s var(--ease);
}

.entry-btn:hover {
  background: var(--cta-dark);
  transform: translateY(-1px);
}

.entry-btn .gnav__caret {
  width: 8px;
  height: 8px;
}

.entry-menu-wrap.is-open .entry-btn .gnav__caret {
  transform: rotate(-135deg) translate(-2px, -2px);
}

/* ハンバーガー（スマホ用ドロワーのトリガー） */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-s);
}

.hamburger__bars,
.hamburger__bars::before,
.hamburger__bars::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}

.hamburger__bars::before,
.hamburger__bars::after {
  content: "";
  position: absolute;
}

.hamburger__bars::before {
  transform: translateY(-7px);
}

.hamburger__bars::after {
  transform: translateY(7px);
}

.hamburger[aria-expanded="true"] .hamburger__bars {
  background: transparent;
}

.hamburger[aria-expanded="true"] .hamburger__bars::before {
  transform: rotate(45deg);
}

.hamburger[aria-expanded="true"] .hamburger__bars::after {
  transform: rotate(-45deg);
}

/* ---------- 6. スマホ用ドロワー ---------- */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
  visibility: hidden;
}

.drawer.is-open {
  visibility: visible;
}

.drawer__scrim {
  position: absolute;
  inset: 0;
  background: rgba(10, 26, 43, 0.55);
  opacity: 0;
  transition: opacity 0.28s var(--ease);
}

.drawer.is-open .drawer__scrim {
  opacity: 1;
}

.drawer__panel {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(88vw, 400px);
  background: var(--paper);
  padding: 22px 22px calc(28px + var(--bottomnav-h));
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateX(100%);
  transition: transform 0.32s var(--ease);
}

.drawer.is-open .drawer__panel {
  transform: translateX(0);
}

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.drawer__close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--paper-2);
  font-size: 1.3rem;
  line-height: 1;
  color: var(--muted);
}

.drawer__group + .drawer__group {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.drawer__label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 8px;
}

.drawer__link {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 12px 6px;
  border-radius: var(--radius-s);
  transition: background-color 0.15s var(--ease);
}

.drawer__link:hover {
  background: var(--paper-2);
}

.drawer__link span:first-child {
  font-family: var(--font-display);
  font-size: 0.98rem;
  letter-spacing: 0.05em;
  color: var(--brand);
}

.drawer__link span:last-child {
  font-size: 0.76rem;
  color: var(--muted);
}

.drawer__link--sub {
  padding-left: 20px;
}

.drawer__cta {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

/* ---------- 7. スマホ下部ナビ ---------- */
.bottom-nav {
  display: none;
  position: fixed;
  inset: auto 0 0;
  z-index: 110;
  height: calc(var(--bottomnav-h) + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 20px rgba(10, 26, 43, 0.08);
}

.bottom-nav__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: var(--bottomnav-h);
}

.bottom-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 100%;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  transition: color 0.2s var(--ease);
}

.bottom-nav__item:hover,
.bottom-nav__item.is-active {
  color: var(--cta);
}

.bottom-nav__icon {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

/* ---------- 8. ヒーロー（1. ファーストビュー） ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(48px, 8vw, 88px));
  padding-bottom: clamp(56px, 8vw, 96px);
  color: #fff;
  background:
    radial-gradient(
      780px 460px at 82% 8%,
      rgba(200, 243, 29, 0.16),
      transparent 60%
    ),
    radial-gradient(
      900px 620px at 8% 92%,
      rgba(46, 117, 182, 0.5),
      transparent 62%
    ),
    linear-gradient(158deg, #08192a 0%, #103a5e 52%, var(--brand) 100%);
  overflow: hidden;
}

/* 背景のボールを模した装飾円 */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero__orb--1 {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -110px;
  background: radial-gradient(
    circle at 32% 30%,
    rgba(200, 243, 29, 0.32),
    rgba(200, 243, 29, 0) 68%
  );
}

.hero__orb--2 {
  width: 300px;
  height: 300px;
  bottom: -90px;
  left: -70px;
  background: radial-gradient(
    circle at 60% 40%,
    rgba(255, 90, 31, 0.28),
    rgba(255, 90, 31, 0) 70%
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.9rem, 9vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  margin-top: 22px;
}

.hero__title em {
  display: block;
  font-style: normal;
  color: var(--accent);
}

.hero__powered {
  display: block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(0.85rem, 2.2vw, 1.15rem);
  letter-spacing: 0.08em;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 14px;
}

.hero__date {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3.6vw, 2.05rem);
  letter-spacing: 0.03em;
  margin-top: 22px;
  color: #fff;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 18px;
}

.hero__meta li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  background: rgba(255, 255, 255, 0.06);
}

.hero__free {
  color: var(--accent);
  font-weight: 700;
}

/* 来場動機になる一言（試打・試し履き） */
.hero__pickup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: clamp(0.86rem, 2vw, 0.95rem);
  font-weight: 700;
  color: var(--accent);
}

.hero__pickup-mark {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(200, 243, 29, 0.22);
}

/* ヒーロー右側：開催時間・出展ブース */
.hero__panel {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-l);
  padding: clamp(22px, 3vw, 30px);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero__panel-title {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hours {
  margin-top: 14px;
}

.hours li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.18);
}

.hours li:last-child {
  border-bottom: none;
}

.hours__day {
  font-weight: 700;
  font-size: 0.95rem;
}

.hours__time {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--accent);
  white-space: nowrap;
}

.hero__panel-note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.78);
}

.hero__panel-note dt {
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.hero__panel-note dd + dd {
  margin-top: 2px;
}

/* ヒーローCTA */
.hero__cta {
  grid-column: 1 / -1;
  margin-top: clamp(28px, 4vw, 44px);
}

.hero__cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(224px, 1fr));
  gap: 14px;
}

/* 4つ並べても文言が折り返さないよう、左右の余白を詰める */
.hero__cta-grid .btn {
  padding-inline: 22px;
  white-space: nowrap;
}

.hero__sublinks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
  margin-top: 22px;
  font-size: 0.88rem;
}

.hero__sublinks a {
  color: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 2px;
  transition:
    color 0.2s var(--ease),
    border-color 0.2s var(--ease);
}

.hero__sublinks a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.hero__sublinks span[aria-hidden] {
  color: rgba(255, 255, 255, 0.34);
}

/* ---------- 9. ABOUT ---------- */
.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}

.catchcopy {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(1.5rem, 4.2vw, 2.5rem);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.catchcopy mark {
  background: linear-gradient(transparent 62%, var(--accent) 62%);
  color: inherit;
  padding: 0 2px;
}

.keyword-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(116px, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.keyword {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  font-weight: 700;
  font-size: 0.92rem;
  text-align: center;
  box-shadow: var(--shadow-s);
  transition:
    transform 0.2s var(--ease),
    border-color 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}

.keyword:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: var(--shadow-m);
}

.about__aside-title {
  font-weight: 700;
  margin-bottom: 6px;
}

/* 補足ボックス（DUPR・UTRの説明など） */
.note {
  padding: 18px 22px;
  background: var(--paper-2);
  border-left: 4px solid var(--brand-2);
  border-radius: 0 var(--radius-m) var(--radius-m) 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.note strong {
  color: var(--ink);
}

.note--onDark {
  background: rgba(255, 255, 255, 0.08);
  border-left-color: var(--accent);
  color: rgba(255, 255, 255, 0.82);
}

.note--onDark strong {
  color: #fff;
}

/* ---------- 10. PROGRAM カード ---------- */
.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(18px, 2.4vw, 26px);
}

.pcard {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3vw, 34px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-s);
  overflow: hidden;
  transition:
    transform 0.28s var(--ease),
    box-shadow 0.28s var(--ease),
    border-color 0.28s var(--ease);
}

.pcard::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--brand-2), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.pcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-l);
  border-color: transparent;
}

.pcard:hover::before {
  transform: scaleX(1);
}

.pcard__no {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  color: var(--accent-deep);
}

.pcard__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.6vw, 1.62rem);
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--brand);
  margin-top: 8px;
}

.pcard__title-ja {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 6px;
}

.pcard__body {
  margin-top: 14px;
  font-size: 0.95rem;
  color: var(--muted);
  flex-grow: 1;
}

.pcard__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--paper-2);
  border: 1px solid var(--line);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand);
}

.chip--accent {
  background: rgba(200, 243, 29, 0.22);
  border-color: rgba(165, 204, 16, 0.5);
  color: #55670a;
}

.pcard__foot {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

/* 7枚目は横長にして、3列グリッドの最終行が1枚だけ残らないようにする */
.pcard--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(20px, 3vw, 44px);
  align-items: center;
  background: linear-gradient(140deg, var(--paper), var(--paper-2));
}

.pcard--wide::before {
  transform: scaleX(1);
}

.pcard--wide .pcard__body {
  margin-top: 0;
  flex-grow: 0;
}

.pcard--wide .pcard__foot {
  border-top: none;
  padding-top: 0;
  margin-top: 16px;
}

.pcard__wide-main .pcard__tags {
  margin-top: 16px;
}

/* ワイドカード内の補足ボックス（チーム分けの説明など） */
.pcard__detail {
  margin-top: 16px;
  padding: 16px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand-2);
  border-radius: 0 var(--radius-m) var(--radius-m) 0;
}

.pcard__detail-title {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--brand);
}

.pcard__detail-text {
  margin-top: 6px;
  font-size: 0.88rem;
  color: var(--muted);
}

/* ---------- 11. SCHEDULE ---------- */
.day {
  padding: clamp(26px, 3.4vw, 40px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-s);
}

.day + .day {
  margin-top: clamp(20px, 2.6vw, 28px);
}

.day--feature {
  border-color: transparent;
  box-shadow: var(--shadow-m);
  background:
    linear-gradient(var(--paper), var(--paper)) padding-box,
    linear-gradient(135deg, var(--brand-2), var(--accent)) border-box;
  border: 2px solid transparent;
}

.day__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 18px;
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 2px solid var(--paper-3);
}

.day__no {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.4vw, 2rem);
  letter-spacing: 0.04em;
  color: var(--brand);
}

.day__date {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  letter-spacing: 0.06em;
  color: var(--ink);
}

.day__time {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
}

.day__flag {
  margin-left: auto;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* タイムライン */
.timeline {
  display: grid;
  gap: 2px;
}

.timeline__item {
  display: grid;
  grid-template-columns: 152px minmax(0, 1fr);
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
}

.timeline__item:last-child {
  border-bottom: none;
}

.timeline__time {
  font-family: var(--font-display);
  font-size: 1.02rem;
  letter-spacing: 0.03em;
  color: var(--brand-2);
  white-space: nowrap;
  padding-top: 2px;
}

.timeline__name {
  font-weight: 700;
}

.timeline__detail {
  font-size: 0.86rem;
  color: var(--muted);
  margin-top: 2px;
}

/* 大会ブロック */
.tour-block + .tour-block {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 2px solid var(--paper-3);
}

.tour-block__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.6vw, 1.5rem);
  letter-spacing: 0.04em;
  color: var(--brand);
}

.tour-block__title-ja {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--muted);
  margin-left: 10px;
  letter-spacing: 0.02em;
}

.tour-block__text {
  font-size: 0.94rem;
  color: var(--muted);
  margin-top: 10px;
}

.day__note {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
  font-size: 0.86rem;
  color: var(--muted);
}

/* 未確定プレースホルダー */
.placeholder {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 18px;
  padding: 18px 22px;
  border: 2px dashed var(--line);
  border-radius: var(--radius-m);
  background: repeating-linear-gradient(
    45deg,
    var(--paper-2),
    var(--paper-2) 10px,
    #fff 10px,
    #fff 20px
  );
  color: var(--muted);
  font-size: 0.9rem;
}

.placeholder__badge {
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--tag-tbd);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  white-space: nowrap;
}

.placeholder--card {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 190px;
  text-align: left;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

/* ---------- 12. 講師紹介（コンパクト表示） ---------- */
.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
  gap: clamp(14px, 2vw, 20px);
  max-width: 640px;
}

.person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.person__photo {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--paper-3), var(--paper));
  border: 2px dashed rgba(91, 107, 124, 0.3);
  color: var(--muted);
  font-size: 0.76rem;
  overflow: hidden;
}

.person__photo:has(img) {
  border-style: solid;
  border-color: var(--line);
}

/* 縦長の写真でも顔が切れないよう、上寄りでトリミングする */
.person__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.person__name {
  font-weight: 700;
  font-size: 0.86rem;
  line-height: 1.5;
}

.people-note {
  margin-top: 22px;
  font-size: 0.86rem;
  color: var(--muted);
}

/* 数値サマリー */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.stat {
  padding: 22px 20px;
  border-radius: var(--radius-m);
  background: var(--paper-2);
  border: 1px solid var(--line);
  text-align: center;
}

.section--dark .stat {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.18);
}

.stat__num {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.6vw, 2.6rem);
  line-height: 1;
  color: var(--brand);
}

.section--dark .stat__num {
  color: var(--accent);
}

.stat__label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  margin-top: 8px;
}

.section--dark .stat__label {
  color: rgba(255, 255, 255, 0.76);
}

/* ---------- 13. SEMINAR ---------- */
.seminar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(18px, 2.4vw, 26px);
}

.seminar-card {
  padding: clamp(24px, 3vw, 32px);
  border-radius: var(--radius-l);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.seminar-card__kind {
  font-family: var(--font-display);
  font-size: 1.24rem;
  letter-spacing: 0.06em;
  color: var(--accent);
}

.seminar-card__spec {
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 10px;
}

.seminar-card__desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.76);
  margin-top: 8px;
}

/* 登壇団体 */
.subhead--onDark {
  margin-top: clamp(36px, 5vw, 52px);
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.subhead--onDark .subhead__en {
  color: var(--accent);
}

.subhead--onDark .subhead__ja {
  color: rgba(255, 255, 255, 0.72);
}

.speaker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
  gap: 12px;
}

.speaker {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-radius: var(--radius-m);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition:
    background-color 0.2s var(--ease),
    border-color 0.2s var(--ease);
}

.speaker:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(200, 243, 29, 0.5);
}

.speaker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.speaker__name {
  font-weight: 700;
  font-size: 0.94rem;
  line-height: 1.5;
}

.speaker-note {
  margin-top: 20px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.72);
}

/* ---------- 14. TOURNAMENT ---------- */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(18px, 2.4vw, 26px);
}

.tour-card {
  position: relative;
  padding: clamp(26px, 3.2vw, 36px);
  border-radius: var(--radius-l);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-s);
}

.tour-card__label {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  color: var(--accent-deep);
}

.tour-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  letter-spacing: 0.03em;
  color: var(--brand);
  margin-top: 6px;
}

.tour-card__title-ja {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--muted);
  margin-top: 6px;
}

.tour-card__desc {
  font-size: 0.94rem;
  color: var(--muted);
  margin-top: 14px;
}

.cat-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.cat-list li {
  padding: 8px 16px;
  border-radius: var(--radius-s);
  background: var(--paper-2);
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: 0.88rem;
}

/* ---------- 15. メインスポンサー ---------- */
.sponsor {
  margin-bottom: clamp(36px, 5vw, 56px);
  text-align: center;
}

.sponsor__label {
  font-family: var(--font-display);
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  color: var(--brand-2);
  margin-bottom: 14px;
}

.sponsor__card {
  display: inline-flex;
  align-items: center;
  gap: clamp(18px, 3vw, 32px);
  padding: clamp(20px, 3vw, 30px) clamp(26px, 4vw, 46px);
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-m);
  text-align: left;
  color: var(--ink);
  transition:
    border-color 0.2s var(--ease),
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}

.sponsor__card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-2);
  box-shadow: var(--shadow-l);
}

.sponsor__logo {
  display: grid;
  place-items: center;
  width: clamp(120px, 18vw, 168px);
  aspect-ratio: 16 / 9;
  border: 2px dashed rgba(91, 107, 124, 0.3);
  border-radius: var(--radius-m);
  background: var(--paper-2);
  color: var(--muted);
  font-size: 0.78rem;
  flex-shrink: 0;
  overflow: hidden;
}

/* ロゴ画像とダミー文字を同じマスに重ねる */
.sponsor__logo > * {
  grid-area: 1 / 1;
}

/* ロゴ画像が入ったら、仮枠の破線とダミー文字を外す。
   AEON MALL は黒地ロゴのため、枠の背景も黒にして余白を馴染ませる */
.sponsor__logo.has-logo {
  border: 0;
  background: #000;
}

.sponsor__logo.has-logo .sponsor__logo-fallback {
  display: none;
}

.sponsor__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sponsor__name {
  display: block;
  font-size: clamp(1.15rem, 2.8vw, 1.6rem);
  font-weight: 700;
  line-height: 1.4;
}

.sponsor__note {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 6px;
}

/* 出展企業内の小見出し */
.subhead {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 14px;
  padding-bottom: 14px;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--paper-3);
}

.subhead__en {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.8vw, 1.5rem);
  letter-spacing: 0.06em;
  color: var(--brand);
}

.subhead__ja {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--muted);
}

/* ---------- 16. EXHIBITORS ---------- */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(196px, 1fr));
  gap: 14px;
}

.logo-grid__note {
  margin-top: 18px;
  font-size: 0.84rem;
  color: var(--muted);
}

.exhibitor-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 0 clamp(28px, 4vw, 40px);
}

a.chip {
  color: var(--brand);
}

a.chip:hover {
  border-color: var(--brand-2);
  background: var(--paper);
}

.exhibitor-cat {
  margin-bottom: clamp(28px, 4vw, 44px);
}

.exhibitor-cat .subhead {
  margin-bottom: 16px;
}

/* 1〜2社のカテゴリーでもタイルが横いっぱいに広がらないようにする */
.exhibitor-cat .logo-grid {
  grid-template-columns: repeat(auto-fill, minmax(196px, 220px));
}

/* タイル同士の高さを揃えるため、li を伸縮させる */
.logo-grid > li {
  display: flex;
}

.logo-tile {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 116px;
  padding: 16px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  transition:
    border-color 0.2s var(--ease),
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}

/* ロゴ画像。未受領のうちはJS側で取り除かれ、社名のみの表示になる */
.logo-tile__logo {
  width: 100%;
  max-width: 160px;
  height: 66px;
  object-fit: contain;
}

.logo-tile__name {
  display: block;
}

/* ロゴが表示できたときはロゴを主役にし、社名は下の小さな添え書きにする */
.logo-tile.has-logo {
  gap: 12px;
  min-height: 146px;
}

.logo-tile.has-logo .logo-tile__name {
  font-size: 0.74rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--muted);
}

/* 外部リンクであることを示すアイコン。社名の折り返しに影響しないよう角に置く */
.logo-tile__ext {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.4;
}

.logo-tile:hover {
  transform: translateY(-3px);
  border-color: var(--brand-2);
  box-shadow: var(--shadow-m);
}

.logo-tile:hover .logo-tile__ext {
  opacity: 0.9;
}

/* リンク未設定の企業は非リンクのタイルとして表示する */
.logo-tile--plain:hover {
  transform: none;
  border-color: var(--line);
  box-shadow: none;
}

.logo-tile--empty {
  border-style: dashed;
  background: var(--paper-2);
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.08em;
}

/* 「順次公開」の案内バナー */
.release-banner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  padding: 18px 24px;
  border-radius: var(--radius-m);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-s);
}

.release-banner__badge {
  flex-shrink: 0;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.release-banner__text {
  font-size: 0.92rem;
  color: var(--muted);
}

.release-banner__text strong {
  color: var(--ink);
}

/* ---------- 16. VISITOR INFORMATION ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(18px, 2.4vw, 26px);
}

.info-card {
  padding: clamp(24px, 3vw, 32px);
  border-radius: var(--radius-l);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-s);
}

.info-card--highlight {
  background: linear-gradient(150deg, var(--brand), var(--navy));
  border-color: transparent;
  color: #fff;
}

.info-card__title {
  font-weight: 700;
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-card__big {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.9rem);
  line-height: 1.1;
  color: var(--accent);
  margin-top: 8px;
}

.info-card__text {
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 12px;
}

.info-card--highlight .info-card__text {
  color: rgba(255, 255, 255, 0.82);
}

/* ---------- 18. EXHIBIT 誘導バナー ---------- */
.exhibit-cta {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-l);
  padding: clamp(34px, 5vw, 60px);
  background:
    radial-gradient(
      620px 340px at 88% 12%,
      rgba(200, 243, 29, 0.2),
      transparent 62%
    ),
    linear-gradient(140deg, var(--ink), var(--brand));
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.exhibit-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.4vw, 2.7rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.exhibit-cta__title-ja {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 700;
  margin-top: 12px;
  color: var(--accent);
}

.exhibit-cta__text {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 54ch;
}

.exhibit-cta__points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.exhibit-cta__points li {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.34);
  font-size: 0.84rem;
}

.exhibit-cta__actions {
  display: grid;
  gap: 12px;
  min-width: 260px;
}

/* ---------- 19. NEWS ---------- */
.news-list {
  border-top: 1px solid var(--line);
}

.news-item {
  display: grid;
  grid-template-columns: 132px 118px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 20px 6px;
  border-bottom: 1px solid var(--line);
  transition: background-color 0.2s var(--ease);
}

.news-item:hover {
  background: var(--paper-2);
}

.news-item__date {
  font-family: var(--font-display);
  font-size: 1.02rem;
  letter-spacing: 0.04em;
  color: var(--brand-2);
}

.news-item__cat {
  padding: 4px 0;
  border-radius: var(--radius-pill);
  background: var(--paper-3);
  color: var(--brand);
  font-size: 0.74rem;
  font-weight: 700;
  text-align: center;
}

.news-item__title {
  font-weight: 700;
}

.news-item--pending {
  color: var(--muted);
}

.news-item--pending .news-item__date {
  color: var(--muted);
}

/* ---------- 20. ACCESS ---------- */
.access {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.access__map {
  min-height: 340px;
  border: 0;
  border-radius: var(--radius-l);
  width: 100%;
  box-shadow: var(--shadow-m);
}

.access__venue {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.6vw, 2rem);
  letter-spacing: 0.03em;
  color: var(--brand);
}

.def-list {
  margin-top: 18px;
  border-top: 1px solid var(--line);
}

.def-list > div {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 16px;
  padding: 15px 4px;
  border-bottom: 1px solid var(--line);
}

.def-list dt {
  font-weight: 700;
  color: var(--brand);
  font-size: 0.9rem;
}

.def-list dd {
  margin: 0;
  font-size: 0.94rem;
}

.def-list dd small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 2px;
}

.access-bus {
  display: grid;
  gap: 14px;
}

.access-bus__from {
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.5;
}

.access-bus ul {
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.access-bus li {
  position: relative;
  padding-left: 1em;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.access-bus li::before {
  content: "・";
  position: absolute;
  left: 0;
}

/* ---------- 21. FAQ ---------- */
.faq {
  max-width: 880px;
  margin-inline: auto;
}

.faq__item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}

.faq__item[open] {
  border-color: var(--brand-2);
  box-shadow: var(--shadow-m);
}

.faq__q {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  transition: background-color 0.2s var(--ease);
}

.faq__q::-webkit-details-marker {
  display: none;
}

.faq__q:hover {
  background: var(--paper-2);
}

.faq__q::before {
  content: "Q";
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.92rem;
}

.faq__icon {
  margin-left: auto;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  position: relative;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  height: 2px;
  background: var(--brand-2);
  border-radius: 2px;
  transition: transform 0.25s var(--ease);
}

.faq__icon::after {
  transform: rotate(90deg);
}

.faq__item[open] .faq__icon::after {
  transform: rotate(0deg);
}

.faq__a {
  display: flex;
  gap: 14px;
  padding: 0 22px 20px 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

.faq__a::before {
  content: "A";
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.92rem;
}

/* ---------- 22. CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(18px, 2.6vw, 28px);
}

.contact-card {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3.6vw, 40px);
  border-radius: var(--radius-l);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-s);
}

.contact-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--paper-2);
  color: var(--brand);
  margin-bottom: 18px;
}

.contact-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
}

.contact-card__title {
  font-weight: 700;
  font-size: 1.12rem;
}

.contact-card__text {
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 10px;
  flex-grow: 1;
}

.contact-card__mail {
  margin-top: 14px;
  font-weight: 700;
  word-break: break-all;
}

.contact-card__mail a {
  color: var(--brand);
}

.contact-card__action {
  margin-top: 22px;
}

/* ---------- 23. フッター ---------- */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding-block: clamp(48px, 6vw, 72px) 32px;
  font-size: 0.9rem;
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(28px, 4vw, 52px);
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.footer__powered {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-top: 6px;
}

.footer__brand-info {
  margin-top: 14px;
  line-height: 1.9;
}

.footer__brand-info strong {
  color: #fff;
}

.footer__org {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 6px 14px;
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.88rem;
}

.footer__org dt {
  padding-top: 0.15em;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  white-space: nowrap;
}

/* 「運営委員会」のような語の途中で改行させない */
.footer__org dd {
  margin: 0;
  color: #fff;
  font-weight: 700;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.footer__support {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer__support-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.55;
}

.footer__support-list li {
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.footer__support-list li + li {
  margin-top: 4px;
}

.footer__sponsor {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-weight: 700;
}

.footer__sponsor-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 4px;
}

.footer__col-title {
  font-family: var(--font-display);
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 14px;
}

.footer__col li + li {
  margin-top: 8px;
}

.footer__col a {
  transition: color 0.2s var(--ease);
}

.footer__col a:hover {
  color: #fff;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  padding-top: 24px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

/* ---------- 24. トースト（フォーム未接続の案内） ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 200;
  transform: translate(-50%, 20px);
  max-width: min(92vw, 520px);
  padding: 16px 24px;
  border-radius: var(--radius-m);
  background: var(--ink);
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
  box-shadow: var(--shadow-l);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s var(--ease),
    transform 0.25s var(--ease),
    visibility 0.25s;
}

.toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

/* ---------- 25. スクロール表示アニメーション ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- 26. 下層ページ用ヒーロー ---------- */
.page-hero {
  padding-top: calc(var(--header-h) + clamp(48px, 7vw, 80px));
  padding-bottom: clamp(48px, 7vw, 80px);
  color: #fff;
  background:
    radial-gradient(
      680px 400px at 84% 6%,
      rgba(200, 243, 29, 0.16),
      transparent 62%
    ),
    linear-gradient(150deg, #08192a 0%, #103a5e 55%, var(--brand) 100%);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.66);
  margin-bottom: 20px;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.34);
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.page-hero__title-ja {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  font-weight: 700;
  color: var(--accent);
  margin-top: 14px;
}

.page-hero__powered {
  margin-top: 14px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
}

.page-hero__lead {
  margin-top: 20px;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.82);
}

/* 出展メリット */
.merit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(18px, 2.4vw, 26px);
}

.merit {
  padding: clamp(26px, 3vw, 34px);
  border-radius: var(--radius-l);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-s);
  transition:
    transform 0.24s var(--ease),
    box-shadow 0.24s var(--ease);
}

.merit:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-m);
}

.merit__no {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.merit__title {
  font-weight: 700;
  font-size: 1.08rem;
  margin-top: 16px;
}

.merit__text {
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 10px;
}

/* 料金プラン */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(18px, 2.4vw, 26px);
}

.plan {
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3vw, 34px);
  border-radius: var(--radius-l);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-s);
}

.plan--featured {
  border: 2px solid var(--brand-2);
  box-shadow: var(--shadow-m);
}

.plan__badge {
  align-self: flex-start;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  background: var(--brand-2);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.plan__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--brand);
}

.plan__price {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  color: var(--ink);
  margin-top: 12px;
  line-height: 1.1;
}

.plan__price small {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  margin-left: 6px;
}

.plan__list {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
  font-size: 0.9rem;
  color: var(--muted);
  flex-grow: 1;
}

.plan__list li {
  display: flex;
  gap: 10px;
  padding: 6px 0;
}

.plan__list li::before {
  content: "✓";
  color: var(--accent-deep);
  font-weight: 700;
  flex-shrink: 0;
}

/* 申込ステップ */
.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(18px, 2.4vw, 26px);
}

.step {
  position: relative;
  counter-increment: step;
  padding: 28px 24px;
  border-radius: var(--radius-l);
  background: var(--paper-2);
  border: 1px solid var(--line);
}

.step::before {
  content: "STEP " counter(step);
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: var(--brand-2);
}

.step__title {
  font-weight: 700;
  font-size: 1.04rem;
  margin-top: 10px;
}

.step__text {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 8px;
}

/* ---------- 27. レスポンシブ ---------- */
@media (max-width: 1140px) {
  .gnav__link {
    padding: 10px 9px;
    font-size: 0.8rem;
  }

  .utility-link {
    display: none;
  }
}

@media (max-width: 980px) {
  .hero__inner,
  .about,
  .access,
  .exhibit-cta {
    grid-template-columns: minmax(0, 1fr);
  }

  .exhibit-cta__actions {
    min-width: 0;
  }

  .footer__top {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 62px;
  }

  .gnav,
  .entry-menu-wrap,
  .utility-link {
    display: none;
  }

  .hamburger {
    display: flex;
    position: relative;
    margin-left: auto;
  }

  .bottom-nav {
    display: block;
  }

  body {
    padding-bottom: calc(var(--bottomnav-h) + env(safe-area-inset-bottom, 0px));
  }

  .toast {
    bottom: calc(var(--bottomnav-h) + 20px);
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .timeline__item {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
  }

  .news-item {
    grid-template-columns: auto auto;
    gap: 8px 14px;
  }

  .news-item__title {
    grid-column: 1 / -1;
  }

  .news-item__cat {
    padding-inline: 12px;
  }

  .def-list > div {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
  }

  .hero__cta-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .day__flag {
    margin-left: 0;
  }

  .release-banner {
    flex-direction: column;
    gap: 12px;
  }

  .sponsor__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  /* 社名タイルは2列にして縦の長さを抑える */
  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .exhibitor-cat .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-tile {
    gap: 8px;
    min-height: 92px;
    padding: 12px 10px;
    font-size: 0.76rem;
  }

  .logo-tile__logo {
    height: 48px;
  }

  .logo-tile.has-logo {
    gap: 9px;
    min-height: 112px;
  }

  .logo-tile.has-logo .logo-tile__name {
    font-size: 0.68rem;
  }

  .pcard--wide {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }
}

/* ---------- 28. モーション設定への配慮 ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---------- 29. 印刷 ---------- */
@media print {
  .header,
  .bottom-nav,
  .drawer,
  .toast,
  .skip-link {
    display: none !important;
  }

  body {
    padding-bottom: 0;
  }

  .section--dark,
  .hero,
  .page-hero {
    background: #fff !important;
    color: #000 !important;
  }
}
