/* ==========================================================================
   Reset / Base
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body,
h1, h2, h3, h4, p,
ul, ol {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* No true "Black" weight exists in the source repo; ExtraBold is the heaviest available and stands in for it */
@font-face {
  font-family: "Avenir Black";
  src: url("../fonts/Avenir-ExtraBold.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #1a1a1a;
  background: #fff;
}

:root {
  --gutter: 40px;
  --content-width: 1200px;
  --content-width-wide: 1360px;
  --parallelogram-skew: 28px;
}

/* ==========================================================================
   Layout helpers
   ========================================================================== */
.container {
  width: 100%;
  max-width: calc(var(--content-width) + (var(--gutter) * 2));
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 9px 24px;
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.btn:hover {
  opacity: 0.8;
}

.btn--cta {
  background: #288cf6;
  color: #fff;
}

/* ==========================================================================
   Site Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  color: #fff;
  background: transparent;
}

.site-header.is-scrolled {
  background: rgba(3, 21, 107, 0.9);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: calc(var(--content-width-wide) + (var(--gutter) * 2));
  margin: 0 auto;
  padding: 16px var(--gutter);
}

.site-header__logo img {
  height: 36px;
  width: auto;
}

.site-header__cta {
  flex-shrink: 0;
}

.site-header--white {
  background: #fff;
}
.site-header--white .site-nav__link {
  color: #1a1a1a;
}



/* ==========================================================================
   Nav
   ========================================================================== */
.site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav__link {
  font-size: 14px;
  font-weight: 500;
}

/* ==========================================================================
   FV / Hero
   ========================================================================== */
.fv {
  background-color: #25378e;
  background-image: url("../img/hero-bg.jpg");
  background-size: cover;
  background-position: center;
}

.fv__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding-top: 100px;
  padding-bottom: 57px;
  color: #fff;
}

.fv__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  background: #fff;
  clip-path: polygon(var(--parallelogram-skew) 0, 100% 0, calc(100% - var(--parallelogram-skew)) 100%, 0 100%);
  /* Fluid padding: scales smoothly between the 320px and 1440px viewport references */
  padding-top: clamp(0px, calc(10.29px - 0.714vw), 8px);
  padding-right: clamp(24px, calc(12.57px + 3.571vw), 64px);
  padding-bottom: clamp(0px, calc(18px - 1.25vw), 14px);
  padding-left: clamp(36px, calc(28px + 2.5vw), 64px);
}

.fv__date {
  color: #25378e;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0 3px;
}

.fv-num {
  font-family: "Avenir Black", "Avenir", sans-serif;
  font-weight: 900;
  white-space: nowrap;
  flex-shrink: 0;
}

.fv-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(15.01px, calc(1.22vw + 10.44px), 28px);
  white-space: nowrap;
  flex-shrink: 0;
}

.fv-num--yr {
  font-size: clamp(17.157px, calc(1.39vw + 11.93px), 32px);
}

.fv-num--day-num {
  font-size: clamp(24.13px, calc(1.96vw + 16.78px), 45px);
  color: #1e349f;
}

.fv-num--dow {
  font-size: clamp(15.55px, calc(1.26vw + 10.81px), 29px);
}

.fv-num--time {
  font-size: clamp(16.61px, calc(1.35vw + 11.54px), 31px);
}

.fv__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25378e;
  color: #fff;
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 700;
  font-size: clamp(14px, calc(12.86px + 0.357vw), 18px);
  white-space: nowrap;
}

.fv__badge img {
  width: 16px;
  height: 16px;
}

.fv__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  line-height: 1.2;
}

.fv__title-a {
  font-size: clamp(59.51px, calc(4.83vw + 41.38px), 110.99px);
  white-space: nowrap;
}

.fv__title-b {
  font-size: clamp(46.84px, calc(3.80vw + 32.58px), 87.35px);

}

.fv__title-bang {
  display: inline-block;
  margin-left: 10px;
  font-size: clamp(58.96px, calc(4.79vw + 41.00px), 109.96px);
  transform: rotate(22deg) translateY(8px);
}

.fv__title-year {
  font-size: clamp(59px, calc(44.43px + 4.554vw), 110px);
  margin-left: 16px;
}

.fv__title-wrap {
  display: inline-block;
  width: fit-content;
}

.fv__divider {
  width: 100%;
  height: 14px;
  box-sizing: border-box;
  border: none;
  border-top: 4px solid #fff;
  border-bottom: 4px solid #fff;
  margin: 16px 0 0;
}

