@charset "UTF-8";

/* --------------------------------------------------------------------------
   引退LP（.p-retirement-lp）
   SP: vw / PC: px + max-width で中央寄せ
   -------------------------------------------------------------------------- */

html {
  scroll-behavior: smooth;
}

:root {
  --retire-yellow: #fff200;
  /* セクション見出し（.title のグロー／ヘッドライン内線など） */
  --retire-title-edge: #ffd814;
  --retire-black: #000000;
  --retire-white: #ffffff;
  --retire-max: 750px;
  /* PC: セクション内コンテンツ幅（背景はセクション全幅のまま） */
  /* --event-pc-inner-width: 50%; */
  --event-pc-inner-max: 768px;
  /* PCナビリスト幅（1920×30% 相当でビューポート非依存） */
  --site-nav-pc-list-max: 576px;
  /* 本文 */
  --font-body: "Noto Sans JP", sans-serif;
  /* メッセージ見出しとイベントカード見出しを同一に（.event-tabs の Hiragino を上書き） */
  --font-message-title: var(--font-body);
  /* タイトル（英字見出し）: Barlow Condensed Bold → 類似のコンデンス系 */
  --font-title: "Barlow Condensed", "Roboto Condensed", "Arial Narrow", "Helvetica Neue",
    sans-serif;
}

body {
  font-family: var(--font-body);
  background-color: #fffbe2;
  background-size: 100% auto;
  overflow-x: hidden;
}

body.is-fixed {
  overflow: hidden;
}

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  letter-spacing: 0.05em;
  font-style: normal;
  border: none;
  appearance: none;
  line-height: 1.6428571429;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

main {
  display: block;
  overflow: visible;
  padding-top: 56px;
  /* 固定ヘッダー分（コンテンツ着手時に調整可） */
}

/* ページ内リンクスクロール時、固定ヘッダーに隠れないようにする */
#match-detail,
#event-tabs,
#host-snap,
#message {
  scroll-margin-top: 72px;
}

@media (min-width: 768px) {

  #match-detail,
  #event-tabs,
  #host-snap,
  #message {
    scroll-margin-top: 116px;
  }
}

img {
  max-height: 100%;
  max-width: 100%;
  vertical-align: bottom;
}

/* --------------------------------------------------------------------------
   イベントLP — ヘッダー / フルスクリーンナビ（SPファースト）
   ブランド黄: var(--retire-yellow) = #fff200
   -------------------------------------------------------------------------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.site-header__bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  min-height: 56px;
  background-color: var(--retire-yellow);
}

.site-header__logo {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 8px 12px;
  min-width: 0;
}

.site-header__logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: min(82vw, 420px);
}

.site-header__logo img {
  width: auto;
  height: auto;
  max-height: 40px;
  max-width: 100%;
  object-fit: contain;
}

.site-header__menu-btn {
  flex: 0 0 56px;
  width: 56px;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  background-color: var(--retire-black);
  cursor: pointer;
  padding: 0;
  touch-action: manipulation;
}

.site-header__menu-icon {
  position: relative;
  width: 24px;
  height: 18px;
  display: block;
}

.site-header__menu-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--retire-white);
  border-radius: 1px;
  transition:
    transform 0.3s ease,
    opacity 0.25s ease,
    top 0.3s ease,
    bottom 0.3s ease;
}

.site-header__menu-line:nth-child(1) {
  top: 0;
}

.site-header__menu-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.site-header__menu-line:nth-child(3) {
  bottom: 0;
}

.site-header.is-open .site-header__menu-line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.site-header.is-open .site-header__menu-line:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) scaleX(0);
}

.site-header.is-open .site-header__menu-line:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: 0;
  z-index: 1;
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  min-height: 100dvh;
  background-color: var(--retire-yellow);
  padding: calc(56px + 28px) clamp(24px, 8vw, 48px) 48px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.site-header.is-open .site-nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-nav__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 30px;
}

.site-nav__link {
  font-family: var(--font-message-title);
  display: inline-block;
  color: var(--retire-black);
  font-weight: 900;
  font-size: 5.5vw;
  max-width: 100%;
  padding-top: 10px;
  padding-bottom: 0.55em;
  margin-bottom: 1.35em;
  border-bottom: 1px solid var(--retire-black);
  line-height: 1.45;
}

.site-nav__link--en {
  font-family: var(--font-message-title);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {

  .site-header__menu-line,
  .site-nav {
    transition: none;
  }
}

@media (min-width: 768px) {
  .site-header__bar {
    min-height: 100px;
  }

  .site-header__menu-btn {
    flex: 0 0 100px;
    width: 100px;
  }

  .site-header__menu-icon {
    width: 50px;
    height: 40px;
  }

  .site-header__menu-line {
    height: 4px;
  }

  .site-header__logo img {
    max-height: 60px;
  }

  .site-nav {
    padding: calc(100px + 28px) 48px 48px;
  }

  .site-nav__list {
    align-items: flex-start;
    width: 100%;
    max-width: var(--site-nav-pc-list-max);
    margin: 50px auto 0;
  }

  .site-nav__item {
    width: 100%;
  }

  .site-nav__link {
    text-align: left;
    font-size: 28px;
    width: 100%;
    margin-bottom: 20px;
  }
}

/* --------------------------------------------------------------------------
   イベントLP — KV（PC / SP は .pc / .sp で切替）
   -------------------------------------------------------------------------- */

