@charset "UTF-8";

/*--------------------------------------------------
  Base
--------------------------------------------------*/
@media print, screen and (min-width: 768px) {
  :root {
    --header-height: 146px;
    --nav-height: 56px;
  }
}
@media screen and (max-width: 767.98px) {
  :root {
    --header-height: 90px;
    --nav-height: 80px;
  }
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 24px);
}

body {
  font-family: "Noto Sans CJK JP", "Noto Sans", sans-serif;
  -webkit-text-size-adjust: 100%;
  line-height: 1.5;
  color: #222426;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: #222426;
  text-align: center;
}


/*--------------------------------------------------
  Utility
--------------------------------------------------*/
@media print, screen and (min-width: 768px) {
  .sp-only {
    display: none!important;
  }
}
@media screen and (max-width: 767.98px) {
  .pc-only {
    display: none!important;
  }
}


/* u-font-color-orange
-------------------------*/
.u-font-color-orange {
  color: #E71D76!important;
}


/* u-font-weight-bold
-------------------------*/
.u-font-weight-bold {
  font-weight: 700 !important;
}


/*--------------------------------------------------
  Components
--------------------------------------------------*/
/* c-base-layout
-------------------------*/
.c-base-layout {
  width: 100%;
  padding-bottom: 100px;
}
@media print, screen and (min-width: 768px) {
  .c-base-layout {
    padding-top: 64px;
    padding-inline: 40px;
  }
}
@media screen and (max-width: 767.98px) {
  .c-base-layout {
    padding-top: 40px;
    padding-inline: 20px;
  }
}


/* c-base-layout
-------------------------*/
.c-base-inner-layout {
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .c-base-inner-layout {
    max-width: 1104px;
    margin-inline: auto;
  }
}


/* c-section 
-------------------------*/
@media print, screen and (min-width: 768px) {
  .c-section {
    margin-top: 120px;
  }
  .c-section__heading + .c-section__contents {
    margin-top: 60px;
  }
  #faq .c-section__heading + .c-section__contents,
  #admission-flow .c-section__heading + .c-section__contents {
  margin-top: 24px;
}
}
@media screen and (max-width: 767.98px) {
  .c-section {
    margin-top: 64px;
  }
  .c-section__heading + .c-section__contents {
    margin-top: 40px;
  }
  #faq .c-section__heading + .c-section__contents,
  #admission-flow .c-section__heading + .c-section__contents {
  margin-top: 24px;
}
}


/* c-section-heading
-------------------------*/
.c-section-heading {
  font-weight: bold;
  color: #0068B7;
  border-bottom: solid 2px #0068B7;
}
@media print, screen and (min-width: 768px) {
  .c-section-heading {
    font-size: 2rem;
    padding-bottom: 14px;
  }
}
@media screen and (max-width: 767.98px) {
  .c-section-heading {
    font-size: 1.75rem;
    padding-bottom: 22px;
  }
}

  .title-pc {
    /* display: block; */
  }
@media screen and (max-width: 768px) {
   .title-pc {
    display: none;
  }
}

/*--------------------------------------------------
  Plugin
--------------------------------------------------*/
/* slick
-------------------------*/
.slick-list {
  height: 100%;
}

.slick-track {
  height: 100%;
}


/*--------------------------------------------------
  PageSpecific
--------------------------------------------------*/
/* mv
-------------------------*/
.mv {
  width: 100%;
  position: relative;
}
@media screen and (max-width: 767.98px) {
  .mv {
    aspect-ratio: 375 / 500;
  }
}
.mv__slides {
  width: 100%;
  height: 100%;
  pointer-events: none;
  aspect-ratio: 3840 / 800; 
  overflow: hidden;
}
.mv__slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.mv__contents {
  width: 100%;
  text-align: center;
  padding: 24px 0 32px;
  background-color: #F0F7FF;
}
@media screen and (max-width: 767.98px) {
  .mv__contents {
    padding-bottom: 40px;
  }
}


