/*!
 * XRK Unified Styles — Refactored & Organized
 * Version: 1.2.0 (cleaned)
 * Date: 2025-09-01
 * Notes:
 * - このバージョンは、元のセレクタの特定性や宣言の強さを維持しつつ、構造的に整理したものです。
 * - 明確化のために、冗長なセレクタやコメントは削除されています。
 * - すべてのハードオーバーライド、!importantフラグ、レイヤー定義は維持されています。
 */

/* ==========================================================================
   1. グローバルリセット & ページレベルの上書き
   ========================================================================== */

/* Eventosプラットフォーム固有のリセット */
.web-page__title,
section.detail-title__wrap.detail__title,
.header__wrap,
.top-button__wrap,
.menu__name,
.portal-top-button {
  display: none;
}

p.portal-event-top,
.portal-event-top,
.widget-header__button {
  display: none !important;
}

/* レイアウトラッパーのリセット */
.detail__wrap {
  padding: 0 !important;
}
section.contents__wrap.detail__contents > .web-page__wrap {
  padding: 0 !important;
  max-width: none !important;
  width: 100%;
}
.web-page__html,
.html__wrap .container {
  max-width: none !important;
  width: 100%;
}

/* ==========================================================================
   2. デザイントークン & ベーススタイル
   ========================================================================== */

:root {
  /* ブランドアクセント */
  --accent-color-1: var(--xrk-accent-1, #4f46e5);
  --accent-color-2: var(--xrk-accent-2, #a21caf);

  /* 背景・サーフェス */
  --xrk-bg: #000;
  --xrk-surface-1: #0b1220;
  --xrk-card-fill: #0f172a;
  --xrk-hero-bg: var(--xrk-hero-bg-color, #0a0e14);

  /* ボーダー */
  --xrk-border: rgba(148, 163, 184, 0.18);
  --xrk-border-strong: rgba(148, 163, 184, 0.28);

  /* テキスト */
  --xrk-text: #e5e7eb;
  --xrk-muted: #94a3b8;

  /* アクセントカラー */
  --xrk-indigo: #6366f1;
  --xrk-purple: #a855f7;
  --xrk-teal: #14b8a6;
  --xrk-emerald: #10b981;
  --xrk-cyan: #22d3ee;
  --xrk-yellow: #facc15;
}

body {
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN",
    "Noto Sans JP", "Yu Gothic", "Meiryo", system-ui, -apple-system, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ==========================================================================
   3. グローバルユーティリティ (コンテナ, アニメーション)
   ========================================================================== */

/* フェードインアニメーション */
.fade-in-section {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .fade-in-section {
    transition: none;
    transform: none;
  }
}

/* レスポンシブコンテナ */
.xrk-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}
.xrk-container--wide {
  max-width: 1200px;
}

/* ==========================================================================
   4. 再利用可能コンポーネント (見出し, アウトライン)
   ========================================================================== */

/* セクション見出し */
.xrk-h2 {
  display: block;
  width: 100%;
  text-align: center !important;
  margin: 0 auto 18px !important;
  font-weight: 900;
  font-size: clamp(24px, 6.4vw, 48px);
  letter-spacing: 0.02em;
}

.xrk-h2.xrk-h2--limebar::after,
.xrk-h2.xrk-h2--biglime::after,
.xrk-h2::after {
  content: "";
  display: block;
  height: 4px;
  width: clamp(240px, 28vw, 640px);
  margin: 14px auto 0;
  background: var(--xrk-neon-lime, #ccff66);
  border-radius: 999px;
}

/* 共通の背景アウトラインテキストスタイル */
.thema-outline,
.xrk-access > .xrk-outline-bg,
.xrk-outline-bg,
.xrk-tickets.xrk-tickets--outline .xrk-outline,
section#why.xrk-why.xrk-why--outline > .xrk-outline,
.xrk-schedule > .xrk-outline,
.xrk-highlights .xrk-outline,
.xrk-testimonials .xrk-outline {
  position: absolute;
  top: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  z-index: 0;
  font-weight: 900;
  line-height: 0.9;
  font-size: clamp(80px, 7vw, 180px);
  max-width: 70vw;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  text-stroke: 2px #fff;
  -webkit-text-fill-color: transparent;
  opacity: 0.2;
  white-space: normal;
  overflow-wrap: anywhere;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.45))
    drop-shadow(0 1px 2px rgba(0, 0, 0, 0.45));
  pointer-events: none;
  user-select: none;
}

/* ==========================================================================
   5. ページセクション
   ========================================================================== */

/* --------------------------------------------------------------------------
   001. ヒーローポスター
   -------------------------------------------------------------------------- */
.xrk-hero--poster {
  position: relative;
  overflow: hidden;
  --hero-bg: url("https://xrkaigi.eventos.tokyo/file/wysiwyg/892/file-b8a840a4-4190-475e-92c4-b58f91e3d92d.png");
  --hero-ratio: 0.5625; /* 16:9 アスペクト比 */
  --hero-h-min: 420px;
  --hero-h-max: 1400px;
}
.xrk-hero--poster::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg);
  background-size: 100% auto !important;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 1;
  pointer-events: none;
}
.xrk-hero--poster::after {
  content: none;
}
.xrk-hero--poster .xrk-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: clamp(
    var(--hero-h-min),
    calc(100vw * var(--hero-ratio)),
    var(--hero-h-max)
  );
  place-items: center;
  gap: 0;
}
.xrk-hero--poster .xrk-hero__col,
.xrk-hero--poster .xrk-hero__col--left {
  width: 100% !important;
  flex: none !important;
  display: block;
}
.xrk-hero--poster .xrk-hero__content {
  width: min(92vw, 1080px);
  margin: 0 auto;
  flex-wrap: nowrap !important;
}
.xrk-hero--poster .xrk-kvlabel {
  position: relative;
  display: inline-block;
  width: auto;
  max-width: 100%;
  padding-left: 18px;
  margin-bottom: 8px;
}
.xrk-hero--poster .xrk-kvlabel::before,
.xrk-hero--poster .xrk-kvmeta::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--xrk-neon-lime, #ccff66);
}
.xrk-hero--poster .xrk-kvlabel__title {
  margin: 0;
  box-sizing: border-box;
  display: inline-block;
  white-space: nowrap !important;
  hyphens: none;
  font-weight: 700;
  letter-spacing: 0;
  font-size: clamp(42px, 5.4vw, 120px);
  line-height: 1.06;
  padding: 20px 16px;
  background: #fff;
  color: #111;
}
.xrk-hero--poster .xrk-kvmeta {
  position: relative;
  display: inline-block;
  padding-left: 18px;
  margin-top: 10px;
  color: #fff;
}
.xrk-hero--poster .xrk-kvmeta__line {
  font-size: clamp(24px, 3.2vw, 32px);
  line-height: 1.35;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
}
.xrk-hero--poster.xrk-fitH {
  min-height: var(--hero-h, 70vh);
}
.xrk-hero--poster.xrk-fitH .xrk-hero__grid {
  min-height: inherit;
}

