@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+2:wght@100..900&family=Stack+Sans+Headline:wght@200..700&display=swap');

/* ---------- リセット & ベース ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-red: #ed1626;
  --color-yellow: #fff000;
  --color-text: #222;
  --color-text-sub: #323232;
  --font-ja: 'M PLUS 2', sans-serif;
  --font-ja-sub: 'M PLUS 1p', sans-serif;
  --font-en: 'Stack Sans Headline',  sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-ja);
  color: var(--color-text);
  min-height: 100vh;
  background-image: url("../images/bg.png");
  background-attachment: fixed;
  background-size: cover;
  background-position: center top;
}

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

ul {
  list-style: none;
}

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

/* ---------- ヘッダー ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 80px;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
}

body {
  padding-top: 80px;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 16px;
}

.site-header__logo {
  width: 81px;
  height: 48px;
  flex-shrink: 0;
}

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

/* PCナビ（SPでは非表示） */
.global-nav {
  display: none;
}

/* ハンバーガー（SPのみ表示） */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--color-red);
}

/* SPドロップダウン */
.mobile-nav {
  position: absolute;
  padding-top: 90px;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.9);
  border-top: 1px solid #f3f4f6;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  z-index: 50;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

.mobile-nav a {
  display: block;
  text-align: center;
  padding: 12px 24px;
  font-weight: 500;
  font-size: 18px;
  color: #000;
  transition: color 0.2s;
}

.mobile-nav a:hover {
  color: var(--color-red);
}

/* ---------- ヒーロー ---------- */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 24px;
  width: 100%;
}

.hero__image {
  width: 100%;
  aspect-ratio: 726 / 803;
  position: relative;
}

.hero__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ---------- セクション共通 ---------- */
.section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 56px 0;
}

section {
  scroll-margin-top: 20px;
}

.section--red {
  background: var(--color-red);
}

.section--blur {
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.section__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  width: 100%;
  max-width: 800px;
  padding: 0 8px;
}

/* セクションタイトル */
.section-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  width: 100%;
}

.section-title__en-box {
  background: var(--color-red);
  padding: 8px 32px;
}

.section-title__en {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: clamp(36px, 7vw, 64px);
  letter-spacing: 3.84px;
  line-height: normal;
  color: #fff;
  text-align: center;
  white-space: nowrap;
}

/* ATTENTION用（下線タイプ） */
.section-title__en-line {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  margin: 0 auto;
  border-bottom: 1px solid #222;
}

.section-title__en--dark {
  color: #222;
  font-size: clamp(40px, 8vw, 64px);
}

.section-title__ja {
  font-weight: 700;
  font-size: 24px;
  line-height: 2;
  color: var(--color-text);
  text-align: center;
  white-space: nowrap;
}

/* ---------- カード ---------- */
.card {
  background: #fff;
  border-radius: 16px;
  width: 100%;
}

.card--bordered {
  border: 4px solid var(--color-red);
  overflow: clip;
}

.card__body {
  padding: 40px 24px;
}

.card__body--table {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  padding: 24px 16px;
}

/* ---------- NEWS ---------- */
.news-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 500;
  font-size: 20px;
  width: 100%;
}

.news-item__date {
  color: var(--color-red);
  flex-shrink: 0;
}

.news-item__text {
  color: var(--color-text);
  flex: 1;
}

/* ---------- HIGHLIGHT ---------- */
.highlight-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  color: var(--color-text);
}

/* ---------- ABOUT ---------- */
.venue-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 2;
  color: var(--color-text-sub);
  text-align: center;
  width: 100%;
}

.info-row {
  display: flex;
  flex-direction: column;
  padding: 32px 0;
  width: 100%;
  border-bottom: 1px dashed var(--color-red);
}

.info-row__label {
  font-weight: 500;
  font-size: 20px;
  color: var(--color-text-sub);
  flex-shrink: 0;
  width: 100%;
  margin-bottom: 8px;
}

.info-row__content {
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  color: var(--color-text-sub);
  flex: 1;
}

.access-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

/* ---------- 地図（静的モック） ---------- */
.map {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: clip;
  background: var(--color-text-sub);
}

.map__image-wrap {
  position: absolute;
  width: 920px;
  height: 734px;
  left: calc(50% + 8px);
  top: calc(50% + 16px);
  transform: translate(-50%, -50%);
}

.map__image-wrap img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  pointer-events: none;
}

.map__byline {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 4px;
  font-family: Arial, sans-serif;
}

.map__byline-item {
  background: rgba(245, 245, 245, 0.8);
  color: rgba(50, 45, 36, 0.8);
  font-size: 10px;
  line-height: 15px;
  padding: 0 5px;
  white-space: nowrap;
}

.map__google-logo {
  position: absolute;
  left: 7px;
  bottom: 3px;
  width: 66px;
  height: 26px;
}

.map__google-logo svg {
  display: block;
  width: 100%;
  height: 100%;
}

