/* =========================================================
   BEYOND STADIUM 2026
   固定ページ専用CSS
========================================================= */

/* =========================================================
   基本設定
========================================================= */

#event.beyond-stadium-2026 {
  --stadium-blue: #0068b7;
  --stadium-blue-dark: #004c8c;
  --stadium-blue-light: #eaf6ff;

  --stadium-red: #e83828;
  --stadium-red-dark: #bd281d;
  --stadium-red-light: #fff0ed;

  --stadium-yellow: #ffe600;

  --stadium-black: #222222;
  --stadium-gray: #666666;
  --stadium-gray-light: #f4f4f4;
  --stadium-border: #d7d7d7;
  --stadium-white: #ffffff;

  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;

  color: var(--stadium-black);
  background: #ffffff;

  font-family:
    "BIZ UDPGothic",
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    sans-serif;

  font-size: 13px;
  line-height: 1.8;
  box-sizing: border-box;
}

#event.beyond-stadium-2026 *,
#event.beyond-stadium-2026 *::before,
#event.beyond-stadium-2026 *::after {
  box-sizing: border-box;
}

#event.beyond-stadium-2026 img {
  display: block;
  max-width: 100%;
  height: auto;
}

#event.beyond-stadium-2026 a {
  color: inherit;
  text-decoration: none;
}

#event.beyond-stadium-2026 p,
#event.beyond-stadium-2026 h1,
#event.beyond-stadium-2026 h2,
#event.beyond-stadium-2026 h3,
#event.beyond-stadium-2026 h4,
#event.beyond-stadium-2026 figure,
#event.beyond-stadium-2026 dl,
#event.beyond-stadium-2026 dd,
#event.beyond-stadium-2026 ul {
  margin: 0;
}

#event.beyond-stadium-2026 ul {
  padding: 0;
}

#event.beyond-stadium-2026 .stadium-container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

#event.beyond-stadium-2026 .stadium-section {
  position: relative;
  padding: 72px 0;
  background: #ffffff;
}

#event.beyond-stadium-2026 .stadium-sp-only {
  display: none;
}


/* =========================================================
   KV
========================================================= */

#event.beyond-stadium-2026 .stadium-kv {
  position: relative;
  width: 100%;
  background: #ffffff;
}

#event.beyond-stadium-2026 .stadium-kv::before,
#event.beyond-stadium-2026 .stadium-kv::after {
  display: none;
  content: none;
}

/* =========================================================
   KVサイズ調整
========================================================= */

#event.beyond-stadium-2026 .stadium-kv__inner {
  width: calc(100% - 48px);
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #event.beyond-stadium-2026 .stadium-kv__inner {
    width: calc(100% - 28px);
    max-width: none;
  }
}

#event.beyond-stadium-2026 .stadium-kv__title {
  line-height: 1;
}

#event.beyond-stadium-2026 .stadium-kv__title img {
  width: 100%;
}
/* =========================================================
   KV画像：ボッチャ大会KVと同じ影
========================================================= */

#event.beyond-stadium-2026 .stadium-kv,
#event.beyond-stadium-2026 .stadium-kv__inner {
  overflow: visible;
}

#event.beyond-stadium-2026 .stadium-kv__inner img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.22);
}


/* =========================================================
   導入
========================================================= */

#event.beyond-stadium-2026 .stadium-intro {
  position: relative;
  padding: 64px 0 72px;
  background: #ffffff;
}

#event.beyond-stadium-2026 .stadium-intro::before,
#event.beyond-stadium-2026 .stadium-intro::after {
  display: none;
  content: none;
}

#event.beyond-stadium-2026 .stadium-intro__heading {
  position: relative;
  margin-bottom: 34px;
  padding: 20px 32px;
  color: var(--stadium-blue);
  font-size: clamp(23px, 2.6vw, 37px);
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
  letter-spacing: 0.04em;
}

/* =========================================================
   導入見出し：黄色い楕円マーカー
========================================================= */

#event.beyond-stadium-2026 .stadium-intro__heading {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin: 0 auto 34px;
  padding: 20px 20px 14px;
}

/* 元の青・黄色の下線を黄色い楕円へ変更 */
#event.beyond-stadium-2026 .stadium-intro__heading::before {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 7px;
  left: 0;
  width: 100%;
  height: 16px;
  margin: auto;
  content: "";
  border-radius: 50%;
  background: #fff98c;
  transform: scaleX(1.05);
}
@media screen and (max-width: 767px) {
 #event.beyond-stadium-2026 .stadium-intro__heading {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 24px;
  padding: 10px 4px 12px;
  font-size: 20px;
  line-height: 1.5;
}

  #event.beyond-stadium-2026 .stadium-intro__heading::before {
    bottom: 5px;
    width: 100%;
    height: 11px;
    transform: scaleX(1.03);
  }
}

#event.beyond-stadium-2026 .stadium-intro__text {
  max-width: 980px;
  margin: 0 auto;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.9;
}

#event.beyond-stadium-2026 .stadium-intro__text p + p {
  margin-top: 19px;
}

#event.beyond-stadium-2026 .stadium-intro__text strong {
  color: var(--stadium-red);
  font-weight: 900;
}

#event.beyond-stadium-2026 .stadium-button-wrap {
  margin-top: 38px;
  text-align: center;
}


/* =========================================================
   共通ボタン
========================================================= */

#event.beyond-stadium-2026 .stadium-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 272px;
  min-height: 58px;
  padding: 11px 56px 11px 32px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.05em;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease;
}

#event.beyond-stadium-2026 .stadium-button::after {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 10px;
  height: 10px;
  content: "";
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

#event.beyond-stadium-2026 .stadium-button--outline {
  padding: 11px 32px;
  color: var(--stadium-red);
  border: 4px solid var(--stadium-red);
  background: #ffffff;
}

#event.beyond-stadium-2026 .stadium-button--outline:hover {
  color: #ffffff;
  border-color: var(--stadium-red);
  background: var(--stadium-red);
}

#event.beyond-stadium-2026 .stadium-button--entry {
  min-width: 352px;
  color: #ffffff;
  border: 3px solid var(--stadium-red-dark);
  background: var(--stadium-red);
}

#event.beyond-stadium-2026 .stadium-button--entry:hover {
  color: var(--stadium-red);
  background: #ffffff;
}



#event.beyond-stadium-2026 .stadium-button--outline::after {
  display: none;
  content: none;
}

/* =========================================================
   共通見出し
========================================================= */

#event.beyond-stadium-2026 .stadium-section-title {
  position: relative;
  margin-bottom: 1px;
  text-align: center;
}

#event.beyond-stadium-2026 .stadium-section-title span {
  position: relative;
  display: inline-block;
  padding: 8px 46px 8px;
  color: var(--stadium-blue);
  font-size: clamp(24px, 2.4vw, 35px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.06em;
}

/* 親要素側の疑似要素は使わない */
#event.beyond-stadium-2026 .stadium-section-title::before,
#event.beyond-stadium-2026 .stadium-section-title::after {
  display: none;
  content: none;
}

/* 紙吹雪 */
#event.beyond-stadium-2026 .stadium-section-title span::before,
#event.beyond-stadium-2026 .stadium-section-title span::after {
  position: absolute;
  top: 50%;
  bottom: auto;
  display: block;
  width: 72px;
  height: 34px;
  content: "";
  border-radius: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  pointer-events: none;
  transform-origin: center;
}

#event.beyond-stadium-2026 .stadium-section-title span::before {
  right: calc(100% + 16px);
  left: auto;
  transform: translateY(-50%) rotate(25deg);
  background-image:
    linear-gradient(var(--stadium-red), var(--stadium-red)),
    linear-gradient(var(--stadium-blue), var(--stadium-blue)),
    linear-gradient(var(--stadium-yellow), var(--stadium-yellow)),
    linear-gradient(#34b56a, #34b56a),
    radial-gradient(circle, var(--stadium-red) 0 3px, transparent 3.5px),
    radial-gradient(circle, var(--stadium-blue) 0 3px, transparent 3.5px),
    radial-gradient(circle, var(--stadium-yellow) 0 3px, transparent 3.5px);
  background-position:
    4px 24px,
    18px 15px,
    33px 7px,
    48px 1px,
    22px 28px,
    43px 17px,
    63px 7px;
  background-size:
    16px 4px,
    14px 4px,
    13px 4px,
    12px 4px,
    6px 6px,
    6px 6px,
    6px 6px;
}

#event.beyond-stadium-2026 .stadium-section-title span::after {
  right: auto;
  left: calc(100% + 16px);
  transform: translateY(-50%) rotate(-25deg);
  background-image:
    linear-gradient(var(--stadium-red), var(--stadium-red)),
    linear-gradient(var(--stadium-blue), var(--stadium-blue)),
    linear-gradient(var(--stadium-yellow), var(--stadium-yellow)),
    linear-gradient(#34b56a, #34b56a),
    radial-gradient(circle, var(--stadium-red) 0 3px, transparent 3.5px),
    radial-gradient(circle, var(--stadium-blue) 0 3px, transparent 3.5px),
    radial-gradient(circle, var(--stadium-yellow) 0 3px, transparent 3.5px);
  background-position:
    52px 24px,
    38px 15px,
    24px 7px,
    10px 1px,
    45px 28px,
    25px 17px,
    5px 7px;
  background-size:
    16px 4px,
    14px 4px,
    13px 4px,
    12px 4px,
    6px 6px,
    6px 6px,
    6px 6px;
}