@media (max-width: 767px) {
  .xrk-hero--poster {
    --hero-bg: url("https://xrkaigi.eventos.tokyo/file/wysiwyg/892/file-98e0b654-3a9b-46c9-b3fe-f188a389b40b.png");
  }
  .xrk-hero--poster .xrk-hero__grid {
    min-height: unset;
  }
  .xrk-hero--poster .xrk-hero__content {
    width: 92vw;
  }
  .xrk-hero--poster .xrk-kvlabel {
    max-width: 92vw;
  }
  .xrk-hero--poster .xrk-kvlabel__title {
    font-size: clamp(28px, 9vw, 44px);
    padding: 18px 14px;
    line-height: 1.08;
  }
}

/* --------------------------------------------------------------------------
   002. "About" (XR Kaigiとは？) セクション
   -------------------------------------------------------------------------- */
.xrk-about-outline {
  position: relative;
  overflow: visible;
  background: #000
    url("https://xrkaigi.eventos.tokyo/file/wysiwyg/892/file-a5b977b3-a3d8-45d8-b44e-3f66c88e49e3.png")
    center/cover no-repeat;
  padding: clamp(48px, 8vw, 96px) 0;
  background-blend-mode: overlay;
  background-color: rgba(0, 0, 0, 0.7);
}
.xrk-about-outline::before {
  content: "What? XR Kaigi";
  position: absolute;
  left: clamp(-12px, -1vw, -6px);
  top: clamp(-10px, -0.5vw, -4px);
  display: block;
  max-width: 70vw;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  font-weight: 900;
  font-size: clamp(56px, 70vw, 154px);
  line-height: 0.9;
  color: transparent !important;
  -webkit-text-stroke: 2px #fff !important;
  text-stroke: 2px #fff !important;
  opacity: 0.2;
  pointer-events: none;
  user-select: none;
}
.xrk-about-outline .xrk-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 24px);
  position: relative;
  z-index: 1;
}
.xrk-about-outline__title {
  color: #fff;
  font-weight: 900;
  font-size: clamp(28px, 4.8vw, 56px);
  letter-spacing: 0.01em;
  margin: 0 0 18px;
  position: relative;
  padding-left: 16px;
}
.xrk-about-outline__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 100%;
  background: #8edc00;
  border-radius: 0;
}
.xrk-about-outline__lead {
  color: #e9f1ff;
  font-size: clamp(14px, 1.7vw, 18px);
  line-height: 1.9;
  margin: 18px 0 12px;
}
.xrk-about-outline__text {
  color: #e9f1ff;
  font-size: clamp(13.5px, 1.6vw, 17px);
  line-height: 2;
  margin: 0;
  opacity: 0.95;
}

/* --------------------------------------------------------------------------
   003. "Theme" セクション v2
   -------------------------------------------------------------------------- */
.xrk-theme-v2 {
  padding: clamp(48px, 6vw, 84px) 0 clamp(64px, 7vw, 104px);
  background: #000;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.theme-head--overlay {
  position: relative;
  margin-bottom: clamp(24px, 3.5vw, 36px);
  z-index: 1;
}
.thema-wrap {
  position: relative;
  width: 55vw;
  max-width: none;
  font-size: clamp(70px, 10vw, 140px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
  z-index: 2;
}
.thema-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: calc(1em + 6px);
  top: calc((1em - (1em + 6px)) / 2);
  background: #8edc00;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  z-index: 0;
}
.thema-text {
  position: relative;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  text-stroke: 2px #fff;
  opacity: 0.2;
  z-index: 1;
}
.theme-ribbon__label {
  position: absolute;
  right: clamp(12px, 2.2vw, 24px);
  top: 50%;
  transform: translateY(-50%);
  font-weight: 900;
  font-size: clamp(28px, 4.8vw, 56px);
  color: #fff;
  white-space: nowrap;
  z-index: 3;
}
.theme-kicker {
  position: absolute;
  left: calc((100vw - min(1080px, 100vw)) / 2 + clamp(16px, 3vw, 24px));
  top: calc(50% - 40px);
  font-size: clamp(64px, 12vw, 160px);
  font-weight: 900;
  color: #fff;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
  z-index: 4;
}
.theme-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
}
.theme-right {
  font-size: 24px;
  line-height: 2;
  text-align: center;
  max-width: min(920px, 86vw);
  margin: 0 auto;
  color: #e5e7eb;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
}
.theme-plus {
  display: block;
  text-align: center;
  font-weight: 700;
  color: #fff;
  margin: 16px 0;
  font-size: clamp(30px, 8vw, 70px);
}
.chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 16px;
  max-width: min(1100px, 94vw);
  margin: 0 auto;
}
.chip-pill {
  background: #fff;
  color: #0f172a;
  padding: 12px 20px;
  border-radius: 100px;
  font-weight: 800;
  font-size: clamp(18px, 2.5vw, 24px);
  text-align: center;
  border: 3px solid #8edc00;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
  white-space: normal;
  word-break: break-word;
}

@media (max-width: 768px) {
  .theme-right {
    font-size: 16px;
    line-height: 1.7;
  }
  .thema-wrap {
    width: 100% !important;
  }
  .thema-wrap::before {
    width: 100% !important;
    height: 1em;
    top: 0;
  }
  .theme-kicker {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    margin-top: 12px;
    text-align: center;
    font-size: 70px;
  }
}
@media (max-width: 640px) {
  .chip-grid {
    grid-template-columns: 1fr;
  }
  .chip-pill {
    font-size: 18px;
    padding: 12px 16px;
  }
}

/* --------------------------------------------------------------------------
   004. Highlights (カードギャラリー)
   -------------------------------------------------------------------------- */
