/* TOP page sections — Figma top_pc (3:2722) / top_sp (3:3195) */

/* Hero — Figma top_pc 3:3156 / top_sp 3:3629 */
.fv {
  position: relative;
  width: 100%;
  height: 706px;
  margin: -80px auto 0;
  overflow: hidden;
  background: #021c27;
}

.fv__media {
  position: absolute;
  top: 0;
  left: -76px;
  width: 1593px;
  height: 706px;
  pointer-events: none;
}

.fv__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.fv__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.65) 36%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.fv__overlay {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.35;
}

.fv__frame {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 706px;
  padding: 160px 0 0;
}

.fv__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 1100px;
  padding: 0 32px;
}

.fv__heading {
  width: 100%;
  min-width: 600px;
  max-width: 1100px;
  padding-top: 8px;
}

.fv__logo {
  display: block;
  width: 100%;
  min-width: 600px;
  max-width: 1100px;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.fv__meta {
  position: relative;
  width: 80%;
  padding: 16px 24px;
  background: var(--gradient-card);
  border-radius: 5px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.fv__meta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 47px;
}

.fv__meta-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3.5px;
  max-width: 416px;
}

.fv__meta-divider {
  flex-shrink: 0;
  align-self: stretch;
  width: 2px;
  margin: 0 8px;
  background: var(--color-white);
}

.fv__meta-label {
  margin: 0;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  line-height: 15px;
  letter-spacing: 0.0833em;
  text-transform: uppercase;
  color: var(--color-white);
}

.fv__meta-value {
  margin: 0;
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 900;
  line-height: 28px;
  color: var(--color-white);
}

.fv__meta-value-sub {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 900;
  line-height: 16px;
  color: var(--color-white);
}

.fv__meta-date-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.fv__cta {
  display: none;
}

/* Section common */
.section {
  padding: var(--section-pad-y) var(--section-pad-x);
}

.section__eyebrow {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 8px;
}

.section__title {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 16px;
  text-align: center;
  color: var(--color-heading);
}

.section__lead {
  display: block;
  box-sizing: border-box;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.625;
  color: var(--color-body);
  text-align: center;
  margin-bottom: 24px;
}

.section__leads {
  display: block;
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  text-align: center;
}

.section__leads .section__lead:last-child {
  margin-bottom: 0;
}

.section__header {
  display: grid;
  justify-items: center;
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 48px;
}

.section__header > .section__title,
.section__header > .section__eyebrow,
.section__header > .section__title-block {
  width: 100%;
}

.section__header--left {
  justify-items: start;
  text-align: left;
  max-width: 768px;
  margin-right: auto;
  margin-left: 0;
}

.section__header--left .section__lead {
  width: 100%;
}

/* Stats */
.section--stats {
  background: var(--color-white);
  padding-top: 96px;
}

.section--stats .section__header {
  margin-bottom: 32px;
}

.section--stats .section__title {
  margin-bottom: 24px;
}

.section--stats .section__leads .section__lead {
  line-height: 26px;
  margin-bottom: 0;
}

.section--stats .section__leads .section__lead + .section__lead {
  margin-top: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  justify-content: center;
}

.stat-card {
  width: 100%;
  min-height: 274px;
  background: var(--gradient-card);
  border-radius: 10px;
  padding: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--color-white);
}

.stat-card__label-en {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted-on-dark);
  margin: 0;
}

.stat-card__label-ja {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.stat-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 8px 0;
}

.stat-card__icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.stat-card__icon img.stat-card__icon-img--vector {
  width: 57px;
  height: 57px;
}

.stat-card__value {
  font-family: var(--font-en);
  font-size: 37px;
  font-weight: 900;
  letter-spacing: -0.025em;
  margin: 0;
  line-height: 1;
}

.stat-card__unit {
  font-size: 24px;
  font-weight: 900;
}

.stat-card__note {
  font-size: 14px;
  color: var(--color-muted-on-dark);
  margin: 4px 0 0;
  white-space: nowrap;
}

.stat-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  padding-top: 8px;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--color-white);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.stat-card__link:hover {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
  opacity: 1;
}

.stat-card__link img {
  transition: transform 0.2s ease, filter 0.2s ease;
}