/* mv-title
-------------------------*/
.mv-title {
  font-weight: bold;
  color: #000;
}
.mv-title__detail {
  display: block;
}
@media print, screen and (min-width: 768px) {
  .mv-title {
    font-size: 2.5rem;
  }
  .mv-title__info {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    line-height: 1;
  }
  .mv-title__detail{
    font-size: 1.5rem;
    text-align: left;
  }
}
@media screen and (max-width: 767.98px) {
  .mv-title {
    font-size: 3rem;
  }
  .mv-title__info {
    display: block;
    font-size: 2.5rem;
    line-height: 1.3;
    padding: 0 20px;
  } 
  .mv-title__detail {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 430px) {
  .mv-title {
    font-size: 2.375rem;
  }
  .mv-title__info {
    font-size: 2rem;
  }
}

.mv__link {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.mv__link-text {
  background: linear-gradient(88deg, #0068B7 1.52%, #CA11AD 70.22%, #E60012 97.56%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.3;
}
.mv__link-button {
  display: flex;
  align-items: center;
  width: 100%;
  height: 44px;
  font-size: 0.875rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  background-color: #10069F;
  border-radius: 100px;
  padding: 8px 1rem;
  transition: background-color .3s;
  margin-left: 16px;
  position: relative;
  cursor: pointer;
}
.mv__link-button::after {
  content: "";
  flex-shrink: 0;
  display: inline-flex;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-image: url('../images/icon/down-arrow_black.svg');
  mask-image: url('../images/icon/down-arrow_black.svg');
  width: 17px;
  height: 17px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  transition: background-color .3s;
}
@media print, screen and (min-width: 768px) {
  .mv__link-button {
    max-width: 132px;
  }
}
@media screen and (max-width: 767.98px) {
  .mv__link {
    flex-direction: column;
  }
  .mv__link-text {
    margin-bottom: 24px;
  }
  .mv__link-button {
    max-width: 256px;
    justify-content: center;
  }
}

/* mv__page-anchors
-------------------------*/
.nav-container_pc {
  min-height: var(--nav-height);
}
/* @media screen and (max-width: 767.98px) {
  .nav-container {
    display: none;
  }
} */
.nav-container_sp {
  display: none;
}
/* @media screen and (max-width: 767.98px) {
  .nav-container {
    display: none;
  }
} */

/* ▼0427追加 */
.nav-container {
    position: -webkit-sticky; /* Safari対策 */
    position: sticky;
    top: 0;       /* 画面の一番上で止まる */
    z-index: 1000;
    background: #fff; /* 背景が透明だと下の文字と重なるため必須 */
}
/* ▼0427追加 */

.mv__page-anchors {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  padding: 16px 32px 16px 18px;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.15);
  background-color: #fff;
}
@media screen and (max-width: 767.98px) {
  .mv__page-anchors{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;   /* すべての行の高さを一番高いものに合わせる */
    align-items: stretch;
  }
}
.mv__page-anchors.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
.mv__page-anchor {
  text-decoration: none;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mv__page-anchor::after {
  font-size: 1rem;
  font-weight: bold;
  color: #000;
  transition: all .3s;
}
.mv__page-anchor + .mv__page-anchor {
  padding-left: 16px;
  position: relative;
  text-align: center; /* テキストを中央寄せ */
  display: flex;      /* flexを使う方がより確実に中央配置できます */
  justify-content: center;
  align-items: center;
}
.mv__page-anchor + .mv__page-anchor::before {
  display: block;
  content: '';
  width: 1px;
  height: 100%;
  background-color: #E9ECF2;
  position: absolute;
  left: 0;
}

@media screen and (max-width: 767.98px) {
  .mv__page-anchors .mv__page-anchor:nth-child(odd)::before,
  .mv__page-anchor + .mv__page-anchor:nth-child(odd)::before {
    display: none !important;
  }
}

 /* @media print, screen and (min-width: 768px) {
  .mv__page-anchors {
    padding: 16px 32px;
  }
  .mv__page-anchor--event-overview::after {
    content: '開催概要';
  }
  .mv__page-anchor--purchase-tickets::after {
    content: 'チケット購入';
  }
  .mv__page-anchor--admission-flow::after {
    content: 'チケット購入後の流れ';
  }
  .mv__page-anchor--corporation::after {
    content: '法人・団体の方';
  }
  .mv__page-anchor--faq::after {
    content: 'よくある質問';
  }
  .mv__page-anchor--inquiry::after {
    content: 'お問い合わせ';
  }
}
@media screen and (max-width: 767.98px) {
  .mv__page-anchors {
    padding: 8px 18px;
  }
  .mv__page-anchor--event-overview::after {
    content: '概要';
  }
  .mv__page-anchor--purchase-tickets::after {
    content: 'チケット';
  }
  .mv__page-anchor--admission-flow::after {
    content: 'チケット購入後の流れ';
  } 
  .mv__page-anchor--corporation::after {
    content: '法人・団体の方';
  }
  .mv__page-anchor--faq::after {
    content: 'FAQ';
  }
  .mv__page-anchor--inquiry::after {
    content: 'お問い合わせ';
  }
} */



@media screen and (max-width: 320px) {
  .mv__page-anchors {
    gap: 8px;
  }
  .mv__page-anchor::after {
    font-size: 0.875rem;
  }
  .mv__page-anchor + .mv__page-anchor {
    padding-left: 8px;
  }
}
@media (hover) {
  .mv__link-button:hover {
    background-color: #140D77;
  }
  .mv__page-anchor:hover::after {
    color: #9EC5F1;
  }
}

/* 親要素：ナビの項目 */
.dropdown-wrapper {
  position: relative;
  cursor: pointer;
  display: inline-block;
  padding: 0;
}

/* メインのリンクテキスト */
.mv__page-anchor-link {
  text-decoration: none;
  color: inherit;
  display: block;
  padding: 0 16px;
}

/* ドロップダウンメニュー本体 */
.dropdown-menu {
  display: none; /* 通常は非表示 */
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  min-width: 180px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 8px 0;
  z-index: 100;
  margin-top: 10px;
}

/* 上向きの三角形（矢印） */
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
}

/* メニュー内の各リンク */
.dropdown-item {
  display: block;
  padding: 10px 16px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  line-height: 1.4;
  transition: background 0.2s, color 0.2s;
  text-align: left; /* 左寄せ */
}
.dropdown-menu::after {
  content: "";
  position: absolute;
  top: -10px;    /* 隙間の10px分を上に伸ばす */
  left: 0;
  width: 100%;
  height: 10px;  /* 隙間と同じ高さ */
  display: block;
}

/* --- インタラクション（動き） --- */

/* ホバーしたら表示 */
.dropdown-wrapper:hover .dropdown-menu {
  display: block;
}

/* メニュー内リンクのホバー時 */
.dropdown-item:hover {
  background-color: #f5f5f5;
  color: #007bff; /* アクセントカラー */
}

/* mv-wrapper
-------------------------*/
.mv__wrapper {
  width: 100%;
  background: url(../images/mv_left.png) left 0 top 0 no-repeat;
}
.mv__inner {
  width: 100%;
  background: url(../images/mv_right.png) right 0 top 0 no-repeat;
}
@media screen and (max-width: 1200px) {
  .mv__wrapper {
    background: url(../images/mv_left.png) left calc(-600px + 50vw) top 0 no-repeat;
  }
  .mv__inner {
    background: url(../images/mv_right.png) right calc(-600px + 50vw) top 0 no-repeat;
  }
}
@media screen and (max-width: 767.98px) {
  .mv__wrapper {
    padding-bottom: 64px;
    background: url(../images/mv_bottom.png) left 0 bottom 0 no-repeat;
    background-size: contain;
  }
  .mv__inner {
    background: url(../images/mv_top.png) right 0 top 0 no-repeat;
    background-size: contain;
  }
}
.mv__content {
  position: static;
  /* height: 400px;
  max-width: 1104px;
  margin: 0 auto;
  text-align: center; */
}
@media screen and (max-width: 767.98px) {
  .mv__content {
    height: auto;
  }
}

.mv-top {
  width: 100%;
  position: relative;
  height: 375px;
   /* PC表示時のMVの高さ */
  aspect-ratio: 3840 / 800; 
  overflow: hidden;
}
.mv {
  width: 100%;
  position: relative;
  height: 375px;
   /* PC表示時のMVの高さ */
  aspect-ratio: 3840 / 800; 
  overflow: visible;
}
@media screen and (max-width: 767.98px) {
  .mv-top {
    /* スマホ表示時のMVの高さを指定（画像の縦横比に合わせて数値を調整してください） */
    height: 455px; 
    aspect-ratio: 375 / 500; 
    overflow: hidden;
  }
  .mv {
    /* スマホ表示時のMVの高さを指定（画像の縦横比に合わせて数値を調整してください） */
    height: 455px; 
    aspect-ratio: 375 / 500; 
    overflow: visible;
  }
}

/* Swiperを画面いっぱいに広げる */
.swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* スライドを枠いっぱいに */
.swiper-slide {
  width: 100%;
  height: 100%;
}

/* 既存の width: 50%; などを強制的に上書きして、
画像を枠いっぱいに広げ、余白が出ないようトリミング（cover）します 
*/
.swiper-slide img.mv__content--img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
}

.mv-front-logo {
 position: absolute;
  top: 46%;
  left: 50%;
  /* 縦横ともに -50% で「自分の中心」を「画面の中心」に合わせる */
  transform: translate(-50%, -50%); 
  z-index: 10;
  
  /* ★修正：幅を中身（画像）にピッタリ合わせる */
  width: fit-content;
  max-width: 90%;
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  white-space: nowrap;

  @media screen and (max-width: 767.98px) {
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.logo {
  width: 44%;
  height: auto;
  display: block;
  @media screen and (max-width: 767.98px) {
    width: 125%;
    max-width: 125%;
  }
}

.mv-side-nav {
  position: absolute;
  right: 40px;  /* 右端からの距離を固定 */
  bottom: 20px;
  top: auto; 
  transform: none; 
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: max-content;   /* 中身の最大幅に合わせる */
  white-space: nowrap;

  @media screen and (max-width: 767.98px) {
    left: 50%;/* スマホでは少し端に寄せる */
    bottom: 24px; /* スマホでは少し下に下げる */
    transform: translateX(-50%);
  }
}
/* ボタン本体のデザイン */
.button-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  
  /* 背景のグラデーション（左から右へ） */
  background: linear-gradient(to right, #0074C4, #00CADE);
  
  /* 白いフチと角丸 */
  border: 4px solid #ffffff;
  border-radius: 8px;
  
  /* 余白の調整（ボタンの大きさを決めます） */
  padding: 12px 32px;
  
  /* ボタン全体に薄く影をつける場合（不要なら削除可） */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  
  /* ホバー時のアニメーション設定 */
  transition: opacity 0.3s ease;
}

/* ホバー時のアクション */
.button-item:hover {
  opacity: 0.85;
}

/* 上段：TICKETS の文字設定 */
.button-item .button-title {
  color: #ffffff;
  font-size: 1.125rem; /* 約18px */
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  /* 文字の影（画像のような立体感を出す） */
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

/* 下段：ご購入はこちら の文字設定 */
.button-item .button-subtitle {
  color: #ffffff;
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

/* スマートフォン表示時の文字サイズ調整（必要に応じて） */
@media screen and (max-width: 767.98px) {
  .button-item {
    padding: 8px 16px;
    border-width: 3px;
    gap: 0;
    font-weight: normal;
  }
  .button-item .button-title {
    font-size: 14px; 
  }
  .button-item .button-subtitle {
    font-size: 20px; 
  }
}

/* 5. ロゴ画像（mv_logo.png）がスライダーの下に隠れないように手前に出す */
.mv__content > img {
  position: relative;
  z-index: 1;
}
.mv__content--img {
  max-width: 100%;
}
@media screen and (max-width: 767.98px) {
  .mv__content--img {
    width: 50%;
  }
}
.mv__content--text01 {
  color: #697180;
  text-align: center;
  font-weight: bold;
}
.mv__content--text02 {
  margin-top: 32px;
  text-align: center;
  font-size: 4rem;
  color: #0068B7;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 767.98px) {
  .mv__content--text02 {
    font-size: 2.5rem;
  }
}
.mv__content--text02 span {
  color: #E60012;
}
@media screen and (max-width: 767.98px) {
  .mv__content--text02 span {
    display: block;
  }
}
.mv__content--text03 {
  margin-top: 8px;
  font-size: 1.25rem;
  color: #222426;
  font-weight: bold;
}
@media screen and (max-width: 767.98px) {
  .mv__content--text03 {
    font-size: 1rem;
  }
}
.mv__content--text04 {
  margin-top: 24px;
  text-align: center;
  font-size: 1.5rem;
  color: #222426;
  font-weight: bold;
}
@media screen and (max-width: 767.98px) {
  .mv__content--text04 {
    font-size: 1.25rem;
  }
}
.mv__content--copyright {
  width: 100%;
  text-align: center;
  color: #000;
  font-size: 0.875rem;
}
@media screen and (max-width: 767.98px) {
  .mv__content--copyright {
    position: absolute;
    bottom: -66px;
    left: 0;
    color: #fff;
  }
}

/* mv-wrapper
-------------------------*/
.mv__sub {
  height: 260px;
  padding: 100px 24px;
  background: center top 0 no-repeat;
  background-size: cover;
  position: relative;
}
.mv__sub.mv__sub--ticket {
  background-image: url(../images/mv_ticket.jpg);
}
@media screen and (max-width: 767.98px) {
  .mv__sub.mv__sub--ticket {
    background-image: url(../images/mv_ticket_sp.jpg);
  }
}
.mv__sub.mv__sub--tour {
  background-image: url(../images/mv_tour.jpg);
}
.mv__sub.mv__sub--plan {
  background-image: url(../images/mv_plan.jpg);
}
@media screen and (max-width: 767.98px) {
  .mv__sub.mv__sub--plan {
    background-image: url(../images/mv_plan_sp.jpg);
  }
}
@media screen and (max-width: 767.98px) {
  .mv__sub {
    padding: 80px 24px;
  }
}
.mv__sub h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffffff;
  line-height: 3;
  text-align: center;
  text-shadow: #4b4b4b 0 0 20px;
}
@media screen and (max-width: 767.98px) {
  .mv__sub h2 {
    font-size: 2rem;
  }
}
.mv__sub h2 span {
  font-size: 1.25rem;
}
.mv__sub p {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-size: 0.75rem;
  color: #ffffff;
  text-shadow: #4b4b4b 0 0 20px;
}
@media screen and (max-width: 767.98px) {
  .mv__sub p {
    bottom: 8px;
    right: 8px;
  }
}


/* news-list
-------------------------*/
.news-list__item:not(:last-of-type) {
  padding-bottom: 16px;
  border-bottom: solid 1px #D2D7DA;
}
.news-list__item + .news-list__item {
  margin-top: 16px;
}
.news-info__head {
  display: flex;
  align-items: center;
  gap: 8px;
}
.news-info__time {
  flex-shrink: 0;
  font-size: 0.75rem;
  line-height: 1;
  color: #697180;
}
.news-info__text {
  display: inline-flex;
  margin-top: 8px;
  transition: color .3s;
}
.news-info__category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.news-info__category-tag {
  display: inline-flex;
  font-weight: bold;
  font-size: 0.75rem;
  line-height: 1;
  color: #697180;
  background-color: #F5F7FA;
  padding: 4px 8px;
  border-radius: 4px;
}
.news-info__category-tag--new {
  text-transform: uppercase;
  color: #333333;
  background-color: #FFEE1D;
}
@media print, screen and (min-width: 768px) {
  .news-info__text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767.98px) {
  .news-info__text {
    font-size: 16px;
    text-align: left;
  }
}
@media (hover) {
  .news-info__text:hover {
    color: #140D77;
    text-decoration: underline;
  }
}


/* event-summary
-------------------------*/
.event-summary__image {
  display: block;
  text-align: center;
  margin-top: 16px;
}
.event-summary__text{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.event-summary__item {
  display: grid;
  grid-template-columns: 1fr 8fr;

  h4 {
    font-size: 14px;
    font-weight: bold;
  }  
}
@media screen and (max-width: 767.98px) {
  .event-summary__item {
    grid-template-columns: 1fr 3fr;
    gap: 12px;
  }
}
.event-summary__image-note {
  display: block;
  font-size: 0.75rem;
  margin-top: 16px;
  word-break: break-all;
  text-align: right;
}
.event-summary__image-note a {
  text-decoration: underline;
}
.event-summary__heading {
  font-weight: bold;
  color: #000000;
  margin-top: 24px;
}
.event-summary__heading span{
  font-size:16px;
}
.event-summary__text {
  font-size: 16px;
  color: #333333;
}
.event-summary__links {
  display: flex;
}
.event-summary__link {
  display: flex;
  align-items: center;
  width: 100%;
  line-height: 1.25;
  background-color: #FFFFFF;
  border: solid 1px #939DAD;
  border-radius: 100px;
  position: relative;
  transition: all .3s;
}
.event-summary__link::after {
  content: "";
  flex-shrink: 0;
  display: inline-flex;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-image: url('../images/blank_white.svg');
  mask-image: url('../images/blank_white.svg');
  width: 16px;
  height: 16px;
  background-color: #697180;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color .3s;
}
@media print, screen and (min-width: 768px) {
  .event-summary__image-note {
    text-align: right;
  }
  .event-summary__image-note a:hover {
    text-decoration: none;
  }
  .event-summary__text {
    /* margin-top: 24px; */
  }
  .event-summary__heading {
    font-size: 1.625rem;
  }
  .event-summary__links {
    gap: 24px;
    margin-top: 24px;
  }
  .event-summary__link {
    justify-content: center;
    max-width: 400px;
    font-size: 1rem;
    padding-block: 11px;
    padding-right: 35px;
    padding-left: 15px;
  }
  .event-summary__link::after {
    right: 16px;
  }
}
@media screen and (max-width: 767.98px) {
  .event-summary__heading {
    font-size: 1.125rem;
    line-height: 1;
  }
  .event-summary__heading span{
    font-size:12px;
  }
  .event-summary__text {
    margin-top: 16px;
  }
  .event-summary__links {
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
  }
  .event-summary__link {
    justify-content: flex-start;
    font-size: 0.875rem;
    padding-block: 7px;
    padding-right: 31px;
    padding-left: 11px;
  }
  .event-summary__link::after {
    right: 12px;
  }
}
@media (hover) {
  .event-summary__link:hover {
    color: #140D77;
    background-color: #F0F7FF;
    border-color: #F0F7FF;
  }
  .event-summary__link:hover::after {
    background-color: #140D77;
  }
}

/* theme
-------------------------*/
.theme-box {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 120px;
}
@media screen and (max-width: 767.98px) {
  .theme-box {
    margin-top: 24px;
    gap: none;
  }
}
.theme-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.theme-heading {
  text-align: center;
  p {
    font-size: 20px;
    font-weight: bold;
  }
  h2 {
    font-size: 40px;
    font-weight: bold;
    background: linear-gradient(to bottom, #0068B7, #00CADE);
    -webkit-background-clip: text; 
    background-clip: text;
    color: transparent;
    display: inline-block; 
  }
  h3 {
    font-size: 20px;
    font-weight: bold;
    color: #0068B7;
  }
}
@media screen and (max-width: 768px) {
  .theme-heading {
    h2 {
      font-size: 28px;
    }
    h3 {
      font-size: 16px;
    }
  }
}
.theme-picture {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.theme-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .theme-list {
    grid-template-columns: none;
    gap: 24px;
  }
}
.theme-vision {
  font-size: 24px;
  font-weight: bold;
  margin-top: 8px;
}
.theme-item-p {
  font-size: 16px;
  font-weight: bold;
  color: #0068B7;
}


/* about-tour
-------------------------*/
.about-tour {
  margin-top: 16px;
}
.about-tour__note {
  line-height: 1.8;
}
.about-tour__block {
  margin-top: 60px;
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 767.98px) {
  .about-tour__block {
    display: block;
  }
}
.about-tour__block--image {
  width: 100%;
  height: auto;
}
.about-tour__block + .about-tour__block {
  margin-top: 24px;
}
.about-tour__block--tour {
  background: #0068B7;
  width: 50%;
}
.about-tour__block--plan {
  background: #0068B7;
  width: 50%;
}
@media screen and (max-width: 767.98px) {
  .about-tour__block--tour,
  .about-tour__block--plan {
    width: 100%;
  }
  .about-tour__block--plan {
    margin-top: 24px;
  }
}
.about-tour__block--text-area {
  padding: 24px;
  text-align: center;
}
.about-tour__block--text-area h3 {
  margin-top: 8px;
  color: #ffffff;
  font-size: 1.625rem;
  font-weight: bold;
}
.about-tour__block--text-area p {
  font-size: 0.875rem;
  font-weight: bold;
  color: #ffffff;
}
.about-tour__block--inner {
  width: 50%;
  background: #008EA3;
  display: flex;
}
@media screen and (max-width: 767.98px) {
  .about-tour__block--inner {
    width: 100%;
    margin-top: 24px;
  }
}
@media screen and (max-width: 1150px) {
  .about-tour__block--inner {
    display: block;
  }
}
.about-tour__block--inner img {
  width: 220px;
  height: auto;
}
@media screen and (max-width: 1150px) {
  .about-tour__block--inner img {
    width: 100%;
  }
}
.about-tour__block--inner-text {
  width: 100%;
  padding: 10.5px 24px;
}
.about-tour__block--inner-text h3 {
  font-size: 1.625rem;
  font-weight: bold;
  color: #fff;
}
.about-tour__block--inner-text p {
  margin-top: 8px;
  font-size: 0.875rem;
  font-weight: bold;
  color: #fff;
}

.about-tour__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 256px;
  line-height: 1.25;
  font-size: 1rem;
  margin: 16px auto 0 auto;
  padding-block: 11px;
  background-color: #FFFFFF;
  box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, .15);
  border-radius: 100px;
  position: relative;
  transition: all .3s;
  font-weight: bold;
}
@media (hover) {
  .about-tour__link:hover {
    color: #140D77;
    background-color: #F0F7FF;
    border-color: #F0F7FF;
  }
}

.product-links{
  margin: min((80vw / 7.5), 60px) auto 0;
  padding: 40px;
  background: #F0F7FF;
}
.links-title{
  width: 100%;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 32px;
}
.product-link-list{
  display: flex;
  gap: min((24vw / 7.5), 16px);
}
.product-link-list>li{
  width: calc((100% - (16px * 2)) / 3);
}
.product-link-list>li .event-summary__link{
  box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, .15);
  border: none
}
.link-note-txt{
  margin-top: min((16vw / 7.5), 8px);
  font-size: min((20vw / 7.5), 12px)
}
@media screen and (max-width: 767.98px){
  .product-links{
    padding: 24px
  }
  .links-title{
    font-size: 1.25rem;
    margin-bottom: 24px;
  }
  .product-link-list{
    flex-direction: column;
  }
  .product-link-list>li{
    width: 100%;
  }
  .product-link-list>li .event-summary__link{
    padding-block: calc(24vw / 7.5)
  }
}

/* about-entry
-------------------------*/
.about-entry {
  margin-top: 16px;
}
.about-entry__note {
  line-height: 1.8;
}
.about-entry__block {
  margin-top: 48px;
  padding: 40px;
  background: #F0F7FF;
}
@media screen and (max-width: 767.98px) {
  .about-entry__block {
    padding: 24px;
  }
}
.about-entry__block--inner {
  display: flex;
  justify-content: center;
  gap: 0 24px;
}
@media screen and (max-width: 767.98px) {
  .about-entry__block--inner {
    display: block;
  }
}
.about-entry__block--title {
  width: 100%;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 32px;
}
@media screen and (max-width: 767.98px) {
  .about-entry__block--title {
    font-size: 1.25rem;
    margin-bottom: 24px;
  }
}
.about-entry__block--button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 452px;
  font-size: 1.25rem;
  font-weight: bold;
  padding-block: 24px;
  background-color: #FFFFFF;
  box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, .15);
  border-radius: 8px;
  position: relative;
  transition: all .3s;
}
@media screen and (max-width: 767.98px) {
  .about-entry__block--button {
    max-width: none;
    font-size: 1.0rem;
  }
  .about-entry__block--button + .about-entry__block--button {
    margin-top: 24px;
  }
}
@media (hover) {
  .about-entry__block--button:hover {
    color: #140D77;
    background-color: #F0F7FF;
    border-color: #F0F7FF;
  }
}
.about-entry__block--button img {
  display: block;
  margin-bottom: 16px;
}
.about-entry__block--button span {
  display: block;
  width: 100%;;
  text-align: center;
}

/* バナー追加 */
.c-bnr { 
    text-align: center; 
    margin-top: 40px; 
    width: 100%;  
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.c-bnr__image { 
   width: 100%; 
  height: 100px; 
  height: auto; 
  display: block;
}

@media screen and (max-width: 768px) {
    .c-bnr { 
        margin-top: 20px; 
        max-width: 710px; 
    }

    .c-bnr__image { 
        width: 100%;
        height: 200px; 
        height: auto;
    }
}

.c-bnr__link { 
    display: block;
}


/* about-ticket
-------------------------*/
.about-ticket__text {
  font-size: 0.875rem;
}
.about-ticket__contents-links {
  display: grid;
  margin-top: 24px;
}
.about-ticket__contents-link {
  display: flex;
  align-items: center;
  padding-block: 15px;
  padding-right: 35px;
  padding-left: 15px;
  border: solid 1px #D2D7DA;
  border-radius: 8px;
  position: relative;
  transition: all .3s;
}
.about-ticket__contents-link::after {
  content: "";
  flex-shrink: 0;
  display: inline-flex;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-image: url('../images/icon/down-arrow_black.svg');
  mask-image: url('../images/icon/down-arrow_black.svg');
  width: 17px;
  height: 17px;
  background-color: #222426;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  transition: background-color .3s;
}
.about-ticket__contents-link.is-disabled {
  color: #939DAD;
  background-color: #E9ECF2B2;
  border-color: #C0C5CCB2;
  pointer-events: none;
}
.about-ticket__contents-link.is-disabled::after {
  background-color: #ACB5BF;
}
.about-ticket__note {
  font-size: 0.875rem;
  text-indent: -1em;
  padding-left: 1em;
}
@media print, screen and (min-width: 768px) {
  .about-ticket__contents-links {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .about-ticket__contents-link {
    font-size: 1rem;
  }
  .about-ticket__notes {
    margin-top: 24px;
  }
}
@media screen and (max-width: 767.98px) {
  .about-ticket__contents-links {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
  .about-ticket__contents-link {
    font-size: 0.875rem;
  }
  .about-ticket__notes {
    margin-top: 16px;
  }
}
@media (hover) {
  .about-ticket__contents-link:hover {
    color: #140D77;
    background-color: #F0F7FF;
    border-color: #F0F7FF;
  }
  .about-ticket__contents-link:hover::after {
    background-color: #140D77;
  }
}



/* about-access
-------------------------*/
.about-access {
  margin-top: 16px;
}
.about-access__note {
  line-height: 1.8;
}
.access-map {
  width: 100%; 
  height: auto; 
  margin-top: 48px;
}

.access-map img {
  display: block; 
  width: 100%; 
  height: auto; 
}
@media screen and (max-width: 767.98px) {
  .access-map {
    width: 100%;
    height: 320px;
    overflow-x: auto;
    overflow-y: hidden;
    border: 1px solid #ccc;
    -webkit-overflow-scrolling: touch;
    img {
      height: 100%;
      width: auto;
      max-width: none;
      display: block;
    }
  }
}
@media screen and (max-width: 767.98px) {
  .access-map {
    margin-top: 24px;
  }
}
.about-access__scroll-hint {
  display: none;
}
@media screen and (max-width: 767.98px) {
  .about-access__scroll-hint {
    display: block;
    font-size: 16px;
    text-align: left;
  }
}
.about-access__block {
  margin-top: 40px;
  background: #FFF;
}
@media screen and (max-width: 767.98px) {
  .about-access__block {
    padding: 24px;
  }
}

.about-access__block--inner {
  display: flex;
  justify-content: center;
  gap: 0 24px;
}
@media screen and (max-width: 767.98px) {
  .about-access__block--inner {
    display: block;
  }
}
.about-access__block--title {
  width: 100%;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 32px;
}
@media screen and (max-width: 767.98px) {
  .about-access__block--title {
    font-size: 1.25rem;
    margin-bottom: 24px;
  }
}
.about-access__block--button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 452px;
  font-size: 1.25rem;
  font-weight: bold;
  padding-block: 24px;
  background-color: #FFFFFF;
  box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, .15);
  border-radius: 8px;
  position: relative;
  transition: all .3s;
  
}
@media screen and (max-width: 767.98px) {
  .about-access__block--button {
    max-width: none;
    font-size: 1.0rem;
  }
  .about-access__block--button + .about-access__block--button {
    margin-top: 24px;
  }
}
@media (hover) {
  .about-access__block--button:hover {
    color: #140D77;
    background-color: #FfffFF;
    border-color: #F0F7FF;
  }
}
.about-access__block--button img {
  display: block;
  margin-bottom: 8px;
}
.about-access__block--button span {
  display: block;
  width: 100%;;
  text-align: center;


}

.access-gate-east {
  width: 92px !important;
  border-radius: 4px;
  display: block; /* 親要素の幅いっぱいに表示 */
  font-size: 0.75em;
  color: white;
  background-color: #0068B7;
  padding: 4px 16px;
  margin-top: 4px;
}

.access-gate-west {
  width: 92px !important;
  border-radius: 4px;
  display: block; /* 親要素の幅いっぱいに表示 */
  font-size: 0.75em;
  color: white;
  background-color:#E60012;
  padding: 4px 16px;
  margin-top: 4px;
}

@media print, screen and (min-width: 768px) {
  .access-section__head {
    margin-top: 80px;
  }
  .access-section__contents {
    margin-top: 24px;
  }
}
@media screen and (max-width: 767.98px) {
  .access-section__head {
    margin-top: 40px;
  }
  .access-section__contents {
    margin-top: 24px;
  }
}


.access-head {
  display: flex;
  background-color: #F7F7F7;
}
.access-head__heading {
  font-weight: bold;
  font-size: 1.625rem;
  flex-shrink: 0;
}
@media print, screen and (min-width: 768px) {
  .access-head {
    align-items: center;
    gap: 120px;
    padding: 40px;
  }
  .access-head__details {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767.98px) {
  .access-head {
    flex-direction: column;
    gap: 16px;
    padding: 16px 20px;
    margin-inline: -20px;
  }
  .access-head__details {
    font-size: 0.875rem;
  }
}


.access-item__heading {
  font-weight: bold;
  font-size: 1.25rem;
}
.access-item__heading span {
  font-size: 1.25rem;
}
.access-item__text {
  font-size: 1rem;
}


@media print, screen and (min-width: 768px) {
  .access-item + .access-item {
    margin-top: 40px;
  }
  .access-item__text {
    margin-top: 16px;
  }
}
@media screen and (max-width: 767.98px) {
  .access-item + .access-item {
    margin-top: 24px;
  }
  .access-item__text {
    margin-top: 4px;
  }
  .access-item__text span {
    display: block;
  }
  
}




.about-caution__block {
  margin-top: 80px;
  padding: 40px;
  background: #FFF7f7;
}
@media screen and (max-width: 767.98px) {
  .about-access__block {
    margin-top: 40px;
    padding: 24px;
  }
}
.about-caution__block--title {
  width: 100%;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 24px;
}
@media screen and (max-width: 767.98px) {
  .about-caution__block--title {
    font-size: 1.25rem;
    margin-bottom: 16px;
  }
}

.about-caution__block--text{
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767.98px) {
  .about-caution__block--text {
    margin-bottom: 24px;
  }
}
/* tourボタン追加
-------------------------*/
.tour-button{
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  line-height: 1.25;
  font-size: 1rem;
  margin: 24px auto 0 auto;
  padding-block: 11px;
  padding-right:24px;
  background-color: #FFFFFF;
  box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, .15);
  border-radius: 100px;
  position: relative;
  transition: all .3s;
}
.tour-button.is-show {
  display: flex;
}

.tour-button::after {
  content: "";
  flex-shrink: 0;
  display: inline-flex;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-image: url('../images/blank_white.svg');
  mask-image: url('../images/blank_white.svg');
  width: 16px;
  height: 16px;
  background-color: #697180;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color .3s;
}
 .tour-button::after {
    right: 16px;
  }
@media (hover) {
  .tour-button:hover {
    color: #140D77;
    background-color: #F0F7FF;
    border-color: #F0F7FF;
  }
}
@media screen and (max-width: 767.98px) {
  .tour-button::after {
    right: 12px;
}
}



.about-access__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 256px;
  line-height: 1.25;
  font-size: 1rem;
  margin: 24px auto 0 auto;
  padding-block: 11px;
  background-color: #FFFFFF;
  box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, .15);
  border-radius: 100px;
  position: relative;
  transition: all .3s;
}

