/* ========================================================================
   みっけ！しごと×強みマッチングフェス LP
   Nikkei BizGate inspired — clean ToB blue / white / light gray
   ======================================================================== */

:root {
  /* Nikkei BizGate inspired blue palette */
  --primary:        #002F6C;   /* deep navy */
  --primary-2:      #003F8C;   /* navy */
  --primary-3:      #1E5BB8;   /* mid blue */
  --accent:         #00A0E9;   /* bright accent blue */
  --accent-deep:    #0089C7;
  --primary-soft:   #D9E4F1;
  --primary-tint:   #EEF3F9;
  --warn:           #C2353F;   /* used sparingly for required tags */

  --bg:             #FFFFFF;
  --bg-alt:         #F3F6FA;   /* light blue-gray band */
  --bg-alt-2:       #E8EEF6;   /* slightly deeper band */
  --bg-dark:        var(--primary);

  --ink:            #14243A;
  --ink-2:          #2C3A52;
  --ink-soft:       #5F6B7E;
  --rule:           #D8DEE7;
  --rule-soft:      #E6EAF1;

  /* type */
  --f-body: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif;
  --f-head: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --f-mincho: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --f-en: "Barlow", "Inter", system-ui, sans-serif;
  --f-en-serif: "Barlow", system-ui, sans-serif;

  /* layout */
  --maxw: 1120px;
  --maxw-narrow: 920px;
  --gutter: 24px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.85;
}

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

::selection { background: var(--accent); color: #fff; }

/* ========== HEADER ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
}
.site-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}
.brand__logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.brand__mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--primary);
  color: #fff;
  border-radius: 4px;
  font-family: var(--f-en);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -.02em;
}
.brand__title {
  font-size: 13px;
  line-height: 1.3;
  color: var(--ink);
}
.brand__title small {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: .12em;
  margin-top: 2px;
}
.nav { display: flex; gap: 26px; font-size: 13px; font-weight: 600; }
.nav a {
  position: relative;
  padding: 8px 2px;
  color: var(--ink-2);
  transition: color .2s;
}
.nav a:hover { color: var(--accent-deep); }
.nav a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--accent);
  transition: width .25s;
}
.nav a:hover::after { width: 100%; }

.header-cta {
  font-size: 13px;
  font-weight: 700;
  background: var(--accent);
  color: #fff;
  padding: 10px 22px;
  border-radius: 2px;
  letter-spacing: .04em;
  transition: background .2s, transform .2s;
}
.header-cta:hover { background: var(--accent-deep); }

/* ========== HERO =========================================================== */
.hero {
  position: relative;
  background:
    linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 60%, var(--primary-3) 100%);
  color: #fff;
  overflow: hidden;
  padding: 0;
}
.hero::before {
  /* subtle grid pattern */
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero::after {
  /* accent diagonal */
  content: "";
  position: absolute;
  right: -200px; top: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,160,233,.30) 0%, transparent 60%);
  pointer-events: none;
}
.hero__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 96px var(--gutter) 88px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .25em;
  color: rgba(255,255,255,.92);
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 2px;
  margin-bottom: 36px;
}
.hero__eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.hero__title {
  font-family: var(--f-head);
  font-weight: 900;
  font-size: clamp(40px, 6.4vw, 76px);
  line-height: 1.22;
  letter-spacing: .01em;
  margin: 0 0 28px;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,15,40,.25);
}
.hero__title em {
  font-style: normal;
  color: var(--accent);
}
.hero__title .hero__cross {
  display: inline-block;
  font-family: var(--f-en);
  font-weight: 400;
  color: rgba(255,255,255,.6);
  margin: 0 .1em;
}
.hero__sub {
  font-size: clamp(14px, 1.4vw, 16.5px);
  color: rgba(255,255,255,.88);
  margin: 0 auto 40px;
  line-height: 2;
  max-width: 640px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 40px;
  padding: 28px 0 0;
  border-top: 1px solid rgba(255,255,255,.22);
  width: 100%;
  max-width: 760px;
}
.hero__meta dl {
  margin: 0;
  display: flex; align-items: baseline; gap: 14px;
}
.hero__meta dt {
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--accent);
  font-weight: 700;
  min-width: 56px;
}
.hero__meta dd {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}

.hero__cta {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--accent);
  color: #fff;
  padding: 17px 36px 17px 32px;
  border-radius: 2px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .04em;
  transition: background .2s, transform .15s;
  box-shadow: 0 6px 24px rgba(0,160,233,.35);
}
.hero__cta:hover { background: var(--accent-deep); transform: translateY(-1px); }
.hero__cta .arr {
  font-family: var(--f-en);
  font-size: 18px;
  transition: transform .15s;
}
.hero__cta:hover .arr { transform: translateX(4px); }

.hero__copy { display: contents; }
.hero__logo {
  display: block;
  width: 220px;
  height: auto;
  margin: 0 auto 24px;
  filter: drop-shadow(0 8px 24px rgba(0, 47, 108, .12));
}
@media (max-width: 720px) {
  .hero__logo { width: 160px; margin-bottom: 18px; }
}
.hero__card { display: none !important; }
.hero__card-legacy {
  background: #fff;
  color: var(--ink);
  padding: 32px 32px 28px;
  position: relative;
  border-top: 4px solid var(--accent);
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
}
.hero__card::before {
  content: "イベント";
  position: absolute;
  top: -16px; left: 24px;
  background: var(--primary);
  color: #fff;
  padding: 4px 14px;
  font-family: var(--f-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .25em;
  border-radius: 2px;
}
.hero__card-edition {
  font-family: var(--f-en);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-deep);
  letter-spacing: .15em;
  margin-bottom: 6px;
}
.hero__card-title {
  font-family: var(--f-head);
  font-weight: 900;
  font-size: 18px;
  line-height: 1.5;
  margin: 0 0 20px;
  color: var(--ink);
}
.hero__card-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
.hero__card-table tr { border-bottom: 1px solid var(--rule-soft); }
.hero__card-table tr:last-child { border-bottom: 0; }
.hero__card-table th {
  text-align: left;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 10px 12px 10px 0;
  width: 70px;
  vertical-align: top;
  font-size: 12px;
  letter-spacing: .04em;
}
.hero__card-table td {
  padding: 10px 0;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.6;
}
.hero__card-table td .fee {
  color: var(--accent-deep);
  font-weight: 800;
}

/* ========== SECTION SHELLS ================================================ */
section { position: relative; }
.section-pad {
  padding: 96px var(--gutter);
}
.section-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
}

/* ========== SECTION HEAD ================================================== */
.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head__en {
  display: inline-block;
  font-family: var(--f-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .3em;
  color: var(--accent-deep);
  margin-bottom: 14px;
  position: relative;
  padding-left: 36px;
  padding-right: 36px;
}
.section-head__en::before, .section-head__en::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 24px; height: 1px;
  background: var(--accent);
}
.section-head__en::before { left: 0; }
.section-head__en::after { right: 0; }
.section-head h2 {
  font-family: var(--f-head);
  font-weight: 900;
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.45;
  letter-spacing: .005em;
  margin: 0;
  color: var(--ink);
}
.section-head h2 em {
  font-style: normal;
  color: var(--primary);
  border-bottom: 4px solid var(--accent);
  padding: 0 4px 2px;
}
.section-head .lead {
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.9;
}

/* legacy compat */
.stamp { display: none; }

/* ========== INTRO ========================================================= */
.intro {
  background: #fff;
  padding: 0 var(--gutter);
}
.intro__inner {
  max-width: var(--maxw-narrow);
  margin: 0 auto;
}
.intro__quote {
  text-align: center;
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.65;
  color: var(--ink);
  letter-spacing: .02em;
  margin: 0 0 36px;
}
.intro__quote .accent {
  color: var(--primary);
  background: linear-gradient(transparent 70%, var(--primary-soft) 70%);
  padding: 0 4px;
}
.intro__rule {
  width: 40px; height: 3px; background: var(--accent); margin: 0 auto 36px;
}
.intro__body {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 2.05;
}
.intro__body p { margin: 0 0 1.2em; }
.intro__body p:last-child { margin-bottom: 0; }

/* ========== WORRY / SOLUTION CARDS ======================================== */
.cards-section {
  background: var(--bg-alt);
  padding: 96px var(--gutter);
}
.cards-section--alt {
  background: #fff;
}

/* ========== FLOW BRIDGE (Concerns → Solutions) =========================== */
.flow-bridge {
  background: var(--bg-alt);
  padding: 0 var(--gutter);
  position: relative;
  margin-top: -1px;
}
.flow-bridge__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 72px 0 88px;
  text-align: center;
  position: relative;
}
.flow-bridge__heading {
  display: grid;
  grid-template-columns: 1fr 160px 1fr;
  align-items: center;
  gap: 28px;
  margin-bottom: 36px;
}
.flow-bridge__step {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  text-align: left;
}
.flow-bridge__step--q { justify-self: end; }
.flow-bridge__step--a { justify-self: start; }
.flow-bridge__step-num {
  font-family: var(--f-en);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-deep);
  line-height: 1;
  letter-spacing: -.02em;
}
.flow-bridge__step--a .flow-bridge__step-num { color: var(--primary); }
.flow-bridge__step-label {
  font-family: var(--f-head);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.flow-bridge__step-label strong {
  display: block;
  font-size: 19px;
  color: var(--ink);
  font-weight: 800;
  margin-top: 2px;
}
.flow-bridge__arrow {
  width: 100%;
  height: 24px;
  display: block;
}
.flow-bridge__arrow svg { width: 100%; height: 24px; display: block; }
.flow-bridge__lead {
  font-family: var(--f-head);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  letter-spacing: .02em;
  line-height: 1.7;
  text-align: center;
  position: relative;
  padding: 40px 28px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 4px;
  box-shadow: 0 18px 48px -24px rgba(0,47,108,.18);
  text-wrap: pretty;
}
.flow-bridge__lead::before,
.flow-bridge__lead::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 4px;
  width: 64px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent-deep), var(--primary));
}
.flow-bridge__lead::before { top: -2px; }
.flow-bridge__lead::after { bottom: -2px; opacity: .35; }
.flow-bridge__lead strong {
  color: var(--primary);
  font-weight: 900;
  background: linear-gradient(transparent 62%, color-mix(in oklab, var(--accent) 38%, transparent) 62%);
  padding: 0 2px;
}
.flow-bridge__lead strong:first-of-type {
  color: var(--accent-deep);
  background: linear-gradient(transparent 62%, color-mix(in oklab, var(--accent-deep) 22%, transparent) 62%);
}
@media (max-width: 640px) {
  .flow-bridge__lead { padding: 28px 18px; }
}
.flow-bridge__map {
  display: grid;
  gap: 12px;
  max-width: 640px;
  margin: 0 auto;
}
.flow-bridge__row {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  align-items: stretch;
  gap: 0;
}
.flow-bridge__q,
.flow-bridge__a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 20px;
  background: #fff;
  border: 1px solid var(--line);
  font-family: var(--f-en);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .08em;
  text-align: left;
}
.flow-bridge__q { color: var(--accent-deep); border-radius: 4px 0 0 4px; }
.flow-bridge__a { color: var(--primary); border-radius: 0 4px 4px 0; border-left: none; }
.flow-bridge__q small,
.flow-bridge__a small {
  display: block;
  font-family: var(--f-head);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: .02em;
  margin-top: 4px;
}
.flow-bridge__sep {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, var(--accent-deep), var(--primary));
  color: #fff;
  font-family: var(--f-en);
  font-weight: 800;
  font-size: 16px;
}
@media (max-width: 820px) {
  .flow-bridge__heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .flow-bridge__step--q, .flow-bridge__step--a { justify-self: stretch; }
  .flow-bridge__arrow { transform: rotate(90deg); height: 32px; max-width: 80px; margin: 0 auto; }
  .flow-bridge__row { grid-template-columns: 1fr 40px 1fr; }
  .flow-bridge__inner { padding: 48px 0 56px; }
}

/* Q/A pair label on solution cards */
.card__pair {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--f-en);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--primary);
  background: var(--primary-tint);
  padding: 4px 8px;
  border-radius: 2px;
  z-index: 2;
}
.card { position: relative; }

/* color-coded flow accents */
.card[data-flow="assign"]  { --flow-c: var(--accent-deep); }
.card[data-flow="support"] { --flow-c: var(--primary); }
.card[data-flow="trouble"] { --flow-c: var(--ink); }

