@charset "UTF-8";
/*ブレイクポイントを設定*/
/* noto-sans-jp-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/noto-sans-jp-v53-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-jp-500 - latin */
@font-face {
  font-display: swap;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/noto-sans-jp-v53-latin-500.woff2") format("woff2");
}
/* noto-sans-jp-700 - latin */
@font-face {
  font-display: swap;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/noto-sans-jp-v53-latin-700.woff2") format("woff2");
}
/* shippori-mincho-b1-500 - latin */
@font-face {
  font-display: swap;
  font-family: "Shippori Mincho B1";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/shippori-mincho-b1-v22-latin-500.woff2") format("woff2");
}
/* PTsans-regular - latin */
@font-face {
  font-display: swap;
  font-family: "PT Sans", sans-serif;
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/pt-sans-v17-latin-regular.woff2") format("woff2");
}
/* PTsans-700 - latin */
@font-face {
  font-display: swap;
  font-family: "PT Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/pt-sans-v17-latin-700.woff2") format("woff2");
}
/* color */
.ifc {
  color: white;
}

.white {
  color: white;
}

.blue {
  color: #083057;
}

.blue2 {
  color: #89d6ff;
}

.red {
  color: #e04925;
}

.red2 {
  color: rgb(98, 12, 6);
}

.green {
  color: #47f27c;
}

.yellow {
  color: #faf8e5;
}

.acc {
  color: #ffc465;
}

.bgwh {
  background: white;
}

.bgblu {
  background: #083057;
}

.bgblu2 {
  background: #ccd2e0;
}

.bgred {
  background: #e04925;
}

.bggre {
  background: #47f27c;
}

.bgyel {
  background: #faf8e5;
}

.bgba {
  background: #faf8e5;
}

/*-----------------------------------------------------------
全体スタイル
-----------------------------------------------------------*/
body {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 2;
  position: relative;
  overflow: hidden;
  color: #0e0606;
  background: white;
  width: 100%;
  font-family: "noto sans JP", sans-serif;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch; /* iOSで慣性復活！ */
}
body.open {
  height: 100vh;
}
@media screen and (max-width: 591px) {
  body {
    font-size: 14px;
  }
}

.btnimg {
  display: block;
  width: min(80%, 480px);
  margin: auto;
  border-radius: 35px;
  box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.16);
  position: relative;
  height: auto;
  font-size: clamp(10px, 2vw, 20px);
}
.btnimg::before {
  content: "";
  display: block;
  position: absolute;
  width: 2em;
  height: 2em;
  background: url(../img/top/icon_btn.webp) no-repeat center center/contain;
  top: 50%;
  right: 2em;
  transform: translateY(-50%);
}
.btnimg::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1.9em;
  background: url(../img/top/btn_deco.webp) no-repeat center center/contain;
  top: -3em;
  left: 50%;
  transform: translateX(-50%);
}
.btnimg img {
  height: auto;
}

.btn {
  position: relative;
  width: min(90%, 280px);
  height: 65px;
  color: white;
  background: #0e0606;
  border: 1px solid white;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  font-family: "Noto Sans JP", serif;
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 700;
  letter-spacing: 0.04em;
  display: grid;
  place-content: center;
  padding: 12px;
  margin: auto;
  transition: 0.2s;
}
.btn:after {
  content: "";
  display: block;
  width: 27px;
  height: 20px;
  background: url(../img/common/btn_arrow.svg) no-repeat center center/contain;
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s;
}
@media screen and (max-width: 1000px) {
  .btn:after {
    display: none;
    /*スタイルを展開したいところに記述する*/
  }
}
.btn:link {
  color: white;
}
.btn:visited {
  color: white;
}
.btn:hover {
  background: #1a1a1a;
  color: #0e0606;
  border: 1px solid #777;
  opacity: 1;
}
.btn:hover:after {
  transform: translate(8px, -50%);
  background: url(../img/common/btn_arrow_w.svg) no-repeat center center/contain;
}
.btn p {
  text-align: center;
}
.btn p.w-ch {
  font-family: "Noto Serif SC", serif;
  font-family: 400;
}
.btn p.w-ko {
  font-family: "Noto Serif KR", serif;
  font-weight: 400;
}
@media screen and (max-width: 591px) {
  .btn {
    height: 45px;
  }
}

