@charset "UTF-8";
/********************************
* フォント情報
********************************/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&family=Noto+Serif+JP:wght@400;500;600;700&family=Zen+Kaku+Gothic+New:wght@300;400;500;700&family=Zen+Maru+Gothic:wght@700;900&display=swap");
/********************************
* color
********************************/
:root {
  --color-white: #fff;
  --color-black: #000;
  --color-text: #000;
  --color-red: #ce002c;
  --color-blue: #0060b0;
  --color-orange: #ec6a00;
  --color-yellow: #facf40;
  --color-line: #3db156;
  --color-purple: #b22db2;
  --color-gray: #707070;
}

/********************************
* color
********************************/
html {
  font-size: calc(16 / 375 * 100vw);
}
@media (min-width: 375px) {
  html {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  html {
    font-size: calc(16 / 1360 * 100vw);
  }
}
@media (min-width: 1360px) {
  html {
    font-size: 16px;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  color: #000;
}

textarea {
  resize: none;
}

a {
  text-decoration: none;
  transition: 0.3s;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    cursor: pointer;
  }
}

picture,
img,
a,
span {
  display: inline-block;
}

video,
img,
svg {
  width: 100%;
  height: 100%;
}

button {
  font: inherit;
  color: inherit;
  background: transparent;
  background: none;
  border: none;
}

input,
textarea,
select {
  font: inherit;
}

@media (min-width: px(768)) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/*----------------------------------
  Cloudflare Turnstile デフォルトスタイル調整
-----------------------------------*/
.cf-turnstile {
  display: block;
  text-align: center;
}

/********************************
* 数値のみを取り出す
* 参照：https://css-tricks.com/snippets/sass/strip-unit-function/
********************************/
/********************************
* pxをremに変換する関数
* ※ リキッドレイアウトでは、remがhtmlのfont-sizeに連動してスケーリングされる
*
* ▼使い方
* .element {
*     font-size: rem(16);  // 16pxをremに変換
*     padding: rem(20);
* }
********************************/
/********************************
* 数値にpxをつける関数
********************************/
/********************************
* 画面幅を基準にしたvwを返す関数
*
* ▼使い方
* .element {
*     width: vw(375, 100);  // 375pxカンプで100pxの場合
* }
********************************/
:root {
  --ball-size: 16px;
}

.stalker-layer {
  position: fixed;
  inset: 0;
  display: none;
  overflow: visible;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}
@media (min-width: 1200px) and (hover: hover) and (pointer: fine) {
  .stalker-layer {
    display: block;
  }
}

.stalker-core {
  z-index: 10000;
}

.stalker-layer canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

@media (prefers-reduced-motion: no-preference) {
  .js-fade-in {
    visibility: hidden;
  }
  .js-parallax {
    will-change: transform;
  }
}
@media (prefers-reduced-motion: reduce) {
  .stalker-layer {
    display: none;
  }
}
/********************************
* header
********************************/
.l-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 4.375rem;
  background: transparent;
  box-shadow: none;
  transition: opacity 0.2s ease;
}
@media (min-width: 768px) {
  .l-header {
    height: auto;
    background: var(--color-white);
    box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.1);
  }
}

.l-header__inner {
  width: 100%;
  max-width: 1920px;
  height: 100%;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .l-header__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
    width: 100%;
    min-height: 4.375rem;
    padding-block: 1.125rem;
    padding-inline: 1.125rem 1.5rem;
  }
}
@media (min-width: 1600px) {
  .l-header__inner {
    grid-template-columns: 35.375rem 1fr 15.625rem;
    grid-template-rows: auto;
    -moz-column-gap: 0;
         column-gap: 0;
    padding-block: 0.625rem;
  }
}

.l-header__brand {
  display: none;
  text-decoration: none;
  color: inherit;
}
@media (min-width: 768px) {
  .l-header__brand {
    display: flex;
    grid-column: 1/2;
    grid-row: 1/3;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.625rem 1.25rem;
    flex-shrink: 0;
  }
}
@media (min-width: 1600px) {
  .l-header__brand {
    grid-row: 1/2;
  }
}

.l-header__logo {
  display: block;
}
.l-header__logo img {
  display: block;
  width: auto;
  height: 3.125rem;
}

.l-header__sub-link {
  display: grid;
  place-content: center;
  min-height: 1.8125rem;
  padding-block: 0.2em;
  padding-inline: 1.1em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.625rem;
}
@media (min-width: 375px) {
  .l-header__sub-link {
    font-size: max(0.625rem, 8px);
  }
}
.l-header__sub-link {
  font-weight: 500;
  white-space: nowrap;
  color: var(--color-white);
  background-color: var(--color-red);
  letter-spacing: 0.06em;
  border-radius: 62.4375rem;
}
@media (min-width: 1024px) {
  .l-header__sub-link {
    font-size: 0.9375rem;
    font-weight: 500;
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) and (min-width: 375px) {
  .l-header__sub-link {
    font-size: max(0.9375rem, 12px);
  }
}

.l-header__nav {
  display: none;
  min-width: 0;
}
@media (min-width: 768px) {
  .l-header__nav {
    display: grid;
    grid-column: 2/3;
    grid-row: 1/3;
    grid-template-rows: auto auto;
    align-content: center;
    row-gap: 0.5625rem;
    width: 100%;
  }
}
@media (min-width: 1600px) {
  .l-header__nav {
    display: contents;
  }
}

.l-header__list {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 1.9375rem;
  margin: 0;
  padding: 0;
  padding-inline-start: 2.25rem;
  list-style: none;
}
@media (min-width: 768px) {
  .l-header__list {
    grid-row: 1/2;
  }
}
@media (min-width: 1600px) {
  .l-header__list {
    grid-column: 2/3;
    grid-row: 1/2;
    align-self: center;
    margin-inline-end: 5.25rem;
  }
}
.l-header__list a {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-black);
  text-decoration: none;
  white-space: nowrap;
}
@media (min-width: 1600px) {
  .l-header__list a {
    grid-column: 2/3;
    grid-row: 1/2;
    align-self: center;
    font-size: 1.125rem;
    font-weight: 500;
  }
}
@media (min-width: 1600px) and (min-width: 375px) {
  .l-header__list a {
    font-size: max(1.125rem, 14.4px);
  }
}

.l-header__social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  margin: 0;
  margin-block-start: 0.5625rem;
  padding: 0;
  padding-block: 0.125rem;
  padding-inline-start: 2.25rem;
}
@media (min-width: 768px) {
  .l-header__social {
    grid-row: 2/3;
  }
}
@media (min-width: 1600px) {
  .l-header__social {
    grid-column: 3/4;
    grid-row: 1/2;
    gap: 1.125rem;
    align-self: center;
    margin-block-start: 0;
    padding-block: 0;
    padding-inline-start: 0;
  }
}

.l-header__social-link {
  display: block;
  width: 1.5rem;
}
@media (min-width: 1600px) {
  .l-header__social-link {
    width: 2.5rem;
  }
}
.l-header__social-link img {
  width: 100%;
  height: auto;
}

@media (hover: hover) {
  .l-header__logo img {
    transition: filter 0.2s ease;
  }
  .l-header__brand:hover .l-header__logo img {
    filter: brightness(0.8);
  }
  .l-header__sub-link {
    transition: background-color 0.2s ease;
  }
  .l-header__brand:hover .l-header__sub-link {
    background-color: var(--color-black);
  }
  .l-header__list a {
    transition: color 0.2s ease;
  }
  .l-header__list a:hover {
    color: var(--color-red);
  }
  .l-header__social-link {
    transition: opacity 0.2s ease;
  }
  .l-header__social-link:hover {
    opacity: 0.7;
  }
}
/********************************
* drawer icon
********************************/
.l-drawer__icon {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 0.5625rem;
  width: 4.375rem;
  height: 4.375rem;
  cursor: pointer;
  mix-blend-mode: difference;
}
@media (min-width: 768px) {
  .l-drawer__icon {
    display: none;
  }
}

.l-drawer__icon--bar {
  display: block;
  width: 1.875rem;
  height: 0.0625rem;
  background-color: var(--color-white);
  transition: all 0.2s ease;
}

.l-drawer__icon.is-dark {
  mix-blend-mode: normal;
}
.l-drawer__icon.is-dark .l-drawer__icon--bar {
  background: var(--color-black);
}

.l-drawer__icon.js-show {
  mix-blend-mode: normal;
}
.l-drawer__icon.js-show .l-drawer__icon--bar {
  background: var(--color-black);
}
.l-drawer__icon.js-show .l-drawer__icon--bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 0.6875rem;
}
.l-drawer__icon.js-show .l-drawer__icon--bar:nth-of-type(2) {
  opacity: 0;
}
.l-drawer__icon.js-show .l-drawer__icon--bar:nth-of-type(3) {
  rotate: -45deg;
  translate: 0 -0.5625rem;
}

.l-drawer {
  position: fixed;
  inset: 0;
  z-index: 101;
  width: 100%;
  height: 100vh;
  height: 100svh;
  padding-block: 6.75rem 2.5rem;
  padding-inline: 2.0625rem;
  overflow-y: auto;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.l-drawer.js-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (min-width: 768px) {
  .l-drawer {
    display: none;
  }
}

.l-drawer__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: calc(100svh - 8.1875rem);
}