.cards-section--alt .card[data-flow="assign"]  { --flow-c: var(--primary); }
.cards-section--alt .card[data-flow="support"] { --flow-c: var(--primary); }
.cards-section--alt .card[data-flow="trouble"] { --flow-c: var(--primary); }

.card[data-flow] .card__tag {
  position: relative;
  padding-left: 0;
}

@media (max-width: 820px) {
  .flow-bridge__rail {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .flow-bridge__line, .flow-bridge__dot, .flow-bridge__chevron { display: none; }
  .flow-bridge__side, .flow-bridge__side--a { text-align: center; margin: 0 auto; }
  .flow-bridge__inner { padding: 40px 0 48px; }
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 36px 28px 28px;
  position: relative;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 10px 28px rgba(0,47,108,.12);
}
.card__num {
  position: absolute;
  top: 0; left: 28px;
  background: var(--primary);
  color: #fff;
  font-family: var(--f-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 4px 12px;
  border-radius: 0 0 4px 4px;
}
.cards-section--alt .card__num { background: var(--accent-deep); }

.card__visual {
  background: var(--bg-alt-2);
  aspect-ratio: 4/3;
  margin: 0 0 22px;
  color: var(--ink-soft);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.card__visual image-slot {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  display: block;
}
.card__visual image-slot img,
.card__visual image-slot picture,
.card__visual image-slot svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card__tag {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 10.5px;
  font-family: var(--f-en);
  font-weight: 700;
  letter-spacing: .25em;
  color: var(--accent-deep);
}
.cards-section--alt .card__tag { color: var(--primary); }

.card__title {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.55;
  margin: 4px 0 16px;
  color: var(--ink);
}
.card__body {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.95;
  flex: 1;
}

.cards-cta {
  margin: 56px auto 0;
  text-align: center;
}
.btn-line {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--primary);
  padding: 13px 32px;
  border: 1px solid var(--primary);
  border-radius: 2px;
  background: transparent;
  transition: background .2s, color .2s;
}
.btn-line:hover { background: var(--primary); color: #fff; }
.btn-line .arr { font-family: var(--f-en); }

/* ========== CTA BANNER + RECOMMEND ======================================== */
.cta-banner {
  background: var(--primary);
  color: #fff;
  padding: 96px var(--gutter);
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: "";
  position: absolute;
  left: -100px; bottom: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,160,233,.20) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner__inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta-banner__inner > div {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.cta-banner__inner p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.cta-banner__inner small {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  display: block;
}
.cta-banner__en {
  display: inline-block;
  font-family: var(--f-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .25em;
  color: var(--accent);
  margin-bottom: 18px;
}
.cta-banner h2 {
  font-family: var(--f-head);
  font-weight: 900;
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.45;
  margin: 0 0 20px;
  color: #fff;
}
.cta-banner h2 em {
  font-style: normal;
  color: #4dd8ff;
}
.cta-banner p {
  font-size: 14.5px;
  line-height: 2;
  color: rgba(255,255,255,.85);
  margin: 0 0 12px;
}
.cta-banner small {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  display: block;
  margin-top: 16px;
  line-height: 1.85;
}

.recommend-list {
  background: #fff;
  color: var(--ink);
  padding: 32px 32px 28px;
  border-radius: 4px;
  position: relative;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.recommend-list__title {
  display: flex; align-items: center; gap: 10px;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: .04em;
  padding: 0 0 14px;
  font-size: 15px;
  margin: 0 0 16px;
  border-bottom: 2px solid var(--primary);
  width: 100%;
}
.recommend-list__title::before {
  content: "おすすめ";
  font-family: var(--f-en);
  font-size: 10.5px;
  letter-spacing: .25em;
  color: var(--accent-deep);
  background: var(--primary-tint);
  padding: 3px 8px;
  border-radius: 2px;
  margin-right: 6px;
}
.recommend-list ul {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 12px;
}
.recommend-list li {
  display: block;
  position: relative;
  padding-left: 30px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--ink-2);
}
.recommend-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px; height: 18px;
  background: var(--accent) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='M3 8.5l3.5 3L13 4'/></svg>") center/12px no-repeat;
  border-radius: 50%;
  margin-top: 4px;
}
.recommend-list li strong { color: var(--primary); font-weight: 700; }
.recommend-list li {
  /* Japanese: keep natural inline flow, allow normal wrap */
  line-break: strict;
  word-break: normal;
  overflow-wrap: normal;
}
@media (max-width: 640px) {
  .recommend-list {
    padding: 24px 20px;
    text-align: left;
  }
  .recommend-list__title { text-align: left; justify-content: flex-start; }
  .recommend-list ul { gap: 14px; text-align: left; }
  .recommend-list li {
    font-size: 14px;
    line-height: 1.85;
    padding-left: 26px;
    text-align: left;
  }
  .recommend-list li::before {
    top: 6px;
    width: 16px; height: 16px;
  }
  .recommend-list li strong {
    display: inline;
    white-space: normal;
    word-break: keep-all;
  }
}

/* ========== VOICES ======================================================== */
.voices {
  background: var(--bg-alt);
  padding: 96px var(--gutter);
}
.voice-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}
.voice {
  background: #fff;
  border-top: 3px solid var(--accent);
  padding: 32px 28px;
  position: relative;
  border-radius: 0 0 4px 4px;
  display: flex;
  flex-direction: column;
}
.voice__num {
  font-family: var(--f-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .25em;
  color: var(--accent-deep);
  margin-bottom: 16px;
  display: block;
}
.voice__avatar {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  background: var(--bg-alt-2);
  overflow: hidden;
  position: relative;
  margin-bottom: 22px;
  border: 1px solid var(--rule);
}
.voice__avatar image-slot {
  width: 100% !important;
  height: 100% !important;
  display: block;
}
.voice__quote {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 17px;
  margin: 0 0 14px;
  color: var(--primary);
  line-height: 1.55;
}
/* legacy voice body (no longer used) */
/* ========== ACCESS / EVENT INFO =========================================== */
.access {
  background: #fff;
  padding: 96px var(--gutter);
}
.access__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.access__grid > .info-table-wrap,
.access__grid > div {
  display: flex;
  flex-direction: column;
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  height: 100%;
}
.info-table tbody { display: table-row-group; height: 100%; }
.info-table tr { border-bottom: 1px solid var(--rule-soft); }
.info-table tr:first-child { border-top: 2px solid var(--primary); }
.info-table tr:last-child { border-bottom: 2px solid var(--primary); }
.info-table th {
  text-align: left;
  font-family: var(--f-head);
  font-weight: 700;
  color: var(--primary);
  padding: 18px 16px 18px 0;
  width: 120px;
  vertical-align: middle;
  font-size: 13px;
  letter-spacing: .04em;
}
.info-table td {
  padding: 18px 0;
  font-weight: 500;
  vertical-align: middle;
  color: var(--ink);
  line-height: 1.75;
}
.info-contact-tel {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: .06em;
}
.info-contact-tel:hover { text-decoration: underline; }
.info-contact-mail {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  word-break: break-all;
}
.info-contact-mail:hover { opacity: .75; }
.info-table .pill {
  display: inline-block;
  background: var(--primary-tint);
  color: var(--primary);
  padding: 3px 10px;
  font-size: 11px;
  margin-right: 8px;
  letter-spacing: .04em;
  font-weight: 700;
  border-radius: 2px;
}

.map-frame {
  position: relative;
  border: 1px solid var(--rule);
  background: #fff;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 6px 20px rgba(0,47,108,.06);
}
.map-frame__head {
  background: var(--primary);
  color: #fff;
  padding: 10px 16px;
  font-size: 11px;
  letter-spacing: .15em;
  font-family: var(--f-en);
  font-weight: 700;
  display: flex; gap: 12px; align-items: center;
}
.map-frame__head .dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; }
.map-frame__body {
  aspect-ratio: 4/3;
  position: relative;
  background:
    linear-gradient(0deg, transparent 49%, #d6dde6 49.5%, #d6dde6 50.5%, transparent 51%) 0 0/100% 60px,
    linear-gradient(90deg, transparent 49%, #d6dde6 49.5%, #d6dde6 50.5%, transparent 51%) 0 0/60px 100%,
    #f3f6fa;
}
.map-frame__body::before {
  content: "";
  position: absolute;
  left: 12%; top: 18%; right: 8%; bottom: 28%;
  background: rgba(180,200,220,.45);
  clip-path: polygon(0 20%, 30% 0, 70% 5%, 100% 25%, 95% 70%, 80% 100%, 30% 95%, 0 70%);
}
.map-frame__body::after {
  content: "";
  position: absolute;
  left: 18%; top: 40%;
  width: 3px; height: 60%;
  background: #b6c4d5;
  transform: rotate(-15deg);
}
.map-pin {
  position: absolute;
  left: 52%; top: 48%;
  width: 30px; height: 30px;
  background: var(--accent);
  border: 2px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg) translate(-50%,-50%);
  display: grid; place-items: center;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
}
.map-pin__label {
  position: absolute;
  left: 60%; top: 38%;
  background: #fff;
  border: 1px solid var(--primary);
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  z-index: 3;
  border-radius: 2px;
}
/* ========== VENUE GALLERY ========== */
.venue-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 150px;
  gap: 8px;
}
.venue-photo {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--bg-alt-2);
  border-radius: 4px;
}
.venue-photo--main {
  grid-column: 1 / span 2;
  grid-row: span 2;
}
.venue-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.venue-photo:hover img { transform: scale(1.04); }
.venue-photo__caption {
  position: absolute;
  left: 10px; bottom: 10px;
  font-family: var(--f-en);
  font-size: 10.5px;
  letter-spacing: .14em;
  color: #fff;
  background: rgba(0, 47, 108, .82);
  padding: 4px 9px;
  border-radius: 2px;
}
@media (max-width: 720px) {
  .venue-gallery { grid-auto-rows: 110px; }
}

/* ========== VENUE MAIN PHOTO ========== */
.venue-hero {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  background: var(--bg-alt-2);
  aspect-ratio: 16 / 10;
}
.venue-hero img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .5s ease;
}
.venue-hero:hover img { transform: scale(1.03); }
.venue-hero__caption {
  position: absolute;
  left: 12px; bottom: 12px;
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: .14em;
  color: #fff;
  background: rgba(0, 47, 108, .82);
  padding: 5px 11px;
  border-radius: 2px;
}

/* ========== VENUE MAP (embed) ========== */
.venue-map {
  margin-top: 18px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}
.venue-map__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--primary);
  background: var(--bg-alt);
  border-bottom: 1px solid var(--rule);
}
.venue-map__head .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.venue-map__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg-alt-2);
}
.venue-map__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.access__notes {
  margin-top: 20px;
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.9;
}
.access__notes strong { color: var(--primary); }

/* ========== PROGRAM ======================================================= */
.program {
  background: var(--bg-alt);
  padding: 96px var(--gutter);
}
.program__list {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--rule);
}
.program-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  padding: 22px 32px;
  border-bottom: 1px solid var(--rule-soft);
  align-items: baseline;
}
.program-row:last-child { border-bottom: 0; }
.program-row__time {
  font-family: var(--f-en);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--primary);
}
.program-row__title {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin: 0 0 6px;
}
.program-row__desc {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.85;
}
.program-row__desc small { display: block; font-size: 11.5px; opacity: .85; margin-top: 4px; }

