/* WAU2026 メインスタイル */

/* 管理バーを下部に固定 */
#wpadminbar {
  top: auto !important;
  bottom: 0;
}

/* WPが html に追加する margin-top を打ち消す */
html { margin-top: 0 !important; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ブランドカラー */
  --color-primary:       #FF0058;   /* ブランドカラー① */
  --color-accent:        #FFC800;   /* ブランドカラー② */

  /* 薄めの色 */
  --color-primary-light: #FFEEF4;   /* primary の10%相当 */
  --color-accent-light:  #FFF8DC;   /* accent の10%相当 */

  /* 濃い色 */
  --color-brand-dark:    #1A0010;   /* フッター・ダーク背景 */

  /* テキスト */
  --color-text:          #834868;   /* 本文・見出し */
  --color-text-muted:    #666666;   /* 補足・日付・キャプション */

  /* ベース */
  --color-white:         #FFFFFF;
  --color-bg-gray:       #F7F7F7;   /* セクション背景グレー */
  --color-border:        #F0F0F0;   /* border・区切り線 */

  /* 後方互換エイリアス（既存コードが参照している変数を維持） */
  --color-navy:          #1A0010;   /* → color-brand-dark に統一 */
  --color-navy-mid:      #3D0020;
  --color-navy-light:    rgba(255,0,88,0.05);
  --color-coral:         #FF0058;
  --color-orange:        #FF0058;
  --color-yellow:        #FFC800;
  --color-cream:         #FFEEF4;
  --color-dark:          #1A0010;
  --color-text-mid:      #834868;

  /* グラデーション */
  --grad-light: linear-gradient(135deg, rgba(255,0,88,0.10) 0%, rgba(255,200,0,0.10) 100%);
  --grad-dark:  linear-gradient(180deg, #3D0020 0%, #1A0010 60%, #0D0005 100%);
  --grad-main:  linear-gradient(135deg, #FF0058 0%, #FFC800 100%); /* 後方互換 */
  --grad-sub:   linear-gradient(135deg, #FF0058 0%, #FFC800 100%);
  --grad-navy:  linear-gradient(160deg, #3D0020 0%, #1A0010 60%, #0D0005 100%);

  --font-base: 'Gen Interface JP', sans-serif;
  --max-width: 1260px;
  --header-h:  100px;

  /* タイポグラフィスケール */
  --text-tag:    14px;  /* タグラベル */
  --text-base:   16px;  /* 本文・登壇者プロフィール */
  --text-time:   18px;  /* 時間表示 */
  --text-menu:   20px;  /* メニュー・Overview本文・登壇者肩書き */
  --text-speaker-name: 22px;  /* 登壇者氏名 */
  --text-day:    26px;  /* DAY見出し */
  --text-h4:     32px;  /* H4 プログラムタイトル */
  --text-h3:     40px;  /* H3 プログラムトップタイトル */
  --text-h2-ja:  52px;  /* H2 日本語 */
  --text-h2-en:  72px;  /* H2 英語 */
  /* 後方互換 */
  --text-xs:   16px;
  --text-sm:   16px;
  --text-lg:   18px;
  --text-xl:   60px;

  /* z-index スケール */
  --z-bg:       0;
  --z-deco:     5;
  --z-content:  10;
  --z-dropdown: 100;
  --z-modal:    200;
  --z-toast:    300;
}

body {
  background: #FFECE6;
  color: var(--color-text);
  font-family: var(--font-base);
  font-size: var(--text-base);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ============================================================
   ユーティリティ
   ============================================================ */

.seo-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   共通
   ============================================================ */

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--color-navy);
}

p {
  font-size: var(--text-base);
  line-height: 1.85;
  color: var(--color-text-mid);
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: var(--z-content);
}

.pickup-inner,
.day-inner,
.speaker-inner {
  padding: 96px 24px;
  position: relative;
  z-index: 1;
}

/* SP専用改行 */
.br-sp { display: none; }

/* セクション区切り（下ボーダーのみで統一） */
.section {
}

/* Hero〜Speakersまでのグラデーション背景 */
.gradient-wrap {
  background-image: var(--topbg), linear-gradient(to bottom, #FFECE6, #E9EDF4);
  background-repeat: no-repeat, no-repeat;
  background-position: center top, center top;
  background-size: auto, auto;
  overflow-x: hidden;
  position: relative;
  z-index: 0;
}
.gradient-wrap .section-hero,
.gradient-wrap .section-about,
.gradient-wrap .section-speakers {
  background-color: transparent;
}

/* セクションタイトル */
.section-title {
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin-bottom: 8px;
  line-height: 1.05;
  padding-bottom: 16px;
  border-bottom: 2px solid #FF0058;
  display: inline-block;
}

.section-subtitle {
  font-size: 20px;
  color: var(--color-text);
  margin-bottom: 56px;
}

/* 全セクション共通見出しスタイル */
.speakers-title,
.pickup-title,
.timetable-title,
.experience-title,
.ambassador-title,
.supporter-title,
.sponsors-title,
.partner-title,
.faq-title,
.news-title,
.outline-title {
  font-size: 40px;
  font-weight: 900;
  color: var(--color-text);
  line-height: 1;
  margin-bottom: 8px;
  padding-bottom: 16px;
  border-bottom: 2px solid #FF0058;
  display: inline-block;
  order: 1;
}

.speakers-eyebrow,
.pickup-eyebrow,
.timetable-eyebrow,
.experience-eyebrow,
.ambassador-eyebrow,
.supporter-eyebrow,
.sponsors-eyebrow,
.partner-eyebrow,
.faq-eyebrow,
.news-eyebrow,
.outline-eyebrow {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 48px;
  letter-spacing: normal;
  order: 2;
}

/* 見出しwrapperを縦並びflexにして左寄せ・順序制御 */
.speakers-heading,
.pickup-heading,
.timetable-heading,
.experience-heading,
.ambassador-heading,
.supporter-heading,
.sponsors-heading,
.partner-heading,
.faq-heading,
.news-heading,
.outline-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* floormapも左寄せ */
.floormap-title {
  display: inline-block;
}

.floormap-subtitle {
  font-weight: 700;
  margin-top: 4px;
}

.section-title::after {
  content: none;
}

.no-content {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  padding: 32px 0;
}

/* ============================================================
   ボタン
   ============================================================ */

.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 100px;
  font-size: var(--text-base);
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
  letter-spacing: 0.04em;
}
.btn:hover { opacity: 1; transform: translateY(-2px); }
.btn-apply:hover { opacity: 0.85; }
.btn-apply--outline:hover { opacity: 0.7; }

.btn-primary {
  background: var(--grad-sub);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(255,0,88,0.30);
}
.btn-primary:hover { opacity: 0.85; box-shadow: none; }

.btn-outline {
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--color-white);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.15);
}

/* ============================================================
   ヘッダー
   ============================================================ */

#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  border-bottom: none;
  transition: background 0.3s, border-color 0.3s;
}
#site-header.is-scrolled {
  background: #fff;
}

.header-inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 48px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  text-decoration: none;
  line-height: 1;
  display: flex;
  align-items: center;
}

.site-logo-img {
  height: 56px;
  width: auto;
  display: block;
}

#site-nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
}

#site-nav a {
  color: #834868;
  opacity: 1;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: color 0.2s, opacity 0.2s;
}
#site-nav a:hover { color: var(--color-primary); opacity: 0.7; }

#site-nav ul {
  align-items: center;
}

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

.btn-apply {
  background: var(--color-primary);
  color: var(--color-white) !important;
  padding: 0 28px;
  height: 48px;
  line-height: 48px;
  border-radius: 30px;
  font-size: var(--text-base);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  border: 2px solid var(--color-primary);
  transition: opacity 0.2s, background 0.2s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.btn-apply:hover {
  opacity: 0.85;
}

.btn-apply--outline {
  background: #fff;
  color: var(--color-primary) !important;
  border: 2px solid #FF0058;
}

.btn-apply--outline:hover {
  background: var(--color-primary);
  color: var(--color-white) !important;
}

/* ============================================================
   ヒーロー（グラデーション背景）
   ============================================================ */

.section-hero {
  height: 900px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 420px 0 0;
  border-bottom: none;
}

/* 動画背景 */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-video-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh; /* 16:9 */
  height: 56.25vw; /* 16:9 */
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 0;
}
.section-hero--video {
  background-image: none;
}
.section-hero--video .hero-content {
  color: var(--color-white);
}
.section-hero--video .hero-date,
.section-hero--video .hero-venue {
  color: var(--color-white);
}

/* テキスト・ボタン */
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-title-img {
  display: block;
  margin: 0px auto 48px;
  max-width: 540px;
  width: 100%;
  height: auto;
}

.hero-tagline {
  font-size: 30px;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 6px;
  letter-spacing: 0.1em;
}

