:root {
  --black: #050505;
  --white: #ffffff;
  --ink: #101010;
  --muted: #6f6f74;
  --line: #d9d9dd;
  --purple: #7841ff;
  --purple-dark: #4f20cf;
  --purple-soft: #e5d8ff;
  --page-padding: clamp(20px, 4vw, 64px);
  --radius: 22px;
  --max-width: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: clamp(20px, 3vw, 40px);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--white);
  color: var(--ink);
  font-family:
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    "YuGothic",
    "Noto Sans JP",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  line-break: strict;
}

body,
button,
a {
  font-feature-settings: "palt" 1;
}

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

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

p,
h1,
h2,
h3,
dl,
dd,
figure,
blockquote {
  margin: 0;
}

.site-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 76px;
  padding: 0 var(--page-padding);
  background: var(--black);
  color: var(--white);
}

.wordmark {
  position: relative;
  display: block;
  width: 92px;
  height: 25px;
  overflow: hidden;
}

.wordmark img {
  position: absolute;
  top: -57px;
  left: -22px;
  width: 137px;
  max-width: none;
  height: auto;
}

.section-shell {
  width: calc(100% - (var(--page-padding) * 0.6));
  max-width: calc(var(--max-width) - 24px);
  margin-inline: auto;
}

.opening {
  background:
    radial-gradient(
      circle at 82% 42%,
      rgba(120, 65, 255, 0.08),
      transparent 34%
    ),
    var(--black);
  color: var(--white);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: min(700px, calc(100vh - 90px));
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
}

.hero-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.hero-media,
.hero-visual-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: 60% center;
}

.hero-visual-shade {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.3), transparent 34%),
    linear-gradient(0deg, rgba(38, 8, 72, 0.46), transparent 46%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  min-height: min(700px, calc(100vh - 90px));
  padding: clamp(48px, 5vw, 78px);
  background:
    radial-gradient(circle at 18% 20%, rgba(120, 65, 255, 0.28), transparent 34%),
    linear-gradient(145deg, #070609 0%, #13091c 58%, #250c3e 100%);
}

.hero-brand,
.section-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero-brand {
  margin-bottom: 20px;
  font-size: clamp(13px, 1.3vw, 17px);
  letter-spacing: 0.2em;
}

.hero h1 {
  max-width: 640px;
  font-size: clamp(52px, 5.15vw, 76px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.hero h1 span {
  display: block;
}

.hero-location {
  margin-top: 20px;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 800;
}

.hero-summary {
  display: grid;
  gap: 8px;
  margin-top: 38px;
  font-size: clamp(16px, 1.5vw, 21px);
  font-weight: 800;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 220px;
  padding: 18px 23px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-light {
  background: var(--white);
  color: var(--black);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--purple-soft);
}

.button-dark {
  background: var(--black);
  color: var(--white);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--purple-dark);
}

.button-green {
  background: #18884b;
  color: var(--white);
}

.button-green:hover,
.button-green:focus-visible {
  background: #106d3a;
}

.button-red {
  background: #d62f35;
  color: var(--white);
  box-shadow: 0 10px 28px rgba(214, 47, 53, 0.35);
}

.button-red:hover,
.button-red:focus-visible {
  background: #b82026;
}

.text-link,
.inline-link,
.consult-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  font-size: 14px;
  font-weight: 800;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.hero-facts div {
  min-width: 0;
}

.hero-facts dt {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero-facts dd {
  font-size: clamp(15px, 1.4vw, 19px);
  font-weight: 800;
  white-space: nowrap;
}

.hero-facts small {
  font-size: 11px;
}

.hero-mark {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 5vw, 74px);
  bottom: clamp(24px, 5vw, 68px);
  display: grid;
  place-items: center;
  width: clamp(155px, 17vw, 240px);
  aspect-ratio: 1.55;
  padding: 18px;
  border-radius: 10px;
  background: var(--black);
}

.hero-mark img {
  width: 100%;
  max-height: 100%;
}

.section-padding {
  padding: clamp(90px, 10vw, 160px) var(--page-padding);
}

.section-kicker {
  margin-bottom: 22px;
  color: var(--purple);
}

.section-kicker.light {
  color: rgba(255, 255, 255, 0.7);
}

.intro {
  max-width: 1200px;
  margin: 0 auto;
}

.intro-heading,
.intro-copy {
  max-width: 920px;
}

.intro-copy {
  margin-top: clamp(48px, 6vw, 76px);
  color: rgba(255, 255, 255, 0.82);
}

.intro h2,
.program h2,
.application h2,
.support h2,
.section-heading h2,
.faq h2,
.official h2,
.agency h2 {
  font-size: clamp(36px, 4.3vw, 62px);
  line-height: 1.1;
  letter-spacing: -0.055em;
}

.large-copy {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  line-height: 1.65;
}

.intro-copy > p {
  line-height: 1.9;
}

.intro-copy > p + p,
.intro-quote + p,
.official-copy > p:not(.section-kicker),
.support-heading > p:not(.section-kicker),
.application-heading > p:not(.section-kicker) {
  margin-top: 28px;
  line-height: 1.9;
}

.intro-quote {
  margin-top: 32px;
  padding: 24px 0 24px 28px;
  border-left: 4px solid var(--purple);
  color: var(--white);
  font-size: clamp(23px, 2.5vw, 34px);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: -0.035em;
}

.intro-media {
  overflow: hidden;
  width: 100%;
  margin-top: clamp(40px, 5vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: #141414;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.experience-video-trigger {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: #000;
  color: var(--white);
  cursor: pointer;
  text-align: left;
}

.experience-video-trigger video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  object-fit: cover;
}

.experience-video-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.04) 35%,
    rgba(0, 0, 0, 0.66) 100%
  );
  transition: background 180ms ease;
}