/* ========== SPONSORS ====================================================== */
.sponsors {
  background: #fff;
  padding: 96px var(--gutter);
}
.sponsors__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
/* All sponsors use the featured horizontal layout (logo left, body right) */
.sponsors__grid .sponsor {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0 40px;
  padding: 32px 36px;
  align-items: start;
  background: linear-gradient(135deg, #fff 0%, var(--primary-tint) 100%);
  border-left: 4px solid var(--accent);
}
.sponsors__grid .sponsor .sponsor__logo {
  grid-row: 1 / span 7;
  aspect-ratio: 1 / 1;
  margin-bottom: 0;
  align-self: center;
}
.sponsors__grid .sponsor .sponsor__rank {
  grid-column: 2;
  margin-bottom: 8px;
}
.sponsors__grid .sponsor .sponsor__name { grid-column: 2; }
.sponsors__grid .sponsor .sponsor__name-en { grid-column: 2; }
.sponsors__grid .sponsor .sponsor__role { grid-column: 2; }
.sponsors__grid .sponsor .sponsor__body { grid-column: 2; font-size: 13.5px; }
.sponsors__grid .sponsor .sponsor__meta { grid-column: 2; }
.sponsors__grid .sponsor .sponsor__link { grid-column: 2; }

@media (max-width: 720px) {
  .sponsors__grid .sponsor {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    gap: 20px;
  }
  .sponsors__grid .sponsor .sponsor__logo {
    grid-row: auto;
    max-width: 200px;
    margin: 0 auto;
  }
  .sponsors__grid .sponsor .sponsor__rank,
  .sponsors__grid .sponsor .sponsor__name,
  .sponsors__grid .sponsor .sponsor__name-en,
  .sponsors__grid .sponsor .sponsor__role,
  .sponsors__grid .sponsor .sponsor__body,
  .sponsors__grid .sponsor .sponsor__meta,
  .sponsors__grid .sponsor .sponsor__link {
    grid-column: auto;
  }
}
.sponsor {
  background: #fff;
  border: 1px solid var(--rule);
  padding: 28px 26px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.sponsor:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,47,108,.08);
}
.sponsor__rank {
  font-family: var(--f-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .25em;
  color: var(--accent-deep);
  margin-bottom: 14px;
  display: block;
}
.sponsor__logo {
  background: #fff;
  aspect-ratio: 1 / 1;
  height: auto;
  width: 100%;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  font-family: var(--f-en);
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: .15em;
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  padding: 32px 36px;
  box-sizing: border-box;
}
.sponsor__logo image-slot {
  width: 100% !important;
  height: 100% !important;
  display: block;
  --is-object-fit: contain;
}
.sponsor__logo image-slot img,
.sponsor__logo image-slot picture,
.sponsor__logo image-slot svg,
.sponsor__logo image-slot picture img,
.sponsor__logo > img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block;
}
.sponsor__name {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 6px;
  color: var(--ink);
}
.sponsor__name-en {
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--ink-soft);
  font-family: var(--f-en);
  margin-bottom: 14px;
}
.sponsor__role {
  display: inline-block;
  font-size: 11px;
  background: var(--primary-tint);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 2px;
  font-weight: 700;
  margin-bottom: 14px;
  width: fit-content;
  letter-spacing: .04em;
}
.sponsor__body {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.9;
  margin: 0;
  flex: 1;
}
.sponsor__meta {
  margin: 14px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 6px 14px;
  font-size: 12.5px;
  line-height: 1.7;
}
.sponsor__meta dt {
  font-family: var(--f-en, inherit);
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--ink-3);
}
.sponsor__meta dd {
  margin: 0;
  color: var(--ink-2);
}
.sponsor__link {
  margin-top: 18px;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--ink);
  border-top: 1px solid var(--rule-soft);
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
}
.sponsor__link span { color: var(--accent-deep); }
.sponsor__link:hover { color: var(--accent-deep); }

.partners {
  max-width: var(--maxw);
  margin: 56px auto 0;
  padding: 28px 32px;
  background: var(--bg-alt);
  border-radius: 4px;
}
.partners__title {
  font-family: var(--f-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--ink);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 14px;
}
.partners__title::after { content: ""; flex: 1; height: 1px; background: var(--rule); }
.partners__list {
  display: flex; flex-wrap: wrap; gap: 8px 10px;
  list-style: none; padding: 0; margin: 0;
}
.partners__list li {
  background: #fff;
  border: 1px solid var(--rule);
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: 2px;
}

/* ========== APPLY CTA ===================================================== */
.apply-cta {
  background: var(--bg-alt);
  padding: 72px var(--gutter);
}
.apply-cta__box {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--rule);
  border-top: 4px solid var(--accent);
  padding: 44px 40px;
  text-align: center;
  border-radius: 4px;
  position: relative;
  box-shadow: 0 6px 20px rgba(0,47,108,.06);
}
.apply-cta__label {
  display: inline-block;
  font-family: var(--f-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .25em;
  color: var(--accent-deep);
  margin-bottom: 12px;
}
.apply-cta h3 {
  font-family: var(--f-head);
  font-weight: 900;
  font-size: clamp(22px, 2.6vw, 28px);
  margin: 0 0 14px;
  color: var(--ink);
}
.apply-cta p {
  font-size: 14px;
  color: var(--ink-2);
  margin: 0 0 24px;
  line-height: 1.9;
}
.apply-cta__btn {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 36px;
  border-radius: 2px;
  transition: background .15s, transform .15s;
  letter-spacing: .04em;
  box-shadow: 0 6px 18px rgba(0,160,233,.3);
}
.apply-cta__btn:hover { background: var(--accent-deep); transform: translateY(-1px); }
.apply-cta__btn small {
  font-size: 11px; opacity: .85; font-weight: 500; margin-left: 4px;
}

/* ========== SPEAKER INTRO ================================================= */
.speaker-intro {
  background: #fff;
  padding: 96px var(--gutter);
}
.speaker-intro__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 64px;
  align-items: start;
}
.speaker-intro__photo image-slot {
  width: 100% !important;
  aspect-ratio: 4/5;
  min-height: 620px;
  background: var(--bg-alt-2);
  border-radius: 4px;
  display: block;
}
.speaker-intro__en {
  display: inline-block;
  font-family: var(--f-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .25em;
  color: var(--accent-deep);
  margin-bottom: 14px;
}
.speaker-intro__title {
  font-family: var(--f-head);
  font-weight: 900;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.45;
  margin: 0 0 24px;
  color: var(--ink);
}
.speaker-intro__title em {
  font-style: normal;
  color: var(--primary);
  border-bottom: 4px solid var(--accent);
  padding-bottom: 2px;
}
.speaker-intro__body p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 2;
  margin: 0 0 1.2em;
}
.speaker-intro__body strong {
  color: var(--primary);
  font-weight: 700;
}
.host-name {
  margin-top: 16px;
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.host-name ruby rt {
  font-size: 10px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: .1em;
}
.host-name__role {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: .08em;
}

/* ========== SPEAKER GRID ================================================== */
.speakers {
  background: var(--bg-alt);
  padding: 96px var(--gutter);
}
.speaker-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.speaker {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 24px;
  text-align: left;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.speaker:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,47,108,.08);
}
.speaker__photo {
  position: relative;
  margin: 0 0 16px;
}
.speaker__photo image-slot {
  width: 100% !important;
  aspect-ratio: 4/3;
  background: var(--bg-alt-2);
  border-radius: 2px;
  display: block;
}
.speaker__num {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--primary);
  color: #fff;
  font-family: var(--f-en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .12em;
  padding: 3px 10px;
  z-index: 2;
  border-radius: 2px;
}
.speaker__name {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 17px;
  margin: 0 0 6px;
  color: var(--ink);
}
.speaker__role {
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--accent-deep);
  font-family: var(--f-en);
  font-weight: 700;
  margin-bottom: 12px;
}
.speaker__body {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.85;
}
.speaker__tags {
  margin-top: 12px;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.speaker__tag {
  font-size: 10.5px;
  background: var(--primary-tint);
  color: var(--primary);
  padding: 2px 10px;
  border-radius: 2px;
  font-weight: 700;
  letter-spacing: .04em;
}

/* ========== CONTACT FORM ================================================== */
.contact {
  background: #fff;
  padding: 96px var(--gutter);
}
.contact__form {
  max-width: 680px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
}
.contact__intro {
  text-align: center;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.95;
  margin: 0 0 36px;
}
.field {
  display: grid;
  gap: 8px;
}
.field label {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
  display: flex; align-items: center; gap: 8px;
}
.field label .req {
  font-size: 10px;
  background: var(--warn);
  color: #fff;
  padding: 2px 7px;
  border-radius: 2px;
  font-family: var(--f-en);
  font-weight: 700;
  letter-spacing: .12em;
}
.field label .opt {
  font-size: 10px;
  background: var(--bg-alt);
  color: var(--ink-soft);
  padding: 2px 7px;
  border-radius: 2px;
  font-family: var(--f-en);
  font-weight: 700;
  letter-spacing: .12em;
}
.field input, .field textarea, .field select {
  font-family: inherit;
  font-size: 14px;
  padding: 13px 14px;
  border: 1px solid var(--rule);
  background: #fff;
  border-radius: 2px;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,160,233,.18);
}
.field textarea { min-height: 140px; resize: vertical; }
.contact__submit {
  margin: 18px auto 0;
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--accent);
  color: #fff;
  border: 0;
  padding: 17px 56px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 2px;
  cursor: pointer;
  letter-spacing: .04em;
  transition: background .15s, transform .15s;
  box-shadow: 0 6px 18px rgba(0,160,233,.3);
}
.contact__submit:hover { background: var(--accent-deep); transform: translateY(-1px); }

/* ========== FAQ =========================================================== */
.faq {
  background: var(--bg-alt);
  padding: 96px var(--gutter);
}
.faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq__item {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 0;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq__item[open] {
  border-color: var(--accent);
  box-shadow: 0 6px 18px rgba(0,47,108,.06);
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 28px 20px 74px;
  position: relative;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::before {
  content: "Q";
  position: absolute;
  left: 28px; top: 50%;
  transform: translateY(-50%);
  width: 32px; height: 32px;
  background: var(--primary);
  color: #fff;
  border-radius: 2px;
  display: grid; place-items: center;
  font-family: var(--f-en);
  font-weight: 700;
  font-size: 14px;
}
.faq__item summary::after {
  content: "＋";
  font-family: var(--f-en);
  color: var(--accent-deep);
  font-size: 20px;
  transition: transform .2s;
  font-weight: 400;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__answer {
  padding: 4px 28px 24px 74px;
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 2;
  position: relative;
}
.faq__answer::before {
  content: "A";
  position: absolute;
  left: 28px; top: 0;
  width: 32px; height: 32px;
  background: var(--accent);
  color: #fff;
  border-radius: 2px;
  display: grid; place-items: center;
  font-family: var(--f-en);
  font-weight: 700;
  font-size: 14px;
}

/* ========== FOOTER ======================================================== */
.site-footer {
  background: var(--primary);
  color: #fff;
  padding: 64px var(--gutter) 28px;
}
.site-footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.footer-brand {
  font-family: var(--f-head);
  font-weight: 900;
  font-size: 20px;
}
.footer-partner {
  display: block;
  margin-top: 22px;
  background: #fff;
  padding: 22px 28px;
  border-radius: 4px;
  line-height: 0;
  max-width: 420px;
}
.footer-partner img {
  display: block;
  width: 100%;
  height: auto;
}
.footer-brand small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  letter-spacing: .15em;
  margin-top: 6px;
}
.footer-meta {
  font-size: 12.5px;
  color: rgba(255,255,255,.75);
  line-height: 1.9;
  margin: 0;
}
.footer-meta dt { color: var(--accent); font-family: var(--f-en); font-weight: 700; letter-spacing: .15em; font-size: 10.5px; margin-top: 10px; }
.footer-meta dd { margin: 2px 0 8px; }
.site-footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px;
  font-size: 11.5px;
  color: rgba(255,255,255,.5);
  letter-spacing: .04em;
}
.site-footer__bottom a { margin-left: 22px; transition: color .2s; }
.site-footer__bottom a:hover { color: #fff; }

/* ========== LEGACY (hide decorative leftovers) ============================ */
.polaroid-stack, .sticker, .sticker-burst, .polaroid__caption,
.polaroid__img { /* polaroid frames simplified */ }
.polaroid {
  background: #fff;
  padding: 0;
  border: 1px solid var(--rule);
  position: relative;
  border-radius: 2px;
  box-shadow: 0 6px 18px rgba(0,47,108,.06);
}
.polaroid__img {
  background: var(--bg-alt-2);
  aspect-ratio: 4/3;
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
}
.polaroid--square .polaroid__img { aspect-ratio: 1/1; }
.polaroid--landscape .polaroid__img { aspect-ratio: 16/10; }
.polaroid__caption {
  text-align: center;
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: .15em;
  padding: 8px 0;
  font-family: var(--f-en);
}
.polaroid-stack, .sticker, .sticker-burst { display: none !important; }

/* ========== RESPONSIVE ==================================================== */
@media (max-width: 940px) {
  .nav { display: none; }
  .hero__inner { grid-template-columns: 1fr; gap: 36px; padding: 60px var(--gutter) 72px; }
  .hero__meta { grid-template-columns: 1fr 1fr; }
  .cards { grid-template-columns: 1fr; }
  .cta-banner__inner { grid-template-columns: 1fr; gap: 36px; }
  .voice-grid { grid-template-columns: 1fr; }
  .access__grid { grid-template-columns: 1fr; }
  .speaker-intro__inner { grid-template-columns: 1fr; gap: 28px; }
  .speaker-intro__photo { max-width: 280px; }
  .speaker-grid { grid-template-columns: repeat(2, 1fr); }
  .sponsors__grid { grid-template-columns: 1fr; }
  .program-row { grid-template-columns: 110px 1fr; gap: 16px; padding: 20px 22px; }
  .section-pad, .access, .voices, .contact, .faq, .speakers, .speaker-intro,
  .program, .cards-section, .intro, .sponsors, .cta-banner {
    padding: 64px var(--gutter);
  }
  .site-footer__top { grid-template-columns: 1fr; gap: 28px; }
  .site-footer__bottom { flex-direction: column; gap: 14px; }
  .site-footer__bottom div:last-child a { margin: 0 12px; }
}

@media (max-width: 560px) {
  .speaker-grid { grid-template-columns: 1fr; }
  .info-table th { width: 92px; font-size: 12px; }
  .hero__meta { grid-template-columns: 1fr; }
}


/* ========== SPEAKERS CTA (links to gated /speakers.html) =================== */
.speakers-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 60%, var(--primary-3) 100%);
  color: #fff;
  padding: 88px var(--gutter);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.speakers-cta::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.speakers-cta::after {
  content: "";
  position: absolute;
  right: -160px; bottom: -160px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(0,160,233,.22) 0%, transparent 65%);
  pointer-events: none;
}
.speakers-cta__inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.speakers-cta__en {
  display: inline-block;
  font-family: var(--f-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3em;
  color: var(--accent);
  margin-bottom: 18px;
}
.speakers-cta__title {
  font-family: var(--f-head);
  font-weight: 900;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.45;
  margin: 0 0 22px;
  color: #fff;
}
.speakers-cta__title em {
  font-style: normal;
  color: var(--accent);
}
.speakers-cta__lead {
  font-size: 14.5px;
  line-height: 2;
  color: rgba(255,255,255,.85);
  margin: 0 0 32px;
}
.speakers-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--accent);
  color: #fff;
  padding: 17px 36px 17px 32px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .04em;
  transition: background .15s, transform .15s;
  box-shadow: 0 10px 28px rgba(0,160,233,.32);
}
.speakers-cta__btn:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
}
.speakers-cta__btn span {
  font-family: var(--f-en);
  font-size: 18px;
  transition: transform .15s;
}
.speakers-cta__btn:hover span { transform: translateX(4px); }
.speakers-cta__note {
  margin-top: 18px;
  font-size: 12px;
  color: rgba(255,255,255,.6);
  letter-spacing: .04em;
}
@media (max-width: 720px) {
  .speakers-cta { padding: 56px var(--gutter); }
}