.stat-card__link:hover img {
  transform: translateX(2px);
  filter: brightness(0) saturate(100%) invert(52%) sepia(88%) saturate(1179%) hue-rotate(353deg) brightness(96%) contrast(93%);
}

/* Speakers */
.section--speakers {
  background: var(--color-white);
  padding-top: 40px;
}

.speakers__header {
  margin-bottom: 32px;
}

.section__header--speakers {
  text-align: center;
}

.section__header--speakers .section__lead {
  margin-bottom: 0;
}

.speakers-carousel-wrap {
  margin-bottom: 32px;
}

.speakers-carousel {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  grid-template-areas:
    "prev viewport next"
    ". note .";
  align-items: center;
  gap: 20px;
  row-gap: 8px;
}

.speakers-carousel__controls {
  display: contents;
}

.speakers-carousel__btn--prev {
  grid-area: prev;
}

.speakers-carousel__btn--next {
  grid-area: next;
}

.speakers-carousel__viewport {
  grid-area: viewport;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pinch-zoom;
  overscroll-behavior-x: contain;
}

.speakers-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.speakers-carousel__btn,
.gallery-carousel__btn {
  flex: 0 0 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 4px;
  background: var(--color-heading);
  color: var(--color-white);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.2s ease, background 0.2s ease;
}

.speakers-carousel__btn:hover,
.gallery-carousel__btn:hover {
  opacity: 0.85;
}

.speakers-carousel__btn:disabled,
.gallery-carousel__btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.speakers-carousel__viewport.is-manual-scroll {
  scroll-behavior: auto;
}

.speakers-carousel__note {
  grid-area: note;
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: var(--color-body);
  text-align: right;
}

.speakers-carousel__track {
  display: flex;
  gap: 18px;
  width: max-content;
}

.speaker-card {
  flex: 0 0 236px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.speaker-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.speaker-card__overlay {
  position: absolute;
  inset: auto 0 0 0;
  height: 26%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 12px 10px;
  background: rgba(6, 32, 55, 0.85);
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease, height 0.3s ease;
}

@media (min-width: 1025px) {
  .speaker-card__overlay {
    height: 30%;
    padding: 0 12px 16px;
  }

  .speaker-card:hover .speaker-card__overlay {
    opacity: 1;
    transform: translateY(0);
    height: 30%;
    background: rgba(6, 32, 55, 0.85);
  }

  .speaker-card:hover .speaker-card__info {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45), 0 2px 12px rgba(6, 32, 55, 0.65);
  }

  .section--testimonials .section__header {
    margin-bottom: 18px;
  }
}

.speaker-card__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
  text-shadow: 0 1px 6px rgba(2, 6, 23, 0.55);
}

.speaker-card__affiliation,
.speaker-card__name {
  display: block;
  color: var(--color-white);
  text-align: center;
}

.speaker-card__affiliation {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.3;
}

.speaker-card__name {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.speakers__footer {
  text-align: center;
}

.speakers__footer .btn-gradient:hover,
.testimonials__footer .btn-gradient:hover {
  box-shadow: inset 0 0 0 1px #1897a9;
}

/* Testimonials */
.section--testimonials {
  background: var(--color-white);
  padding-top: 24px;
}

.section--testimonials .section__header {
  margin-bottom: 32px;
}

@media (min-width: 1025px) {
  .section--testimonials .section__header {
    margin-bottom: 18px;
  }
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto 32px;
  justify-content: center;
}

.testimonial-card {
  width: 100%;
  min-height: 280px;
  background: var(--color-heading);
  border: 1px solid var(--color-nav);
  border-radius: 10px;
  padding: 24px;
  color: var(--color-white);
}

.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--color-white);
}