.hero-copy-main {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.hero-copy-sub {
  font-size: 28px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 24px;
  line-height: 1.6;
}

.hero-date {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.025em;
  line-height: 1.2;
  margin-bottom: 0;
}

.hero-day-label {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.05em;
  vertical-align: middle;
}

.hero-venue {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.025em;
  margin-bottom: 48px;
}

.hero-days {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
  position: relative;
}

.hero-day-bubble {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  gap: 2px;
  flex-shrink: 0;
  position: relative;
}

.hero-day-bubble--day1 {
  background: #5800FF;
  z-index: 1;
  transform: translateX(30px);
}

.hero-day-bubble--day2 {
  background: #FF00FF;
  transform: translateX(-30px);
}

.hero-day-num {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.hero-day-theme {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   Pickup News
   ============================================================ */

.section-pickup-news {
  position: relative;
  z-index: 10;
  margin-top: -90px;
  padding-bottom: 48px;
  background: linear-gradient(to bottom, transparent 90px, #3D0020 90px);
}

.pickup-carousel {
  position: relative;
  margin: 0 auto;
}

/* PC：3枚横並び */
.pickup-carousel-track {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.pickup-carousel-slide {
  flex-shrink: 0;
  width: 310px;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}

.pickup-carousel-slide:hover {
  border-color: var(--color-primary);
}

.pickup-carousel-img {
  width: 310px;
  height: 160px;
  object-fit: cover;
  display: block;
}

.pickup-carousel-noimg {
  width: 310px;
  height: 160px;
  background: var(--color-bg-gray);
}

/* PC：コントロール非表示 */
.pickup-carousel-btn,
.pickup-carousel-dots { display: none; }

.pickup-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.85);
  border: none;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  transition: background 0.2s;
  z-index: 2;
}

.pickup-carousel-btn:hover { background: var(--color-white); }
.pickup-carousel-btn--prev { left: -20px; }
.pickup-carousel-btn--next { right: -20px; }

.pickup-carousel-dots {
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.pickup-carousel-dot {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.pickup-carousel-dot.is-active {
  background: var(--color-primary);
}

.day-theme {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.70);
  font-weight: 500;
}

/* ============================================================
   Overview（白背景）
   ============================================================ */

#pickup,
#timetable,
#experience {
  position: relative;
  z-index: 3;
}

#pickup,
#timetable {
  overflow: visible;
  padding: 0 0 36px 0;
}

#pickup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background-image: url('../images/topbg-03-2.png');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  z-index: 0;
  pointer-events: none;
}

#timetable::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background-image: url('../images/topbg-05-1.png');
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
  z-index: 0;
  pointer-events: none;
}

#pickup .section-inner,
#pickup .pickup-heading,
#pickup .program-grid {
  position: relative;
  z-index: 1;
}

.pickup-timetable-experience-wrap {
  background: linear-gradient(180deg, #EDDBE5 0%, #FFE9CB 100%);
  overflow-x: clip;
  position: relative;
  z-index: 1;
}

.about-quest-wrap {
  position: relative;
}

.about-quest-wrap::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background-image: var(--questbg);
  background-repeat: no-repeat;
  background-position: center 1024px;
  background-size: auto;
  pointer-events: none;
  z-index: -1;
}

.about-quest-wrap .section-about,
.about-quest-wrap .section-quest {
  position: relative;
  z-index: 0;
}

.quest-box {
  position: relative;
  z-index: 0;
}

.section-about {
  position: relative;
  overflow: visible;
  padding: 120px 0;
  margin-top: 360px;
}

.section-deco {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.section-deco--about-quest {
  bottom: -280px;
  right: -60px;
  width: 500px;
}

/* 左右のロゴ装飾 */
.about-deco {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(312px, 34vw, 504px);
  height: auto;
  pointer-events: none;
  user-select: none;
}

.about-deco--left {
  left: clamp(-160px, -9vw, -48px);
  opacity: 0.9;
}

.about-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}

.about-title {
  font-size: 54px;
  font-weight: 900;
  color: #FF0058;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  word-break: keep-all;
  overflow-wrap: break-word;
  text-align: center;
}

.about-tagline {
  font-size: 24px;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.02em;
  margin-bottom: 64px;
  text-align: center;
  line-height: 1.8;
}

/* About DAYカード */
.about-days {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 64px;
}

.about-day-card {
  padding: 48px 40px;
  color: #fff;
  border-radius: 4px;
  text-align: center;
}

