:root {
  --ink: #040000;
  --ink-mute: #8a91a0;
  --line: #dfe2ea;
  --line-soft: #eef0f4;
  --bg: #ffffff;
  --bg-tint: #f6f8fc;

  --c-blue: #1b8fe3;
  --c-blue-dk: #0a2340;
  --c-cyan: #3ed3e8;
  --c-yellow: #f7d747;
  --c-magenta: #d752a8;
  --c-purple: #7c5cd6;
  --c-lime: #a7d850;
  --c-coral: #ff7a59;

  --sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", system-ui, sans-serif;
  --display: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  --en: "Inter", "Noto Sans JP", sans-serif;
  --en-display: "Orbitron", "Inter", sans-serif;

  --container: 1200px;
}

* {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%
}

html,
body {
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: var(--c-blue-dk);
  border: 0;
  cursor: pointer;
  padding: 0;
  border: 2px solid var(--c-cyan);
}

/* ====== Header ====== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(15, 23, 42, .02);
}

.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 72px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  line-height: 1
}

.logo__img {
  height: 38px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px
}

.nav a {
  position: relative;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: color .2s;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  background: var(--c-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.nav a:hover {
  color: var(--c-blue-dk)
}

.nav a:hover::after {
  transform: scaleX(1)
}

.nav__cta {
  margin-left: 8px;
  padding: 10px 18px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .05em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, transform .2s;
}

.nav__cta::after {
  display: none
}

.nav__cta:hover {
  background: var(--c-blue-dk);
  color: #fff;
  transform: translateY(-1px)
}

.nav__cta svg {
  width: 14px;
  height: 14px
}

/* ====== Hamburger toggle ====== */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 70;
  flex-shrink: 0;
}

.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-cyan);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.25s ease,
    width 0.25s ease;
  transform-origin: center;
}

.is-menu-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.is-menu-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.is-menu-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ====== Drawer overlay ====== */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 35, 64, 0.55);
  backdrop-filter: blur(2px);
  z-index: 55;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.is-menu-open .drawer-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* ====== Drawer ====== */
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--c-blue-dk);
  z-index: 60;
  display: flex;
  flex-direction: column;
  padding: 96px 36px 48px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.is-menu-open .drawer {
  transform: translateX(0);
}

.drawer__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  border: 2px solid var(--c-cyan);
}

.drawer__close span {
  position: absolute;
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-cyan);
  border-radius: 2px;
}

.drawer__close span:nth-child(1) {
  transform: rotate(45deg);
}

.drawer__close span:nth-child(2) {
  transform: rotate(-45deg);
}

.drawer__close:hover span {
  background: var(--c-cyan);
}

.drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.drawer__list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition-delay: calc(var(--i, 0) * 0.07s + 0.05s);
}

.is-menu-open .drawer__list li {
  opacity: 1;
  transform: translateX(0);
}

.drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s, padding-left 0.2s;
}

.drawer__link::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.5;
  flex-shrink: 0;
}

.drawer__link:hover {
  color: var(--c-cyan);
  padding-left: 6px;
}

.drawer__foot {
  padding-top: 32px;
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition-delay: calc(var(--i, 3) * 0.07s + 0.05s);
}

.is-menu-open .drawer__foot {
  opacity: 1;
  transform: translateX(0);
}

.drawer__cta {
  width: 100%;
  justify-content: center;
  font-size: 14px;
  padding: 14px 20px;
  gap: 10px;
}

/* ====== Hero ====== */
.hero {
  position: relative;
  padding-top: 72px;
  background: #fff;
  overflow: hidden;
}

.hero__visual {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5vw 4vw 4vw;
  min-height: 640px;
  overflow: hidden;
  animation: heroBgColor 8s ease-out forwards;
}

@keyframes heroBgColor {
  0% {
    background-color: #0a2340;
  }

  60% {
    background-color: #a8c8e8;
  }

  100% {
    background-color: #ffffff;
  }
}

.hero__bg {
  position: absolute;
  inset: -10%;
  background-image: url("../img/hero_bg.png");
  background-size: cover;
  background-position: center 50%;
  animation: heroKenBurns 6s ease-out forwards;
  will-change: transform;
  z-index: 0;
}