.xrk-highlights {
  position: relative;
  padding-top: clamp(48px, 6vw, 88px);
}
.xrk-highlights > .xrk-container {
  position: relative;
  z-index: 1;
}
.xrk-highlights .xrk-highlights__lead {
  max-width: 62rem;
  text-align: center !important;
  margin: 12px auto 50px !important;
  font-size: 24px;
  line-height: 1.6;
}
.xrk-highlights .xrk-highlights-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.xrk-highlights .xrk-cardwrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.xrk-highlights .xrk-high-card {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--xrk-neon-lime, #ccff66);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.18);
}
.xrk-highlights .xrk-high-card__img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.6;
}
.xrk-highlights .xrk-high-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.xrk-highlights .xrk-high-card__title {
  position: absolute !important;
  left: 18px !important;
  top: 14px !important;
  right: 18px;
  text-align: left !important;
  z-index: 2;
  pointer-events: auto;
}
.xrk-highlights .xrk-high-card__content {
  position: absolute !important;
  inset: 0 !important;
  padding: 16px 18px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  align-items: flex-end !important;
  gap: 6px;
  z-index: 1;
  pointer-events: none;
}
.xrk-highlights .xrk-high-card__link {
  position: absolute;
  right: 18px;
  bottom: 64px;
  pointer-events: auto !important;
  color: #fff !important;
  font-weight: 800;
  letter-spacing: 0.03em;
  z-index: 3;
  text-decoration: underline;
  text-decoration-color: var(--xrk-neon-lime, #ccff66);
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  text-decoration-skip-ink: none;
}
.xrk-highlights .xrk-high-card__bar {
  position: absolute;
  right: 18px;
  bottom: 42px;
  height: 6px;
  width: clamp(120px, 16vw, 200px);
  background: var(--xrk-neon-lime, #ccff66);
  border-radius: 999px;
  display: block !important;
  z-index: 3;
}
.xrk-highlights .xrk-cardwrap .xrk-card-coming {
  position: absolute;
  right: 18px;
  bottom: 12px;
  z-index: 3;
  margin: 0 !important;
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: calc(11px * 1.5);
  letter-spacing: 0.08em;
  color: #fff;
  pointer-events: none;
}

@media (max-width: 980px) {
  .xrk-highlights .xrk-highlights-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   005. スケジュール
   -------------------------------------------------------------------------- */
.xrk-schedule {
  position: relative;
  padding: clamp(56px, 7vw, 96px) 0 clamp(64px, 8vw, 110px);
}
.xrk-schedule > .xrk-container {
  position: relative;
  z-index: 1;
}
.xrk-sched__lead {
  max-width: 62rem;
  text-align: center !important;
  margin: 12px auto 50px !important;
  font-size: 24px;
  line-height: 1.6;
}
.xrk-sched-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1120px;
  margin: 0 auto;
}
.xrk-sched-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(2, 6, 23, 0.9));
  border: 1px solid rgba(183, 255, 60, 0.28);
  border-radius: 22px;
  padding: clamp(22px, 3vw, 28px) clamp(18px, 2.4vw, 24px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  isolation: isolate;
}
.xrk-sched-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  pointer-events: none;
  padding: 1px;
  background: radial-gradient(
    70% 60% at 50% -10%,
    rgba(183, 255, 60, 0.18),
    rgba(183, 255, 60, 0)
  );
  -webkit-mask: linear-gradient(#000, #000) content-box,
    linear-gradient(#000, #000);
  mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  opacity: 0.55;
}
.xrk-sched-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: 0 0 0 2px var(--xrk-neon-lime, #ccff66);
}
.xrk-sched-card:hover::after {
  box-shadow: 0 0 0 2px var(--xrk-neon-lime, #ccff66),
    0 0 24px rgba(204, 255, 102, 0.25);
}
.xrk-sched__day {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #fff;
  font-size: clamp(24px, 3.4vw, 36px);
}
.xrk-sched__bar {
  height: 10px;
  width: clamp(140px, 40%, 220px);
  margin: 10px 0 12px;
  background: var(--xrk-neon-lime, #ccff66);
  border-radius: 999px;
}
.xrk-sched__date {
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
  font-size: clamp(18px, 2.6vw, 26px);
}
.xrk-sched__items {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
  margin-top: 10px;
  font-weight: 800;
  line-height: 1.9;
  color: #e5e7eb;
}

@media (max-width: 980px) {
  .xrk-sched-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   006. "Why" (なぜXR/メタバースなのか) セクション
   -------------------------------------------------------------------------- */
section#why.xrk-why.xrk-why--outline {
  position: relative !important;
  padding: clamp(72px, 8vw, 110px) 0 clamp(84px, 9vw, 120px) !important;
  overflow: hidden !important;
  container-type: inline-size !important;
  --outline-w: 60vw;
}
section#why.xrk-why.xrk-why--outline > .xrk-container {
  position: relative;
  z-index: 1;
}
section#why.xrk-why.xrk-why--outline > .xrk-outline.is-nowrap {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-wrap: nowrap;
}
section#why .xrk-why__lead {
  max-width: 62rem;
  text-align: center !important;
  margin: 12px auto 50px !important;
  font-size: 24px;
  line-height: 1.6;
}
section#why .xrk-why-grid--22 {
  display: grid !important;
  gap: clamp(18px, 2.6vw, 28px);
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  max-width: 1140px;
  margin: 0 auto;
}
section#why .xrk-why-card {
  background: #fff !important;
  color: #0b1220 !important;
  border-radius: 18px;
  position: relative;
  padding: clamp(22px, 2.8vw, 30px) clamp(20px, 2.4vw, 28px);
  box-shadow: 0 18px 44px rgba(183, 255, 60, 0.06),
    0 10px 28px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(0, 0, 0, 0.06);
}
section#why .xrk-why-card--glow::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 28px;
  pointer-events: none;
  background: radial-gradient(
    60% 70% at 50% 50%,
    rgba(255, 255, 255, 0.35),
    transparent 70%
  );
  filter: blur(8px);
  opacity: 0.65;
}
section#why .xrk-why-icon {
  display: block;
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  color: #111;
  opacity: 0.85;
}
section#why .xrk-why-title {
  margin: 0 0 8px;
  text-align: center;
  font-weight: 900;
  font-size: clamp(16px, 2.2vw, 20px);
  color: #111;
}
section#why .xrk-why-desc {
  margin: 0;
  text-align: center;
  color: #334155;
  line-height: 1.8;
  font-size: 14px;
}
/* アウトライン幅のプリセット（オプション） */
section#why.xrk-why.xrk-why--outline.w-70 {
  --outline-w: 70vw;
}
section#why.xrk-why.xrk-why--outline.w-62 {
  --outline-w: 62vw;
}
section#why.xrk-why.xrk-why--outline.w-55 {
  --outline-w: 55vw;
}

@media (max-width: 900px) {
  section#why.xrk-why.xrk-why--outline {
    --outline-w: 86vw;
  }
  section#why.xrk-why.xrk-why--outline > .xrk-outline {
    left: clamp(-10px, -1vw, -6px) !important;
    top: clamp(-14px, -1.2vw, -8px) !important;
    font-size: clamp(72px, 22cqw, 220px) !important;
  }
  section#why .xrk-why-grid--22 {
    grid-template-columns: 1fr !important;
  }
}

/* --------------------------------------------------------------------------
   007. お客様の声 (Testimonials)
   -------------------------------------------------------------------------- */
.xrk-testimonials {
  position: relative;
  width: 100%;
  padding: clamp(56px, 7vw, 92px) 0;
  isolation: isolate;
  --stroke-w: 2px;
  --stroke-c: #fff;
  --voice-fz: clamp(15px, 1.9vw, 18px);
  --neon-lime: var(--xrk-neon-lime, #ccff66);
}
.xrk-testimonials > .xrk-container {
  position: relative;
  z-index: 1;
}
.xrk-voices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  margin: 0;
  padding: 0;
  justify-items: center;
}
.voice {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
  background: #fff;
  color: #0f172a;
  border-radius: 22px;
  padding: clamp(20px, 2.4vw, 28px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  min-height: clamp(140px, 18vw, 220px);
  font-size: var(--voice-fz);
  line-height: 1.7;
  letter-spacing: 0.02em;
}

@media (max-width: 1280px) {
  .xrk-voices {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 1024px) {
  .xrk-voices {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .xrk-voices {
    gap: 12px;
  }
  .voice {
    padding: 14px 16px;
    min-height: auto;
    gap: 6px;
    line-height: 1.55;
    border-radius: 18px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  .voice__quote {
    font-size: clamp(14px, 4vw, 16px);
    margin: 0;
  }
  .voice__role {
    font-size: clamp(11px, 3.4vw, 12px);
    letter-spacing: 0.08em;
  }
}
@media (max-width: 380px) {
  .voice {
    padding: 12px 14px;
    gap: 4px;
    line-height: 1.5;
  }
}

/* --------------------------------------------------------------------------
   008. ビデオ
   -------------------------------------------------------------------------- */
.xrk-video {
  background: #000;
  padding: clamp(56px, 8vw, 72px) 0 clamp(72px, 9vw, 96px);
  text-align: center;
}
.xrk-ytbox {
  max-width: 960px;
  margin: 0 auto;
  border-radius: 18px;
  padding: 2px;
  background: linear-gradient(
      135deg,
      rgba(79, 70, 229, 0.8),
      rgba(162, 28, 175, 0.7),
      rgba(56, 189, 248, 0.65)
    )
    border-box;
  border: 1px solid transparent;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}
.xrk-ytbox__inner {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.95), rgba(2, 6, 23, 0.92));
}
.xrk-ytbox__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.15;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.06) 0 1px,
    transparent 1px 4px
  );
}
.xrk-ytbox__inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --------------------------------------------------------------------------
   009. チケット
   -------------------------------------------------------------------------- */