/* =========================================================
   開催概要：非表形式
========================================================= */

#event.beyond-stadium-2026 .stadium-overview__box {
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 28px 8px;
  overflow: hidden;
  border: 2px solid #e8d4a2;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

#event.beyond-stadium-2026 .stadium-overview__list {
  display: block;
}

#event.beyond-stadium-2026 .stadium-overview__row,
#event.beyond-stadium-2026 .stadium-overview__row + .stadium-overview__row {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin: 0 0 16px;
  padding: 0 0 16px;
  border: 0;
}

#event.beyond-stadium-2026 .stadium-overview__row:not(:last-child) {
  border-bottom: 0;
}

#event.beyond-stadium-2026 .stadium-overview__row dt {
  display: block;
  flex: 0 0 110px;
  min-height: 0;
  padding: 0;
  background: none;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.6;
  text-align: left;
  letter-spacing: 0.02em;
}

#event.beyond-stadium-2026 .stadium-overview__row:nth-child(1) dt,
#event.beyond-stadium-2026 .stadium-overview__row:nth-child(3) dt {
  color: var(--stadium-red);
}

#event.beyond-stadium-2026 .stadium-overview__row:nth-child(2) dt,
#event.beyond-stadium-2026 .stadium-overview__row:nth-child(4) dt {
  color: var(--stadium-blue);
}

#event.beyond-stadium-2026 .stadium-overview__row dd {
  flex: 1 1 auto;
  padding: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
}

#event.beyond-stadium-2026 .stadium-overview__row dd p + p {
  margin-top: 8px;
}

#event.beyond-stadium-2026 .stadium-overview__access {
  display: block;
  margin-top: 8px;
}

#event.beyond-stadium-2026 .stadium-overview__label {
  display: inline-block;
  margin-right: 8px;
  padding: 2px 10px;
  color: #ffffff;
  border-radius: 999px;
  background: var(--stadium-red);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.4;
}

#event.beyond-stadium-2026 .stadium-overview__access a {
  color: #222222;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

#event.beyond-stadium-2026 .stadium-overview__free {
  color: #222222;
  font-size: 14px;
  font-weight: 700;
}

/* =========================================================
   2日間の楽しみ方
   参考デザイン寄せ
========================================================= */

#event.beyond-stadium-2026 .stadium-days__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

#event.beyond-stadium-2026 .stadium-day-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  border: 4px solid currentColor;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.18);
}

#event.beyond-stadium-2026 .stadium-day-card--day1 {
  color: #08aeea;
}

#event.beyond-stadium-2026 .stadium-day-card--day2 {
  color: #ff1717;
}


/* -------------------------
   ヘッダー
------------------------- */

#event.beyond-stadium-2026 .stadium-day-card__header {
  padding: 16px 26px 10px;
  color: var(--stadium-black);
  background: #ffffff !important;
  text-align: center;
}

#event.beyond-stadium-2026 .stadium-day-card__date {
  margin-bottom: 9px;
  color: #111111;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

#event.beyond-stadium-2026 .stadium-day-card__date span {
  display: inline;
  margin: 0 6px 0 0;
  padding: 0;
  color: #111111;
  background: transparent;
  border-radius: 0;
  font-size: 18px;
  font-weight: 500;
}

#event.beyond-stadium-2026 .stadium-day-card--day1 .stadium-day-card__date {
  color: #111111;
}

#event.beyond-stadium-2026 .stadium-day-card--day2 .stadium-day-card__date {
  color: #111111;
}

#event.beyond-stadium-2026 .stadium-day-card--day1 .stadium-day-card__date::first-letter {
  color: #111111;
}

#event.beyond-stadium-2026 .stadium-day-card__title {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: fit-content;
  margin: 0 auto;
  padding: 0 10px 10px;
  color: currentColor;
  font-size: 35px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

#event.beyond-stadium-2026 .stadium-day-card__title::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 14px;
  margin: auto;
  content: "";
  border-radius: 50%;
  background: #fff98c;
  transform: scaleX(1.08);
}


/* -------------------------
   本文
------------------------- */

#event.beyond-stadium-2026 .stadium-day-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 0px 28px 24px;
}

#event.beyond-stadium-2026 .stadium-day-card__lead {
  min-height: auto;
  margin: 0;
  padding: 0 14px 18px;
  border-bottom: 1px solid currentColor;
  color: currentColor;
  font-size: 23px;
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
}

#event.beyond-stadium-2026 .stadium-day-card--day1 .stadium-day-card__lead {
  color: #12ace6;
}

#event.beyond-stadium-2026 .stadium-day-card--day2 .stadium-day-card__lead {
  color: #ff4f4f;
}


/* -------------------------
   箇条書き
------------------------- */

#event.beyond-stadium-2026 .stadium-day-card__list {
  min-height: auto;
  margin-top: 26px;
  padding: 0 12px;
  color: #333333;
  list-style: none;
}

#event.beyond-stadium-2026 .stadium-day-card__list li {
  position: relative;
  padding-left: 28px;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.55;
  top: 2px;
}

#event.beyond-stadium-2026 .stadium-day-card__list li + li {
  margin-top: 0;
}

#event.beyond-stadium-2026 .stadium-day-card__list li::before {
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 18px;
  height: 18px;
  content: "";
  border-radius: 50%;
  background: currentColor;
}

#event.beyond-stadium-2026 .stadium-day-card--day1 .stadium-day-card__list li::before {
  background: #0c82c9;
}

#event.beyond-stadium-2026 .stadium-day-card--day2 .stadium-day-card__list li::before {
  background: #ff1717;
}


/* -------------------------
   最下部の大会名
------------------------- */

#event.beyond-stadium-2026 .stadium-day-card__cup {
  position: relative;
  margin-top: auto;
  padding: 24px 0 0 40px;
  color: #b88600;
  background: transparent;
  border-radius: 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
}

#event.beyond-stadium-2026 .stadium-day-card__cup::before {
  position: absolute;
  top: 22px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  content: "+";
  color: #ffffff;
  border-radius: 50%;
  background: #c99600;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}

#event.beyond-stadium-2026 .stadium-day-card__cup::first-line {
  color: #b88600;
}


/* =========================================================
   豪華ゲスト
========================================================= */

#event.beyond-stadium-2026 .stadium-guests {
  background: #ffffff;
}

#event.beyond-stadium-2026 .stadium-guests__intro {
  max-width: 960px;
  margin: 0 auto 44px;
  padding: 30px 35px;
  border: 3px solid var(--stadium-yellow);
  border-radius: 20px;
  background: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

#event.beyond-stadium-2026 .stadium-guests__intro p + p {
  margin-top: 14px;
}

#event.beyond-stadium-2026 .stadium-guests__intro strong {
  color: var(--stadium-red);
  font-weight: 900;
}

#event.beyond-stadium-2026 .stadium-guests__schedule {
  display: grid;
  gap: 48px;
}

#event.beyond-stadium-2026 .stadium-guests__day-title {
  margin-bottom: 27px;
  padding: 11px 19px;
  color: #ffffff;
  border-radius: 999px;
  background: var(--stadium-blue);
  font-size: 19px;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.06em;
}

#event.beyond-stadium-2026 .stadium-guests__day--day2 .stadium-guests__day-title {
  background: var(--stadium-red);
}

#event.beyond-stadium-2026 .stadium-guests__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 27px;
}

#event.beyond-stadium-2026 .stadium-guest-card {
  position: relative;
  overflow: hidden;
  padding: 14px 14px 22px;
  border: 3px solid var(--stadium-blue);
  border-radius: 20px;
  background: #ffffff;
}

#event.beyond-stadium-2026 .stadium-guests__day--day2 .stadium-guest-card {
  border-color: var(--stadium-red);
}

#event.beyond-stadium-2026 .stadium-guest-card__role {
  position: relative;
  z-index: 2;
  width: fit-content;
  margin: 0 auto 13px;
  padding: 5px 16px;
  color: #ffffff;
  border-radius: 999px;
  background: var(--stadium-blue);
  font-size: 13px;
  font-weight: 900;
}

#event.beyond-stadium-2026 .stadium-guests__day--day2 .stadium-guest-card__role {
  background: var(--stadium-red);
}

#event.beyond-stadium-2026 .stadium-guest-card__role--special {
  color: var(--stadium-black);
  background: var(--stadium-yellow) !important;
}

#event.beyond-stadium-2026 .stadium-guest-card__image {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  background: var(--stadium-gray-light);
}

#event.beyond-stadium-2026 .stadium-guest-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#event.beyond-stadium-2026 .stadium-guest-card__content {
  padding: 18px 8px 0;
  text-align: center;
}

#event.beyond-stadium-2026 .stadium-guest-card__name {
  color: var(--stadium-blue);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.4;
}

#event.beyond-stadium-2026 .stadium-guests__day--day2 .stadium-guest-card__name {
  color: var(--stadium-red);
}

#event.beyond-stadium-2026 .stadium-guest-card__profile {
  margin-top: 6px;
  color: var(--stadium-gray);
  font-size: 13px;
  font-weight: 700;
}

#event.beyond-stadium-2026 .stadium-guests__note {
  margin-top: 22px;
  color: var(--stadium-gray);
  font-size: 11px;
  text-align: right;
}


/* =========================================================
   ボッチャ大会
========================================================= */

#event.beyond-stadium-2026 .stadium-boccia {
  background: #ffffff;
}