@keyframes heroKenBurns {
  0% {
    transform: scale(1.24) translate(2%, -1.5%);
  }

  100% {
    transform: scale(1) translate(0, 0);
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__visual h1 {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
  animation: heroFadeUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.15s;
}

.hero__title {
  width: min(900px, 80%);
  height: auto;
  display: block;
}

.hero__visual::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 18%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 90%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  animation: heroAfterFade 8s ease-out forwards;
}

@keyframes heroAfterFade {

  0%,
  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.hero__cta {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.hero__tagline {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: .08em;
  animation: heroFadeUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.5s;
}

.hero__tagline::before,
.hero__tagline::after {
  content: "";
  width: 32px;
  height: 1.5px;
  background: var(--c-blue);
  display: block;
}

.hero__tagline em {
  font-style: normal;
  color: var(--c-blue-dk);
  font-weight: 900
}

.hero__pixrow {
  display: flex;
  gap: 5px;
  margin-bottom: 4px
}

.hero__pixrow i {
  display: block;
  width: 12px;
  height: 12px
}

.pixelband {
  position: absolute;
  display: flex;
  gap: 6px;
  pointer-events: none;
  z-index: 1;
}

.pixelband i {
  display: block;
  width: 14px;
  height: 14px
}

.pixelband i.b {
  background: var(--c-blue)
}

.pixelband i.c {
  background: var(--c-cyan)
}

.pixelband i.y {
  background: var(--c-yellow)
}

.pixelband i.m {
  background: var(--c-magenta)
}

.pixelband i.p {
  background: var(--c-purple)
}

.pixelband i.l {
  background: var(--c-lime)
}

.pixelband i.k {
  background: var(--ink)
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  animation: heroFadeUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.8s;
}

.hero__stats {
  position: absolute;
  right: max(calc(50% - 300px), 16px);
  bottom: 12%;
  z-index: 4;
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  animation: heroFadeUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 1.1s;
  align-items: center;
}

.hero__stats>div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px
}

.hero__stats strong {
  font-family: var(--display);
  font-weight: 900;
  font-size: 28px;
  color: var(--c-blue-dk);
  letter-spacing: 0;
  line-height: 1;
}

.hero__stats .sep {
  width: 1px;
  height: 32px;
  background: var(--line)
}

.hero__free-img {
  width: 120px;
  height: auto;
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  background: var(--ink);
  color: #fff;
  transition: transform .2s, background .2s, box-shadow .2s;
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform .2s
}

.btn:hover {
  background: var(--c-blue-dk);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -10px rgba(10, 95, 179, .55)
}

.btn:hover svg {
  transform: translateX(3px)
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink)
}

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

/* ===== Reel (auto-scrolling marquee) ===== */
.reel {
  position: relative;
  padding: 0 0 80px;
  background: #fff;
  overflow: hidden;
}

.reel__viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.reel__track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: reelScroll 50s linear infinite;
  will-change: transform;
}

.reel__viewport:hover .reel__track {
  animation-play-state: paused
}

@keyframes reelScroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

@media (prefers-reduced-motion: reduce) {
  .reel__track {
    animation: none
  }
}

.reel__item {
  position: relative;
  flex: 0 0 360px;
  height: 240px;
  background: #dfe5ee;
  overflow: hidden;
}