/* ========== SPEAKERS CTA — two-step actions ============================== */
.speakers-cta__lead strong {
  color: var(--accent);
  font-weight: 800;
}
.speakers-cta__actions {
  margin: 40px auto 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 760px;
}
.speakers-cta__action {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 4px;
  padding: 28px 26px 26px;
  text-align: center;
  backdrop-filter: blur(6px);
}
.speakers-cta__step {
  display: inline-block;
  font-family: var(--f-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .25em;
  color: var(--accent);
  margin-bottom: 12px;
}
.speakers-cta__action-title {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 17px;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.5;
}
.speakers-cta__action-desc {
  font-size: 12.5px;
  color: rgba(255,255,255,.75);
  margin: 0 0 20px;
  line-height: 1.85;
}
.speakers-cta__btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  padding: 13px 22px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .04em;
  box-shadow: 0 8px 22px rgba(0,160,233,.32);
  transition: background .15s, transform .15s;
}
.speakers-cta__btn--primary:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
}
.speakers-cta__btn--ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  padding: 12px 22px;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 3px;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .04em;
  transition: background .15s, color .15s, border-color .15s;
}
.speakers-cta__btn--ghost:hover {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.speakers-cta__btn--primary span,
.speakers-cta__btn--ghost span {
  font-family: var(--f-en);
  font-size: 16px;
}
@media (max-width: 680px) {
  .speakers-cta__actions {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}


/* ========== CTA BANNER — bottom action button ============================ */
.cta-banner__action {
  grid-column: 1 / -1;
  margin-top: 40px;
  text-align: center;
}
.cta-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--accent);
  color: #fff;
  padding: 17px 40px 17px 36px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .04em;
  transition: background .15s, transform .15s;
  box-shadow: 0 10px 28px rgba(0,160,233,.32);
}
.cta-banner__btn:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
}
.cta-banner__btn span {
  font-family: var(--f-en);
  font-size: 18px;
}
.cta-banner__action-note {
  margin: 14px 0 0;
  font-size: 11.5px;
  color: rgba(255,255,255,.6);
  letter-spacing: .06em;
}


/* hero title: force 2-line layout at all widths */
.hero__title .hero__line {
  display: block;
  white-space: nowrap;
  /* shrink to fit narrow viewports without wrapping */
  max-width: 100%;
}
@media (max-width: 720px) {
  .hero__title {
    font-size: clamp(22px, 7.8vw, 48px) !important;
    line-height: 1.3;
  }
}
@media (max-width: 480px) {
  .hero__title {
    font-size: clamp(20px, 7.4vw, 32px) !important;
  }
}

/* ============== MOBILE-ONLY: header, CTA, photos ============== */
@media (max-width: 720px) {
  /* header: hide brand title text so CTA has room */
  .brand__title { display: none !important; }
  .brand__logo { width: 40px; height: 40px; }
  .site-header__inner {
    padding: 10px 12px;
    gap: 8px;
  }
  .header-cta {
    font-size: 11.5px;
    padding: 9px 14px;
    white-space: nowrap;
  }

  /* section heads: stop awkward last-char wraps */
  .section-head h2 { text-wrap: pretty; }
  .section-head h2 em { white-space: nowrap; }

  /* apply-cta button: stack on small screens */
  .apply-cta__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 100%;
    max-width: 320px;
    padding: 16px 22px;
  }
  .apply-cta__btn small {
    margin-left: 0;
    font-size: 10.5px;
  }
}

@media (max-width: 720px) {
  /* host intro: reorder to title → photo → body, full-width centered photo */
  .speaker-intro__inner {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }
  .speaker-intro__body {
    width: 100%;
    order: 1;
    display: flex;
    flex-direction: column;
  }
  .speaker-intro__body .speaker-intro__title {
    order: 0;
    margin-bottom: 24px;
  }
  .speaker-intro__body p {
    order: 2;
  }
  .speaker-intro__photo {
    order: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .speaker-intro__photo image-slot {
    min-height: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto;
  }
  .speaker-intro__body p {
    order: 3;
  }
  .speaker-intro {
    padding: 56px 20px !important;
  }
  .host-name {
    width: 100%;
    justify-content: flex-start;
  }
}


/* ========================================================================== */
/* HERO — centered, icon-meta, big gradient CTA (v2)                          */
/* ========================================================================== */
.hero.hero--center {
  min-height: auto;
  display: block;
  padding: 0 var(--gutter);
}
.hero.hero--center::after {
  /* enlarged glow */
  width: 760px; height: 760px;
  right: -240px; top: -200px;
  background: radial-gradient(circle, rgba(0,160,233,.28) 0%, transparent 62%);
}
.hero.hero--center .hero__inner {
  max-width: 980px;
  width: 100%;
  padding: 80px 0;
  display: block;
  text-align: center;
}
.hero.hero--center .hero__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero.hero--center .hero__title {
  margin: 0 0 32px;
  font-size: clamp(36px, 6vw, 76px);
  letter-spacing: .01em;
  line-height: 1.18;
  text-shadow: 0 4px 30px rgba(0,15,40,.35);
}
.hero.hero--center .hero__title .hero__line {
  display: block;
  white-space: nowrap;
}
.hero.hero--center .hero__sub {
  font-size: clamp(13.5px, 1.4vw, 16.5px);
  color: rgba(255,255,255,.92);
  max-width: 680px;
  margin: 0 auto 44px;
  line-height: 2;
  text-align: center;
}

/* meta with icons */
.hero__meta--icons {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  border: 0 !important;
  border-top: 0 !important;
  padding: 0 !important;
  margin: 0 auto 44px;
  max-width: 100%;
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 32px;
  text-align: left;
  position: relative;
}
.hero-meta-item + .hero-meta-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px; bottom: 8px;
  width: 1px;
  background: rgba(255,255,255,.25);
}
.hero-meta-item__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: rgba(255,255,255,.92);
  stroke-width: 1.5;
}
.hero-meta-item__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-meta-item__label {
  font-size: 11.5px;
  color: rgba(255,255,255,.7);
  letter-spacing: .04em;
  line-height: 1;
}
.hero-meta-item__value {
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .02em;
  line-height: 1.3;
  white-space: nowrap;
}

/* big gradient CTA */
.hero__cta.hero__cta--xl {
  margin: 0 auto 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px 88px 22px 92px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: .04em;
  border-radius: 8px;
  background: linear-gradient(180deg, #4FC3F7 0%, #00A0E9 55%, #0089C7 100%);
  color: #fff;
  box-shadow:
    0 18px 38px rgba(0, 160, 233, .45),
    inset 0 1px 0 rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.18);
  transition: transform .15s, box-shadow .15s, filter .15s;
  min-width: 360px;
}
.hero__cta.hero__cta--xl:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow:
    0 22px 44px rgba(0, 160, 233, .55),
    inset 0 1px 0 rgba(255,255,255,.55);
}
.hero__cta.hero__cta--xl .arr {
  font-family: var(--f-en);
  font-size: 26px;
  line-height: 1;
  font-weight: 400;
  margin-top: -2px;
}

/* secondary text link */
.hero__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  letter-spacing: .04em;
  padding: 8px 4px;
  border-bottom: 1px solid rgba(255,255,255,.4);
  transition: color .15s, border-color .15s;
}
.hero__link:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.hero__link span {
  font-family: var(--f-en);
  font-size: 16px;
}

/* hide legacy hero card */
.hero.hero--center .hero__card { display: none !important; }

@media (max-width: 720px) {
  .hero.hero--center { min-height: auto; padding: 60px var(--gutter); }
  .hero.hero--center .hero__inner { padding: 24px 0; }
  .hero.hero--center .hero__title {
    font-size: clamp(28px, 8.4vw, 44px) !important;
    margin-bottom: 24px;
  }
  .hero.hero--center .hero__sub { margin-bottom: 32px; }
  .hero__meta--icons {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-bottom: 36px;
  }
  .hero-meta-item {
    padding: 12px 16px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 6px;
  }
  .hero-meta-item + .hero-meta-item::before { display: none; }
  .hero__cta.hero__cta--xl {
    min-width: 0;
    width: 100%;
    padding: 19px 24px;
    font-size: 17px;
  }
}
@media (max-width: 480px) {
  .hero.hero--center .hero__title { font-size: clamp(24px, 7.6vw, 36px) !important; }
}


/* ========================================================================== */
/* HERO v3 — strongest override to fix PC layout                              */
/* ========================================================================== */
.hero.hero--center .hero__inner {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  grid-template-columns: none !important;
  max-width: 980px !important;
  margin: 0 auto !important;
  padding: 80px var(--gutter) !important;
}
.hero.hero--center .hero__copy {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  width: 100% !important;
}
section.hero.hero--center .hero__meta.hero__meta--icons {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: stretch !important;
  border: 0 !important;
  border-top: 0 !important;
  padding: 0 !important;
  margin: 0 auto 44px !important;
  gap: 0 !important;
  flex-wrap: wrap;
}
section.hero.hero--center .hero-meta-item + .hero-meta-item::before {
  content: "";
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 1px;
  background: rgba(255,255,255,.25);
}
section.hero.hero--center .hero-meta-item {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 0 32px !important;
  position: relative;
}
@media (max-width: 720px) {
  section.hero.hero--center .hero__meta.hero__meta--icons {
    flex-direction: column !important;
    gap: 14px !important;
  }
  section.hero.hero--center .hero-meta-item {
    padding: 12px 16px !important;
    background: rgba(255,255,255,.06) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    border-radius: 6px !important;
    justify-content: flex-start !important;
    width: 100%;
  }
  section.hero.hero--center .hero-meta-item + .hero-meta-item::before { display: none; }
}