.about-access__link::after {
  content: "";
  flex-shrink: 0;
  display: inline-flex;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-image: url('../images/blank_white.svg');
  mask-image: url('../images/blank_white.svg');
  width: 16px;
  height: 16px;
  background-color: #697180;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color .3s;
}
 .about-access__link::after {
    right: 16px;
  }
@media (hover) {
  .about-access__link:hover {
    color: #140D77;
    background-color: #F0F7FF;
    border-color: #F0F7FF;
  }
}
@media screen and (max-width: 767.98px) {
  .about-access__link::after {
    right: 12px;
}
}

/* ticket-section
-------------------------*/
@media print, screen and (min-width: 768px) {
  .ticket-section__head {
    margin-top: 80px;
  }
  .ticket-section__contents {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767.98px) {
  .ticket-section__head {
    margin-top: 40px;
  }
  .ticket-section__contents {
    margin-top: 40px;
  }
}


/* ticket-head
-------------------------*/
.ticket-head {
  display: flex;
  background-color: #F7F7F7;
}
.ticket-head__heading {
  font-weight: bold;
  font-size: 1.625rem;
  flex-shrink: 0;
}
@media print, screen and (min-width: 768px) {
  .ticket-head {
    align-items: center;
    gap: 120px;
    padding: 40px;
  }
  .ticket-head__details {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767.98px) {
  .ticket-head {
    flex-direction: column;
    gap: 16px;
    padding: 16px 20px;
    margin-inline: -20px;
  }
  .ticket-head__details {
    font-size: 0.875rem;
  }
}


/* ticket-item
-------------------------*/
.ticket-item__box {
  display: flex; 
  gap: 24px; 
  justify-content: space-between;
}
.ticket-item__box-text {
  flex: 1;
}
.ticket-item__heading {
  font-weight: bold;
  font-size: 1.625rem;
}
.ticket-item__heading span {
  font-size: 1.25rem;
}
.ticket-item__text {
  font-size: 1rem;
}
.ticket-item__img {
  width: 160px; flex-shrink: 0;
}
.ticket-item__prices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px,1fr)) ;
}
.ticket-item__price {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  border: solid 3px #D2D7DA;
}
.ticket-item__price em {
  display: inline-block;
  width: 100%;
  font-size: 0.875rem;
  font-style: normal;
}
.ticket-item__price span::after {
  content: "円";
  margin-left: .5em;
}
.ticket-item__price span {
  display: inline-block;
  width: 100%;
  color: #E71D76;
}
.ticket-item__link {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  /* background-color: #10069F; */
  background: linear-gradient(to right, #0068B7, #00CADE);
  border-radius: 100px;
  margin-inline: auto;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.15);
  position: relative;
  transition: background-color .3s;
}
.ticket-item__link::after {
  content: "";
  flex-shrink: 0;
  display: inline-flex;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-image: url('../images/blank_white.svg');
  mask-image: url('../images/blank_white.svg');
  width: 16px;
  height: 16px;
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.ticket-item__link--bg-orange {
  background: linear-gradient(to right, #E61874, #FF5C47);
}
@media print, screen and (min-width: 768px) {
  .ticket-item + .ticket-item {
    margin-top: 80px;
  }
  /* .ticket-item__box {
    display: block; 
  } */
  .ticket-item__text {
    margin-top: 16px;
  }
  /* .ticket-item__img {
    width: auto; 
    margin-bottom: 16px;
  } */
  .ticket-item__period {
    font-size: 1rem;
  }
  .ticket-item__prices {
    gap: 24px;
    margin-top: 32px;
  }
  .ticket-item__prices--col4-2 {
    grid-template-columns: repeat(4, 1fr);
  }
  .ticket-item__prices--col2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .ticket-item__price {
    font-size: 1.75rem;
    padding: 29px 13px;
  }
  .ticket-item__price span {
    font-size: 2rem;
  }
  .ticket-item__price span::after {
    font-size: 1.25rem;
  }
  .ticket-item__link {
    max-width: 350px;
    font-size: 1.25rem;
    padding-block: 8px;
    padding-right: 36px;
    padding-left: 16px;
    margin-top: 40px;
  }
  .ticket-item__link::after {
    right: 16px;
  }
}
@media screen and (max-width: 767.98px) {
  .ticket-item + .ticket-item {
    margin-top: 40px;
  }
  .ticket-item__text {
    margin-top: 4px;
  }
  .ticket-item__text span {
    display: block;
  }
  .ticket-item__period {
    font-size: 0.875rem;
  }
  .ticket-item__prices {
    gap: 16px;
    margin-top: 24px;
  }
  .ticket-item__prices--col4-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .ticket-item__prices--col2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .ticket-item__price {
    font-size: 1.5rem;
    padding: 13px 5px;
  }
  .ticket-item__price span::after {
    font-size: 0.875rem;
  }
  .ticket-item__link {
    width: calc(256 / 335 * 100%);
    font-size: 1rem;
    padding-block: 10px;
    padding-right: 38px;
    padding-left: 18px;
    margin-top: 24px;
  }
  .ticket-item__link::after {
    right: 18px;
  }
}
@media (hover) {
  .ticket-item__link:hover {
    background-color: #140D77;
  }
  .ticket-item__link--bg-orange:hover {
    background-color:  #E71D76;;
  }
}

.soldout__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 256px;
  line-height: 1.25;
  font-size: 1rem;
  margin: 40px auto 0 auto;
  padding-block: 11px;
  background-color: #FFFFFF;
  box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, .15);
  border-radius: 100px;
  position: relative;
  font-weight: bold;
}