.lista {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

p {
  color: #0e0606;
  text-align: left;
}

.f18 {
  font-size: clamp(15px, 1.8vw, 18px);
  text-align: left;
  width: min(95%, 860px);
}

/*リンク表示方法*/
a {
  text-decoration: none;
}

a:link {
  color: #0e0606;
}

a:visited {
  color: #0e0606;
}

a:active {
  color: #0e0606;
}

a:hover {
  opacity: 0.7;
}
a:hover img {
  opacity: 1;
}

:has(> .lista) {
  position: relative;
}

.lista {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}

.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.grid {
  display: grid;
  grid-template-columns: center;
}

.i-text {
  display: inline-block;
}

.bold {
  font-weight: 700;
}

section:has(> .inner.mar) {
  padding: min(10%, 120px) 0;
}

.active1200 {
  display: none;
}
@media screen and (max-width: 1200px) {
  .active1200 {
    display: block;
  }
}

.active1000 {
  display: none;
}
@media screen and (max-width: 1000px) {
  .active1000 {
    display: block;
    /*スタイルを展開したいところに記述する*/
  }
}

.active768 {
  display: none;
}
@media screen and (max-width: 767px) {
  .active768 {
    display: block;
    /*スタイルを展開したいところに記述する*/
  }
}

.active591 {
  display: none;
}
@media screen and (max-width: 591px) {
  .active591 {
    display: block;
  }
}

.active414 {
  display: none;
}
@media screen and (max-width: 414px) {
  .active414 {
    display: block;
  }
}

@media screen and (max-width: 1200px) {
  .vanish1200 {
    display: none;
    /*スタイルを展開したいところに記述する*/
  }
}

@media screen and (max-width: 1000px) {
  .vanish1000 {
    display: none;
    /*スタイルを展開したいところに記述する*/
  }
}

@media screen and (max-width: 767px) {
  .vanish768 {
    display: none;
    /*スタイルを展開したいところに記述する*/
  }
}

@media screen and (max-width: 591px) {
  .vanish591 {
    display: none;
  }
}

@media screen and (max-width: 414px) {
  .vanish414 {
    display: none;
  }
}

/*-----------------------------------------------------------
PCサイズ
-----------------------------------------------------------*/
.pc,
.pc2 {
  display: block;
}
@media screen and (max-width: 1000px) {
  .pc,
  .pc2 {
    display: none;
    /*スタイルを展開したいところに記述する*/
  }
}

.sp,
.sp2,
.spTel {
  display: none;
}
@media screen and (max-width: 1000px) {
  .sp,
  .sp2,
  .spTel {
    display: block;
    /*スタイルを展開したいところに記述する*/
  }
}

.pcTel {
  display: inline;
}

/*-----------------------------------------------------------
フォント
-----------------------------------------------------------*/
h2,
h3,
h4,
h5 {
  display: inline-block;
  line-height: 1.25;
}

.titwrap {
  text-align: center;
  margin: 3em auto;
}
@media screen and (max-width: 591px) {
  .titwrap {
    margin-bottom: 2em;
  }
}

.mainTit {
  font-size: clamp(14px, 1.8vw, 18px);
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-style: normal;
  font-family: "noto sans JP", sans-serif;
}

.mainTit .en {
  font-size: clamp(30px, 6vw, 60px);
  display: block;
  font-family: "DM Serif Text", serif;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}

.noto {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 500;
}

.mincho {
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
  font-style: normal;
  font-weight: 500;
}

.en {
  font-family: "DM Serif Text", serif;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.jp {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 400;
}

/*-----------------------------------------------------------
モーダル
-----------------------------------------------------------*/
#modal {
  display: none;
}

/*-----------------------------------------------------------
ページトップ
-----------------------------------------------------------*/
#pageTop {
  position: fixed;
  bottom: 245px;
  right: 25px;
  z-index: 999;
  background: #1a1a1a;
  width: 60px;
  height: 60px;
  border-radius: 3px;
  transform: rotate(-90deg);
}
#pageTop a {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 591px) {
  #pageTop {
    display: none !important;
  }
}

/*-----------------------------------------------------------
スクロールバー
-----------------------------------------------------------*/
.scroll-pane {
  width: 100% !important;
  height: 300px; /*箱の高さ*/
  margin: 40px auto 0;
  overflow-y: auto;
}
.scroll-pane:focus {
  outline: none;
}