/* ========================================================================== */
/* GLOBAL — gradient cyan button (applied to all primary CTAs)               */
/* ========================================================================== */
.header-cta,
.hero__cta,
.cta-banner__btn,
.apply-cta__btn,
.contact__submit,
.speakers-cta__btn--primary {
  background: linear-gradient(180deg, #4FC3F7 0%, #00A0E9 55%, #0089C7 100%) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  border-radius: 8px !important;
  box-shadow:
    0 14px 32px rgba(0, 137, 199, .42),
    inset 0 1px 0 rgba(255,255,255,.55) !important;
  transition: transform .15s, box-shadow .15s, filter .15s !important;
  font-weight: 800 !important;
  letter-spacing: .04em !important;
}
.header-cta:hover,
.hero__cta:hover,
.cta-banner__btn:hover,
.apply-cta__btn:hover,
.contact__submit:hover,
.speakers-cta__btn--primary:hover {
  transform: translateY(-1px) !important;
  filter: brightness(1.06) !important;
  box-shadow:
    0 18px 40px rgba(0, 137, 199, .55),
    inset 0 1px 0 rgba(255,255,255,.55) !important;
}


/* ========================================================================== */
/* HERO (FV) — dark navy beam background, glowing title, chip meta, gradient CTA */
/* ========================================================================== */
.hero.hero--fv {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 0 !important;
  min-height: clamp(620px, 78vh, 880px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: #fff;
  background: #04143b;
}
.hero.hero--fv::before,
.hero.hero--fv::after { content: none !important; }

.hero-fv__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("assets/fv-bg.svg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
/* extra glow lens over the title */
.hero-fv__bg::after {
  content: "";
  position: absolute;
  left: 50%; top: 38%;
  width: 1100px; height: 520px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(0,140,255,.30) 0%, rgba(4,20,59,0) 65%);
  pointer-events: none;
}

.hero-fv__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(72px, 9vw, 120px) clamp(24px, 5vw, 56px);
  text-align: center;
}

/* TITLE */
.hero-fv__title {
  font-family: var(--f-head), "Noto Sans JP", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(38px, 6.4vw, 86px);
  line-height: 1.12;
  letter-spacing: .02em;
  margin: 0 0 28px;
  color: #fff;
  text-shadow:
    0 0 24px rgba(120,200,255,.55),
    0 0 48px rgba(50,140,255,.35),
    0 4px 20px rgba(0,15,45,.55);
}
.hero-fv__title .hero-fv__line {
  display: block;
  white-space: nowrap;
}

/* SUBTITLE */
.hero-fv__sub {
  font-size: clamp(14px, 1.35vw, 18px);
  line-height: 1.9;
  color: rgba(255,255,255,.92);
  margin: 0 auto 38px;
  max-width: 720px;
  font-weight: 500;
}

/* META CHIPS */
.hero-fv__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin: 0 auto 44px;
  max-width: 920px;
}
.fv-chip {
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 300px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  background: linear-gradient(180deg, rgba(8,28,72,.78) 0%, rgba(4,18,52,.78) 100%);
  border: 1px solid rgba(110,190,255,.42);
  border-radius: 12px;
  text-align: left;
  box-shadow:
    0 8px 26px rgba(0,15,50,.45),
    inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.fv-chip__icon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  color: #9ad6ff;
  filter: drop-shadow(0 0 6px rgba(80,180,255,.45));
}
.fv-chip__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.fv-chip__label {
  font-size: 11.5px;
  color: rgba(180,215,255,.85);
  letter-spacing: .08em;
  font-weight: 500;
}
.fv-chip__value {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .01em;
  line-height: 1.35;
}

/* CTA — glassy cyan gradient pill */
.hero-fv__cta {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: fit-content;
  min-width: 480px;
  padding: 22px 56px;
  margin: 0 auto 22px;
  border-radius: 999px;
  font-family: var(--f-head), "Noto Sans JP", system-ui, sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .04em;
  color: #fff;
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.22) 0%, rgba(255,255,255,0) 55%),
    linear-gradient(135deg, #2bd1ff 0%, #1a8aef 55%, #0e5bd1 100%);
  border: 1px solid rgba(170,230,255,.7);
  box-shadow:
    0 18px 44px rgba(20,120,230,.55),
    0 4px 12px rgba(0,15,50,.35),
    inset 0 1px 0 rgba(255,255,255,.55),
    inset 0 -2px 0 rgba(0,30,80,.25);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.hero-fv__cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.07);
  box-shadow:
    0 24px 56px rgba(20,120,230,.65),
    0 6px 14px rgba(0,15,50,.4),
    inset 0 1px 0 rgba(255,255,255,.6);
}
.hero-fv__cta-label {
  position: relative;
  z-index: 1;
  flex: 0 1 auto;
}
.hero-fv__cta-arr,
.hero-fv__cta > svg {
  display: block;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  max-width: 22px;
  max-height: 22px;
  color: #fff;
  opacity: .95;
  transition: transform .2s ease;
}
.hero-fv__cta:hover .hero-fv__cta-arr { transform: translateX(4px); }

/* secondary link */
.hero-fv__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  margin: 14px auto 0;
  color: rgba(255,255,255,.92);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: .04em;
  padding: 6px 4px;
  border-bottom: 1px solid transparent;
  transition: color .15s, border-color .15s;
}
.hero-fv__link svg {
  display: block;
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  max-width: 14px;
  max-height: 14px;
  color: currentColor;
}
.hero-fv__link:hover {
  color: #9ad6ff;
  border-bottom-color: rgba(154,214,255,.55);
}
.hero-fv__press {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 16px;
  width: min(100%, 640px);
  margin: 0 auto 28px;
  padding: 16px 24px;
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,.08) 100%);
  border: 1.5px solid rgba(255,255,255,.55);
  box-shadow:
    0 8px 32px rgba(0,20,60,.35),
    inset 0 1px 0 rgba(255,255,255,.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.hero-fv__press:hover {
  transform: translateY(-2px);
  border-color: rgba(180,230,255,.85);
  background:
    linear-gradient(135deg, rgba(255,255,255,.28) 0%, rgba(154,214,255,.15) 100%);
  box-shadow:
    0 14px 40px rgba(20,100,200,.45),
    inset 0 1px 0 rgba(255,255,255,.5);
}
.hero-fv__press-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--f-en), "Barlow", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  color: #0a2a5e;
  background: linear-gradient(180deg, #fff 0%, #d4eeff 100%);
  box-shadow: 0 2px 8px rgba(0,30,80,.2);
  flex-shrink: 0;
}
.hero-fv__press-text {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.4;
  text-align: center;
}
.hero-fv__press-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .04em;
  color: #9ad6ff;
  white-space: nowrap;
  flex-shrink: 0;
}
.hero-fv__press-action svg,
.hero-fv__press svg {
  display: block;
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  max-width: 14px;
  max-height: 14px;
  transition: transform .18s ease;
}
.hero-fv__press:hover .hero-fv__press-action {
  color: #fff;
}
.hero-fv__press:hover .hero-fv__press-action svg {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-fv__title .hero-fv__line { white-space: normal; }
}
@media (max-width: 720px) {
  .hero.hero--fv { min-height: 560px; }
  .hero-fv__inner { padding: 64px 22px; }
  .hero-fv__title { font-size: clamp(28px, 8.6vw, 44px); letter-spacing: 0; }
  .hero-fv__sub { font-size: 13.5px; line-height: 1.85; margin-bottom: 28px; }
  .hero-fv__meta { gap: 12px; margin-bottom: 32px; }
  .fv-chip {
    flex: 1 1 100%;
    min-width: 0;
    max-width: none;
    padding: 14px 18px;
  }
  .fv-chip__icon { width: 26px; height: 26px; }
  .fv-chip__value { font-size: 14px; }
  .hero-fv__cta {
    min-width: 0;
    width: 100%;
    padding: 18px 28px;
    font-size: 18px;
    gap: 10px;
  }
  .hero-fv__press {
    flex-direction: column;
    gap: 8px;
    padding: 14px 18px;
    margin-bottom: 24px;
  }
  .hero-fv__press-text { font-size: 14px; }
}


/* FV — 参加無料 eyebrow badge */
.hero-fv__eyebrow {
  display: flex;
  justify-content: center;
  margin: 0 auto 26px;
}
.hero-fv__free {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 26px;
  border-radius: 999px;
  font-family: var(--f-head), "Noto Sans JP", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .12em;
  color: #04143b;
  background: linear-gradient(135deg, #c0f0ff 0%, #7adcff 100%);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.5) inset,
    0 8px 22px rgba(80,200,255,.45);
}

/* CTA — 無料 pill inside the button */
.hero-fv__cta-free {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 14px;
  border-radius: 999px;
  font-family: var(--f-head), "Noto Sans JP", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  color: #0e5bd1;
  background: #ffffff;
  box-shadow:
    0 2px 8px rgba(0,15,50,.25),
    inset 0 -1px 0 rgba(0,40,100,.08);
  white-space: nowrap;
}

@media (max-width: 720px) {
  .hero-fv__eyebrow { margin-bottom: 20px; }
  .hero-fv__free { font-size: 13px; padding: 7px 20px; letter-spacing: .1em; }
  .hero-fv__cta { gap: 12px; }
  .hero-fv__cta-free { font-size: 11.5px; padding: 4px 10px; }
}


/* ========================================================================== */
/* FLOW BRIDGE v2 — dramatic "Worries → Solved" transition                    */
/* ========================================================================== */
.flow-bridge.flow-bridge--v2 {
  position: relative;
  background: linear-gradient(180deg, #eaf2fc 0%, #f4f7fc 100%);
  padding: 0 var(--gutter);
  overflow: hidden;
  isolation: isolate;
}
.flow-bridge.flow-bridge--v2 .flow-bridge__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(32px, 4vw, 56px) 0 clamp(36px, 4vw, 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(18px, 2.4vw, 28px);
  text-align: center;
}

/* Big chunky down arrow */
.bridge-arrow {
  position: relative;
  width: clamp(110px, 11vw, 160px);
  height: clamp(82px, 8vw, 120px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  filter: drop-shadow(0 12px 22px rgba(14,91,209,.26));
}
.bridge-arrow__shape {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #2bd1ff 0%, #1a8aef 60%, #0e5bd1 100%);
  clip-path: polygon(
    32% 0%, 68% 0%,
    68% 52%, 100% 52%,
    50% 100%, 0% 52%,
    32% 52%
  );
}
.bridge-arrow__shape::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.45) 0%, rgba(255,255,255,0) 38%);
  clip-path: inherit;
  pointer-events: none;
}

/* Lead headline */
.bridge-lead {
  position: relative;
  font-family: var(--f-head), "Noto Sans JP", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 4vw, 46px);
  line-height: 1.55;
  letter-spacing: .02em;
  color: var(--ink, #0c1a3a);
  margin: 0;
  text-wrap: balance;
}

/* Marked words */
.bridge-mark {
  position: relative;
  font-style: normal;
  font-weight: 900;
  display: inline-block;
  padding: 0 .12em;
  z-index: 0;
}
.bridge-mark::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: .08em;
  height: 38%;
  z-index: -1;
  border-radius: 3px;
}
.bridge-mark--q {
  color: #c8401f;
}
.bridge-mark--q::before {
  background: linear-gradient(90deg, rgba(255,210,180,.0) 0%, rgba(255,200,150,.85) 12%, rgba(255,200,150,.85) 88%, rgba(255,210,180,.0) 100%);
}
.bridge-mark--a {
  color: #0e5bd1;
}
.bridge-mark--a::before {
  background: linear-gradient(90deg, rgba(180,225,255,.0) 0%, rgba(160,220,255,.85) 12%, rgba(160,220,255,.85) 88%, rgba(180,225,255,.0) 100%);
}

/* sparkle accents around the arrow */
.bridge-arrow::before,
.bridge-arrow::after {
  content: "";
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #1a8aef;
  opacity: .35;
  filter: blur(1px);
}
.bridge-arrow::before { left: -28px; top: 18%; }
.bridge-arrow::after { right: -28px; top: 36%; width: 14px; height: 14px; opacity: .22; }

@media (max-width: 640px) {
  .flow-bridge.flow-bridge--v2 .flow-bridge__inner { gap: 24px; }
  .bridge-arrow { width: 120px; height: 92px; }
  .bridge-lead { font-size: clamp(20px, 5.6vw, 28px); line-height: 1.6; }
  .bridge-br { display: none; }
}


