/* ==========================================================================
   Reset & Base
   ========================================================================== */

 :root {
      --color-text: #111;
      --color-border: #111;
      --color-grid: #c9c9c9;
      --color-muted: #666;
      --color-red: #e60012;
      --color-bg: #fff;
      --color-overlay: rgba(0, 0, 0, .62);
      --modal-max: 1040px;
    }

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Toppan Bunkyu Gothic', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
  color: #000000;
  background-color: #5bb8e8;
  overflow-x: hidden;
}

.bg-fixed-pc {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  pointer-events: none;
}

.bg-fixed-pc img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: top center;
  display: block;
}

@media (min-width: 781px) {
  .bg-fixed-pc {
    display: block;
  }
}

.main-wrap {
  overflow: hidden;
}

.page-wrapper {
  max-width: 780px;
  margin: -214px auto 0;
  background-color: #bac8cf;
  position: relative;
  overflow-x: hidden;
}

/* ==========================================================================
   PC左右キャラクタースライダー
   ========================================================================== */
.pc-side-chars {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.pc-side-chars__col {
  opacity: 0;
  transform: scale(0.3) translateY(80px);
  transition: opacity 0.12s cubic-bezier(0.76, 0, 0.24, 1),
              transform 0.12s cubic-bezier(0.76, 0, 0.24, 1);
}

.pc-side-chars__col.is-col-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition: opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pc-side-chars__col {
  position: absolute;
}

/* 1920px基準の位置（JSでscaleと位置を比例縮小） */
.pc-side-chars__col--left {
  left: 72px;
  bottom: 120px;
}

.pc-side-chars__col--right {
  right: 72px;
  bottom: 16px;
}

.pc-side-chars__item {
  position: absolute;
  bottom: 0;
  width: auto;
  max-width: none;
  height: auto;
  opacity: 0;
}

.pc-side-chars__item.is-active {
  animation: char-flip-in 0.5s linear both;
}

.pc-side-chars__item.is-leave {
  animation: char-flip-out 0.5s linear both;
}

@keyframes char-flip-in {
  0% {
    opacity: 0;
    transform: rotateY(-90deg) scale(0.8);
  }
  50% {
    transform: rotateY(-45deg) scale(1.1);
  }
  100% {
    opacity: 1;
    transform: rotateY(0deg) scale(1);
  }
}

@keyframes char-flip-out {
  0% {
    opacity: 1;
    transform: rotateY(0deg) scale(1);
  }
  50% {
    transform: rotateY(45deg) scale(1.1);
  }
  100% {
    opacity: 0;
    transform: rotateY(90deg) scale(0.8);
  }
}

@media (min-width: 1001px) {
  .pc-side-chars {
    display: block;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ==========================================================================
   Typography
   ========================================================================== */
.font-midashi {
  font-family: 'Toppan Bunkyu Midashi Gothic', 'ヒラギノ角ゴ W6 JIS2004', sans-serif;
}

/* ==========================================================================
   PC Background Characters（ランダム浮遊・PCのみ）
   ========================================================================== */
.pc-bg-chars {
  display: none;
}

@media (min-width: 769px) {
  .pc-bg-chars {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    perspective: 800px;
  }

  .pc-bg-chars__item {
    position: absolute;
    width: 120px;
    height: auto;
    transform-style: preserve-3d;
    opacity: 0.6;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  width: 100%;
  z-index: 1;
}

.hero img {
  width: 100%;
  display: block;
}

.hero .hero__img--sp {
  display: none;
}

@media (max-width: 780px) {
  .hero .hero__img--pc {
    display: none;
  }
  .hero .hero__img--sp {
    display: block;
  }
}

/* ==========================================================================
   Nav Wrap
   ========================================================================== */
.nav-wrap {
  position: relative;
  z-index: 100;
  overflow: visible;
}

/* 背景画像がラッパーの高さを決める */
.nav-bg {
  display: block;
  width: 100%;
  pointer-events: none;
}

.nav-bg--pc {
  display: none;
}

/* ナビは背景の上に重ねる */
.global-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

/* Nav Arrows（SPのみ） */
.nav-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 72%;
  transform: translateY(-50%);
  z-index: 2;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-arrow--prev {
  left: 0;
}

.nav-arrow--next {
  right: 0;
}

.nav-arrow.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.nav-arrow {
  transition: transform 0.2s ease;
}

.nav-arrow:hover {
  transform: translateY(-50%) scale(1.15);
}

/* ==========================================================================
   Global Navigation
   ========================================================================== */
.global-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: visible;
  background-color: transparent;
  display: flex;
  align-items: flex-end;
}

.global-nav__list {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
}

.global-nav__item {
  flex-shrink: 0;
}

/* 右に行くほど少しずつ上に */
.global-nav__item:nth-child(1) { padding-bottom: 4px; }
.global-nav__item:nth-child(2) { padding-bottom: 18px; }
.global-nav__item:nth-child(3) { padding-bottom: 26px; }
.global-nav__item:nth-child(4) { padding-bottom: 34px; }
.global-nav__item:nth-child(5) { padding-bottom: 48px; }
.global-nav__item:nth-child(6) { padding-bottom: 50px; }
.global-nav__item:nth-child(7) { padding-bottom: 58px; }

.global-nav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  transition: transform 0.2s ease;
  transform-origin: center;
  position: relative;
  z-index: 0;
}

.global-nav__img {
  display: block;
  max-width: none;
}

/* p5s.jp参考: 背景と文字が一緒に大きくなる */
.global-nav__link:hover,
.global-nav__link.is-current {
  transform: scale(1.15);
  z-index: 1;
}

.global-nav__link.is-disabled,
.global-nav__link.is-disabled:hover {
  pointer-events: none;
  cursor: default;
  transform: none !important;
}

/* 780px以下（SP）：横スクロール・矢印は中央±(150px×zoom比率) */
@media (max-width: 780px) {
  .nav-bg--sp {
    display: block;
  }
  .nav-bg--pc {
    display: none;
  }
  .nav-arrow {
    display: flex;
    z-index: 10;
    left: calc(50% - 208px);
    top: 95%;
  }
  .nav-arrow--next {
    left: auto;
    right: calc(50% - 208px);
  }
  .global-nav__list {
    justify-content: flex-start;
  }
  .global-nav__item:nth-child(1),
  .global-nav__item:nth-child(2),
  .global-nav__item:nth-child(3),
  .global-nav__item:nth-child(4),
  .global-nav__item:nth-child(5),
  .global-nav__item:nth-child(6),
  .global-nav__item:nth-child(7) {
    padding-bottom: 0;
  }
}

/* 781px以上：PC背景表示 */
@media (min-width: 781px) {
  .nav-bg--sp {
    display: none;
  }
  .nav-bg--pc {
    display: block;
    width: auto;
    max-width: none;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  .nav-wrap {
    overflow: visible;
    height: 154px;
  }
  .global-nav {
    top: 51%;
    height: auto;
    transform: translateY(-50%);
    display: block;
  }
}

/* 781px〜1366px：自然サイズ・カルーセル・矢印あり */
@media (min-width: 781px) and (max-width: 1366px) {
  .global-nav {
    top: 52%;
  }
  .nav-arrow {
    display: flex;
    z-index: 10;
    left: calc(50% - 208px);
    top: 80%;
  }
  .nav-arrow--next {
    left: auto;
    right: calc(50% - 208px);
  }
  .global-nav__list {
    justify-content: flex-start;
  }
  .global-nav__item[data-idx="1"],
  .global-nav__item[data-idx="2"],
  .global-nav__item[data-idx="3"],
  .global-nav__item[data-idx="4"],
  .global-nav__item[data-idx="5"],
  .global-nav__item[data-idx="6"],
  .global-nav__item[data-idx="7"] { padding-bottom: 0; }
  .global-nav__item[data-idx="1"] { transform: translateY(14px); }
  .global-nav__item[data-idx="3"] { transform: translateY(4px); }
  .global-nav__item[data-idx="4"] { transform: translateY(6px); }
  .global-nav__item[data-idx="5"] { transform: translateY(0px); }
  .global-nav__item[data-idx="6"] { transform: translateY(8px); }
  .global-nav__item[data-idx="7"] { transform: translateY(14px); }
}

/* ==========================================================================
   Main Visual
   ========================================================================== */
.main-visual {
  position: relative;
  width: 100%;
  overflow-x: clip;
  overflow-y: visible;
  margin-top: -96px;
}

/* 海背景 */
.main-visual__bg {
  display: block;
  width: 100%;
  height: auto;
}

.main-visual__bg--sp {
  display: none;
}

@media (max-width: 780px) {
  .main-visual__bg--sp {
    display: block;
  }
}

/* キャラクター */
.main-visual__chara-wrap {
  position: relative;
  width: 100%;
  z-index: 10;
}

@media (max-width: 780px) {
  .main-visual__chara-wrap {
    position: absolute;
    top: 0;
    left: 0;
  }
}

.main-visual__chara {
  display: block;
  height: auto;
  padding-top: 5%;
  width: 90%;
  max-width: 1516px;
  margin: 0 auto;
  z-index: 10;
  position: relative;
}

/* 斜め帯マーキー */
.marquee-band {
  position: relative;
  left: -10%;
  width: 120%;
  /* 回転で右端が下がる分（60vw × sin8.6°≈8.97vw）を引いて右端をcharaの底に合わせる */
  margin-top: clamp(-5.97vw, calc(-105.276px + 0.2227vw), -5.26vw);
  transform: rotate(8.6deg);
  transform-origin: top center;
  overflow: hidden;
}

.marquee-band__track {
  display: flex;
  width: max-content; /* 親幅の影響を受けず画像の自然サイズで展開 */
  animation: marquee-band 40s linear infinite;
  height: 105px;
}

.marquee-band__track img {
  display: block;
  flex-shrink: 0;
  width: auto;
  height: 105px; /* 明示的にpx指定で確実に固定 */
}

@keyframes marquee-band {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* rgアニメーション */
.rg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  perspective: 800px;
}

.rg-item {
  position: absolute;
  width: 60px;
  height: 60px;
  transform-style: preserve-3d;
}

/* ==========================================================================
   コラボイメージ
   ========================================================================== */
.collab-visual {
  position: relative;
  width: 100%;
  margin-top: clamp(216px, calc(228px - (100vw - 1366px) * 0.022), 228px);
  padding: 106px 0 256px;
  overflow: hidden;
}

.collab-visual__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.collab-visual__deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.collab-visual__deco--01 {
  width: 114px;
  top: 0px;
  left: 26px;
}

.collab-visual__deco--02 {
  width: 560px;
  bottom: 0;
  right: 0;
}

/* スライダー */
.collab-slider {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  padding: 0 66px;
}

.collab-slider__track-wrap {
  overflow: hidden;
}

.collab-slider__track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}

.collab-slider__item {
  flex-shrink: 0;
  width: 100%;
}

.collab-slider__item img {
  width: 100%;
  display: block;
}

.collab-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  background: #000000;
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 10;
  padding: 0;
}

.collab-slider__btn--prev {
  left: 0;
}

.collab-slider__btn--next {
  right: 0;
}

.collab-slider__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.collab-slider__dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #000000;
  background: #ffffff;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.collab-slider__dot.is-active {
  background: #000000;
}