/*-----------------------------------------------------------
 ticket
-----------------------------------------------------------*/
#ticket-area {
  background: #c65e70;
  color: #05202c;
}
#ticket-area .ticketList-wrap {
  width: min(95%, 1080px);
  margin: auto;
}
#ticket-area .ticketList {
  margin: min(8%, 80px) auto 0;
}
#ticket-area .titwrap {
  width: 95%;
  margin: 0 auto min(5%, 50px);
  margin-top: 0;
  color: white;
}
#ticket-area .titwrap .en {
  font-size: clamp(20px, 3.2vw, 32px);
  margin-bottom: 0.5em;
}
#ticket-area .titwrap .mainTit {
  font-size: clamp(30px, 6vw, 60px);
  font-weight: 700;
}
#ticket-area .titwrap .come {
  text-align: center;
  font-weight: 700;
  color: white;
  margin-top: 0.5em;
}
#ticket-area .ticket-item {
  position: relative;
  width: calc(50% - 1em);
  border: 8px;
  text-align: center;
}
#ticket-area .ticket-item p {
  text-align: center;
}
#ticket-area .ticket-item p.priceTit {
  font-size: clamp(23px, 4.2vw, 42px);
  line-height: 1.25;
  font-family: "DM Serif Text", serif;
  font-weight: 400;
}
#ticket-area .ticket-item p.priceTit span {
  font-size: 0.75em;
  margin-left: 4px;
}
#ticket-area p {
  color: #05202c;
}
#ticket-area .child-one {
  margin-top: min(10%, 40px);
}
#ticket-area .btn {
  margin-top: min(8%, 40px);
  height: 80px;
  color: #37291a;
  background: #e9cf95;
  border: 5px solid #ffc465;
  margin: 30px auto 0;
  font-family: "noto sans JP", sans-serif;
}
#ticket-area .btn:link {
  color: #37291a;
}
#ticket-area .btn:visited {
  color: #37291a;
}
#ticket-area .btn:hover {
  background: #ffc465;
  color: #000;
  border: 5px solid #e9cf95;
}
#ticket-area .btn:hover:after {
  background: url(../img/common/btn_arrow.svg) no-repeat center center/contain;
}
#ticket-area .btnimg {
  margin-top: min(8%, 60px);
}
#ticket-area .banner_area {
  margin: auto;
  width: min(80%, 480px);
}
#ticket-area .banner_area a {
  display: block;
}
@media screen and (max-width: 414px) {
  #ticket-area .banner_area {
    width: 88%;
  }
}
#ticket-area .tablewrap {
  width: 100%;
  margin-bottom: 2em;
}
#ticket-area .tablewrap .come {
  margin: 0 0 1em 0;
}
#ticket-area .ticketList {
  display: flex;
  justify-content: space-between;
}
#ticket-area .ticketList li {
  width: calc(50% - 1em);
}
#ticket-area .ticketList li img {
  height: auto;
}
#ticket-area .ticketNote {
  font-weight: 500;
  line-height: 1.6;
}
#ticket-area .ticketNote li {
  margin-top: 0.3em;
  letter-spacing: 0;
  font-size: clamp(11px, 1.3vw, 13px);
}
#ticket-area .ticketRule {
  width: min(95%, 1080px);
  margin: auto;
}
#ticket-area .ticketList_con {
  width: min(92%, 710px);
  margin: min(10%, 25px) auto 0;
}
#ticket-area .ticketList_con img {
  width: 100%;
  height: auto;
}
#ticket-area .ticketList {
  margin: auto;
}
@media screen and (max-width: 414px) {
  #ticket-area .ticketList {
    margin: 5% 2%;
  }
}
#ticket-area .ticketList .anshin_con {
  background: white;
  border: #fee285 8px solid;
  padding: 2%;
  border-radius: 8px;
  margin-top: 1em;
  line-height: 1.6;
}
#ticket-area .ticketList .anshin_con h3 {
  font-size: 1.3em;
  margin-bottom: 0.3em;
  background: linear-gradient(transparent 60%, #fee285 60%);
}
#ticket-area .ticketList .anshin_con ol li {
  position: relative;
  margin-left: 1em;
  font-size: 13px;
}
#ticket-area .ticketList .anshin_con ol li::before {
  content: "・";
  display: block;
  left: -1em;
  width: 1em;
  height: 1em;
  position: absolute;
}
#ticket-area .ticketList .anshin_con ol li p {
  display: inline;
  letter-spacing: 0.04em;
}
#ticket-area .ticketList .anshin_con ol li a {
  color: #e04925;
  text-decoration: underline;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 591px) {
  #ticket-area .btnimg {
    width: 100%;
  }
  #ticket-area .ticketList {
    flex-direction: column;
  }
  #ticket-area .ticketList li {
    width: 100%;
  }
  #ticket-area .ticketList li:not(:first-child) {
    margin-top: 2em;
  }
  #ticket-area .ticketList_con img {
    margin-bottom: 3em;
  }
  #ticket-area .ticketTable {
    margin: 1.5em auto 0.5em;
  }
}

.preticket {
  background: #3b4046;
  position: relative;
}
.preticket:before {
  content: "";
  display: block;
  width: calc(100% - 16px);
  height: calc(100% - 10px);
  border: 8px solid #b33b5d;
  position: absolute;
  top: -2px;
  left: 0;
  z-index: 1;
}
.preticket th {
  position: relative;
}
.preticket th:before {
  content: "一次先行販売価格！";
  display: grid;
  place-content: center;
  line-height: 1;
  font-size: 0.8em;
  width: 11em;
  height: 1.8em;
  color: white;
  background: #b33b5d;
  border-radius: 35px;
  border: 3px solid #b33b5d;
  position: absolute;
  top: -1.25em;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.preticket td {
  font-size: 1.5em !important;
}

.btnanm {
  animation: btn 3.5s ease infinite;
}

@keyframes btn {
  0% {
    transform: translateX(0);
  }
  5% {
    transform: translateX(0);
  }
  10% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-15px);
  }
  25% {
    transform: translateX(0);
  }
  30% {
    transform: translateX(-15px);
  }
  50% {
    transform: translateX(0);
  }
  70% {
    transform: translateX(-15px);
  }
  75% {
    transform: translateX(0);
  }
  80% {
    transform: translateX(-15px);
  }
  100% {
    transform: translateX(0);
  }
}
/*# sourceMappingURL=maps/ticket.css.map */