.reel__item img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.reel__ph {
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(135deg, #e6ebf3 0 12px, #dde3ee 12px 24px);
  display: grid;
  place-items: center;
  color: #7a8499;
  font-family: var(--en);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

/* ===== Sections ===== */
section {
  position: relative
}

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px
}

.section-head {
  position: relative;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: clamp(56px, 8vw, 96px);
  text-align: left;
  overflow: hidden;
}

.section-head .en {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-70%);
  margin: 0;
  font-family: var(--en-display);
  font-weight: 900;
  font-size: clamp(40px, 8vw, 96px);
  letter-spacing: .02em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  background: linear-gradient(360deg, #fff1eb, #ace0f9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.section-head h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(22px, 4vw, 36px);
  letter-spacing: .04em;
  line-height: 1.1;
  color: var(--c-blue-dk);
  padding-left: 4px;
}

.section-head .pix {
  display: none
}

/* ===== Intro heading ===== */
.intro__heading {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}

.intro__heading-ja {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 24px);
  letter-spacing: .04em;
  line-height: 1.3;
  padding: 8px 24px;
  -webkit-transform: skew(-15deg);
  transform: skew(-15deg);
  color: #fff;
  background-image: -webkit-gradient(linear, left top, right top, from(#209cff), to(#68e0cf));
  background-image: -webkit-linear-gradient(left, #209cff 0%, #68e0cf 100%);
  background-image: linear-gradient(to right, #209cff 0%, #68e0cf 100%);
  border-bottom: solid 1px var(--c-blue-dk);
  border-left: solid 1px var(--c-blue-dk);
}

/* .intro__heading-ja {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 24px);
  letter-spacing: .04em;
  line-height: 1.3;
  color: var(--c-blue-dk);
  display: inline-block;
  position: relative;
  align-self: flex-start;
}

.intro__heading-ja::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 0;
  right: 0;
  height: 20px;
  background: #E3F9B0;
  z-index: -1;
} */

/* ===== Intro band ===== */
.intro {
  padding: calc(5vw + 56px) 0 100px;
  background: #f0f5fc;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 5vw, 100% 100%, 0 100%);
}

.intro__bg-label {
  position: absolute;
  font-family: var(--en-display);
  font-size: clamp(5rem, 12vw, 14rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  line-height: 1;
  color: rgba(10, 35, 64, 0.05);
  top: 50%;
  right: -2%;
  transform: translateY(-50%);
  z-index: 0;
}

.intro__img-badge {
  position: absolute;
  top: -14px;
  left: -14px;
  background: var(--c-blue-dk);
  color: var(--c-cyan);
  font-family: var(--en-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 10px 16px;
  border: 2px solid var(--c-cyan);
  z-index: 2;
}

.intro__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.intro__text {
  text-align: left
}

.intro__eyebrow {
  display: none
}

.intro__head {
  display: block;
  margin: 0 0 28px
}

.intro__head h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: 36px;
  line-height: 1.4;
  letter-spacing: .04em;
  color: var(--c-blue-dk);
  text-wrap: balance;
}

.intro__head h2 em {
  font-style: normal;
  color: var(--c-blue-dk)
}

.intro__lead {
  margin: 0;
  font-size: 18px;
  line-height: 2.1;
  color: var(--ink);
  text-wrap: pretty;
  font-weight: 400;
}

.intro__lead em {
  color: var(--c-blue-dk);
  font-style: normal;
  font-weight: 700;
  background: linear-gradient(transparent 60%, rgba(247, 215, 71, .55) 60%);
  padding: 0 2px;
}

.intro__media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro__media img {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
}

/* ===== Outline ===== */
.outline {
  padding: 160px 0 180px;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  isolation: isolate;
  clip-path: polygon(0 80px, 100% 160px, 100% 100%, 0 95%);
  margin-top: -40px;
  margin-bottom: -40px;
}

.outline::before,
.outline::after {
  content: "";
  position: absolute;
  left: -15%;
  right: -15%;
  z-index: -1;
  pointer-events: none;
}

.outline::before {
  top: -8%;
  bottom: 18%;
  background: #f0f5fc;
  transform: skewY(-3deg);
  transform-origin: left top;
}

.outline::after {
  top: 18%;
  bottom: -8%;
  background: #0a2340cc;
  transform: skewY(-3deg);
  transform-origin: right bottom;
}

.outline__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 60px auto 0;
}

.outline__row {
  grid-column: span 12;
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: start;
  gap: 24px;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid var(--c-blue);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

/* フリップ reveal：標準の translateY を perspective 回転に上書き */
.outline__row.reveal,
.outline__cal.reveal,
.signup__step.reveal,
.reccard.reveal {
  opacity: 0;
  transform: perspective(800px) rotateY(18deg);
  transform-origin: left center;
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.2, 0.8, 0.3, 1);
}

.outline__row.reveal.in,
.outline__cal.reveal.in,
.signup__step.reveal.in,
.reccard.reveal.in {
  opacity: 1;
  transform: perspective(800px) rotateY(0deg);
}

.outline__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: .12em;
}

.outline__label::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--c-blue);
}

.outline__row.is-hl .outline__label::before {
  background: var(--c-magenta)
}

.outline__val {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  line-height: 1.55;
  text-wrap: pretty;
}

.outline__val .free {
  display: inline-block;
  padding: 4px 12px;
  background: var(--c-yellow);
  color: var(--ink);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: .04em;
}

.outline__val small {
  display: block;
  font-weight: 500;
  font-size: 14px;
  margin-top: 6px
}

.outline__cal {
  grid-column: span 12;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}

.calday {
  position: relative;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--c-blue);
  display: flex;
  align-items: center;
  gap: 24px;
}

.calday__date {
  font-family: var(--display);
  font-weight: 900;
  font-size: 56px;
  color: var(--c-blue-dk);
  line-height: 1;
  letter-spacing: -.02em;
}

.calday__month {
  font-family: var(--en);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: .18em;
  text-transform: uppercase;
}

.calday__dow {
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin-top: 6px;
}

.calday__dow b {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  margin-right: 6px;
  vertical-align: middle;
}