/* 仮面アニメーション */
.collab-visual__mask-wrap {
  position: absolute;
  inset: 0;
  perspective: 800px;
  z-index: 1;
  pointer-events: none;
}

.collab-mask__img {
  position: absolute;
  width: 177px;
  height: 88px;
  transform-style: preserve-3d;
}

/* ==========================================================================
   OVER VIEW
   ========================================================================== */
.over-view {
  position: relative;
  z-index: 1;
}

.over-view__ttl {
  width: 100%;
  display: block;
  margin-top: 0;
  padding-right: 40px;
  padding-left: 26px;
}

.over-view__img {
  width: 100%;
  display: block;
  margin-top: 64px;
  padding-right: 34px;
  padding-left: 24px;
}

.over-view__img--place {
  margin-top: 0;
  padding-right: 20px;
  padding-left: 95px;
}

/* ==========================================================================
   Sections（各コンテンツセクション共通）
   ========================================================================== */
.sec {
  position: relative;
  z-index: 1;
}

/* マーキー：全幅 */
.sec__marquee-wrap {
  width: 100%;
  overflow: hidden;
  padding: 6px 0;
  margin-bottom: 3.85%; /* 30px at 780px */
}

.sec__marquee-track {
  display: flex;
  gap: 34px;
  width: max-content;
  animation: marquee 15s linear infinite;
}

.sec__marquee-track span {
  font-family: 'Toppan Bunkyu Midashi Gothic', sans-serif;
  font-size: 13px;
  white-space: nowrap;
  letter-spacing: 0.05em;
  color: #c8002a;
}

/* コンテンツ：左右3.59%（= 28px at 780px） */
.sec__inner {
  padding: 0;
}

.sec__img {
  width: 100%;
  display: block;
}

.sec--ticket .sec__img {
  margin-top: 74px;
  padding-right: 36px;
  padding-left: 50px;
}