/* ========================================================================== */
/* HERO countdown badge + CTA shimmer                                          */
/* ========================================================================== */
.hero-fv__eyebrow {
  flex-wrap: wrap;
  gap: 12px;
}
.hero-fv__countdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(8,28,72,.55);
  border: 1px solid rgba(120,200,255,.45);
  color: #cfe9ff;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .06em;
  white-space: nowrap;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-fv__countdown svg { width: 16px; height: 16px; color: #9ad6ff; }
.hero-fv__countdown strong {
  font-family: var(--f-en, "Barlow"), system-ui, sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin: 0 2px;
  letter-spacing: 0;
}

/* CTA shimmer + soft pulse glow */
.hero-fv__cta {
  overflow: hidden;
  animation: ctaPulse 2.6s ease-in-out infinite;
}
.hero-fv__cta::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -40%;
  width: 40%;
  background: linear-gradient(110deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.55) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-18deg);
  animation: ctaShimmer 3.6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ctaShimmer {
  0% { left: -40%; }
  55% { left: 130%; }
  100% { left: 130%; }
}
@keyframes ctaPulse {
  0%, 100% {
    box-shadow:
      0 18px 44px rgba(20,120,230,.55),
      0 4px 12px rgba(0,15,50,.35),
      inset 0 1px 0 rgba(255,255,255,.55),
      inset 0 -2px 0 rgba(0,30,80,.25);
  }
  50% {
    box-shadow:
      0 24px 64px rgba(20,150,255,.75),
      0 6px 16px rgba(0,15,50,.4),
      inset 0 1px 0 rgba(255,255,255,.55),
      inset 0 -2px 0 rgba(0,30,80,.25),
      0 0 0 6px rgba(80,180,255,.15);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-fv__cta { animation: none; }
  .hero-fv__cta::before { animation: none; opacity: 0; }
}

/* ========================================================================== */
/* HIGHLIGHTS STRIP                                                            */
/* ========================================================================== */
.hl-strip {
  position: relative;
  background: linear-gradient(180deg, #04143b 0%, #062260 100%);
  color: #fff;
  padding: 0 var(--gutter);
  border-top: 1px solid rgba(120,200,255,.18);
  border-bottom: 1px solid rgba(120,200,255,.18);
  overflow: hidden;
}
.hl-strip::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(45,209,255,.18) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 50%, rgba(80,140,255,.15) 0%, transparent 55%);
  pointer-events: none;
}
.hl-strip__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.hl-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 6px 8px;
}
.hl-stat + .hl-stat::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(150,210,255,.35) 50%, transparent 100%);
}
.hl-stat__big {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
  filter: drop-shadow(0 4px 20px rgba(80,180,255,.4));
}
.hl-stat__num {
  font-family: "Barlow", var(--f-en, "Barlow"), system-ui, sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  background: linear-gradient(180deg, #ffffff 0%, #a8e1ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -.02em;
}
.hl-stat__unit {
  font-family: var(--f-head, "Noto Sans JP"), system-ui, sans-serif;
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 700;
  color: #cfe9ff;
}
.hl-stat__label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  color: rgba(220,235,255,.85);
}

@media (max-width: 720px) {
  .hl-strip__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 12px;
    padding: 28px 0;
  }
  .hl-stat + .hl-stat::before { display: none; }
  .hl-stat:nth-child(2n)::before {
    content: "";
    position: absolute;
    left: -6px; top: 12%; bottom: 12%;
    width: 1px;
    background: rgba(150,210,255,.25);
  }
}

/* ========================================================================== */
/* STICKY CTA BAR                                                              */
/* ========================================================================== */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 80;
  transform: translateY(120%);
  transition: transform .35s ease, opacity .35s ease;
  opacity: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(4,20,59,.94) 0%, rgba(2,12,40,.96) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(120,200,255,.32);
  box-shadow: 0 -12px 40px rgba(0,15,50,.45);
}
.sticky-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.sticky-cta__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.sticky-cta__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1 1 auto;
  min-width: 0;
}
.sticky-cta__title {
  font-family: var(--f-head, "Noto Sans JP"), system-ui, sans-serif;
  font-size: 14.5px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .02em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sticky-cta__sub {
  font-size: 12.5px;
  color: rgba(210,230,255,.88);
  font-weight: 500;
}
.sticky-cta__sub strong { color: #fff; font-weight: 700; }
.sticky-cta__count strong {
  display: inline-block;
  margin: 0 3px;
  font-family: "Barlow", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #9ad6ff;
}
.sticky-cta__btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.22) 0%, rgba(255,255,255,0) 55%),
    linear-gradient(135deg, #2bd1ff 0%, #1a8aef 55%, #0e5bd1 100%);
  color: #fff;
  font-family: var(--f-head, "Noto Sans JP"), system-ui, sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .04em;
  text-decoration: none;
  border: 1px solid rgba(170,230,255,.65);
  box-shadow:
    0 10px 26px rgba(20,120,230,.55),
    inset 0 1px 0 rgba(255,255,255,.55);
  transition: transform .18s ease, filter .18s ease;
}
.sticky-cta__btn:hover { transform: translateY(-1px); filter: brightness(1.06); }
.sticky-cta__btn svg { width: 16px; height: 16px; }

@media (max-width: 720px) {
  .sticky-cta__inner { padding: 10px 14px; gap: 10px; }
  .sticky-cta__title { font-size: 13px; }
  .sticky-cta__sub { font-size: 11px; }
  .sticky-cta__btn { padding: 12px 18px; font-size: 13.5px; gap: 6px; }
  .sticky-cta__btn span { display: none; }
}
@media (max-width: 480px) {
  .sticky-cta__meta { display: none; }
  .sticky-cta { padding: 6px 0; }
  .sticky-cta__btn { flex: 1 1 auto; justify-content: center; }
}

/* avoid footer being hidden behind sticky bar */
body { padding-bottom: 0; }
.site-footer { padding-bottom: 90px; }
@media (max-width: 720px) {
  .site-footer { padding-bottom: 78px; }
}

/* ========================================================================== */
/* Section title polish — make sectional headers feel more eventful           */
/* ========================================================================== */
.section-head h2 {
  text-wrap: balance;
}


/* ========================================================================== */
/* DESIGN REFRESH v2 — engagement pass below FV                                */
/* Carries the navy + cyan brand DNA from the hero through every section      */
/* ========================================================================== */

/* ---------- Section header polish ---------------------------------------- */
.section-head { position: relative; }
.section-head h2 {
  position: relative;
  display: inline-block;
  font-family: var(--f-head), "Noto Sans JP", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.35;
  letter-spacing: .02em;
  color: var(--ink);
  margin: 0 0 18px;
}
.section-head h2 em {
  position: relative;
  font-style: normal;
  color: #0e5bd1;
  background: linear-gradient(transparent 62%, rgba(120,200,255,.45) 62%);
  padding: 0 .08em;
}
.section-head__en {
  display: inline-block;
  font-family: "Barlow", system-ui, sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .26em;
  color: #0e5bd1;
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
  padding-left: 32px;
}
.section-head__en::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 22px; height: 2px;
  background: linear-gradient(90deg, #2bd1ff, #0e5bd1);
  transform: translateY(-50%);
}