.testimonial-card__company {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

.testimonial-card__role {
  font-size: 14px;
  margin: 4px 0 0;
  opacity: 0.9;
}

.testimonial-card__quote {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.testimonials__footer {
  text-align: center;
}

/* Intro */
.section-wrap--intro {
  background: var(--color-heading);
}

.section--intro {
  position: relative;
  background-color: var(--color-heading);
  background-image: url("../img/intro-bg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: var(--section-pad-y) var(--section-pad-x);
  contain: paint;
}

.section--intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(8 57 98 / 0.85);
  z-index: 0;
}

.section--intro::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100px;
  background: linear-gradient(
    to bottom,
    rgb(9 51 87 / 0) 0%,
    rgb(9 51 87 / 0.55) 45%,
    var(--color-section-dark) 100%
  );
  z-index: 0;
  pointer-events: none;
}

.section--intro > .container {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
}

.section--intro > .container > .section__header {
  width: 100%;
}

.section--intro .section__title {
  color: var(--color-white);
  text-align: center;
}

.intro__body {
  display: block;
  box-sizing: border-box;
  width: min(896px, 100%);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 48px;
  text-align: center;
}

.intro__body-highlight {
  font-weight: 700;
  border-bottom: solid 0.8px white;
}

.intro__body br.sp-only {
  display: none;
}

.intro__body br.sp-only:first-of-type {
  display: block;
  height: 12px;
  line-height: 0;
  margin: 0;
}

.section__header--center {
  text-align: center;
}

.intro__decor {
  position: absolute;
  top: calc(var(--section-pad-y) - -3px);
  --intro-decor-w: 173px;
  width: var(--intro-decor-w);
  height: 174px;
  opacity: 1;
  pointer-events: none;
  object-fit: contain;
}

.intro__decor--left {
  left: calc(
    50% - min(640px, calc((100% - 2 * var(--section-pad-x)) / 2)) - 2%
  );
  right: auto;
}

.intro__decor--right {
  right: calc(
    50% - min(640px, calc((100% - 2 * var(--section-pad-x)) / 2)) - 2%
  );
  left: auto;
  transform: scaleX(-1);
}

@media (min-width: 1025px) {
  .section__header {
    margin-bottom: 24px;
  }

  .history-banner {
    margin: 110px auto 68px;
  }

  .section--intro {
    padding-top: 100px;
    padding-bottom: 0;
    background-size: calc(100% + 120px) calc(100% + 100px);
    background-position: center calc(50% + 30px);
  }

  .intro__body {
    width: min(898px, 100%);
  }

  .section--intro::after {
    height: 120px;
  }

  .section--program {
    padding-top: 140px;
  }

  .intro__decor {
    top: calc(var(--section-pad-y) - 12px);
  }

  .intro__decor--left {
    left: calc(52% - min(640px, calc((100% - 2 * var(--section-pad-x)) / 2)) - 2%);
    right: auto;
  }

  .intro__decor--right {
    right: calc(52% - min(610px, calc((100% - 2 * var(--section-pad-x)) / 2)) - 2%);
    left: auto;
    transform: scaleX(-1);
  }
}

@media (min-width: 1025px) and (max-width: 1200px) {
  .section--intro {
    background-size: calc(100% + 140px) calc(100% + 120px);
  }
}

.anchor-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.anchor-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border: none;
  border-radius: 35px;
  background: var(--gradient-btn);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.0429em;
  text-transform: uppercase;
  box-shadow: none;
}

.anchor-nav a img {
  flex-shrink: 0;
  transition: transform 0.2s ease, filter 0.2s ease;
}

/* Program, ticket, info, access, partner — dark sections */
.section-wrap--dark {
  background: var(--color-section-dark);
}

.section--program,
.section--ticket,
.section--info,
.section--access,
.section--partner {
  background: var(--color-section-dark);
  color: var(--color-white);
}

.section--program .section__title,
.section--ticket .section__title,
.section--info .section__title,
.section--access .section__title,
.section--partner .section__title {
  color: var(--color-white);
}

.section--program .section__eyebrow,
.section--ticket .section__lead,
.section--info .section__lead {
  color: var(--color-white);
}

.section-title-group {
  position: relative;
  margin-bottom: 48px;
  overflow: visible;
}

.section-title-group .section__header {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

.section__title-block {
  position: relative;
}

.section__title-block .section__title {
  position: relative;
  z-index: 1;
}

.section__watermark {
  position: absolute;
  z-index: 0;
  top: auto;
  bottom: 65%;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  pointer-events: none;
  font-family: var(--font-en);
  font-size: 80px;
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.06);
  white-space: nowrap;
}

.section-title-group--access .section__watermark {
  left: 0;
  transform: translateX(0);
}

.section-title-group--access .section__header,
.section-title-group--access .section__title {
  text-align: left;
}