.calday:nth-child(2) .calday__dow b {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--ink)
}

.calday__time {
  margin-left: auto;
  text-align: right;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}

.calday__time b {
  display: block;
  font-size: 24px;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: .04em
}

/* ===== Recommend cards ===== */
.recommend {
  padding: 100px 0;
  background: #fff;
  /* signup と同様に、セクション自体は常に表示しカード個別にアニメーション */
  opacity: 1 !important;
  transform: none !important;
}

.recommend__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.reccard {
  position: relative;
  background: #fff;
  border: 1px solid var(--c-blue);
  box-shadow: 0 30px 60px -36px rgba(10, 95, 179, .35);
  transition: transform .25s ease, box-shadow .25s ease;
  overflow: hidden;
}

/* .reccard:hover {
  transform: translateY(-6px);
  box-shadow: 0 36px 70px -32px rgba(10, 95, 179, .45);
} */

.reccard__num {
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: var(--en);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--ink-mute);
}

.reccard__media {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #dfe5ee;
}

.reccard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reccard__media .ph {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background:
    repeating-linear-gradient(135deg, #e8edf5 0 12px, #dee5ef 12px 24px);
  color: #7a8499;
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.reccard__chip {
  position: absolute;
  left: 10px;
  ;
  top: 16px;
  z-index: 2;
  background: var(--c-blue-dk);
  color: var(--c-cyan);
  font-family: var(--en-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 10px 16px;
  border: 2px solid var(--c-cyan);
  text-transform: uppercase;
}

.reccard__body {
  padding: 28px;
}

.reccard__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(16px, 2vw, 22px);
  color: var(--ink);
  line-height: 1.45;
  margin: 0 0 12px;
  letter-spacing: .02em;
}

.reccard__title b {
  color: var(--c-blue)
}

.reccard__more {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--ink);
  text-transform: uppercase;
}

.reccard__more svg {
  width: 14px;
  height: 14px;
  transition: transform .2s
}

.reccard:hover .reccard__more svg {
  transform: translateX(4px)
}

/* ===== Apply CTA (below Recommend) ===== */
.apply {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.apply__btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 16px;
  background: #040000;
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .06em;
  transition: background .2s, transform .2s, box-shadow .2s;
}

.apply__btn svg {
  width: 18px;
  height: 18px;
  transition: transform .2s
}

.apply__btn:hover {
  background: var(--c-blue-dk);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -14px rgba(10, 95, 179, .55);
}

.apply__btn:hover svg {
  transform: translateX(4px)
}

.apply__notes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  line-height: 2;
}

.apply__pdf {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--c-blue);
  text-underline-offset: 4px;
  transition: color .2s;
}

.apply__pdf:hover {
  color: var(--c-blue-dk)
}