#event.beyond-stadium-2026 .stadium-boccia__main-image {
  overflow: visible;
  max-width: 980px;
  margin: 0 auto 36px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.22);
}

#event.beyond-stadium-2026 .stadium-boccia__main-image img {
  width: 100%;
}

#event.beyond-stadium-2026 .stadium-boccia__intro {
  max-width: 760px;
  margin: 0 auto 32px;
  padding: 24px 30px;
  border: 0;
  border-left: 6px solid var(--stadium-red);
  background: var(--stadium-red-light);
  font-size: 14px;
}

#event.beyond-stadium-2026 .stadium-boccia__heading {
  margin-bottom: 14px;
  color: var(--stadium-red);
  font-size: clamp(21px, 2vw, 29px);
  font-weight: 900;
  line-height: 1.45;
}

#event.beyond-stadium-2026 .stadium-boccia__intro p + p {
  margin-top: 11px;
}

#event.beyond-stadium-2026 .stadium-boccia__photos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1040px;
  margin: 0 auto 48px;
}

#event.beyond-stadium-2026 .stadium-boccia__photo {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  background: #ffffff;
}

#event.beyond-stadium-2026 .stadium-boccia__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#event.beyond-stadium-2026 .stadium-boccia__details {
  overflow: hidden;
  max-width: 1040px;
  margin: 0 auto;
  border: 3px solid var(--stadium-blue);
  border-radius: 20px;
  background: #ffffff;
}

#event.beyond-stadium-2026 .stadium-boccia__detail-row {
  display: grid;
  grid-template-columns: 230px 1fr;
}

#event.beyond-stadium-2026 .stadium-boccia__detail-row + .stadium-boccia__detail-row {
  border-top: 1px solid #dcecf7;
}

#event.beyond-stadium-2026 .stadium-boccia__detail-row dt {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 16px;
  color: #ffffff;
  background: var(--stadium-blue);
  font-size: 15px;
  font-weight: 900;
  text-align: center;
}

#event.beyond-stadium-2026 .stadium-boccia__detail-row dd {
  padding: 22px 29px;
  font-size: 14px;
  font-weight: 500;
}

#event.beyond-stadium-2026 .stadium-boccia__detail-row ul {
  padding-left: 1.5em;
}

#event.beyond-stadium-2026 .stadium-boccia__detail-row li + li {
  margin-top: 6px;
}

#event.beyond-stadium-2026 .stadium-note {
  margin-top: 6px !important;
  padding-left: 1em;
  color: var(--stadium-gray);
  font-size: 11px;
  text-indent: -1em;
}

#event.beyond-stadium-2026 .stadium-boccia__free {
  margin-top: 13px !important;
  color: var(--stadium-red);
  font-size: 16px;
  font-weight: 900;
}

#event.beyond-stadium-2026 .stadium-boccia__schedule {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px !important;
  padding: 13px 16px;
  border-radius: 10px;
  background: var(--stadium-blue-light);
  color: var(--stadium-blue);
  font-weight: 900;
}

#event.beyond-stadium-2026 .stadium-boccia__schedule-arrow {
  flex: 0 0 auto;
  color: var(--stadium-red);
  font-size: 19px;
}


/* =========================================================
   クロージング
========================================================= */

#event.beyond-stadium-2026 .stadium-closing {
  padding: 56px 0;
  color: var(--stadium-blue);
  background: #ffffff;
}

#event.beyond-stadium-2026 .stadium-closing__message {
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
  letter-spacing: 0.05em;
}




/* =========================================================
   タブレット
========================================================= */

@media screen and (max-width: 960px) {
  #event.beyond-stadium-2026 .stadium-container {
    width: min(100% - 40px, 840px);
  }

  #event.beyond-stadium-2026 .stadium-section {
    padding: 58px 0;
  }

  #event.beyond-stadium-2026 .stadium-days__grid {
    gap: 22px;
  }

  #event.beyond-stadium-2026 .stadium-boccia__detail-row {
    grid-template-columns: 190px 1fr;
  }

  #event.beyond-stadium-2026 .stadium-boccia__detail-row dd {
    padding: 19px 21px;
  }
}

/* =========================================================
   SP
========================================================= */

@media screen and (max-width: 767px) {

  #event.beyond-stadium-2026 {
    font-size: 12px;
    line-height: 1.8;
  }

  #event.beyond-stadium-2026 .stadium-container {
    width: calc(100% - 28px);
  }

  #event.beyond-stadium-2026 .stadium-section {
    padding: 46px 0;
    background: #ffffff;
  }

  #event.beyond-stadium-2026 .stadium-sp-only {
    display: block;
  }


  /* 導入 */

  #event.beyond-stadium-2026 .stadium-intro {
    padding: 43px 0 51px;
    background: #ffffff;
  }

  #event.beyond-stadium-2026 .stadium-intro__heading {
    margin-bottom: 24px;
    padding: 10px 4px 18px;
    font-size: 26px;
    line-height: 1.5;
  }

  
  #event.beyond-stadium-2026 .stadium-intro__text {
    font-size: 16px;
    line-height: 1.9;
  }

  #event.beyond-stadium-2026 .stadium-intro__text p + p {
    margin-top: 16px;
  }


  /* 共通見出し */

  #event.beyond-stadium-2026 .stadium-section-title {
    margin-bottom: 0px;
  }

  #event.beyond-stadium-2026 .stadium-section-title span {
    padding: 6px 16px 11px;
    font-size: 29px;
    line-height: 1.4;
  }



  /* ボタン */

  #event.beyond-stadium-2026 .stadium-button-wrap {
    margin-top: 29px;
  }

  #event.beyond-stadium-2026 .stadium-button {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding: 10px 43px 10px 19px;
    font-size: 14px;
  }

  #event.beyond-stadium-2026 .stadium-button::after {
    right: 19px;
    width: 8px;
    height: 8px;
  }

  #event.beyond-stadium-2026 .stadium-button--entry {
    min-width: 0;
  }


  /* ゲスト */

  #event.beyond-stadium-2026 .stadium-guests__intro {
    margin-bottom: 34px;
    padding: 21px 16px;
    border-width: 2px;
    border-radius: 16px;
    font-size: 12px;
  }

  #event.beyond-stadium-2026 .stadium-guests__schedule {
    gap: 37px;
  }

  #event.beyond-stadium-2026 .stadium-guests__day-title {
    margin-bottom: 21px;
    padding: 9px 14px;
    font-size: 16px;
  }

  #event.beyond-stadium-2026 .stadium-guests__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  #event.beyond-stadium-2026 .stadium-guest-card {
    padding: 10px 10px 17px;
    border-width: 2px;
    border-radius: 16px;
  }

  #event.beyond-stadium-2026 .stadium-guest-card__role {
    margin-bottom: 10px;
    padding: 4px 8px;
    font-size: 10px;
    text-align: center;
  }

  #event.beyond-stadium-2026 .stadium-guest-card__image {
    border-radius: 10px;
  }

  #event.beyond-stadium-2026 .stadium-guest-card__content {
    padding: 14px 4px 0;
  }

  #event.beyond-stadium-2026 .stadium-guest-card__name {
    font-size: 16px;
  }

  #event.beyond-stadium-2026 .stadium-guest-card__profile {
    font-size: 10px;
  }

  #event.beyond-stadium-2026 .stadium-guests__note {
    margin-top: 18px;
    font-size: 10px;
    text-align: left;
  }


  /* ボッチャ大会 */
  #event.beyond-stadium-2026 .stadium-boccia__main-image {
    box-shadow: 0 10px 14px -9px rgba(0, 0, 0, 0.38);
  }

 #event.beyond-stadium-2026 .stadium-boccia__main-image {
  border-width: 2px;
  border-radius: 16px;
}

  #event.beyond-stadium-2026 .stadium-boccia__intro {
    margin-bottom: 29px;
    padding: 21px 16px;
    border-left-width: 6px;
    font-size: 12px;
  }

  #event.beyond-stadium-2026 .stadium-boccia__heading {
    font-size: 19px;
  }

  #event.beyond-stadium-2026 .stadium-boccia__photos {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 34px;
  }

  #event.beyond-stadium-2026 .stadium-boccia__details {
    border-width: 2px;
    border-radius: 16px;
  }

  #event.beyond-stadium-2026 .stadium-boccia__detail-row {
    display: block;
  }

  #event.beyond-stadium-2026 .stadium-boccia__detail-row + .stadium-boccia__detail-row {
    border-top: 2px solid var(--stadium-blue);
  }

  #event.beyond-stadium-2026 .stadium-boccia__detail-row dt {
    padding: 10px 14px;
    font-size: 14px;
  }

  #event.beyond-stadium-2026 .stadium-boccia__detail-row dd {
    padding: 16px 14px 19px;
    font-size: 12px;
  }

  #event.beyond-stadium-2026 .stadium-boccia__schedule {
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
    padding: 11px 13px;
  }

  #event.beyond-stadium-2026 .stadium-boccia__schedule-arrow {
    align-self: center;
    transform: rotate(90deg);
  }


  /* クロージング */

  #event.beyond-stadium-2026 .stadium-closing {
    padding: 42px 0;
    background: #ffffff;
  }

  #event.beyond-stadium-2026 .stadium-closing__message {
    color: var(--stadium-blue);
    font-size: 19px;
  }


  /* フッター */

  #event.beyond-stadium-2026 .stadium-footer {
    padding: 37px 0 42px;
    color: var(--stadium-black);
    background: #ffffff;
  }

  #event.beyond-stadium-2026 .stadium-footer__row {
    grid-template-columns: 58px 1fr;
    gap: 10px;
  }

  #event.beyond-stadium-2026 .stadium-footer__contact-title {
    font-size: 16px;
  }


  #event.beyond-stadium-2026 .stadium-button--outline {
    padding: 10px 19px;
  }

  #event.beyond-stadium-2026 .stadium-overview__box {
    padding: 18px 16px 4px;
    border-radius: 18px;
  }

  #event.beyond-stadium-2026 .stadium-overview__row,
  #event.beyond-stadium-2026 .stadium-overview__row + .stadium-overview__row {
    display: block;
    gap: 0;
    margin: 0 0 16px;
    padding: 0 0 16px;
    border: 0;
  }

  #event.beyond-stadium-2026 .stadium-overview__row dt {
    margin-bottom: 6px;
    padding: 0;
    font-size: 14px;
  }

  #event.beyond-stadium-2026 .stadium-overview__row dd {
    padding: 0;
    font-size: 12px;
    line-height: 1.8;
  }

  #event.beyond-stadium-2026 .stadium-overview__access {
    margin-top: 6px;
  }

  #event.beyond-stadium-2026 .stadium-overview__free {
    font-size: 12px;
  }

  #event.beyond-stadium-2026 .stadium-days__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  #event.beyond-stadium-2026 .stadium-day-card {
    min-height: 0;
    border-width: 3px;
    border-radius: 22px;
    box-shadow: 0 4px 7px rgba(0, 0, 0, 0.16);
  }

  #event.beyond-stadium-2026 .stadium-day-card__header {
    padding: 14px 14px 8px;
  }

  #event.beyond-stadium-2026 .stadium-day-card__date,
  #event.beyond-stadium-2026 .stadium-day-card__date span {
    font-size: 17px;
  }

  #event.beyond-stadium-2026 .stadium-day-card__title {
    padding: 0 6px 8px;
    font-size: 31px;
  }

  #event.beyond-stadium-2026 .stadium-day-card__title::after {
    bottom: 2px;
    height: 11px;
  }

  #event.beyond-stadium-2026 .stadium-day-card__body {
    padding: 0px 18px 20px;
  }

  #event.beyond-stadium-2026 .stadium-day-card__lead {
    padding: 0 4px 15px;
    font-size: 25px;
    line-height: 1.45;
  }

  #event.beyond-stadium-2026 .stadium-day-card__list {
    margin-top: 20px;
    padding: 0 2px;
  }

  #event.beyond-stadium-2026 .stadium-day-card__list li {
    padding-left: 24px;
    font-size: 25px;
  }

  #event.beyond-stadium-2026 .stadium-day-card__list li::before {
    top: 0.5em;
    width: 15px;
    height: 15px;
  }

  #event.beyond-stadium-2026 .stadium-day-card__cup {
    padding: 20px 0 0 34px;
    font-size: 18px;
  }

  #event.beyond-stadium-2026 .stadium-day-card__cup::before {
    top: 18px;
    width: 27px;
    height: 27px;
    font-size: 21px;
  }
}
#event.beyond-stadium-2026 .stadium-day-card__lead {
  text-align: center;
}