.program-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
}

.program-row {
  display: grid;
  grid-template-columns: minmax(120px, 244px) minmax(0, 1fr);
  gap: 16px;
  min-height: 0;
}

.program-row__time,
.program-row__content {
  background: var(--color-white);
  border: 1px solid rgba(31, 41, 55, 0.8);
  border-radius: 10px;
  color: var(--color-body);
  min-width: 0;
}

.program-row__time {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 900;
  line-height: 28px;
  letter-spacing: 0.05em;
  text-align: center;
  white-space: nowrap;
  color: var(--color-heading);
}

.program-row__content {
  padding: 24px;
  overflow-wrap: break-word;
  font-size: 16px;
}

.program-row__content strong {
  display: block;
  font-size: 18px;
  font-weight: 900;
  color: var(--color-heading);
  margin-bottom: 8px;
}

.program-speaker {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(31, 41, 55, 0.8);
}

.program-speaker__profile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  max-width: 351px;
  background: #d8e3eb;
  border-radius: 8px;
}

.program-speaker__photo {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  object-fit: cover;
}

.program-speaker__info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.program-speaker__name {
  margin: 0;
  font-size: 14px;
  font-weight: 900;
  line-height: 16px;
  color: var(--color-heading);
}

.program-speaker__role {
  margin: 0;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 400;
  line-height: 15.5px;
  color: var(--color-heading);
}

/* Tickets */
.tickets-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  justify-content: center;
}

.ticket-card {
  width: 100%;
  height: auto;
  min-height: 0;
  background: var(--gradient-card);
  border-radius: var(--radius-base);
  padding: 32px 32px 24px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.ticket-card--featured {
  position: relative;
}

.ticket-card__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.ticket-card__type {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  width: fit-content;
  max-width: max-content;
  padding: 4px 10px;
  background: var(--color-section-dark);
  border-radius: 4px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-white);
}

.ticket-card__name {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: var(--color-white);
  line-height: 1.4;
}

.ticket-card:not(.ticket-card--featured) .ticket-card__name {
  margin-top: 16px;
}

.ticket-card__name-note {
  font-size: 15px;
  font-weight: 700;
}

.ticket-card__price {
  font-size: 35px;
  font-weight: 900;
  margin: 0 0 16px;
  color: var(--color-white);
}

.ticket-card__tax {
  font-size: 14px;
  font-weight: 400;
}

.ticket-card__features {
  list-style: none;
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  flex: 1;
}

.ticket-card__features li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--color-white);
  margin-bottom: 8px;
}

.ticket-card__features li::before {
  content: "";
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath fill='%23EA7A13' d='M5.5 10.5L2 7l1-1 2.5 2.5L11 3l1 1z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.ticket-apply {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 896px;
  margin: 48px auto 0;
  text-align: center;
  color: var(--color-white);
}

.ticket-apply__lead {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.ticket-apply__note {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.ticket-apply__note a {
  font-weight: 700;
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ticket-apply__disclaimer {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: var(--color-muted-on-dark);
}

/* Info table */
.info-table {
  width: 100%;
  max-width: 857px;
  margin: 0 auto;
  border-collapse: collapse;
}

.info-table th,
.info-table td {
  padding: 20px 24px;
  text-align: left;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
}

.info-table tr:first-child th,
.info-table tr:first-child td {
  border-top: none;
}

.info-table th {
  width: 160px;
  font-weight: 700;
  white-space: nowrap;
}

/* Access */
.section--access > .container {
  max-width: 1100px;
}

.access-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  max-width: 1024px;
  margin: 0 auto;
}

.access-venue__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--color-white);
}

.access-venue__address {
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 12px;
  color: var(--color-white);
}

.access-venue__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.access-venue__list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 4px;
  font-size: 14px;
  color: var(--color-white);
}

.access-venue__icon {
  flex: 0 0 20px;
  width: 16px;
  height: 16px;
  margin-top: 4px;
  object-fit: contain;
}

.access-map__embed {
  width: 100%;
  height: 328px;
  border: 0;
  border-radius: var(--radius-base);
}

/* Partner */
.partner-card {
  background: var(--color-white);
  border-radius: var(--radius-base);
  padding: 32px;
  text-align: center;
  max-width: 1024px;
  margin: 0 auto 32px;
}