.apply__pdfIcon {
  display: inline-grid;
  place-items: center;
  padding: 2px 6px;
  border: 1px solid currentColor;
  font-family: var(--en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1;
  color: #c44141;
  background: #fff;
}

/* ===== Conference ===== */
.conference {
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.conference__head {
  margin-bottom: 0;
  align-self: stretch
}

.conference__lead {
  margin: 0 0 16px;
  text-align: center;
  line-height: 2;
}

.conference__group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.conference__label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(18px, 2.4vw, 28px);
  color: var(--c-blue-dk);
  letter-spacing: .04em;
}

.conference__label .tri {
  display: none
}

.conference__banner {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16/5;
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg, #e8edf5 0 12px, #dee5ef 12px 24px);
  border: 1px solid var(--c-blue);
  box-shadow: 0 30px 60px -36px rgba(10, 95, 179, .35);
  transition: transform .25s ease, box-shadow .25s ease;
  text-decoration: none;
  color: inherit;
}

.conference__banner:hover {
  transform: translateY(-6px);
  box-shadow: 0 36px 70px -32px rgba(10, 95, 179, .45);
}

.conference__banner>* {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.conference__bannerLabel {
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  color: var(--ink);
  line-height: 1.5;
  letter-spacing: .04em;
}

.conference__banner--day1 .conference__bannerLabel,
.conference__banner--day2 .conference__bannerLabel {
  background: transparent;
  color: var(--ink)
}

.conference__more-row {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.conference__more {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 18px 56px;
  background: #fff;
  border: 1.5px solid #040000;
  font-family: var(--display);
  font-weight: 500;
  font-size: 16px;
  color: #040000;
  transition: background .2s, color .2s;
}

.conference__more svg {
  width: 14px;
  height: 14px;
  transition: transform .2s
}

.conference__more:hover {
  background: #040000;
  color: #fff
}

.conference__more:hover svg {
  transform: translateX(4px)
}

/* ===== Seminar ===== */
.seminar {
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.section-head {
  margin-bottom: 0;
  align-self: stretch
}

.seminar__lead {
  margin: 0 0 16px;
  text-align: center;
  font-size: 16px;
  line-height: 2;
  color: var(--ink);
  font-weight: 400;
}

.seminar__lead small {
  font-size: 14px;
  color: var(--ink)
}

.seminar__day {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px
}

.seminar__dayLabel {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(18px, 2.4vw, 28px);
  color: var(--c-blue-dk);
  letter-spacing: .04em;
}

.seminar__dayLabel .tri {
  display: none
}

.seminar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.semcard {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--c-blue);
  box-shadow: 0 30px 60px -36px rgba(10, 95, 179, .35);
  transition: transform .25s ease, box-shadow .25s ease;
  text-decoration: none;
  color: inherit;
}

.semcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 36px 70px -32px rgba(10, 95, 179, .45);
}

.semcard__info {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.semcard__time {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: 16px;
  color: var(--ink)
}

.semcard__meta {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px
}

.semcard__meta>div {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 8px;
  align-items: start
}

.semcard__meta dt {
  font-family: var(--display);
  font-weight: 400;
  font-size: 16px;
  color: var(--ink);
  position: relative;
  padding-right: 8px;
}

.semcard__meta dt::after {
  content: "：";
  position: absolute;
  right: -2px;
  top: 0
}

.semcard__meta dd {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.7
}

.semcard__photo {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg, #e8edf5 0 12px, #dee5ef 12px 24px);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 16px;
  color: var(--ink);
}

.semcard__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

/* ===== Special ===== */
.special {
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.special__head {
  margin-bottom: 0;
  align-self: stretch
}

.special__lead {
  margin: 0 0 16px;
  text-align: center;
  font-size: 16px;
  line-height: 2;
  color: var(--ink);
  font-weight: 400;
}

.special__lead small {
  font-size: 14px;
  color: var(--ink)
}

.special__group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px
}

.special__card {
  display: block;
  padding: 24px 32px;
  background: #fff;
  border: 1px solid var(--c-blue);
  box-shadow: 0 30px 60px -36px rgba(10, 95, 179, .35);
  transition: transform .25s ease, box-shadow .25s ease;
  text-decoration: none;
  color: inherit;
}

.special__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 36px 70px -32px rgba(10, 95, 179, .45);
}

.special__meta {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px
}

.special__meta>div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  align-items: start;
}

.special__meta dt {
  justify-self: start;
  align-self: start;
  padding: 6px 18px;
  background: var(--c-blue-dk);
  font-family: var(--display);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.4;
  min-width: 88px;
  text-align: center;
}

.special__meta dd {
  margin: 0;
  font-weight: 400;
  line-height: 1.85;
}

.special__note {
  display: block;
  margin-top: 4px;
  font-size: 14px
}

/* ===== Signup steps CTA ===== */
.signup {
  margin-top: 80px;
  width: 100%;
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
  /* reveal クラスのopacity/transform を上書き */
  opacity: 1 !important;
  transform: none !important;
}

.signup::before {
  content: "";
  position: absolute;
  inset: -30px;
  background: url("../img/step_bg.jpg") center / cover no-repeat;
  filter: blur(20px);
  transition: filter 1.4s ease;
  z-index: 0;
}

.signup.in::before {
  filter: blur(0);
}

.signup>* {
  position: relative;
  z-index: 1;
}

.signup__section-badge {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
  background: var(--c-blue-dk);
  color: var(--c-cyan);
  font-family: var(--en-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 12px 24px;
  border: 2px solid var(--c-cyan);
}

.signup__panel {
  max-width: var(--container);
  margin: 0 auto;
  background: #fff;
  padding: 30px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  position: relative;
}

.signup__title {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  color: var(--c-blue-dk);
  text-align: center;
  width: 100%;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}

.signup__bignum {
  font-family: var(--display);
  font-style: normal;
  font-weight: 900;
  font-size: 52px;
  line-height: 1;
  color: var(--c-cyan);
  letter-spacing: 0;
  margin: 0 4px;
}

.signup__steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
  width: 100%;
}

.signup__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  border: 1px solid #1b8fe3;
  padding: 8px 16px;
  background: #fff;
  min-height: 200px;
  position: relative;
}

.signup__num {
  font-family: var(--en-display);
  font-weight: 900;
  font-size: 32px;
  color: var(--c-blue-dk);
  letter-spacing: .06em;
  line-height: 1;
  margin-bottom: 14px;
}