.kv {
  width: 100%;
}

.kv img {
  width: 100%;
  height: auto;
  display: block;
  max-height: none;
}

/* SP ファースト: 既定は SP 表示 */
.kv .pc {
  display: none;
}

.kv .sp {
  display: block;
}

@media (min-width: 768px) {
  .kv .pc {
    display: block;
  }

  .kv .sp {
    display: none;
  }

  .kv {
    padding-top: 43px;
  }
}

/* --------------------------------------------------------------------------
   イベントLP — INTRO
   -------------------------------------------------------------------------- */

.intro {
  background-color: var(--retire-white);
  padding: 30px 20px 30px;
}

.intro__inner {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.intro__text {
  color: var(--retire-black);
  font-weight: 700;
  font-size: 4.3vw;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

@media (min-width: 768px) {
  .intro__inner {
    padding: 50px 0;
  }

  .intro__text {
    font-size: 18px;
    line-height: 1.4;
  }
}

/* --------------------------------------------------------------------------
   イベントLP — MATCH DETAIL
   -------------------------------------------------------------------------- */

.match-detail {
  background: url("../img/bg.png") center top / cover no-repeat;
  padding: 30px 14px 36px;
  /* border-radius: 0 0 52px 52px / 0 0 26px 26px; */
  overflow: hidden;
}

.match-detail__inner {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  padding-bottom: 30px;
}

.match-detail__league-logo {
  margin: 0 0 14px;
}

.match-detail__league-logo img {
  width: 100%;
  max-width: 430px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.match-detail__round {
  border: 2px solid var(--retire-black);
  text-align: center;
  font-size: 7.2vw;
  font-weight: 800;
  line-height: 1.15;
  padding: 6px 10px 8px;
  margin-bottom: 20px;
}

.match-detail__title {
  font-family: var(--font-message-title);
  text-align: center;
  font-size: 6.4vw;
  line-height: 1.15;
  font-weight: 900;
  margin-bottom: 20px;
}

.match-detail__teams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4vw;
  margin-bottom: 26px;
}

.match-detail__team {
  flex: 0 1 38%;
}

.match-detail__team img {
  width: 100%;
  height: auto;
  display: block;
}

.match-detail__vs {
  flex: 0 0 auto;
  font-size: 12vw;
  line-height: 1;
  font-weight: 900;
}

.match-detail__info {
  margin-bottom: 24px;
}

.match-detail__info-row+.match-detail__info-row {
  margin-top: 16px;
}

.match-detail__label {
  display: block;
  background-color: #fff;
  text-align: center;
  font-size: 5vw;
  font-weight: 600;
  line-height: 1.2;
  padding: 5px 0px 5px;
}

.match-detail__value {
  margin-top: 10px;
  text-align: center;
  color: var(--retire-black);
  font-size: 5vw;
  font-weight: 600;
  line-height: 1.25;
}

.match-detail__cta-wrap {
  text-align: center;
}

.match-detail__cta {
  font-family: var(--font-message-title);
  display: inline-block;
  min-width: min(85%, 460px);
  background-color: var(--retire-black);
  color: var(--retire-white);
  font-size: 4.1vw;
  font-weight: 600;
  line-height: 1.2;
  border-radius: 999px;
  padding: 12px 40px 12px 24px;
}

.match-detail__cta::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--retire-white);
}