.sec--area01 .sec__img {
  padding-left: 30px;
  padding-right: 50px;
}

.sec--date .sec__img {
  margin-top: 34px;
  padding-right: 28px;
  padding-left: 24px;
}

.sec--food .sec__img {
  margin-top: 45px;
  padding-right: 34px;
}

.sec--goods .sec__img {
  margin-top: 12px;
  padding-right: 34px;
  padding-left: 24px;
}

.sec--hotel .sec__img {
  margin-top: 14px;
  padding-right: 34px;
  padding-left: 24px;
}

.sec__desc {
  font-family: 'Toppan Bunkyu Gothic', sans-serif;
  font-size: 14px;
  line-height: 2;
  color: #1a1a1a;
  margin-bottom: 5.13%; /* 40px at 780px */
}

.sec__btn {
  display: block;
  margin: 0 auto;
  max-width: 280px;
}

/* ==========================================================================
   ペルソナとは
   ========================================================================== */
.about-persona {
  position: relative;
  z-index: 1;
  padding: 0 32px;
  margin-top: 160px;
  margin-bottom: 96px;
  overflow: hidden;
}

.about-persona__inner {
  width: 100%;
}

.about-persona__title {
  display: block;
  margin: 0 auto -156px;
  text-align: center;
}

.about-persona__title img {
  width: 444px;
  display: block;
  margin: 0 auto;
}

.about-persona__body {
  background: #ffffff;
  padding: 180px 44px 66px;
}

.about-persona__visual {
  margin-bottom: 44px;
}

.about-persona__visual img {
  width: 100%;
}

.about-persona__text {
  font-size: 24px;
  line-height: 2;
  color: #1a1a1a;
  margin-bottom: 44px;
}

.about-persona__text p + p {
  margin-top: 1em;
}

.about-persona__btn {
  display: block;
  margin: 0 auto;
  max-width: 346px;
}

.about-persona__btn img {
  width: 100%;
}

/* ==========================================================================
   スクロールアニメーション
   ========================================================================== */
