@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');

/*======================================================
 Foundation
======================================================*/
/*============================================
 Reset
============================================*/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/*============================================
 Setting
============================================*/
:root {
  --c-base: #000;
  --c-main: #fff;
  --c-accent: #E3AF1A;
}
/*============================================
 Base
============================================*/
*, *:before, *:after {
  box-sizing: border-box;
}
body {
  color: var(--c-base);
  font-family: "Noto Serif JP", serif;
  font-size: .75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  background-color: #000;
  background-image: url('../images/bg.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  -webkit-text-size-adjust: 100%;
}
html.intro-active,
body.intro-active {
  overflow-x: clip;           /* 横スクロールバーを出さない（対応外には下でhiddenを併用） */
  overflow-y: hidden;         /* ネイティブスクロール禁止 */
  overscroll-behavior: none;  /* 端のバウンス抑止 */
  touch-action: none;         /* タッチスクロール禁止（モバイル） */
}
/* 古いブラウザ向けフォールバック */
html.intro-active,
body.intro-active {
  overflow-x: hidden;
}
@media (min-width: 768px) {
  body {
    font-size: 1rem;
  }
}
img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
}
a {
  color: #960;
  text-decoration: underline;
  word-break: break-all;
}
button {
  color: inherit;
  text-decoration: none;
}
a:hover,
button:hover {
  text-decoration: none;
  opacity: .8;
}
button {
  width: 100%;
  color: inherit;
  font: inherit;
  padding: 0;
  margin: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
/*======================================================
 Layout
======================================================*/
/*============================================
 Header
============================================*/
.l-header__hamburger {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  margin: 25px 20px 0 0;
  z-index: 40;
}
.l-header__hamburger.is-active .l-header__hamburger-line {
  background-color: transparent;
}
.l-header__hamburger.is-active .l-header__hamburger-line::before {
  top: 0;
  transform: rotate(45deg);
  background-color: var(--c-accent);
}
.l-header__hamburger.is-active .l-header__hamburger-line::after {
  top: 0;
  transform: rotate(-45deg);
  background-color: var(--c-accent);
}
.l-header__hamburger-line {
  display: block;
  position: absolute;
  top: 14px;
  right: 0;
  width: 40px;
  height: 4px;
  background-color: var(--c-main);
  transition: 0.4s;
}
.l-header__hamburger-line::before,
.l-header__hamburger-line::after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--c-main);
  transition: inherit;
}
.l-header__hamburger-line::before {
  top: -14px;
}
.l-header__hamburger-line::after {
  top: 14px;
}
.l-header__nav-area {
  position: fixed;
  top: 0;
  right: 0;
  width: 70vw;
  height: 100vh;
  height: 100svh;
  padding-top: 24vw;
  background-color: rgba(255, 255, 255, 0.92);
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform .4s ease, opacity .4s ease;
  z-index: 30;
}
.l-header__nav-area.is-active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.l-header__nav {
  margin: 0 20%;
}
.l-header__list {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 25px;
}
.l-header__link {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  color: var(--c-base);
  font-weight: 700;
  text-decoration: none;
}
.l-header__link--en {
  font-size: 1.25rem;
}
.l-header__link--ja {
  font-size: .75rem;
}
@media (min-width: 768px) {
  .l-header__nav-area {
    width: 260px;
    padding-top: 120px;
  }
  .l-header__link--en {
    font-size: 1.5rem;
  }
  .l-header__link--ja {
    font-size: .875rem;
  }
}
/*============================================
 Main
============================================*/
/*============================================
 Side
============================================*/
.l-side {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 0 15px;
  margin-top: 60px;
}
.l-side__list {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.l-side__item a {
  display: block;
  width: 60px;
  height: 60px;
}
.l-side__link {
  display: flex;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  > img {
    border: 1px solid #c0c0c0;
  }
}
@media (min-width: 768px) {
  .l-side {
    max-width: 1040px;
    margin: 70px auto 0;
  }
}
/*============================================
 Footer
============================================*/
.l-footer {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 52px 0;
  margin-top: 60px;
  background: var(--c-base);
}
.l-footer__list {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.l-footer__item,
.l-footer__copyright {
  color: var(--c-main);
  font-size: .875rem;
  font-weight: 400;
}
.l-footer__copyright {
  line-height: 1.7143;
  margin-top: 2em;
}
/*======================================================
 Object
======================================================*/
/*============================================
 Component
============================================*/
.c-heading {
  width: 68.534vw;
  margin: 0 auto 40px;
}
.c-list__item {
  line-height: 1.6667;
  text-indent: -1em;
  margin-left: 1em;
}
.c-list__item > b {
  color: #D0111B;
  font-weight: 700;
}
.c-divider {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.c-divider__line {
  width: 100%;
  height: 1px;
  background: #ccc;
}
.c-button {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  gap: 20px;
}
.c-button__link {
  flex: 1 0 0;
  display: flex;
  align-items: center;
  align-self: stretch;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 80px;
  color: var(--c-main);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  padding: 15px 10px;
  background: var(--c-base);
  border-radius: 10px;
}
.c-mail {
  color: inherit;
  text-decoration: none;
}
.c-mail:hover {
  opacity: 1;
}
.c-corner {
  transform-origin: center;
  transform-box: fill-box;
}
.c-corner--tl {
  transform: none;
}
.c-corner--tr {
  transform: scaleX(-1);
}
.c-corner--bl {
  transform: scaleY(-1);
}
.c-corner--br {
  transform: rotate(180deg);
}
.c-left-top,
.c-right-top,
.c-left-bottom,
.c-right-bottom {
  position: absolute;
  width: 35px;
  height: 35px;
  z-index: 1;
}
.c-left-top {
  left: 0;
  top: 0;
}
.c-right-top {
  right: 0;
  top: 0;
}
.c-left-bottom {
  left: 0;
  bottom: 0;
}
.c-right-bottom {
  right: 0;
  bottom: 0;
}
@media (min-width: 768px) {
  .c-heading {
    width: 343.5px;
  }
  .c-list__item {
    font-size: .875rem;
    line-height: 1.7143;
  }
  .c-button {
    align-items: flex-start;
    flex-direction: row;
    justify-content: center;
    max-width: 660px;
    margin: 0 auto;
  }
  .c-button__link {
    font-size: 1.125rem;
  }
}
/*============================================
 Project
============================================*/
/*=========================
 Kv
=========================*/
:root{
  --floor: #fff;
  /* 白コーンの形（SP用） */
  --cone-bottom-width: 62%;  /* 白の底幅（＝黒も同期） */
  --cone-apex-x: 50%;
  --cone-round-h: 62%;
  --cone-round-drop: 24%;
  /* 白コーン底辺の左右基準（SPは 31% / 69% を使用） */
  --cone-left: 31%;
  --cone-right: 69%;
  --floor-h: 20vw;
  --floor-drop: 0%;
}
.p-lp-kv {
  position: relative;
  width: 100%;
  height: calc(100vh - 30vw);
  height: calc(100svh - 30vw);
  transform: none;
  z-index: 0;
}
.intro-active .p-lp-kv {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 15;
}
.p-lp-kv__inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-end;
  position: absolute;
  inset: 0;
  width: 100%;
  background: var(--c-accent);
  will-change: transform;          /* Safari 安定化に効く場合あり */
  backface-visibility: hidden;     /* Safari/GPU 合成の安定化 */
}
.p-lp-kv__cone {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.p-lp-kv__cone::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-main);
  --half: calc(var(--cone-bottom-width) / 2);
  clip-path: polygon(
    var(--cone-apex-x) -30%,
    calc(var(--cone-right) + var(--half)) 100%,
    calc(var(--cone-left)  - var(--half)) 100%
  );
}
.p-lp-kv__floor {
  position: absolute;
  bottom: -19.9vw;
  left: 50%;
  transform: translateX(-50%);
  width: calc(var(--cone-bottom-width) + (var(--cone-right) - var(--cone-left)));
  height: var(--floor-h);
  background: var(--floor);
  border-bottom-left-radius: 50% 100%;
  border-bottom-right-radius: 50% 100%;
  border-top-left-radius: 0 0;
  border-top-right-radius: 0 0;
  z-index: 0;
}
.p-lp-kv__logo {
  position: relative;
  width: 72vw;
  padding-top: 30px;
  z-index: 3;
}
.p-lp-kv__text {
  position: absolute;
  top: 16px;
  left: 16px;
  color: var(--c-base);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: -.05em;
  line-height: 1.4;
  writing-mode: vertical-rl;
  z-index: 3;
}
@media (min-width:768px) {
  :root{
    --cone-bottom-width: 72%;
    --cone-round-h: 52%;
    --cone-round-drop: 20%;
    /* PCは 36% / 64%（＝ずらし量28%）に */
    --cone-left: 36%;
    --cone-right: 64%;
    --floor-h: 12vw;
  }
  .p-lp-kv {
    height: calc(100vh - 13vw);
    height: calc(100svh - 13vw);
  }
  .p-lp-kv__cone::before {
    clip-path: polygon(
      var(--cone-apex-x) -45%,
      calc(var(--cone-right) + var(--half)) 100%,
      calc(var(--cone-left)  - var(--half)) 100%
    );
  }
  .p-lp-kv__floor {
    bottom: -11.9vw;
  }
  .p-lp-kv__logo {
    width: auto;
    min-width: 480px;
    max-width: 48.6112vw;
    max-height: 70vh;
    max-height: 70svh;
    text-align: center;
  }
  .p-lp-kv__logo > img {
    width: auto;
  }
  .p-lp-kv__text {
    top: 32px;
    left: 32px;
    font-size: .875rem;
    letter-spacing: 0;
  }
}
/*=========================
 Overlay
=========================*/
.p-lp-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  background: rgb(0, 0, 0);
  opacity: 1;           /* 初期：黒で完全に隠す */
  pointer-events: none; /* クリックは透過 */
  z-index: 10;          /* KVの下、下層の上 */
  display: none;
  /* JSがopacityをフレーム更新するのでtransitionは不要 */
}
.intro-active .p-lp-overlay {
  display: block;
}
/*=========================
 Schedule
=========================*/
.p-lp-schedule {
  padding: 60px 15px 0;
}
.intro-done .p-lp-schedule {
  margin-top: var(--floor-h);
}
.p-lp-schedule__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-lp-schedule__list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
  width: 100%;
}
.p-lp-schedule__item {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
  border: 5px solid var(--c-accent);
  background: var(--c-base);
}
.p-lp-schedule__inner {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  align-self: stretch;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 130px;
  background: var(--c-accent);
  border: 1px solid var(--c-base);
}
.p-lp-schedule__title {
  font-weight: 700;
  line-height: normal;
}
.p-lp-schedule__item--date .p-lp-schedule__title {
  font-size: 1.5rem;
  margin-top: -10px;
}
.p-lp-schedule__item--place .p-lp-schedule__title {
  font-size: 1.25rem;
}
.p-lp-schedule__title strong {
  font-size: 3.75rem;
  line-height: normal;
}
.p-lp-schedule__text {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: normal;
}
.p-lp-schedule__text strong {
  font-size: 2.75rem;
}
.p-lp-schedule__note {
  color: var(--c-accent);
  font-size: .875rem;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}