.signup__icon {
  flex: 1;
  display: grid;
  place-items: center;
  color: var(--ink);
  margin-bottom: 8px;
}

.signup__icon img {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
}

.signup__icon svg {
  width: 64px;
  height: 64px;
  display: block
}

.signup__stepTxt {
  margin: 0;
  text-align: center;
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.7;
}

.signup__arrow {
  align-self: center;
  flex: 0 0 auto;
  width: 0;
  height: 0;
  border-left: 14px solid var(--ink);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.signup__btn {
  margin-top: 8px
}

.signup__notes {
  align-self: center;
  margin: 0;
  font-size: 14px;
  color: var(--ink);
  text-align: center;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

@media (max-width:1040px) {
  .signup {
    padding: 32px 24px
  }

  .signup__steps {
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }

  .signup__step {
    max-width: 560px;
    width: 100%;
  }

  .signup__arrow {
    transform: rotate(90deg)
  }

  .signup__notes {
    align-self: center
  }
}

/* ===== Exhibitors ===== */
.exhibitors {
  padding: 100px 0;
  background: var(--bg-tint);
  position: relative;
  overflow: hidden
}

.tier {
  margin-bottom: 48px
}

.tier__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 16px;
  border-bottom: 1.5px solid var(--ink);
  margin-bottom: 32px;
  gap: 24px;
}

.tier__title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: .06em;
  color: var(--ink);
}

.tier__title .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #fff;
  font-family: var(--en);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .05em;
}

.tier--gold .tier__title .badge {
  background: #c79a3a
}

.tier--silver .tier__title .badge {
  background: #8d96a3
}

.tier--general .tier__title .badge {
  background: var(--c-blue-dk)
}

.tier--supporter .tier__title .badge {
  background: var(--c-magenta)
}

.tier__title small {
  font-family: var(--en);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-left: 6px;
}

.tier__count {
  font-family: var(--en);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--ink-mute);
  text-transform: uppercase;
}

.tier__count b {
  font-family: var(--display);
  font-weight: 900;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: 0;
  margin-right: 4px
}

.gold-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.logobox {
  aspect-ratio: 16/7;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink-mute);
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: border-color .2s, transform .2s;
  position: relative;
  overflow: hidden;
}

.logobox::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: var(--c-blue);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .25s ease;
}

.logobox:hover {
  transform: translateY(-2px);
  border-color: var(--c-blue)
}

.logobox:hover::before {
  transform: scaleY(1)
}

.silver-grid,
.general-grid,
.supporter-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
}

.silver-grid .row,
.general-grid .row,
.supporter-grid .chip {
  display: inline-flex;
  align-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  font-family: var(--display);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
  transition: color .2s;
  cursor: pointer;
}

.silver-grid .row::before,
.general-grid .row::before {
  content: none
}

.silver-grid .row:hover,
.general-grid .row:hover,
.supporter-grid .chip:hover {
  color: var(--c-blue)
}

.silver-grid .row {
  font-size: 24px
}

.general-grid .row {
  font-size: 20px
}

.supporter-grid .chip {
  font-size: 16px
}

/* ===== Access ===== */
.access {
  padding: 100px 0;
  background: #fff
}

.access__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  margin-bottom: 48px;
}

.venue {
  padding: 24px;
  border: 1px solid var(--line);
  transition: border-color .2s, transform .2s;
  margin-bottom: 20px;
}

.venue:hover {
  border-color: var(--c-blue)
}

.venue__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--c-blue-dk);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  margin-bottom: 14px;
}

.venue__tag i {
  width: 6px;
  height: 6px;
  background: var(--c-yellow);
  display: block
}

.venue__name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 20px;
  color: var(--ink);
  margin: 0 0 10px;
  letter-spacing: .04em;
}

.venue__meta {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.85;
  margin: 0;
  font-weight: 400;
}

.venue__meta b {
  color: #505050;
  font-weight: 400;
  letter-spacing: .02em
}

.map {
  position: relative;
  background: #eef2f8;
  aspect-ratio: 4 / 3;
  max-height: 480px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.map__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.map__placeholder {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, #eef2f8 0 60%, #e6ecf4 60% 100%),
    repeating-linear-gradient(0deg, transparent 0 28px, rgba(10, 95, 179, .06) 28px 29px),
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(10, 95, 179, .06) 28px 29px);
  background-blend-mode: normal, multiply, multiply;
}