#event.beyond-stadium-2026 .stadium-day-card__list li {
  position: relative;
  top: 2px;
}


/* =========================================================
   豪華ゲストが登場：紹介文
========================================================= */

#event.beyond-stadium-2026 .stadium-guests__intro {
  max-width: none;
  margin: 0 auto 36px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.55;
}

#event.beyond-stadium-2026 .stadium-guests__intro p {
  margin: 0;
}

#event.beyond-stadium-2026 .stadium-guests__intro p + p {
  margin-top: 0;
}

#event.beyond-stadium-2026 .stadium-guests__intro strong {
  color: var(--stadium-red);
  font-weight: 900;
}

/* 最後の「まだまだ他にも〜」 */
#event.beyond-stadium-2026 .stadium-guests__intro p:last-child {
  color: #00aeea;
  font-weight: 900;
}

/* =========================================================
   SP
========================================================= */

@media screen and (max-width: 767px) {
  #event.beyond-stadium-2026 .stadium-guests__intro {
    margin-bottom: 28px;
    padding: 0;
    font-size: 16px;
    line-height: 1.5;
  }

  #event.beyond-stadium-2026 .stadium-guests__intro p + p {
    margin-top: 0;
  }
}
/* =========================================================
   豪華ゲスト
========================================================= */

#event.beyond-stadium-2026 .stadium-guests {
  background: #ffffff;
}

#event.beyond-stadium-2026 .stadium-guests__schedule {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

/* 日ごとの囲み */
#event.beyond-stadium-2026 .stadium-guests__day {
  padding: 10px 24px 14px;
  border: 3px solid var(--stadium-blue);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.18);
}

#event.beyond-stadium-2026 .stadium-guests__day--day2 {
  border-color: var(--stadium-red);
}

/* 10/31(土)出演 */
#event.beyond-stadium-2026 .stadium-guests__day-title {
  margin: 0 0 8px;
  padding: 0;
  color: #222222;
  border-radius: 0;
  background: transparent;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
  letter-spacing: 0;
}

#event.beyond-stadium-2026
  .stadium-guests__day--day2
  .stadium-guests__day-title {
  color: #222222;
  background: transparent;
}

/* 各日2人並び */
#event.beyond-stadium-2026 .stadium-guests__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

/* 個人カードの枠を削除 */
#event.beyond-stadium-2026 .stadium-guest-card {
  position: relative;
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: center;
}

#event.beyond-stadium-2026
  .stadium-guests__day--day2
  .stadium-guest-card {
  border: 0;
}

/* イベントアンバサダー、スペシャルMC */
#event.beyond-stadium-2026 .stadium-guest-card__role {
  position: relative;
  z-index: 2;
  display: block;
  width: 160px;
  min-height: 30px;
  margin: 0 auto 8px;
  padding: 6px 10px;
  color: #ffffff;
  border-radius: 4px;
  background: #f7c600;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.28);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

#event.beyond-stadium-2026 .stadium-guest-card__role--special {
  color: #ffffff;
  background: #67ad43 !important;
}

/* 人物写真 */
#event.beyond-stadium-2026 .stadium-guest-card__image {
  width: 145px;
  height: 172px;
  margin: 0 auto;
  overflow: hidden;
  aspect-ratio: auto;
  border-radius: 0;
  background: #eeeeee;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

#event.beyond-stadium-2026 .stadium-guest-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 名前・肩書 */
#event.beyond-stadium-2026 .stadium-guest-card__content {
  padding: 7px 0 0;
  text-align: center;
}

#event.beyond-stadium-2026 .stadium-guest-card__name {
  color: #111111;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

#event.beyond-stadium-2026
  .stadium-guests__day--day2
  .stadium-guest-card__name {
  color: #111111;
}

#event.beyond-stadium-2026 .stadium-guest-card__profile {
  margin-top: 1px;
  color: #333333;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
}

/* 注意書き */
#event.beyond-stadium-2026 .stadium-guests__note {
  margin-top: 10px;
  color: #666666;
  font-size: 13px;
  text-align: center;
}

/* =========================================================
   SP
========================================================= */

@media screen and (max-width: 767px) {

  #event.beyond-stadium-2026 .stadium-guests__schedule {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  #event.beyond-stadium-2026 .stadium-guests__day {
    padding: 9px 14px 14px;
    border-width: 2px;
    border-radius: 16px;
  }

  #event.beyond-stadium-2026 .stadium-guests__day-title {
    margin-bottom: 9px;
    font-size: 18px;
  }

  #event.beyond-stadium-2026 .stadium-guests__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  #event.beyond-stadium-2026 .stadium-guest-card__role {
    width: 105px;
    padding: 4px;
    font-size: 9px;
  }

#event.beyond-stadium-2026 .stadium-guest-card__image {
    width: 120px;
    height: 144px;
  }

  #event.beyond-stadium-2026 .stadium-guest-card__content {
    padding-top: 6px;
  }

  #event.beyond-stadium-2026 .stadium-guest-card__name {
    font-size: 14px;
  }

  #event.beyond-stadium-2026 .stadium-guest-card__profile {
    font-size: 10px;
  }

  #event.beyond-stadium-2026 .stadium-guests__note {
    font-size: 12px;
    text-align: center;
  }
}
/* Day2の通常ラベルも黄色に戻す */
#event.beyond-stadium-2026
.stadium-guests__day--day2
.stadium-guest-card__role {
  background: #f7c600;
}

/* スペシャルMCだけ緑 */
#event.beyond-stadium-2026
.stadium-guests__day--day2
.stadium-guest-card__role--special {
  background: #67ad43 !important;
}

/* =========================================================
   ボッチャ大会：紹介文
========================================================= */

#event.beyond-stadium-2026 .stadium-boccia__intro {
  max-width: 900px;
  margin: 0 auto 32px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 21px;
  line-height: 1.45;
  text-align: center;
}

#event.beyond-stadium-2026 .stadium-boccia__heading {
  margin-bottom: 12px;
  color: #FF5050;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
 
}

#event.beyond-stadium-2026 .stadium-boccia__intro p {
  margin: 0;
}

#event.beyond-stadium-2026 .stadium-boccia__intro p + p {
  margin-top: 0;
}


/* =========================================================
   ボッチャ大会：写真3枚
========================================================= */