.xrk-tickets.xrk-tickets--outline {
  position: relative;
  padding: clamp(64px, 7vw, 96px) 0 clamp(72px, 8vw, 110px);
  isolation: isolate;
  --outline-div: 7.4;
  --stroke-w: 2px;
  --stroke-c: #fff;
  --neon-lime: var(--xrk-neon-lime, #ccff66);
}
.xrk-tickets > .xrk-container {
  position: relative;
  z-index: 1;
}
.ticket-grid {
  --gap: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
  max-width: 1120px;
  margin: 0 auto clamp(18px, 3vw, 26px);
}
.ticket-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: rgba(13, 19, 33, 0.4);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  padding: clamp(20px, 3vw, 26px) clamp(18px, 2.6vw, 22px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  --bar: #8edc00; /* デフォルト */
}
.ticket-card.is-early {
  --bar: #facc15;
} /* 黄 */
.ticket-card.is-vip {
  --bar: #22d3ee;
} /* シアン   */
.ticket-card.is-student {
  --bar: #ef4444;
} /* 赤    */
.ticket-title {
  margin: 0 0 10px;
  text-align: center;
  font-weight: 900;
  font-size: clamp(22px, 2.6vw, 28px);
  color: #fff;
}
.ticket-titlebar {
  display: block;
  height: 10px;
  width: clamp(140px, 40%, 220px);
  margin: 8px auto 10px;
  border-radius: 999px;
  -webkit-backdrop-filter: blur(4px) saturate(120%);
  backdrop-filter: blur(4px) saturate(120%);
  background: linear-gradient(
    90deg,
    var(--bar),
    color-mix(in hsl, var(--bar) 70%, #ffffff 30%)
  );
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15) inset,
    0 0 24px color-mix(in srgb, var(--bar) 60%, transparent);
}
.ticket-features {
  list-style: none;
  padding: 0;
  margin: 6px 0 14px;
  color: #e5e7eb;
  font-weight: 800;
  text-align: center;
  line-height: 1.9;
}
.ticket-amount {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: clamp(68px, 8vw, 92px);
}
.ticket-price {
  text-align: center;
  font-family: "Outfit", "Inter", "Zen Kaku Gothic New", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 5.2vw, 56px);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--bar);
  text-shadow: 0 12px 30px color-mix(in srgb, var(--bar) 24%, transparent);
  margin: 0;
}
.ticket-note {
  margin: 8px 0 0;
  text-align: center;
  color: #cbd5e1;
  font-size: 12px;
}
.ticket-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(18px, 3vw, 28px);
}
.btn--ticket {
  --btn-h: 52px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--btn-h);
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  color: #fff !important;
  text-decoration: none;
  line-height: 1;
  background: linear-gradient(135deg, #ccff66 0%, #00a3ff 100%);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
.btn--ticket::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border-right: 1px solid rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  pointer-events: none;
}
@media (hover: hover) {
  .btn--ticket:hover {
    transform: translateY(-1px);
    filter: brightness(1.08);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45),
      0 0 0 1px rgba(255, 255, 255, 0.18) inset;
  }
}
.ticket-footnote {
  text-align: center;
  color: #9fb0c8;
  margin: 12px auto 0;
  font-size: 12px;
}

@media (max-width: 980px) {
  .ticket-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   010. 開催概要
   -------------------------------------------------------------------------- */
:root {
  --xrk-outline-card-bg1: rgba(17, 24, 39, 0.92);
  --xrk-outline-card-bg2: rgba(15, 23, 42, 0.92);
  --xrk-outline-border: rgba(148, 163, 184, 0.22);
  --xrk-outline-sep: rgba(148, 163, 184, 0.16);
  --xrk-outline-text: #e5e7eb;
  --xrk-outline-muted: #94a3b8;
  --xrk-outline-link: #a5b4fc;
  --xrk-outline-deadline: #facc15;
  --xrk-outline-stroke-w: 2px;
  --xrk-outline-stroke-c: #fff;
}
.xrk-outline {
  position: relative;
  padding: clamp(48px, 7vw, 64px) 0 clamp(72px, 8vw, 96px);
}
.xrk-outline .xrk-container {
  max-width: 1120px;
  position: relative;
  z-index: 1;
}
.xrk-outline.xrk-outline--overview {
  padding: clamp(64px, 7vw, 96px) 0 clamp(84px, 8vw, 120px);
  isolation: isolate;
}
.xrk-outline-card {
  background: linear-gradient(
    180deg,
    var(--xrk-outline-card-bg1),
    var(--xrk-outline-card-bg2)
  );
  border: 1px solid var(--xrk-outline-border);
  border-radius: 18px;
  padding: 20px 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}
.xrk-outline.xrk-outline--overview .xrk-outline-card {
  background: transparent;
  border: 0;
  padding: 8px 0;
  box-shadow: none;
}
.xrk-outline.xrk-outline--overview .xrk-outline-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(18px, 2.6vw, 32px);
  align-items: start;
}
.xrk-outline-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px 28px;
  padding: 14px 10px;
  border-top: 1px solid var(--xrk-outline-sep);
}
.xrk-outline-row:first-child {
  border-top: none;
}
.xrk-outline-dt {
  color: var(--xrk-outline-muted);
  font-size: 13px;
  letter-spacing: 0.14em;
  font-weight: 800;
  line-height: 1.4;
  white-space: nowrap;
}
.xrk-outline-dd {
  color: var(--xrk-outline-text);
  line-height: 1.9;
  font-size: 16px;
}
.xrk-outline-dd strong {
  font-weight: 900;
  color: #fff;
}
.xrk-outline-dd small {
  color: var(--xrk-outline-muted);
}
.xrk-outline-dd a {
  color: var(--xrk-outline-link);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.xrk-outline-dd .xrk-deadline {
  color: var(--xrk-outline-deadline);
  font-weight: 800;
}
.xrk-outline-dd ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.xrk-outline-dd ul li {
  margin: 2px 0;
}
.xrk-outline-note {
  color: var(--xrk-outline-muted);
  font-size: 12px;
  margin-top: 8px;
}
.xrk-outline.xrk-outline--overview .xrk-outline-col.col--left .xrk-outline-row {
  grid-template-columns: 200px 1fr;
  gap: 12px 20px;
  padding: 10px 0;
}
.xrk-outline.xrk-outline--overview .xrk-outline-dt {
  background: #2563eb;
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.06em;
  border-radius: 12px;
  padding: 10px 16px;
  line-height: 1;
  white-space: nowrap;
  align-self: center;
}
.xrk-outline.xrk-outline--overview .xrk-outline-dd {
  background: #fff;
  color: #0b1220;
  border-radius: 14px;
  padding: 12px 16px;
  line-height: 1.9;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 2px 0 0 rgba(11, 18, 32, 0.95);
}
.xrk-outline.xrk-outline--overview .xrk-outline-dd a {
  color: #1d4ed8;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.xrk-outline.xrk-outline--overview .xrk-outline-section + .xrk-outline-section {
  margin-top: clamp(16px, 2vw, 24px);
}
.xrk-outline.xrk-outline--overview .xrk-outline-sec-title {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.06em;
  border-radius: 12px;
  padding: 10px 16px;
  margin-bottom: 10px;
  font-size: 14px;
}
.xrk-outline.xrk-outline--overview .xrk-outline-sec-body {
  background: #fff;
  color: #0b1220;
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 800;
  line-height: 1.9;
  box-shadow: 0 2px 0 0 rgba(11, 18, 32, 0.95);
}
.xrk-outline.xrk-outline--overview .xrk-outline-list {
  list-style: none;
  margin: 0 0 6px;
  padding: 0;
}
.xrk-outline.xrk-outline--overview .xrk-outline-list li {
  background: #fff;
  border-radius: 10px;
  padding: 8px 10px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.06);
}
.xrk-outline.xrk-outline--overview .xrk-outline-list li + li {
  margin-top: 8px;
}