.fv__lead {
  font-weight: 700;
  letter-spacing: 0.03em;
}

.fv__lead-a {
  font-size: clamp(24px, calc(20.57px + 1.071vw), 36px);
}

.fv__lead-b {
  font-size: clamp(21px, calc(17.86px + 0.982vw), 32px);
}

.fv__lead-c {
  font-size: clamp(15.37px, calc(0.81vw + 12.33px), 24px);
  white-space: nowrap;
}

.fv__lead--mobile {
  display: none;
}

.fv__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  max-width: 425px;
  text-align: center;
  background: #288cf6;
  color: #fff;
  border-radius: 999px;
  padding: 12px 32px;
}

.fv__cta:hover {
  opacity: 0.8;
}

.fv__cta-top {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
}

.fv__cta-flag {
  background: #fff;
  color: #293b93;
  border-radius: 999px;
  padding: 2px 12px;
  font-size: 14px;
  font-weight: 700;
}

.fv__cta-main {
  font-size: 20px;
  font-weight: 700;
}

/* ==========================================================================
   About
   ========================================================================== */
.about {
  background-color: #f1f1f1;
  background-image: url("../img/dot-bg.png");
  background-repeat: repeat;
  background-size: 2200px 596px;
  padding-top: 40px;
  padding-bottom: 80px;
}

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
}

.logo-grid__item {
  flex: 0 0 calc((100% - (16px * 6)) / 7);
}

.logo-grid__item img {
  width: 100%;
  display: block;
}

.about__split {
  display: flex;
  align-items: center;
  gap: 80px;
}

.about__image {
  flex: 1 1 440px;
  max-width: 440px;
  min-width: 0;
}

.about__image img {
  width: 100%;
}

.about__text {
  flex: 1;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  gap: 0;
  margin-bottom: 24px;
}