/* ---------- INTRO QUOTE -------------------------------------------------- */
.intro {
  position: relative;
  background:
    radial-gradient(circle, rgba(14,91,209,.12) 1px, transparent 1px),
    radial-gradient(ellipse at 20% 0%, rgba(45,209,255,.08) 0%, transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f4f7fc 100%);
  background-size: 28px 28px, 100% 100%, 100% 100%;
  padding: 0 var(--gutter);
  overflow: hidden;
}
.intro__inner {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 88px) 0 clamp(48px, 5vw, 64px);
  position: relative;
}
.intro__inner::before {
  content: "";
  position: absolute;
  left: -8px; top: clamp(72px, 9vw, 120px);
  width: 4px; height: 110px;
  background: linear-gradient(180deg, #2bd1ff 0%, #0e5bd1 100%);
  border-radius: 4px;
}
.intro__quote {
  font-family: var(--f-mincho, "Noto Serif JP"), serif;
  font-weight: 700;
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.7;
  letter-spacing: .03em;
  color: var(--ink);
  margin: 0 0 28px;
  text-wrap: balance;
}
.intro__rule {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, #2bd1ff, #0e5bd1);
  border-radius: 3px;
  margin: 0 0 26px;
}
.intro__body {
  font-size: 15.5px;
  line-height: 2.1;
  color: var(--ink-2);
}
.intro__body div { margin-bottom: 6px; }

/* ---------- CARDS (Worries / Solutions) ---------------------------------- */
.cards-section {
  padding: clamp(72px, 8vw, 120px) var(--gutter);
  background: #fff;
  position: relative;
}
.cards-section--alt {
  background:
    linear-gradient(180deg, #f4f7fc 0%, #eaf2fc 100%);
}
.cards-section .section-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.cards-section .section-head {
  text-align: center;
  margin-bottom: 56px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.cards .card {
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 26px 24px 28px;
  box-shadow:
    0 1px 0 rgba(14,91,209,.04),
    0 18px 40px rgba(14,40,90,.08);
  border: 1px solid rgba(14,91,209,.08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
}
.cards .card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 rgba(14,91,209,.06),
    0 28px 60px rgba(14,40,90,.14);
  border-color: rgba(45,209,255,.35);
}
.cards .card__num {
  position: absolute;
  top: -16px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: "Barlow", system-ui, sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .04em;
  color: #fff;
  background: linear-gradient(135deg, #c2401f 0%, #ee5a2b 100%);
  box-shadow: 0 8px 18px rgba(194,64,31,.32);
}
.cards-section--alt .cards .card__num {
  background: linear-gradient(135deg, #2bd1ff 0%, #0e5bd1 100%);
  box-shadow: 0 8px 18px rgba(14,91,209,.32);
}
.cards .card__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: 10px;
  overflow: hidden;
  background: #f4f7fc;
  margin: 16px 0 18px;
}
.cards .card__visual img,
.cards .card__visual image-slot { border-radius: 10px; }
.cards .card__tag {
  display: inline-block;
  font-family: "Barlow", system-ui, sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .22em;
  color: #c2401f;
  margin-bottom: 8px;
}
.cards-section--alt .card__tag { color: #0e5bd1; }
.cards .card__title {
  font-family: var(--f-head), "Noto Sans JP", system-ui, sans-serif;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.55;
  margin: 0 0 12px;
  color: var(--ink);
  letter-spacing: .01em;
}
.cards .card__body {
  font-size: 13.5px;
  line-height: 1.95;
  color: var(--ink-2);
  margin: 0;
}
.cards .card__pair {
  display: inline-block;
  font-family: "Barlow", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  color: #0e5bd1;
  background: rgba(45,209,255,.12);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.cards-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.cards-cta .btn-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  background: #fff;
  color: #0e5bd1;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .04em;
  border: 2px solid #0e5bd1;
  transition: all .2s ease;
}
.cards-cta .btn-line:hover {
  background: #0e5bd1;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(14,91,209,.35);
}

/* cta-banner: reverted to original styles (see earlier in file) */

/* ---------- VOICES ------------------------------------------------------- */
.voices {
  background:
    radial-gradient(ellipse at 0% 100%, rgba(45,209,255,.06) 0%, transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f7fafd 100%);
  padding: clamp(72px, 8vw, 110px) var(--gutter);
}
.voices .section-inner { max-width: 1180px; margin: 0 auto; }
.voices .section-head { text-align: center; margin-bottom: 56px; }
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.voice {
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 36px 28px 30px;
  box-shadow: 0 20px 50px rgba(14,40,90,.08);
  border: 1px solid rgba(14,91,209,.08);
  transition: transform .25s ease, box-shadow .25s ease;
  overflow: hidden;
}
.voice::before {
  content: "”";
  position: absolute;
  top: -8px; right: 18px;
  font-family: var(--f-mincho, "Noto Serif JP"), serif;
  font-size: 160px;
  font-weight: 900;
  line-height: 1;
  color: rgba(45,209,255,.10);
  pointer-events: none;
}
.voice:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(14,40,90,.14);
}
.voice__num {
  display: inline-block;
  font-family: "Barlow", system-ui, sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .22em;
  color: #0e5bd1;
  margin-bottom: 12px;
}
.voice__avatar {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  overflow: hidden;
  background: #eaf2fc;
  margin-bottom: 18px;
}
.voice__quote {
  font-family: var(--f-head), "Noto Sans JP", system-ui, sans-serif;
  font-weight: 800;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 14px;
  text-wrap: balance;
}
.voice__body {
  font-size: 13.5px;
  line-height: 1.95;
  color: var(--ink-2);
  margin: 0;
}

/* ---------- ACCESS ------------------------------------------------------- */
.access {
  padding: clamp(72px, 8vw, 110px) var(--gutter);
  background: #fff;
}
.access .section-inner { max-width: 1180px; margin: 0 auto; }
.access .section-head { text-align: center; margin-bottom: 48px; }
.access__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: start;
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(14,40,90,.06);
}
.info-table tr { border-bottom: 1px solid #eaf0f7; }
.info-table tr:last-child { border-bottom: none; }
.info-table th {
  background: linear-gradient(180deg, #f4f7fc 0%, #eaf2fc 100%);
  font-family: "Barlow", system-ui, sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .14em;
  color: #0e5bd1;
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
  width: 110px;
  white-space: nowrap;
}
.info-table td {
  padding: 16px 22px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-2);
  vertical-align: top;
}
.info-table .pill {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2bd1ff 0%, #0e5bd1 100%);
  color: #fff;
  font-family: "Barlow", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  margin-right: 8px;
}
.venue-hero {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: 0 18px 40px rgba(14,40,90,.14);
  aspect-ratio: 16/10;
}
.venue-hero img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.venue-hero:hover img { transform: scale(1.04); }
.venue-hero__caption {
  position: absolute;
  left: 14px; bottom: 14px;
  padding: 6px 14px;
  border-radius: 4px;
  background: rgba(4,20,59,.85);
  color: #9ad6ff;
  font-family: "Barlow", system-ui, sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .18em;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.venue-map {
  background: #f4f7fc;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}
.venue-map__head {
  padding: 12px 16px;
  font-family: "Barlow", system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: .16em;
  color: #0e5bd1;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #e0e8f2;
}
.venue-map__head .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2bd1ff;
  box-shadow: 0 0 0 4px rgba(45,209,255,.2);
}
.venue-map__frame {
  position: relative;
  aspect-ratio: 16/9;
}
.venue-map__frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.access__notes {
  margin-top: 18px;
  font-size: 12.5px;
  line-height: 1.9;
  color: var(--ink-soft);
}

@media (max-width: 820px) {
  .access__grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- PROGRAM (timeline) ------------------------------------------- */
.program {
  padding: clamp(72px, 8vw, 110px) var(--gutter);
  background: linear-gradient(180deg, #f4f7fc 0%, #eaf2fc 100%);
}
.program .section-inner { max-width: 920px; margin: 0 auto; }
.program .section-head { text-align: center; margin-bottom: 56px; }
.program__list {
  position: relative;
  padding-left: 32px;
}
.program__list::before {
  content: "";
  position: absolute;
  left: 6px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, #2bd1ff 0%, #0e5bd1 100%);
  border-radius: 2px;
}
.program-row {
  position: relative;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 22px 0 22px 24px;
  border-bottom: 1px dashed rgba(14,91,209,.18);
}
.program-row:last-child { border-bottom: none; }
.program-row::before {
  content: "";
  position: absolute;
  left: -32px; top: 30px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #0e5bd1;
  box-shadow: 0 0 0 4px rgba(45,209,255,.18);
}
.program-row__time {
  font-family: "Barlow", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #0e5bd1;
  letter-spacing: -.01em;
  padding-top: 2px;
}
.program-row__title {
  font-family: var(--f-head), "Noto Sans JP", system-ui, sans-serif;
  font-weight: 800;
  font-size: 17px;
  margin: 0 0 6px;
  color: var(--ink);
  letter-spacing: .01em;
}
.program-row__desc {
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-2);
  margin: 0;
}
.program-row__desc small { display: block; margin-top: 6px; color: var(--ink-soft); font-size: 12.5px; }

@media (max-width: 640px) {
  .program-row { grid-template-columns: 1fr; gap: 4px; }
}

/* sponsors: reverted to original styles (see earlier in file) */

/* ---------- HOST INTRO --------------------------------------------------- */
.speaker-intro {
  padding: clamp(72px, 8vw, 110px) var(--gutter);
  background:
    radial-gradient(ellipse at 80% 0%, rgba(45,209,255,.06) 0%, transparent 50%),
    #ffffff;
}
.speaker-intro__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: start;
}
.speaker-intro__photo {
  position: relative;
}
.speaker-intro__photo image-slot {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 14px;
  overflow: hidden;
  background: #eaf2fc;
  display: block;
}
.host-name {
  margin-top: 18px;
  font-family: var(--f-head), "Noto Sans JP", system-ui, sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
}
.host-name ruby rt { color: var(--ink-soft); font-size: 10px; }
.host-name__role {
  display: block;
  margin-top: 4px;
  font-family: "Barlow", system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: .18em;
  color: #0e5bd1;
  font-weight: 700;
  text-transform: uppercase;
}
.speaker-intro__title {
  font-family: var(--f-head), "Noto Sans JP", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.35;
  margin: 0 0 24px;
  color: var(--ink);
}
.speaker-intro__title em {
  font-style: normal;
  color: #0e5bd1;
  background: linear-gradient(transparent 62%, rgba(120,200,255,.45) 62%);
  padding: 0 .08em;
}
.speaker-intro__body p {
  font-size: 14.5px;
  line-height: 2.05;
  color: var(--ink-2);
  margin: 0 0 14px;
}

@media (max-width: 820px) {
  .speaker-intro__inner { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- SPEAKERS CTA ------------------------------------------------- */
.speakers-cta {
  position: relative;
  padding: clamp(80px, 9vw, 120px) var(--gutter);
  background:
    radial-gradient(ellipse at 75% 10%, rgba(43,209,255,.22) 0%, transparent 45%),
    radial-gradient(ellipse at 20% 90%, rgba(80,120,255,.2) 0%, transparent 45%),
    linear-gradient(160deg, #03102e 0%, #071d55 50%, #03102e 100%);
  color: #fff;
  overflow: hidden;
}
.speakers-cta__deco { position: absolute; inset: 0; pointer-events: none; }
.speakers-cta__deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(43,209,255,.12);
}
.speakers-cta__deco-ring--1 { width: 500px; height: 500px; top: -200px; right: -150px; }
.speakers-cta__deco-ring--2 { width: 320px; height: 320px; bottom: -100px; left: -80px; border-color: rgba(100,160,255,.1); }
.speakers-cta__deco-ring--3 { width: 180px; height: 180px; top: 60px; left: 10%; border-color: rgba(43,209,255,.08); }
.speakers-cta__inner { max-width: 860px; margin: 0 auto; text-align: center; position: relative; }

/* Eyebrow */
.speakers-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Barlow", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .28em;
  color: #4dd8ff;
  margin-bottom: 22px;
}
.speakers-cta__eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #4dd8ff);
}
.speakers-cta__eyebrow-line:last-child { background: linear-gradient(90deg, #4dd8ff, transparent); }

.speakers-cta__title {
  font-family: var(--f-head), "Noto Sans JP", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.4;
  margin: 0 0 48px;
  color: #fff;
  text-shadow: 0 4px 32px rgba(0,15,60,.5);
}
.speakers-cta__title em {
  font-style: normal;
  color: #4dd8ff;
  background: linear-gradient(transparent 66%, rgba(43,209,255,.3) 66%);
  padding: 0 .1em;
}

/* Feature cards */
.speakers-cta__features {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0 auto 44px;
}
.speakers-cta__feature {
  flex: 1;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(100,190,255,.2);
  border-radius: 16px;
  padding: 24px 16px 20px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background .2s, transform .2s;
}
.speakers-cta__feature:hover { background: rgba(43,209,255,.1); transform: translateY(-3px); }
.speakers-cta__feature-icon {
  width: 48px; height: 48px;
  margin: 0 auto 12px;
  color: #4dd8ff;
  display: flex; align-items: center; justify-content: center;
}
.speakers-cta__feature-icon svg { width: 100%; height: 100%; }
.speakers-cta__feature-text { font-size: 13px; line-height: 1.8; color: rgba(210,235,255,.9); margin: 0; }
.speakers-cta__feature-text strong { color: #fff; font-weight: 700; }

.speakers-cta__lead {
  font-size: 15px;
  line-height: 2;
  color: rgba(210,230,255,.85);
  margin: 0 auto 44px;
  max-width: 680px;
}
.speakers-cta__lead strong { color: #fff; }

/* Main CTA button */
.speakers-cta__cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.speakers-cta__main-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 44px;
  border-radius: 999px;
  font-family: var(--f-head), "Noto Sans JP", system-ui, sans-serif;
  font-weight: 900;
  font-size: 17px;
  letter-spacing: .04em;
  text-decoration: none;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255,255,255,.25) 0%, rgba(255,255,255,0) 50%),
    linear-gradient(135deg, #2bd1ff 0%, #1278f0 55%, #0b4bcc 100%);
  border: 1px solid rgba(180,235,255,.5);
  box-shadow:
    0 0 0 4px rgba(43,209,255,.15),
    0 16px 40px rgba(10,80,210,.55),
    inset 0 1px 0 rgba(255,255,255,.5);
  transition: all .25s ease;
}
.speakers-cta__main-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 6px rgba(43,209,255,.2),
    0 20px 48px rgba(10,80,210,.65),
    inset 0 1px 0 rgba(255,255,255,.5);
  filter: brightness(1.08);
}
.speakers-cta__main-btn-label { flex: 1; }
.speakers-cta__main-btn-arr {
  font-family: "Barlow", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  transition: transform .2s;
}
.speakers-cta__main-btn:hover .speakers-cta__main-btn-arr { transform: translateX(4px); }
.speakers-cta__cta-sub { font-size: 12.5px; color: rgba(180,215,255,.75); margin: 0; }
.speakers-cta__note { font-size: 12px; color: rgba(160,200,255,.6); margin: 0; }

@media (max-width: 720px) {
  .speakers-cta__features { flex-direction: column; gap: 12px; }
  .speakers-cta__main-btn { font-size: 15px; padding: 16px 28px; width: 100%; justify-content: center; }
}

/* ---------- FAQ ---------------------------------------------------------- */
.faq {
  padding: clamp(72px, 8vw, 110px) var(--gutter);
  background: #fff;
}
.faq .section-inner { max-width: 900px; margin: 0 auto; }
.faq .section-head { text-align: center; margin-bottom: 40px; }
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq__item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(14,91,209,.12);
  overflow: hidden;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.faq__item:hover { border-color: rgba(45,209,255,.4); }
.faq__item[open] {
  box-shadow: 0 12px 30px rgba(14,40,90,.08);
  border-color: rgba(45,209,255,.45);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 56px 20px 56px;
  position: relative;
  font-family: var(--f-head), "Noto Sans JP", system-ui, sans-serif;
  font-weight: 800;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::before {
  content: "Q";
  position: absolute;
  left: 18px; top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #2bd1ff, #0e5bd1);
  color: #fff;
  font-family: "Barlow", system-ui, sans-serif;
  font-weight: 800;
  font-size: 14px;
}
.faq__item summary::after {
  content: "";
  position: absolute;
  right: 22px; top: 50%;
  width: 14px; height: 14px;
  border-right: 2.5px solid #0e5bd1;
  border-bottom: 2.5px solid #0e5bd1;
  transform: translateY(-70%) rotate(45deg);
  transition: transform .25s ease;
}
.faq__item[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq__answer {
  padding: 0 56px 22px 56px;
  font-size: 14px;
  line-height: 1.95;
  color: var(--ink-2);
  position: relative;
}
.faq__answer::before {
  content: "A";
  position: absolute;
  left: 18px; top: 0;
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f4f7fc;
  color: #0e5bd1;
  font-family: "Barlow", system-ui, sans-serif;
  font-weight: 800;
  font-size: 14px;
  border: 1.5px solid rgba(14,91,209,.25);
}

/* ---------- APPLY CTA (final) ------------------------------------------- */
.apply-cta {
  padding: clamp(72px, 8vw, 110px) var(--gutter);
  background:
    radial-gradient(ellipse at 80% 0%, rgba(45,209,255,.22) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 100%, rgba(80,160,255,.20) 0%, transparent 50%),
    linear-gradient(180deg, #062260 0%, #04143b 100%);
}
.apply-cta__box {
  max-width: 880px;
  margin: 0 auto;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(120,200,255,.35);
  border-radius: 18px;
  padding: clamp(40px, 5vw, 60px) clamp(28px, 5vw, 56px);
  text-align: center;
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 30px 70px rgba(0,15,50,.4);
}
.apply-cta__label {
  display: inline-block;
  font-family: "Barlow", system-ui, sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .26em;
  color: #9ad6ff;
  margin-bottom: 16px;
  padding: 6px 18px;
  border: 1px solid rgba(154,214,255,.5);
  border-radius: 999px;
}
.apply-cta h3 {
  font-family: var(--f-head), "Noto Sans JP", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.45;
  margin: 0 0 18px;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0,15,50,.4);
}
.apply-cta p {
  font-size: 14.5px;
  line-height: 2;
  color: rgba(220,235,255,.9);
  margin: 0 0 32px;
}
.apply-cta__btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px 48px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.25) 0%, rgba(255,255,255,0) 50%),
    linear-gradient(135deg, #2bd1ff 0%, #1278f0 55%, #0b4bcc 100%);
  color: #fff;
  font-family: var(--f-head), "Noto Sans JP", system-ui, sans-serif;
  font-weight: 900;
  font-size: 17px;
  letter-spacing: .04em;
  text-decoration: none;
  border: 1px solid rgba(180,235,255,.5);
  box-shadow:
    0 0 0 4px rgba(43,209,255,.15),
    0 16px 40px rgba(10,80,210,.55),
    inset 0 1px 0 rgba(255,255,255,.5);
  transition: all .25s ease;
}
.apply-cta__btn-main { display: flex; align-items: center; gap: 10px; }
.apply-cta__btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 6px rgba(43,209,255,.2),
    0 20px 48px rgba(10,80,210,.65),
    inset 0 1px 0 rgba(255,255,255,.5);
  filter: brightness(1.08);
}
.apply-cta__btn small {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  opacity: .85;
}

/* ---------- FOOTER ------------------------------------------------------- */
.site-footer {
  background: linear-gradient(180deg, #04143b 0%, #02091f 100%);
  color: rgba(220,235,255,.85);
  padding: 64px var(--gutter) 90px;
  font-size: 13px;
}
.site-footer__inner { max-width: 1180px; margin: 0 auto; }
.site-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(120,200,255,.18);
}
.footer-brand {
  font-family: var(--f-head), "Noto Sans JP", system-ui, sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: #fff;
  letter-spacing: .02em;
}
.footer-brand small {
  display: block;
  font-family: "Barlow", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: .22em;
  color: #9ad6ff;
  font-weight: 700;
  margin-top: 6px;
}
.footer-partner {
  display: inline-block;
  margin-top: 22px;
  background: #fff;
  padding: 22px 32px;
  border-radius: 6px;
  line-height: 0;
  max-width: 480px;
  opacity: .98;
}
.footer-partner img { height: 96px; width: auto; max-width: 100%; display: block; filter: none; }
.footer-meta {
  display: grid;
  grid-template-columns: 100px 1fr;
  column-gap: 18px;
  row-gap: 12px;
  align-items: baseline;
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
}
.footer-meta dt {
  font-family: "Barlow", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: .14em;
  color: #9ad6ff;
  font-size: 11px;
  white-space: nowrap;
}
.footer-meta dd { margin: 0; color: rgba(220,235,255,.82); }
.footer-meta dd a { color: rgba(220,235,255,.82); text-decoration: underline; text-underline-offset: 3px; }
.footer-meta dd a:hover { color: #9ad6ff; }
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 12px;
  color: rgba(180,210,255,.6);
}
.site-footer__bottom a { color: rgba(220,235,255,.7); margin-left: 18px; }
.site-footer__bottom a:hover { color: #9ad6ff; }

/* Footer contact block */
.footer-contact-block {
  margin-top: 28px;
  padding: 20px 24px;
  border: 1px solid rgba(154,214,255,.25);
  border-radius: 10px;
  background: rgba(255,255,255,.04);
}
.footer-contact-block__heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--accent, #9ad6ff);
  text-transform: uppercase;
  margin: 0 0 10px;
}
.footer-contact-block__org {
  font-size: 13px;
  color: rgba(180,210,255,.75);
  line-height: 1.7;
  margin: 0 0 14px;
}
.footer-contact-block__items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  align-items: center;
}
.footer-contact-block__tel {
  font-size: 22px;
  font-weight: 700;
  color: #9ad6ff;
  letter-spacing: .08em;
  text-decoration: none;
}
.footer-contact-block__tel:hover { color: #fff; }
.footer-contact-block__mail {
  font-size: 14px;
  color: rgba(220,235,255,.7);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-contact-block__mail:hover { color: #9ad6ff; }

/* Footer event info */
.footer-event-info {
  padding: 24px 0 0;
  margin: 8px 0 0;
}
.footer-event-dl {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  margin: 0;
}
.footer-event-dl__item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  min-width: 0;
}
.footer-event-dl__item--access { align-items: flex-start; }
.footer-event-dl dt {
  font-family: "Barlow", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  color: #4dd8ff;
  white-space: nowrap;
  flex-shrink: 0;
}
.footer-event-dl dd {
  font-size: 13px;
  color: rgba(220,235,255,.82);
  margin: 0;
  line-height: 1.6;
}
.footer-station {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}
.footer-station:last-child { margin-bottom: 0; }
.footer-station__pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: #4dd8ff;
  border: 1px solid rgba(77,216,255,.4);
  border-radius: 99px;
  padding: 1px 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 820px) {
  .site-footer__top { grid-template-columns: 1fr; gap: 28px; }
  .site-footer__bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
  .site-footer__bottom > div:last-child a { margin: 0 18px 0 0; }
  .footer-event-dl { flex-direction: column; gap: 14px; }
  .footer-event-dl__item { flex-direction: column; gap: 4px; }
}

/* ---------- WORRIES section heading red accent override ----------------- */
.cards-section:not(.cards-section--alt) .section-head h2 em {
  color: #c2401f;
  background: linear-gradient(transparent 62%, rgba(255,200,150,.55) 62%);
}

/* small grid breakpoints */
@media (max-width: 820px) {
  .cards, .voice-grid { grid-template-columns: 1fr; gap: 22px; }
}
@media (max-width: 720px) {
  .program__list { padding-left: 26px; }
  .program-row::before { left: -26px; }
  .info-table th { width: 88px; font-size: 11.5px; padding: 12px 14px; }
  .info-table td { padding: 12px 16px; font-size: 13px; }
  .voice::before { font-size: 120px; }
}


/* Station rows — pill on top, station name on next line */
.station-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(14,91,209,.15);
}
.station-row:first-child { padding-top: 0; }
.station-row:last-child { padding-bottom: 0; border-bottom: none; }
.station-row .pill { margin: 0; }
.station-row__name {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-2);
}


/* ========================================================================== */
/* WORRIES v2 — horizontal stacked cards with illustration left, text right    */
/* ========================================================================== */
.worries-v2 {
  background: linear-gradient(180deg, #f4f7fc 0%, #eaf2fc 100%);
}
.worries-v2 .section-head { text-align: center; margin-bottom: 40px; }
.worries-v2 .section-head h2 {
  font-family: var(--f-head), "Noto Sans JP", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: .02em;
}
.worries-v2 .worry-mark {
  font-style: normal;
  color: #ef6a18;
  font-weight: 900;
  background: none;
  padding: 0 .04em;
}

.worry-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.worry-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: center;
  background: #fff;
  border-radius: 14px;
  padding: 18px 28px 18px 18px;
  box-shadow:
    0 1px 0 rgba(14,91,209,.05),
    0 14px 32px rgba(14,40,90,.08);
  border: 1px solid rgba(14,91,209,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.worry-row:hover {
  transform: translateY(-3px);
  box-shadow:
    0 1px 0 rgba(14,91,209,.06),
    0 22px 48px rgba(14,40,90,.14);
}
.worry-row__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 4;
  border-radius: 10px;
  overflow: hidden;
  background: #f4f7fc;
}
.worry-row__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.worry-row__body {
  padding: 6px 0;
}
.worry-row__title {
  font-family: var(--f-head), "Noto Sans JP", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.5;
  margin: 0 0 10px;
  color: #0e5bd1;
  letter-spacing: .01em;
}
.worry-row__desc {
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--ink-2);
  margin: 0;
}

@media (max-width: 720px) {
  .worry-row {
    grid-template-columns: 110px 1fr;
    gap: 16px;
    padding: 14px 18px 14px 14px;
  }
  .worry-row__title { font-size: 16px; margin-bottom: 6px; }
  .worry-row__desc { font-size: 13px; line-height: 1.85; }
}
@media (max-width: 480px) {
  .worry-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 100%;
  }
  .worry-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 0 12px;
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,40,100,.07);
    transition: transform .2s, box-shadow .2s;
  }
  .worry-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0,47,108,.13);
  }
  .worry-row__visual {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 0;
    margin-bottom: 0;
    position: relative;
  }
  .worry-row__visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .worry-row__body {
    padding: 16px 18px 0;
    flex: 1;
  }
  .worry-row__title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.55;
    color: var(--primary);
  }
  .worry-row__desc {
    font-size: 13.5px;
    line-height: 1.95;
    color: var(--ink-2);
  }
}