.js-fade {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.js-fade.is-show {
  opacity: 1;
  transform: scale(1);
}

/* リンクホバー（ナビと同じスケール） */
.sec__link,
.about-persona__btn {
  display: block;
  transition: transform 0.3s ease;
}

.sec__link:hover,
.about-persona__btn:hover {
  transform: scale(1.05);
}

.sec__link.is-disabled,
.sec__link.is-disabled:hover {
  pointer-events: none;
  cursor: default;
  transform: none;
}

.page-top {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.page-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.page-top:hover {
  transform: scale(1.05);
}


/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  position: relative;
  z-index: 1;
}

.footer__img {
  width: 100%;
  display: block;
}

/* ==========================================================================
   Page Top Button
   ========================================================================== */
.page-top {
  position: fixed;
  right: calc((0vw + 15px) / 2 + 8px);
  bottom: 24px;
  z-index: 200;
  width: min(156px, 20vw);
  height: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

@media (max-width: 780px) {
  .page-top {
    right: 8px;
  }
}

.page-top img {
  width: 100%;
  height: auto;
}

/* ==========================================================================
   PC Layout（769px以上）
   ========================================================================== */
@media (min-width: 769px) {
  .hero__inner,
  .main-visual__inner,
  .over-view__inner,
  .sec__inner,
  .about-persona__inner,
  .footer__inner {
    max-width: 1200px;
  }

  .global-nav__link {
    padding: 0 20px;
    height: 52px;
  }

  .over-view__text {
    font-size: 22px;
  }

  .sec__btn {
    max-width: 320px;
  }
}

@media (min-width: 1367px) {
  .global-nav__link {
    height: 84px;
    padding: 0 12px;
  }
  .global-nav__list {
    overflow: visible;
    max-width: 1856px;
    margin: 0 auto;
  }
}

@media (max-width: 1366px) {
  .global-nav__link {
    height: 120px;
    padding: 0 42px;
  }
  .main-visual__chara {
    padding-top: 124px;
  }
}

/* ==========================================================================
   サブページ共通
   ========================================================================== */
.sub-intro {
  position: relative;
  text-align: center;
  font-size: 28px;
  line-height: 1.8;
  padding: 300px 0px 500px;
  overflow: hidden;
}
.sub-intro2 {
  position: relative;
  text-align: center;
  font-size: 28px;
  line-height: 1.8;
  padding: 100px 0px 200px;
  overflow: hidden;
}

.sub-intro p + p {
  margin-top: 1em;
}

.sub-intro__deco {
  position: absolute;
  pointer-events: none;
}

.sub-intro__visual {
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
}

.sub-intro__deco--01 {
  top: 224px;
  left: 26px;
  width: 114px;
}

.sub-intro__deco--02 {
  bottom: 0;
  right: 0;
  width: 560px;
  z-index: -10;
}

/* ==========================================================================
   スペシャルチケット
   ========================================================================== */

/* チケットテーブル */
.ticket-section {
  padding: 0;
}

.ticket-section__ttl {
  display: block;
  width: 100%;
}

.ticket-section__ttl img {
  display: block;
  padding-left: 26px;
  padding-right: 60px;
  margin-bottom: 40px;
}

.ticket-table {
  border: 1px solid #000000;
  margin: 0 46px 105px;
}

.ticket-table__row + .ticket-table__row {
  border-top: 1px solid #000000;
}

.ticket-table__label {
  background: #000000;
  color: #ffffff;
  font-size: 32px;
  padding: 16px 24px;
  text-align: center;
}

.ticket-table__content {
  background: #e2e8eb;
  padding: 24px;
  font-size: 28px;
  line-height: 1.8;
}

.ticket-table__content--center {
  text-align: center;
}

.ticket-table__content--notes p {
  padding-left: 1em;
  text-indent: -1em;
}

.ticket-table__content--notes p + p {
  margin-top: 0.5em;
}

.ticket-table__content a{color: #1D7AF8; text-decoration: underline;}
.ticket-table__content .bigred_text{color: #FF0004; font-size: 2.0rem; font-weight: bold;}

.ticket-list {
  list-style: none;
  padding-left: 0;
}

.ticket-list li {
  padding-left: 1.5em;
  text-indent: -1.5em;
}

.ticket-list li + li {
  margin-top: 0.5em;
}

.ticket-price {
  font-size: 48px;
  font-weight: normal;
}

.ticket-price__note {
  font-size: 28px;
  margin-top: 8px;
  padding-left: 1em;
  text-indent: -1em;
}

/* CTAボタン */
.ticket-btns {
  padding-bottom: 0;
}

.ticket-btn {
  display: block;
  transition: transform 0.2s ease;
  transform-origin: center;
  overflow: visible;
}

.ticket-btn:hover {
  transform: scale(1.05);
  position: relative;
  z-index: 1;
}

.ticket-btn img {
  width: 100%;
  display: block;
}

.ticket-btn img {
  padding-left: 46px;
  padding-right: 36px;
  margin-bottom: 70px;
}

.ticket-btn--other img {
  padding-left: 46px;
  padding-right: 36px;
  margin-bottom: 144px;
}

.ticket-btn__notes {
  background: #ffffff;
  color: #000000;
  font-size: 28px;
  line-height: 1.8;
  padding: 32px 34px;
  margin: 0 34px 70px;
}

.ticket-btn__notes p {
  padding-left: 1em;
  text-indent: -1em;
}

.ticket-btn__notes p + p {
  margin-top: 0.5em;
}

/* BONUSセクション */
.bonus-section {
  margin-top: 60px;
}

.bonus-section__ttl {
  display: block;
  width: 100%;
}

.bonus-section__ttl img {
  display: block;
  padding-left: 26px;
  padding-right: 60px;
  margin-bottom: 100px;
}

.bonus-item__ttl img {
  width: 100%;
  display: block;
}

.bonus-item--book .bonus-item__ttl img {
  padding-left: 50px;
  padding-right: 36px;
}

.bonus-item--stamp .bonus-item__ttl img {
  padding-left: 32px;
  padding-right: 50px;
  margin-bottom: 34px;
}

.bonus-item--attraction .bonus-item__ttl img {
  padding-left: 8px;
  padding-right: 26px;
  margin-bottom: 110px;
}

/* ==========================================================================
   コラボホテル
   ========================================================================== */

.plan-section {
  padding: 0;
}

.plan-section__ttl {
  display: block;
  width: 100%;
}

.plan-section__ttl img {
  display: block;
  padding-left: 34px;
  padding-right: 60px;
  margin-top: -126px;
  margin-bottom: 36px;
}

.plan-intro {
  position: relative;
  font-size: 28px;
  line-height: 1.8;
  text-align: center;
  padding: 0 48px;
  overflow: hidden;
}

.plan-section .ticket-table {
  margin: 66px 46px 56px;
}

.plan-intro__deco {
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 684px;
  z-index: -1;
}

.hotel-btn {
  padding-bottom: 0;
}

.hotel-btn .ticket-btn img {
  padding-left: 46px;
  padding-right: 36px;
  margin-bottom: 25px;
}

/* AMENITIESセクション */
.amenities-section {
  margin-top: 60px;
}

.amenities-section__ttl {
  display: block;
  width: 100%;
  padding-left: 26px;
  padding-right: 34px;
  margin-bottom: 64px;
}

.amenities-section__ttl img {
  display: block;
  width: 100%;
}

.amenity-item {
  display: block;
  width: 100%;
}

.amenity-item__img {
  display: block;
  width: 100%;
}

.amenities-section .amenity-item:nth-child(2) {
  padding-left: 54px;
  padding-right: 20px;
}

.amenities-section .amenity-item:nth-child(3) {
  padding-left: 32px;
  padding-right: 40px;
  margin-bottom: 32px;
}

.amenities-section .amenity-item:nth-child(4) {
  padding-left: 8px;
  padding-right: 26px;
  margin-bottom: 90px;
}

.amenities-section .amenity-item:nth-child(5) {
  padding-left: 32px;
  padding-right: 4px;
  margin-bottom: 26px;
}

.amenities-section .amenity-item:nth-child(6) {
  padding-left: 28px;
  padding-right: 30px;
  margin-bottom: 30px;
}

.amenities-section .amenity-item:nth-child(7) {
  padding-left: 40px;
  padding-right: 34px;
  margin-bottom: 86px;
}

.amenity-note {
  background: #ffffff;
  color: #000000;
  font-size: 28px;
  line-height: 1.8;
  padding: 32px 34px;
  margin: 0 34px 172px;
}

.amenity-note p {
  padding-left: 1em;
  text-indent: -1em;
}

.amenity-note p + p {
  margin-top: 0.5em;
}

/* ==========================================================================
   コラボグッズ
   ========================================================================== */

.schedule-section__ttl img {
  display: block;
  width: 100%;
  padding-left: 26px;
  padding-right: 34px;
  margin-top: -10px;
}

.shop-section__ttl img {
  display: block;
  width: 100%;
  padding-left: 26px;
  padding-right: 60px;
  margin-bottom: 34px;
}

.goods-section__ttl img {
  display: block;
  width: 100%;
  padding-left: 26px;
  padding-right: 60px;
  margin-bottom: 26px;
}

.goods-bonus-section__ttl img {
  display: block;
  width: 100%;
}

.plan-intro {
  margin: 52px 0 66px;
}

.schedule-section .plan-intro {
  padding: 0 70px;
}

.coaster-info img {
  display: block;
  width: 100%;
  margin-bottom: 94px;
}

.shop-section .ticket-table {
  margin: 0 46px 116px;
}

.goods-section .ticket-table {
  margin: 20px 46px;
}

.goods-section > :nth-child(3) .ticket-table {
  margin: 0 46px 88px;
}

.goods-vol__label {
  display: block;
  width: 100%;
  padding-left: 34px;
  padding-right: 26px;
  margin-bottom: 60px;
}

.goods-section > :nth-child(6) .goods-vol__label {
  margin-bottom: 24px;
}

.goods-item__img {
  display: block;
  width: auto;
 max-width: 100%;
  margin-bottom: 50px;
	margin: 0 auto;
}

.goods-section > :nth-child(3) .goods-item__img {
  margin-bottom: 46px;
}

.goods-section > :nth-child(4) .goods-item__img {
  padding-left: 32px;
  padding-right: 40px;
  margin-bottom: 30px;
}

.goods-section > :nth-child(7) .goods-item__img {
  margin-bottom: 0;
}

.goods-separator {
  padding-top: 68px;
  padding-bottom: 54px;
  text-align: center;
}

.goods-separator__img {
  display: block;
  margin: 0 auto;
}

.goods-order-label {
  font-size: 32px;
  color: #ff0000;
}

.goods-bonus-section__ttl img {
  display: block;
  width: 100%;
  padding-left: 40px;
  padding-right: 46px;
  margin-bottom: 64px;
}

.goods-bonus-intro {
  font-size: 28px;
  line-height: 1.8;
  text-align: center;
  padding: 0 64px;
  margin-bottom: 56px;
}

.goods-bonus-img img {
  display: block;
  width: 100%;
  padding-left: 50px;
  padding-right: 50px;
  margin-bottom: 36px;
}

.goods-bonus-note {
  margin-bottom: 70px;
}

.goods-bonus-note p {
  padding-left: 1em;
  text-indent: -1em;
}

.ticket-price__tax {
  font-size: 28px;
}

/* ==========================================================================
   日付指定コンテンツ
   ========================================================================== */

.date-event-section__ttl img {
  display: block;
  width: 100%;
  padding-left: 0;
  padding-right: 58px;
	margin-bottom: 30px;
}

.date-event-item__img {
  display: block;
  width: 100%;
}

.date-event-item__ttl img {
  display: block;
  width: 100%;
}

.date-event-item__desc {
  font-size: 28px;
  line-height: 1.8;
  padding: 0 46px;
}

.date-event-item .ticket-table {
  margin: 0 46px;
}

/* 花火シンフォニア */
.date-event-section > .date-event-item:nth-child(2) .date-event-item__img {
  padding: 0 40px 0 20px;
  margin-top: 20px;
  margin-bottom: 34px;
}

.date-event-section > .date-event-item:nth-child(2) .ticket-table {
  margin: 0 46px 160px;
}

/* タルタロス */
.date-event-section > .date-event-item:nth-child(3) .date-event-item__img {
  padding: 0 26px;
  margin-bottom: 54px;
}

.date-event-section > .date-event-item:nth-child(3) .ticket-table {
  margin: 0 46px 54px;
}

.date-event-btn .ticket-btn img {
  padding-left: 46px;
  padding-right: 36px;
  margin-bottom: 70px;
	margin-top: 20px;
}

/* マヨナカMVライブスタジアム */
.date-event-section > .date-event-item:nth-child(4) .date-event-item__img {
  padding: 0 40px 0 14px;
  margin-bottom: 70px;
}

.date-event-section > .date-event-item:nth-child(4) .ticket-table {
  margin: 0 46px 244px;
}

/* ==========================================================================
   体験コンテンツ
   ========================================================================== */

.stamp-section__ttl img {
  display: block;
  width: 100%;
  padding-left: 26px;
  padding-right: 60px;
  margin-bottom: 90px;
}

.stamp-content__img {
  display: block;
  width: 100%;
  margin-bottom: 100px;
}

.stamp-section .ticket-table {
  margin: 0 46px 134px;
}

.stamp-goal {
  padding-left: 34px;
  padding-right: 40px;
}

.stamp-goal__ttl img {
  display: block;
  width: 100%;
  margin-bottom: 44px;
}

.stamp-goal__img {
  display: block;
  width: 100%;
  margin-bottom: 130px;
}

.stamp-course__img {
  display: block;
  width: 100%;
  padding-left: 40px;
  padding-right: 26px;
  margin-bottom: 174px;
}

.experience-section__ttl img {
  display: block;
  width: 100%;
}

.experience-item__area {
  display: block;
  width: 100%;
}

.experience-item__img {
  display: block;
  width: 100%;
}

.experience-item .ticket-table {
  margin: 0 46px 70px;
}

.experience-btn .ticket-btn img {
  display: block;
  width: 100%;
}

.area-section__ttl img {
  display: block;
  width: 100%;
  padding-left: 26px;
  padding-right: 60px;
  margin-bottom: 56px;
  margin-top: -440px;
}

.area-intro__img {
  display: block;
  width: 100%;
}

.area-item__img {
  display: block;
  width: 100%;
}

.area-item__name {
  font-size: 28px;
  padding: 16px 46px;
  line-height: 1.6;
}

.area-subtitle {
  margin-bottom: 86px;
}

.area-subtitle img {
  display: block;
  width: 100%;
}

.area-section > .area-item:last-child .area-item__img {
  margin-bottom: 96px;
}

/* EXPERIENCE item個別 */
.experience-section > .experience-item:nth-child(1) .experience-item__area {
  margin-bottom: 90px;
}

.experience-section > .experience-item:nth-child(1) .experience-item__img {
  padding-left: 26px;
  padding-right: 46px;
  margin-bottom: 56px;
}

.experience-section > .experience-item:nth-child(1) .ticket-table {
  margin: 0 46px 40px;
}

.experience-section > .experience-item:nth-child(1) .experience-btn .ticket-btn:nth-child(1) img {
  padding-left: 46px;
  padding-right: 34px;
  margin-bottom: 72px;
}

.experience-section > .experience-item:nth-child(1) .experience-btn .ticket-btn:nth-child(2) img {
  padding-left: 46px;
  padding-right: 34px;
  margin-bottom: 112px;
}

.experience-section > .experience-item:nth-child(2) .experience-item__area {
  margin-bottom: 64px;
}

.experience-section > .experience-item:nth-child(2) .experience-item__img {
  padding-left: 12px;
  padding-right: 10px;
  margin-bottom: 56px;
}

.experience-section > .experience-item:nth-child(2) .ticket-table {
  margin: 0 46px 40px;
}

.experience-section > .experience-item:nth-child(2) .experience-btn .ticket-btn:nth-child(1) img {
  margin-bottom: 72px;
}

.experience-section > .experience-item:nth-child(2) .experience-btn .ticket-btn:nth-child(2) img {
  margin-bottom: 100px;
}

.experience-section > .experience-item:nth-child(3) .experience-item__area {
}

.experience-section > .experience-item:nth-child(3) .experience-item__img {
  padding-left: 30px;
  padding-right: 26px;
  margin-bottom: 56px;
}

.experience-section > .experience-item:nth-child(3) .ticket-table {
  margin: 0 46px 70px;
}

.experience-section > .experience-item:nth-child(4) .experience-item__area {
  margin-bottom: 70px;
}

.experience-section > .experience-item:nth-child(4) .experience-item__img {
  padding-left: 14px;
  padding-right: 10px;
  margin-bottom: 56px;
}

.experience-section > .experience-item:nth-child(4) .ticket-table {
  margin: 0 46px 70px;
}

.experience-section > .experience-item:nth-child(5) .experience-item__area {
  margin-bottom: 60px;
}

.experience-section > .experience-item:nth-child(5) .experience-item__img {
  padding-left: 26px;
  padding-right: 30px;
  margin-bottom: 56px;
}

.experience-section > .experience-item:nth-child(5) .ticket-table {
  margin: 0 46px 60px;
}

.tokuten-item:last-child .tokuten-img {
  margin-bottom: 124px;
}

/* P5×プレジャーランド */
.experience-section > .experience-item:nth-child(6) .experience-item__area {
  margin-bottom: 40px;
}

.experience-section > .experience-item:nth-child(6) img:nth-child(2) {
  padding-left: 36px;
  padding-right: 30px;
  margin-bottom: 76px;
}

.experience-section > .experience-item:nth-child(6) img:nth-child(3) {
  padding-left: 26px;
  padding-right: 30px;
  margin-bottom: 46px;
}

.experience-section > .experience-item:nth-child(6) img:nth-child(4) {
  padding-left: 34px;
  padding-right: 30px;
  margin-bottom: 94px;
}

.experience-section > .experience-item:nth-child(6) img:nth-child(5) {
  padding-left: 40px;
  padding-right: 30px;
  margin-bottom: 66px;
}

.experience-section > .experience-item:nth-child(6) img:nth-child(6) {
  padding-left: 26px;
  padding-right: 30px;
  margin-bottom: 114px;
}

/* 女神異聞録ペルソナ×ショッキングホラーハウス */
.experience-section > .experience-item:nth-child(7) .experience-item__area {
  margin-bottom: 74px;
}

.experience-section > .experience-item:nth-child(7) .experience-item__img {
  padding-left: 26px;
  padding-right: 30px;
  margin-bottom: 56px;
}

.tokuten-ttl {
  display: block;
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
  margin-bottom: 24px;
}

.tokuten-label {
  display: block;
  width: 393px;
  padding-left: 54px;
  margin-bottom: 26px;
}

.tokuten-img {
  display: block;
  width: 100%;
  padding-left: 64px;
  padding-right: 40px;
  margin-bottom: 36px;
}

/* 780px以下：比例縮小 */
@media (max-width: 780px) {
  .page-wrapper {
    margin-top: -56px;
    transform-origin: top center;
    clip-path: polygon(0 0, 100% 60px, 100% 100%, 0 100%);
  }
  .collab-visual {
    margin-top: 56px;
  }
  .collab-visual__img {
    margin-top: 66px;
  }
  .main-visual__chara {
    padding-top: 37.25vw;
    width: 98%;
  }
  .marquee-band {
    margin-top: -6.5vw;
  }
  .marquee-band__track {
    height: 13.46vw;
  }
  .marquee-band__track img {
    height: 13.46vw;
  }
  .global-nav {
    top: 28%;
    margin-top: 10px;
  }
  .nav-arrow {
    top: 120%;
  }
  .global-nav__item[data-idx="1"] {
    transform: translateY(12px);
  }
  .global-nav__item[data-idx="3"] {
    transform: translateY(4px);
  }
  .global-nav__item[data-idx="4"] {
    transform: translateY(6px);
  }
  .global-nav__item[data-idx="7"] {
    transform: translateY(10px);
  }
  .sub-intro {
    padding: 200px 0px 500px;
  }
  .sub-intro__deco--01 {
    top: 70px;
  }
  .sub-intro__deco--02 {
    bottom: 0px;
  }
  .area-section__ttl img {
    display: block;
    padding-left: 26px;
    padding-right: 60px;
    margin-bottom: 56px;
    margin-top: -440px;
  }
	
  .goods-item__img {

  }
}

@media (min-width: 781px) and (max-width: 1366px) {
    .nav-arrow {
        display: flex;
        z-index: 10;
        left: calc(50% - 208px);
        top: 100%;
    }
}

@media (max-width: 780px) {
    .nav-arrow {
        top: 175%;
    }
}

#wovn-translate-widget{
	display: none!important;
}



/* =========================
   グッズ追従アンカー
========================= */
.goods-anchor-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9998;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;
}

.goods-anchor-nav.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.goods-anchor-nav__inner {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  overflow-x: auto;
  white-space: nowrap;
  width: min(100%, 960px);
  margin: 0 auto;
  padding: 10px;
  border-radius: 20px;
  background: rgba(17, 24, 39, 0.88);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.goods-anchor-nav__inner::-webkit-scrollbar {
  display: none;
}

.goods-anchor-nav__link {
  flex: 0 0 auto;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    box-shadow 0.25s ease;
}

.goods-anchor-nav__link:hover {
  transform: translateY(-2px);
}

.goods-anchor-nav__link.is-active {
  box-shadow: 0 0 0 2px #ffffff;
}

.goods-anchor-nav__img {
  display: block;
  width: auto;
  height: 100px;
  max-width: none;
}

@media (max-width: 767px) {
  .goods-anchor-nav {
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  }

  .goods-anchor-nav__inner {
    justify-content: center;
    gap: 8px;
    padding: 8px;
    border-radius: 16px;
  }

  .goods-anchor-nav__img {
    height: 100px;
  }
}

/* 固定ヘッダー対策 */
.goods-block {
  scroll-margin-top: 100px;
}

@media (max-width: 767px) {
  .goods-block {
    scroll-margin-top: 100px;
  }
}

.ankernavi{width: 100%; max-width: 750px; display: flex;justify-content: flex-start;
    gap: 8px; margin: 0 auto 30px;}



.page-seigen {
      min-height: 100vh;
      display: grid;
      place-items: center;
      padding: 48px 20px;
    }

.goods-section {
    }

    .goods-notice-area {
      width: min(92%);
      padding: 32px;
      background: #fff;
      border: 1px solid #e6e6e6;
      box-shadow: 0 14px 38px rgba(0, 0, 0, .08);
      text-align: center;
		margin: 0 auto 30px;
    }

    .goods-notice-area__lead {
      margin: 0 0 18px;
      font-size: 15px;
      color: #333;
    }

    .modal-trigger {
      appearance: none;
      border: 0;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-width: 280px;
      padding: 14px 22px;
      background: #000;
      color: #fff;
      font: inherit;
      font-weight: 700;
      letter-spacing: .04em;
      transition: opacity .2s ease, transform .2s ease;
    }

    .modal-trigger:hover {
      opacity: .82;
    }

    .modal-trigger:active {
      transform: translateY(1px);
    }

    .modal-trigger:focus-visible,
    .modal-close:focus-visible {
      outline: 3px solid #2f7cff;
      outline-offset: 3px;
    }

    .modal-trigger__icon {
      width: 1.05em;
      height: 1.05em;
      flex: 0 0 auto;
    }

    .modal {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: none;
    }

    .modal.is-open {
      display: block;
    }

    .modal__overlay {
      position: absolute;
      inset: 0;
      background: var(--color-overlay);
    }

    .modal__dialog {
      position: relative;
      width: min(calc(100% - 32px), var(--modal-max));
      max-height: calc(100dvh - 32px);
      margin: 16px auto;
      background: var(--color-bg);
      overflow: auto;
      box-shadow: 0 24px 80px rgba(0, 0, 0, .38);
    }

    .modal__head {
      position: sticky;
      top: 0;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 14px 18px;
      background: #fff;
      border-bottom: 1px solid #ddd;
    }

    .modal__heading {
      margin: 0;
      font-size: clamp(18px, 2.6vw, 24px);
      font-weight: 700;
      letter-spacing: .03em;
    }

    .modal-close {
      appearance: none;
      position: relative;
      border: 1px solid #111;
      cursor: pointer;
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      background: #fff;
      color: #111;
      font-size: 0;
      line-height: 1;
      flex: 0 0 auto;
    }

    .modal-close::before,
    .modal-close::after {
      content: "";
      position: absolute;
      width: 20px;
      height: 2px;
      background: currentColor;
    }

    .modal-close::before {
      transform: rotate(45deg);
    }

    .modal-close::after {
      transform: rotate(-45deg);
    }

    .limit-notice {
      padding: 34px clamp(16px, 4vw, 40px) 28px;
      background: #fff;
    }

    .limit-notice__inner {
      width: min(100%, 960px);
      margin: 0 auto;
    }

    .limit-notice__title {
      margin: 0 0 8px;
      text-align: center;
      font-size: clamp(17px, 2.4vw, 23px);
      font-weight: 700;
      letter-spacing: .03em;
    }

    .limit-notice__bar {
      margin: 0 0 28px;
      padding: 8px 14px;
      background: #000;
      color: #fff;
      text-align: center;
      font-weight: 700;
      letter-spacing: .04em;
      line-height: 1.35;
    }

    .limit-table-wrap {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }

    .limit-table {
      width: 100%;
      max-width: 750px;
      border-collapse: collapse;
      table-layout: fixed;
      border: 3px solid var(--color-border);
      background: #fff;
      font-size: 17px;
      line-height: 1.32;
    }

    .limit-table col:first-child {
      width: 62.5%;
    }

    .limit-table col:last-child {
      width: 37.5%;
    }

    .limit-table th,
    .limit-table td {
      padding: 4px 6px;
      border: 1px solid var(--color-grid);
      vertical-align: middle;
    }

    .limit-table th {
      background: #e9e9e9;
      border-bottom: 2px solid var(--color-border);
      font-weight: 700;
      text-align: center;
    }

    .limit-table td:first-child {
      text-align: left;
    }

    .limit-table__limit {
      text-align: center;
      font-weight: 700;
      border-left: 2px solid var(--color-border) !important;
    }

    .limit-table__limit--large {
      font-size: 17px;
    }

    .limit-table__limit--trading {
      font-size: 19px;
    }

    .limit-table__group-start td,
    .limit-table__group-start .limit-table__limit {
      border-top: 2px solid var(--color-border);
    }

    .limit-table__red {
      color: var(--color-red);
      font-weight: 800;
    }

    .limit-notice__notes {
      margin: 10px 0 0;
      padding: 0;
      list-style: none;
      font-size: 15px;
      line-height: 1.65;
    }

    .limit-notice__notes li {
      margin: 0;
    }

    body.is-modal-open {
      overflow: hidden;
    }

    @media (max-width: 767px) {
      .page-sample {
        padding: 28px 14px;
      }

      .goods-notice-area {
        padding: 24px 16px;
      }

      .modal-trigger {
        width: 100%;
        min-width: 0;
      }

      .modal__dialog {
        width: calc(100% - 20px);
        max-height: calc(100dvh - 20px);
        margin: 10px auto;
      }

      .modal__head {
        padding: 10px 12px;
      }

      .modal-close {
        width: 38px;
        height: 38px;
      }

      .limit-notice {
        padding: 22px 12px 20px;
      }

      .limit-notice__bar {
        margin-bottom: 18px;
      }

      .limit-table {
        font-size: 15px;
      }

      .limit-table__limit--trading {
        font-size: 16px;
      }

      .limit-notice__notes {
        font-size: 13px;
      }
    }
  

/* ---- ticket modal styles ---- */


    html {
      scroll-behavior: smooth;
    }

    body.is-modal-open {
      overflow: hidden;
    }

    button {
      font: inherit;
    }

    .page-sample {
      min-height: 100vh;
      display: grid;
      place-items: center;
      padding: 48px 20px;
    }

    .ticket-notice-area {
      width: min(100%, 720px);
      padding: clamp(28px, 5vw, 44px);
      background: #fff;
      border: 1px solid #e7e4dc;
      box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
      text-align: center;
    }

    .ticket-notice-area__eyebrow {
      margin: 0 0 8px;
      color: #666;
      font-size: 13px;
      letter-spacing: .12em;
    }

    .ticket-notice-area__lead {
      margin: 0 0 22px;
      font-size: 15px;
      color: #333;
      line-height: 1.75;
    }

    .modal-trigger {
      appearance: none;
      border: 0;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-width: min(100%, 300px);
      padding: 14px 22px;
      background: #FF0000;
      color: #fff;
      font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
      font-weight: 700;
      letter-spacing: .06em;
      line-height: 1.35;
      transition: opacity .2s ease, transform .2s ease;
    }

    .modal-trigger:hover {
      opacity: .82;
    }

    .modal-trigger:active {
      transform: translateY(1px);
    }

    .modal-trigger:focus-visible,
    .modal-close:focus-visible {
      outline: 3px solid #2f7cff;
      outline-offset: 3px;
    }

    .modal-trigger__icon {
      width: 1.1em;
      height: 1.1em;
      flex: 0 0 auto;
    }

    .modal {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: none;
    }

    .modal.is-open {
      display: block;
    }

    .modal__overlay {
      position: absolute;
      inset: 0;
      background: var(--color-overlay);
    }

    .modal__dialog {
      position: relative;
      width: min(calc(100% - 32px), var(--modal-max));
      max-height: calc(100dvh - 32px);
      margin: 16px auto;
      background: var(--color-bg);
      overflow: auto;
      box-shadow: 0 24px 80px rgba(0, 0, 0, .38);
      -webkit-overflow-scrolling: touch;
    }

    .modal__head {
      position: sticky;
      top: 0;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 14px 18px;
      background: #fff;
      border-bottom: 1px solid #ddd;
      font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
    }

    .modal__heading {
      margin: 0;
      font-size: clamp(18px, 2.6vw, 24px);
      font-weight: 700;
      letter-spacing: .04em;
      line-height: 1.4;
    }

    .modal-close {
      appearance: none;
      position: relative;
      border: 1px solid #111;
      cursor: pointer;
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      background: #fff;
      color: #111;
      font-size: 0;
      line-height: 1;
      flex: 0 0 auto;
    }

    .modal-close::before,
    .modal-close::after {
      content: "";
      position: absolute;
      width: 20px;
      height: 2px;
      background: currentColor;
    }

    .modal-close::before {
      transform: rotate(45deg);
    }

    .modal-close::after {
      transform: rotate(-45deg);
    }

    .ticket-notice {
      padding: clamp(28px, 5vw, 54px) clamp(18px, 5vw, 64px) clamp(34px, 5vw, 56px);
      background: #fff;
    }

    .ticket-notice__inner {
      width: min(100%, 900px);
      margin: 0 auto;
    }

    .ticket-notice__title {
      margin: 0;
      text-align: center;
      font-size: clamp(17px, 2.4vw, 23px);
      font-weight: 600;
      line-height: 1.9;
      letter-spacing: .04em;
    }

    .ticket-notice__rule {
      width: min(100%, 760px);
      height: 1px;
      margin: 34px auto 28px;
      background: #111;
    }

    .section {
      margin-top: 32px;
    }

    .section:first-of-type {
      margin-top: 0;
    }

    .section-title {
      margin: 0 0 8px;
      font-size: clamp(17px, 2vw, 20px);
      font-weight: 700;
      line-height: 1.6;
    }

    .sub-title {
      margin: 14px 0 4px;
      font-weight: 700;
      line-height: 1.65;
    }

    .ticket-notice p {
      margin: 0 0 7px;
    }

    .marker {
      display: inline;
      padding: 0 .08em .04em;
      background: var(--color-highlight);
      color: #000;
      font-weight: 700;
    }

    .note-list,
    .dot-list {
      margin: 4px 0 0;
      padding: 0;
      list-style: none;
    }

    .note-list li,
    .dot-list li {
      margin: 0 0 4px;
    }

    .note-list li::before {
      content: "※";
    }

    .dot-list li::before {
      content: "・";
    }

    .shop-time {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      margin-top: 10px;
    }

    .shop-time__box {
      border: 1px solid #d8d8d8;
      padding: 16px 18px;
      background: #fafafa;
    }

    .shop-time__name {
      margin: 0 0 5px;
      font-weight: 700;
      line-height: 1.45;
    }

    .map-block {
      margin-top: 10px;
    }

    .map-block__image {
      display: block;
      width: 100%;
      max-width: 820px;
      height: auto;
      margin: 12px auto 0;
      border: 0;
    }

    .procedure {
      margin: 6px 0 0;
      padding: 0;
      list-style: none;
    }

    .procedure > li {
      position: relative;
      margin: 0 0 22px;
      padding-left: 1.65em;
    }

    .procedure__num {
      position: absolute;
      left: 0;
      top: 0;
      font-weight: 700;
    }

    .attention-list {
      margin: 14px 0 0;
      padding: 0;
      list-style: none;
    }

    .attention-list li {
      position: relative;
      margin: 0 0 7px;
      padding-left: 1em;
    }

    .attention-list li::before {
      content: "・";
      position: absolute;
      left: 0;
      top: 0;
    }

    .url-text {
      word-break: break-all;
    }

    .modal__foot {
      padding: 16px 18px 20px;
      background: #f7f7f7;
      border-top: 1px solid #ddd;
      text-align: center;
      font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
    }

    .modal__foot .modal-trigger {
      min-width: 180px;
      padding: 11px 18px;
      background: #fff;
      color: #111;
      border: 1px solid #111;
    }

    @media (max-width: 768px) {
      body {
        line-height: 1.78;
      }

      .modal__dialog {
        width: min(calc(100% - 20px), var(--modal-max));
        max-height: calc(100dvh - 20px);
        margin: 10px auto;
      }

      .ticket-notice__title {
        text-align: left;
      }

      .ticket-notice__rule {
        margin: 24px 0 22px;
      }

      .shop-time {
        grid-template-columns: 1fr;
      }

      .map-block {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
      }

      .map-block__image {
        width: 100%;
      }
    }

    @media (max-width: 480px) {
      .ticket-notice-area {
        padding: 28px 18px;
      }

      .modal__head {
        padding: 12px 14px;
      }

      .modal-close {
        width: 38px;
        height: 38px;
      }
    }
  


/* =========================================================
   2ボタン横並び用 追加CSS
   既存ページへ入れる場合は、このブロックだけでも流用できます。
========================================================= */
.notice-modal-buttons-area {
  width: min(92%);
  margin: 0 auto 30px;
  padding: clamp(24px, 5vw, 40px);
  background: #fff;
  box-shadow: 0 16px 42px rgba(0, 0, 0, .08);
  text-align: center;
}

.notice-modal-buttons-area__eyebrow {
  margin: 0 0 8px;
  color: #666;
  font-size: 13px;
  letter-spacing: .12em;
}

.notice-modal-buttons-area__lead {
  margin: 0 0 22px;
  font-size: 15px;
  color: #333;
  line-height: 1.75;
}

.notice-modal-buttons {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 14px;
  flex-wrap: wrap;
}

.notice-modal-buttons .modal-trigger {
  width: min(100%, 320px);
  min-width: 0;
  min-height: 58px;
}

.notice-modal-buttons .modal-trigger--sub {
  background: #FF0000;
  color: #FFF;
}

@media (max-width: 640px) {
  .notice-modal-buttons {
    flex-direction: column;
  }

  .notice-modal-buttons .modal-trigger {
    width: 100%;
  }
}


/* =========================================================
   モーダル表示アニメーション
   - 背景フェード
   - モーダル本体を下からふわっと表示
   - 閉じる時もフェードアウト
========================================================= */
.modal {
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity .28s ease,
    visibility 0s linear .28s;
}

.modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

.modal__overlay {
  opacity: 0;
  transition: opacity .32s ease;
}

.modal.is-open .modal__overlay {
  opacity: 1;
}

.modal__dialog {
  opacity: 0;
  transform: translateY(26px) scale(.985);
  transition:
    opacity .28s ease,
    transform .38s cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
}

.modal.is-open .modal__dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .modal,
  .modal__overlay,
  .modal__dialog {
    transition: none !important;
  }
}


/* =========================================================
   背面スクロール固定
   - モーダル表示中に下のページが一緒に動くのを防止
   - iOS Safari対策としてbodyをfixed化し、閉じた時に元の位置へ復帰
========================================================= */
html.is-modal-open,
body.is-modal-open {
  overscroll-behavior: none;
}

body.is-modal-open {
  overflow: hidden;
}

.modal__dialog {
  overscroll-behavior: contain;
}
.mt10{margin-top: 10px;}
.mt20{margin-top: 20px;}
.mt30{margin-top: 30px;}
.mt40{margin-top: 40px;}
.mb10{margin-bottom: 10px;}
.mb20{margin-bottom: 20px;}
.mb30{margin-bottom: 30px;}