.map__pegman {
  position: absolute;
  top: 69px;
  right: 8px;
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map__pegman img {
  width: 12px;
  height: 20px;
  object-fit: cover;
  pointer-events: none;
}

.map__zoom {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 53px;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
}

.map__zoom-plus {
  position: absolute;
  top: 15.09%;
  left: 32.14%;
  right: 32.14%;
  bottom: 66.04%;
  width: auto;
  height: auto;
  display: block;
}

.map__zoom-minus {
  position: absolute;
  top: 73.58%;
  left: 32.14%;
  right: 32.14%;
  bottom: 22.64%;
  width: auto;
  height: auto;
  display: block;
}

.map__zoom-divider {
  position: absolute;
  top: 49.06%;
  bottom: 49.06%;
  left: 14.29%;
  right: 14.29%;
  background: #e6e6e6;
}

.map__type-toggle {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 94px;
  height: 29px;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-family: Arial, sans-serif;
  font-size: 11px;
}

.map__type-map {
  font-weight: 500;
  color: var(--color-text-sub);
}

.map__type-satellite {
  font-weight: 400;
  color: #565656;
}

/* ---------- TICKET ---------- */
.ticket-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 0;
  width: 100%;
  border-bottom: 1px dashed var(--color-red);
}

.ticket-row__head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.ticket-row__name {
  font-weight: 700;
  font-size: 24px;
  line-height: 2;
  color: var(--color-text-sub);
  white-space: nowrap;
}

.ticket-row__price-wrap {
  display: flex;
  align-items: baseline;
}

.ticket-row__price {
  font-weight: 500;
  font-size: 24px;
  line-height: 2;
  color: var(--color-text-sub);
}

.ticket-row__tax {
  font-family: var(--font-ja-sub);
  font-size: 14px;
  color: var(--color-text-sub);
}

.ticket-row__info {
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  color: var(--color-text-sub);
  padding: 0 16px;
}

.ticket-row__image {
  display: flex;
  justify-content: center;
  padding: 0 16px;
  width: 100%;
}

.ticket-row__image img {
  width: 100%;
  max-width: 680px;
  aspect-ratio: 680 / 962;
  object-fit: cover;
}

/* 注意事項リスト（※付き・カード内） */
.note-list {
  list-style: disc;
  padding: 0 16px;
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  color: var(--color-text-sub);
  width: 100%;
}

.note-list li {
  margin-inline-start: 24px;
}

.note-list--small {
  font-size: 14px;
  padding: 0;
}

.note-list--small li {
  margin-inline-start: 21px;
}

/* ---------- SPECIAL / Coming soon ---------- */
.coming-soon-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 0;
  width: 100%;
  border-bottom: 1px dashed var(--color-red);
}

.coming-soon-row--no-border {
  border-bottom: none;
}

.coming-soon-row__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 2;
  color: var(--color-text-sub);
}

.coming-soon-row__period {
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  color: var(--color-text-sub);
  padding: 0 16px;
  align-self: flex-start;
}

.coming-soon-row__body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  width: 100%;
}

.coming-soon-row__body p,
.coming-soon-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  color: var(--color-red);
  white-space: nowrap;
}

/* ---------- GOODS ---------- */
.goods-card {
  height: 280px;
  display: flex;
  flex-direction: column;
  padding: 24px 16px;
}

.goods-card__period {
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  color: var(--color-text-sub);
  padding: 0 16px;
  align-self: flex-start;
}

.goods-card__body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* ---------- モーダル（画像拡大表示） ---------- */
.ticket-image-clickable {
  cursor: pointer;
}

.image-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  align-items: center;
  justify-content: center;
}

.image-modal.is-open {
  display: flex;
}

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

.image-modal__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background: #fff;
  border-radius: 8px;
  overflow: auto;
  z-index: 101;
}

.image-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 102;
}

.image-modal__close:hover {
  background: rgba(0, 0, 0, 0.8);
}

#modal-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ---------- ATTENTION ---------- */
.attention-body {
  width: 100%;
}

/* ---------- ボタン ---------- */
.btn-wrap {
  display: flex;
  justify-content: center;
  padding: 32px 0;
  width: 100%;
}

.btn-yellow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 24px;
  border: none;
  border-radius: 40px;
  background: var(--color-yellow);
  box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.25);
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: 24px;
  line-height: 2;
  color: var(--color-text);
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.1s;
}

.btn-yellow:active {
  transform: translateY(4px);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.25);
}

.x-button-area {
  display: flex;
  justify-content: center;
  padding: 56px 8px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

/* ---------- フッター ---------- */
.site-footer {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-red);
}

.site-footer p {
  font-weight: 500;
  font-size: 14px;
  line-height: 2;
  text-align: center;
  color: #fff;
  max-width: 392px;
}

/* ==========================================================
   768px 以上（Tailwind md 相当 = PC表示）
   ========================================================== */
@media (min-width: 768px) {

  .site-header__inner {
    padding: 0 24px;
  }

  .global-nav {
    display: flex;
    gap: 24px;
    align-items: center;
  }

  .global-nav a {
    font-weight: 500;
    font-size: 20px;
    line-height: 2;
    color: #000;
    white-space: nowrap;
    transition: color 0.2s;
  }

  .global-nav a:hover {
    color: var(--color-red);
  }

  .hamburger,
  .mobile-nav {
    display: none;
  }

  .hero__image {
    width: 726px;
  }

  .card__body {
    padding: 40px;
  }

  .card__body--table {
    padding: 24px 32px;
  }

  .section-title__en-box {
    padding: 8px 40px;
  }

  .news-item {
    flex-direction: row;
    gap: 40px;
  }

  .news-item__date {
    width: 130px;
  }

  .highlight-text {
    font-size: 20px;
  }

  .info-row {
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
  }

  .info-row__label {
    width: 120px;
    margin-bottom: 0;
  }

  .ticket-row__head {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .btn-yellow {
    width: 400px;
    padding: 16px 96px;
  }
}