/* Reusable parallelogram section heading + EN label, used across sections */
.section-heading__label {
  background: linear-gradient(90deg, #4658b0, #25378e);
  color: #fff;
  font-weight: 700;
  font-size: 36px;
  padding: 4px 52px;
  clip-path: polygon(var(--parallelogram-skew) 0, 100% 0, calc(100% - var(--parallelogram-skew)) 100%, 0 100%);
}

.section-heading__en {
  font-family: "Avenir Black", "Avenir", sans-serif;
  font-weight: 900;
  color: #293b93;
  font-size: 18px;
}

/* Stacked variant: EN label centered below the title instead of beside it */
.section-heading--stacked {
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.about__body p {
  margin-bottom: 16px;
  line-height: 2;
}

.about__body p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Recommend
   ========================================================================== */
.recommend {
  background-color: #f1f1f1;
  background-image: url("../img/stripe-bg.jpg");
  background-size: cover;
  background-position: center;
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
}

.recommend__heading {
  justify-content: center;
  margin-bottom: 48px;
}

.recommend__grid {
  display: flex;
  gap: 16px;
}

.recommend__card {
  flex: 1;
  background: #fff;
  padding: 40px 24px;
}

.recommend__card img {
  margin: 0 auto 24px;
  max-width: 220px;
  width: 100%;
}

.recommend__card p {
  font-size: 20px;
  font-weight: 700;
}

/* ==========================================================================
   Schedule / Timeline
   ========================================================================== */
.schedule {
  background-color: #f1f1f1;
  background-image: url("../img/dot-bg.png");
  background-repeat: repeat;
  background-size: 2200px 596px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.schedule__heading {
  justify-content: center;
  margin-bottom: 56px;
}

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  --timeline-rail: 166px;
}

.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 140px 1fr;
  column-gap: 56px;
  --accent: #0e629f;
}

/* Line segment runs from this item's own node down to the next item's node
   (gap + next node's offset), so it never overshoots past the first or final node */
.timeline__item::before {
  content: "";
  position: absolute;
  top: 13px;
  bottom: -45px;
  left: var(--timeline-rail);
  width: 2px;
  background: #d2d2d2;
  transform: translateX(-50%);
}
.timeline__item:last-child:before {
  display: none;
}
/* Per the latest design, the final node's line now continues down to the
   section's bottom edge instead of stopping at the last card */
.timeline__item:last-child::before {
  bottom: -80px;
}

.timeline__item--gold {
  --accent: #dd9c00;
}

.timeline__item--blue {
  --accent: #0e629f;
}

.timeline__item--accent-blue {
  --accent: #288cf6;
}

.timeline__item--navy {
  --accent: #13226c;
}

.timeline__item--purple {
  --accent: #927aff;
}

.timeline__item--red {
  --accent: #e30000;
}

.timeline__item--dark {
  --accent: #231815;
}

.timeline__time-col {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.timeline__marker {
  position: absolute;
  top: 13px;
  left: var(--timeline-rail);
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  z-index: 1;
}

.timeline__time {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 2px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.timeline__time--mobile {
  display: none;
}

.timeline__tracks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.schedule-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #dadada;
  border-radius: 16px;
  padding: 20px;
}

.schedule-card--keynote {
  background: #fffbf2;
  border-color: #ffb810;
}

.schedule-card--stroke-gray {
  border-color: #bfbfbf;
}

.schedule-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  font-weight: 700;
  padding: 2px 12px;
  border-radius: 4px;
  color: #fff;
  background: #898989;
  white-space: nowrap;
}

.tag img {
  width: 14px;
  height: 14px;
}

.tag--keynote img {
  width: 20px;
  height: 20px;
}

.tag--track,
.tag--bonus-num {
  background: #e6f2ff;
  color: #288cf6;
  border: 1px solid #afd6ff;
}

/* Scoped to the 13:00-13:30 row only */
.tag--track-purple {
  background: #e6e6ff;
  color: #927aff;
  border: 1px solid #afb1ff;
}

.tag--keynote {
  background: #fff5dc;
  border: 1px solid #ffb810;
  color: #dd9c00;
  line-height: 1.5;
  letter-spacing: 0.03em;
  border-radius: 999px;
}

.tag--ai,
.tag--basic,
.tag--manufacturing,
.tag--web,
.tag--saas,
.tag--auto,
.tag--finance,
.tag--infra,
.tag--dummy,
.tag--edu,
.tag--tool,
.tag--security {
  background: #fff;
  color: #288cf6;
  border: 1px solid #288cf6;
}

.schedule-card__coming-soon {
  background: #f5f5f5;
  border: 1px solid #d2d2d2;
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  color: #868686;
  font-weight: 700;
  font-size: 18px;
}

/* Keynote card's Coming Soon has no box treatment, just larger centered text */
.schedule-card__coming-soon--plain {
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 36px;
  font-size: 24px;
}

.schedule-card__coming-soon--flush {
  margin-bottom: 0;
}

.schedule-card__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.schedule-card__title--dummy {
  color: #e30000;
}

.schedule-card__speakers {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.schedule-card__speaker {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f5f5f5;
  border: 1px solid #d2d2d2;
  border-radius: 8px;
  padding: 12px;
}

.schedule-card__logo {
  flex: 0 0 156px;
  width: 156px;
  height: 67px;
  object-fit: contain;
}

.schedule-card__person {
  flex: 1;
}

.schedule-card__name {
  font-weight: 700;
  color: #000;
  font-size: 18px;
}

.schedule-card__name--dummy {
  color: #e30000;
}

.schedule-card__role {
  font-size: 16px;
  color: #000;
  line-height: 1.5;
}

.schedule-card__role--dummy {
  color: #e30000;
}

.schedule-card__cta {
  display: flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
  margin-top: auto;
  margin-left: auto;
  background: #13226c;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 8px 20px;
  border-radius: 999px;
}

.schedule-card__cta:hover {
  opacity: 0.8;
}

.schedule-card__arrow {
  width: 16px;
  height: 16px;
}

.schedule-card__cta--gold {
  background: #d79800;
}

.schedule__more {
  display: none;
  align-items: center;
  gap: 8px;
  margin: 32px auto 0;
  background: #fff;
  border: 1px solid #288cf6;
  color: #288cf6;
  font-weight: 700;
  font-size: 16px;
  padding: 9px 24px;
  border-radius: 999px;
  transition: opacity 0.3s ease;
}

.schedule__more img {
  width: 20px;
  height: 20px;
}

.schedule__more.is-hiding {
  opacity: 0;
  pointer-events: none;
  display: none;
}

/* ==========================================================================
   Overview
   ========================================================================== */
.overview {
  background-color: #25378e;
  background-image: url("../img/overview-bg.jpg");
  background-size: cover;
  background-position: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.overview__heading {
  justify-content: center;
  margin-bottom: 48px;
}

.section-heading--invert .section-heading__label {
  background: #fff;
  color: #25378e;
}

.section-heading--invert .section-heading__en {
  color: #fff;
}

.overview-table {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
}

.overview-table__row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  padding: 24px 32px;
  border-bottom: 1px solid #e5e5e5;
}

.overview-table__row:last-child {
  border-bottom: none;
}

.overview-table__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #1a1a1a;
}

.overview-table__label img {
  width: 20px;
  height: 20px;
}

.overview-table__value {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1a1a1a;
}

.overview-table__badge {
  display: inline-flex;
  align-items: center;
  background: #288cf6;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 4px 14px;
  border-radius: 999px;
}

.overview-notice {
  background: #eee;
  border-radius: 16px;
  padding: 24px 32px;
}

.overview-notice__heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #d2d2d2;
}