/* admission-flow
-------------------------*/
.admission-flow__text {
  font-size: 1rem;
}

@media print, screen and (min-width: 768px) {
  .admission-flow__contents-links {
    margin-top: 24px;
  }
}
@media screen and (max-width: 767.98px) {
  .admission-flow__contents-links {
    margin-top: 42px;
  }
}

/* admission-flow-links
-------------------------*/
.admission-flow-links__guide {
  width: 100%;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 1.8;
  text-align: center;
  background-color: #E35964;
  border-radius: 4px;
  position: relative;
}
.admission-flow-links__guide::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 8px solid #E35964;
  border-bottom: 0;
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateY(-50%);
}
.admission-flow-links__link {
  justify-content: center;
  background-color: #FFF7F7;
  border: 1px solid #C0C5CC;
}
.admission-flow-links__link::after {
  display: block;
  content: '';
  width: 16px;
  height: 16px;
  background-color: #697180;
  mask-image: url("../images/icon/down-arrow_black.svg");
  -webkit-mask-image: url("../images/icon/down-arrow_black.svg");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: top 0 center;
  -webkit-mask-position: top 0 center;
  mask-size: contain;
  -webkit-mask-size: contain;
  margin-inline: auto;
}
.admission-flow-links__step {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: bold;
  color: #E60012;
}
.admission-flow-links__type {
  flex-shrink: 0;
  display: block;
  height: fit-content;
  font-size: 0.75rem;
  font-weight: bold;
  color: #FFFFFF;
  padding: 1px 8px;
  background-color: #E71D76;
  border-radius: 4px;
}
.admission-flow-links__link--his {
  background-color: #F0F7FF;
}
.admission-flow-links__link--his .admission-flow-links__step {
  color: #0068B7;
}
.admission-flow-links__link--his .admission-flow-links__type {
  background-color: #699EDD;
}