.experience-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: clamp(68px, 8vw, 100px);
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: rgba(13, 8, 28, 0.58);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transform: translate(-50%, -50%);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.experience-video-play span {
  width: 0;
  height: 0;
  margin-left: 7%;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--white);
}

.experience-video-label {
  position: absolute;
  right: clamp(18px, 3vw, 38px);
  bottom: clamp(16px, 2.6vw, 32px);
  font-size: clamp(12px, 1.2vw, 15px);
  font-weight: 800;
  letter-spacing: 0.05em;
}

.experience-video-trigger:hover .experience-video-shade,
.experience-video-trigger:focus-visible .experience-video-shade {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.02) 25%,
    rgba(69, 25, 161, 0.72) 100%
  );
}

.experience-video-trigger:hover .experience-video-play,
.experience-video-trigger:focus-visible .experience-video-play {
  background: var(--purple);
  transform: translate(-50%, -50%) scale(1.06);
}

.experience-video-trigger:focus-visible {
  outline: 4px solid var(--purple-soft);
  outline-offset: -4px;
}

.intro-media figcaption {
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.experience-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 56px);
  background: rgba(4, 3, 8, 0.9);
  backdrop-filter: blur(10px);
}

.experience-modal-inner {
  position: relative;
  width: min(1180px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: #000;
  box-shadow: 0 32px 120px rgba(0, 0, 0, 0.65);
}

.experience-modal-inner iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: calc(100vh - 112px);
  border: 0;
  border-radius: 18px;
  background: #000;
}

.experience-modal-close {
  position: absolute;
  z-index: 2;
  top: -18px;
  right: -18px;
  display: grid;
  place-items: center;
  width: 46px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.38);
}

.experience-modal-close:hover,
.experience-modal-close:focus-visible {
  background: var(--purple-soft);
}

.science {
  background: var(--black);
  color: var(--white);
}

.science-heading {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.science-heading h2 {
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.science-heading > p:last-child {
  max-width: 760px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.9;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1280px;
  margin: 75px auto 0;
}

.stat-grid article {
  min-height: 260px;
  padding: 20px clamp(24px, 4vw, 62px);
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  text-align: center;
}

.stat-grid article:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.stat-grid strong {
  font-size: clamp(66px, 8vw, 112px);
  font-weight: 500;
  letter-spacing: -0.06em;
}

.stat-grid p {
  margin-top: 20px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
}

.source-note {
  max-width: 1000px;
  margin: 44px auto 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  line-height: 1.8;
  text-align: center;
}

.source-note a {
  display: inline-flex;
  gap: 7px;
  margin-left: 16px;
  color: var(--white);
  font-weight: 800;
}

.benefits {
  background: var(--purple);
  color: var(--white);
}

.section-heading {
  max-width: 1080px;
}

.section-heading.centered {
  margin: 0 auto;
  text-align: center;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1280px;
  margin: 74px auto 0;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.benefit-grid article {
  min-height: 250px;
  padding: clamp(28px, 4vw, 52px);
  background: var(--purple);
}

.benefit-grid article > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 11px;
  font-weight: 900;
}

.benefit-grid h3 {
  font-size: clamp(21px, 2.2vw, 29px);
  letter-spacing: -0.04em;
}

.benefit-grid p {
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.77);
  line-height: 1.75;
}

.program {
  max-width: var(--max-width);
  margin: 0 auto;
}

.program-heading {
  max-width: 900px;
  margin-bottom: 90px;
}

.day-row {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) minmax(300px, 0.75fr);
  gap: clamp(26px, 4vw, 70px);
  align-items: center;
  min-height: 250px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.day-row:last-child {
  border-bottom: 1px solid var(--line);
}

.day-number {
  align-self: start;
  padding-top: 6px;
  color: #9c9ca1;
  font-size: 17px;
  font-weight: 800;
}

.day-copy {
  max-width: 540px;
}

.day-title-en {
  margin-bottom: 10px;
  color: var(--purple);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.day-copy h3 {
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.day-copy p {
  margin-top: 18px;
  color: #45454a;
  line-height: 1.85;
}

.day-row img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  object-fit: cover;
}

.image-manifesto {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 720px;
  overflow: hidden;
  padding: var(--page-padding);
  color: var(--white);
  text-align: center;
}

.image-manifesto img,
.image-manifesto > div {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.image-manifesto img {
  object-fit: cover;
}

.image-manifesto > div {
  background: linear-gradient(90deg, rgba(9, 1, 18, 0.92), rgba(65, 10, 116, 0.28));
}

.image-manifesto p,
.image-manifesto h2 {
  position: relative;
  z-index: 2;
}

.image-manifesto h2 {
  font-size: clamp(55px, 9vw, 130px);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.speaker-profile {
  background: var(--black);
  color: var(--white);
}

.speaker-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(50px, 8vw, 130px);
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.speaker-image img {
  width: 100%;
  min-height: 680px;
  max-height: 860px;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: 28% center;
}

.speaker-image figcaption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.speaker-copy {
  max-width: 620px;
}

.speaker-copy h2 {
  font-size: clamp(48px, 6vw, 86px);
  line-height: 1.03;
  letter-spacing: -0.06em;
}

.speaker-role {
  margin-top: 28px;
  color: var(--purple-soft);
  font-size: clamp(18px, 2vw, 27px);
  font-weight: 800;
  line-height: 1.55;
}

.speaker-copy > p:not(.section-kicker, .speaker-role) {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.9;
}

.celebrity-voices {
  max-width: var(--max-width);
  margin: 0 auto;
}

.celebrity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 68px;
}

.celebrity-card {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7f5fb;
}

.celebrity-card:nth-child(2),
.celebrity-card:nth-child(3) {
  background: var(--black);
  color: var(--white);
}

.celebrity-person {
  display: flex;
  gap: 18px;
  align-items: center;
}

.celebrity-avatar {
  display: block;
  width: 76px;
  flex: 0 0 auto;
  aspect-ratio: 1;
  border: 3px solid rgba(109, 56, 194, 0.18);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 22px rgba(22, 16, 35, 0.16);
}

.celebrity-person h3 {
  font-size: 18px;
}

.celebrity-person p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.celebrity-card:nth-child(2) .celebrity-person p,
.celebrity-card:nth-child(3) .celebrity-person p {
  color: rgba(255, 255, 255, 0.55);
}

.celebrity-card blockquote {
  margin-top: 54px;
  font-size: clamp(18px, 2vw, 27px);
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: -0.03em;
}

.event-recap {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 360px;
  place-items: center;
  overflow: hidden;
  padding: 54px var(--page-padding);
  color: var(--white);
  text-align: center;
}

.event-recap-visual,
.event-recap-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.event-recap-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
}

.event-recap-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 4, 8, 0.72), rgba(20, 8, 31, 0.52), rgba(5, 4, 8, 0.72)),
    linear-gradient(0deg, rgba(41, 12, 66, 0.58), rgba(0, 0, 0, 0.15));
}