@media (min-width: 768px) {
  .match-detail {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-image: url("../img/bg-4.png");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0px 150px;
  }

  .match-detail__inner {
    padding-bottom: 0px;
  }

  .match-detail__league-logo img {
    max-width: 98%;
  }

  .match-detail__team img {
    width: 90%;
    display: block;
    margin: 0 auto;
  }

  .match-detail__teams {
    margin: 50px 0;
    gap: 2vw;
  }

  .match-detail__round {
    font-size: 36px;
    margin-bottom: 50px;
  }

  .match-detail__title {
    font-size: 42px;
  }

  .match-detail__vs {
    font-size: 72px;
  }

  .match-detail__label {
    font-size: 32px;
  }

  .match-detail__value {
    font-size: 32px;
    margin: 30px 0;
  }

  .match-detail__cta {
    font-size: 28px;
    width: 95%;
    padding: 23px 0;
  }

  .match-detail__cta::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 35px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 25px solid var(--retire-white);
  }

  .match-detail__cta-wrap {
    width: 80%;
    margin: 50px auto;
  }
}

/* --------------------------------------------------------------------------
   イベントLP — EVENT TABS
   -------------------------------------------------------------------------- */

.event-tabs {
  width: 100%;
  margin-top: 30px;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}

.event-tabs__tab-list {
  display: flex;
  align-items: flex-end;
  position: sticky;
  top: 56px;
  z-index: 20;
}

.event-tabs__tab {
  font-family: var(--font-message-title);
  flex: 1 1 0;
  text-align: center;
  color: var(--retire-black);
  font-size: 4vw;
  font-weight: 900;
  line-height: 1.2;
  padding: 12px 0px 12px;
  border: none;
  /* border-radius: 26px 26px 0 0; */
  cursor: pointer;
}

.event-tabs__tab:nth-child(1) {
  background-color: #f26800;

}

.event-tabs__tab:nth-child(2) {
  background-color: #fff200;
}

.event-tabs__tab:nth-child(3) {
  background-color: #f2a900;
}

.event-tabs__tab.is-active {
  z-index: 1;
}

.event-tabs__panels {
  min-height: 260px;
}

.event-tabs__panel {
  min-height: 260px;
}

.event-tabs__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 10px 28px;

}

.event-tabs__time-icon {
  width: 100px;
  /* transform: rotate(-8deg); */
}

.event-tabs__time-icon img {
  width: 100%;
  height: auto;
  display: block;
}

.event-tabs__event-image {
  width: 100%;
}

.event-tabs__event-image img {
  width: 100%;
  height: auto;
  display: block;
}

.event-tabs__heading {
  font-family: var(--font-message-title);
  position: relative;
  text-align: center;
  color: var(--retire-black);
  font-size: 7vw;
  font-weight: 900;
  line-height: 1.1;
  padding-bottom: 14px;
}

.event-tabs__heading::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 30%;
  height: 4px;
  background-color: var(--retire-black);
  border-radius: 999px;
}

.event-tabs__lead {
  text-align: center;
  color: var(--retire-black);
  font-size: 2.8vw;
  font-weight: 700;
  line-height: 1.4;
}

.event-tabs__gallery {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.event-tabs__gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.event-card {
  width: 100%;
  background-color: var(--retire-black);
  border-radius: 8px;
  padding: 8px;
  overflow: hidden;
}

.event-card__image img {
  width: 100%;
  height: auto;
  display: block;
}

.event-card__body {
  background-color: var(--retire-white);
  text-align: center;
  padding: 10px 8px 12px;
}

.event-card--stadium .event-card__body {
  background-color: #fff200;
}

.event-card__tag {
  font-family: var(--font-message-title);
  font-size: 4vw;
  font-weight: 900;
  line-height: 1.1;
}

.event-card__title {
  font-family: var(--font-message-title);
  position: relative;
  margin-top: 8px;
  padding-top: 12px;
  font-size: 5vw;
  font-weight: 900;
  line-height: 1.2;
}

.event-card__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 14%;
  height: 4px;
  background-color: var(--retire-black);
  border-radius: 999px;
}

.event-card__foot {
  background-color: #fff200;
  text-align: center;
  font-size: 2.8vw;
  font-weight: 700;
  line-height: 1.3;
  padding: 20px 8px 20px;
}

.host-snap__cta.event-card__modal-trigger {
  display: none;
}

.event-card__foot-text {
  width: 80%;
  margin: 0 auto;
  display: block;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  white-space: normal;
  line-height: 1.35;
  letter-spacing: 0.03em;
}