/* ========================================================================== */
/* Image quality — sharpen browser rendering across the site                   */
/* ========================================================================== */
img,
image-slot,
.worry-row__visual img,
.card__visual img,
.voice__avatar img,
.sponsor__logo img,
.venue-hero img,
.brand__logo,
.footer-partner img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: auto;
  -ms-interpolation-mode: bicubic;
  backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-font-smoothing: antialiased;
}

/* Photo containers: slight contrast/sharpness lift for a crisper feel  */
.worry-row__visual img,
.card__visual img,
.voice__avatar img,
.venue-hero img {
  filter: contrast(1.04) saturate(1.06);
}

/* Logos / illustrations keep neutral tone */
.brand__logo,
.footer-partner img,
.sponsor__logo img {
  filter: none;
}

/* Avoid downscaling artifacts by sizing illustration containers up a notch */
.worry-row__visual {
  aspect-ratio: 5 / 4;
}
@media (min-width: 721px) {
  .worry-row { grid-template-columns: 240px 1fr; }
}

/* ===== FV 画像下ボタン ===== */
.fv-btn-below {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 32px 16px 40px;
  background: #fff;
}
.fv-link-dark {
  color: #333 !important;
}

/* ===== スマホ専用改行 ===== */
.sp-br { display: none; }
@media (max-width: 640px) {
  .sp-br { display: inline; }
}

/* ===== FV タグライン ===== */
.hero-fv__tagline {
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 600;
  letter-spacing: .12em;
  color: rgba(255,255,255,.85);
  margin: 0 0 10px;
  padding: 5px 14px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 100px;
  display: inline-block;
}


/* ========================================================================== */
/* Site closed page                                                            */
/* ========================================================================== */
.site-closed-page {
  margin: 0;
  min-height: 100vh;
  background: #04143b;
  color: #fff;
}
.site-closed {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  overflow: hidden;
}
.site-closed__bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/fv-bg.svg");
  background-size: cover;
  background-position: center;
  opacity: .85;
}
.site-closed__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,140,255,.22) 0%, rgba(4,20,59,.75) 70%);
}
.site-closed__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  text-align: center;
}
.site-closed__logo {
  width: 120px;
  height: auto;
  margin: 0 auto 28px;
  filter: drop-shadow(0 8px 24px rgba(0,30,80,.45));
}
.site-closed__badge {
  display: inline-block;
  margin: 0 0 20px;
  padding: 6px 16px;
  border-radius: 999px;
  font-family: var(--f-en), "Barlow", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  color: #9ad6ff;
  border: 1px solid rgba(154,214,255,.45);
  background: rgba(4,20,59,.55);
}
.site-closed__title {
  font-family: var(--f-head), "Noto Sans JP", sans-serif;
  font-size: clamp(26px, 5vw, 38px);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: .04em;
  margin: 0 0 24px;
  text-shadow: 0 4px 24px rgba(0,20,60,.5);
}
.site-closed__lead {
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 2;
  color: rgba(255,255,255,.88);
  margin: 0;
}