@media print, screen and (min-width: 768px) {
  .admission-flow-links {
    display: grid;
    gap: 12px 8px;
    grid-template-areas: 
    ". guide"
    "steps steps-later";
    grid-template-columns: repeat(2, 1fr);
  }
  .admission-flow-links__item {
    grid-area: steps;
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(3, 1fr);
  }
  .admission-flow-links__item--later {
    grid-area: steps-later;
  }
  .admission-flow-links__guide {
    grid-area: guide;
    font-size: 1rem;
    padding: 6px 1em;
  }
  .admission-flow-links__link {
    display: grid;
    row-gap: 4px;
    grid-template-rows: subgrid;
    grid-row: span 3;
    align-items: center;
    text-align: center;
    padding: 15px 15px 7px;
    transition: background-color .3s;
  }
  .admission-flow-links__link--his .admission-flow-links__type {
    padding: 1px 16px;
  }
}
@media screen and (max-width: 767.98px) {
  .admission-flow-links__item {
    display: flex;
    gap: 8px;
    flex-direction: column;
  }
  .admission-flow-links__guide {
    margin-top: 16px;
  }
  .admission-flow-links__item--later {
    margin-top: 8px;
  }
  .admission-flow-links__link {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    flex-direction: column;
    padding: 16px;
    position: relative;
  }
  .admission-flow-links__link::after {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
  }
  .admission-flow-links__type {
    padding: 1px 16px;
  }
  .admission-flow-links__guide {
    font-size: 0.875rem;
    padding: 6px 18px;
  }
}
@media (hover) {
  .admission-flow-links__link:hover {
    background-color: #FFDFDF;
  }
  .admission-flow-links__link--his:hover {
    background-color: #C6E9FF;
  }
}