@media (min-width: 768px) {
  .p-lp-schedule {
    max-width: 1030px;
    padding-top: 80px;
    margin: 0 auto;
  }
  .intro-done .p-lp-schedule {
    margin: var(--floor-h) auto 0;
  }
  .p-lp-schedule__list {
    align-items: stretch;
    flex-direction: row;
  }
  .p-lp-schedule__item {
    flex: 1 0 0;
    min-height: 100%;
  }
  .p-lp-schedule__title strong {
    font-size: 4rem;
    line-height: normal;
  }
  .p-lp-schedule__text strong {
    font-size: 3rem;
  }
}
/*=========================
 Ticket
=========================*/
.p-lp-ticket {
  padding: 80px 15px 0;
}
.p-lp-ticket__body {
  position: relative;
  width: 100%;
}
.p-lp-ticket__inner {
  display: flex;
  flex-direction: column;
  /* gap: 30px; */
  width: 100%;
  padding: 35px 20px 45px;
  background-color: var(--c-main);
  border: 5px solid var(--c-accent);
  border-radius: 0;
  -webkit-mask:
    radial-gradient(circle 33px at top left, transparent 33px, black 33px) top left,
    radial-gradient(circle 33px at top right, transparent 33px, black 33px) top right,
    radial-gradient(circle 33px at bottom left, transparent 33px, black 33px) bottom left,
    radial-gradient(circle 33px at bottom right, transparent 33px, black 33px) bottom right;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 50.1% 50.1%;
  mask:
    radial-gradient(circle 33px at top left, transparent 33px, black 33px) top left,
    radial-gradient(circle 33px at top right, transparent 33px, black 33px) top right,
    radial-gradient(circle 33px at bottom left, transparent 33px, black 33px) bottom left,
    radial-gradient(circle 33px at bottom right, transparent 33px, black 33px) bottom right;
    mask-repeat: no-repeat;
    mask-size: 50.1% 50.1%;
}
.p-lp-ticket__section {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 25px;
  width: 100%;
}
.p-lp-ticket__section + .p-lp-ticket__section {
  padding-top: 30px;
}
.p-lp-ticket__contents {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}
.p-lp-ticket__label {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.45;
}
.p-lp-ticket__price {
  font-size: 2.25rem;
  font-weight: 700;
  margin-top: -10px;
}
.p-lp-ticket__price small {
  font-size: 1rem;
}
.p-lp-ticket__text {
  line-height: 1.6667;
}
/* Receipt */
.p-lp-ticket__receipt {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 30px 20px;
  background: #FBF5E0;
  overflow: hidden;
}
.p-lp-ticket__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4167;
  text-align: center;
}
.p-lp-ticket__read {
  line-height: 1.6667;
}
.p-lp-ticket__info {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 13px;
}
.p-lp-ticket__info-label,
.p-lp-ticket__info-text {
  font-size: 1.125rem;
  line-height: 1.4445;
}
.p-lp-ticket__info-label {
  font-weight: 700;
}
.p-lp-ticket__info .p-lp-ticket__note {
  margin-top: 7px;
}
.p-lp-ticket__note,
.p-lp-ticket__note-list {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
}
.p-lp-ticket__note-list,
.p-lp-ticket__note-text {
  line-height: 1.6667;
}
.p-lp-ticket__note-link {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
/* App */
.p-lp-ticket__app {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 20px 13px;
  border: 2px solid var(--c-base);
}
.p-lp-ticket__app-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}
.p-lp-ticket__app-text {
  line-height: 1.6667;
  text-align: center;
}
.p-lp-ticket__app-supplement {
  line-height: 1.6667;
}
/* Ac */
.p-lp-ticket__buy-ticket {
  padding-top: 10px;
}
.p-lp-ticket__ac {
  width: 100%;
  border: 2px solid var(--c-base);
}
.p-lp-ticket__ac-heading {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 25px 20px;
  cursor: pointer;
}
.p-lp-ticket__ac-heading::-webkit-details-marker {
  display: none;
}
.p-lp-ticket__ac-title {
  flex: 1 0 0;
  font-size: 1.25rem;
  line-height: 1.45;
  font-weight: 700;
  text-align: center;
  padding-right: 38px;
  background: url('../images/icon_open.svg') right center no-repeat;
  background-size: 20px auto;
}
.p-lp-ticket__ac[open] .p-lp-ticket__ac-title {
  background: url('../images/icon_close.svg') right center no-repeat;
  background-size: 20px auto;
}
.p-lp-ticket__ac-contents {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 0 20px 20px;
}
.p-lp-ticket__ac-content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 13px;
  width: 100%;
}
.p-lp-ticket__ac-label {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4445;
}
.p-lp-ticket__ac-text {
  font-size: .875rem;
  line-height: 1.7143;
}
.p-lp-ticket__ac-text--small {
  font-size: .75rem;
  line-height: 1.6667;
}
.p-lp-ticket__ac-text > strong {
  color: #D0111B;
}
.p-lp-ticket__ac-terms {
  font-size: 1.25rem;
  line-height: 1.2;
}
.p-lp-ticket__button-link {
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  .p-lp-ticket {
    max-width: 1030px;
    margin: 0 auto;
  }
  .p-lp-ticket__inner {
    /* gap: 40px; */
    padding: 55px 85px;
  }
  .p-lp-ticket__section {
    gap: 30px;
  }
  .p-lp-ticket__section + .p-lp-ticket__section {
    padding-top: 40px;
  }
  .p-lp-ticket__contents {
    gap: 5px;
  }
  .p-lp-ticket__contents--row {
    align-items: center;
    flex-direction: row;
    gap: 0;
  }
  .p-lp-ticket__contents--row .p-lp-ticket__label {
    width: 200px;
  }
  .p-lp-ticket__price {
    margin-top: 0;
  }
  .p-lp-ticket__text {
    font-size: .875rem;
    line-height: 1.7143;
  }
  /* Receipt */
  .p-lp-ticket__receipt {
    gap: 30px;
    text-align: center;
    padding: 40px 50px 45px;
  }
  .p-lp-ticket__title {
    font-size: 2rem;
    line-height: 1.5625;
  }
  .p-lp-ticket__read {
    line-height: 1.75;
  }
  .p-lp-ticket__info {
    gap: 10px;
    font-size: 1.25rem;
  }
  .p-lp-ticket__info-label,
  .p-lp-ticket__info-text {
    font-size: 1.25rem;
  }
  .p-lp-ticket__note + .p-lp-ticket__info {
    margin-top: 10px;
  }
  .p-lp-ticket__note {
    text-align: left;
  }
  .p-lp-ticket__info .p-lp-ticket__note {
    margin-top: 10px;
  }
  .p-lp-ticket__note,
  .p-lp-ticket__note-list {
    gap: 20px;
  }
  .p-lp-ticket__note-list,
  .p-lp-ticket__note-text {
    font-size: .875rem;
    line-height: 1.7143;
  }
  .p-lp-ticket__note-link {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0 10px;
  }
  .p-lp-ticket__note-link > a {
    font-size: .875rem;
  }
  /* App */
  .p-lp-ticket__app {
    gap: 30px;
    padding: 30px;
  }
  .p-lp-ticket__app-title {
    font-size: 1.25rem;
  }
  .p-lp-ticket__app-text {
    line-height: 1.75;
  }
  .p-lp-ticket__app-supplement {
    font-size: .875rem;
    line-height: 1.4286;
  }
  /* Ac */
  .p-lp-ticket__ac-heading {
    padding: 30px 50px;
  }
  .p-lp-ticket__ac-contents {
    gap: 30px;
    padding: 0 50px 40px;
  }
  .p-lp-ticket__ac-content {
    gap: 20px;
  }
  .p-lp-ticket__ac-content--row {
    align-items: center;
    flex-direction: row;
    gap: 0;
  }
  .p-lp-ticket__ac-content--row .p-lp-ticket__ac-label {
    width: 200px;
  }
  .p-lp-ticket__ac-title {
    font-size: 2rem;
    line-height: 1.25;
    padding-right: 0;
    background: url('../images/icon_open.svg') right center no-repeat;
    background-size: 30px auto;
  }
  .p-lp-ticket__ac[open] .p-lp-ticket__ac-title {
    background: url('../images/icon_close.svg') right center no-repeat;
    background-size: 30px auto;
  }
  .p-lp-ticket__ac-label {
    font-size: 1.25rem;
    line-height: 1.45;
  }
  .p-lp-ticket__ac-text {
    font-size: 1rem;
    line-height: 1.5;
  }
  .p-lp-ticket__ac-text--small {
    font-size: .875rem;
    line-height: 1.7143;
  }
  .p-lp-ticket__ac-terms {
    font-size: 1.5rem;
    line-height: 1;
  }
}
/*=========================
 Inquiry
=========================*/
.p-lp-inquiry {
  padding: 80px 15px 0;
  position: relative;
}
.p-lp-inquiry__body {
  position: relative;
  width: 100%;
}
.p-lp-inquiry__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 35px 15px 45px;
  background-color: var(--c-main);
  border: 5px solid var(--c-accent);
  border-radius: 0;
  -webkit-mask:
    radial-gradient(circle 33px at top left, transparent 33px, black 33px) top left,
    radial-gradient(circle 33px at top right, transparent 33px, black 33px) top right,
    radial-gradient(circle 33px at bottom left, transparent 33px, black 33px) bottom left,
    radial-gradient(circle 33px at bottom right, transparent 33px, black 33px) bottom right;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 50.1% 50.1%;
  mask:
    radial-gradient(circle 33px at top left, transparent 33px, black 33px) top left,
    radial-gradient(circle 33px at top right, transparent 33px, black 33px) top right,
    radial-gradient(circle 33px at bottom left, transparent 33px, black 33px) bottom left,
    radial-gradient(circle 33px at bottom right, transparent 33px, black 33px) bottom right;
    mask-repeat: no-repeat;
    mask-size: 50.1% 50.1%;
}
.p-lp-inquiry__section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.p-lp-inquiry__title {
  font-size: 1.125rem;
  font-weight: 700;
}
.p-lp-inquiry__contents {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  line-height: 1.6667;
  margin-top: 10px;
}
.p-lp-inquiry__contents + .p-lp-inquiry__contents {
  margin-top: 0;
}
.p-lp-inquiry__note {
  margin-top: 1.5em;
}
@media (min-width: 768px) {
  .p-lp-inquiry {
    max-width: 1030px;
    margin: 0 auto;
  }
  .p-lp-inquiry__inner {
    gap: 30px;
    padding: 55px 85px;
  }
  .p-lp-inquiry__title {
    font-size: 1.25rem;
  }
  .p-lp-inquiry__contents {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0 1em;
    font-size: .875rem;
    line-height: 1.7143;
    margin-top: 20px;
  }
  .p-lp-inquiry__note,
  .p-lp-inquiry__supplement {
    width: 100%;
  }
  .p-lp-inquiry__link + .p-lp-inquiry__note {
    margin-top: 0;
  }
}
/*============================================
 Utility
============================================*/
.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  white-space: nowrap;
  padding: 0;
  margin: -1px;
  border: 0;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.u-sp-only {
  display: inline-block;
}
.u-pc-only {
  display: none;
}
@media (min-width: 768px) {
  .u-sp-only {
    display: none;
  }
  .u-pc-only {
    display: inline-block;
  }
}