#event.beyond-stadium-2026 .stadium-boccia__photos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 980px;
  margin: 0 auto 48px;
}

#event.beyond-stadium-2026 .stadium-boccia__photo {
  overflow: visible;
  aspect-ratio: 4 / 3;
  border-radius: 0;
  background: transparent;
  box-shadow: 0 7px 10px -6px rgba(0, 0, 0, 0.38);
}

#event.beyond-stadium-2026 .stadium-boccia__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}


/* =========================================================
   SP
========================================================= */

@media screen and (max-width: 767px) {

  #event.beyond-stadium-2026 .stadium-boccia__intro {
    max-width: none;
    margin-bottom: 26px;
    font-size: 16px;
    line-height: 1.55;
  }

  #event.beyond-stadium-2026 .stadium-boccia__heading {
    margin-bottom: 10px;
    font-size: 19px;
  }

  #event.beyond-stadium-2026 .stadium-boccia__photos {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 34px;
  }

  #event.beyond-stadium-2026 .stadium-boccia__photo {
    box-shadow: 0 6px 9px -6px rgba(0, 0, 0, 0.35);
  }
}

/* =========================================================
   ボッチャ大会：大会詳細
   金色ラベル＋本文デザイン
========================================================= */

#event.beyond-stadium-2026 .stadium-boccia__details {
  max-width: 980px;
  margin: 0 auto;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

#event.beyond-stadium-2026 .stadium-boccia__detail-list {
  margin: 0;
}

#event.beyond-stadium-2026 .stadium-boccia__detail-row,
#event.beyond-stadium-2026 .stadium-boccia__detail-row + .stadium-boccia__detail-row {
  display: block;
  margin: 0 0 36px;
  border: 0;
}

/* 金色ラベル */
#event.beyond-stadium-2026 .stadium-boccia__detail-row dt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 36px;
  margin: 0 0 10px;
  padding: 6px 18px;
  color: #ffffff;
  background: #c99a00;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.25);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

/* 留意事項だけグレー */
#event.beyond-stadium-2026 .stadium-boccia__detail-row:last-child dt {
  background: #999999;
}

/* 本文全体 */
#event.beyond-stadium-2026 .stadium-boccia__detail-row dd {
  padding: 0 12px;
  color: #222222;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.55;
}

#event.beyond-stadium-2026 .stadium-boccia__detail-row dd p {
  margin: 0;
}

#event.beyond-stadium-2026 .stadium-boccia__detail-row dd p + p {
  margin-top: 0;
}

/* 参加資格の箇条書き */
#event.beyond-stadium-2026 .stadium-boccia__detail-row ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#event.beyond-stadium-2026 .stadium-boccia__detail-row li {
  position: relative;
  padding-left: 22px;
  font-size: 21px;
  line-height: 1.55;
}

#event.beyond-stadium-2026 .stadium-boccia__detail-row li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "○";
}

#event.beyond-stadium-2026 .stadium-boccia__detail-row li + li {
  margin-top: 0;
}

/* 注意書き */
#event.beyond-stadium-2026 .stadium-note {
  margin-top: 0 !important;
  padding-left: 0;
  color: #222222;
  font-size: 18px;
  line-height: 1.5;
  text-indent: 0;
}

/* 参加費無料 */
#event.beyond-stadium-2026 .stadium-boccia__free {
  margin-top: 0 !important;
  color: #222222;
  font-size: 21px;
  font-weight: 500;
}

/* 試合日程 */
#event.beyond-stadium-2026 .stadium-boccia__schedule {
  display: block;
  margin-top: 0 !important;
  padding: 0;
  color: #222222;
  border-radius: 0;
  background: transparent;
  font-size: 21px;
  font-weight: 500;
}

#event.beyond-stadium-2026 .stadium-boccia__schedule span {
  display: inline;
}

/* 矢印 */
#event.beyond-stadium-2026 .stadium-boccia__schedule-arrow {
  display: inline;
  margin: 0 6px;
  color: #222222;
  font-size: 21px;
  transform: none;
}

/* 申込ボタン */
#event.beyond-stadium-2026 .stadium-boccia .stadium-button-wrap {
  margin-top: 28px;
}

#event.beyond-stadium-2026 .stadium-button--entry {
    min-width: 320px;
  min-height: 64px;
  padding: 14px 40px;
  color: #ffffff;
  border: 3px solid #c99a00;
  border-radius: 999px;
  background: #ff1a0a;
  font-size: 22px;
}

#event.beyond-stadium-2026 .stadium-button--entry::after {
  display: none;
  content: none;
}

#event.beyond-stadium-2026 .stadium-button--entry:hover {
  color: #ff1a0a;
  border-color: #c99a00;
  background: #ffffff;
}


/* =========================================================
   SP
========================================================= */

@media screen and (max-width: 767px) {

  #event.beyond-stadium-2026 .stadium-boccia__details {
    max-width: none;
  }

  #event.beyond-stadium-2026 .stadium-boccia__detail-row,
  #event.beyond-stadium-2026 .stadium-boccia__detail-row + .stadium-boccia__detail-row {
    margin-bottom: 30px;
    border: 0;
  }

  #event.beyond-stadium-2026 .stadium-boccia__detail-row dt {
    min-width: 117px;
    min-height: 34px;
    margin-bottom: 9px;
    padding: 5px 16px;
    font-size: 16px;
  }

  #event.beyond-stadium-2026 .stadium-boccia__detail-row dd {
    padding: 0 8px;
    font-size: 17px;
    line-height: 1.55;
  }

  #event.beyond-stadium-2026 .stadium-boccia__detail-row li {
    padding-left: 20px;
    font-size: 17px;
  }

  #event.beyond-stadium-2026 .stadium-note {
    font-size: 15px;
  }

  #event.beyond-stadium-2026 .stadium-boccia__free {
    font-size: 17px;
  }

  #event.beyond-stadium-2026 .stadium-boccia__schedule {
    display: block;
    padding: 0;
    font-size: 17px;
  }

  #event.beyond-stadium-2026 .stadium-boccia__schedule span {
    display: inline;
  }

  #event.beyond-stadium-2026 .stadium-boccia__schedule-arrow {
    display: inline;
    margin: 0 4px;
    font-size: 17px;
    transform: none;
  }

  #event.beyond-stadium-2026 .stadium-button--entry {
    width: auto;
    min-width: 221px;
    min-height: 49px;
    padding: 9px 26px;
    font-size: 16px;
  }
}
#event.beyond-stadium-2026 .stadium-boccia {
  padding-bottom: 30px;
}

#event.beyond-stadium-2026 .stadium-closing {
  padding-top: 20px;
}
/* =========================================================
   上部ボタンを申込ボタンと同じサイズにする
========================================================= */

#event.beyond-stadium-2026 .stadium-button--outline {
  min-width: 320px;
  min-height: 64px;
  padding: 14px 40px;
  font-size: 22px;
}

/* =========================================================
   主催・協力・お問い合わせ
   参考デザイン寄せ
   約1.5倍
========================================================= */

#event.beyond-stadium-2026 .stadium-footer {
  padding: 32px 0 44px;
  color: #111111;
  border-top: 0;
  background: #ffffff;
}

#event.beyond-stadium-2026 .stadium-footer__info {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}

/* 主催・協力 */
#event.beyond-stadium-2026 .stadium-footer__list {
  margin: 0 0 20px;
}

#event.beyond-stadium-2026 .stadium-footer__row {
  display: grid;
  grid-template-columns: 108px auto;
  gap: 12px;
  align-items: start;
}

#event.beyond-stadium-2026 .stadium-footer__row + .stadium-footer__row {
  margin-top: 2px;
}

#event.beyond-stadium-2026 .stadium-footer__row dt {
  position: relative;
  padding-left: 20px;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.4;
  text-align: left;
}

#event.beyond-stadium-2026 .stadium-footer__row dt::before {
  position: absolute;
  top: 0.38em;
  left: 0;
  width: 14px;
  height: 14px;
  content: "";
  background: #111111;
}

#event.beyond-stadium-2026 .stadium-footer__row dd {
  padding: 0;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
}

/* お問い合わせ */
#event.beyond-stadium-2026 .stadium-footer__contact {
  width: fit-content;
  padding: 0;
  border: 0;
  text-align: left;
}

#event.beyond-stadium-2026 .stadium-footer__contact-title {
  position: relative;
  margin: 0;
  padding-left: 20px;
  color: #111111;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.4;
  text-align: left;
}

#event.beyond-stadium-2026 .stadium-footer__contact-title::before {
  position: absolute;
  top: 0.38em;
  left: 0;
  width: 14px;
  height: 14px;
  content: "";
  background: #111111;
}

#event.beyond-stadium-2026 .stadium-footer__contact p {
  margin: 0;
  padding: 0 0 0 20px;
  font-size: 21px;
  line-height: 1.35;
  text-align: left;
}

#event.beyond-stadium-2026 .stadium-footer__contact a {
  color: #111111;
  text-decoration: none;
}

/* =========================================================
   SP
========================================================= */