@media (max-width: 960px) {
  .xrk-outline.xrk-outline--overview .xrk-outline-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .xrk-outline.xrk-outline--overview .xrk-outline-col.col--left .xrk-outline-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .xrk-outline-row {
    grid-template-columns: 1fr;
    padding: 12px 4px;
  }
}

/* --------------------------------------------------------------------------
   011. アクセス
   -------------------------------------------------------------------------- */
:root {
  --xrk-access-bg1: rgba(15, 23, 42, 0.92);
  --xrk-access-bg2: rgba(17, 24, 39, 0.92);
  --xrk-access-border: rgba(148, 163, 184, 0.22);
  --xrk-access-text: #e5e7eb;
  --xrk-access-muted: #94a3b8;
  --xrk-access-bullet: #67e8f9;
}
.xrk-access {
  position: relative;
  padding: clamp(56px, 8vw, 72px) 0 clamp(72px, 9vw, 96px);
  isolation: isolate;
}
.xrk-access .xrk-container {
  max-width: 1200px;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.xrk-access__grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}
.xrk-map {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
  background: #0b1220;
  border: 1px solid var(--xrk-access-border);
  aspect-ratio: 16/9;
}
.xrk-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(1.05) contrast(1.02);
}
.xrk-access__panel {
  background: linear-gradient(
    180deg,
    var(--xrk-access-bg1),
    var(--xrk-access-bg2)
  );
  border: 1px solid var(--xrk-access-border);
  border-radius: 16px;
  padding: 24px 22px;
  color: var(--xrk-access-text);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.xrk-access__head {
  margin: 0 0 10px;
  font-weight: 900;
  font-size: clamp(16px, 2vw, 20px);
  letter-spacing: 0.02em;
}
.xrk-access__venue {
  margin: 0 0 6px;
  font-weight: 900;
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.5;
}
.xrk-access__addr {
  margin: 0 0 12px;
  color: var(--xrk-access-muted);
  font-size: clamp(13px, 1.6vw, 14px);
  line-height: 1.7;
}
.xrk-access__rule {
  margin: 12px 0;
  border: 0;
  height: 1px;
  background: rgba(148, 163, 184, 0.25);
}
.xrk-access__sub {
  margin: 0 0 4px;
  color: var(--xrk-access-text);
  font-weight: 800;
  font-size: clamp(13px, 1.6vw, 14px);
  line-height: 1.7;
}
.xrk-access__panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.xrk-access__panel li {
  position: relative;
  padding-left: 1.1rem;
  margin: 0.35rem 0;
  font-size: clamp(13px, 1.6vw, 14px);
}
.xrk-access__panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 9999px;
  background: var(--xrk-access-bullet);
  box-shadow: 0 0 0 2px rgba(103, 232, 249, 0.18);
}

@media (min-width: 1024px) {
  .xrk-access__grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
  .xrk-map {
    height: 420px;
    aspect-ratio: auto;
  }
}

/* --------------------------------------------------------------------------
   012. スポンサー
   -------------------------------------------------------------------------- */
:root {
  --xrk-sponsor-border: rgba(0, 0, 0, 0.8);
  --xrk-sponsor-radius: 28px;
  --xrk-sponsor-bg: #fff;
  --xrk-section-pad-y: clamp(56px, 6vw, 92px);
  --xrk-grid-gap-lg: 20px;
  --xrk-title-jp-fs: clamp(22px, 4.6vw, 40px);
  --xrk-title-en-fs: clamp(64px, 10vw, 164px);
  --xrk-logo-max-w: 78%;
  --xrk-logo-max-h: 62%;
  --xrk-tier-gutter: clamp(12px, 4vw, 44px);
  --xrk-tier-baseline-shift: -6%;
  --xrk-outline-clear: 0px;
}
#sponsors.xrk-sponsors {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: var(--xrk-section-pad-y) 0 !important;
  background: #f3f3f3 !important;
  color: #111 !important;
  text-align: left !important;
}
#sponsors.xrk-sponsors > .xrk-container {
  position: relative;
  z-index: 1;
  background: transparent !important;
  margin-top: var(--xrk-outline-clear) !important;
}
#sponsors.xrk-sponsors * {
  background-color: transparent !important;
  background-image: none !important;
  background-blend-mode: normal !important;
}
#sponsors.xrk-sponsors::before {
  content: none !important;
}
#sponsors .xrk-outline {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  color: transparent;
  -webkit-text-stroke: 2px rgba(0, 0, 0, 0.08);
  text-stroke: 2px rgba(0, 0, 0, 0.08);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}