.l-drawer__list {
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
  margin-block-end: 4.3125rem;
}
.l-drawer__list a {
  font-size: 1.25rem;
}
@media (min-width: 375px) {
  .l-drawer__list a {
    font-size: max(1.25rem, 16px);
  }
}
.l-drawer__list a {
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-black);
}

.l-drawer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 21.875rem;
  margin-inline: auto;
  text-align: center;
}

.l-drawer__logo {
  width: 19.625rem;
  margin-block-end: 0.625rem;
}
.l-drawer__logo img {
  width: 100%;
  height: auto;
}

.l-drawer__sub-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 18.875rem;
  padding-block: 1.133em;
  margin-block-end: 2.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
}
@media (min-width: 375px) {
  .l-drawer__sub-link {
    font-size: max(0.9375rem, 12px);
  }
}
.l-drawer__sub-link {
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--color-white);
  text-decoration: none;
  background-color: var(--color-red);
  border-radius: 2.25rem;
}

.l-drawer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 1.625rem;
       column-gap: 1.625rem;
  margin-block-end: 0.5rem;
}

.l-drawer__social-link {
  display: block;
  width: 3.375rem;
  height: 3.4375rem;
}
.l-drawer__social-link img {
  width: 100%;
  height: auto;
}

.l-drawer__venue {
  width: 100%;
  margin-block-start: 0.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.6875rem;
}
@media (min-width: 375px) {
  .l-drawer__venue {
    font-size: max(0.6875rem, 8.8px);
  }
}
.l-drawer__venue {
  font-weight: 400;
  line-height: 1.727;
  color: var(--color-white);
}

.l-footer {
  position: relative;
  background-color: var(--color-black);
  overflow: visible;
}
.l-footer::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
}
.l-footer .c-starry-sky {
  z-index: 1;
}

.l-footer .l-inner {
  position: relative;
  z-index: 1;
  overflow: visible;
  padding-block-end: 12.5rem;
}
@media (min-width: 768px) {
  .l-footer .l-inner {
    padding-block-end: 11.25rem;
  }
}
.l-footer .l-inner .l-footer__content,
.l-footer .l-inner .l-footer__brand {
  position: relative;
  z-index: 2;
}
.l-footer .l-inner {
  /* あしらい（1920 カンプ基準・vw で比例縮小） */
}
.l-footer .l-inner .p-illumination__ornament.--left-top {
  left: min(0.75rem, 3.077vw);
  top: min(17.375rem, 71.282vw);
  width: min(3.25rem, 13.333vw);
}
@media (min-width: 768px) {
  .l-footer .l-inner .p-illumination__ornament.--left-top {
    left: min(13.375rem, 11.146vw);
    top: min(5.0625rem, 4.219vw);
    width: min(6.875rem, 5.729vw);
  }
}
.l-footer .l-inner .p-illumination__ornament.--left-center {
  display: none;
}
@media (min-width: 768px) {
  .l-footer .l-inner .p-illumination__ornament.--left-center {
    display: block;
    left: min(-3.0625rem, -2.552vw);
    top: min(16.6875rem, 13.906vw);
    width: min(15.375rem, 12.813vw);
  }
}
.l-footer .l-inner .p-illumination__ornament.--left-bottom {
  left: min(0.5rem, 2.051vw);
  bottom: min(3.625rem, 14.872vw);
  width: min(8rem, 32.821vw);
}
@media (min-width: 768px) {
  .l-footer .l-inner .p-illumination__ornament.--left-bottom {
    left: min(18.75rem, 15.625vw);
    bottom: min(5.9375rem, 4.948vw);
    width: min(9.75rem, 8.125vw);
  }
}
.l-footer .l-inner .p-illumination__ornament.--right-top {
  right: min(1.4375rem, 5.897vw);
  top: min(-0.5rem, -2.051vw);
  width: min(4.625rem, 18.974vw);
}
@media (min-width: 768px) {
  .l-footer .l-inner .p-illumination__ornament.--right-top {
    right: min(9.8125rem, 8.177vw);
    top: min(-2.6875rem, -2.24vw);
    width: min(15.375rem, 12.813vw);
  }
}
.l-footer .l-inner .p-illumination__ornament.--right-center {
  display: none;
}
@media (min-width: 768px) {
  .l-footer .l-inner .p-illumination__ornament.--right-center {
    display: block;
    right: min(2.9375rem, 2.448vw);
    top: min(20.8125rem, 17.344vw);
    width: min(6.875rem, 5.729vw);
  }
}
.l-footer .l-inner .p-illumination__ornament.--right-bottom {
  right: min(0.5625rem, 2.308vw);
  bottom: min(23rem, 94.359vw);
  width: min(4.8125rem, 19.744vw);
}
@media (min-width: 768px) {
  .l-footer .l-inner .p-illumination__ornament.--right-bottom {
    right: min(8.125rem, 6.771vw);
    bottom: min(2.8125rem, 2.344vw);
    width: min(18.75rem, 15.625vw);
  }
}

.l-footer__content {
  max-width: 75rem;
  padding-block: 6.375rem 2.375rem;
  margin-inline: auto;
  margin-block-end: 6.1875rem;
  border-bottom: 1px solid var(--color-white);
}
@media (min-width: 768px) {
  .l-footer__content {
    border-bottom: none;
    padding-block: 11.375rem 0rem;
  }
}

.l-footer__museum {
  margin-block-end: 5rem;
}
@media (min-width: 768px) {
  .l-footer__museum {
    margin-block-end: 9.375rem;
  }
}
.l-footer__museum a {
  display: block;
}
@media (any-hover: hover) {
  .l-footer__museum a:hover {
    opacity: 0.8;
  }
}
.l-footer__museum picture {
  display: block;
}
.l-footer__museum img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 350/189;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .l-footer__museum img {
    width: 44.4375rem;
    aspect-ratio: 711/171;
  }
}

.l-footer__festival {
  display: grid;
  gap: 1.8125rem;
  margin-block-end: 2.5rem;
}
@media (min-width: 1000px) {
  .l-footer__festival {
    max-width: clamp(37.5rem, 62.5vw, 75rem);
    margin-inline: auto;
    grid-template-columns: min(34.9375rem, 29.1145833333vw) minmax(0, 1fr);
    gap: clamp(1.25rem, 1.6145833333vw, 1.9375rem);
    align-items: start;
    margin-block-end: 11.1875rem;
  }
}

.l-footer__festival-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 559/315;
  -o-object-fit: cover;
     object-fit: cover;
}

.l-footer__festival-body {
  min-width: 0;
}
@media (min-width: 1000px) {
  .l-footer__festival-body {
    max-width: clamp(17.5rem, 31.7708333333vw, 38.125rem);
    margin-block-start: 0.25rem;
  }
}

.l-footer__festival-label {
  font-size: 1.1875rem;
}
@media (min-width: 375px) {
  .l-footer__festival-label {
    font-size: max(1.1875rem, 15.2px);
  }
}
.l-footer__festival-label {
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-white);
  margin-block-end: 0.3125rem;
}
@media (min-width: 1000px) {
  .l-footer__festival-label {
    font-size: clamp(1.1875rem, 1.25vw, 1.5rem);
    font-weight: 500;
    line-height: 1.4;
    margin-inline-start: 0.6875rem;
    margin-block-end: 0.6875rem;
  }
}

.l-footer__festival-title {
  margin-block-end: 1.25rem;
  font-size: 1.625rem;
}
@media (min-width: 375px) {
  .l-footer__festival-title {
    font-size: max(1.625rem, 20.8px);
  }
}
.l-footer__festival-title {
  line-height: 1.4;
}
@media (min-width: 1000px) {
  .l-footer__festival-title {
    margin-block-end: 1.375rem;
    font-size: clamp(1.625rem, 1.9270833333vw, 2.3125rem);
    line-height: 1.4;
  }
}
.l-footer__festival-title a {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  color: var(--color-yellow);
  text-decoration: none;
}
@media (min-width: 1000px) {
  .l-footer__festival-title a {
    margin-inline-start: 0.6875rem;
    gap: clamp(0.5rem, 0.6770833333vw, 0.8125rem);
  }
}
@media (any-hover: hover) {
  .l-footer__festival-title a:hover {
    opacity: 0.85;
  }
}
.l-footer__festival-title span {
  min-width: 0;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 0.0625rem;
  text-underline-offset: 0.0625rem;
}

.l-footer__festival-icon {
  display: block;
  flex-shrink: 0;
  width: 1.625rem;
  height: auto;
  aspect-ratio: 1/1;
}
@media (min-width: 1000px) {
  .l-footer__festival-icon {
    width: clamp(1.5rem, 1.5625vw, 1.875rem);
  }
}

.l-footer__festival-divider {
  height: 0.0625rem;
  margin-block-end: 1rem;
  background-color: var(--color-white);
  opacity: 0.35;
  border: 0;
}
@media (min-width: 1000px) {
  .l-footer__festival-divider {
    margin-block-end: 1.375rem;
  }
}