@media screen and (max-width: 767px) {

  #event.beyond-stadium-2026 .stadium-footer {
    padding: 26px 0 34px;
  }

  #event.beyond-stadium-2026 .stadium-footer__info {
    width: 100%;
  }

  #event.beyond-stadium-2026 .stadium-footer__row {
    grid-template-columns: 78px 1fr;
    gap: 8px;
  }

  #event.beyond-stadium-2026 .stadium-footer__row dt,
  #event.beyond-stadium-2026 .stadium-footer__row dd,
  #event.beyond-stadium-2026 .stadium-footer__contact-title,
  #event.beyond-stadium-2026 .stadium-footer__contact p {
    font-size: 15px;
  }

  #event.beyond-stadium-2026 .stadium-footer__row dt,
  #event.beyond-stadium-2026 .stadium-footer__contact-title {
    padding-left: 16px;
  }

  #event.beyond-stadium-2026 .stadium-footer__contact p {
    padding-left: 16px;
  }

  #event.beyond-stadium-2026 .stadium-footer__row dt::before,
  #event.beyond-stadium-2026 .stadium-footer__contact-title::before {
    width: 10px;
    height: 10px;
  }

  #event.beyond-stadium-2026 .stadium-footer__contact {
    width: 100%;
  }
}
/* ボッチャ de 運動会と説明文の間隔 */
#event.beyond-stadium-2026 .stadium-boccia__heading {
  margin-bottom: 3px;
}

@media screen and (max-width: 767px) {
  #event.beyond-stadium-2026 .stadium-boccia__heading {
    margin-bottom: 2px;
  }
}

/* =========================================================
   開催概要：日時の見せ方調整
   PC/SP共通
========================================================= */

/* 日時行の本文 */
#event.beyond-stadium-2026 .stadium-overview__row:nth-child(2) dd {
  display: block;
}

/* 1行目 */
#event.beyond-stadium-2026 .stadium-overview__row:nth-child(2) dd p:first-child {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
}

/* 2行目 */
@media screen and (min-width: 768px) {
  #event.beyond-stadium-2026
  .stadium-overview__row:nth-child(2) dd p:last-child {
    margin: 6px 0 0 84px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  #event.beyond-stadium-2026
  .stadium-overview__row:nth-child(2) dd p:last-child {
    margin: 4px 0 0;
    text-align: left;
  }
}
/* 事前申込制：黒い下線 */
#event.beyond-stadium-2026 .stadium-overview__application {
  display: inline;
  padding-bottom: 2px;
  border-bottom: 1px solid #111111;
  font-weight: 700;
}
/* 左：ボッチャ de 運動会を青 */
#event.beyond-stadium-2026
.stadium-day-card--day1
.stadium-day-card__title strong {
  color: #08aeea;
  font-weight: 900;
}

/* 右：パラスポーツ de 運動会を赤 */
#event.beyond-stadium-2026
.stadium-day-card--day2
.stadium-day-card__title strong {
  color: #ff5050;
  font-weight: 900;
}

/* 出演日の曜日カラー */
#event.beyond-stadium-2026 .stadium-guests__weekday--sat {
  color: #08aeea;
  font-weight: 900;
}

#event.beyond-stadium-2026 .stadium-guests__weekday--sun {
  color: #ff5050;
  font-weight: 900;
}

/* =========================================================
   SP：ゲスト肩書ラベル調整
========================================================= */

@media screen and (max-width: 767px) {
  #event.beyond-stadium-2026 .stadium-guest-card__role {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 138px;
    min-height: 28px;
    margin: 0 auto 8px;
    padding: 0 8px;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
  }
}

/* =========================================================
   SP：ボッチャ大会詳細の文字サイズ調整
========================================================= */

@media screen and (max-width: 767px) {

  /* 大会名〜留意事項のラベル */
  #event.beyond-stadium-2026 .stadium-boccia__detail-row dt {
    font-size: 17px;
  }

  /* 各項目の本文 */
  #event.beyond-stadium-2026 .stadium-boccia__detail-row dd,
  #event.beyond-stadium-2026 .stadium-boccia__detail-row li,
  #event.beyond-stadium-2026 .stadium-boccia__free,
  #event.beyond-stadium-2026 .stadium-boccia__schedule,
  #event.beyond-stadium-2026 .stadium-boccia__schedule-arrow {
    font-size: 16px;
  }

  /* ※から始まる注意書き */
  #event.beyond-stadium-2026 .stadium-note {
    font-size: 14px;
  }
}

/* =========================================================
   ページ全体：BIZ UDPゴシック
========================================================= */

#event.beyond-stadium-2026,
#event.beyond-stadium-2026 button,
#event.beyond-stadium-2026 input,
#event.beyond-stadium-2026 select,
#event.beyond-stadium-2026 textarea {
  font-family:
    "BIZ UDPGothic",
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    sans-serif;
}

/* =========================================================
   SP：開催概要の文字サイズ・配置調整
========================================================= */

@media screen and (max-width: 767px) {

  /* イベント名・日時・場所・参加方法 */
  #event.beyond-stadium-2026 .stadium-overview__row dt {
    margin-bottom: 6px;
    font-size: 17px;
    line-height: 1.5;
  }

  /* 各項目の本文 */
  #event.beyond-stadium-2026 .stadium-overview__row dd {
    padding: 0;
    font-size: 15px;
    line-height: 1.65;
  }

  /* 日時の1行目・2行目 */
  #event.beyond-stadium-2026
  .stadium-overview__row:nth-child(2)
  dd p:first-child,
  #event.beyond-stadium-2026
  .stadium-overview__row:nth-child(2)
  dd p:last-child {
    margin-left: 0;
    font-size: 15px;
    line-height: 1.5;
    text-align: left;
  }

  #event.beyond-stadium-2026
  .stadium-overview__row:nth-child(2)
  dd p:last-child {
    margin-top: 4px;
  }

  /* アクセスや住所などの補足 */
  #event.beyond-stadium-2026 .stadium-overview__access {
    margin-top: 6px;
    font-size: 15px;
    line-height: 1.55;
    overflow-wrap: anywhere;
  }

  /* 参加費無料 */
  #event.beyond-stadium-2026
  .stadium-overview__row:nth-child(4)
  dd p:last-child {
    margin-top: 6px;
    font-size: 14px;
  }
}

/* =========================================================
   SP：上部ボタンと申込ボタンのサイズを統一
========================================================= */

@media screen and (max-width: 767px) {

  #event.beyond-stadium-2026 .stadium-button--outline,
  #event.beyond-stadium-2026 .stadium-button--entry {
    width: min(320px, 100%);
    min-width: 0;
    min-height: 64px;
    padding: 14px 24px;
    font-size: 22px;
  }
}


/* =========================================================
   SP：主催・協力と本文の間隔を詰める
========================================================= */

@media screen and (max-width: 767px) {

  #event.beyond-stadium-2026 .stadium-footer__row {
    grid-template-columns: max-content minmax(0, 1fr);
    column-gap: 23px;
  }

  #event.beyond-stadium-2026 .stadium-footer__row dt {
    width: auto;
    white-space: nowrap;
  }

  #event.beyond-stadium-2026 .stadium-footer__row dd {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  #event.beyond-stadium-2026 .stadium-footer__contact-title {
    white-space: nowrap;
  }

  #event.beyond-stadium-2026 .stadium-footer__contact p {
    overflow-wrap: anywhere;
  }
}
/* =========================================================
   SP：開催概要「日時」を上、日付を2行でそろえる
========================================================= */

@media screen and (max-width: 767px) {

  #event.beyond-stadium-2026
  .stadium-overview__row:nth-child(2) {
    display: block;
  }

  #event.beyond-stadium-2026
  .stadium-overview__row:nth-child(2) dt {
    margin-bottom: 6px;
  }

  #event.beyond-stadium-2026
  .stadium-overview__row:nth-child(2) dd {
    padding: 0;
  }

  #event.beyond-stadium-2026
  .stadium-overview__row:nth-child(2) dd p:first-child {
    margin: 0;
    text-align: left;
  }

  #event.beyond-stadium-2026
  .stadium-overview__row:nth-child(2) dd p:last-child {
    margin: 4px 0 0 72px;
    text-align: left;
  }
}
#event.beyond-stadium-2026 .stadium-intro__text .text-blue {
	color: #0066cc !important;
	font-weight: 900;
}
/* =========================================================
   SP：主催・協力・お問い合わせを画面中央に配置
========================================================= */

@media screen and (max-width: 767px) {

  #event.beyond-stadium-2026 .stadium-footer__info {
    width: fit-content;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  #event.beyond-stadium-2026 .stadium-footer__contact {
    width: fit-content;
    max-width: 100%;
  }
}
#event.beyond-stadium-2026 .stadium-day-card__etc {
  width: 100%;
  margin: 2px 0 0;
  padding-right: 30px;
  color: #222222;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.4;
  text-align: right;
}

@media screen and (max-width: 767px) {
  #event.beyond-stadium-2026 .stadium-day-card__etc {
    margin-top: 2px;
    padding-right: 100px;
    font-size: 18px;
  }
}

#event.beyond-stadium-2026 .text-brown {
  color: #796A3A;
}

#event.beyond-stadium-2026 .text-gold {
  color: #B98A15;
}

#event.beyond-stadium-2026 .text-black {
  color: #000000;
}



/* =========================================================
   豪華ゲスト紹介文：指定改行
========================================================= */

#event.beyond-stadium-2026 .stadium-guests__intro {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 36px;
  text-align: left;
}

#event.beyond-stadium-2026 .stadium-guests__intro p + p {
  margin-top: 18px;
}

#event.beyond-stadium-2026 .stadium-pc-break {
  display: block;
}

/* SPは画面幅に合わせて自然に折り返す */
@media screen and (max-width: 767px) {
  #event.beyond-stadium-2026 .stadium-guests__intro {
    width: 100%;
  }

  #event.beyond-stadium-2026 .stadium-pc-break {
    display: none;
  }
}
/* =========================================================
   共通見出し：タイトル左右の余白を詰める
========================================================= */