.event-recap-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 820px);
}

.event-recap-copy h2 {
  font-size: clamp(40px, 5.4vw, 66px);
  line-height: 1.05;
  letter-spacing: 0.015em;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.56);
}

.event-recap-location {
  margin-top: 18px;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
}

.event-recap-date {
  margin-top: 9px;
  font-size: clamp(18px, 2.1vw, 25px);
  font-weight: 900;
}

.event-recap-support {
  margin-top: 6px;
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 800;
}

.event-details {
  max-width: var(--max-width);
  margin: 0 auto;
}

.event-details-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 22px;
  margin-top: 68px;
}

.schedule-panel,
.venue-panel,
.travel-panel {
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.schedule-panel h3,
.venue-panel h3,
.travel-panel h3 {
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.3;
  letter-spacing: -0.04em;
}

.event-detail-kicker {
  margin-bottom: 10px;
  color: var(--purple-dark);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.12em;
}

.schedule-list {
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.schedule-row {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.schedule-row span {
  color: var(--purple);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.schedule-row strong,
.schedule-row p {
  font-size: 13px;
}

.schedule-row p {
  color: var(--muted);
}

.detail-note {
  margin-top: 24px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

.venue-name {
  margin-top: 28px;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.45;
  letter-spacing: -0.025em;
}

.venue-address {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.travel-panel {
  background: var(--white);
}

.travel-panel > h3 + p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.venue-panel iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  margin-top: 32px;
  border: 0;
  border-radius: 14px;
  background: #ececef;
}

.venue-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 20px;
  border-bottom: 1px solid currentColor;
  color: var(--purple-dark);
  font-size: 12px;
  font-weight: 900;
}

.speaker-details {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(48px, 8vw, 120px);
  max-width: 1240px;
  margin: clamp(80px, 9vw, 130px) auto 0;
  padding-top: clamp(60px, 7vw, 100px);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.speaker-achievements p,
.speaker-origin p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.95;
}

.speaker-achievements p + p,
.speaker-origin p + p {
  margin-top: 28px;
}

.speaker-origin {
  padding: clamp(30px, 4vw, 50px);
  border-radius: var(--radius);
  background: rgba(120, 65, 255, 0.16);
}

.speaker-origin h3 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.1;
  letter-spacing: -0.055em;
}

.speaker-origin h3 + p {
  margin-top: 30px;
}

.speaker-origin blockquote {
  margin: 30px 0;
  padding-left: 24px;
  border-left: 3px solid var(--purple);
  color: var(--white);
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 800;
  line-height: 1.7;
}

.voices {
  max-width: var(--max-width);
  margin: 0 auto;
}

.experience-gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: repeat(2, minmax(280px, 36vw));
  gap: 10px;
  padding: 10px;
  background: var(--black);
}

.experience-gallery figure {
  overflow: hidden;
  border-radius: 16px;
}

.experience-gallery figure:first-child {
  grid-row: 1 / 3;
}

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

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 70px;
}

.voice-grid figure {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 430px;
  padding: clamp(30px, 4vw, 52px);
  border-radius: var(--radius);
  background: #f1edfa;
}

.voice-grid figure:nth-child(2) {
  background: var(--purple);
  color: var(--white);
}

.voice-grid figure:nth-child(3) {
  background: var(--black);
  color: var(--white);
}

.voice-grid blockquote {
  font-size: clamp(23px, 2.4vw, 34px);
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: -0.035em;
}

.voice-grid figcaption {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 40px;
}

.voice-grid figcaption strong {
  font-size: 14px;
}

.voice-grid figcaption span,
.voice-note {
  color: var(--muted);
  font-size: 11px;
}

.voice-grid figure:not(:first-child) figcaption span {
  color: rgba(255, 255, 255, 0.6);
}

.voice-note {
  margin-top: 18px;
}

.support {
  background: #f7f7f9;
  color: var(--ink);
}

.support-heading {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.support-heading > p:last-child {
  max-width: 680px;
  margin-inline: auto;
  color: var(--muted);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1280px;
  margin: 75px auto 0;
}

.support-grid article {
  min-height: 300px;
  padding: 34px clamp(22px, 2.8vw, 42px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.support-grid span {
  display: block;
  margin-bottom: 70px;
  color: var(--purple);
  font-size: 11px;
  font-weight: 900;
}

.support-grid h3 {
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.04em;
}

.support-grid p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.agency {
  background: #f3f0f6;
  color: var(--ink);
}

.agency-intro {
  max-width: 1080px;
  margin: 0 auto;
}

.agency-heading {
  max-width: 760px;
}

.agency-intro-copy {
  max-width: 760px;
  margin-top: 24px;
}

.agency-color-logo {
  display: block;
  width: min(100%, 240px);
  height: auto;
  margin-top: 24px;
}

.agency-intro-copy p {
  color: var(--muted);
  line-height: 1.9;
}

.agency-intro-copy p + p {
  margin-top: 12px;
}

.agency-profile {
  display: grid;
  grid-template-columns: minmax(200px, 260px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
  max-width: 1080px;
  margin: 36px auto 0;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(29, 19, 40, 0.06);
}

.agency-mark {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(30px, 5vw, 56px);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.17), transparent 28%),
    linear-gradient(145deg, var(--purple-dark), #170925 72%);
}

.agency-mark span,
.agency-mark small {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.agency-mark strong {
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.agency-mark small {
  color: rgba(255, 255, 255, 0.62);
}

.agency-copy h3 {
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.15;
  letter-spacing: -0.055em;
}

.agency-title {
  margin-top: 13px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 800;
}

.agency-copy > p:not(.section-kicker, .agency-title) {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.9;
}

.agency-copy blockquote {
  margin-top: 24px;
  padding: 22px;
  border-left: 4px solid var(--purple);
  background: #f7f5fb;
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 700;
  line-height: 1.75;
}

.agency-copy cite {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.08em;
}

.guide {
  max-width: var(--max-width);
  margin: 0 auto;
}

.guide .section-heading {
  max-width: 980px;
}

.guide .section-heading > p:last-child {
  max-width: 760px;
  margin-top: 28px;
  color: var(--muted);
  line-height: 1.9;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 64px;
  border: 1px solid var(--line);
  background: var(--line);
}

.guide-grid article {
  min-height: 330px;
  padding: clamp(28px, 3.5vw, 48px);
  background: var(--white);
}

.guide-grid span {
  color: var(--purple);
  font-size: 12px;
  font-weight: 900;
}

.guide-grid h3 {
  margin-top: 58px;
  font-size: clamp(22px, 2.2vw, 32px);
  letter-spacing: -0.04em;
}

.guide-grid p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.guide-grid a {
  display: inline-flex;
  gap: 8px;
  margin-top: 22px;
  border-bottom: 1px solid;
  color: var(--purple-dark);
  font-size: 12px;
  font-weight: 900;
}

.official {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 8vw, 130px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.official-seal {
  display: grid;
  place-content: center;
  width: min(100%, 470px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.official-seal span {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.23em;
}

.official-seal strong {
  margin: 8px 0;
  font-size: clamp(58px, 8vw, 100px);
  line-height: 1;
  letter-spacing: -0.07em;
}

.official-copy .inline-link {
  margin-top: 34px;
}

.application {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(50px, 8vw, 130px);
  align-items: center;
  background: var(--purple);
  color: var(--white);
}

.application-heading {
  max-width: 700px;
  justify-self: end;
}

.application-heading > p:last-child {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.76);
}

.price-card {
  width: min(100%, 610px);
  padding: clamp(32px, 5vw, 64px);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
}

.price-label {
  font-size: clamp(21px, 2.3vw, 28px);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: -0.025em;
}

.price-card ul {
  display: grid;
  gap: 14px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  font-weight: 700;
}

.price-card li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--purple);
  font-weight: 900;
}

.price-note {
  margin: 4px 0 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.application-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.price-card .button {
  width: 100%;
}

.consult-link {
  margin: 24px auto 0;
}

.flow {
  max-width: var(--max-width);
  margin: 0 auto;
}

.flow ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 70px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.flow li {
  min-height: 240px;
  padding: 28px clamp(20px, 3vw, 42px);
  border-right: 1px solid var(--line);
}

.flow li:first-child {
  border-left: 1px solid var(--line);
}

.flow li span {
  color: var(--purple);
  font-size: 12px;
  font-weight: 900;
}

.flow li p {
  margin-top: 80px;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 800;
  line-height: 1.5;
}

.faq {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 8vw, 130px);
  max-width: var(--max-width);
  margin: 0 auto;
}

.faq-heading > p:last-child {
  margin-top: 25px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.faq-heading a {
  border-bottom: 1px solid;
  color: var(--ink);
  font-weight: 800;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 28px 55px 28px 0;
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 800;
  line-height: 1.5;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  content: "+";
  font-size: 30px;
  font-weight: 400;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 760px;
  padding: 0 55px 18px 0;
  color: var(--muted);
  line-height: 1.9;
}

.faq-source {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 30px;
  border-bottom: 1px solid;
  color: var(--purple-dark);
  font-size: 12px;
  font-weight: 900;
}

footer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  padding: 52px var(--page-padding) 118px;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}

.footer-legal-links a {
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
}

.copyright {
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    min-height: 620px;
  }

  .hero-content {
    min-height: 620px;
    padding: 46px;
  }

  .hero h1 {
    font-size: clamp(44px, 6vw, 58px);
  }

  .hero-mark {
    width: 160px;
  }

  .official,
  .application,
  .faq {
    grid-template-columns: 1fr;
  }

  .speaker-hero,
  .agency-profile,
  .event-details-grid {
    grid-template-columns: 1fr;
  }

  .speaker-image img {
    min-height: 560px;
    aspect-ratio: 16 / 10;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .day-row {
    grid-template-columns: 90px 1fr;
  }

  .day-row img {
    grid-column: 2;
  }

  .voice-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .stat-grid article {
    min-height: 220px;
    border-right: 1px solid rgba(255, 255, 255, 0.24);
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }

  .support-grid,
  .guide-grid,
  .flow ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .agency-mark {
    min-height: 460px;
  }

  .flow li:nth-child(3) {
    border-left: 1px solid currentColor;
  }

  .official-seal {
    max-width: 360px;
    margin: 0 auto;
  }

  .application-heading {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .schedule-row {
    grid-template-columns: 86px 1fr;
    gap: 7px 12px;
  }

  .schedule-row p {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  :root {
    --page-padding: 20px;
    --radius: 15px;
  }

  body {
    padding-bottom: 72px;
  }

  .site-header {
    min-height: 52px;
  }

  .wordmark {
    width: 80px;
    height: 22px;
  }

  .wordmark img {
    top: -50px;
    left: -19px;
    width: 119px;
  }

  .section-shell {
    width: calc(100% - 16px);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-visual {
    grid-row: 1;
    height: 285px;
  }

  .hero-media {
    object-position: 61% center;
  }

  .hero-visual-shade {
    background: linear-gradient(0deg, rgba(38, 8, 72, 0.5), transparent 48%);
  }

  .hero-content {
    grid-row: 2;
    min-height: auto;
    padding: 32px 24px 34px;
  }

  .hero h1 {
    font-size: clamp(41px, 12.5vw, 48px);
  }

  .hero-location {
    margin-top: 14px;
    font-size: 20px;
  }

  .hero-summary {
    margin-top: 28px;
    font-size: 15px;
  }

  .desktop-only,
  .hero-mark {
    display: none;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
    margin-top: 28px;
  }

  .hero-facts div:last-child {
    grid-column: 1 / -1;
  }

  .hero-facts dd {
    font-size: 14px;
  }

  .section-padding {
    padding-block: 78px;
  }

  .intro h2,
  .program h2,
  .application h2,
  .support h2,
  .section-heading h2,
  .faq h2,
  .official h2,
  .agency h2 {
    font-size: 34px;
  }

  .large-copy {
    font-size: 18px;
  }

  .science-heading h2 {
    font-size: 39px;
  }

  .stat-grid {
    margin-top: 48px;
  }

  .stat-grid article {
    min-height: auto;
    padding: 36px 24px;
  }

  .stat-grid strong {
    font-size: 72px;
  }

  .source-note a {
    display: flex;
    justify-content: center;
    margin: 14px 0 0;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    margin-top: 46px;
  }

  .benefit-grid article {
    min-height: 220px;
  }

  .program-heading {
    margin-bottom: 50px;
  }

  .day-row {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 30px 0;
  }

  .day-row img,
  .day-row .day-copy {
    grid-column: 1;
  }

  .day-row img {
    order: -1;
  }

  .day-number {
    padding: 0;
  }

  .image-manifesto {
    min-height: 600px;
  }

  .image-manifesto h2 {
    font-size: 58px;
  }

  .speaker-hero {
    gap: 45px;
  }

  .speaker-image img {
    min-height: 420px;
    aspect-ratio: 4 / 3;
  }

  .speaker-copy h2 {
    font-size: 45px;
  }

  .speaker-details {
    gap: 50px;
  }

  .celebrity-grid {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .celebrity-card {
    min-height: 310px;
  }

  .event-recap {
    align-items: flex-start;
    flex-direction: column;
  }

  .event-recap .button {
    width: 100%;
  }

  .event-details-grid {
    margin-top: 44px;
  }

  .schedule-row {
    grid-template-columns: 76px 1fr;
    gap: 8px 12px;
  }

  .schedule-row p {
    grid-column: 2;
  }

  .venue-panel iframe {
    min-height: 300px;
  }

  .voice-grid {
    margin-top: 44px;
  }

  .experience-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 300px);
  }

  .experience-gallery figure:first-child {
    grid-row: auto;
  }

  .voice-grid figure {
    min-height: 350px;
  }

  .support-grid,
  .guide-grid,
  .flow ol {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .guide-grid article {
    min-height: auto;
  }

  .guide-grid h3 {
    margin-top: 36px;
  }

  .flow li,
  .flow li:nth-child(3) {
    min-height: auto;
    border-right: 1px solid rgba(255, 255, 255, 0.35);
    border-left: 1px solid rgba(255, 255, 255, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  }

  .support-grid article,
  .support-grid article:nth-child(3) {
    min-height: auto;
    border: 1px solid var(--line);
  }

  .support-grid span {
    margin-bottom: 44px;
  }

  .official-seal {
    max-width: 300px;
  }

  .agency-profile {
    gap: 48px;
  }

  .agency-mark {
    min-height: 410px;
  }

  .price-card {
    padding: 30px 24px;
  }

  .flow li,
  .flow li:nth-child(3) {
    border-color: var(--line);
  }

  .flow li p {
    margin-top: 40px;
  }

  .faq {
    gap: 45px;
  }

  footer {
    padding-bottom: 52px;
  }

  .footer-legal-links {
    flex-direction: column;
  }
}

/* Japanese seminar LP layout */

body {
  font-size: 18px;
  line-height: 1.8;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Noto Sans JP",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    "YuGothic",
    "Meiryo",
    sans-serif;
}

.site-header {
  min-height: 58px;
}

.section-padding {
  padding-block: clamp(76px, 8vw, 112px);
}

.section-kicker {
  margin-bottom: 14px;
  font-size: 13px;
  letter-spacing: 0.16em;
}

.button {
  font-size: 17px;
  justify-content: center;
  text-align: center;
}

.intro h2,
.program h2,
.application h2,
.support h2,
.section-heading h2,
.faq h2,
.official h2,
.agency h2 {
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 610px;
  border-radius: 0;
}

.hero-visual {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-position: 58% center;
}

.hero-visual-shade {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.47) 54%, rgba(5, 5, 5, 0.52)),
    linear-gradient(0deg, rgba(42, 10, 73, 0.68), transparent 54%);
}

.hero-content {
  z-index: 2;
  align-items: center;
  min-height: 610px;
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 70px 40px;
  background: none;
  text-align: center;
}

.hero-brand {
  margin-bottom: 16px;
  font-size: 17px;
}

.hero h1 {
  max-width: none;
  font-size: clamp(64px, 6.5vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.hero h1 span {
  display: inline;
}

.hero-location {
  margin-top: 20px;
  font-size: 26px;
}

.hero-summary {
  gap: 5px;
  margin-top: 28px;
  font-size: 20px;
}

.hero-actions {
  justify-content: center;
  margin-top: 28px;
}

.opening .intro {
  max-width: 1000px;
}

.intro-heading,
.intro-copy {
  max-width: 880px;
  margin-inline: auto;
}

.intro-heading {
  text-align: center;
}

.intro-copy {
  margin-top: 48px;
  font-size: 18px;
}

.intro-copy > p {
  line-height: 2;
}

.intro-copy > p + p,
.intro-quote + p {
  margin-top: 22px;
}

.intro-quote {
  margin: 30px auto 0;
  padding: 24px;
  border-left: 0;
  border-radius: 8px;
  background: rgba(120, 65, 255, 0.18);
  font-size: clamp(22px, 2.4vw, 30px);
  text-align: center;
}

.program {
  max-width: 1160px;
}

.program-heading {
  margin: 0 auto 54px;
  text-align: center;
}

.day-list {
  display: grid;
  gap: 20px;
}

.day-row {
  grid-template-columns: 74px minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 28px;
  min-height: 0;
  padding: 34px;
  border: 1px solid #e1e1e5;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 8px 26px rgba(18, 12, 30, 0.05);
}

.day-row:last-child {
  border-bottom: 1px solid #e1e1e5;
}

.day-number {
  font-size: 16px;
}

.day-copy h3 {
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.45;
  letter-spacing: -0.025em;
}

.day-copy p {
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.9;
}

.day-copy .day-title-en {
  color: var(--purple-dark);
  font-size: 14px;
}

.speaker-profile {
  padding-block: clamp(80px, 8vw, 110px);
}

.speaker-hero {
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 6vw, 86px);
  max-width: 1120px;
}

.speaker-image img {
  min-height: 0;
  max-height: none;
  aspect-ratio: 4 / 5;
  object-position: center top;
}

.speaker-copy h2 {
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.3;
  letter-spacing: -0.04em;
}

.speaker-role {
  margin-top: 22px;
  font-size: clamp(20px, 1.9vw, 25px);
  line-height: 1.8;
}

.speaker-copy > p:not(.section-kicker, .speaker-role) {
  margin-top: 20px;
  font-size: 18px;
  line-height: 2;
}

.speaker-image figcaption {
  font-size: 13px;
}

.celebrity-voices {
  max-width: 1120px;
}

.celebrity-voices .section-heading {
  max-width: none;
  text-align: center;
}

.celebrity-grid {
  gap: 20px;
  margin-top: 50px;
}

.celebrity-card {
  min-height: 0;
  padding: 36px;
  border-radius: 14px;
}

.celebrity-card blockquote {
  margin-top: 32px;
  font-size: 19px;
  line-height: 1.9;
}

.celebrity-person p {
  font-size: 14px;
  line-height: 1.6;
}

.event-recap {
  justify-content: center;
  min-height: 360px;
  padding-block: 54px;
  text-align: center;
}

.event-recap-copy h2 {
  font-family: inherit;
  font-size: clamp(40px, 5.4vw, 66px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.event-details {
  max-width: 1040px;
}

.event-details > .section-heading {
  max-width: none;
  text-align: center;
}

.event-details-grid {
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 48px;
}

.schedule-panel,
.venue-panel,
.travel-panel {
  padding: clamp(30px, 5vw, 56px);
  border-radius: 12px;
  box-shadow: 0 10px 32px rgba(18, 12, 30, 0.06);
}

.schedule-panel,
.venue-panel,
.travel-panel {
  background: var(--white);
}

.schedule-panel h3,
.venue-panel h3,
.travel-panel h3 {
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.5;
}

.schedule-list {
  width: min(100%, 720px);
  margin: 34px auto 0;
}

.schedule-row {
  grid-template-columns: 100px minmax(220px, 280px) minmax(170px, 210px);
  justify-content: center;
  gap: 20px;
  padding: 20px 8px;
}

.schedule-row span {
  font-size: 16px;
  line-height: 1.6;
}

.schedule-row strong {
  font-size: 18px;
  line-height: 1.6;
}

.schedule-row p {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
}

.detail-note {
  font-size: 15px;
}

.event-detail-kicker {
  font-size: 14px;
}

.venue-address {
  font-size: 16px;
}

.venue-link {
  font-size: 16px;
}

.travel-panel > p:last-child {
  font-size: 18px;
}

.venue-panel iframe {
  min-height: 400px;
}

.venue-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.venue-gallery figure {
  overflow: hidden;
  border-radius: 10px;
  background: #e8e8eb;
}

.venue-gallery img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.venue-gallery .venue-panorama img {
  object-position: 70% center;
}

.venue-gallery + iframe {
  margin-top: 18px;
}

.support-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1000px;
  margin-top: 50px;
}

.support-grid article {
  min-height: 0;
  padding: 32px 36px;
  border-radius: 12px;
}

.support-grid span {
  margin-bottom: 28px;
  font-size: 14px;
}

.support-grid h3 {
  font-size: 25px;
  line-height: 1.5;
}

.support-grid p {
  font-size: 18px;
  line-height: 1.9;
}

.support-heading > p:last-child,
.agency-intro-copy {
  font-size: 18px;
}

.pc-only-break {
  display: block;
}

.agency-profile {
  grid-template-columns: minmax(200px, 250px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 44px);
  max-width: 1080px;
  margin-top: 36px;
  padding: clamp(28px, 4vw, 40px);
}

.agency-photo {
  overflow: hidden;
  border-radius: 10px;
  background: #ebecef;
}

.agency-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.agency-mark {
  min-height: 440px;
}

.agency-mark strong {
  font-size: clamp(46px, 5vw, 68px);
}

.agency-copy h3 {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.4;
}

.agency-copy > p:not(.section-kicker, .agency-title) {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.9;
}

.agency-copy blockquote {
  margin-top: 22px;
  padding: 20px;
  font-size: 17px;
  line-height: 1.8;
}

.agency-title {
  font-size: 15px;
}

.agency-copy cite {
  font-size: 14px;
}

.agency-endorsement {
  display: grid;
  grid-template-columns: minmax(140px, 180px) minmax(0, 1fr);
  overflow: hidden;
  margin-top: 22px;
  border-left: 4px solid var(--purple);
  border-radius: 10px;
  background: #f7f5fb;
}

.agency-endorsement > img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  object-position: center;
}

.agency-copy .agency-endorsement blockquote {
  margin: 0;
  border: 0;
  background: none;
  font-weight: 800;
}

.agency-endorsement cite {
  color: var(--ink);
  font-weight: 800;
}

.application {
  display: block;
  background: var(--white);
  color: var(--ink);
  text-align: center;
}

.application-heading {
  max-width: 760px;
  margin: 0 auto;
}

.application-heading > p:last-child {
  max-width: 620px;
  margin-inline: auto;
}

.price-card {
  width: min(100%, 620px);
  margin: 46px auto 0;
  padding: clamp(34px, 5vw, 52px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 12px 36px rgba(24, 17, 32, 0.07);
  text-align: center;
}

.price-label {
  font-size: clamp(24px, 3vw, 34px);
}

.price-label span {
  white-space: nowrap;
}

.application-date {
  margin-top: 14px;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.6;
}

.application-location {
  margin-top: 2px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
}

.price-card ul {
  width: min(100%, 390px);
  margin: 30px auto;
  text-align: left;
}

.price-card li {
  font-size: 18px;
}

.price-card li::before {
  color: #18884b;
}

.application-price {
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.6;
  text-align: center;
}

.price-note {
  margin-top: 10px;
  margin-bottom: 26px;
  font-size: 15px;
  text-align: center;
}

.price-card .button {
  width: min(100%, 410px);
  margin-inline: auto;
}

.application-note {
  max-width: 500px;
  margin-inline: auto;
  font-size: 15px;
  text-align: left;
}

.application-brand-logo {
  display: block;
  width: min(100%, 360px);
  height: auto;
  margin: 32px auto 0;
}

.faq {
  display: block;
  max-width: 960px;
}

.faq-heading {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}

.faq-heading > p:last-child {
  font-size: 17px;
}

.faq-list {
  margin-top: 48px;
}

.faq-list summary {
  padding-block: 24px;
  font-size: 20px;
  line-height: 1.7;
}

.faq-list details p {
  max-width: none;
  padding-bottom: 24px;
  font-size: 18px;
  line-height: 2;
}

.faq-source {
  font-size: 15px;
}

.faq-contact {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 0;
  text-align: center;
}

.faq-contact h3 {
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.5;
}

.faq-contact .button {
  min-width: min(100%, 320px);
  margin-top: 20px;
  margin-inline: auto;
}

.footer-legal-links {
  gap: 12px 22px;
  font-size: 12px;
  font-weight: 600;
}

.copyright {
  font-size: 13px;
}

@media (max-width: 980px) {
  .pc-only-break {
    display: none;
  }

  .speaker-hero,
  .agency-profile {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .speaker-image img {
    min-height: 0;
    max-height: none;
    aspect-ratio: 4 / 5;
  }

  .agency-photo {
    width: min(100%, 260px);
  }
}

@media (max-width: 640px) {
  body {
    font-size: 17px;
    line-height: 1.85;
  }

  .section-padding {
    padding-block: 64px;
  }

  .intro h2,
  .program h2,
  .application h2,
  .support h2,
  .section-heading h2,
  .faq h2,
  .official h2,
  .agency h2 {
    font-size: 32px;
    line-height: 1.45;
  }

  .section-kicker {
    font-size: 12px;
  }

  .button {
    font-size: 17px;
  }

  .hero {
    min-height: 540px;
  }

  .hero-visual {
    height: 100%;
  }

  .hero-content {
    grid-row: 1;
    min-height: 540px;
    padding: 56px 22px;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1.06;
    white-space: normal;
  }

  .hero h1 span {
    display: block;
  }

  .hero-location {
    font-size: 22px;
  }

  .hero-summary {
    font-size: 17px;
  }

  .intro-copy {
    font-size: 17px;
  }

  .intro-quote {
    padding: 20px 16px;
    font-size: 22px;
  }

  .day-list {
    gap: 16px;
  }

  .day-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 20px;
  }

  .day-row img {
    grid-column: 1;
    order: -1;
  }

  .day-copy h3 {
    font-size: 25px;
  }

  .day-copy p {
    font-size: 17px;
  }

  .day-number {
    font-size: 16px;
  }

  .day-copy .day-title-en {
    font-size: 14px;
  }

  .speaker-copy h2 {
    font-size: 35px;
  }

  .speaker-role {
    font-size: 19px;
  }

  .speaker-copy > p:not(.section-kicker, .speaker-role) {
    font-size: 17px;
  }

  .celebrity-card {
    padding: 28px 24px;
  }

  .celebrity-avatar {
    width: 68px;
  }

  .celebrity-card blockquote {
    font-size: 17px;
  }

  .event-recap {
    min-height: 300px;
    padding: 40px 20px;
  }

  .event-recap-copy h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .event-recap-location {
    margin-top: 16px;
    font-size: 19px;
  }

  .event-recap-date {
    font-size: 20px;
  }

  .event-recap-support {
    font-size: 16px;
  }

  .schedule-panel,
  .venue-panel,
  .travel-panel {
    padding: 26px 20px;
  }

  .schedule-row {
    grid-template-columns: 86px 1fr;
    gap: 7px 10px;
    padding: 18px 0;
  }

  .schedule-row p {
    grid-column: 2;
  }

  .schedule-row span {
    font-size: 16px;
  }

  .schedule-row strong,
  .schedule-row p {
    font-size: 17px;
  }

  .detail-note {
    font-size: 16px;
  }

  .venue-address,
  .travel-panel > p:last-child {
    font-size: 17px;
  }

  .venue-link {
    font-size: 16px;
  }

  .venue-panel iframe {
    min-height: 280px;
  }

  .venue-gallery {
    grid-template-columns: 1fr;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .support-grid article {
    padding: 28px 24px;
  }

  .support-grid h3 {
    font-size: 22px;
  }

  .support-grid p {
    font-size: 17px;
  }

  .support-heading > p:last-child,
  .agency-intro-copy {
    font-size: 17px;
  }

  .agency-color-logo {
    width: min(100%, 210px);
    margin-top: 20px;
  }

  .agency-mark {
    min-height: 340px;
  }

  .agency-endorsement {
    grid-template-columns: 1fr;
  }

  .agency-endorsement > img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .agency-copy h3 {
    font-size: 28px;
  }

  .agency-copy > p:not(.section-kicker, .agency-title),
  .agency-copy blockquote {
    font-size: 17px;
  }

  .price-card {
    padding: 28px 22px;
  }

  .application-location,
  .price-card li {
    font-size: 17px;
  }

  .application-date {
    font-size: 18px;
  }

  .price-note,
  .application-note {
    font-size: 15px;
  }

  .application-brand-logo {
    width: min(100%, 300px);
    margin-top: 28px;
  }

  .faq-list summary {
    font-size: 19px;
  }

  .faq-list details p {
    font-size: 17px;
  }

  .faq-heading > p:last-child {
    font-size: 16px;
  }

  .faq-source {
    font-size: 15px;
  }

  .faq-contact {
    margin-top: 44px;
    padding-top: 32px;
  }

  .faq-contact .button {
    width: 100%;
  }

  .site-header {
    min-height: 52px;
  }

  .footer-legal-links {
    font-size: 11px;
  }

  .copyright {
    font-size: 13px;
  }

}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}


/* Static HTML delivery helpers */
[hidden] {
  display: none !important;
}