.map__pin {
  position: absolute;
  left: 48%;
  top: 46%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map__pin .dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--c-blue);
  box-shadow: 0 0 0 6px rgba(27, 143, 227, .25), 0 0 0 14px rgba(27, 143, 227, .12);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 6px rgba(27, 143, 227, .25), 0 0 0 14px rgba(27, 143, 227, .12)
  }

  50% {
    box-shadow: 0 0 0 10px rgba(27, 143, 227, .18), 0 0 0 22px rgba(27, 143, 227, .06)
  }
}

.map__pin .lbl {
  margin-top: 8px;
  padding: 4px 10px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .04em;
}

.map__cta {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  padding: 10px 18px;
  background: #fff;
  border: 1.5px solid var(--ink);
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
}

.map__cta:hover {
  background: var(--ink);
  color: #fff
}

.map__cta svg {
  width: 12px;
  height: 12px
}

.routes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px
}

.route__title {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #fff;
  border: 1.5px solid var(--ink);
  font-family: var(--display);
  font-weight: 400;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 18px;
}

.route__title svg {
  width: 14px;
  height: 14px;
  color: var(--c-blue)
}

.route ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px
}

.route li {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  padding: 14px;
  background: var(--bg-tint);
  border-left: 3px solid var(--c-blue);
}

.route li.bus {
  border-left-color: var(--c-magenta)
}

.route li.taxi {
  border-left-color: var(--c-yellow)
}

.route .mode {
  font-family: var(--display);
  font-weight: 400;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: .04em;
}

.route .mode b {
  display: block;
  font-family: var(--en);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: .18em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-top: 4px
}

.route .desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.7
}

.route .desc b {
  color: var(--ink);
  font-weight: 400
}

/* ===== Organizers ===== */
.orgs {
  padding: 80px 0;
  background: var(--bg-tint);
  position: relative;
  overflow: hidden
}

.orgs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
}

.orgrow {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.orgrow:last-child {
  border-bottom: 0
}

.orgrow .lbl {
  font-family: var(--display);
  font-weight: 400;
  font-size: 16px;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  white-space: nowrap;
}

.orgrow .lbl::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--c-blue);
  margin-top: 10px;
}

.orgrow .val {
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.85
}

.orgrow .val b {
  color: var(--ink);
  font-weight: 700
}

/* ===== Footer ===== */
.preFooter {
  padding: 48px 0;
  background: #fff;
  border-top: 1px solid var(--line);
}

.preFooter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.preFooter__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--display);
  font-weight: 900;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: .04em;
}

.preFooter__brand .pix {
  display: flex;
  gap: 3px
}

.preFooter__brand .pix i {
  width: 10px;
  height: 14px;
  display: block
}

.preFooter__year {
  font-family: var(--display);
  font-weight: 900;
  font-size: 28px;
  color: var(--c-blue-dk);
  letter-spacing: .04em;
}

.preFooter__yearWrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.preFooter__yearWrap small {
  font-family: var(--en);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--ink-mute);
  text-transform: uppercase;
}

.footer {
  padding: 48px 0 36px;
  background: var(--c-blue-dk);
  color: #cdd2dc;
}

.footer h3 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  letter-spacing: .12em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer h3::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--c-yellow);
  display: block;
}

.footer__logo {
  margin: 0 0 24px
}

.footer__logo-img {
  height: 48px;
  width: auto;
  display: block
}

.footer__title {
  margin: 0 0 20px;
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .08em;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}

.footer__block {
  padding: 24px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
}

.footer__block p {
  margin: 6px 0;
  font-size: 14px;
  line-height: 1.8;
  color: #fff
}

.footer__block p b {
  color: #fff;
  font-weight: 600;
  display: block;
  margin-bottom: 4px
}

.footer__block a {
  color: var(--c-cyan);
  transition: opacity .2s
}

.footer__block a:hover {
  opacity: .7
}

.footer__copy {
  text-align: center;
  font-family: var(--en);
  font-size: 12px;
  letter-spacing: .18em;
  color: #fff;
  text-transform: uppercase;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease
}

.reveal.in {
  opacity: 1;
  transform: translateY(0)
}

/* === Side decoration === */
.side-deco {
  position: fixed;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 6px;
  pointer-events: none;
}

.side-deco i {
  display: block;
  width: 6px;
  height: 14px
}