#event.beyond-stadium-2026 .stadium-section-title span {
  padding-right: 0px;
  padding-left: 0px;
}

/* SP */
@media screen and (max-width: 767px) {
  #event.beyond-stadium-2026 .stadium-section-title span {
    padding-right: 0px;
    padding-left: 0px;
  }
}
/* =========================================================
   2日間の楽しみ方：先方参考デザインへ調整
========================================================= */

#event.beyond-stadium-2026 .stadium-day-card {
  min-height: 390px;
}

#event.beyond-stadium-2026 .stadium-day-card__header {
  padding: 14px 22px 6px;
}

#event.beyond-stadium-2026 .stadium-day-card__body {
  padding: 0 24px 18px;
}

#event.beyond-stadium-2026 .stadium-day-card__date {
  font-size: 17px;
}

#event.beyond-stadium-2026 .stadium-day-card__date span {
  font-size: 15px;
}

/* Day1タイトル */
#event.beyond-stadium-2026
.stadium-day-card--day1
.stadium-day-card__title strong {
  color: #B98A15;
}

/* Day2タイトル */
#event.beyond-stadium-2026 .stadium-day-card__title-red {
  color: #ff1717;
}

#event.beyond-stadium-2026 .stadium-day-card__title-blue {
  color: #0068b7;
}

#event.beyond-stadium-2026 .stadium-day-card__title-green {
  color: #26a242;
}

#event.beyond-stadium-2026 .stadium-day-card__title {
  padding-bottom: 5px;
  font-size: 31px;
}

#event.beyond-stadium-2026 .stadium-day-card__title::after {
  bottom: 1px;
  height: 11px;
}

/* 説明文 */
#event.beyond-stadium-2026 .stadium-day-card__lead {
  padding: 0 6px 14px;
  font-size: 20px;
  line-height: 1.4;
}

#event.beyond-stadium-2026
.stadium-day-card--day1
.stadium-day-card__lead {
  color: #08aeea;
}

#event.beyond-stadium-2026
.stadium-day-card--day2
.stadium-day-card__lead {
  color: #002060;
}

/* 箇条書き */
#event.beyond-stadium-2026 .stadium-day-card__list {
  margin-top: 18px;
  padding: 0 8px;
}

#event.beyond-stadium-2026 .stadium-day-card__list li {
  padding-left: 24px;
  font-size: 20px;
  line-height: 1.45;
}

/* Day1の● */
#event.beyond-stadium-2026
.stadium-day-card--day1
.stadium-day-card__list li::before {
  background: #B98A15;
}

/* Day2の●を赤・青・緑に分ける */
#event.beyond-stadium-2026
.stadium-day-card--day2
.stadium-day-card__list li:nth-child(1)::before {
  background: #ff1717;
}

#event.beyond-stadium-2026
.stadium-day-card--day2
.stadium-day-card__list li:nth-child(2)::before {
  background: #0068b7;
}

#event.beyond-stadium-2026
.stadium-day-card--day2
.stadium-day-card__list li:nth-child(3)::before {
  background: #26a242;
}

/* など */
#event.beyond-stadium-2026 .stadium-day-card__etc {
  margin-top: 0;
  padding-right: 80px;
  font-size: 20px;
}

/* 最下部 */
#event.beyond-stadium-2026 .stadium-day-card__cup {
  padding-top: 18px;
  font-size: 18px;
}

#event.beyond-stadium-2026 .stadium-day-card__cup::before {
  top: 17px;
}
/* =========================================================
   PC：2日間の楽しみ方の囲みを小さくする
========================================================= */

@media screen and (min-width: 768px) {

  #event.beyond-stadium-2026 .stadium-days__grid {
    width: min(900px, 100%);
    margin-right: auto;
    margin-left: auto;
    gap: 24px;
  }

  #event.beyond-stadium-2026 .stadium-day-card {
    min-height: 350px;
    border-width: 3px;
    border-radius: 20px;
  }

  #event.beyond-stadium-2026 .stadium-day-card__header {
    padding: 11px 18px 5px;
  }

  #event.beyond-stadium-2026 .stadium-day-card__body {
    padding: 0 20px 15px;
  }
}
/* =========================================================
   2日間の楽しみ方：箇条書きを中央寄りに配置
========================================================= */

#event.beyond-stadium-2026 .stadium-day-card__list {
  width: fit-content;
  max-width: 100%;
  margin: 18px auto 0;
  padding: 0;
}

#event.beyond-stadium-2026 .stadium-day-card__list li {
  text-align: left;
}

/* =========================================================
   2日間の楽しみ方：大会名も中央寄りに配置
========================================================= */

#event.beyond-stadium-2026 .stadium-day-card__cup {
  width: fit-content;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 40px;
  text-align: left;
}
/* =========================================================
   箇条書き：丸と文字の縦位置を中央に合わせる
========================================================= */

#event.beyond-stadium-2026 .stadium-day-card__list li {
  position: relative;
  padding-left: 26px;
}

#event.beyond-stadium-2026 .stadium-day-card__list li::before {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
/* =========================================================
   大会名：＋アイコンと文字の縦位置を中央揃え
========================================================= */

#event.beyond-stadium-2026 .stadium-day-card__cup {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 18px 0 0;
  text-align: left;
}

#event.beyond-stadium-2026 .stadium-day-card__cup::before {
  position: static;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  transform: none;
}
#event.beyond-stadium-2026 .stadium-day-card__date {
  display: block;
  width: 100%;
  text-align: left;
}

#event.beyond-stadium-2026 .stadium-day-card__date span {
  margin-right: 6px;
}

/* =========================================================
   SP：2日間の楽しみ方 文字サイズを約1.3倍
========================================================= */

@media screen and (max-width: 767px) {
  #event.beyond-stadium-2026 .stadium-day-card {
  min-height: 0;
}

  /* Day1 10月31日（土）9：00～18：30 */
   #event.beyond-stadium-2026 .stadium-day-card__date,
  #event.beyond-stadium-2026 .stadium-day-card__date span {
    font-size: 14px;
  }


  /* ボッチャ de 運動会 */
  #event.beyond-stadium-2026 .stadium-day-card__title {
    font-size: 25px;
  }

  /* 2日間楽しめる～ */
  #event.beyond-stadium-2026 .stadium-day-card__lead {
    font-size: 17px;
  }

  /* ●ボッチャ体験コーナー など */
  #event.beyond-stadium-2026 .stadium-day-card__list li {
    font-size: 16px;
  }

  /* 東京都知事杯ボッチャ大会 予選リーグ */
  #event.beyond-stadium-2026 .stadium-day-card__cup {
  margin-top: 12px;
  padding-top: 0;
  font-size: 16px;
}

  /* 「など」 */
  #event.beyond-stadium-2026 .stadium-day-card__etc {
    font-size: 14px;
  }
}



/* オレンジラベル */
#event.beyond-stadium-2026 .stadium-guest-card__role--orange {
  background: #f28c28 !important;
}

#event.beyond-stadium-2026
.stadium-day-card__date
.text-blue {
  color: #08aeea !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  margin-right: 0;
}

#event.beyond-stadium-2026
.stadium-day-card__date
.text-red {
  color: #ff5050 !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  margin-right: 0;
}
/* =========================================================
   豪華ゲスト紹介文：個別の文字色
========================================================= */
/* Day2：説明文下の横線だけ赤にする */
#event.beyond-stadium-2026
.stadium-day-card--day2
.stadium-day-card__lead {
  border-bottom-color: #ff1717;
}

/* 最後の段落をいったん通常色へ戻す */
#event.beyond-stadium-2026 .stadium-guests__intro p:last-child {
  color: #222222;
  font-weight: 500;
}

/* 赤文字 */
#event.beyond-stadium-2026 .stadium-guests__intro .text-red {
  color: #ff5050 !important;
  font-weight: 900;
}

/* 青文字 */
#event.beyond-stadium-2026 .stadium-guests__intro .text-blue {
  color: #00aeea !important;
  font-weight: 900;
}
#event.beyond-stadium-2026 .stadium-guests__intro .text-Frenchblue {
  color: #0068B7 !important;
  font-weight: 900;
}

/* 通常時 */
#event.beyond-stadium-2026 .stadium-button--outline {
  color: #B98A15;
  border-color: #B98A15;
}



/* ホバー時 */
#event.beyond-stadium-2026 .stadium-button--outline:hover {
  color: #ffffff;
  border-color: #B98A15;
  background: #B98A15;
}

#event.beyond-stadium-2026
.stadium-button--outline:hover
.text-black {
  color: #ffffff;
}

#event.beyond-stadium-2026 .stadium-day-card__lead {
  margin-top: 8px;
}
/* 開催概要：参加費を赤にする */
#event.beyond-stadium-2026
.stadium-overview__row:nth-child(5)
dt {
  color: var(--stadium-red);
}
/* =========================================================
   主催・協力：項目名と本文の間隔を詰める
   PC
========================================================= */
@media screen and (min-width: 768px) {
  #event.beyond-stadium-2026 .stadium-footer__row {
    grid-template-columns: 88px auto;
    gap: 8px;
  }
}

/* =========================================================
   PC：KV上部の紙吹雪を画面外周側へ配置
========================================================= */





/* =========================================================
   紙吹雪：共通
========================================================= */