.partner-card__logo {
  max-width: 287px;
  margin: 0 auto 24px;
}

.partner-card__soon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-bottom: 0;
  color: var(--color-body);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: -4px;
}

.partner-note {
  text-align: center;
  color: var(--color-white);
  font-size: 16px;
  line-height: 1.7;
  max-width: 896px;
  margin: 0 auto 24px;
}

.partner-note a {
  font-weight: 700;
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.partner__footer {
  text-align: center;
}

.section--partner .btn-gradient {
  border: 2px solid transparent;
  background: var(--gradient-btn);
  background-clip: padding-box;
  transition: background 0.2s ease, color 0.2s ease;
}

.section--partner .btn-gradient:hover {
  background:
    linear-gradient(var(--color-section-dark), var(--color-section-dark)) padding-box,
    var(--gradient-btn) border-box;
  border: 2px solid transparent;
  box-shadow: none;
  color: var(--color-white);
  opacity: 1;
}

.section--partner .btn-gradient:hover img {
  filter: none;
  transform: translateX(2px);
}

/* Gallery */
.section--gallery {
  background: var(--color-gallery-bg);
  padding: 56px var(--section-pad-x) 40px;
}

.gallery__intro {
  margin-bottom: 32px;
  max-width: 963px;
}

.gallery__lead {
  text-align: center;
}

.gallery__lead-line2 {
  display: inline;
}

@media (min-width: 1175px) {
  .gallery__lead-line2 {
    display: block;
  }
}

.gallery__media {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  width: 100%;
}

.gallery__featured {
  position: relative;
  width: 100%;
  max-width: 615px;
  border-radius: var(--radius-base);
  overflow: hidden;
  background: #0b1528;
}

.gallery__youtube {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.gallery__youtube-brand {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 4px;
  color: var(--color-white);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  pointer-events: auto;
}

.gallery__youtube-facade {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: pointer;
}

.gallery__youtube-facade::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  pointer-events: none;
}

.gallery__youtube-thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery__youtube-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 48px;
  padding: 0 0 0 8px;
  border: none;
  border-radius: 14px;
  background: rgba(255, 0, 0, 0.9);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: background 0.2s ease;
}

.gallery__youtube-play:hover {
  background: #f00;
}

.gallery__youtube-play-icon {
  display: block;
  width: 0;
  height: 0;
  margin-left: 4px;
  border: 10px solid transparent;
  border-left: 16px solid var(--color-white);
}

.gallery__youtube-brand:hover {
  color: var(--color-white);
  text-decoration: underline;
}

.gallery__youtube-brand-logo {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.gallery__youtube-embed,
.gallery__youtube-player,
.gallery__youtube-player iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.gallery__youtube-player {
  position: absolute;
  inset: 0;
  z-index: 2;
}

@keyframes gallery-carousel-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes speakers-carousel-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.gallery-carousel-wrap {
  width: 100%;
  max-width: 1216px;
  margin: 0 auto;
}

.gallery-carousel {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  grid-template-areas: "prev viewport next";
  align-items: center;
  gap: 20px;
}

.gallery-carousel__controls {
  display: contents;
}

.gallery-carousel__btn--prev {
  grid-area: prev;
}

.gallery-carousel__btn--next {
  grid-area: next;
}

.gallery-carousel__viewport {
  grid-area: viewport;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  border-radius: var(--radius-base);
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pinch-zoom;
  overscroll-behavior-x: contain;
}

.gallery-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.gallery-carousel__viewport.is-manual-scroll {
  scroll-behavior: auto;
}

.gallery-carousel__track {
  display: flex;
  gap: 15px;
  width: max-content;
}

.gallery-item {
  flex: 0 0 355px;
  margin: 0;
  border-radius: var(--radius-base);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 355 / 222;
  object-fit: cover;
}

/* Reports */
.section-wrap--light {
  background: var(--color-gallery-bg);
}

.section--reports {
  background: transparent;
  padding: 40px var(--section-pad-x);
}

.reports-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 32px;
  row-gap: 32px;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  justify-content: center;
  align-items: stretch;
}