.about-day-card--day1 { background: #5800FF; color: #fff; }
.about-day-card--day2 { background: #FF00FF; color: #fff; }

.about-day-card--day1 .about-day-label,
.about-day-card--day1 .about-day-title,
.about-day-card--day1 .about-day-subtitle,
.about-day-card--day1 .about-day-body,
.about-day-card--day2 .about-day-label,
.about-day-card--day2 .about-day-title,
.about-day-card--day2 .about-day-subtitle,
.about-day-card--day2 .about-day-body {
  color: #fff;
}

.about-day-label {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  opacity: 0.9;
}

.about-day-title {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.2;
}

.about-day-subtitle {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.6;
}

.about-day-body {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  opacity: 0.95;
}

.about-day-body--bold {
  font-weight: 700;
}

.day-free-badge {
  position: absolute;
  top: -36px;
  right: 20px;
  background: #fff;
  color: #FF00FF;
  font-size: 20px;
  font-weight: 900;
  padding: 40px 14px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  height: 120px;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.btn-day-ticket {
  display: inline-block;
  margin-top: 24px;
  padding: 10px 32px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  background: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn-day-ticket:hover {
  opacity: 0.8;
}

.btn-day-ticket--day1 {
  color: #5800FF;
}

.btn-day-ticket--day2 {
  color: #FF00FF;
}

.about-closing {
  font-size: 28px;
  font-weight: 700;
  color: #FF0058;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 48px;
}

.about-body {
  margin-bottom: 48px;
}

.about-text {
  text-align: left;
}

.about-text--left {
  position: relative;
  padding-right: 360px;
  min-height: 320px;
}

.about-text--left::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 370px;
  height: 370px;
  border-radius: 50%;
  background-image: var(--about-img);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.about-text--right {
  width: 62%;
  margin-left: auto;
}

.about-text p {
  color: #834868;
  font-size: var(--text-menu);
  line-height: 2;
  margin-bottom: 1.5em;
}

.about-text p + p {
  margin-top: 0;
}


.about-day-line {
  font-weight: 700;
  font-size: var(--text-menu);
  line-height: 1.8;
  margin-bottom: 1em !important;
}

.about-day-line--day1 {
  color: #5800FF !important;
  margin-bottom: 0 !important;
}

.about-day-line--day2 {
  color: #FF00FF !important;
}

.about-closing {
  color: #FF0058 !important;
  font-size: 28px !important;
  font-weight: 700;
  line-height: 1.8;
  margin-top: 24px;
  margin-bottom: 0;
}

.about-cta {
  margin-top: 48px;
  text-align: center;
}

.btn-about-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 30px;
  font-weight: 700;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  border: 10px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.btn-about-apply:hover {
  background: #FF3378;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 0, 88, 0.5);
}

/* ============================================================
   Quest
   ============================================================ */

.section-quest {
  padding: 80px 0;
}

.quest-box {
  position: relative;
  width: 100%;
  background: #fff;
  transform: skewY(-3deg);
  padding: 80px 130px 100px;
  margin: 40px 0;
}

.quest-box-border {
  display: none;
}

.quest-box-inner {
  position: relative;
  z-index: 2;
  width: 1000px;
  margin: 0 auto;
  padding: 2em 0;
  transform: skewY(3deg);
}

.quest-tagline {
  font-size: 20px;
  color: #FF0058;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
}

.quest-title {
  font-size: 60px;
  font-weight: 900;
  color: #FF0058;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 40px;
}

.quest-body {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  width: 80%;
  margin: 0 auto;
}

.quest-image {
  flex: 0 0 auto;
  width: 300px;
}

.quest-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

.quest-text {
  flex: 1;
}

.quest-text p {
  font-size: 18px;
  line-height: 1.9;
  color: var(--color-text);
  margin-bottom: 24px;
}


.quest-text-strong {
  font-weight: 700;
  font-size: 20px !important;
  line-height: 1.9;
  color: var(--color-text);
  margin-bottom: 24px;
}
.btn-quest-detail {
  display: inline-block;
  padding: 12px 3em;
  border: 2px solid #bbb;
  color: #bbb;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  background: #f5f5f5;
  cursor: default;
  pointer-events: none;
}

/* ============================================================
   Floor Map
   ============================================================ */

.section-floormap {
  padding: 80px 0;
}

.floormap-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 48px;
}

.floormap-title {
  font-size: 72px;
  font-weight: 900;
  color: var(--color-text);
  line-height: 1;
  margin-bottom: 8px;
  padding-bottom: 16px;
  border-bottom: 2px solid #FF0058;
  display: inline-block;
}

.floormap-subtitle {
  font-size: 20px;
  color: var(--color-text);
  margin-bottom: 60px;
}

.floormap-body {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto;
  gap: 0 40px;
  align-items: center;
}

.floormap-col--center {
  grid-column: 2;
  grid-row: 1 / 3;
}

.floormap-col--center img {
  width: 360px;
  height: auto;
  display: block;
}

.floormap-floor--6f { grid-column: 1; grid-row: 1; margin-bottom: 48px; }
.floormap-floor--4f { grid-column: 1; grid-row: 2; }
.floormap-floor--5f { grid-column: 3; grid-row: 1 / 3; }

.floormap-floor-info { margin-bottom: 12px; }

.floormap-floor-num {
  display: block;
  font-size: 48px;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.floormap-floor-type {
  font-size: 20px;
  font-weight: 900;
  color: var(--color-text-muted);
}

.floormap-floor-name {
  font-size: 42px;
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: 4px;
}

.floormap-floor-desc {
  font-size: 20px;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.btn-floormap {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid var(--color-text);
  color: var(--color-text);
  background: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

/* フロアカラー */
.floormap-floor--pink .floormap-floor-num,
.floormap-floor--pink .floormap-floor-type,
.floormap-floor--pink .floormap-floor-name,
.floormap-floor--pink .floormap-floor-desc { color: #FF0058; }

.floormap-floor--orange .floormap-floor-num,
.floormap-floor--orange .floormap-floor-type,
.floormap-floor--orange .floormap-floor-name,
.floormap-floor--orange .floormap-floor-desc { color: #FF6200; }

.floormap-floor--yellow .floormap-floor-num,
.floormap-floor--yellow .floormap-floor-type,
.floormap-floor--yellow .floormap-floor-name,
.floormap-floor--yellow .floormap-floor-desc { color: #FA9A00; }

.btn-floormap--pink { border-color: #FF0058; color: #FF0058; background: #fff; }
.btn-floormap--pink:hover { background: #FF0058; color: #fff; }

.btn-floormap--orange { border-color: #FF6200; color: #FF6200; background: #fff; }
.btn-floormap--orange:hover { background: #FF0058; color: #fff; }

.btn-floormap--yellow { border-color: #FA9A00; color: #FA9A00; background: #fff; }
.btn-floormap--yellow:hover { background: #FF0058; color: #fff; }

.floormap-floor--6f,
.floormap-floor--4f { text-align: right; }

.btn-floormap:hover {
  background: #FF0058;
  color: #fff;
}

/* ============================================================
   Pickup Program（クリーム背景）
   ============================================================ */

.section-pickup {
  position: relative;
  overflow: visible;
  border-bottom: none;
}

.pickup-eyebrow {
  text-align: left;
  color: #FF0058;
}

.pickup-title {
  font-size: var(--text-h2-en);
  font-weight: 900;
  color: var(--color-text);
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 8px;
  text-align: center;
}

.program-grid--pickup {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  overflow: visible;
}

.program-grid--pickup .program-card {
  height: 100%;
  border: none;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  background: var(--color-white);
  display: flex;
  flex-direction: column;
}

.program-grid--pickup .program-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.program-grid--pickup .program-card-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  flex-shrink: 0;
}

.program-grid--pickup .program-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.program-grid--pickup .program-card:hover .program-card-thumb img {
  transform: scale(1.04);
}

.program-grid--pickup .program-card-body {
  padding: 28px 32px 24px;
  flex: 1;
}

.program-grid--pickup .program-card-title {
  font-size: 21px;
  margin-bottom: 12px;
}

.program-grid--pickup .program-card-excerpt {
  display: none;
}

.program-grid--pickup .program-card-speakers {
  padding: 20px 32px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.program-grid--pickup .program-card-speaker {
  display: flex;
  align-items: center;
  gap: 16px;
}

.program-grid--pickup .program-card-speaker .speaker-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.program-grid--pickup .speaker-position {
  display: none;
}

.program-grid--pickup .speaker-name {
  font-size: var(--text-base);
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}

.program-grid--pickup .speaker-title {
  font-size: var(--text-tag);
  color: var(--color-text-muted);
  display: block;
}

/* ============================================================
   Timetableヘッダー
   ============================================================ */

.section-timetable-header {
  border-bottom: none;
}

.timetable-header-inner {
  text-align: center;
  padding: 80px 48px 56px;
}

.timetable-heading {
  margin-bottom: 48px;
}

.timetable-eyebrow {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.timetable-title {
  font-size: var(--text-h2-en);
  font-weight: 900;
  color: var(--color-text);
  letter-spacing: 0.08em;
  line-height: 1.1;
}

/* DAYタブ */
.timetable-day-tabs {
  display: inline-flex;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
}

/* スティッキー固定時のラッパー */
.timetable-day-tabs-wrap {
  display: flex;
  justify-content: center;
}

.timetable-day-tabs-wrap--sticky {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 90;
  background: transparent;
  padding: 12px 0;
  animation: tabsFadeIn 0.3s ease forwards;
}

.timetable-day-tabs-wrap--sticky-out {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 90;
  background: transparent;
  padding: 12px 0;
  animation: tabsFadeOut 0.3s ease forwards;
}

@keyframes tabsFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes tabsFadeOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-8px); }
}

.timetable-day-tabs-wrap--sticky .timetable-day-tabs,
.timetable-day-tabs-wrap--sticky-out .timetable-day-tabs {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* 固定時にレイアウトが崩れないようスペース確保 */
.timetable-day-tabs-placeholder {
  display: none;
}

.timetable-day-tabs-placeholder--active {
  display: block;
}

.timetable-day-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 72px;
  text-decoration: none;
  background: var(--color-white);
  color: var(--color-text);
  transition: background 0.2s, color 0.2s;
  border-right: 1px solid var(--color-border);
}

.timetable-day-tab:last-child {
  border-right: none;
}

.timetable-day-tab[data-tab="day1"].timetable-day-tab--active {
  background: #5800FF;
  color: #fff;
}

.timetable-day-tab[data-tab="day2"].timetable-day-tab--active {
  background: #FF00FF;
  color: #fff;
}

.timetable-day-tab:hover:not(.timetable-day-tab--active) {
  background: #f5f5f5;
}

.tab-day {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
}

.tab-date {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ============================================================
   DAY1 / DAY2 セクション
   ============================================================ */

.section-day1,
.section-day2 {
  border-bottom: none;
}


.day-timetable-wrap {
  position: relative;
  overflow: hidden;
}

/* day indicator row（timetable-slotと同じ120px+1frで揃える） */
.day-indicator-row {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 100px;
  margin-bottom: 80px;
}

.day-indicator-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.day-indicator-col::after {
  content: '';
  position: absolute;
  top: 100%;
  right: -1px;
  width: 2px;
  height: 9999px;
  background: #834868;
}

.section-day1 .day-indicator-col::after {
  background: #5800FF;
}

.section-day2 .day-indicator-col::after {
  background: #FF00FF;
}

.day-indicator {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  width: 100%;
}

.day-indicator-label {
  display: inline-block;
  padding: 4px 12px;
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.04em;
}

.section-day1 .day-indicator-label {
  background: #5800FF;
}

.section-day2 .day-indicator-label {
  background: #FF00FF;
}

.day-indicator-date {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border: 1px solid #834868;
  background: #fff;
}

.section-day1 .day-indicator-date {
  color: #5800FF;
  border-color: #5800FF;
}

.section-day2 .day-indicator-date {
  color: #FF00FF;
  border-color: #FF00FF;
}

.program-day-header {
  margin-bottom: 0;
  text-align: left;
}

.program-day-title {
  font-size: 47px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}

.program-day-title--day1 {
  color: #5800FF;
}

.program-day-title--day2 {
  color: #FF00FF;
}

.program-day-date {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.program-day-date--day1 {
  color: #5800FF;
}

.program-day-date--day2 {
  color: #FF00FF;
}

/* プログラムリスト */
.program-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* プログラムカード */
.program-card {
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.program-card:hover {
  border-color: var(--color-navy);
  box-shadow: 0 4px 20px rgba(30,58,95,0.12);
  transform: translateY(-2px);
}

.program-card-link {
  text-decoration: none;
  color: var(--color-text);
  font-weight: inherit;
}

.program-card-title .program-card-link::after {
  content: '';
  position: absolute;
  inset: 0;
}

.program-card-body {
  padding: 24px 28px;
  flex: 1;
}

/* ---- リスト表示（DAY1/DAY2）：縦積み（サムネイル→本文→登壇者） ---- */
.program-list .program-card-thumb {
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  width: 100%;
  flex-shrink: 0;
}

.program-list .program-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.program-list .program-card:hover .program-card-thumb img {
  transform: scale(1.04);
}

/* ---- ピックアップグリッド：アイキャッチ上・テキスト下 ---- */
.program-grid--pickup .program-card-thumb {
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  width: 100%;
  flex-shrink: 0;
}

.program-grid--pickup .program-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.program-grid--pickup .program-card:hover .program-card-thumb img {
  transform: scale(1.04);
}

/* 開催日・時間ヘッダー */
.program-card-header {
  display: flex;
  align-items: stretch;
  margin: 20px 0 0 -15px;
  font-size: 20px;
  font-weight: 700;
}

.program-card-day {
  padding: 0px 16px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.program-card-day.card-date-day1 {
  background: #5800FF;
}

.program-card-day.card-date-day2 {
  background: #FF00FF;
}

.program-card-time-range {
  padding: 0px 16px;
  font-size: 18px;
  font-weight: 700;
  color: #5800FF;
  border: 1px solid #5800FF;
  background: #fff;
}

.card-date-day2 ~ .program-card-time-range {
  color: #FF00FF;
  border-color: #FF00FF;
}

/* バッジ・タグ行 */
.program-card-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.program-style-badge {
  font-size: 12px;
  font-weight: 700;
  padding: 0px 12px;
  border-radius: 20px;
  background: #FF0058;
  color: #fff;
  border: none;
}

.program-tag {
  font-size: 12px;
  color: #FF0058;
  padding: 0px 12px;
  border: 1px solid #FF0058;
  border-radius: 20px;
  background: #fff;
}

/* タイトル */
.program-card-title {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-text);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

/* サブタイトル */
.program-card-subtitle {
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 8px;
}

/* 説明文 */
.program-card-excerpt {
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.85;
}

/* 登壇者エリア */
.program-card-speakers {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px 28px;
}

.program-grid--pickup .program-card-speakers {
  padding: 20px 28px;
}

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

.program-card-speaker .speaker-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.program-grid--pickup .program-card-speaker .speaker-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.speaker-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.speaker-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
}

.speaker-company {
  font-size: 12px;
  color: var(--color-text);
  line-height: 1.4;
  display: block;
}

.speaker-position {
  font-size: 12px;
  color: var(--color-text);
  line-height: 1.4;
  display: block;
}

.speaker-title {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ============================================================
   Outline（クリーム背景）
   ============================================================ */

/* ============================================================
   Sponsors
   ============================================================ */

/* ============================================================
   Experience（体験型コンテンツ）
   ============================================================ */

.section-experience {
  border-bottom: none;
  position: relative;
  overflow: visible;
}

.section-experience::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background-image: url('../images/topbg-05-1.png');
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
  z-index: 0;
  pointer-events: none;
}

.section-experience::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background-image: url('../images/topbg-04-2.png');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  z-index: 0;
  pointer-events: none;
}

.experience-deco-img {
  position: absolute;
  top: -480px;
  right: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
  z-index: 0;
}

.experience-bottom-deco-img {
  position: absolute;
  bottom: -200px;
  left: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.experience-inner {
  position: relative;
  z-index: 1;
  padding: 80px 48px 320px 48px;
}

.experience-heading {
  text-align: center;
  margin-bottom: 64px;
}

.experience-eyebrow {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.experience-title {
  font-size: var(--text-h2-en);
  font-weight: 900;
  color: var(--color-text);
  letter-spacing: 0.08em;
  line-height: 1.1;
}

/* カードリスト */
.experience-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.experience-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--color-border);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.experience-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* アイキャッチ */
.experience-card-thumb {
  width: 100%;
  height: 240px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.experience-card-no-photo {
  width: 100%;
  height: 100%;
  background: #f0f0f0;
}

.experience-card-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.experience-card-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.experience-card-title {
  font-size: 32px;
  font-weight: 900;
  color: var(--color-text);
  line-height: 1.3;
}

.experience-card-title a {
  color: inherit;
  text-decoration: none;
}

.experience-card-title a::after {
  content: '';
  position: absolute;
  inset: 0;
}

.experience-card:hover .experience-card-title {
  color: var(--color-primary);
}

.experience-card-excerpt {
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.75;
}

.experience-card-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.experience-logo-item {
  height: 48px;
  border-radius: 4px;
  display: flex;
  align-items: center;
}

.experience-logo-item img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

/* ============================================================
   アンバサダー
   ============================================================ */

.ambassador-outline-wrap {
  background: linear-gradient(to bottom, #F5F7FA, #E9EAE5);
  overflow-x: clip;
  position: relative;
  overflow: visible;
}

.ambassador-outline-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background-image: url('../images/topbg-05-2.png');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  z-index: 0;
  pointer-events: none;
}

.section-ambassador {
  border-bottom: none;
}

.ambassador-inner {
  padding: 80px 48px;
}

.ambassador-heading {
  margin-bottom: 56px;
  text-align: center;
}

.ambassador-eyebrow {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.ambassador-title {
  font-size: var(--text-h2-en);
  font-weight: 900;
  color: var(--color-text);
  letter-spacing: 0.08em;
  line-height: 1.1;
}

.ambassador-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 32px;
}

.ambassador-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.ambassador-photo-wrap {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.ambassador-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ambassador-no-photo {
  width: 100%;
  height: 100%;
  background: #E0E0E0;
}

.ambassador-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ambassador-name {
  font-size: var(--text-speaker-name);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.4;
}

.ambassador-company {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.5;
}

.ambassador-position {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.5;
}

/* ============================================================
   オフィシャルサポーター
   ============================================================ */

.section-supporter {
  border-bottom: none;
}

.supporter-inner {
  padding: 80px 48px;
}

.supporter-heading {
  margin-bottom: 56px;
  text-align: center;
}

.supporter-eyebrow {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.supporter-title {
  font-weight: 900;
  color: var(--color-text);
  letter-spacing: 0.08em;
  line-height: 1.1;
}

.supporter-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 48px 32px;
}

.supporter-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.supporter-photo-wrap {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin: 0 auto;
}

.supporter-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.supporter-no-photo {
  width: 100%;
  height: 100%;
  background: #E0E0E0;
}

.supporter-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.supporter-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.4;
}

.supporter-company {
  font-size: 12px;
  color: var(--color-text);
  line-height: 1.5;
}

.supporter-position {
  font-size: 12px;
  color: var(--color-text);
  line-height: 1.5;
}

.section-sponsors {
  border-bottom: none;
}

.sponsors-inner {
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}

.sponsors-heading {
  text-align: left;
  margin-bottom: 64px;
}

.sponsors-eyebrow {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.sponsors-title {
  font-weight: 900;
  color: var(--color-text);
  letter-spacing: 0.08em;
  line-height: 1.1;
}

.sponsors-tier {
  margin-bottom: 80px;
}

.sponsors-tier:last-child {
  margin-bottom: 0;
}

.sponsors-tier-label {
  font-size: var(--text-speaker-name);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: left;
  margin-bottom: 48px;
  color: var(--color-text);
}

/* DIAMOND：1行に4つ・大きめ */
.sponsors-grid--diamond {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
}
.sponsors-grid--diamond .sponsor-item {
  width: calc(40% - 12px);
}
.sponsors-grid--diamond .sponsor-logo {
  max-height: 180px;
}

/* PLATINUM / GOLD / SILVER：1行に4つ */
.sponsors-grid--platinum,
.sponsors-grid--gold,
.sponsors-grid--silver {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
}
.sponsors-grid--platinum .sponsor-item,
.sponsors-grid--gold .sponsor-item,
.sponsors-grid--silver .sponsor-item {
  width: calc(30% - 12px);
  max-width: calc(30% - 12px);
}
.sponsors-grid--platinum .sponsor-logo,
.sponsors-grid--gold .sponsor-logo,
.sponsors-grid--silver .sponsor-logo {
  max-height: 120px;
}

.sponsor-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sponsor-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  transition: opacity 0.2s;
  text-decoration: none;
  background: #fff;
  padding: 0 2em;
}

a.sponsor-logo-link:hover {
  opacity: 0.75;
}

.sponsor-logo {
  width: 100%;
  max-height: 80px;
  object-fit: contain;
  display: block;
}


.sponsor-logo-placeholder {
  width: 100%;
  aspect-ratio: 3 / 1;
  background: #F2F2F2;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sponsor-logo-placeholder span {
  font-size: var(--text-base);
  font-style: italic;
  color: #AAAAAA;
  text-align: center;
}

/* -----------------------------------------------
   PARTNER
----------------------------------------------- */
.section-partner {
  border-bottom: none;
}

.partner-inner {
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}

.partner-heading {
  text-align: left;
  margin-bottom: 48px;
}

.partner-eyebrow {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.partner-title {
  font-weight: 900;
  color: var(--color-text);
  letter-spacing: 0.08em;
  line-height: 1.1;
}

.partner-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(30% - 12px);
  max-width: calc(30% - 12px);
}

.partner-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #fff;
  padding: 0 2em;
  transition: opacity 0.2s;
  text-decoration: none;
}

a.partner-logo-link:hover {
  opacity: 0.75;
}

.partner-logo {
  width: 100%;
  max-height: 120px !important;
  object-fit: contain;
  display: block;
}

.partner-logo-placeholder {
  width: 100%;
  aspect-ratio: 3 / 1;
  background: #F2F2F2;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo-placeholder span {
  font-size: var(--text-sm);
  color: #AAAAAA;
  text-align: center;
}


/* ============================================================
   Outline
   ============================================================ */

.section-outline {
  border-bottom: none;
  padding: 0;
}

.outline-content {
}

.outline-inner {
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
  text-align: left;
}

.outline-heading {
  margin-bottom: 0;
  text-align: left;
}

.outline-eyebrow {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.outline-title {
  font-weight: 900;
  color: var(--color-text);
  letter-spacing: 0.08em;
  line-height: 1.1;
}

.outline-table-wrap {
  max-width: 840px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  padding: 40px 48px;
  text-align: left;
}

.outline-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-base);
}

.outline-table th,
.outline-table td {
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  text-align: left;
  vertical-align: top;
  line-height: 1.8;
}

.outline-table tr:last-child th,
.outline-table tr:last-child td {
  border-bottom: none;
}

.outline-table th {
  width: 140px;
  font-weight: 700;
  color: var(--color-text);
  white-space: nowrap;
}

.outline-table td {
  color: var(--color-text);
  font-weight: 400;
}

.outline-table a {
  color: var(--color-primary);
  text-decoration: none;
}

/* フォトスクロール */
.outline-photo-scroll {
  overflow: hidden;
  width: 100%;
}

.outline-photo-track {
  display: flex;
  width: max-content;
  animation: photoScroll 48s linear infinite;
  animation-play-state: paused;
}
.outline-photo-track.is-loaded {
  animation-play-state: running;
}

.outline-photo-item {
  width: 360px;
  height: 240px;
  flex-shrink: 0;
}

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

@keyframes photoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   FAQ（白背景）
   ============================================================ */

.section-faq {
  border-bottom: none;
}

.faq-inner {
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}

.faq-heading {
  text-align: left;
  margin-bottom: 64px;
}

.faq-eyebrow {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.faq-title {
  font-weight: 900;
  color: var(--color-text);
  letter-spacing: 0.08em;
  line-height: 1.1;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  padding: 32px 0;
  border-bottom: 1px solid #F2F2F2;
}

.faq-item:first-child {
  border-top: 1px solid #F2F2F2;
}

.faq-q {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: var(--text-speaker-name);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.5;
  margin-bottom: 12px;
}

.faq-q-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: var(--text-base);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-q-text {
  padding-top: 0;
}

.faq-a {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.85;
}

.faq-a-indent {
  flex-shrink: 0;
  width: 32px;
}

.faq-a-text p { margin: 0; }

/* ============================================================
   フッター（クリーム背景）
   ============================================================ */

#site-footer {
  background: #fff;
  border-top: 4px solid var(--color-primary);
}

.footer-inner {
  margin: 0 auto;
  padding: 64px 48px 32px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 32px;
}

/* 左：ブランド */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.footer-date {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.footer-tagline {
  font-size: var(--text-base);
  color: var(--color-text);
}

.footer-org-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
}

.footer-org-name {
  font-size: 14px;
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.8;
}

/* 右：ナビ */
.footer-nav-area {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}

.footer-nav-list--legal {
  gap: 10px;
}

.footer-nav-list a {
  font-size: var(--text-base);
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav-list--main a {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
}

.footer-nav-list--legal a {
  font-size: 12px;
  color: var(--color-text);
}

.footer-nav-list a:hover {
  color: var(--color-primary);
}

/* コピーライト */
.footer-bottom {
  text-align: left;
}

.footer-copy {
  font-size: 12px;
  color: var(--color-text);
}

/* ============================================================
   プログラム詳細ページ
   ============================================================ */

.program-detail {
  padding-top: var(--header-h);
  background: var(--color-white);
  min-height: 100vh;
}

/* ============================================================
   体験型コンテンツ 詳細ページ
   ============================================================ */

.experience-detail {
  padding-top: var(--header-h);
  background: var(--color-white);
  min-height: 100vh;
}

.experience-detail-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}

.experience-detail-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.experience-detail-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.experience-detail-time {
  font-size: var(--text-time);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.04em;
}

.experience-detail-venue {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
}

.experience-detail-title {
  font-size: var(--text-h3);
  font-weight: 900;
  color: var(--color-text);
  line-height: 1.3;
  margin-bottom: 32px;
}

.experience-detail-thumb {
  margin-bottom: 40px;
  border-radius: 4px;
  overflow: hidden;
}

.experience-detail-thumb img {
  width: 100%;
  height: 480px;
  display: block;
  object-fit: cover;
}

.experience-detail-body {
  font-size: var(--text-base);
  line-height: 1.85;
  color: var(--color-text);
  margin-bottom: 48px;
}

.experience-detail-logos {
  margin-bottom: 48px;
}

.experience-detail-logos-label {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 16px;
}

.experience-detail-logos-list {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.experience-detail-logo-item {
  height: 48px;
  display: flex;
  align-items: center;
}

.experience-detail-logo-item img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.experience-detail-back {
  margin-top: 64px;
}

.program-detail-inner {
  max-width: 840px;
  margin: 0 auto;
  padding: 72px 24px 96px;
}

/* サムネイル：上部全幅（max-widthを超えてネガティブマージンで広げる） */
.program-detail-thumb {
  width: 960px;
  max-width: 100%;
  margin: 0 auto 32px;
  overflow: hidden;
}

.program-detail-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

/* メタ（時間・バッジ） */
.program-detail-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.program-detail-clock {
  font-size: var(--text-time);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.04em;
  margin-right: 4px;
}

.program-detail-clock-sep {
  margin: 0 10px;
  font-weight: 400;
  color: var(--color-text);
}

/* タイトル */
.program-detail-title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.3;
  color: var(--color-text);
  margin-bottom: 24px;
}

/* 説明文 */
.program-detail-body {
  font-size: var(--text-base);
  line-height: 2;
  color: var(--color-text);
  border-top: 1px dashed var(--color-border);
  padding-top: 32px;
  margin-bottom: 48px;
}

/* セクション見出し */
.program-detail-section-title {
  font-size: 26px;
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: 32px;
}

.program-detail-speakers { margin-bottom: 56px; }

/* 登壇者リスト */
.program-speakers-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.program-speaker-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px 0;
  border-bottom: 1px solid var(--color-border);
}

.program-speaker-item:first-child {
  border-top: 1px solid var(--color-border);
}

/* 上段：写真＋名前 */
.program-speaker-top {
  display: flex;
  gap: 24px;
  align-items: center;
}

/* 写真 */
.program-speaker-photo-wrap {
  flex: 0 0 120px;
  width: 120px;
}

.program-speaker-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top;
  border-radius: 4px;
  display: block;
}

.program-speaker-no-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--color-navy-light);
  border-radius: 4px;
}

.program-speaker-name-block {
  flex: 1;
  min-width: 0;
}

.program-speaker-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.program-speaker-name-ja {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}

.program-speaker-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-white);
  background: #FF0058;
  padding: 3px 10px;
  border-radius: 4px;
  white-space: nowrap;
  letter-spacing: 0.06em;
}

.program-speaker-company {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.5;
}

.program-speaker-position {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.5;
}

.program-speaker-profile {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.85;
  margin-bottom: 16px;
}

/* SNSボタン */
.program-speaker-sns {
  display: flex;
  gap: 8px;
}

.speaker-sns-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.speaker-sns-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* モバイル */
@media (max-width: 640px) {
  .program-speaker-item {
    flex-direction: column;
    gap: 16px;
  }
  .program-speaker-photo-wrap {
    flex: none;
    width: 100px;
  }
}

/* 旧 speakers-grid（アーカイブページ用に残す） */
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.speaker-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
}

.speaker-card-photo {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

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

.speaker-card-body { padding: 20px; }

.speaker-card-title {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.speaker-card-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-text);
}

.speaker-card-profile {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

.program-detail-archives { margin-bottom: 56px; }

.archive-links { display: flex; gap: 12px; flex-wrap: wrap; }

.archive-link {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: var(--text-base);
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--color-border);
  color: var(--color-text-mid);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.archive-link:hover {
  border-color: var(--color-orange);
  background: rgba(232,135,78,0.06);
  box-shadow: 0 2px 12px rgba(232,135,78,0.12);
}

.program-detail-back {
  margin-top: 48px;
  padding-top: 32px;
}

.program-detail-back .btn-outline {
  border-color: var(--color-border);
  color: var(--color-text-mid);
}
.program-detail-back .btn-outline:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
  background: transparent;
}

/* ============================================================
   お知らせ セクション（トップページ）
   ============================================================ */

.section-news {
  border-bottom: none;
  position: relative;
  overflow: visible;
}

.news-bottom-deco-img {
  position: absolute;
  bottom: -200px;
  left: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.news-inner {
  padding: 80px 48px 480px 48px;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.news-title {
  font-weight: 900;
  color: var(--color-text);
  letter-spacing: 0.08em;
  line-height: 1.1;
}

.news-list-footer {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.btn-news-archive {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  background: #fff;
  border: 2px solid var(--color-primary);
  border-radius: 6px;
  padding: 12px 3em;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s;
}

.btn-news-archive:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* お知らせ一覧 */
.news-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-item {
  background: #fff;
  border-radius: 8px;
}

.news-item-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px 24px 24px;
  text-decoration: none;
  transition: opacity 0.2s;
  position: relative;
}

.news-item-link:hover {
  opacity: 0.7;
}

.news-item-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 20px -36px;
}

.news-item-badge {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--color-primary);
  padding: 2px 12px;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.news-item-date {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.news-item-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.6;
  flex: 1;
}

.news-item-arrow {
  display: block;
  text-align: right;
  font-size: 20px;
  color: var(--color-text);
  margin-top: 16px;
}

/* ============================================================
   お知らせ 一覧ページ
   ============================================================ */

.news-archive {
  padding-top: var(--header-h);
  background: var(--color-white);
  min-height: 100vh;
}

.news-archive-inner {
  max-width: 840px;
  margin: 0 auto;
  padding: 72px 24px 96px;
}

.news-archive-heading {
  text-align: center;
  margin-bottom: 56px;
}

.news-archive-eyebrow {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.news-archive-title {
  font-size: var(--text-h2-en);
  font-weight: 900;
  color: var(--color-text);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.news-archive-list {
  list-style: none;
}

.news-archive-pagination {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.news-archive-pagination a {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  border: 2px solid var(--color-primary);
  border-radius: 6px;
  padding: 8px 20px;
  transition: background 0.2s, color 0.2s;
}

.news-archive-pagination a:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* ============================================================
   お知らせ 詳細ページ
   ============================================================ */

.news-detail {
  padding-top: var(--header-h);
  background: var(--color-white);
}

.news-detail-inner {
  max-width: 840px;
  margin: 0 auto;
  padding: 72px 24px 96px;
}

.news-detail-meta {
  margin-bottom: 16px;
}

.news-detail-date {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
}

.news-detail-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  line-height: 1.35;
  color: var(--color-text);
  margin-bottom: 40px;
}

.news-detail-thumb {
  margin-bottom: 40px;
}

.news-detail-thumb-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.news-detail-body {
  font-size: var(--text-base);
  line-height: 2;
  color: var(--color-text);
  margin-bottom: 56px;
}

.news-detail-body p { margin-bottom: 1.5em; }
.news-detail-body h2 { font-size: 22px; font-weight: 700; margin: 2em 0 0.8em; }
.news-detail-body h3 { font-size: 18px; font-weight: 700; margin: 1.8em 0 0.6em; }
.news-detail-body a { color: var(--color-primary); text-decoration: underline; }
.news-detail-body img { max-width: 100%; height: auto; border-radius: 4px; }

.news-detail-back {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.news-detail-back .btn-outline {
  border-color: var(--color-primary);
  color: var(--color-primary);
  border-radius: 6px;
  background: transparent;
}
.news-detail-back .btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

/* ============================================================
   チケットCTA セクション
   ============================================================ */

/* 横並びラッパー */
.section-cta-contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.section-cta-contact {
  display: flex;
  align-items: stretch;
}

.cta-contact-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 80px 64px;
  width: 100%;
  text-decoration: none;
  transition: opacity 0.2s;
  color: #fff;
}

.cta-contact-inner:hover {
  opacity: 0.85;
}

.section-cta {
  background: #FF0058;
}

.cta-contact-label {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 24px;
}

.cta-contact-title {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 32px;
  color: #fff;
}

.cta-contact-body {
  font-size: 18px;
  font-weight: normal;
  line-height: 2;
  margin-bottom: 16px;
  color: #fff;
}

.cta-contact-info {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

.section-cta-inner {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.cta-label {
  font-size: var(--text-sm);
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.cta-title {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 20px;
}

.cta-date {
  font-size: var(--text-base);
  color: #fff;
  line-height: 1.8;
  margin-bottom: 0;
  flex: 1;
}

.cta-arrow {
  font-size: 28px;
  color: #fff;
  margin-top: 40px;
  display: block;
}

/* ============================================================
   お問い合わせ セクション
   ============================================================ */

.section-contact {
  background: #F5A623;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-title {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.3;
}

.section-contact-inner {
  text-align: center;
}

.contact-lead {
  font-size: 18px;
  color: #fff;
  line-height: 1.9;
  flex: 1;
}

.btn-contact {
  font-size: var(--text-base);
  padding: 9px 28px;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 2px solid var(--color-text);
  color: var(--color-text);
  background: transparent;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn-contact:hover {
  background: var(--color-text);
  color: #F5A623;
  border-color: var(--color-text);
}

/* セクション内CTAボタン共通 */
.section-cta-btn {
  margin-top: 40px;
  text-align: center;
}

.section-cta-btn .btn,
.section-cta-btn .btn-primary,
.section-cta-btn .btn:hover,
.section-cta-btn .btn-primary:hover {
  font-size: var(--text-lg);
  padding: 18px 56px;
  font-weight: 800;
  box-shadow: none !important;
}

/* ============================================================
   Speakers セクション
   ============================================================ */

/* ---- Speakers Section ---- */

.section-speakers {
  position: relative;
  z-index: 1;
  background: var(--color-white);
  overflow: visible;
}

.section-speakers::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background-image: url('../images/topbg-03-1.png');
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
  z-index: 0;
  pointer-events: none;
}

.section-speakers .section-inner,
.section-speakers .speakers-grid-list,
.section-speakers .speakers-more {
  position: relative;
  z-index: 1;
}

.speakers-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 48px 200px 48px;
}

.speakers-heading {
  text-align: center;
  margin-bottom: 56px;
}

.section-lead {
  text-align: left;
  margin-bottom: 40px;
}

.section-lead-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 12px;
  line-height: 1.5;
}

.section-lead-body {
  font-size: 18px;
  font-weight: normal;
  line-height: 1.8;
}

.speakers-eyebrow {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.speakers-title {
  font-size: 72px;
  font-weight: 900;
  color: var(--color-text);
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.speakers-grid-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px 24px;
  position: relative;
  z-index: 3;
}

.speaker-card-btn {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: opacity 0.2s, transform 0.15s;
}

.speaker-card-btn:hover {
  opacity: 0.85;
  transform: translateY(-3px);
}

.speaker-card--hidden {
  display: none;
}

.speaker-card-photo-wrap {
  position: relative;
  width: 180px;
  height: 180px;
  flex-shrink: 0;
}

.speaker-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transform: translate(4px, 4px);
}

.speaker-card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transform: translate(-4px, -4px);
}

.speaker-card-no-photo {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #e0e0e0;
}

.speaker-card-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
}

.speaker-card-name-ja {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.speaker-card-name-en {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.speaker-card-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.speaker-card-company {
  font-size: 12px;
  color: var(--color-text);
  line-height: 1.5;
}

.speaker-card-position {
  font-size: 12px;
  color: var(--color-text);
  line-height: 1.5;
}

.speakers-more {
  margin-top: 56px;
  text-align: center;
  position: relative;
  z-index: 3;
}

.btn-more-speaker {
  display: inline-block;
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  font-family: "Gen Interface JP", sans-serif;
  font-size: var(--text-menu);
  font-weight: 700;
  padding: 12px 3em;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: 0.06em;
  transition: background 0.2s, color 0.2s;
}

.btn-more-speaker:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* ---- Speaker Modal ---- */

.speaker-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.speaker-modal[hidden] { display: none; }

.speaker-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28,18,16,0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.speaker-modal-dialog {
  position: relative;
  background: var(--color-dark);
  color: var(--color-white);
  border-radius: 16px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  animation: modalIn 0.22s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)  scale(1); }
}

.speaker-modal-close {
  position: sticky;
  top: 0;
  float: right;
  margin: 16px 20px 0 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  z-index: 1;
}

.speaker-modal-close:hover { background: rgba(255,255,255,0.20); }

/* プログラム情報エリア */
.speaker-modal-programs {
  padding: 32px 36px 0;
  clear: both;
}

.speaker-modal-program-item {
  margin-bottom: 20px;
}

.speaker-modal-program-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.speaker-modal-day-badge {
  font-size: var(--text-base);
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 4px;
  background: var(--color-navy);
  color: var(--color-white);
}

.speaker-modal-time {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-yellow);
  font-variant-numeric: tabular-nums;
}

.speaker-modal-program-title {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 800;
  line-height: 1.35;
  color: var(--color-white);
}

.speaker-modal-program-title a {
  color: inherit;
  text-decoration: none;
}
.speaker-modal-program-title a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.speaker-modal-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin: 24px 0 0;
}

/* 登壇者情報エリア */
.speaker-modal-body {
  display: flex;
  gap: 28px;
  padding: 28px 36px 36px;
  align-items: flex-start;
}

.speaker-modal-photo-wrap {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(255,255,255,0.08);
}

.speaker-modal-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.speaker-modal-content {
  flex: 1;
  min-width: 0;
}

.speaker-modal-name-block {
  margin-bottom: 4px;
}

.speaker-modal-name {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.speaker-modal-name-ja {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  letter-spacing: 0.05em;
}

.speaker-modal-position {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
  line-height: 1.5;
}

.speaker-modal-profile {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.75);
  line-height: 1.85;
}

/* ============================================================
   タイムテーブル グリッド
   ============================================================ */

/* 会場ヘッダー — スロットと同じグリッドで時間列分オフセット */
.timetable-venue-header {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 100px;
  margin-bottom: 0;
}

.timetable-venue-labels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.timetable-venue-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 900;
  color: var(--color-white);
  text-align: center;
  padding: 16px;
  background: var(--color-primary);
}

.timetable-venue-label--5f-upgrade-floor {
  background: #FF6200;
}

.venue-floor {
  font-size: 48px;
  line-height: 1;
  letter-spacing: 0.04em;
}

.venue-name {
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0.04em;
}

.timetable-grid {
  overflow: hidden;
  position: relative;
}

/* スロット行 */
.timetable-slot {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 100px;
  padding: 24px 0;
}

.timetable-slot:first-of-type {
  border-top: 1px solid #F2F2F2;
}

/* 時間列 */
.timetable-slot-time {
  padding: 6px 0.5em;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
  background: #fff;
  border: 1px solid #834868;
  align-self: start;
  width: fit-content;
  margin-left: auto;
}

.section-day1 .timetable-slot-time {
  border-color: #5800FF;
  color: #5800FF;
}

.section-day2 .timetable-slot-time {
  border-color: #FF00FF;
  color: #FF00FF;
}


/* プログラムエリア（2列） */
.timetable-slot-programs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.timetable-slot-programs--single {
  grid-template-columns: 1fr;
}

/* 空きセル */
.timetable-slot-empty {
  min-height: 60px;
}

/* プログラムカード */
.timetable-program-card {
  background: var(--color-white);
  border: 1px solid #F2F2F2;
  position: relative;
  transition: border-color 0.2s;
}

.timetable-program-card:hover {
  border-color: var(--color-primary);
}

.timetable-program-card--full { /* 1列全幅 */ }

.timetable-program-card .program-card-excerpt {
  display: none;
}

.timetable-program-card .program-card-speakers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  flex-direction: unset;
}

.timetable-program-card .program-card-speaker .speaker-photo {
  width: 60px;
  height: 60px;
}

.timetable-program-card .speaker-position {
  display: none;
}

.timetable-program-card-inner {
  padding: 32px;
}

.timetable-program-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.timetable-program-time {
  font-size: var(--text-time);
  font-weight: 700;
  color: var(--color-text);
  font-variant-numeric: tabular-nums;
  margin-bottom: 8px;
}

.timetable-program-time-sep {
  color: var(--color-text);
}

.timetable-program-title {
  font-size: var(--text-h4);
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text);
  margin-bottom: 12px;
}

.timetable-program-title a {
  color: inherit;
  text-decoration: none;
}

.timetable-program-title a::after {
  content: '';
  position: absolute;
  inset: 0;
}

.timetable-program-title a:hover { color: var(--color-primary); }

.timetable-program-excerpt {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* 登壇者（グリッド内） */
.timetable-program-speakers {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.timetable-speaker-photo {
  width: 120px;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}

.timetable-speaker-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.timetable-speaker-name {
  font-size: var(--text-menu);
  font-weight: 700;
  color: var(--color-text);
}

.timetable-speaker-company {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.4;
}

.timetable-speaker-position {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.4;
}

/* ============================================================
   ハンバーガーメニュー
   ============================================================ */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  z-index: 99;
  padding: 24px 20px 32px;
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.25s, opacity 0.25s;
  pointer-events: none;
}

.mobile-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}

.mobile-nav-link {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border);
}

.mobile-nav-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.mobile-nav-btns .btn-apply {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 20px;
  font-size: 16px;
}

/* ============================================================
   レスポンシブ（768px以下）
   ============================================================ */

@media (max-width: 768px) {

  br.pc-only { display: none; }

  p { text-align: left; }

  /* CSS変数の上書き */
  :root {
    --header-h: 64px;
    --text-base: 14px;
  }

  /* ---- ハンバーガー表示 ---- */
  .nav-toggle { display: flex; }
  #site-nav { display: none; }
  .mobile-nav { display: block; }

  /* ---- ヘッダー ---- */
  .header-inner { padding: 0 20px; }
  .site-logo-img { height: 40px; }

  /* ---- gradient-wrap ---- */
  .gradient-wrap {
    background-image: url('../images/topbg-01-sp.png'), linear-gradient(to bottom, #FFECE6, #E9EDF4);
    background-size: 900px, auto;
  }

  /* ---- Hero ---- */
  .section-hero {
    height: auto;
    min-height: 680px;
    padding-top: calc(var(--header-h) + 90px);
    padding-bottom: 100px;
    background-position: center top;
  }

  .hero-title-img { max-width: 280px; margin-bottom: 16px; }

  .hero-content { text-align: center; }

  .hero-copy-main { font-size: 28px; text-align: center; }
  .hero-copy-sub { font-size: 18px; text-align: center; }

  .hero-date {
    font-size: 28px;
    margin-bottom: 6px;
    text-align: center;
  }

  .hero-venue {
    font-size: 16px;
    margin-bottom: 32px;
    letter-spacing: 0.08em;
    text-align: center;
  }

  .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
  .hero-actions .btn-apply { width: 240px; text-align: center; }

  /* ---- Pickup News ---- */
  .section-pickup-news {
    margin-top: -60px;
    background: linear-gradient(to bottom, transparent 60px, #3D0020 60px);
  }

  /* ---- Pickup News (モバイル：カルーセル) ---- */
  .pickup-carousel {
    max-width: 310px;
    overflow: visible;
  }

  .pickup-carousel-track {
    overflow: hidden;
    border-radius: 8px;
  }

  .pickup-carousel-track {
    gap: 0;
    justify-content: flex-start;
    transition: transform 0.5s ease;
  }

  .pickup-carousel-slide {
    width: 310px;
    flex-shrink: 0;
  }

  .pickup-carousel-img,
  .pickup-carousel-noimg {
    width: 310px;
    height: 160px;
  }

  .pickup-carousel-btn {
    display: flex;
  }

  .pickup-carousel-btn--prev { left: -16px; }
  .pickup-carousel-btn--next { right: -16px; }

  .pickup-carousel-dots {
    display: flex;
  }

  /* ---- Floormap ---- */
  .floormap-inner { padding: 60px 24px; }
  .floormap-title { font-size: 40px; }
  .floormap-body {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .floormap-col--center {
    order: 0;
    margin-bottom: 40px;
  }
  .floormap-col--center img { width: 100%; }
  .floormap-floor--6f { order: 1; }
  .floormap-floor--5f { order: 2; }
  .floormap-floor--4f { order: 3; }
  .floormap-floor--6f,
  .floormap-floor--4f { text-align: left; }
  .floormap-floor {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    margin-bottom: 40px;
    width: 100%;
  }
  .floormap-floor-num {
    grid-column: 1;
    grid-row: 1 / 3;
    font-size: 48px;
    align-self: center;
  }
  .floormap-floor-num { font-size: 36px; }
  .floormap-floor-name { font-size: 30px; }
  .floormap-floor-desc { font-size: 16px; }
  .floormap-floor--6f .floormap-floor-num,
  .floormap-floor--5f .floormap-floor-num,
  .floormap-floor--4f .floormap-floor-num {
    align-self: start;
  }
  .floormap-floor-info {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 0;
    align-self: center;
  }
  .btn-floormap {
    grid-column: 1 / 3;
    grid-row: 2;
    display: block;
    text-align: center;
    padding: 14px 20px;
  }

  /* ---- Quest ---- */
  .section-quest { padding: 0; }
  .quest-box { padding: 60px 24px 80px; }
  .quest-box-inner {
    width: 100%;
    padding: 0 0 1em;
    text-align: center;
  }
  .quest-image { width: 100%; }
  .quest-tagline { font-size: 14px; }
  .br-sp { display: block; }
  .quest-title { font-size: 36px; }
  .quest-body {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 24px;
    font-size: 14px;
  }

  /* ---- About ---- */
  .section-about { padding: 80px 0; margin-top: 0px; }
  .about-inner { padding: 0 24px; }
  .about-title { font-size: 32px; }
  .about-tagline { font-size: 16px; margin-bottom: 40px; }
  .about-days { grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; }
  .about-day-card { padding: 32px 24px; }
  .day-free-badge {
    position: absolute;
    top: -12px;
    right: 10px;
    background: #fff;
    color: #FF00FF;
    font-size: 16px;
    font-weight: 900;
    padding: 4px 14px;
    border-radius: 100px;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    height: auto;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .about-day-label { font-size: 18px; text-align: center; }
  .about-day-title { font-size: 24px; }
  .about-day-subtitle { font-size: 18px; text-align: center; }
  .about-closing { font-size: 22px; }
  .about-cta { margin-top: 40px; }
  .btn-about-apply { padding: 14px; font-size: 24px; width: 200px; height: 200px; }

  /* ---- セクション共通 ---- */
  .pickup-inner { padding: 64px 20px; }
  .day-inner { padding: 64px 0px; }
  .speaker-inner { padding: 64px 20px; }

  /* ---- 大見出しサイズ統一 ---- */
  .pickup-title,
  .timetable-title,
  .experience-title,
  .ambassador-title,
  .supporter-title,
  .sponsors-title,
  .partner-title,
  .faq-title,
  .outline-title { font-size: 40px; }

  .news-title { font-size: 32px; }

  /* ---- Speakers ---- */
  .speakers-inner { padding: 64px 20px; }
  .speakers-heading { margin-bottom: 48px; }
  .speakers-title { font-size: 36px; }
  .section-lead-title { font-size: 24px; }
  .section-lead-body { font-size: 16px; }
  .speakers-grid-list { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
  .speaker-card-btn { width: 100%; }
  .speaker-card-photo-wrap {
    width: calc(100% - 8px);
    height: auto;
    aspect-ratio: 1 / 1;
    margin: 4px auto;
  }
  .speaker-card-name-ja,
  .speaker-card-name-en { font-size: 16px; }
  .speaker-card-company,
  .speaker-card-position { font-size: 12px; }
  .btn-more-speaker { padding: 14px 40px; font-size: 16px; }

  /* ---- Speaker Modal ---- */
  .speaker-modal-dialog { border-radius: 12px; }
  .speaker-modal-body { flex-direction: column; padding: 20px 24px 28px; gap: 16px; }
  .speaker-modal-programs { padding: 24px 24px 0; }
  .speaker-modal-photo-wrap { width: 80px; height: 80px; }

  /* ---- Pickup Program ---- */
  .section-pickup { padding: 0 20px; }
  .program-grid--pickup { grid-template-columns: 1fr; }
  .program-grid--pickup .program-card-title { font-size: 21px; }

  /* ---- Timetable ---- */
  .timetable-header-inner { padding: 64px 20px 40px; }
  .timetable-day-tab { padding: 12px 28px; }
  .tab-day { font-size: 24px; }
  .tab-date { font-size: 14px; }

  /* 横スクロールコンテナ：day-innerのpadding外に出す */
  .timetable-grid {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* 会場ヘッダー：固定幅で表示 */
  .timetable-venue-header {
    display: flex;
    gap: 12px;
    min-width: calc(48px + 280px + 280px + 24px);
    margin-bottom: 0;
  }
  .timetable-venue-timecol {
    width: 56px;
    flex-shrink: 0;
  }
  .timetable-venue-labels {
    display: flex;
    gap: 12px;
    flex: 1;
  }
  .timetable-venue-label {
    width: 280px;
    flex-shrink: 0;
  }

  .timetable-venue-label {
    font-size: 24px;
    padding: 9px;
  }
  .venue-floor { font-size: 30px; }
  .venue-name { font-size: 18px; }

  /* スロット行：時間固定 + カード横並び */
  .timetable-slot {
    display: flex;
    gap: 12px;
    min-width: calc(48px + 280px + 280px + 24px);
    padding: 16px 0;
    border-bottom: 1px solid #F2F2F2;
    align-items: flex-start;
  }

  .timetable-slot:first-of-type { border-top: 1px solid #F2F2F2; }

  /* 時間列：左固定 */
  .timetable-slot-time {
    width: 56px;
    flex-shrink: 0;
    font-size: 14px;
    position: sticky;
    left: 0;
    background: var(--color-white);
    z-index: 1;
  }

  /* プログラムエリア */
  .timetable-slot-programs {
    display: flex;
    gap: 12px;
    flex: 1;
  }

  /* 各会場セル */
  .timetable-slot-cell {
    width: 280px;
    flex-shrink: 0;
  }

  .timetable-program-card-inner { padding: 16px; }
  .timetable-program-title { font-size: 18px; }
  .timetable-speaker-photo { width: 64px; }

  /* ---- Program day header ---- */
  .day-indicator-col { display: none; }
  .day-indicator-row { display: block; margin-bottom: 48px; }
  .program-day-header { }
  .program-day-date { font-size: 16px; text-align: center; }
  .program-day-title { font-size: 30px; text-align: center; }

  /* ---- Program card ---- */
  .program-card-body { padding: 28px 24px 24px; }
  .program-card-header { margin: 1em 0 0 0; }
  .program-card-day { font-size: 14px; }
  .program-card-time-range { font-size: 14px; }
  .program-card-title { font-size: 18px; }
  .speaker-name { font-size: 14px; }
  .program-card-speaker .speaker-photo { width: 60px; height: 60px; }
  .program-card-speakers { padding: 16px 20px; }

  /* ---- Experience ---- */
  .experience-inner { padding: 64px 20px; }
  .experience-detail-thumb img { height: 240px; }
  .experience-heading { margin-bottom: 0; }
  .sponsors-heading { margin-bottom: 0; }
  .faq-heading { margin-bottom: 0; }
  .partner-heading { margin-bottom: 0; }
  .experience-card { grid-template-columns: 1fr; }
  .experience-card-photo { height: 200px; }
  .experience-card-thumb { height: 180px; }
  .experience-card-body { padding: 24px 20px; }
  .experience-card-title { font-size: 22px; }

  /* ---- Ambassador ---- */
  .ambassador-inner { padding: 64px 20px; }
  .ambassador-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .ambassador-photo-wrap { width: 120px; height: 120px; }
  .ambassador-name { font-size: 18px; }

  /* ---- Supporter ---- */
  .supporter-inner { padding: 64px 20px; }
  .supporter-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .supporter-photo-wrap { width: 120px; height: 120px; }
  .supporter-name { font-size: 18px; text-align: center; }
  .supporter-company { text-align: center; }
  .supporter-position { text-align: center; }

  /* ---- Sponsors ---- */
  .sponsors-inner {
    padding: 64px 20px;
    grid-template-columns: 1fr;
  }
  .sponsors-grid--diamond { justify-content: flex-start; }
  .sponsors-grid--diamond .sponsor-item { width: calc(50% - 8px); }
  .sponsors-grid--platinum .sponsor-item,
  .sponsors-grid--gold .sponsor-item,
  .sponsors-grid--silver .sponsor-item { width: calc(50% - 8px); max-width: calc(50% - 8px); }

  /* ---- PARTNER ---- */
  .partner-inner {
    padding: 64px 20px;
    grid-template-columns: 1fr;
  }
  .partner-item { width: calc(50% - 8px); max-width: calc(50% - 8px); }

  /* ---- Supporter ---- (左右レイアウト解除) */
  .supporter-inner { grid-template-columns: 1fr; }

  /* ---- FAQ ---- */
  .faq-inner {
    padding: 64px 20px;
    grid-template-columns: 1fr;
  }
  .faq-q { font-size: 18px; }

  /* ---- News ---- */
  .news-inner { padding: 64px 20px 320px; }
  .news-list { grid-template-columns: 1fr; }
  .news-item-link { padding: 20px 24px 16px; }

  /* ---- Outline ---- */
  .outline-inner { padding: 64px 20px; grid-template-columns: 1fr; }
  .outline-table-wrap { padding: 24px 20px; }
  .outline-table th { width: 100px; }

  /* ---- Experience ---- (3列→1列) */
  .experience-list { grid-template-columns: 1fr; }

  /* ---- Program card speakers (timetable・pickup) ---- */
  .timetable-program-card .program-card-speakers { grid-template-columns: 1fr; }
  .program-grid--pickup .program-card-speakers { grid-template-columns: 1fr; padding: 20px 24px; }

  /* ---- CTA / Contact ---- */
  .section-cta-contact-wrap { grid-template-columns: 1fr; }
  .cta-contact-inner { padding: 48px 24px; }
  .cta-arrow { margin-top: 0; }
  .cta-title,
  .contact-title { font-size: 28px; }
  .cta-date,
  .contact-lead { font-size: 14px; }

  /* ---- Footer ---- */
  .footer-inner { padding: 48px 20px 24px; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-nav-area { flex-direction: column; justify-content: flex-start; align-items: flex-start; gap: 24px; }
  .footer-nav-list { align-items: flex-start; }
  .footer-nav-list a { font-size: 16px; }
  .footer-logo img { height: 36px; }
}

/* ============================================================
   UPDATE Quest ページ (/update-quest/)
============================================================ */

/* --- 共通 --- */
.quest-page {
  padding-top: var(--header-h);
  padding-bottom: 480px;
  position: relative;
}

.quest-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #FFECE6, #E9EDF4);
  z-index: -2;
  pointer-events: none;
}

.quest-page::after {
  content: '';
  position: absolute;
  bottom: -152px;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/topbg-06.png');
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
  pointer-events: none;
  z-index: -1;
}

.qp-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

.qp-section {
  padding: 100px 0;
}

.qp-section-title {
  font-size: 48px;
  font-weight: 900;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 56px;
  line-height: 1.3;
}

/* --- Hero --- */
.qp-hero {
  position: relative;
  overflow: visible;
  padding: 0 0 90px 0;
}


.qp-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background-image: url('../images/topbg-03-1.png');
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

.qp-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.qp-hero-eyebrow {
  font-size: 20px;
  font-weight: 700;
  color: #FF0058;
  margin-bottom: 24px;
}

.qp-hero-title {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.2;
  color: #834868;
  margin-bottom: 32px;
}

.qp-hero-body {
  font-size: 20px;
  line-height: 1.9;
  color: #834868;
  margin-bottom: 48px;
}

.qp-hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: var(--max-width);
}

.qp-hero-image {
  width: 100%;
  height: 660px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.qp-hero-btn {
  position: absolute;
  bottom: -160px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  border: 10px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  text-align: center;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.qp-hero-btn:hover {
  background: #FF3378;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 0, 88, 0.5);
}

/* --- 体験の流れ --- */
.qp-flow {
  background: transparent;
  position: relative;
  overflow: visible;
  padding-top: 240px;
}

.qp-flow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background-image: url('../images/topbg-03-2.png');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

.qp-flow::after {
  content: '';
  position: absolute;
  bottom: -144px;
  left: 0;
  width: 100%;
  height: 300px;
  background-image: url('../images/topbg-02-1.png');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

.qp-flow .qp-inner {
  position: relative;
  z-index: 1;
}

.qp-flow-eyebrow {
  font-size: 20px;
  font-weight: 700;
  color: #FF0058;
  text-align: center;
  margin-bottom: 16px;
}

.qp-flow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.qp-flow-step {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 40px 24px;
  border: 2px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
}

.qp-flow-step-num {
  font-size: 13px;
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.qp-flow-step-title {
  font-size: 24px;
  font-weight: 900;
  color: #FF0058;
  margin-bottom: 12px;
  line-height: 1.4;
}

.qp-flow-step-body {
  font-size: 16px;
  line-height: 1.8;
  color: #834868;
  margin-bottom: 24px;
}

.qp-flow-step-img {
  margin-top: auto;
}

.qp-flow-step-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- 5つの領域 --- */
.qp-areas {
  background: transparent;
  position: relative;
  overflow: visible;
}

.qp-areas::before {
  content: '';
  position: absolute;
  top: 144px;
  left: 0;
  width: 100%;
  height: 300px;
  background-image: url('../images/topbg-02-2.png');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

.qp-areas .qp-inner {
  position: relative;
  z-index: 1;
}

.qp-areas-eyebrow {
  font-size: 20px;
  font-weight: 700;
  color: #FF0058;
  text-align: center;
  margin-bottom: 16px;
}

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

.qp-area-card {
  background: #fff;
  border-radius: 8px;
  padding: 40px 32px;
  border-top: 4px solid var(--color-primary);
}

.qp-area-en {
  font-size: 13px;
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.qp-area-ja {
  font-size: 30px;
  font-weight: 900;
  color: #FF0058;
  margin-bottom: 16px;
}

.qp-area-body {
  font-size: 16px;
  line-height: 1.8;
  color: #834868;
}

/* 5枚目のカードを中央寄せ */
.qp-areas-grid .qp-area-card:last-child:nth-child(3n+1) {
  grid-column: 2;
}

/* --- SIGNATURE EXPERIENCE --- */
.qp-signature {
  background: transparent;
}

.qp-signature-eyebrow {
  font-size: 20px;
  font-weight: 700;
  color: #FF0058;
  text-align: center;
  margin-bottom: 16px;
}

.qp-signature-lead {
  font-size: 18px;
  text-align: center;
  color: var(--color-text-muted);
  margin-top: -32px;
  margin-bottom: 72px;
}

.qp-signature-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.qp-signature-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.qp-signature-item--reverse {
  direction: rtl;
}

.qp-signature-item--reverse > * {
  direction: ltr;
}

.qp-signature-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.qp-signature-name {
  font-size: 48px;
  font-weight: 900;
  color: #FF0058;
  margin-bottom: 20px;
  line-height: 1.3;
}

.qp-signature-body {
  font-size: 17px;
  line-height: 1.9;
}

/* --- SP (768px以下) --- */
@media (max-width: 768px) {
  .qp-inner { padding: 0 20px; }
  .qp-section { padding: 64px 0; }
  .qp-section-title { font-size: 32px; margin-bottom: 40px; }

  .qp-hero-inner { padding: 0 20px; }
  .qp-hero-eyebrow { font-size: 14px; }
  .qp-hero-title { font-size: 32px; }
  .qp-hero-body { font-size: 16px; margin-bottom: 32px; }
  .qp-hero-image { height: 320px; }
  .qp-hero-btn { font-size: 20px; height: 210px; padding: 0; bottom: -180px; }

  .qp-flow-steps { grid-template-columns: 1fr; gap: 24px; }
  .qp-flow-step-num,
  .qp-flow-step-title,
  .qp-flow-step-body { text-align: center; }

  .qp-hero { padding: 64px 0 150px 0 !important; }
  .qp-areas-grid { grid-template-columns: 1fr; gap: 16px; }
  .qp-areas-grid .qp-area-card:last-child:nth-child(3n+1) { grid-column: auto; }
  .quest-page { padding-bottom: 100px; }
  .quest-page::after { bottom: -24px; }
  .qp-areas::before { top: -44px; }
  .qp-area-card { padding: 24px 20px; }
  .qp-area-ja { font-size: 22px; }

  .qp-signature-item,
  .qp-signature-item--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 24px;
  }
  .qp-signature-name { font-size: 26px; }
  .qp-signature-list { gap: 56px; }
}