.overview-notice__heading img {
  width: 24px;
  height: 24px;
}

.overview-notice__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: #4a4a4a;
  line-height: 1.7;
}

/* ==========================================================================
   Bonus
   ========================================================================== */
.bonus {
  background-image: url("../img/bonus-bg.jpg");
  background-size: cover;
  background-position: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.bonus__heading {
  justify-content: center;
  margin-bottom: 48px;
}

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

.bonus-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
}

.bonus-card__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.bonus-card__tag-label {
  font-weight: 700;
  color: #288cf6;
  font-size: 16px;
}

.bonus-card__title {
  display: flex;
  align-items: center;
  font-size: 24px;
  min-height: 72px;
  font-weight: 700;
  line-height: 1.5;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.bonus-card__image {
  background: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}

.bonus-card__image img {
  width: 100%;
  display: block;
}

.bonus-card__smallprint {
  font-size: 10px;
  font-weight: 400;
  line-height: 1.5;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.bonus-card__desc {
  font-size: 15px;
  line-height: 1.7;
  color: #1a1a1a;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e5e5;
}

.bonus-card__note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #25378e;
  font-size: 15px;
}

.bonus-card__note img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ==========================================================================
   Application
   ========================================================================== */
.application {
  background-color: #f1f1f1;
  background-image: url("../img/dot-bg.png");
  background-repeat: repeat;
  background-size: 2200px 596px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.application__heading {
  justify-content: center;
  margin-bottom: 48px;
}

.application__form {
  max-width: 900px;
  margin: 0 auto;
}

/* ==========================================================================
   Share
   ========================================================================== */
.share {
  background-color: #e4e4e4;
  padding: 48px 0;
}

.share__inner {
  text-align: center;
}

.share__title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 24px;
}

.share__links {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.share__link img {
  width: 48px;
  height: 48px;
}

/* ==========================================================================
   Session Modal
   ========================================================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.6);
}

.modal__dialog {
  position: relative;
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 1023px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  transform: translateY(12px);
  transition: transform 0.25s ease;
}

.modal[aria-hidden="false"] .modal__dialog {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 24px;
  height: 24px;
}

.modal__close-bar {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #1a1a1a;
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal__close-bar + .modal__close-bar {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  margin-right: 40px;
}

.modal__time-tag {
  background: var(--accent, #288cf6);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 20px;
  padding: 2px 12px;
  white-space: nowrap;
}

.modal__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.modal__desc {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 12px;
  font-size: 16px;
  line-height: 1.5;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.modal__desc p + p {
  margin-top: 16px;
}

.modal__divider {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 0 0 24px;
}

.modal__speakers {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-speaker {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Real speaker rows use named grid areas so photo/body/logo can reflow on mobile */
.modal-speaker--full {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "photo body logo";
  align-items: center;
  column-gap: 16px;
}

.modal-speaker__photo {
  grid-area: photo;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.modal-speaker__body {
  grid-area: body;
  flex: 1;
}

.modal-speaker__name {
  font-weight: 700;
  font-size: 16px;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.modal-speaker__role {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.6;
  margin-bottom: 8px;
}

.modal-speaker__bio {
  font-size: 16px;
  color: #1a1a1a;
  line-height: 1.7;
}

.modal-speaker__logo {
  grid-area: logo;
  flex-shrink: 0;
  width: 182px;
  height: auto;
  margin-left: 8px;
}

.modal-speaker__pending-text {
  color: #898989;
  font-size: 14px;
}

/* ==========================================================================
   Site Footer
   ========================================================================== */
.site-footer {
  background: #fff;
  text-align: center;
}

.site-footer__inner {
  padding-top: 40px;
  padding-bottom: 40px;
}

.site-footer__holdings-logo {
  width: 250px;
  margin: 0 auto 24px;
}

.site-footer__note {
  font-size: 14px;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.site-footer__badges {
  width: 433px;
  max-width: 100%;
  margin: 0 auto;
}

.site-footer__copyright {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 16px 0;
}

.site-footer__copyright p {
  font-size: 14px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .site-nav {
    display: none;
  }
}

@media (max-width: 767px) {
  :root {
    --gutter: 20px;
  }

  .site-header__logo img {
    width: 132px;
    height: 32px;
  }

  .site-header__cta {
    font-size: 14px;
    padding: 12px 20px;
  }

  .fv__meta {
    row-gap: 0;
  }

  /* Force any non-stacked heading (e.g. About) into the stacked layout on mobile */
  .section-heading {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .section-heading__label {
    font-size: 32px;
    padding: 4px 32px;
  }

  .recommend__heading .section-heading__label {
    font-size: 30px;
  }

  .fv {
    background-image: url("../img/hero-bg-mobile.jpg");
  }

  .fv__date {
    gap: 0 1px;
    /* Forced onto one line; fluid font sizing (set in the base rules) keeps it fitting */
    flex-wrap: nowrap;
  }

  .fv__badge {
    padding: 6px 12px;
    line-height: 1;
  }

  .fv__lead--desktop {
    display: none;
  }

  .fv__lead--mobile {
    display: block;
  }

  .logo-grid__item {
    flex: 0 0 calc((100% - (16px * 2)) / 3);
  }

  .about__split {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .about__image {
    order: 1;
    flex-basis: auto;
    width: 100%;
  }

  .about__text {
    order: 2;
  }

  .schedule-card {
    width: 100%;
    padding: 16px;
  }

  .schedule__more {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .schedule-card__title {
    font-size: 20px;
  }
  .schedule-card__role {
    font-size: 14px;
  }
  .schedule-card__speaker {
    flex-direction: column;
    align-items: flex-start;
  }

  .schedule-card__logo {
    flex: 0 0 67px;
  }

  .schedule-card__cta {
    padding: 16px 20px;
    width: 100%;
    line-height: 1.1875;
    justify-content: center;
  }

  .modal-speaker--full {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "photo logo"
      "body body";
    row-gap: 12px;
  }

  .modal-speaker--full .modal-speaker__logo {
    justify-self: end;
  }

  .modal-speaker__bio {
    font-size: 14px;
  }
  .tag {
    font-size: 14px;
  }

  .recommend__grid {
    flex-direction: column;
  }

  .recommend {
    background-image: url("../img/stripe-bg-mobile.jpg");
    background-position: left;
  }

  .recommend__card {
    padding: 20px;
  }

  .modal__dialog {
    padding: 24px 20px;
  }
  .modal__time-tag {
    font-size: 16px;
  }

  .modal__tags .tag {
    font-size: 14px;
  }

  .modal__title {
    font-size: 20px;
  }

  .timeline__item::before {
    display: none;
  }

  .timeline__item {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .timeline__time-col {
    display: none;
  }

  .timeline__marker {
    display: none;
  }

  .timeline__time--mobile {
    display: inline-block;
    align-self: center;
    margin-bottom: 12px;
  }

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

  .timeline__tracks {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .timeline__item:nth-child(n + 5) {
    max-height: 3000px;
    opacity: 1;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.4s ease 0.1s, margin-top 0.5s ease;
  }

  .timeline.is-collapsed .timeline__item:nth-child(n + 5) {
    max-height: 0;
    opacity: 0;
    margin-top: -32px;
    pointer-events: none;
  }

  .overview-table__row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px;
  }

  .bonus {
    background-image: url("../img/bonus-bg-sp.jpg");
  }
  .bonus-card {
    padding: 20px;
  }

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

@media (max-width: 480px) {
  .fv__cta {
    width: 100%;
    max-width: none;
    padding-inline: 16px;
  }
}

/* ==========================================================================
   Thanks
   ========================================================================== */
.thanks {
  background: url(../img/thanks-bg.jpg) no-repeat center / cover;
  margin-top: 80px;
}
@media (max-width: 767px) {
  .thanks {
    background-image: url(../img/thanks-bg-sp.jpg);
  }
}
.thanks__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding-block: 100px;
}
@media (max-width: 767px) {
  .thanks__inner {
    padding-block: 80px;
  }
}
.thanks__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.thanks__title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.04em;
}
.thanks__message {
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.04em;
  margin-top: -16px;
}
.thanks__cta {
  max-width: 288px;
  width: 100%;
  padding-block: 16px;
  font-size: 18px;
}
@media (max-width: 767px) {
  .thanks__cta {
    padding-block: 12px;
  }
}


@media (min-width: 768px) {
  .only-sp {
    display: none;
  }
}
@media (max-width: 767px) {
  .only-pc {
    display: none;
  }
}