.report-card,
.history-card {
  width: 100%;
  background: var(--color-white);
  border-radius: var(--radius-base);
  overflow: hidden;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.history-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.report-card {
  display: flex;
  flex-direction: column;
  height: auto;
}

.report-card:hover,
.history-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.report-card:hover .report-card__title,
.history-card:hover .history-card__title {
  color: #117ba9;
}

.report-card__img,
.history-card__thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 384 / 216;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: var(--radius-base) var(--radius-base) 0 0;
}

.report-card__img {
  object-fit: cover;
  display: block;
}

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

.report-card__body {
  flex: 1;
  display: flex;
  align-items: flex-start;
  padding: 12px 16px;
}

.report-card__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  color: var(--color-body);
  transition: color 0.2s ease;
}

/* History */
.section--history {
  background: transparent;
  padding: 40px var(--section-pad-x) 56px;
}

.history-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px 32px;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto 32px;
  justify-content: center;
}

.history-card--extra {
  display: none;
}

.history-grid.is-expanded .history-card--extra {
  display: block;
}

.history-card__body {
  padding: 0 0 16px;
}

.history-card__date {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-accent);
  margin: 16px 0 2px 0;
  padding: 0 16px;
}

.history-card__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  padding: 0 16px;
  color: var(--color-body);
  transition: color 0.2s ease;
}

.history__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.history__footer .history__close {
  display: none !important;
}

.history__footer.is-expanded .history__toggle {
  display: none !important;
}

.history__footer.is-expanded .history__close {
  display: inline-flex !important;
}

.history__close-icon {
  transform: rotate(180deg);
}

.history__close:hover .history__close-icon {
  transform: rotate(180deg);
}

.history-banner {
  display: block;
  max-width: 720px;
  margin: 80px auto 16px;
  border-radius: var(--radius-base);
  overflow: hidden;
  transition: opacity 0.2s ease;
}

.history-banner:hover {
  opacity: 0.55;
}

.history-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.history-banner picture {
  display: block;
  width: 100%;
}

/* Gallery modal */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  padding: 24px;
}

.gallery-modal.is-open {
  display: flex;
}

.gallery-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--color-white);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
}

.gallery-modal__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

.gallery-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.gallery-modal__nav--prev {
  left: 16px;
  padding-right: 4px;
  padding-bottom: 4px;
}

.gallery-modal__nav--next {
  right: 16px;
  padding-left: 4px;
  padding-bottom: 4px;
}

@media (max-width: 1080px) {
  .program-list {
    max-width: 100%;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .section--stats {
    padding-top: 64px;
  }

  .gallery-carousel__viewport,
  .speakers-carousel__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pinch-zoom;
    overscroll-behavior-x: contain;
  }

  .stats-grid,
  .testimonials-grid,
  .tickets-grid,
  .reports-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-card,
  .testimonial-card,
  .ticket-card,
  .report-card,
  .history-card {
    width: 100%;
  }

  .history-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

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

  .program-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .program-row__time {
    white-space: normal;
    justify-content: center;
    text-align: center;
  }

  .program-row__content {
    text-align: center;
  }

  .program-row__content strong {
    text-align: center;
  }

  .program-speaker {
    display: flex;
    justify-content: center;
  }

  .program-speaker__profile {
    margin: 0;
  }

  .speaker-card__overlay {
    opacity: 1;
    transform: translateY(0);
    height: 23%;
    background: rgba(6, 32, 55, 0.85);
  }
}

@media (max-width: 1024px) and (min-width: 641px) {
  .section--intro {
    padding-top: 80px;
  }

  .intro__decor {
    --intro-decor-w: 133px;
    width: var(--intro-decor-w);
    height: 133px;
  }

  .section--program,
  .section--ticket,
  .section--info,
  .section--access,
  .section--partner {
    padding-top: 80px;
  }

  .ticket-card {
    padding: 24px 24px 24px;
  }

  .ticket-card__price {
    font-size: 32px;
  }

  .program-row__content {
    text-align: left;
  }

  .program-row__content strong {
    text-align: left;
  }

  .program-row__time {
    justify-content: flex-start;
    text-align: left;
  }

  .program-speaker {
    display: block;
  }
}

@media (max-width: 1439px) and (min-width: 641px) {
  .fv__media {
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    max-width: 1593px;
  }
}