.l-footer__festival-list {
  display: grid;
  gap: 0.4375rem;
}
@media (min-width: 1000px) {
  .l-footer__festival-list {
    gap: 0.6875rem;
    margin-inline-start: 0.8125rem;
  }
}

.l-footer__festival-row {
  display: grid;
  grid-template-columns: 4.5625rem 1fr;
  font-size: 1.125rem;
}
@media (min-width: 375px) {
  .l-footer__festival-row {
    font-size: max(1.125rem, 14.4px);
  }
}
.l-footer__festival-row {
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-white);
}
@media (min-width: 1000px) {
  .l-footer__festival-row {
    grid-template-columns: clamp(4.5625rem, 4.2708333333vw, 5.125rem) minmax(0, 1fr);
    font-size: clamp(12px, 1.0416666667vw, 1.25rem);
    font-weight: 500;
    line-height: 1.6;
  }
}
@media (min-width: 1000px) {
  .l-footer__festival-row dd {
    margin-block-start: -0.125rem;
  }
}

.l-footer__festival-row.--period {
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 1000px) {
  .l-footer__festival-row.--period {
    grid-template-columns: clamp(4.5625rem, 4.2708333333vw, 5.125rem) minmax(0, 1fr);
    gap: 0;
  }
}

.l-footer__festival-row dt {
  white-space: nowrap;
}

.l-footer__festival-note {
  display: block;
  font-size: 0.875rem;
}
@media (min-width: 375px) {
  .l-footer__festival-note {
    font-size: max(0.875rem, 11.2px);
  }
}
.l-footer__festival-note {
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-white);
}
@media (min-width: 1000px) {
  .l-footer__festival-note {
    font-size: clamp(12px, 0.78125vw, 0.9375rem);
    font-weight: 400;
    line-height: 1.6;
  }
}

.l-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 24.25rem;
  padding-block: 1.125rem 1.625rem;
  padding-inline: 1.25rem;
  margin-inline: auto;
  background-color: var(--color-white);
  border-radius: 0.625rem;
  row-gap: 0.75rem;
}
@media (min-width: 768px) {
  .l-footer__brand {
    padding-block: 1.875rem 2.5rem;
    padding-inline: 1.875rem;
    row-gap: 0.75rem;
  }
}

.l-footer__brand-logo {
  display: block;
  width: 19rem;
  height: auto;
  aspect-ratio: 338/56;
}
@media (min-width: 768px) {
  .l-footer__brand-logo {
    width: 21.125rem;
  }
}