.event-card__check-list {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 55%;
  margin: 10px auto 0;
}

.event-card__check-item {
  background-color: var(--retire-white);
  font-size: 3vw;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  padding: 7px 10px 8px 30px;
}

.event-card__check-item::before {
  content: "✓";
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4.1vw;
  font-weight: 900;
  line-height: 1;
}

.event-panel-note {
  width: 100%;
  margin-top: 8px;
}

.event-panel-note__title {
  background-color: var(--retire-black);
  color: var(--retire-white);
  text-align: center;
  font-size: 5vw;
  font-weight: 900;
  line-height: 1.15;
  padding: 10px 10px 10px;
  width: 80%;
  margin: 0 auto;
}

.event-panel-note__text {
  margin-top: 12px;
  text-align: center;
  color: var(--retire-black);
  font-size: 3vw;
  font-weight: 700;
  line-height: 1.35;
}

.event-tabs--is-left .event-tabs__panels {
  background-color: #f26800;
}

.event-tabs--is-center .event-tabs__panels {
  background-color: #fff200;
}

.event-tabs--is-right .event-tabs__panels {
  background-color: #f2a900;
}

@media (min-width: 768px) {
  .event-tabs__content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
    align-items: start;
    padding: 32px 24px 40px;
  }

  .event-tabs__time-icon,
  .event-tabs__heading,
  .event-tabs__lead,
  .event-tabs__gallery,
  .event-panel-note,
  .event-tabs__content>.match-detail__cta-wrap {
    grid-column: 1 / -1;
  }

  /* 中央タブのみ：article を1カラム・幅60%で中央寄せ */
  #panel-center .event-tabs__content>.event-card--stadium {
    grid-column: 1 / -1;
    width: 60%;
    max-width: 60%;
    justify-self: center;
  }

  .event-tabs__time-icon,
  .event-tabs__heading,
  .event-tabs__lead,
  .event-panel-note,
  .event-tabs__content>.match-detail__cta-wrap {
    justify-self: stretch;
  }

  .event-tabs__time-icon,
  .event-tabs__heading,
  .event-tabs__lead {
    text-align: center;
  }

  .event-tabs__time-icon img {
    width: 80%;
    margin: 0 auto;
  }

  .event-tabs__time-icon {
    width: 250px;
    margin: 20px auto 0;
  }

  .event-tabs__heading::after {
    height: 7px;
    width: 15%;
  }

  .event-tabs__heading {
    padding-bottom: 35px;
  }

  .event-tabs__lead {
    padding-top: 0px;
    font-size: 18px;
  }

  .event-tabs__tab {
    font-size: 28px;
    /* border-radius: 32px 32px 0 0; */
    padding: 18px 12px 16px;
  }

  .event-tabs__tab-list {
    top: 100px;
  }

  .event-tabs__heading {
    font-size: 42px;
  }

  .event-card {
    width: 100%;
    padding: 10px 0;
  }

  .event-card__image,
  .event-card__body,
  .event-card__foot {
    width: 94%;
    margin: 0 auto;
  }

  .event-card__tag {
    font-size: 22px;
    margin: 10px 0;

  }

  .event-card__title {
    font-size: 24px;
    padding: 13px 0;
  }

  .event-card__title.uni {
    font-size: 26px;
  }

  .event-card__foot {
    font-size: 18px;
    padding: 20px 0;
    /* max-height: 160px;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain; */
  }

  .event-card__foot-text {
    display: none;
  }

  .host-snap__cta.event-card__modal-trigger {
    display: block;
    width: 70%;
    font-size: 24px;
    padding: 15px 0px;
    text-align: left;
    letter-spacing: 0.02em;
    margin: 0 auto;
    text-align: center;
  }

  .event-card__check-list {
    width: 90%;
  }

  .event-card__check-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    padding: 10px 16px 11px;
    text-align: center;
  }

  .event-card__check-item::before {
    position: static;
    left: auto;
    transform: none;
    flex-shrink: 0;
    font-size: 24px;
  }

  .event-panel-note__title {
    font-size: 46px;
  }

  .event-panel-note__text {
    font-size: 20px;
  }

  .event-modal__dialog {
    width: calc(100% - 80px);
    max-width: 900px;
    max-height: calc(100vh - 80px);
    margin: 40px auto;
    padding: 72px 32px 40px;
  }

  .event-modal__close {
    width: 56px;
    height: 56px;
  }

  .event-modal__close span {
    width: 24px;
  }

  .event-modal__body .event-card {
    max-width: 670px;
  }

  .event-modal__body .event-card {
    padding: 18px 0;
  }

  .event-modal__body .event-card__foot>span {
    text-align: left;
  }
}