/* step-section
-------------------------*/
.step-section {
  margin-top: 40px;
}
.step-section__contents {
  margin-top: 32px;
}
@media print, screen and (min-width: 768px) {
  .step-section + .step-section {
    margin-top: 80px;
  }
  #step-section-05 + #step-section-06 {
    margin-top: 124px;
  }
}
@media screen and (max-width: 767.98px) {
  .step-section + .step-section {
    margin-top: 60px;
  }
  .step-section__head {
    margin-inline: -20px;
  }
}


/* step-head
-------------------------*/
.step-head {
  display: flex;
  background-color: #FFF7F7;
}
.step-head__step {
  display: inline-flex;
  font-weight: bold;
  color: #E71D76;
}
.step-head__type {
  font-size: 0.75rem;
  color: #FFFFFF;
  text-align: center;
  background-color: #E71D76;
  border-radius: 4px;
}
.step-head__details {
  display: flex;
  flex-direction: column;
}
.step-head__detail {
  font-weight: bold;
}
.step-section--his .step-head {
  background-color: #F0F7FF;
}
.step-section--his .step-head__step {
  color: #0068B7;
}
.step-section--his .step-head__type {
  background-color: #699EDD;
}
@media print, screen and (min-width: 768px) {
  .step-head {
    gap: 24px;
    align-items: center;
    padding: 24px 40px;
  }
  .step-head__step {
    flex-shrink: 0;
    flex-direction: column;
    align-items: center;
    font-size: 1.625rem;
  }
  .step-head__type {
    width: 100%;
    padding: 1px 8px;
  }
  .step-head__detail {
    font-size: 1.125rem;
  }
  .step-head__note {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 767.98px) {
  .step-head {
    display: flex;
    gap: 8px;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 20px;
  }
  .step-head__step {
    gap: 8px;
    align-items: center;
    font-size: 1.5rem;
  }
  .step-head__type {
    flex-shrink: 0;
    padding: 1px 16px;
  }
  .step-head__details {
    gap: 8px;
  }
  .step-head__detail {
    font-size: 1rem;
  }
  .step-head__note {
    font-size: 0.75rem;
  }
}

/* step-item
-------------------------*/
.step-item + .step-item {
  margin-top: 24px;
}
.step-item__heading {
  font-weight: bold;
}
.step-item__heading + .step-item__text {
  margin-top: 16px;
}
.step-item__notes {
  margin-top: 16px;
}
.step-item__note {
  text-indent: -1em;
  padding-left: 1em;
}
.step-item__reservation-flow {
  margin-top: 16px;
}
@media print, screen and (min-width: 768px) {
  .step-item__heading {
    font-size: 1.375rem;
  }
  .step-item__heading--pc-fs-small {
    font-size: 1rem;
  }
  .step-item__text {
    font-size: 1rem;
    line-height: 1.8;
  }
  .step-item__note {
    font-size: 0.875rem;
  }
  .step-item__note span {
    font-weight: bold ;
  }
  .step-item__reservation-flow {
    display: flex;
    gap: 28px;
  }
}
@media screen and (max-width: 767.98px) {
  .step-item__heading {
    font-size: 1rem;
  }
  .step-item__text {
    font-size: 0.875rem;
  }
  .step-item__note {
    font-size: 0.75rem;
  }
  .step-item__reservation-flow {
    display: block;
  }
}

/* step-links
-------------------------*/
.step-links__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  padding-right: 16px;
  padding-left: 16px;
  background: linear-gradient(to right, #E61874, #FF5C47);
  border-radius: 100px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.15);
  position: relative;
  transition: background-color .3s;
}
.step-links__link--icon-external {
  padding-right: 38px;
}
.step-links__link--icon-external::after {
  content: "";
  flex-shrink: 0;
  display: inline-flex;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-image: url('../images/blank_white.svg');
  mask-image: url('../images/blank_white.svg');
  width: 16px;
  height: 16px;
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}
.step-section--his .step-links__link {
  background-color: #10069F;
}
@media print, screen and (min-width: 768px) {
  .step-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 40px;
  }
  .step-links__link {
    max-width: 305px;
    font-size: 1.25rem;
    border-radius: 100px;
    padding-block: 8px;
  }
}
@media screen and (max-width: 767.98px) {
  .step-links {
    display: block;
    margin-top: 32px;
  }
  .step-links__link {
    width: calc(256 / 335 * 100%);
    font-size: 1rem;
    padding-block: 10px;
    margin-inline: auto;
  }  
  .step-links__link + .step-links__link {
    margin-top: 16px;
  }
}
@media (hover) {
  .step-links__link:hover {
    background-color: #D10010;
  }
  .step-section--his .step-links__link:hover {
    background-color: #140D77;
  }
}