#sponsors.xrk-sponsors .xrk-h2,
#sponsors.xrk-sponsors .xrk-sponsors__title {
  display: inline-flex !important;
  align-items: center !important;
  padding: 10px 18px !important;
  margin: 0 0 clamp(22px, 3vw, 28px) !important;
  background: #111 !important;
  color: #fff !important;
  font-weight: 900 !important;
  font-size: var(--xrk-title-jp-fs) !important;
  line-height: 1.1 !important;
  letter-spacing: 0.02em !important;
  border-radius: 0 !important;
  white-space: nowrap;
}
#sponsors .xrk-sponsors__display {
  text-align: left !important;
  font-weight: 900 !important;
  font-size: clamp(56px, 12vw, 160px) !important;
  line-height: 0.9 !important;
  margin: 0 0 clamp(14px, 3vw, 22px) !important;
  max-width: 92vw;
  overflow-wrap: anywhere;
}
#sponsors .xrk-tier {
  --tier-gutter: var(--xrk-tier-gutter);
  --tier-baseline-shift: var(--xrk-tier-baseline-shift);
  position: relative;
  z-index: 1;
  margin-top: clamp(30px, 4.2vw, 48px);
  display: grid;
  grid-template-columns: 1fr;
  justify-items: start;
  align-items: end;
  overflow: hidden;
}
#sponsors .xrk-tier__jp,
#sponsors .xrk-sponsor-tier,
#sponsors .xrk-tier__label {
  grid-area: 1/1;
  align-self: end;
  justify-self: start;
  transform: translateY(var(--tier-baseline-shift));
  margin-left: var(--tier-gutter);
  display: inline-flex !important;
  width: auto !important;
  max-width: min(100%, 92vw);
  gap: 0.4em;
  background: #111 !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 4px !important;
  font-weight: 900 !important;
  font-size: clamp(16px, 3.2vw, 28px) !important;
  line-height: 1 !important;
  padding: 0.35em 0.6em !important;
  white-space: nowrap;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
#sponsors .xrk-tier__en {
  grid-area: 1/1;
  align-self: center;
  pointer-events: none;
  margin-left: var(--tier-gutter);
  font-weight: 900;
  font-size: var(--xrk-title-en-fs);
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 2px rgba(0, 0, 0, 0.1);
  text-stroke: 2px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
#sponsors .xrk-tier .xrk-sponsor-grid {
  margin-top: clamp(16px, 3.4vw, 24px) !important;
}
#sponsors .xrk-tier.is-platinum {
  --tier-gutter: clamp(10px, 3.8vw, 40px);
}
#sponsors .xrk-tier.is-gold {
  --tier-gutter: clamp(12px, 4.2vw, 44px);
}
#sponsors .xrk-tier.is-silver {
  --tier-gutter: clamp(12px, 4vw, 44px);
}
#sponsors .xrk-sponsor-grid {
  display: grid !important;
  gap: var(--xrk-grid-gap-lg) !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  align-items: center !important;
  justify-items: start !important;
  margin-bottom: clamp(18px, 2.4vw, 26px) !important;
}
#sponsors .xrk-sponsor-box {
  display: grid !important;
  place-items: center !important;
  line-height: 0 !important;
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  background: #fff !important;
  border: 2px solid var(--xrk-sponsor-border) !important;
  border-radius: var(--xrk-sponsor-radius) !important;
  box-shadow: none !important;
  overflow: hidden !important;
  position: relative !important;
}
#sponsors .xrk-sponsor-box::before {
  content: none !important;
}
#sponsors .xrk-sponsor-box .xrk-sponsor__link {
  display: grid !important;
  place-items: center !important;
  width: 100% !important;
  height: 100% !important;
  text-align: center !important;
}
#sponsors .xrk-sponsor-box [class*="tag"],
#sponsors .xrk-sponsor-box [class*="badge"],
#sponsors .xrk-sponsor-box [class*="label"] {
  display: none !important;
}
#sponsors .xrk-sponsor-box img.xrk-sponsor__img,
#sponsors .xrk-sponsor-grid .xrk-sponsor-logo {
  display: block !important;
  margin: 0 auto !important;
  width: auto !important;
  height: auto !important;
  max-width: var(--xrk-logo-max-w) !important;
  max-height: var(--xrk-logo-max-h) !important;
  object-fit: contain !important;
  object-position: center center !important;
  vertical-align: middle !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  border-radius: 0 !important;
  padding: 0 !important;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
#sponsors .xrk-sponsor-box img.fr-fic,
#sponsors .xrk-sponsor-box img.fr-dii,
#sponsors .xrk-sponsor-box img.fr-dib {
  display: block !important;
  float: none !important;
}
#sponsors .xrk-sponsor-box.fit-90 img.xrk-sponsor__img {
  max-width: 98% !important;
  max-height: 98% !important;
}

@media (min-width: 981px) {
  #sponsors .xrk-outline {
    font-size: 120px;
  }
  #sponsors.xrk-sponsors {
    --xrk-outline-clear: 120px;
  }
}
@media (min-width: 661px) and (max-width: 980px) {
  #sponsors .xrk-outline {
    font-size: clamp(72px, 12vw, 120px);
  }
  #sponsors.xrk-sponsors {
    --xrk-outline-clear: clamp(80px, 12vw, 110px);
  }
}
@media (max-width: 660px) {
  #sponsors .xrk-outline {
    font-size: 70pt;
  }
  #sponsors.xrk-sponsors {
    --xrk-outline-clear: 88px;
  }
  #sponsors .xrk-tier {
    --tier-gutter: 0px !important;
  }
  #sponsors .xrk-tier__en,
  #sponsors .xrk-tier__jp,
  #sponsors .xrk-sponsor-tier,
  #sponsors .xrk-tier__label {
    margin-left: 0 !important;
    justify-self: start !important;
  }
}
@media (max-width: 1280px) {
  #sponsors .xrk-sponsor-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 980px) {
  #sponsors .xrk-sponsor-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 660px) {
  #sponsors .xrk-sponsor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* ==========================================================================
   6. フレームワーク & グローバル上書き
   ========================================================================== */

/* --------------------------------------------------------------------------
   Vuetify グローバルパッチ
   -------------------------------------------------------------------------- */
.v-application--wrap:has(
    .xrk-hero--poster,
    .xrk-about-outline,
    .xrk-theme-v2,
    .xrk-highlights,
    .xrk-schedule,
    section.xrk-why,
    .xrk-testimonials,
    .xrk-video,
    .xrk-tickets,
    .xrk-outline,
    .xrk-access,
    #sponsors.xrk-sponsors
  ) {
  background-color: #000 !important;
}

.v-application--wrap:has(
    .xrk-hero--poster,
    .xrk-why,
    .xrk-tickets,
    .xrk-access,
    .xrk-highlights,
    .xrk-schedule
  )
  :is(
    .xrk-h2,
    .xrk-highlights__lead.xrk-highlights__lead--right,
    .xrk-high-card__content,
    .xrk-high-card__link,
    .xrk-sched__lead,
    .xrk-why__lead,
    .xrk-ytbox__cap
  ) {
  color: #fff;
}

/* --------------------------------------------------------------------------
   横スクロールの防止
   -------------------------------------------------------------------------- */
html,
body {
  overflow-x: hidden !important;
}

@media (max-width: 767px) {
  .xrk-schedule > .xrk-outline,
  .xrk-testimonials .xrk-outline,
  .xrk-access > .xrk-outline-bg,
  #sponsors .xrk-outline {
    width: 100% !important;
    max-width: 100% !important;
    left: 0 !important;
  }
}

/* --------------------------------------------------------------------------
   XRK Booth & イベント詳細ページ - ハードオーバーライド
   Scope: html[data-module="booth"]
   -------------------------------------------------------------------------- */