#event.beyond-stadium-2026 {
  position: relative;
}

#event.beyond-stadium-2026 .stadium-confettis {
  position: absolute;
  z-index: 5;
  inset: 0;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
}

#event.beyond-stadium-2026 .stadium-confetti {
  position: absolute;
  display: none;
  width: 24px;
  height: 16px;
  border-radius: 2px;
}

#event.beyond-stadium-2026 .stadium-confetti--red {
  background: #e83828;
}

#event.beyond-stadium-2026 .stadium-confetti--blue {
  background: #0068b7;
}

#event.beyond-stadium-2026 .stadium-confetti--yellow {
  background: #ffe600;
}

#event.beyond-stadium-2026 .stadium-confetti--green {
  background: #34b56a;
}


/* =========================================================
   PC
========================================================= */

@media screen and (min-width: 768px) {

  #event.beyond-stadium-2026 .stadium-confettis {
    height: 7380px;
  }

  #event.beyond-stadium-2026 .stadium-confetti.is-falling {
    top: 100px;
    right: auto;
    bottom: auto;
    display: block;
    opacity: 0;
    animation:
      stadium-confetti-fall-pc
      var(--confetti-duration, 60s)
      linear
      var(--confetti-delay, 0s)
      infinite;
    will-change: transform, opacity;
  }
}

@keyframes stadium-confetti-fall-pc {
  0% {
    opacity: 0;
    transform:
      translate3d(0, 0, 0)
      rotate(var(--confetti-rotate-start, 0deg));
  }

  3% {
    opacity: 1.0;
  }

  50% {
    opacity: 1.0;
    transform:
      translate3d(
        var(--confetti-drift-middle, 20px),
       3640px,
        0
      )
      rotate(var(--confetti-rotate-middle, 180deg));
  }

  97% {
    opacity: 1.0;
  }

  100% {
    opacity: 0;
    transform:
      translate3d(
        var(--confetti-drift-end, -20px),
        7180px,
        0
      )
      rotate(var(--confetti-rotate-end, 360deg));
  }
}


/* =========================================================
   SP
========================================================= */

@media screen and (max-width: 767px) {

  #event.beyond-stadium-2026 .stadium-confettis {
    height: var(--stadium-confetti-height, 9000px);
  }

  #event.beyond-stadium-2026 .stadium-confetti.is-falling {
    top: 100px;
    right: auto;
    bottom: auto;
    display: block;
    opacity: 0;
    animation:
      stadium-confetti-fall-sp
      var(--confetti-duration, 90s)
      linear
      var(--confetti-delay, 0s)
      infinite;
    will-change: transform, opacity;
  }

  #event.beyond-stadium-2026 .stadium-kv__inner,
  #event.beyond-stadium-2026 .stadium-container {
    position: relative;
    z-index: 6;
  }
}

@keyframes stadium-confetti-fall-sp {
  0% {
    opacity: 0;
    transform:
      translate3d(0, 0, 0)
      rotate(var(--confetti-rotate-start, 0deg));
  }

  3% {
    opacity: 1.0;
  }

  50% {
    opacity: 1.0;
    transform:
      translate3d(
        var(--confetti-drift-middle, 12px),
        calc(var(--stadium-confetti-distance, 8000px) / 2),
        0
      )
      rotate(var(--confetti-rotate-middle, 180deg));
  }

  97% {
    opacity: 0.5;
  }

  100% {
    opacity: 0;
    transform:
      translate3d(
        var(--confetti-drift-end, -12px),
        var(--stadium-confetti-distance, 8000px),
        0
      )
      rotate(var(--confetti-rotate-end, 360deg));
  }
}

@media (prefers-reduced-motion: reduce) {
  #event.beyond-stadium-2026 .stadium-confetti.is-falling {
    display: none;
    animation: none;
  }
}

/* =========================================================
   SP：共通セクション見出し
   開催概要／2日間の楽しみ方／豪華ゲスト／ボッチャ大会
========================================================= */

@media screen and (max-width: 767px) {

  #event.beyond-stadium-2026 .stadium-section-title {
    width: 100%;
    margin: 0 0 8px;
    padding: 0;
    overflow: visible;
    text-align: center;
  }

  #event.beyond-stadium-2026 .stadium-section-title span {
    position: relative;
    display: inline-block;
    max-width: calc(100% - 90px);
    padding: 6px 0 10px;
    font-size: 26px;
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  #event.beyond-stadium-2026 .stadium-section-title span::before,
  #event.beyond-stadium-2026 .stadium-section-title span::after {
    display: block;
    top: 50%;
    width: 72px;
    height: 34px;
    transform-origin: center;
  }

  #event.beyond-stadium-2026 .stadium-section-title span::before {
    right: calc(100% - 4px);
    left: auto;
    transform: translateY(-50%) rotate(25deg) scale(0.58);
  }

  #event.beyond-stadium-2026 .stadium-section-title span::after {
    right: auto;
    left: calc(100% - 4px);
    transform: translateY(-50%) rotate(-25deg) scale(0.58);
  }
}

/* =========================================================
   開催概要：日時 最終調整
========================================================= */

/* PC */
@media screen and (min-width: 768px) {

  #event.beyond-stadium-2026
  .stadium-overview__row--date
  .stadium-overview__date {
    display: block;
  }

  #event.beyond-stadium-2026
  .stadium-overview__date-item {
    display: block;
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
  }

  #event.beyond-stadium-2026
  .stadium-overview__date-item + .stadium-overview__date-item {
    margin-top: 6px;
    margin-left: 78.7px;
  }

  #event.beyond-stadium-2026
  .stadium-overview__year,
  #event.beyond-stadium-2026
  .stadium-overview__date-day,
  #event.beyond-stadium-2026
  .stadium-overview__date-time {
    display: inline;
  }

  #event.beyond-stadium-2026
  .stadium-overview__date-day,
  #event.beyond-stadium-2026
  .stadium-overview__date-time {
    margin-left: 4px;
  }
}

/* SP */
@media screen and (max-width: 767px) {

  #event.beyond-stadium-2026
  .stadium-overview__row--date {
    display: block;
  }

  #event.beyond-stadium-2026
  .stadium-overview__row--date
  .stadium-overview__date {
    display: block;
    padding: 0;
  }

  #event.beyond-stadium-2026
  .stadium-overview__date-item {
    display: block;
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.6;
  }

  #event.beyond-stadium-2026
  .stadium-overview__date-item + .stadium-overview__date-item {
    margin-top: 8px;
  }

  #event.beyond-stadium-2026
  .stadium-overview__year,
  #event.beyond-stadium-2026
  .stadium-overview__date-day,
  #event.beyond-stadium-2026
  .stadium-overview__date-time {
    display: block;
    margin: 0;
  }

  #event.beyond-stadium-2026
  .stadium-overview__date-day,
  #event.beyond-stadium-2026
  .stadium-overview__date-time {
    margin-left: 4.3em;
  }
}


/* =========================================================
   SP：共通見出し下の余白を詰める
========================================================= */

@media screen and (max-width: 767px) {

  #event.beyond-stadium-2026 .stadium-section-title {
    margin-bottom: 0;
  }

  #event.beyond-stadium-2026 .stadium-section-title span {
    padding-bottom: 4px;
  }
}

/* =========================================================
   SP：ボッチャ大会写真3枚を
   写真1・写真3／写真2 の逆三角形配置
========================================================= */

@media screen and (max-width: 767px) {

  #event.beyond-stadium-2026 .stadium-boccia__photos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "photo1 photo3"
      "photo2 photo2";
    gap: 12px;
    width: 100%;
    margin: 0 auto 34px;
  }

  #event.beyond-stadium-2026 .stadium-boccia__photo:nth-child(1) {
    grid-area: photo1;
  }

  #event.beyond-stadium-2026 .stadium-boccia__photo:nth-child(2) {
    grid-area: photo2;
    width: calc(50% - 6px);
    justify-self: center;
  }

  #event.beyond-stadium-2026 .stadium-boccia__photo:nth-child(3) {
    grid-area: photo3;
  }

  #event.beyond-stadium-2026 .stadium-boccia__photo {
    margin: 0;
    aspect-ratio: 4 / 3;
  }

  #event.beyond-stadium-2026 .stadium-boccia__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* =========================================================
   開催概要：日時 SP表示最終調整
========================================================= */

/* 2日目の2026年はPCでは非表示 */
#event.beyond-stadium-2026 .stadium-overview__sp-year {
  display: none;
}

@media screen and (max-width: 767px) {

  #event.beyond-stadium-2026
  .stadium-overview__date-item {
    display: block;
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.6;
  }

  #event.beyond-stadium-2026
  .stadium-overview__date-item + .stadium-overview__date-item {
    margin-top: 8px;
    margin-left: 0;
  }

  /* 日付部分は横並び */
  #event.beyond-stadium-2026
  .stadium-overview__first-date,
  #event.beyond-stadium-2026
  .stadium-overview__sp-year,
  #event.beyond-stadium-2026
  .stadium-overview__date-day {
    display: inline;
    margin: 0;
  }

  /* 時間は次の行へ */
  #event.beyond-stadium-2026
  .stadium-overview__date-time {
    display: block;
    margin: 0;
    padding-left: 1.6em;
  }
}
@media screen and (min-width: 768px) {
  #event.beyond-stadium-2026
  .stadium-overview__date-item + .stadium-overview__date-item {
    margin-top: 6px;
    margin-left: 80px;
  }
}