/* --------------------------------------------------------------------------
   イベントLP — HOST GAME SNAP
   -------------------------------------------------------------------------- */

.host-snap {
  background: url("../img/bg-2.png") center top / cover no-repeat;
  padding: 34px 18px 30px;
  margin-top: -10px;
  z-index: 100;
}

.host-snap__inner {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

.host-snap__title {
  font-family: var(--font-message-title);
  text-align: center;
  color: var(--retire-black);
  font-size: 9vw;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.04em;
}

.host-snap__title::after {
  content: "";
  display: block;
  width: 14vw;
  height: 0.4vw;
  margin: 14px auto 0;
  border: 0.45vw solid #000;
  background-color: #000;
  border-radius: 999px;
}

.host-snap__gallery-wrap {
  margin-top: 18px;
  position: relative;
  overflow: hidden;
  transition: max-height 0.55s ease;
}

/* HOST GAME SNAP箇所に7枚目以降の写真を追加する場合はこのコメントアウトを解除してください */
/* .host-snap__gallery-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80px;
  pointer-events: none;
  background: linear-gradient(to bottom,
      rgba(239, 239, 239, 0) 0%,
      rgba(239, 239, 239, 0.9) 70%,
      rgba(239, 239, 239, 1) 100%);
} */

.host-snap__gallery-wrap.is-expanded::after {
  display: none;
}

.host-snap__gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.host-snap__item {
  flex: 0 0 calc((100% - 10px) / 2);
}

.host-snap__item img {
  width: 100%;
  height: auto;
  display: block;
}

.host-snap__item.is-hidden {
  display: none;
}

.host-snap__cta-wrap {
  text-align: center;
  margin-top: 14px;
}

.host-snap__cta {
  display: inline-block;
  /* min-width: 186px; */
  background-color: var(--retire-black);
  color: var(--retire-white);
  font-family: var(--font-title);
  font-size: 4vw;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  border-radius: 999px;
  padding: 10px 0px 10px;
  cursor: pointer;
  width: 30%;
}

.event-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
}

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

.event-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
}

.event-modal__dialog {
  position: relative;
  z-index: 1;
  width: calc(100% - 32px);
  max-width: 760px;
  max-height: calc(100vh - 32px);
  margin: 16px auto;
  background-color: #fffbe2;
  overflow-y: auto;
  padding: 56px 16px 24px;
}

.event-modal__close {
  position: sticky;
  top: 0;
  display: block;
  width: 40px;
  height: 40px;
  margin-left: auto;
  background-color: var(--retire-black);
  border-radius: 999px;
  z-index: 2;
}

.event-modal__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background-color: var(--retire-white);
}

.event-modal__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.event-modal__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.event-modal__body {
  margin-top: -24px;
}