@layer xrk-booth {
  /* [0] ルート & トークン */
  html[data-module="booth"] body .v-application section.detail__wrap.event__layout {
    --xrk-bg: #fff;
    --xrk-text: #111;
    --xrk-lime: #ccff66;
    --xrk-blue: #60a5fa;
    --xrk-border: rgba(2, 6, 23, 0.12);
    --xrk-r: 16px;
    --xrk-gutter: clamp(14px, 4vw, 28px);
    --xrk-maxw: 1040px;
    --xrk-gap: clamp(28px, 6vw, 72px);
    --xrk-grad: linear-gradient(90deg, var(--xrk-lime), var(--xrk-blue));
    --xrk-uw: 180px; /* 下線の幅 */
    --xrk-uh: 4px; /* 下線の高さ */
    background: var(--xrk-bg) !important;
    color: var(--xrk-text) !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
    text-align: center !important;
    overflow-x: hidden !important;
    padding-left: var(--xrk-gutter) !important;
    padding-right: var(--xrk-gutter) !important;
  }

  /* [1] コンテナ幅 & レイアウト */
  html[data-module="booth"]
    body
    .v-application
    section.detail__wrap.event__layout
    :is(
      .detail-title__wrap.detail__title,
      .contents__wrap.detail__contents,
      .container,
      .v-container
    ) {
    max-width: min(96vw, var(--xrk-maxw)) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  html[data-module="booth"]
    body
    .v-application
    section.detail__wrap.event__layout
    .contents__wrap.detail__contents {
    text-align: center !important;
  }
  html[data-module="booth"]
    body
    .v-application
    section.detail__wrap.event__layout
    .contents__wrap.detail__contents
    > *
    + * {
    margin-top: var(--xrk-gap) !important;
  }
  html[data-module="booth"]
    body
    .v-application
    section.detail__wrap.event__layout
    :is(.layout, .row) {
    justify-content: center !important;
    gap: clamp(12px, 2.5vw, 20px) !important;
  }

  /* [2] カード & シート */
  html[data-module="booth"]
    body
    .v-application
    section.detail__wrap.event__layout
    :is(.v-sheet, .v-card) {
    background: #fff !important;
    color: var(--xrk-text) !important;
    border: 1px solid var(--xrk-border) !important;
    border-radius: var(--xrk-r) !important;
  }

  /* [3] タイポグラフィの基本設定 */
  html[data-module="booth"]
    body
    .v-application
    section.detail__wrap.event__layout
    :is(
      p,
      .fr-view,
      .fr-view *,
      ul,
      ol,
      li,
      .v-card__text,
      .v-card__title
    ) {
    color: var(--xrk-text) !important;
    text-align: center !important;
  }

  /* [4] 見出し (h1, h2, h3) */
  html[data-module="booth"]
    body
    .v-application
    section.detail__wrap.event__layout
    .title,
  html[data-module="booth"] body .v-application section.detail__wrap.event__layout h1 {
    font-size: 24px !important;
    color: var(--xrk-text) !important;
  }
  html[data-module="booth"]
    body
    .v-application
    section.detail__wrap.event__layout
    .title
    h1.title__content {
    margin: 0 0 16px !important;
    padding: 0 0 12px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    display: inline-block !important;
    position: relative !important;
    color: var(--xrk-text) !important;
    background: transparent !important;
  }
  html[data-module="booth"]
    body
    .v-application
    section.detail__wrap.event__layout
    .title
    h1.title__content::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: var(--xrk-uw);
    height: var(--xrk-uh);
    background: var(--xrk-grad);
    border-radius: 4px;
  }
  html[data-module="booth"]
    body
    .v-application
    section.detail__wrap.event__layout
    section[data-v-56439900]
    section[data-v-28d22660][data-v-56439900]
    .title {
    text-align: center !important;
  }
  html[data-module="booth"] body .v-application section.detail__wrap.event__layout h2,
  html[data-module="booth"]
    body
    .v-application
    section.detail__wrap.event__layout
    h2.title,
  html[data-module="booth"]
    body
    .v-application
    section.detail__wrap.event__layout
    .detail-title__text
    h2 {
    font-size: 24px !important;
    color: var(--xrk-text) !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    margin: 0 0 16px !important;
    padding: 0 0 12px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    display: inline-block !important;
    position: relative !important;
  }
  html[data-module="booth"]
    body
    .v-application
    section.detail__wrap.event__layout
    h2.title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: var(--xrk-uw);
    height: var(--xrk-uh);
    background: var(--xrk-grad);
    border-radius: 4px;
  }
  html[data-module="booth"]
    body
    .v-application
    section.detail__wrap.event__layout
    .detail-title__text
    h2::after {
    content: none !important;
  }
  html[data-module="booth"] body .v-application section.detail__wrap.event__layout h3 {
    font-size: 20px !important;
    color: var(--xrk-text) !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
  }
  html[data-module="booth"]
    body
    .v-application
    section.detail__wrap.event__layout
    .media-download__title__wrap {
    color: var(--xrk-text) !important;
    background: transparent !important;
    display: block !important;
    text-align: center !important;
    margin: 0 0 16px !important;
    padding: 0 0 12px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    font-size: 24px !important;
    position: relative !important;
  }
  html[data-module="booth"]
    body
    .v-application
    section.detail__wrap.event__layout
    .media-download__title__wrap
    .media-download__title__border {
    width: var(--xrk-uw) !important;
    height: var(--xrk-uh) !important;
    margin: 8px auto 0 !important;
    background: var(--xrk-grad) !important;
    border-radius: 4px !important;
  }
  html[data-module="booth"]
    body
    .v-application
    section.detail__wrap.event__layout
    .detail-title__wrap.detail__title
    > .detail-title__border.base-background-color {
    background: var(--xrk-grad) !important;
    background-color: transparent !important;
    display: block !important;
    width: var(--xrk-uw) !important;
    height: var(--xrk-uh) !important;
    margin: 8px auto 0 !important;
    border-radius: 4px !important;
    position: relative !important;
  }

  /* [5] テキストリンク */
  html[data-module="booth"]
    body
    .v-application
    section.detail__wrap.event__layout
    section[data-v-56439900]
    section[data-v-28d22660][data-v-56439900]
    > div[data-v-4684b56c] {
    text-align: center !important;
  }
  html[data-module="booth"]
    body
    .v-application
    section.detail__wrap.event__layout
    section[data-v-56439900]
    section[data-v-28d22660][data-v-56439900]
    > div[data-v-4684b56c]
    > a {
    display: inline-block !important;
    text-align: center !important;
    color: var(--xrk-text) !important;
  }

  /* [6] カテゴリタブ */
  html[data-module="booth"]
    body
    .v-application
    section.detail__wrap.event__layout
    .row.booth-category__row {
    background: var(--xrk-grad) 50% 100% / 100% 2px no-repeat !important;
    padding-bottom: 10px !important;
    justify-content: center !important;
  }
  html[data-module="booth"]
    body
    .v-application
    section.detail__wrap.event__layout
    .booth-category__chip {
    border: 1.5px solid var(--xrk-lime) !important;
    border-radius: 999px !important;
    background: #fff !important;
    padding: 6px 12px !important;
  }

  /* [7] 登壇者情報 */
  html[data-module="booth"]
    body
    .v-application
    section.detail__wrap.event__layout
    [data-v-48b7ee78]
    .relational-booth__title {
    text-align: center !important;
    color: var(--xrk-text) !important;
  }
  html[data-module="booth"]
    body
    .v-application
    section.detail__wrap.event__layout
    [data-v-48b7ee78]
    .relational-booth__title
    > span {
    display: inline-block !important;
    color: var(--xrk-text) !important;
  }
  html[data-module="booth"]
    body
    .v-application
    section.detail__wrap.event__layout
    [data-v-48b7ee78]
    .relational-booth__title__border {
    display: block !important;
    margin: 8px auto 0 !important;
    background: var(--xrk-grad) !important;
    width: var(--xrk-uw) !important;
    height: var(--xrk-uh) !important;
    border-radius: 4px !important;
  }
  html[data-module="booth"]
    body
    .v-application
    section.detail__wrap.event__layout
    [data-v-48b7ee78]
    .booth-card__wrap
    .row {
    justify-content: center !important;
    gap: clamp(12px, 2.5vw, 20px) !important;
  }
  html[data-module="booth"]
    body
    .v-application
    section.detail__wrap.event__layout
    [data-v-48b7ee78]
    .booth-card__content {
    text-align: center !important;
    color: var(--xrk-text) !important;
  }
  html[data-module="booth"]
    body
    .v-application
    section.detail__wrap.event__layout
    [data-v-48b7ee78]
    .booth-card__content
    .v-card {
    margin: 0 auto !important;
  }
  html[data-module="booth"]
    body
    .v-application
    section.detail__wrap.event__layout
    [data-v-48b7ee78]
    .booth-card__wrap
    .row
    > .booth-card__content.col {
    flex: 0 1 340px !important;
    max-width: 360px !important;
  }

  /* [8] 画像 */
  html[data-module="booth"]
    body
    .v-application
    section.detail__wrap.event__layout
    section[data-v-485cc2a6][data-v-28d22660] {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
  }
  html[data-module="booth"]
    body
    .v-application
    section.detail__wrap.event__layout
    section[data-v-485cc2a6][data-v-28d22660]
    img {
    display: block !important;
    height: auto !important;
    max-width: min(92vw, 860px) !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
  }

  /* [9] ボタン */
  html[data-module="booth"]
    body
    .v-application
    section.detail__wrap.event__layout
    .media-download__download-button {
    color: #fff !important;
    background-image: linear-gradient(
      135deg,
      var(--xrk-lime) 0%,
      var(--xrk-blue) 100%
    ) !important;
    border: none !important;
    border-radius: 999px !important;
    padding: 12px 22px !important;
    font-weight: 800 !important;
    letter-spacing: 0.04em !important;
    text-transform: none !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18) !important;
  }
  html[data-module="booth"]
    body
    .v-application
    section.detail__wrap.event__layout
    .media-download__download-button
    .download-icon {
    width: 1.1em !important;
    height: 1.1em !important;
    margin-right: 0.5em !important;
    filter: brightness(0) saturate(100%) invert(1) !important;
    opacity: 0.95 !important;
  }

  /* [10] セクション間のスペース */
  html[data-module="booth"]
    body
    .v-application
    section.detail__wrap.event__layout
    section {
    padding-bottom: 16px !important;
  }
  html[data-module="booth"]
    body
    .v-application
    section.detail__wrap.event__layout
    section:empty {
    padding-bottom: 0 !important;
  }
  @supports selector(:has(*)) {
    html[data-module="booth"]
      body
      .v-application
      section.detail__wrap.event__layout
      section:not(:has(*)) {
      padding-bottom: 0 !important;
    }
  }

  /* [11] モバイル調整 */
  @media (max-width: 768px) {
    html[data-module="booth"] body .v-application section.detail__wrap.event__layout {
      --xrk-maxw: 100%;
      --xrk-uw: 140px;
      padding-left: clamp(12px, 4vw, 18px) !important;
      padding-right: clamp(12px, 4vw, 18px) !important;
    }
    html[data-module="booth"]
      body
      .v-application
      section.detail__wrap.event__layout
      [data-v-48b7ee78]
      .booth-card__wrap
      .row
      > .booth-card__content.col {
      flex: 0 1 100% !important;
      max-width: 560px !important;
    }
  }

  /* --------------------------------------------------------------------------
     特定セクションの左寄せ
     -------------------------------------------------------------------------- */
  html[data-module="booth"]
    body
    .v-application
    section.detail__wrap.event__layout
    [data-v-57c56260].description__wrap,
  html[data-module="booth"]
    body
    .v-application
    section.detail__wrap.event__layout
    [data-v-57c56260].description__wrap
    :is(
      p,
      .fr-view,
      .fr-view *,
      ul,
      ol,
      li,
      .v-card__text,
      .v-card__title
    ) {
    text-align: left !important;
    color: var(--xrk-text) !important;
  }

  html[data-module="booth"]
    body
    .v-application
    section.detail__wrap.event__layout
    section[data-v-fd4a6994].media-download__wrap,
  html[data-module="booth"]
    body
    .v-application
    section.detail__wrap.event__layout
    section[data-v-fd4a6994].media-download__wrap
    :is(
      p,
      .fr-view,
      .fr-view *,
      ul,
      ol,
      li,
      .v-card__text,
      .v-card__title,
      .media-download-title,
      .media-download-title__text,
      .media-download__file,
      .media-download__file *,
      .media-download-description__text
    ) {
    text-align: left !important;
    color: var(--xrk-text) !important;
  }
} /* @layer xrk-booth 終了 */