.l-footer__site-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 18.5625rem;
  padding-block: 1.156em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
}
@media (min-width: 375px) {
  .l-footer__site-link {
    font-size: max(1rem, 12.8px);
  }
}
.l-footer__site-link {
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  background-color: var(--color-black);
  color: var(--color-white);
  border: 0.0625rem solid var(--color-black);
  border-radius: 2.25rem;
}
@media (min-width: 768px) {
  .l-footer__site-link {
    min-width: 20.5625rem;
    padding-block: 0.647em;
    font-size: 1.0625rem;
    font-weight: 500;
    background-color: var(--color-black);
    border-color: transparent;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .l-footer__site-link {
    font-size: max(1.0625rem, 13.6px);
  }
}
@media (any-hover: hover) {
  .l-footer__site-link:hover {
    opacity: 0.85;
  }
}

.l-footer__copybar {
  position: relative;
  z-index: 1;
  padding-block: 12px;
  background-color: var(--color-white);
}

.l-footer__copy {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.6875rem;
}
@media (min-width: 375px) {
  .l-footer__copy {
    font-size: max(0.6875rem, 8.8px);
  }
}
.l-footer__copy {
  line-height: 1.6;
  color: var(--color-black);
  text-align: center;
}
@media (min-width: 768px) {
  .l-footer__copy {
    font-size: 0.875rem;
    letter-spacing: 0.06em;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .l-footer__copy {
    font-size: max(0.875rem, 11.2px);
  }
}

.l-inner {
  position: relative;
  width: 100%;
  max-width: 640px;
  height: inherit;
  padding-inline: 1.25rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .l-inner {
    max-width: 1920px;
    padding-inline: 5rem;
  }
}
@media (min-width: 1360px) {
  .l-inner {
    padding-inline: max(12.5rem, (min(100vw, 1920px) - 75rem) / 2);
  }
}

.l-inner__narrow {
  max-width: 600px;
  padding-inline: 1.25rem;
}
@media (min-width: 768px) {
  .l-inner__narrow {
    max-width: 50rem;
  }
}

@media (min-width: 768px) {
  .l-main {
    padding-block-start: 4.375rem;
  }
}

.c-modal {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 1.25rem;
  padding-inline: 1.25rem;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.c-modal.is-show {
  visibility: visible;
  opacity: 1;
}

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

.c-modal__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 21.75rem;
  max-height: 90svh;
  padding-block: 1.375rem 3.5rem;
  padding-inline: 1.125rem;
  margin-block-start: -1.25rem;
  overflow-y: auto;
  color: var(--color-white);
  background: var(--color-black);
  border: 0.125rem solid var(--color-white);
  border-radius: 0.625rem;
}
@media (min-width: 768px) {
  .c-modal__content {
    max-width: 56.25rem;
    padding-block: 2.5rem 3rem;
    padding-inline: 3rem;
    margin-block-start: 6.125rem;
    border-radius: 1.25rem;
  }
}

.c-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8.0625rem;
  min-height: 2.625rem;
  margin-inline: auto;
  font-size: 1rem;
}
@media (min-width: 375px) {
  .c-modal__close {
    font-size: max(1rem, 12.8px);
  }
}
.c-modal__close {
  font-weight: 500;
  color: var(--color-black);
  background: var(--color-white);
  border-radius: 1.4375rem;
}
@media (min-width: 768px) {
  .c-modal__close {
    width: 9.5rem;
    min-height: 2.8125rem;
    font-size: 1.25rem;
    font-weight: 500;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .c-modal__close {
    font-size: max(1.25rem, 16px);
  }
}

.c-modal__area-head {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.3125rem;
       column-gap: 0.3125rem;
  margin-block-end: 1.0625rem;
}
@media (min-width: 768px) {
  .c-modal__area-head {
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
    margin-block-end: 2rem;
  }
}

.c-modal__area-pin {
  display: block;
  flex: 0 0 2.4375rem;
}
@media (min-width: 768px) {
  .c-modal__area-pin {
    flex: 0 0 3.5rem;
  }
}

.c-modal__area-pin img {
  inline-size: 100%;
  block-size: auto;
  max-block-size: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.c-modal__area-slider-wrap {
  margin-block-end: 1.875rem;
}
@media (min-width: 768px) {
  .c-modal__area-slider-wrap {
    margin-block-end: 3rem;
  }
}

.c-modal__area-slider {
  margin-block-end: 1.1875rem;
}
@media (min-width: 768px) {
  .c-modal__area-slider {
    margin-block-end: 1rem;
  }
}
.c-modal__area-slider .swiper-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 304/176;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .c-modal__area-slider .swiper-slide img {
    aspect-ratio: 800/456;
  }
}

.c-modal__area-slider-wrap .c-modal__swiper-pagination.swiper-pagination {
  position: static;
  inset: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 0.9375rem;
       column-gap: 0.9375rem;
  width: 100%;
  transform: none;
}
.c-modal__area-slider-wrap .c-modal__swiper-pagination.swiper-pagination .swiper-pagination-bullet {
  width: 0.625rem;
  height: 0.625rem;
  opacity: 1;
  background: #9f9f9f;
  margin: 0;
}
.c-modal__area-slider-wrap .c-modal__swiper-pagination.swiper-pagination .swiper-pagination-bullet-active {
  background: var(--color-purple);
}

.c-modal__area-text {
  margin-block-end: 2.625rem;
  font-size: 1rem;
}
@media (min-width: 375px) {
  .c-modal__area-text {
    font-size: max(1rem, 12.8px);
  }
}
.c-modal__area-text {
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 768px) {
  .c-modal__area-text {
    font-size: 1.25rem;
    font-weight: 500;
    margin-block-end: 2rem;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .c-modal__area-text {
    font-size: max(1.25rem, 16px);
  }
}

.c-modal__news-content {
  width: 100%;
  max-width: 56.25rem;
  padding-block: 2.5rem;
  padding-inline: 1.875rem;
  background: var(--color-white);
  border-radius: 0.625rem;
}
@media (min-width: 768px) {
  .c-modal__news-content {
    padding-block: 3.75rem;
    padding-inline: 3.75rem;
  }
}

.c-modal__news-title {
  margin-block-end: 1.875rem;
  font-family: "Noto Serif JP", serif;
  font-size: 1.75rem;
}
@media (min-width: 375px) {
  .c-modal__news-title {
    font-size: max(1.75rem, 22.4px);
  }
}
.c-modal__news-title {
  font-weight: 700;
  color: var(--color-purple);
}
@media (min-width: 768px) {
  .c-modal__news-title {
    font-size: 2.5rem;
    font-weight: 700;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .c-modal__news-title {
    font-size: max(2.5rem, 32px);
  }
}

.c-modal__news-item {
  display: grid;
  grid-template-columns: 8.1875rem 1fr;
  gap: 0.75rem 1.25rem;
  align-items: center;
  padding-block: 0.9375rem;
  border-bottom: 0.0625rem solid var(--color-gray);
}

.c-modal__news-date {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 1.875rem;
  font-family: "Noto Serif JP", serif;
  font-size: 1.125rem;
}
@media (min-width: 375px) {
  .c-modal__news-date {
    font-size: max(1.125rem, 14.4px);
  }
}
.c-modal__news-date {
  font-weight: 500;
  color: var(--color-white);
  background-color: var(--color-orange);
}

.c-modal__news-text {
  font-family: "Noto Serif JP", serif;
  font-size: 1.125rem;
}
@media (min-width: 375px) {
  .c-modal__news-text {
    font-size: max(1.125rem, 14.4px);
  }
}
.c-modal__news-text {
  font-weight: 600;
  line-height: 1.5;
}

.c-scroll-top {
  position: fixed;
  z-index: 90;
  right: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 3.875rem;
  height: 3.875rem;
  color: var(--color-white);
  text-decoration: none;
  background-color: var(--color-black);
  border: 0.0625rem solid var(--color-white);
  border-radius: 50%;
}
@media (min-width: 768px) {
  .c-scroll-top {
    right: 9.875rem;
    bottom: 4.6875rem;
  }
}
.c-scroll-top:focus-visible {
  outline: 0.125rem solid var(--color-white);
  outline-offset: 0.125rem;
}

.c-scroll-top__icon {
  display: block;
  width: 0.9375rem;
  height: 0.9375rem;
  margin-block-end: 0.3125rem;
  border-block-start: 0.125rem solid currentcolor;
  border-inline-end: 0.125rem solid currentcolor;
  transform: rotate(-45deg);
}
@media (min-width: 768px) {
  .c-scroll-top__icon {
    width: 0.9375rem;
    height: 0.9375rem;
  }
}

.c-scroll-top__text {
  font-size: 1rem;
}
@media (min-width: 375px) {
  .c-scroll-top__text {
    font-size: max(1rem, 12.8px);
  }
}
.c-scroll-top__text {
  font-weight: 700;
  line-height: 0.6875;
}
@media (min-width: 768px) {
  .c-scroll-top__text {
    font-size: 1rem;
    font-weight: 700;
    line-height: 0.875;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .c-scroll-top__text {
    font-size: max(1rem, 12.8px);
  }
}

.c-section-title {
  width: -moz-fit-content;
  width: fit-content;
  margin-block-end: 2.4375rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .c-section-title {
    margin-block-end: 3.0625rem;
    margin-inline: 0;
  }
}

.c-section-title.--overview {
  margin-block-end: 1.5rem;
}
@media (min-width: 768px) {
  .c-section-title.--overview {
    margin-block-end: 2.25rem;
  }
}

.c-section-title.--access {
  margin-block-end: 1.5625rem;
}
@media (min-width: 768px) {
  .c-section-title.--access {
    margin-block-end: 2.1875rem;
  }
}
.c-section-title.--access picture {
  display: block;
}
.c-section-title.--access img {
  width: 6.5625rem;
  aspect-ratio: 105/25;
}
@media (min-width: 768px) {
  .c-section-title.--access img {
    width: 8.375rem;
    aspect-ratio: 134/32;
  }
}

.c-section-title img {
  display: block;
  height: auto;
}

.c-section-title.--information img {
  width: 10.6875rem;
  aspect-ratio: 233/34;
}
@media (min-width: 768px) {
  .c-section-title.--information img {
    width: 14.5625rem;
  }
}

.c-section-title.--overview img {
  width: 17.0625rem;
  aspect-ratio: 337/34;
}
@media (min-width: 768px) {
  .c-section-title.--overview img {
    width: 21.0625rem;
  }
}

.c-label-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem 2.5rem;
  align-items: start;
  padding-block: 0.90625rem 1.5625rem;
}
@media (min-width: 768px) {
  .c-label-row {
    grid-template-columns: 10.3125rem 1fr;
    gap: 1.25rem 2.5rem;
    padding-block: 0.9375rem;
  }
}

.c-label-row__label {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
@media (min-width: 375px) {
  .c-label-row__label {
    font-size: max(1rem, 12.8px);
  }
}
.c-label-row__label {
  font-weight: 500;
  letter-spacing: 0.034em;
  color: var(--color-white);
  background-color: var(--color-black);
  width: 5.125rem;
  min-height: 1.6875rem;
}
@media (min-width: 768px) {
  .c-label-row__label {
    min-height: 3rem;
    width: 100%;
  }
}
@media (min-width: 1000px) {
  .c-label-row__label {
    min-height: 2rem;
    font-size: 1.25rem;
    font-weight: 500;
  }
}
@media (min-width: 1000px) and (min-width: 375px) {
  .c-label-row__label {
    font-size: max(1.25rem, 16px);
  }
}

.c-label-row__text {
  font-size: 1.1875rem;
}
@media (min-width: 375px) {
  .c-label-row__text {
    font-size: max(1.1875rem, 15.2px);
  }
}
.c-label-row__text {
  font-weight: 500;
  line-height: 1.9;
}
@media (min-width: 768px) {
  .c-label-row__text {
    line-height: 1.7;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.6;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .c-label-row__text {
    font-size: max(1.25rem, 16px);
  }
}

.c-label-row__text.--regular {
  font-size: 1.1875rem;
}
@media (min-width: 375px) {
  .c-label-row__text.--regular {
    font-size: max(1.1875rem, 15.2px);
  }
}
.c-label-row__text.--regular {
  font-weight: 400;
}
@media (min-width: 768px) {
  .c-label-row__text.--regular {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .c-label-row__text.--regular {
    font-size: max(1.25rem, 16px);
  }
}

.c-label-row__note {
  display: flex;
  align-items: flex-start;
  gap: 0.375rem;
  font-size: 0.875rem;
}
@media (min-width: 375px) {
  .c-label-row__note {
    font-size: max(0.875rem, 11.2px);
  }
}
.c-label-row__note {
  font-weight: 400;
  line-height: 1.4;
  margin-inline-start: -0.125rem;
}
@media (min-width: 768px) {
  .c-label-row__note {
    font-size: 1rem;
    font-weight: 400;
    align-items: center;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .c-label-row__note {
    font-size: max(1rem, 12.8px);
  }
}

.c-label-row__note-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  font-size: 0.6875rem;
}
@media (min-width: 375px) {
  .c-label-row__note-mark {
    font-size: max(0.6875rem, 8.8px);
  }
}
.c-label-row__note-mark {
  border: 0.0625rem solid var(--color-black);
}
@media (min-width: 768px) {
  .c-label-row__note-mark {
    width: 1.375rem;
    height: 1.375rem;
    font-size: 1rem;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .c-label-row__note-mark {
    font-size: max(1rem, 12.8px);
  }
}

.c-news-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem 1.25rem;
  align-items: flex-start;
  border-bottom: 0.0625rem solid var(--color-gray);
  padding-block-end: 1.125rem;
}
@media (min-width: 768px) {
  .c-news-item {
    grid-template-columns: 8.1875rem 1fr;
    gap: 0.75rem 2.5rem;
    border-bottom: none;
    padding-block-end: 0;
  }
}

.c-news-item__link {
  display: contents;
  color: inherit;
  text-decoration: none;
}
@media (any-hover: hover) {
  .c-news-item__link:hover .c-news-item__date, .c-news-item__link:hover .c-news-item__title {
    opacity: 0.8;
  }
}

.c-news-item__date {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 1.3125rem;
  font-family: "Noto Serif JP", serif;
  font-size: 0.875rem;
}
@media (min-width: 375px) {
  .c-news-item__date {
    font-size: max(0.875rem, 11.2px);
  }
}
.c-news-item__date {
  font-weight: 500;
  color: var(--color-white);
  width: 5.3125rem;
}
@media (min-width: 768px) {
  .c-news-item__date {
    justify-content: center;
    min-height: 1.875rem;
    font-size: 1.125rem;
    font-weight: 500;
    width: 8.1875rem;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .c-news-item__date {
    font-size: max(1.125rem, 14.4px);
  }
}

.c-news-item__date.--new {
  background-color: var(--color-orange);
}

.c-news-item__date.--info {
  background-color: var(--color-blue);
}

.c-news-item__title {
  display: block;
  min-width: 0;
  font-size: 1rem;
}
@media (min-width: 375px) {
  .c-news-item__title {
    font-size: max(1rem, 12.8px);
  }
}
.c-news-item__title {
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .c-news-item__title {
    font-size: 1.125rem;
    font-weight: 500;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .c-news-item__title {
    font-size: max(1.125rem, 14.4px);
  }
}

.c-starry-sky {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.c-starry-sky.is-paused .c-starry-sky__star {
  animation-play-state: paused;
}

.c-starry-sky__star {
  position: absolute;
  border-radius: 50%;
  background-color: var(--color-white);
  box-shadow: 0 0 0.1875rem rgba(255, 255, 255, 0.55);
  opacity: var(--star-opacity, 0.8);
  animation-name: c-starry-twinkle;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
@media (prefers-reduced-motion: reduce) {
  .c-starry-sky__star {
    animation: none;
  }
}

.c-starry-sky.--light .c-starry-sky__star {
  background-color: var(--color-yellow);
  box-shadow: 0 0 0.125rem rgba(250, 207, 64, 0.5);
}

@keyframes c-starry-twinkle {
  0% {
    transform: scale(0.85);
    opacity: calc(var(--star-opacity, 0.8) * 0.45);
  }
  100% {
    transform: scale(1);
    opacity: var(--star-opacity, 0.8);
  }
}
.p-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 52.75rem;
  color: var(--color-white);
  background-color: #001a4b;
}
@media (min-width: 768px) {
  .p-hero {
    display: block;
    min-height: 63.0625rem;
  }
}

.p-hero__bg {
  position: absolute;
  inset: 0;
}
.p-hero__bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 25%;
     object-position: center 25%;
}
@media (min-width: 768px) {
  .p-hero__bg video {
    -o-object-position: center;
       object-position: center;
  }
}
.p-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.595);
  pointer-events: none;
}

.p-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  padding-block: 1.5rem 3.125rem;
  padding-inline: 1.25rem;
  margin-block-start: 18.5625rem;
}
@media (min-width: 768px) {
  .p-hero__inner {
    flex: none;
    justify-content: flex-start;
    padding-block: 14.5rem 6.25rem;
    margin-block-start: 0;
  }
}

.p-hero__producer {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
}
@media (min-width: 375px) {
  .p-hero__producer {
    font-size: max(0.875rem, 11.2px);
  }
}
.p-hero__producer {
  font-weight: 400;
  text-align: center;
}
@media (min-width: 768px) {
  .p-hero__producer {
    font-size: 1.25rem;
    font-weight: 400;
    margin-inline: 0 1.875rem;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .p-hero__producer {
    font-size: max(1.25rem, 16px);
  }
}

.p-hero__title-box {
  width: 100%;
  max-width: 57rem;
  margin-inline: auto;
  margin-block-end: 0.625rem;
  padding-block: 0.8125rem 0.375rem;
  padding-inline: 0;
}
@media (min-width: 768px) {
  .p-hero__title-box {
    margin-block-end: 0.875rem;
    padding-block: 1.25rem;
    padding-inline: 1.25rem;
  }
}

.p-hero__title {
  width: 100%;
}
.p-hero__title img {
  width: 100%;
  height: auto;
}

.p-hero__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  width: 100%;
  max-width: 21.875rem;
  margin-inline: auto;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.4;
  letter-spacing: 0.06em;
  font-size: 0.9375rem;
}
@media (min-width: 375px) {
  .p-hero__meta {
    font-size: max(0.9375rem, 12px);
  }
}
.p-hero__meta {
  font-weight: 400;
  text-align: center;
}
@media (min-width: 768px) {
  .p-hero__meta {
    gap: 0.1875rem;
    max-width: 42.75rem;
    line-height: 1.7;
    font-size: 1.3125rem;
    font-weight: 400;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .p-hero__meta {
    font-size: max(1.3125rem, 16.8px);
  }
}

.p-hero__period {
  width: 100%;
  max-width: 21.875rem;
}
.p-hero__period img {
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .p-hero__period {
    max-width: 42.125rem;
  }
}

.p-hero__closed {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.625rem;
  margin-block-end: 0.25rem;
  margin-inline-end: 1.625rem;
}
@media (min-width: 768px) {
  .p-hero__closed {
    gap: 0.5625rem;
    margin-block-end: 0.5625rem;
    margin-inline-end: 0;
    align-items: center;
  }
}

.p-hero__closed-mark {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 0.8125rem;
  height: 1.125rem;
  font-size: 0.8125rem;
}
@media (min-width: 375px) {
  .p-hero__closed-mark {
    font-size: max(0.8125rem, 10.4px);
  }
}
.p-hero__closed-mark {
  font-weight: 400;
  border: 0.0625rem solid var(--color-white);
  margin-inline-start: -0.875rem;
}
@media (min-width: 768px) {
  .p-hero__closed-mark {
    width: 1.4375rem;
    height: 1.4375rem;
    font-size: 1.125rem;
    font-weight: 400;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .p-hero__closed-mark {
    font-size: max(1.125rem, 14.4px);
  }
}

.p-hero__time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  width: 100%;
  max-width: 21.875rem;
  margin-inline-end: 0.5rem;
}
@media (min-width: 768px) {
  .p-hero__time {
    gap: 1rem;
    max-width: 42.125rem;
    margin-block-end: 0.3125rem;
    margin-inline-end: 1.1875rem;
  }
}
.p-hero__time img {
  width: 13.75rem;
  max-width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .p-hero__time img {
    width: auto;
  }
}

.p-hero__open {
  font-size: 1.3125rem;
}
@media (min-width: 375px) {
  .p-hero__open {
    font-size: max(1.3125rem, 16.8px);
  }
}
.p-hero__open {
  font-weight: 400;
}
@media (min-width: 768px) {
  .p-hero__open {
    font-size: 1.9375rem;
    font-weight: 400;
    margin-inline-start: -0.375rem;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .p-hero__open {
    font-size: max(1.9375rem, 24.8px);
  }
}

.p-hero__venue {
  width: 100%;
}
@media (min-width: 768px) {
  .p-hero__venue {
    letter-spacing: 0.085em;
  }
}

/* export_0006 / 0007 */
.p-news {
  padding-block: 5rem 3.75rem;
  background: var(--color-white);
}
@media (min-width: 768px) {
  .p-news {
    padding-block: 5.25rem 6.25rem;
  }
}

.p-news__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.p-illumination {
  position: relative;
  color: var(--color-white);
  background: #000;
}
.p-illumination .p-illumination__section1 .l-inner,
.p-illumination .p-illumination__section2 .l-inner {
  position: relative;
  z-index: 3;
}

/* イルミネーションの新名所 */
.p-illumination__section1 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-illumination__section1 {
    background-image: url("../img/top/photo-dsc2821.webp");
    background-repeat: no-repeat;
    background-position: -12rem 21.3125rem;
    background-size: 83rem auto;
    margin-block-end: 8.25rem;
  }
}
.p-illumination__section1 .p-illumination__video-wrap {
  position: relative;
  width: 100%;
  max-width: 44.375rem;
  margin-inline: auto;
  aspect-ratio: 16/9;
}
.p-illumination__section1 .p-illumination__video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border: 0.0625rem solid var(--color-white);
}
.p-illumination__section1 {
  /* あしらい（1920 カンプ基準・vw で比例縮小） */
}
.p-illumination__section1 .p-illumination__ornament.--left-top {
  display: none;
}
@media (min-width: 768px) {
  .p-illumination__section1 .p-illumination__ornament.--left-top {
    display: block;
    left: min(21.25rem, 17.708vw);
    top: min(58.8125rem, 49.01vw);
    width: min(8.375rem, 6.979vw);
  }
}
.p-illumination__section1 .p-illumination__ornament.--left-bottom {
  display: none;
}
@media (min-width: 768px) {
  .p-illumination__section1 .p-illumination__ornament.--left-bottom {
    display: block;
    left: min(14.5rem, 12.083vw);
    bottom: min(5.25rem, 4.375vw);
    width: min(8.625rem, 7.188vw);
  }
}
.p-illumination__section1 .p-illumination__ornament.--right-top {
  display: none;
}
@media (min-width: 768px) {
  .p-illumination__section1 .p-illumination__ornament.--right-top {
    display: block;
    right: min(7.9375rem, 6.615vw);
    top: min(42.125rem, 35.104vw);
    width: min(5.5625rem, 4.635vw);
  }
}
.p-illumination__section1 .p-illumination__ornament.--right-center {
  display: none;
}
@media (min-width: 768px) {
  .p-illumination__section1 .p-illumination__ornament.--right-center {
    display: block;
    right: min(13.4375rem, 11.198vw);
    top: min(53rem, 44.167vw);
    width: min(12.5625rem, 10.469vw);
  }
}

.p-illumination__ornament {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.p-illumination__ornament img {
  display: block;
  inline-size: 100%;
  block-size: auto;
}

/* 7つのエリア */
.p-illumination__section2 {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-image: url("../img/top/photo-dsc2255.webp");
  background-repeat: no-repeat;
  background-position: right 38.5rem;
  background-size: auto 20%;
}
@media (min-width: 768px) {
  .p-illumination__section2 {
    background-position: 100% 1.0625rem;
    background-size: 76rem auto;
  }
}
.p-illumination__section2::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("../img/top/photo-dsc2821.webp");
  background-repeat: no-repeat;
  background-position: center 14.375rem;
  background-size: 23.6875rem auto;
}
@media (min-width: 768px) {
  .p-illumination__section2::before {
    display: none;
  }
}
.p-illumination__section2::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/top/photo-dsc2578.webp");
  background-repeat: no-repeat;
  background-position: -13.875rem 127%;
  background-size: auto 29%;
  pointer-events: none;
  z-index: 0;
}
@media (min-width: 768px) {
  .p-illumination__section2::after {
    background-position: -8rem 49rem;
    background-size: 66rem auto;
  }
}
.p-illumination__section2 {
  /* あしらい（1920 カンプ基準・vw で比例縮小） */
}
.p-illumination__section2 .p-illumination__ornament.--left-top {
  display: none;
}
@media (min-width: 768px) {
  .p-illumination__section2 .p-illumination__ornament.--left-top {
    display: block;
    left: min(14.25rem, 11.875vw);
    top: min(22.75rem, 18.958vw);
    width: min(9.1875rem, 7.656vw);
  }
}
.p-illumination__section2 .p-illumination__ornament.--left-bottom {
  display: none;
}
@media (min-width: 768px) {
  .p-illumination__section2 .p-illumination__ornament.--left-bottom {
    display: block;
    left: min(3.8125rem, 3.177vw);
    bottom: min(12.4375rem, 10.365vw);
    width: min(15.375rem, 12.813vw);
  }
}
.p-illumination__section2 .p-illumination__ornament.--right-top {
  right: min(1.8125rem, 7.436vw);
  top: min(21.25rem, 87.179vw);
  width: min(1.8125rem, 7.436vw);
}
@media (min-width: 768px) {
  .p-illumination__section2 .p-illumination__ornament.--right-top {
    right: min(9.8125rem, 8.177vw);
    top: min(60.375rem, 50.313vw);
    width: min(6.75rem, 5.625vw);
  }
}
.p-illumination__section2 .p-illumination__ornament.--right-center {
  right: min(1.125rem, 4.615vw);
  top: min(25.0625rem, 102.821vw);
  width: min(6.75rem, 27.692vw);
}
@media (min-width: 768px) {
  .p-illumination__section2 .p-illumination__ornament.--right-center {
    right: min(6.875rem, 5.729vw);
    top: min(74rem, 61.667vw);
    width: min(12.625rem, 10.521vw);
  }
}

.p-illumination__lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  margin-block-end: 2.5625rem;
}
@media (min-width: 768px) {
  .p-illumination__lead {
    gap: 2.5rem;
    margin-block-end: 9.25rem;
  }
}

.p-illumination__decoration {
  inline-size: 100vw;
  max-inline-size: none;
  margin-inline: calc(50% - 50vw);
  overflow: hidden;
  min-block-size: 7.0625rem;
}
.p-illumination__decoration svg {
  display: block;
  inline-size: 210%;
  block-size: auto;
  margin-inline: -55%;
}
@media (min-width: 768px) {
  .p-illumination__decoration {
    inline-size: 100%;
    max-inline-size: 75rem;
    margin-inline: auto;
    overflow: visible;
    min-block-size: 0;
    margin-block-end: 3.9rem;
  }
  .p-illumination__decoration svg {
    inline-size: 100%;
    margin-inline: 0;
  }
}

.p-illumination__intro-text {
  font-size: 1rem;
}
@media (min-width: 375px) {
  .p-illumination__intro-text {
    font-size: max(1rem, 12.8px);
  }
}
.p-illumination__intro-text {
  font-weight: 400;
  line-height: 1.5;
  display: block;
  margin-block-start: -1.5rem;
}
@media (min-width: 768px) {
  .p-illumination__intro-text {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.7;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .p-illumination__intro-text {
    font-size: max(1.25rem, 16px);
  }
}

.p-illumination__heading {
  width: 100%;
  margin-block-end: 0;
  border-top: 0.0625rem solid var(--color-yellow);
  border-bottom: 0.0625rem solid var(--color-yellow);
  padding-block: 1.8125rem;
}
@media (min-width: 768px) {
  .p-illumination__heading {
    padding-block: 2.5625rem;
    margin-block-end: 2.375rem;
  }
}
.p-illumination__heading picture {
  display: block;
  width: 100%;
  max-width: 21.25rem;
  margin-inline: auto;
}
.p-illumination__heading img {
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 768px) {
  .p-illumination__heading picture {
    max-width: 42.5rem;
  }
}

.p-illumination__photo {
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.p-illumination__photo.--half {
  aspect-ratio: 1216/811;
  background-image: url("../img/top/photo-dsc2255.webp");
}

.p-illumination__gallery {
  position: relative;
  z-index: 1;
  inline-size: 100%;
  overflow: hidden;
  padding-block: 0 6rem;
}
@media (min-width: 768px) {
  .p-illumination__gallery {
    padding-block: 0 6.8125rem;
  }
}

.p-illumination__marquee {
  inline-size: 100%;
  overflow: hidden;
}

.p-illumination__marquee-track {
  display: flex;
  inline-size: -moz-max-content;
  inline-size: max-content;
  will-change: transform;
}
.p-illumination__marquee-track.is-ready {
  animation: p-illumination-marquee 45s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .p-illumination__marquee-track.is-ready {
    animation: none;
  }
}

.p-illumination__marquee-list {
  display: flex;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-illumination__marquee-item {
  flex-shrink: 0;
  inline-size: 8.5625rem;
}
@media (min-width: 768px) {
  .p-illumination__marquee-item {
    inline-size: 19.0625rem;
  }
}
.p-illumination__marquee-item img {
  display: block;
  inline-size: 100%;
  block-size: auto;
  aspect-ratio: 137/91;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .p-illumination__marquee-item img {
    aspect-ratio: 305/203;
  }
}

@keyframes p-illumination-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(var(--marquee-distance, -50%), 0, 0);
  }
}
.p-illumination__video {
  padding-block: 3.125rem;
  background: #001a4b;
}
@media (min-width: 768px) {
  .p-illumination__video {
    padding-block: 3.75rem;
  }
}

.p-illumination__video-inner {
  width: 100%;
  max-width: 1920px;
  padding-inline: 1.25rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .p-illumination__video-inner {
    padding-inline: 22.5rem;
  }
}

.p-illumination__video-wrap {
  position: relative;
  width: 100%;
  max-width: 44.375rem;
  margin-inline: auto;
  aspect-ratio: 16/9;
}
.p-illumination__video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.p-map {
  position: relative;
  padding-block: 6.375rem 4.75rem;
  color: var(--color-white);
}
@media (min-width: 768px) {
  .p-map {
    padding-block: 5rem 17.5rem;
  }
}

.p-map__lead {
  margin-block-end: 6.25rem;
  font-size: 1rem;
}
@media (min-width: 375px) {
  .p-map__lead {
    font-size: max(1rem, 12.8px);
  }
}
.p-map__lead {
  font-weight: 400;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .p-map__lead {
    margin-block-end: 8.1875rem;
    font-size: 1.5rem;
    font-weight: 400;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .p-map__lead {
    font-size: max(1.5rem, 19.2px);
  }
}

.p-map__title {
  margin-block-end: 2.5625rem;
  text-align: center;
}
@media (min-width: 768px) {
  .p-map__title {
    margin-block-end: 4rem;
  }
}
.p-map__title picture {
  display: block;
  inline-size: 100%;
  max-inline-size: 21.875rem;
  margin-inline: auto;
}
.p-map__title img {
  inline-size: 100%;
  block-size: auto;
}
@media (min-width: 768px) {
  .p-map__title picture {
    max-inline-size: 75rem;
  }
}

.p-map__title,
.p-map__lead {
  text-align: left;
}
@media (min-width: 768px) {
  .p-map__title,
  .p-map__lead {
    text-align: center;
  }
}

.p-map__visual {
  position: relative;
  width: 100%;
  max-width: 61.625rem;
  margin-inline: auto;
}

.p-map__map-wrap {
  position: relative;
}

.p-map__svg {
  display: block;
  width: 100%;
  height: auto;
  color: transparent;
}

.p-map__svg-base {
  pointer-events: none;
}

.p-map__zone {
  cursor: pointer;
  outline: none;
}

.p-map__zone-shape {
  fill-opacity: 0;
  stroke-opacity: 0;
  stroke-linejoin: round;
  stroke-width: 6.86px;
  pointer-events: visiblepainted;
  transition: fill-opacity 0.35s ease, stroke-opacity 0.35s ease;
}

.p-map__zone--1 .p-map__zone-shape {
  fill: #e12f15;
  stroke: #e12f15;
}

.p-map__zone--2 .p-map__zone-shape {
  fill: #4f9723;
  stroke: #4f9723;
}

.p-map__zone--3 .p-map__zone-shape {
  fill: #2d8edc;
  stroke: #008edc;
}

.p-map__zone--4 .p-map__zone-shape {
  fill: #fab002;
  stroke: #ffb000;
}

.p-map__zone--5 .p-map__zone-shape {
  fill: #ed6c0f;
  stroke: #ed6c0f;
}

.p-map__zone--6 .p-map__zone-shape {
  fill: #bfd36d;
  stroke: #bfd36d;
}

.p-map__zone--7 .p-map__zone-shape {
  fill: #e15689;
  stroke: #e15689;
}

.p-map.is-hover-area-1 .p-map__zone--1 .p-map__zone-shape,
.p-map.is-hover-area-2 .p-map__zone--2 .p-map__zone-shape,
.p-map.is-hover-area-3 .p-map__zone--3 .p-map__zone-shape,
.p-map.is-hover-area-4 .p-map__zone--4 .p-map__zone-shape,
.p-map.is-hover-area-5 .p-map__zone--5 .p-map__zone-shape,
.p-map.is-hover-area-6 .p-map__zone--6 .p-map__zone-shape,
.p-map.is-hover-area-7 .p-map__zone--7 .p-map__zone-shape {
  fill-opacity: 0.5;
  stroke-opacity: 1;
}

.p-map__zone:focus-visible .p-map__zone-shape {
  fill-opacity: 0.5;
  stroke-opacity: 1;
}

.p-map__legend {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  max-width: 18rem;
  margin-block-start: 6rem;
  margin-inline: auto;
}
@media (max-width: 390px) {
  .p-map__legend {
    margin-inline: auto 1.25rem;
  }
}
@media (min-width: 768px) {
  .p-map__legend {
    position: absolute;
    top: -4%;
    right: -10.5%;
    width: 40.6%;
    max-width: 25rem;
    margin-block-start: 0;
    margin-inline: 0;
  }
}
@media (min-width: 1000px) {
  .p-map__legend {
    top: 4%;
  }
}

.p-map__legend-item {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: start;
  cursor: pointer;
  margin-block-end: 1rem;
}
.p-map__legend-item:last-child {
  margin-block-end: 0;
}
@media (any-hover: hover) {
  .p-map__legend-item:hover {
    opacity: 0.7;
  }
}
@media (min-width: 768px) {
  .p-map__legend-item {
    gap: 0.5rem;
    margin-block-end: 1.25rem;
  }
}

@media (min-width: 768px) {
  .p-map__legend-item.--nagi {
    margin-block-end: 1.0625rem;
  }
}

.p-map__legend-pin {
  display: block;
  flex: 0 0 2.4375rem;
}
@media (min-width: 768px) {
  .p-map__legend-pin {
    flex: 0 0 2.5rem;
  }
}

.p-map__legend-pin img {
  inline-size: 100%;
  block-size: auto;
  max-block-size: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.p-map__legend-body {
  flex: 1;
  min-width: 0;
}
@media (min-width: 768px) {
  .p-map__legend-body {
    margin-block-start: 0;
  }
}

.p-map__legend-zone {
  display: block;
  font-size: 0.75rem;
}
@media (min-width: 375px) {
  .p-map__legend-zone {
    font-size: max(0.75rem, 9.6px);
  }
}
.p-map__legend-zone {
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-white);
}

.p-map__legend-title {
  display: block;
  font-size: 1.125rem;
}
@media (min-width: 375px) {
  .p-map__legend-title {
    font-size: max(1.125rem, 14.4px);
  }
}
.p-map__legend-title {
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.07em;
  color: var(--color-yellow);
  margin-block-start: 0.125rem;
}
@media (min-width: 768px) {
  .p-map__legend-title {
    font-size: 1.1875rem;
    font-weight: 600;
    line-height: 1.4;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .p-map__legend-title {
    font-size: max(1.1875rem, 15.2px);
  }
}

.p-overview {
  padding-block: 5.5rem 3.75rem;
  background: var(--color-white);
}
@media (min-width: 768px) {
  .p-overview {
    padding-block: 11.25rem 2.5rem;
  }
}

.p-overview__content {
  max-width: 75rem;
  margin-inline: auto;
  border-bottom: 0.0625rem solid var(--color-gray);
}
@media (min-width: 768px) {
  .p-overview__content {
    padding-block-end: 5.6875rem;
  }
}

/* SP: ラベル横並び・行ごとの余白 */
.p-overview__content .c-label-row.--period,
.p-overview__content .c-label-row.--hours,
.p-overview__content .c-label-row.--fee,
.p-overview__content .c-label-row.--notice {
  grid-template-columns: 1fr;
  gap: 0.5rem 0.625rem;
}
@media (min-width: 768px) {
  .p-overview__content .c-label-row.--period,
  .p-overview__content .c-label-row.--hours,
  .p-overview__content .c-label-row.--fee,
  .p-overview__content .c-label-row.--notice {
    grid-template-columns: 10.3125rem 1fr;
    gap: 1.25rem 2.5rem;
    padding-block: 0.9375rem;
  }
}

.p-overview__content .c-label-row.--period {
  padding-block: 0.90625rem 1.875rem;
}
@media (min-width: 768px) {
  .p-overview__content .c-label-row.--period {
    padding-block: 0.9375rem;
  }
}

.p-overview__content .c-label-row.--hours {
  padding-block: 0.6875rem 1.5rem;
}
@media (min-width: 768px) {
  .p-overview__content .c-label-row.--hours {
    padding-block: 0.9375rem;
  }
}
.p-overview__content .c-label-row.--hours .c-label-row__text {
  line-height: 1.5;
}
@media (min-width: 768px) {
  .p-overview__content .c-label-row.--hours .c-label-row__text {
    line-height: 1.7;
  }
}

.p-overview__content .c-label-row.--fee {
  padding-block: 0.90625rem 1.5625rem;
}
@media (min-width: 768px) {
  .p-overview__content .c-label-row.--fee {
    padding-block: 0.75rem 0.9375rem;
  }
}

.p-overview__content .c-label-row.--notice {
  padding-block: 0.90625rem 5.0625rem;
}
@media (min-width: 768px) {
  .p-overview__content .c-label-row.--notice {
    padding-block: 0.9375rem;
  }
}
.p-overview__content .c-label-row.--notice .c-label-row__text {
  line-height: 1.48;
}
@media (min-width: 768px) {
  .p-overview__content .c-label-row.--notice .c-label-row__text {
    line-height: 1.6;
  }
}

.p-overview__fee-body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .p-overview__fee-body {
    gap: 1.75rem;
  }
}

.p-overview__fee-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-inline-start: -0.875rem;
}
@media (min-width: 768px) {
  .p-overview__fee-list {
    gap: 0;
    margin-inline-start: 0;
    margin-block-start: -0.0625rem;
  }
}

.p-overview__fee-item {
  display: grid;
  grid-template-columns: 5.9375rem 1fr;
  gap: 0.25rem 0.5rem;
  align-items: start;
}
@media (min-width: 768px) {
  .p-overview__fee-item {
    grid-template-columns: auto 1fr;
  }
}

@media (min-width: 768px) {
  .p-overview__fee-item.--advance {
    display: block;
  }
}
.p-overview__fee-item.--advance .p-overview__fee-label-body {
  display: none;
}
@media (min-width: 768px) {
  .p-overview__fee-item.--advance .p-overview__fee-label-body {
    display: inline;
  }
}
@media (min-width: 768px) {
  .p-overview__fee-item.--advance .p-overview__fee-text {
    display: none;
  }
}

.p-overview__fee-item.--linket {
  display: flex;
  flex-flow: row nowrap;
  align-items: baseline;
  gap: 0.5rem;
}
.p-overview__fee-item.--linket .p-overview__fee-label,
.p-overview__fee-item.--linket .p-overview__fee-text {
  flex-shrink: 0;
  white-space: nowrap;
}

.p-overview__fee-label {
  margin: 0;
  font-size: 1.1875rem;
}
@media (min-width: 375px) {
  .p-overview__fee-label {
    font-size: max(1.1875rem, 15.2px);
  }
}
.p-overview__fee-label {
  font-weight: 500;
  line-height: 1.9;
}
@media (min-width: 768px) {
  .p-overview__fee-label {
    line-height: 1.7;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.6;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .p-overview__fee-label {
    font-size: max(1.25rem, 16px);
  }
}

.p-overview__fee-text {
  margin: 0;
  min-width: 0;
  font-size: 1.1875rem;
}
@media (min-width: 375px) {
  .p-overview__fee-text {
    font-size: max(1.1875rem, 15.2px);
  }
}
.p-overview__fee-text {
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .p-overview__fee-text {
    line-height: 1.7;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.6;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .p-overview__fee-text {
    font-size: max(1.25rem, 16px);
  }
}

.p-overview__line-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.3125rem;
  text-align: center;
}
@media (min-width: 768px) {
  .p-overview__line-action {
    flex-direction: row;
    align-items: center;
    gap: 1.625rem;
    margin-inline-start: 0.6875rem;
    text-align: start;
  }
}

.p-overview__note-mark {
  display: none;
}
@media (min-width: 768px) {
  .p-overview__note-mark {
    display: inline;
  }
}

.p-overview__note {
  position: relative;
  display: inline-block;
  padding-inline-start: 1em;
  font-size: 0.875rem;
}
@media (min-width: 375px) {
  .p-overview__note {
    font-size: max(0.875rem, 11.2px);
  }
}
.p-overview__note {
  font-weight: 400;
  line-height: 1.5;
  text-align: start;
  margin-inline-start: -0.75rem;
}
.p-overview__note::before {
  content: "※";
  position: absolute;
  inset-inline-start: 0;
}
@media (min-width: 768px) {
  .p-overview__note {
    display: block;
    padding-inline-start: 0;
    font-size: 1rem;
    font-weight: 400;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .p-overview__note {
    font-size: max(1rem, 12.8px);
  }
}
@media (min-width: 768px) {
  .p-overview__note::before {
    content: none;
  }
}

.p-overview__ticket-note {
  font-size: 1.1875rem;
}
@media (min-width: 375px) {
  .p-overview__ticket-note {
    font-size: max(1.1875rem, 15.2px);
  }
}
.p-overview__ticket-note {
  font-weight: 500;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .p-overview__ticket-note {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.6;
    margin-block-end: 0.125rem;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .p-overview__ticket-note {
    font-size: max(1.25rem, 16px);
  }
}
.p-overview__ticket-note a {
  display: inline;
  color: var(--color-purple);
  text-decoration: underline;
}

.p-overview__line-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 15.625rem;
  padding-block: 1.125rem;
  padding-inline: 1.5625rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
}
@media (min-width: 375px) {
  .p-overview__line-btn {
    font-size: max(1.25rem, 16px);
  }
}
.p-overview__line-btn {
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  background-color: var(--color-line);
  border-radius: 1.875rem;
}
@media (min-width: 768px) {
  .p-overview__line-btn {
    font-size: 1.25rem;
    font-weight: 700;
    padding-block: 1.125rem;
    min-width: 15.625rem;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .p-overview__line-btn {
    font-size: max(1.25rem, 16px);
  }
}

.p-overview__line-banner {
  display: block;
  inline-size: 100%;
  max-inline-size: 21.875rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .p-overview__line-banner {
    max-inline-size: 30.625rem;
    margin-inline: 0.6875rem 0;
  }
}
.p-overview__line-banner picture {
  display: block;
}
.p-overview__line-banner img {
  display: block;
  inline-size: 100%;
  block-size: auto;
}

.p-overview__sponsor {
  font-size: 1rem;
}
@media (min-width: 375px) {
  .p-overview__sponsor {
    font-size: max(1rem, 12.8px);
  }
}
.p-overview__sponsor {
  font-weight: 500;
  line-height: 1.5;
  border-top: 0.0625rem solid var(--color-black);
}
@media (min-width: 768px) {
  .p-overview__sponsor {
    line-height: 1.625;
    padding-block-start: 3.6875rem;
  }
}

.p-overview__sponsor-logo {
  display: inline;
  vertical-align: middle;
  width: 7.5625rem;
  height: auto;
  margin-inline: 0.125rem 0.25rem;
}
@media (min-width: 768px) {
  .p-overview__sponsor-logo {
    width: 8.3125rem;
  }
}

/* export_0010 / 0011 */
.p-access {
  padding-block: 1.125rem 6.1875rem;
  background: var(--color-white);
}
@media (min-width: 768px) {
  .p-access {
    padding-block: 3.75rem 11.375rem;
  }
}

.p-access__content {
  max-width: 75.0625rem;
  margin-inline: auto;
}

/* export_0011 SP: ラベル縦積み・行ごとの余白 */
.p-access__content .c-label-row.--venue,
.p-access__content .c-label-row.--transit,
.p-access__content .c-label-row.--car,
.p-access__content .c-label-row.--parking {
  grid-template-columns: 1fr;
  gap: 0.625rem;
}
@media (min-width: 768px) {
  .p-access__content .c-label-row.--venue,
  .p-access__content .c-label-row.--transit,
  .p-access__content .c-label-row.--car,
  .p-access__content .c-label-row.--parking {
    grid-template-columns: 10.3125rem 1fr;
    gap: 1.25rem 2.5rem;
    padding-block: 0.9375rem;
  }
}

.p-access__content .c-label-row.--venue {
  padding-block: 0.90625rem 0.9375rem;
}
@media (min-width: 768px) {
  .p-access__content .c-label-row.--venue {
    padding-block: 0.9375rem;
    margin-block-end: 1.4375rem;
  }
}
.p-access__content .c-label-row.--venue .c-label-row__text {
  line-height: 1.48;
}
@media (min-width: 768px) {
  .p-access__content .c-label-row.--venue .c-label-row__text {
    line-height: 1.5;
  }
}

.p-access__content .c-label-row.--transit {
  padding-block: 0.90625rem 1.5rem;
}
@media (min-width: 768px) {
  .p-access__content .c-label-row.--transit {
    padding-block: 0.875rem;
  }
}
.p-access__content .c-label-row.--transit .c-label-row__label {
  width: 7.125rem;
}
@media (min-width: 768px) {
  .p-access__content .c-label-row.--transit .c-label-row__label {
    width: 100%;
  }
}
.p-access__content .c-label-row.--transit .c-label-row__text {
  line-height: 1.48;
}
@media (min-width: 768px) {
  .p-access__content .c-label-row.--transit .c-label-row__text {
    line-height: 1.7;
  }
}

.p-access__content .c-label-row.--car {
  padding-block: 0.90625rem 1.5625rem;
}
@media (min-width: 768px) {
  .p-access__content .c-label-row.--car {
    padding-block: 0.875rem;
  }
}
.p-access__content .c-label-row.--car .c-label-row__text {
  line-height: 1.48;
}
@media (min-width: 768px) {
  .p-access__content .c-label-row.--car .c-label-row__text {
    line-height: 1.7;
  }
}

.p-access__content .c-label-row.--parking {
  padding-block: 0.90625rem 2.5rem;
  gap: 0.4375rem 0.625rem;
}
@media (min-width: 768px) {
  .p-access__content .c-label-row.--parking {
    padding-block: 0.9375rem;
    margin-block-end: 3.5rem;
    gap: 1.25rem 2.5rem;
  }
}

.p-access__content .p-overview__sponsor {
  padding-block-start: 3.75rem;
}
@media (min-width: 768px) {
  .p-access__content .p-overview__sponsor {
    padding-block-start: 3.6875rem;
  }
}

.p-access__about {
  display: grid;
  gap: 1.25rem;
  margin-block-end: 1.375rem;
}
@media (min-width: 768px) {
  .p-access__about {
    grid-template-columns: 27.4375rem 1fr;
    gap: 1.5rem;
    align-items: start;
    margin-block-end: 2.375rem;
  }
}

.p-access__about-visual {
  display: flex;
  flex-direction: column;
  gap: 0.4375rem;
}
@media (min-width: 768px) {
  .p-access__about-visual {
    gap: 1rem;
  }
}

.p-access__about-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 350/191;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .p-access__about-image img {
    aspect-ratio: 439/239;
  }
}

.p-access__about-body {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
@media (min-width: 768px) {
  .p-access__about-body {
    gap: 1.6875rem;
  }
}

.p-access__about-logo img {
  display: block;
  width: 15.25rem;
  height: auto;
  aspect-ratio: 337/81;
}
@media (min-width: 768px) {
  .p-access__about-logo img {
    width: 21.0625rem;
  }
}

.p-access__about-text {
  font-size: 1rem;
}
@media (min-width: 375px) {
  .p-access__about-text {
    font-size: max(1rem, 12.8px);
  }
}
.p-access__about-text {
  font-weight: 500;
  line-height: 1.55;
  padding-inline-end: 0.0625rem;
}
@media (min-width: 768px) {
  .p-access__about-text {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.7;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .p-access__about-text {
    font-size: max(1.25rem, 16px);
  }
}

.p-access__about-note {
  font-size: 0.875rem;
}
@media (min-width: 375px) {
  .p-access__about-note {
    font-size: max(0.875rem, 11.2px);
  }
}
.p-access__about-note {
  font-weight: 400;
}
@media (min-width: 768px) {
  .p-access__about-note {
    font-size: 0.9375rem;
    font-weight: 400;
  }
}
@media (min-width: 768px) and (min-width: 375px) {
  .p-access__about-note {
    font-size: max(0.9375rem, 12px);
  }
}

.p-access__map {
  position: relative;
  width: 100%;
  aspect-ratio: 350/229;
  margin-block-end: 3.6875rem;
}
@media (min-width: 768px) {
  .p-access__map {
    aspect-ratio: 1200/337;
    margin-block-end: 4.25rem;
  }
}
.p-access__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

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

.u-pc {
  display: none !important;
}
@media (min-width: 768px) {
  .u-pc {
    display: block !important;
  }
}

.u-font {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
}
.u-font__jp {
  font-family: "Noto Sans JP", sans-serif;
}
.u-font__en {
  font-family: "Roboto", sans-serif;
}

.u-pointer__none {
  pointer-events: none !important;
}

@media (min-width: 768px) {
  .u-pointer__none--pc {
    pointer-events: none !important;
  }
}
.u-text__center {
  text-align: center !important;
}

.u-text__left {
  text-align: left !important;
}

.u-text__right {
  text-align: right !important;
}

.u-text__nowrap {
  white-space: nowrap;
}

@media (min-width: 768px) {
  .u-text__center--pc {
    text-align: center !important;
  }
  .u-text__left--pc {
    text-align: left !important;
  }
  .u-text__right--pc {
    text-align: right !important;
  }
  .u-text__nowrap--pc {
    white-space: nowrap;
  }
}