/* reservation-flow-item
-------------------------*/
.reservation-flow-item {
  display: flex;
  flex-direction: column;
  background-color: #F7F7F7;
  border: 1px solid #D2D7DA;
  position: relative;
}
.reservation-flow-item::before {
  content: '';
  background-color: #D2D7DA;
  position: absolute;
}
.reservation-flow-item::after {
  content: '';
  background-color: #F7F7F7;
  position: absolute;
}
.reservation-flow-item:last-of-type::before,
.reservation-flow-item:last-of-type::after {
  content: initial;
}
.reservation-flow-item__date {
  font-weight: bold;
  line-height: 1.8;
  color: #CF3700;
}
.reservation-flow-item__date span {
  font-weight: normal;
  color: #000000;
}
.reservation-flow-item__type {
  font-size: 1rem;
}
.reservation-flow-item__type span {
  font-size: 0.75rem;
}
.reservation-flow-item__note {
  font-size: 0.75rem;
  text-indent: -1em;
  padding-left: 1em;
}
@media print, screen and (min-width: 768px) {
  .reservation-flow-item {
    gap: 4px;
    width: fit-content;
    border-right: initial;
    padding-block: 16px;
    padding-right: 30px;
    padding-left: 16px;
  }
  .reservation-flow-item--pc-pr-large {
    padding-right: 50px;
  }
  .reservation-flow-item:last-of-type {
    border-right: 1px solid #D2D7DA;
  }
  .reservation-flow-item::before {
    width: 20px;
    height: 103%;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
  }
  .reservation-flow-item::after {
    width: 20px;
    height: 105%;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    top: 50%;
    right: -19px;
    transform: translateY(-50%);
  }
  .reservation-flow-item__notes {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
  }
  .reservation-flow-item__note {
    width: max-content;
  }
  .reservation-flow-item__date {
    font-size: 1rem;
    margin-top: auto;
  }
  .reservation-flow-item__date span {
    display: block;
    font-size: 0.75rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 767.98px) {
  .reservation-flow-item {
    gap: initial;
    width: 100%;
    border-bottom: initial;
    padding: 8px 1rem 12px;
  }
  .reservation-flow-item--sp-pb-0 {
    padding-bottom: 0;
  }
  .reservation-flow-item:last-of-type {
    border-bottom: 1px solid #D2D7DA;
    padding-bottom: 12px;
  }
  .reservation-flow-item + .reservation-flow-item {
    margin-top: 28px;
  }
  .reservation-flow-item::before {
    width: 101%;
    height: 20px;
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
  .reservation-flow-item::after {
    width: 100%;
    height: 20px;
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
    top: calc(100% - 1px);
    left: 50%;
    transform: translateX(-50%);
  }
  .reservation-flow-item__date {
    display: inline-flex;
    column-gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.875rem;
    text-align: center;
  }
  .reservation-flow-item__date span {
    font-size: 0.875rem;
  }
  .reservation-flow-item__type {
    text-align: center;
  }
  .reservation-flow-item__type span {
    font-size: 0.875rem;
  }
  .reservation-flow-item__notes {
    width: fit-content;
    margin: 5px auto 0;
  }
  .reservation-flow-item__note {
    line-height: 1.8;
  }
}


/* faq-note
-------------------------*/
@media print, screen and (min-width: 768px) {
  .faq-note {
    padding-bottom: 36px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 767.98px) {
  .faq-note {
    font-size: 0.875rem;
    margin-bottom: 8px;
  }
}

/* faq-list
-------------------------*/
.faq-list {
  margin-top: 40px;
}
.faq-list__heading {
  color: #0068B7;
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 40px;
  padding-bottom: 8px;
  border-bottom: solid 2px #0068B7;
}
.faq-list__item + .faq-list__heading {
  margin-top: 48px;
}
.faq-list__question {
  display: flex;
  gap: 8px;
}
.faq-list__question {
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.3125;
}
.faq-list__answer {
  background-color: #F7F7F7;
  padding: 16px 16px 16px 40px;
  border-radius: 8px;
  position: relative;
}
.faq-list__question::before,
.faq-list__answer::before {
  content: "";
  flex-shrink: 0;
  display: inline-flex;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.faq-list__question::before {
  -webkit-mask-image: url('../images/icon/faq_q.svg');
  mask-image: url('../images/icon/faq_q.svg');
  width: 24px;
  height: 24px;
  background-color: #0068B7;
}
.faq-list__answer::before {
  -webkit-mask-image: url('../images/icon/faq_a.svg');
  mask-image: url('../images/icon/faq_a.svg');
  width: 16px;
  height: 16px;
  background-color: #E71D76;
  margin-top: 0.25em;
  position: absolute;
  top: 16px;
  left: 16px;
}
.faq-list__answer a {
  text-decoration: underline;
}
@media print, screen and (min-width: 768px) {
  .faq-list__item + .faq-list__item {
    margin-top: 24px;
  }
  .faq-list__answer {
    font-size: 1rem;
    margin-top: 16px;
  }
  .faq-list__answer a:hover {
    text-decoration: none;
  }
}
@media screen and (max-width: 767.98px) {
  .faq-list__item + .faq-list__item {
    margin-top: 16px;
  }
  .faq-list__answer {
    font-size: 0.875rem;
    margin-top: 8px;
  }
}

/* faq-link
-------------------------*/
.faq-link {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  text-align: center;
  color: #2C2A29;
  background-color: #ffffff;
  border: 1px solid #939DAD;
  border-radius: 100px;
  margin-inline: auto;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.15);
  position: relative;
  transition: all .3s;
}
.faq-link::after {
  content: "";
  flex-shrink: 0;
  display: inline-flex;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-image: url('../images/blank_white.svg');
  mask-image: url('../images/blank_white.svg');
  width: 16px;
  height: 16px;
  background-color: #2C2A29;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all .3s;
}
@media print, screen and (min-width: 768px) {
  .faq-link {
    max-width: 350px;
    font-size: 1.25rem;
    padding-block: 8px;
    padding-right: 36px;
    padding-left: 16px;
    margin-top: 40px;
  }
  .faq-link::after {
    right: 16px;
  }
}
@media screen and (max-width: 767.98px) {
  .faq-link {
    width: calc(256 / 335 * 100%);
    font-size: 1rem;
    padding-block: 8px;
    padding-right: 38px;
    padding-left: 18px;
    margin-top: 24px;
    font-size: 14px;
  }
  .faq-link::after {
    right: 18px;
  }
}
@media (hover) {
  .faq-link:hover {
    color: #140D77;
    background-color: #F0F7FF;
    border-color: #F0F7FF;
  }
  .faq-link:hover::after {
    background-color: #140D77;
  }
}

/* sub-nav
-------------------------*/
.sub-nav {
  display: flex;
  justify-content: center;
  max-width: 780px;
  margin: 54px auto 0 auto;
  padding: 16px;
  background: #F5F7FA;
  border-radius: 8px;
}
@media screen and (max-width: 767.98px) {
  .sub-nav {
    flex-wrap: wrap;
    justify-content: left;
  }
}
.sub-nav__button {
  position: relative;
  font-size: 0.875rem;
  border: none;
  background: none;
  padding-right: 28px;
  padding-left: 6px;
  cursor: pointer;
}
@media screen and (max-width: 767.98px) {
  .sub-nav__button {
    display: block;
    width: 50%;
    padding: 8px 0;
    position: relative;
  }
}
@media (hover) {
  .sub-nav__button:hover {
    color: #140d77;
    text-decoration: underline;
  }
}
.sub-nav__button::before {
  content: "";
  flex-shrink: 0;
  display: inline-flex;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-image: url('../images/icon/down-arrow_black.svg');
  mask-image: url('../images/icon/down-arrow_black.svg');
  width: 10px;
  height: 10px;
  background-color: #697180;
  position: absolute;
  top: 5px;
  right: 12px;
}
@media screen and (max-width: 767.98px) {
  .sub-nav__button::before {
    top: 14px;
  }
}
@media (hover) {
  .sub-nav__button:hover::before {
    background-color: #140d77;
  }
}
.sub-nav__button:not(:last-of-type):after {
  content: "";
  width: 1px;
  height: 16px;
  background-color: #c0c5cc;
  position: absolute;
  right: 1px;
  top: 50%;
  transform: translate(-50%, -50%);
  bottom: unset;
}
@media screen and (max-width: 767.98px) {
  .sub-nav__button:not(:last-of-type):after {
    content: "";
    height: 1px;
    width: 100%;
    background-color: #c0c5cc;
    top: unset;
    left: 0;
    bottom: 0;
    transform: none;
  }
}

/* product
-------------------------*/
.product-wrapper {
  margin-top: 16px;
}
.product-wrapper__bottom {
  margin-bottom: 80px;
}
.product-wrapper__text {
  line-height: 1.8;
}
.product-tokuten {
  display: flex;
  gap: 24px;
  margin-top: 40px;
}
@media screen and (max-width: 767.98px) {
  .product-tokuten {
    display: block;
    width: 100%;
  }
}
.product-tokuten__inner {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: 50%;
  border: #D2D7DA 3px solid;
  padding: 24px;
}
@media screen and (max-width: 767.98px) {
  .product-tokuten__inner {
    display: block;
    width: 100%;
  }
  .product-tokuten__inner + .product-tokuten__inner {
    margin-top: 24px;
  }
}
.product-tokuten__inner--image {
  width: 160px;
  height: auto;
}
@media screen and (max-width: 767.98px) {
  .product-tokuten__inner--image {
    width: 100%;
    margin-bottom: 16px;
  }
}
.product-tokuten__inner--text h3 {
  font-size: 1.25rem;
  font-weight: bold;
}
.product-tokuten__inner--text p {
  margin-top: 16px;
  font-size: 0.875rem;
}
.product-card {
  margin-top: 64px;
}
.product-list {
  gap: 24px;
}
@media screen and (max-width: 767.98px) {
  .product-list {
    gap: 24px 16px;
  }
}
.product-list.card-style > li {
  width: calc((100% - 72px) / 4);
  border-radius: 8px;
  overflow: hidden;
}
.product-list.card-style > li .product-list__item .item-photo__wrapper .item-txt__port {
  background-color: #0068B7;
  font-weight: normal;
  position: relative;
}
.product-list.card-style>li .product-list__item .item-txt__wrapper {
  padding: 16px;
}
.item-txt__title {
  color: #000000;
}
.item-txt__price {
  margin-top: 16px;
}
@media screen and (max-width: 767.98px) {
  .item-photo__wrapper img {
    height: auto;
  }
}
.area {
  display: none;
}

.credit-area{
  padding-top: min(24px, (40vw / 7.5));
}
.credit-txt{
  font-size: min(12px, (20vw / 7.5))
}