.event-modal__body .event-card {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

.event-modal__body .event-card__foot {
  max-height: none;
  overflow: visible;
}

.event-modal__body .event-card__foot>span {
  display: block;
  width: 80%;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .event-modal {
    display: none;
  }
}

@media (min-width: 768px) {
  .host-snap {
    margin-top: -30px;
    padding-bottom: 50px;
  }

  .host-snap__title {
    font-size: 50px;
    margin-top: 50px;
  }

  .host-snap {
    padding: 44px 32px 40px;
  }

  .host-snap__title::after {
    width: 98px;
    height: 2px;
    margin-top: 50px;
    margin-bottom: 50px;
    border: 0.2vw solid #000;
  }

  .host-snap__gallery-wrap {
    margin-top: 30px;
  }

  .host-snap__gallery {
    gap: 14px;
  }

  .host-snap__item {
    flex: 0 0 calc((100% - 14px) / 2);
  }

  .host-snap__cta-wrap {
    margin-top: 20px;
    /* margin-top: -68px; */
  }

  .host-snap__cta {
    min-width: 216px;
    font-size: 34px;
    padding: 15px 0px 15px;
  }


}

/* --------------------------------------------------------------------------
   イベントLP — MESSAGE
   -------------------------------------------------------------------------- */

.message {
  background: url("../img/bg-3.jpg") center center / cover no-repeat;
  padding: 38px 16px 44px;
  margin-top: -10px;
}

.message__inner {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.message__title {
  font-family: var(--font-message-title);
  color: var(--retire-black);
  font-size: 8vw;
  font-weight: 900;
  line-height: 1.08;
}

.message__title::after {
  content: "";
  display: block;
  width: 14vw;
  height: 1.2vw;
  margin: 14px auto 0;
  background-color: var(--retire-black);
  border-radius: 999px;
}

.message__lead {
  margin: 18px 0;
  color: var(--retire-black);
  font-size: 2.8vw;
  font-weight: 700;
  line-height: 1.45;
}

@media (min-width: 768px) {

  /* 背景画像つきセクションは外枠100%、中身のみ60%＋max-width（KV・フッターは対象外） */
  .intro__inner,
  .match-detail__inner,
  .host-snap__inner,
  .message__inner {
    width: var(--event-pc-inner-width);
    max-width: var(--event-pc-inner-max);
    margin-left: auto;
    margin-right: auto;
  }

  /* イベントタブはセクション背景なしのためブロック全体を60%に */
  .event-tabs {
    width: var(--event-pc-inner-width);
    max-width: var(--event-pc-inner-max);
    margin-left: auto;
    margin-right: auto;
  }


  .message {
    padding: 60px 28px 13px
  }

  .message__title {
    font-size: 42px;
  }

  .message__title::after {
    width: 98px;
    height: 6px;
    margin-top: 25px;
  }

  .message__lead {
    margin-top: 20px;
    margin-bottom: 22px;
    font-size: 24px;
  }
}

.p-footer {
  min-height: 0;
}

.g-footer {
  background: #000;
}

.g-footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #faf600;
}

.g-footer__sns a,
.g-footer__sns img {
  display: block;
}

.g-footer__logo {
  display: block;
  margin: 0 auto;
}

.g-footer__copy {
  color: #fff;
  text-align: center;
}

@media (min-width: 768px) {
  .g-footer {
    padding-bottom: 60px;
  }

  .g-footer__sns {
    height: 240px;
  }

  .g-footer__sns a {
    width: 80px;
    margin: 0 30px;
  }

  .g-footer__logo {
    width: 540px;
    margin-top: 70px;
    margin-bottom: 90px;
  }

  .g-footer__logo img {
    width: 100%;
  }

  .g-footer__copy {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .g-footer {
    padding-bottom: 6.976744186vw;
  }

  .g-footer__sns {
    height: 27.9069767442vw;
  }

  .g-footer__sns a {
    width: 9.3023255814vw;
    margin: 0 3.488372093vw;
  }

  .g-footer__logo {
    width: 62.7906976744vw;
    margin-top: 8.1395348837vw;
    margin-bottom: 10.4651162791vw;
  }

  .g-footer__copy {
    font-size: 2.3255813953vw;
  }
}

.sp {
  display: block;
}

.pc {
  display: none;
}

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

  .pc {
    display: block;
  }
}

/* 下部追従CTA */
.fixed-cta-wrap {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 9999;
  padding: 0;
  pointer-events: none;
}

.fixed-cta {
  display: flex;
  width: 100%;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.18);
  pointer-events: auto;
}

.cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 5px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.25s ease;
  box-sizing: border-box;
}

.cta-btn:hover {
  opacity: 0.9;
}

.cta-btn-ticket {
  background: #ffd400;
  color: #111;
}

.cta-btn-special {
  background: #111;
  color: #fff;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.fixed-cta-wrap {
  transition: opacity 0.3s ease;
}

body.is-event-modal-open .fixed-cta-wrap {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cta-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

/* PCは中央寄せ＆少しだけ浮かせる */
@media screen and (min-width: 768px) {
  .fixed-cta-wrap {
    bottom: 16px;
    padding: 0 16px;
  }

  .fixed-cta {
    max-width: 520px;
    margin: 0 auto;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }
}

@media screen and (min-width: 768px) {
  .cta-btn {
    min-height: 72px;
    /* 高さアップ */
    font-size: 16px;
    /* 文字サイズアップ */
    padding: 5px 16px;
    /* 余白増やす */
  }

  .cta-icon {
    width: 75px;
    /* アイコンも少し大きく */
    height: 75px;
  }
}

@media screen and (min-width: 768px) {
  .fixed-cta {
    max-width: 640px;
    /* ←今より広げる（デフォ480→640くらいがちょうどいい） */
  }
}