/* ====== Responsive ====== */
@media (max-width: 1040px) {
  .recommend {
    padding: 60px 0;
  }

  .recommend__grid {
    grid-template-columns: 1fr 1fr
  }

  .gold-grid {
    grid-template-columns: 1fr 1fr
  }

  .silver-grid {
    grid-template-columns: 1fr 1fr
  }

  .general-grid {
    grid-template-columns: 1fr 1fr
  }

  .intro__inner {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .intro__media {
    order: 1
  }

  .access__grid,
  .routes {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .footer__grid {
    grid-template-columns: 1fr
  }

  .hero__title {
    width: min(700px, 85%)
  }

  .hero__cta {
    margin-top: -10px
  }
}

@media (max-width: 960px) {
  .nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .reel {
    padding: 0 0 40px;
  }

  .signup__section-badge {
    font-size: 20px;
  }

  .hero__stats {
    right: max(calc(50% - 260px), 16px);
  }
}

@media (max-width: 749px) {
  .hero__bg {
    width: 900px;
    left: calc(50% - 450px);
    right: auto;
  }

  .outline {
    /* 上辺を水平に統一（右側が160pxで開催概要が隠れるのを防ぐ） */
    clip-path: polygon(0 80px, 100% 80px, 100% 100%, 0 95%);
  }

  .outline::after {
    transform: none;
  }
}

@media (max-width: 638px) {
  .outline {
    /* 底辺も直線にしてRecommendとの境界をすっきりさせる */
    clip-path: polygon(0 80px, 100% 80px, 100% 100%, 0 100%);
    padding-bottom: 100px;
    margin-bottom: -20px;
  }

  .recommend {
    margin-top: 40px !important;
  }
}

@media (max-width: 720px) {
  .hero__bg {
    background-image: url("../img/hero_bg-sp.png");
    width: 100%;
    left: 0;
    right: 0;
  }
}

@media (max-width: 720px) {
  .header__inner {
    padding: 0 18px;
    height: 64px
  }

  .hero__visual {
    padding: 14vw 0vw 12vw;
    min-height: auto;
    gap: 18px
  }

  .hero__title {
    width: 100%
  }

  .hero__cta {
    padding: 0 18px
  }

  .hero__tagline {
    font-size: 15px
  }

  .hero__stats {
    right: 16px;
    bottom: 10%;
  }

  .hero__free-img {
    width: 100px;
  }

  .reel__item {
    flex-basis: 280px;
    height: 200px
  }

  .wrap {
    padding: 0 18px
  }

  .recommend__grid {
    grid-template-columns: 1fr
  }

  .gold-grid,
  .silver-grid,
  .general-grid {
    grid-template-columns: 1fr
  }

  .outline__row {
    grid-template-columns: 1fr;
    gap: 8px
  }

  .outline__cal {
    grid-template-columns: 1fr
  }

  .intro__head h2 {
    font-size: 24px
  }

  .intro__lead {
    font-size: 16px
  }

  .side-deco {
    display: none
  }

  /* signup: カード幅を制限・テキスト被り解消 */
  .signup__panel {
    padding-top: 36px;
  }

  .signup__step {
    max-width: 480px;
    width: 100%;
    align-self: center;
  }
}

@media (max-width: 590px) {
  .apply__btn {
    padding: 8px 16px;
  }

  .apply__notes {
    align-items: flex-start;
    font-size: 14px;
    gap: 0px;
  }

  .hero__stats {
    right: 12px;
    bottom: 8%;
  }

  .hero__free-img {
    width: 80px;
  }

  .logo__img {
    height: 30px;
  }

  .special,
  .seminar,
  .conference {
    margin-top: 80px;
  }

  .outline {
    padding-top: 120px;
  }

  .outline::after {
    top: 14%;
  }

  .signup {
    margin-top: 20px;
  }

  .signup__section-badge {
    font-size: 18px;
  }

  .signup__title {
    font-size: 18px;
    gap: 0;
  }

  .exhibitors {
    padding: 80px 0 40px;
  }

  .silver-grid .row {
    font-size: 20px;
  }

  .general-grid .row {
    font-size: 16px;
  }

  .supporter-grid .chip {
    font-size: 14px;
  }

  .access {
    padding-top: 40px;
  }

  .signup__bignum {
    font-size: 32px;
  }

  .signup__panel {
    padding: 36px 0;
  }

  .conference__more {
    padding: 16px;
    gap: 8px;
  }
}

@media (max-width: 480px) {

  .semcard,
  .orgrow {
    grid-template-columns: 1fr;
  }

  .semcard__photo {
    justify-self: center;
  }

  .special__meta>div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 390px) {
  .apply__btn {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    gap: 12px;
  }

  .apply__notes {
    width: 100%;
    text-align: left;
    align-items: flex-start;
    font-size: 13px;
  }

  .drawer {
    width: 100%;
  }
}