/* --------------------------------------------------------------------------
   XRK ナビゲーション - ハードオーバーライド
   -------------------------------------------------------------------------- */
:root {
  --xrk-logo-url: url("https://xrkaigi.eventos.tokyo/file/wysiwyg/892/file-4430cb56-1b99-4fc0-91ab-a5d1a4643788.png");
  --xrk-logo-w: 148px;
  --xrk-logo-h: 28px;
}
.xrk-nav__brand .xrk-logo {
  display: inline-block;
  width: var(--xrk-logo-w);
  height: var(--xrk-logo-h);
  background-image: var(--xrk-logo-url);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  image-rendering: -webkit-optimize-contrast;
}
.xrk-nav__brand img {
  height: var(--xrk-logo-h);
  width: auto;
  display: block;
}

#xrk-header-root[data-xrk-nav="1"] {
  color: #fff !important;
  caret-color: #fff !important;
}
#xrk-header-root[data-xrk-nav="1"] a,
#xrk-header-root[data-xrk-nav="1"] .xrk-logo,
#xrk-header-root[data-xrk-nav="1"] .xrk-nav,
#xrk-header-root[data-xrk-nav="1"] .xrk-menu a,
#xrk-header-root[data-xrk-nav="1"] .xrk-cta,
#xrk-header-root[data-xrk-nav="1"] .xrk-cta * {
  color: #fff !important;
  caret-color: #fff !important;
}
#xrk-header-root[data-xrk-nav="1"] a:link,
#xrk-header-root[data-xrk-nav="1"] a:visited,
#xrk-header-root[data-xrk-nav="1"] a:hover,
#xrk-header-root[data-xrk-nav="1"] a:active {
  color: #fff !important;
}
#xrk-header-root[data-xrk-nav="1"] .orange--text {
  color: inherit !important;
  caret-color: inherit !important;
}