@media (max-width: 640px) {
  .fv {
    height: 660px;
    margin-top: 0;
    background: #021c27;
  }

  .fv__media {
    display: block;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: none;
    height: 100%;
  }

  .fv__overlay {
    display: none;
  }

  .fv__frame {
    height: 540px;
    padding: 0;
    justify-content: center;
  }

  .fv__content {
    gap: 4px;
    width: 100%;
    max-width: none;
    padding: 0 0 42px;
  }

  .fv__heading {
    width: 95%;
    min-width: 0;
    max-width: 95%;
    margin: 0 auto;
    padding-top: 8px;
  }

  .fv__logo {
    width: 100%;
    min-width: 0;
    height: auto;
    max-width: 100%;
    margin: 0;
    transform: none;
    object-fit: contain;
  }

  .fv__meta {
    width: min(358px, calc(100% - 32px));
    padding: 12px 24px;
    border-radius: 5px;
  }

  .fv__meta-inner {
    min-height: 42px;
    flex-wrap: nowrap;
    gap: 12px;
    justify-content: center;
  }

  .fv__meta-col {
    flex: 0 0 auto;
    max-width: none;
    gap: 2px;
  }

  .fv__meta-col:last-child .fv__meta-value {
    white-space: nowrap;
    font-size: 14px;
    line-height: 24px;
  }

  .fv__meta-divider {
    width: 1px;
    height: 43px;
    margin: 0;
  }

  .fv__meta-label {
    font-size: 10px;
    line-height: 15px;
    letter-spacing: 0.1em;
  }

  .fv__meta-value {
    font-size: 16px;
    line-height: 24px;
  }

  .fv__meta-value-sub {
    font-size: 12px;
    line-height: 16px;
  }

  .fv__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    bottom: 100px;
    width: calc(100% - 32px);
    max-width: 358px;
    height: 48px;
    padding: 16px 40px;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 16px;
    font-weight: 900;
    line-height: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 5px;
    box-shadow: none;
  }

  .section__title {
    font-size: 26px;
    margin: 0 0 12px;
  }

  .section__watermark {
    font-size: 42px;
  }

  .section__title-block {
    text-align: center;
  }

  .section__title-block .section__title {
    text-align: center;
  }

  .section-title-group--access .section__watermark {
    left: 50%;
    transform: translateX(-50%);
  }

  .section-title-group--access .section__header,
  .section-title-group--access .section__title {
    text-align: center;
  }

  .partner-card__logo {
    max-width: 227px;
  }

  .intro__body-highlight {
/*    font-size: 18px;*/
  }

  .section__header {
    margin-bottom: 12px;
  }

  .gallery__intro {
    margin-bottom: 12px;
  }

  .section--intro {
    padding-top: 60px;
  }

  .intro__body {
    font-size: 15px;
    margin-bottom: 32px;
    text-align: left;
  }

  .section-title-group {
    margin-bottom: 12px;
  }

  .access-venue__title {
    font-size: 18px;
  }

  .access-grid {
    gap: 24px;
  }

  .ticket-apply {
    margin: 24px auto 0;
  }

  .ticket-apply__lead {
    font-size: 14px;
    text-align: left;
  }

  .ticket-apply__note {
    font-size: 14px;
    text-align: left;
  }

  .ticket-card__name {
    font-size: 18px;
  }

  .ticket-card__price {
    font-size: 30px;
  }

  .ticket-card {
    padding: 20px 32px 18px;
  }

  .partner-note {
    text-align: left;
  }

  .section--speakers .section__lead,
  .section--testimonials .section__lead {
    margin: 4px;
  }

  .section--stats {
    padding-top: 48px;
  }

  .section--stats .section__header {
    margin-bottom: 16px;
  }

  .section--stats .section__title {
    font-size: 24px;
    line-height: 33px;
    margin-bottom: 12px;
  }

  .section__lead,
  .section__leads,
  .gallery__lead {
    text-align: left;
  }

  .section__lead {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 12px;
  }

  .stats-grid,
  .testimonials-grid,
  .tickets-grid,
  .reports-grid,
  .history-grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .stats-grid {
    gap: 24px;
  }

  .testimonials-grid {
    gap: 24px;
  }

  .tickets-grid {
    gap: 24px;
  }

  .reports-grid {
    row-gap: 16px;
  }

  .history-grid {
    gap: 16px;
  }

  .stat-card,
  .testimonial-card,
  .ticket-card,
  .report-card,
  .history-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .report-card {
    flex-direction: row;
    align-items: center;
  }

  .report-card__img {
    width: 112px;
    min-width: 112px;
    max-width: 112px;
    flex: 0 0 112px;
    aspect-ratio: 16 / 9;
    height: auto;
    align-self: center;
    margin-left: 12px;
    object-fit: cover;
    border-radius: 5px;
  }

  .report-card__body {
    flex: 1;
    min-width: 0;
    padding: 10px 12px;
    align-items: center;
  }

  .history-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
  }

  .history-card--extra {
    display: none;
  }

  .history-grid.is-expanded .history-card--extra {
    display: flex;
  }

  .history-card__thumb {
    width: 112px;
    min-width: 112px;
    max-width: 112px;
    flex: 0 0 112px;
    aspect-ratio: 16 / 9;
    height: auto;
    align-self: center;
    margin: 0;
    overflow: hidden;
    border-radius: 5px;
  }

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

  .history-card__body {
    flex: 1;
    min-width: 0;
    padding: 0;
  }

  .history-card__date {
    margin: 0 0 2px;
    padding: 0;
  }

  .history-card__title {
    padding: 0;
  }

  .stat-card__note {
    white-space: normal;
    margin: 8px 0 0;
  }

  .stat-card {
    margin-top: 4px;
    padding: 20px 20px 18px;
    min-height: 224px;
  }

  .stat-card__label-ja {
    font-size: 18px;
  }

  .stat-card__icon {
    width: 45px;
    height: 45px;
    margin: 2px 0;
  }

  .stat-card__icon img {
    width: 45px;
    height: 45px;
  }

  .stat-card__value {
    font-size: 32px;
  }

  .stat-card__link {
    margin-top: 1px;
  }

  .speakers__header {
    flex-direction: column;
  }

  .speakers-carousel-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
  }

  .section--testimonials .section__header {
    margin-bottom: 24px;
  }

  .speakers-carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 16px;
  }

  .speakers-carousel__controls {
    display: none;
  }

  .speakers-carousel__viewport {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pinch-zoom;
  }

  .speakers-carousel__note {
    width: 100%;
    margin: 10px 0 0;
    text-align: right;
  }

  .gallery__featured {
    max-width: 100%;
  }

  .gallery-carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 16px;
  }

  .gallery-carousel__controls {
    display: none;
  }

  .gallery-carousel__viewport {
    width: 100%;
    min-height: 175px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pinch-zoom;
  }

  .gallery-item {
    flex: 0 0 75vw;
    max-width: 280px;
  }

  .intro__decor {
    display: none;
  }

  .program-row {
    gap: 4px;
  }

  .program-row__time {
    padding: 12px 16px;
  }

  .program-row__content {
    padding: 12px 24px;
    text-align: left;
  }

  .program-speaker {
    display: block;
  }

  .program-list {
    gap: 24px;
  }

  .anchor-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px 16px;
    justify-content: center;
    max-width: 358px;
    margin: 0 auto;
  }

  .anchor-nav a {
    justify-content: center;
    gap: 2px;
    width: 100%;
    border-radius: 25px;
    padding: 8px 18px;
    font-size: 12px;
    letter-spacing: 0.0429em;
  }

  .anchor-nav a img {
    max-width: 15%;
    height: auto;
  }

  .anchor-nav a:nth-child(5) {
    grid-column: 1 / -1;
    justify-self: center;
    width: 171px;
    max-width: 171px;
  }

  .info-table,
  .info-table tbody {
    display: block;
    width: 100%;
  }

  .info-table tr {
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 0;
  }

  .info-table tr:first-child {
    border-top: none;
  }

  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
    text-align: left;
    border-top: none;
    padding: 0;
  }

  .info-table th {
    white-space: normal;
    width: auto;
    margin-bottom: 8px;
  }

  .section--gallery {
  padding-bottom: 32px;
}

.ticket-apply__disclaimer {
 text-align: left;
}

.speakers-carousel__note{
  text-align: center;
}

}
