@charset "UTF-8";
/*ブレイクポイントを設定*/
/* noto-serif-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 Serif JP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/noto-serif-jp-v31-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-serif-jp-500 - 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 Serif JP";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/noto-serif-jp-v31-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-serif-jp-700 - 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 Serif JP";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/noto-serif-jp-v31-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-serif-jp-800 - 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 Serif JP";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/noto-serif-jp-v31-latin-800.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* color */
.ifc {
  color: #000;
}

.white {
  color: white;
}

.blue {
  color: #15265a;
}

.blue2 {
  color: #89d6ff;
}

.red {
  color: #c92d4e;
}

.green {
  color: #47f27c;
}

.yellow {
  color: #e6ed54;
}

.bgwh {
  background: white;
}

.bgblu {
  background: #15265a;
}

.bgblu2 {
  background: #ccd2e0;
}

.bgred {
  background: #c92d4e;
}

.bggre {
  background: #47f27c;
}

.bgyel {
  background: #e6ed54;
}

.bgba {
  background: #faf8e5;
}

.bgacc {
  background: #c92d4e;
}

/*-----------------------------------------------------------
全体スタイル
-----------------------------------------------------------*/
body {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: min(2.3vw, 23px);
  letter-spacing: 0.05em;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  color: white;
  background: #000;
  width: 100%;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
}
body.open {
  height: 100vh;
}
@media screen and (max-width: 591px) {
  body {
    font-size: 14px;
  }
}

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

p {
  color: white;
  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: white;
}

a:visited {
  color: white;
}

a:active {
  color: white;
}

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;
}

.ver-rl {
  writing-mode: vertical-rl;
}

.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;
}

/*-----------------------------------------------------------
フォント
-----------------------------------------------------------*/
.titwrap {
  height: 120px;
  margin: 3em auto 1em;
}
.titwrap h2 {
  height: 100%;
}
.titwrap h2 img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
@media screen and (max-width: 591px) {
  .titwrap {
    height: 82px;
    margin-bottom: 3em;
  }
}

.imgwrap {
  text-align: center;
  margin: 1em auto;
}
.imgwrap img {
  width: 100%;
  height: auto;
  max-width: 480px;
  display: inline-block;
}

.readwrap {
  margin-bottom: 1.5em;
}

.mainTit {
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
.mainTit img {
  max-height: 10.5vw;
  max-width: 92%;
  height: min(7vw, 60px);
}

.mainTit .en {
  font-size: clamp(30px, 6vw, 60px);
  display: block;
  font-family: "Cinzel", serif;
  font-weight: 300;
  font-style: normal;
  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: "Cinzel", serif;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.06em;
}

.come {
  margin: 8px auto;
  text-align: center;
  width: 100%;
  font-size: clamp(12px, 0.8em, 17px);
}

.attention-p {
  font-size: clamp(17px, 2.1vw, 21px);
}

/*-----------------------------------------------------------
テーブル
-----------------------------------------------------------*/
table {
  border-collapse: separate;
}
@media screen and (max-width: 767px) {
  table {
    width: 100%;
    /*スタイルを展開したいところに記述する*/
  }
  table th,
  table td {
    width: 100% !important;
    display: block;
  }
}

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

/*-----------------------------------------------------------
ページトップ
-----------------------------------------------------------*/
#pageTop {
  position: fixed;
  bottom: 245px;
  right: 25px;
  z-index: 9999;
  background: #1a1a1a;
  width: 60px;
  height: 60px;
  border-radius: 3px;
}
#pageTop a {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  transition: 0.2s;
}
#pageTop a img {
  transform: rotate(-90deg);
}
#pageTop a:hover {
  background: #000;
}
@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;
}

/*-----------------------------------------------------------
画像LP用
-----------------------------------------------------------*/
body {
  background: #15265a;
  position: relative;
}

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

header {
  width: 100%;
  position: fixed;
  height: 68px;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 12;
  transition: 0.2s;
}
header .scactive {
  display: none;
}
header.headerScroll {
  height: 68px;
}
header.headerScroll .scnone {
  display: none;
}
header.headerScroll .scactive {
  display: block;
}
header .header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(100%, 680px);
  height: 100%;
  margin: auto;
  position: relative;
  padding: 5px 15px;
  transition: 0.2s;
}
header .header_inner h1 {
  height: 100%;
}
header .header_inner div {
  max-height: 80px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header .header_inner div .contct_head {
  padding-top: 3px;
  margin-right: 24px;
  width: 48px;
}
header .header_inner a {
  max-height: 80px;
  object-fit: contain;
  height: 100%;
  transition: 0.2s;
}
header .header_inner a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: middle;
}
header .header_inner a.btn {
  max-height: 52px;
  position: relative;
  z-index: 2;
}
header .header_inner a.btn:hover {
  opacity: 1;
  transform: translateX(4px);
}
header .header_inner a.contct_head:hover {
  transform: rotate(5deg);
  opacity: 1;
}
header .header_inner a.hlogo {
  padding: 4px 0 8px 1em;
  height: 100%;
}
header a.hlogo:hover {
  opacity: 1;
}
@media screen and (max-width: 1000px) {
  header {
    top: 0;
    width: 100%;
    position: fixed;
    /*スタイルを展開したいところに記述する*/
  }
  header .hlogo {
    width: 95px;
  }
}
@media screen and (max-width: 767px) {
  header {
    height: 80px;
    /*スタイルを展開したいところに記述する*/
  }
  header.headerScroll {
    height: 72px;
  }
}
@media screen and (max-width: 591px) {
  header {
    height: 60px;
  }
  header.headerScroll {
    height: 55px;
  }
  header .header_inner a.hlogo {
    padding-left: 0;
  }
  header .header_inner a.btn {
    width: 55%;
    height: 100%;
    display: block;
  }
}
@media screen and (max-width: 414px) {
  header .header_inner div .contct_head {
    width: 40px;
    margin-right: 1em;
  }
}

.content_wrap {
  margin: min(12%, 80px) auto min(8vw, 100px);
  padding: 2em 1.5em 1.5em;
}
.content_wrap.attention_rule {
  border: 2px solid #ccc;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content_wrap ul.ruleList li {
  line-height: 1.45;
  margin-bottom: 0.8em;
  font-size: clamp(14px, 1.6vw, 16px);
  color: white;
  text-align: left;
  text-indent: -1em;
  padding-left: 1em;
}
.content_wrap ul.ruleList li dt {
  font-weight: 700;
  margin-bottom: 0.4em;
  color: #abd2d9;
}
.content_wrap ul.ruleList li a {
  color: #c92d4e;
  background: #1a1a1a;
  text-decoration: underline;
  transition: 0.2s;
}
.content_wrap ul.ruleList li a.acctxt {
  background: none;
}
.content_wrap ul.ruleList li a:hover {
  color: #eee;
}
.content_wrap ul.ruleList li:last-child {
  margin-bottom: 0;
}
.content_wrap ul.ruleList li .come {
  color: #c92d4e;
}
@media screen and (max-width: 767px) {
  .content_wrap {
    width: 90%;
    padding: 2em 5% 5%;
    /*スタイルを展開したいところに記述する*/
  }
}

.mainTit {
  text-align: center;
  margin-bottom: 32px;
}

.subtit {
  position: absolute;
  font-size: clamp(20px, 2.8vw, 28px);
  top: -0.5em;
  height: 1em;
  color: white;
  background: #000;
  padding: 0 12px;
  display: flex;
}
.subtit img {
  max-height: 38px;
}
@media screen and (max-width: 767px) {
  .subtit img {
    max-height: max(26px, 1.2em);
    /*スタイルを展開したいところに記述する*/
  }
}
@media screen and (max-width: 414px) {
  .subtit img {
    height: min(5.5vw, 32px);
  }
}

.top-con {
  padding-top: min(10%, 100px);
}

.base-con {
  padding: min(10%, 100px) 0;
}

main {
  width: auto;
}

.first_view {
  position: relative;
  height: 100vh;
  width: min(100%, 680px);
  margin: auto;
  text-align: center;
}
.first_view .fv_wrap {
  height: 100vh;
  width: 100%;
  position: relative;
}
.first_view .fv_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.first_view .fv_wrap img.lightone {
  object-position: 50% 39%;
}
.first_view .toptitwrap {
  width: 100%;
  height: auto;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  bottom: 1.5em;
  left: 50%;
  transform: translateX(-50%);
}
.first_view h1 {
  width: min(100%, 580px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: auto;
  margin-bottom: 1em;
}
.first_view h1.darkone {
  margin-bottom: 0;
}
.first_view h1 img {
  width: 100%;
  height: 23vh !important;
  object-fit: contain !important;
  object-position: bottom !important;
}
@media screen and (max-width: 767px) {
  .first_view {
    height: auto;
    /*スタイルを展開したいところに記述する*/
  }
  .first_view .fv_wrap {
    height: auto;
  }
  .first_view .fv_wrap img {
    object-fit: initial;
    width: 100%;
    height: auto;
  }
  .first_view h1 {
    width: 86.5%;
  }
  .first_view h1.lightone {
    bottom: clamp(60px, 9%, 260px);
  }
}
@media screen and (max-height: 880px) and (min-width: 592px) {
  .first_view {
    height: 100vh !important;
  }
  .first_view .fv_wrap {
    height: 100vh;
  }
  .first_view .fv_wrap img {
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
  }
  .first_view .fv_wrap .toptitwrap h1 {
    max-width: 430px;
  }
  .first_view .fv_wrap .toptitwrap .fv_btn_next {
    max-width: 400px;
  }
}
.first_view .badge {
  width: min(29.1%, 285px);
  position: absolute;
  bottom: -5%;
  right: 20px;
  z-index: 5;
}
.first_view .fv_btn_next {
  position: relative;
  width: min(80%, 480px);
}
.first_view .fv_btn_next a {
  display: block;
}
.first_view .fv_btn_next a img {
  width: 100%;
  height: auto;
}

.ifarea {
  width: 100%;
}
.ifarea h1 {
  bottom: 2.5%;
}
.ifarea h1 img {
  width: 100%;
  height: auto;
}
@media screen and (max-height: 685px) {
  .ifarea h1 {
    margin: auto;
  }
}

.banner_area {
  background: #c92d4e;
  width: min(95%, 860px);
  margin: 3em auto 0;
}
.banner_area img {
  border-radius: 12px;
}

#ticket {
  background: #c92d4e;
}
#ticket table {
  width: 74.36%;
  background: #15265a;
  margin: min(8%, 60px) auto 0.6em;
  border: 2px solid #c92d4e;
  font-size: clamp(23px, 3.5vw, 35px);
}
#ticket table tr {
  display: flex;
  justify-content: space-between;
}
#ticket table tr th {
  width: 100%;
  height: 60px;
  font-weight: 700;
  background: white;
  color: #15265a;
}
#ticket table tr td {
  width: 100%;
  height: 60px;
  font-weight: 700;
  color: white;
  display: flex;
  flex-direction: column;
}
#ticket table tr td span {
  width: auto;
  margin-left: 0.4em;
}
@media screen and (max-width: 591px) {
  #ticket table tr {
    font-size: 1em;
  }
}
#ticket table tr th,
#ticket table tr td {
  width: 50%;
  text-align: center;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
#ticket table tr th div,
#ticket table tr td div {
  width: 100%;
  padding: 0.3em;
  text-align: center;
  line-height: 1.25;
  text-align: center;
}
#ticket table tr th div.bgacc,
#ticket table tr td div.bgacc {
  font-size: 0.55em;
  padding: 0.5em;
}
#ticket table tr th span,
#ticket table tr td span {
  font-size: 0.5em;
  display: block;
  margin: 0.3em auto 0;
  width: 100%;
}
@media screen and (max-width: 591px) {
  #ticket table {
    width: 85%;
  }
  #ticket table tr {
    display: flex;
    flex-direction: column;
  }
  #ticket table th {
    height: 62px;
  }
  #ticket table td {
    height: 80px;
    font-size: 23px;
  }
}

.p-area {
  width: min(80%, 710px);
  margin: auto;
}
.p-area p {
  text-align: center;
  color: #000;
  font-weight: 700;
}

.btn_area {
  margin-top: 6em;
}
.btn_area .come {
  width: 95%;
  margin: auto;
  text-align: center;
  font-size: clamp(10px, 1.6vw, 20px);
  line-height: 1.25;
}
.btn_area .attention-p {
  width: 95%;
  margin: auto;
  text-align: center;
  font-size: clamp(17px, 2.1vw, 21px);
  line-height: 1.25;
}
.btn_area .attention-p a {
  color: #c92d4e;
}
.btn_area .btn_att {
  color: white;
  width: 76%;
  margin: 2.5em auto 0;
}
@media screen and (max-width: 414px) {
  .btn_area .come {
    margin-top: 0.5em;
  }
}

.banner_area {
  width: min(90%, 580px);
  margin: 3em auto 0;
  border-radius: 12px;
}
.banner_area p {
  margin: 0 0 0.5rem 0;
  color: white;
  text-align: center;
}
.banner_area a {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.2s;
  border-radius: 12px;
  /* 斜めに流れる光（疑似要素） */
  /* 光が流れるアニメーション */
}
.banner_area a::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -60%;
  width: 30%;
  height: 120%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg) translateX(0);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}
.banner_area a.shine-active::before, .banner_area a:hover::before {
  animation: bannerShine 0.9s ease forwards;
}
.banner_area a:hover {
  opacity: 1;
  transform: scale(1.01) translateY(-4px);
  filter: brightness(1.06) saturate(1.03);
}
.banner_area a:hover img {
  opacity: 1;
}
@keyframes bannerShine {
  0% {
    left: -60%;
    opacity: 0;
    transform: skewX(-25deg) translateX(0);
  }
  10% {
    opacity: 0.9;
  }
  100% {
    left: 140%;
    opacity: 0;
    transform: skewX(-25deg) translateX(0);
  }
}
.banner_area a img {
  border-radius: 12px;
  transition: 0.2s;
  display: block;
}

.btn_con {
  width: 78%;
  display: block;
  margin: auto;
  transition: 0.2s;
  animation: btn 3.5s ease infinite;
  position: relative;
  z-index: 2;
  top: 0;
  left: 0;
}
.btn_con:hover {
  opacity: 1;
  transform: scale(1.1);
}
.btn_con::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2.8em;
  top: -3em;
  background: url(../img/btn_before.webp) no-repeat center center/contain;
}
.btn_con::after {
  content: "";
  display: block;
  width: 1.6em;
  height: 1.6em;
  background: url(../img/how_icon_arrow.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%) rotate(-90deg);
}

.link_area {
  position: relative;
  display: flex;
  justify-content: center;
}
.link_area .btn_area {
  position: absolute;
  bottom: 10%;
}
@media screen and (max-width: 414px) {
  .link_area .btn_area {
    bottom: 12%;
  }
}

@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);
  }
}
/*-----------------------------------------------------------
 #main
-----------------------------------------------------------*/
#main {
  width: 100%;
  margin: 0 auto;
  position: relative;
  top: min(-10.7vw, -100px);
}

.inner {
  width: 95%;
  max-width: 680px;
  margin: 0 auto;
}
.inner.lightone {
  width: 100%;
}

.inner12 {
  width: 95%;
  max-width: 1200px;
  margin: auto;
}

.p-img {
  text-align: center;
  width: 100%;
}

p {
  color: white;
}

#news {
  color: #000;
  padding: min(5%, 50px) 0;
  border-radius: 30px 30px 0 0;
  width: 100%;
}
#news .inner {
  width: min(90%, 1536px);
  margin: auto;
}
#news .left {
  width: 30%;
  padding: 0 30px 0 min(12vw, 120px);
}
#news .left h2.mainTit {
  text-align: left;
  margin: 0 auto 0 0;
}
#news .left h2.mainTit .en {
  font-size: clamp(23px, 6vw, 60px);
}
#news .newsList {
  width: min(70%, 1080px);
}
#news .newsList li {
  border-bottom: 1px solid #ccc;
  margin: 0;
  line-height: 1.45;
}
#news .newsList li dl {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 3% 0;
}
#news .newsList li dl dt {
  margin: 0 20px 0 0;
  display: flex;
  font-family: "Cinzel", serif;
}
#news .newsList li dl dt .date {
  width: min(100%, 100px);
}
#news .newsList li dl dt .cate {
  width: 100%;
  margin-left: 1em;
}
#news .newsList li dl dd {
  width: 100%;
  padding-top: 8px;
}
#news .newsList li dl dd a {
  color: #000;
  cursor: pointer;
}
#news .newsList li:last-child {
  border-bottom: none;
}
@media screen and (max-width: 1200px) {
  #news {
    /*スタイルを展開したいところに記述する*/
  }
  #news .left {
    padding-left: 0;
  }
}
@media screen and (max-width: 591px) {
  #news .flex {
    flex-direction: column;
  }
  #news .flex .left {
    width: 100%;
    padding: 0;
  }
  #news .flex .left h2.mainTit {
    padding-top: 3%;
    display: flex;
    align-items: center;
    font-size: 13px;
  }
  #news .flex .left h2.mainTit .en {
    margin: 0 0.5em 0 0;
    line-height: 1;
  }
  #news .flex ul.newsList {
    margin: 12px auto 0;
    width: 100%;
  }
  #news .flex ul.newsList li {
    width: 100%;
  }
  #news .flex ul.newsList li dt {
    line-height: 1;
  }
  #news .flex ul.newsList li dd {
    font-size: 13px;
  }
}

.scrollzone {
  overflow-y: scroll;
  background: #333;
  border-radius: 12px;
  margin: 25px auto 0;
  width: calc(100% - 10px);
  padding: 30px 5%;
  height: 180px;
}
.scrollzone::-webkit-scrollbar {
  width: 10px;
  background-color: #333;
}
.scrollzone::-webkit-scrollbar-track {
  background: #666;
}
.scrollzone::-webkit-scrollbar-thumb {
  background-color: #aaa;
  border-radius: 3px;
}
.scrollzone h4 {
  font-size: 30px;
  font-size: clamp(15px, 2.3vw, 23px);
  font-weight: 700;
  text-align: center;
  padding-bottom: 12px;
}
.scrollzone .termList {
  width: 100%;
}
.scrollzone .termList li {
  margin-bottom: 1.5em;
  line-height: 1.6;
}
.scrollzone .termList li dt {
  font-weight: 700;
  margin-bottom: 8px;
}
.scrollzone .termList li dd {
  font-weight: 400;
}
@media screen and (max-width: 414px) {
  .scrollzone {
    height: 140px;
    padding: 1em 5%;
  }
  .scrollzone .termList {
    font-size: 13px;
  }
}

.attention_rule {
  width: min(100%, 860px);
  margin: 3.5em auto 0;
}

.topwrap {
  background: #000;
}
.topwrap .--if {
  height: auto;
}

.lead_area {
  padding: 1% 0;
}
@media screen and (max-width: 591px) {
  .lead_area {
    padding: 6% 0;
  }
}

.about p {
  text-align: center;
  line-height: 2.2;
  font-size: clamp(18px, 2.8vw, 28px);
}
.about .footimg {
  margin-top: 1.5em;
  background: url(../img/about_bg02.webp) no-repeat center bottom/contain;
  padding: 20px 5% 5%;
}

/*-----------------------------------------------------------
 footer
-----------------------------------------------------------*/
footer {
  padding: min(6%, 60px) 3%;
  font-weight: 400;
  font-size: 13px;
  background: #c92d4e;
  margin: auto;
  font-family: "Noto sans JP", sans-serif;
}
footer .f-inner {
  width: min(100%, 980px);
  margin: auto;
}
footer .flex {
  justify-content: center;
}
footer .flex .f-head {
  margin-right: 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .flex .f-head .f-logo {
  width: 165px;
  margin: auto;
}
footer .flex .f-head .f-logo img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  footer .flex .f-head {
    margin-right: 0;
    /*スタイルを展開したいところに記述する*/
  }
  footer .flex .f-head .f-logo {
    width: 125px;
  }
}
footer .flex .f-body {
  width: 65%;
  display: flex;
  justify-content: flex-end;
}
footer .flex .f-body .f-txt {
  width: calc(100% - (160px + 5%));
  margin-right: 5%;
  color: white;
}
footer .flex .f-body .f-info {
  display: flex;
  align-items: center;
}
footer .flex .f-body .f-info .add {
  width: 23em;
}
@media screen and (max-width: 591px) {
  footer .flex .f-body .f-info .add {
    width: 100%;
  }
}
footer .flex a.compbtn {
  display: block;
  width: 160px;
  margin: 12px 0 0;
  border-radius: 35px;
  padding: 6px 15px;
  background: #000;
  border: 1px solid #ccc;
}
footer .flex a.compbtn:hover {
  background: #1a1a1a;
}
footer .flex a.compbtn p {
  text-align: center;
  font-size: 0.8em;
  color: white;
}
@media screen and (max-width: 767px) {
  footer {
    /*スタイルを展開したいところに記述する*/
  }
  footer .flex {
    flex-direction: column;
  }
  footer .flex .f-body {
    width: 100%;
    flex-direction: column;
  }
  footer .flex .f-body .f-txt {
    margin-right: 0;
    width: 100%;
  }
  footer .flex a.compbtn {
    margin: 12px auto;
  }
}
@media screen and (max-width: 414px) {
  footer .flex .f-body .f-txt,
  footer .flex .f-body .f-info .add {
    line-height: 1.6;
    margin-top: 12px;
  }
}
footer a.btn {
  margin-top: min(5%, 30px);
  background: #15265a;
}
footer .copyflex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ccc;
  margin: 35px auto 0;
  padding: 35px 0 0;
}
footer .copyflex .copyflex-inner {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
footer .copyflex .copyflex-inner a.copypp {
  display: block;
  text-align: right;
  color: rgb(216, 173, 180);
}
footer .copyflex .copyflex-inner a.copypp.asct {
  margin-right: 1.5em;
}
footer .copyflex p.copyright {
  width: 21em;
  text-align: left;
  color: rgb(216, 173, 180);
  font-size: 13px;
  line-height: 1;
  margin-right: 2em;
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  footer .copyflex {
    flex-direction: row;
    padding: 6% 0 0;
    /*スタイルを展開したいところに記述する*/
  }
  footer .copyflex p.copyright {
    width: 35%;
    font-size: 12px;
    padding-left: 0;
  }
  footer .copyflex a.copypp {
    text-align: left;
    font-size: 12px;
  }
}
@media screen and (max-width: 591px) {
  footer .copyflex {
    flex-direction: column;
  }
  footer .copyflex p.copyright {
    width: auto;
    margin: auto;
  }
  footer .copyflex .copyflex-inner {
    margin-top: 1em;
    justify-content: center;
  }
}
@media screen and (max-width: 414px) {
  footer .copyflex {
    flex-direction: column;
  }
  footer .copyflex p.copyright {
    text-align: center;
  }
  footer .copyflex a.copypp {
    text-align: center;
    margin-top: 12px;
  }
}
footer .snsList {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-top: min(6%, 60px);
}
footer .snsList li {
  padding: 20px;
}
@media screen and (max-width: 591px) {
  footer .snsList li {
    padding: 1em;
  }
}
footer .snsList li a {
  width: 25px;
  height: 25px;
  display: grid;
  place-content: center;
}

.lp_con {
  padding: min(8%, 80px) 0;
  background: #000;
  position: relative;
}

a.area {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.obi_con {
  background: #000;
  padding: 1em;
}
.obi_con p {
  margin: 0.3em auto;
  text-align: center;
}
.obi_con .btn_area {
  width: min(95%, 635px);
  margin: 1em auto 3em;
}
.obi_con .btn_area p {
  width: 90%;
  margin-top: 1em;
  font-size: 0.8em;
}

.howtoplay {
  margin: min(18%, 160px) auto 0;
}
.howtoplay h2.howTit {
  text-align: center;
  margin-bottom: 2em;
}
.howtoplay h2.howTit img {
  height: min(6vw, 42px);
}
.howtoplay .decowrap {
  position: relative;
}
.howtoplay .decowrap .titdeco-01,
.howtoplay .decowrap .titdeco-02 {
  transform: scale(0.5);
  position: absolute;
}
.howtoplay .decowrap .titdeco-01 {
  top: -70px;
}
.howtoplay .decowrap .titdeco-02 {
  bottom: -58px;
  right: -15px;
}
.howtoplay .link_area .btn_area {
  padding-left: 5%;
  padding-right: 5%;
  margin-top: min(8%, 80px);
}
.howtoplay .link_area .btn_area.acc {
  width: 100%;
  bottom: 17%;
}
.howtoplay .link_area .btn_area.acc .accLink {
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s;
}
.howtoplay .link_area .btn_area.acc .accLink img {
  transition: 0.2s;
}
.howtoplay .link_area .btn_area.acc img {
  max-height: 32px;
}
@media screen and (max-width: 1000px) {
  .howtoplay .link_area .btn_area.acc {
    display: none;
    /*スタイルを展開したいところに記述する*/
  }
}
.howtoplay .link_area.gomap:hover .accLink img {
  opacity: 0.8;
  transform: scale(1.1);
}
.howtoplay .attention_rule {
  width: 100%;
}

.howtoList {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 3% 3%;
}
.howtoList li {
  width: 29.3333333333%;
  margin: 0 2%;
}

.howitemList li {
  position: relative;
  margin-bottom: 1em;
  padding: 0 3%;
}
.howitemList li::after {
  content: "";
  width: 27.6%;
  height: 186px;
  display: block;
  background: url(../img/how_num01.webp) no-repeat center center/contain;
  position: absolute;
  top: 10px;
  left: -26px;
}
@media screen and (max-width: 767px) {
  .howitemList li::after {
    height: 27.6vw;
    /*スタイルを展開したいところに記述する*/
  }
}
@media screen and (max-width: 591px) {
  .howitemList li::after {
    left: -15px;
  }
}
.howitemList li:nth-child(2)::after {
  background: url(../img/how_num02.webp) no-repeat center center/contain;
}
.howitemList li:nth-child(3)::after {
  background: url(../img/how_num03.webp) no-repeat center center/contain;
}
.howitemList li:nth-child(4)::after {
  background: url(../img/how_num04.webp) no-repeat center center/contain;
}
.howitemList li:last-child {
  margin-top: 3em;
}
.howitemList li:last-child:after, .howitemList li:last-child:before {
  content: none;
}
.howitemList li + li::before {
  content: "";
  width: 100%;
  height: 1.5em;
  display: block;
  background: url(../img/how_icon_arrow.svg) no-repeat center center/contain;
  margin-bottom: 1em;
}
.howitemList li:first-child {
  padding-top: 2.5em;
}

/* カフェの楽しみ方
-------------------------------------*/
.attention_rule {
  position: relative;
  z-index: 1;
}

.btn_area {
  margin-bottom: 3em;
}

/* TOP
----------------------------------------------------------- */
.jspContainer {
  width: 100% !important;
  overflow: hidden;
  position: relative;
}

.jspPane {
  width: 100% !important;
  position: absolute;
}

.jspVerticalBar {
  width: 20px;
  position: absolute;
  top: 0;
  right: -5px;
}

.jspArrowdp,
.jspArrowDown {
  margin: 0;
  padding: 0;
  display: block;
  cursor: pointer;
  /* background: url(../img/scroll_top.png) no-repeat center; */
}

.jspArrowDown {
  background: url(../img/scroll_bottom.png) no-repeat center;
}

.jspTrack {
  /* background: url(./../img/scroll_bg1.png) repeat-y; */
  position: relative;
  background-position: center;
}

.jspDrag {
  width: 4px;
  margin: 0 auto;
  background: #6b6b6b;
  position: relative;
  cursor: pointer;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
}

.jspArrow.jspDisabled {
  cursor: default;
}

.jspVerticalBar .jspArrow {
  height: 20px;
}

.jspVerticalBar .jspArrow:focus {
  outline: none;
}

.ruleList p.come {
  font-size: clamp(13px, 1.6vw, 16px);
  margin-top: 0;
  margin-bottom: 2em;
  text-align: center;
}

#ticket {
  background: #000;
  text-align: center;
}
#ticket .inner {
  max-width: 680px;
}
#ticket .attention_rule {
  border: 2px solid white;
}
#ticket .attention_rule ul li {
  color: white;
  font-weight: 700;
}
#ticket .content_wrap {
  margin-bottom: 0;
}
@media screen and (max-width: 414px) {
  #ticket .btn_con {
    width: 95%;
  }
}

.ticketrule_area {
  margin: 0 auto 0.5em;
  border-radius: 3px;
}
.ticketrule_area a {
  display: grid;
  place-content: center;
  text-decoration: none !important;
  padding: 12px;
}
.ticketrule_area a p {
  font-size: clamp(16px, 2vw, 20px);
  color: white !important;
  position: relative;
  letter-spacing: 0.4;
}
.ticketrule_area a p::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: url(../img/common/icon_link_w.svg) no-repeat center center/contain;
  position: absolute;
  top: 55%;
  right: -1.2em;
  transform: translateY(-50%);
}

#faq {
  padding: 1px 0 min(8%, 80px);
  background: #c92d4e;
}
#faq .titwrap {
  margin-bottom: 2em;
}

/*アコーディオン*/
.accordion-area {
  list-style: none;
  width: min(85%, 960px);
  margin: min(6%, 60px) auto 0;
  color: white;
}
.accordion-area li.accarea-item {
  margin-bottom: 35px;
  border: 2px solid white;
  /*アコーディオンタイトル*/
}
@media screen and (max-width: 767px) {
  .accordion-area li.accarea-item {
    margin-bottom: 12px;
    /*スタイルを展開したいところに記述する*/
  }
}
.accordion-area li.accarea-item .acctitle {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  padding: 0.7em 42px 12px 3%;
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: clamp(16px, 2.3vw, 23px);
}
@media screen and (max-width: 414px) {
  .accordion-area li.accarea-item .acctitle {
    padding: 12px 42px 12px 6%;
  }
}
.accordion-area li.accarea-item .acctitle p {
  color: white;
  position: relative;
  font-weight: 600;
  padding-left: 2em;
  line-height: 1.45;
}
.accordion-area li.accarea-item .acctitle p::before {
  content: "Q.";
  display: block;
  width: 1.5em;
  height: 1.5em;
  margin-right: 0.6em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.accordion-area li.accarea-item .acctitle:before {
  /*アイコンの＋と×*/
  content: "";
  position: absolute;
  display: block;
  background: white;
  width: 1.5em;
  height: 3px;
  border-radius: 3px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  right: 20px;
  transition: 0.2s;
}
.accordion-area li.accarea-item .acctitle.close::before {
  transform: translateY(-50%) rotate(180deg);
  opacity: 0;
}
.accordion-area li.accarea-item .acctitle:after {
  /*アイコンの＋と×*/
  content: "";
  position: absolute;
  display: block;
  background: white;
  width: 1.5em;
  height: 3px;
  border-radius: 3px;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  transition: 0.2s;
}
.accordion-area li.accarea-item .acctitle.close::after {
  /*　closeというクラスがついたら形状変化　*/
  transform: translateY(-50%) rotate(180deg);
}
.accordion-area li.accarea-item .accbox {
  /*アコーディオンで現れるエリア*/
  display: none;
  padding: 0.8em 1.5em 2%;
  background: white;
}
.accordion-area li.accarea-item .accbox li {
  font-size: clamp(16px, 2.3vw, 23px);
}
.accordion-area li.accarea-item .accbox p {
  position: relative;
  color: #000;
  padding-left: 1.7em;
  line-height: 1.45;
}
.accordion-area li.accarea-item .accbox p::before {
  content: "A.";
  display: block;
  width: 1.2em;
  height: 1.2em;
  margin-right: 0.6em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 591px) {
  .accordion-area {
    width: 90%;
  }
  .accordion-area li.accarea-item {
    margin-bottom: 12px;
  }
}

#access {
  background: #c92d4e;
}
#access .base-con {
  padding: min(10%, 100px) 0 1em;
}
#access .titwrap {
  margin-top: 0 !important;
}
#access .content_wrap {
  padding: 0;
  margin: 40px auto 0;
  width: min(82.36%, 960px);
}
#access .content_wrap .acctit {
  height: 38px;
  margin-bottom: 1.5em;
}
#access .flex {
  align-items: flex-end;
}
#access .flex .txt {
  width: 37.3%;
  color: white;
}
#access .flex .txt dl {
  display: none;
}
#access .flex iframe {
  width: 56.3%;
  height: 450px;
}
@media screen and (max-width: 1000px) {
  #access .flex iframe {
    height: 300px;
    /*スタイルを展開したいところに記述する*/
  }
}
@media screen and (max-width: 591px) {
  #access .flex {
    flex-direction: column;
    width: 95%;
  }
  #access .flex .txt {
    width: 95%;
    color: white;
  }
  #access .flex .txt img {
    display: none;
  }
  #access .flex .txt dl {
    display: block;
    margin-bottom: 1em;
  }
  #access .flex iframe {
    width: 100%;
    height: 180px;
  }
}

/*-- 固定ここまで --*/
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (max-width: 1000px) {
  /* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
  /* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
  header h1 {
    font-size: 80%;
  }
  .logo {
    width: 28%;
  }
  .headerAdd {
    width: 45%;
    margin: 0 0 0 1%;
    font-size: 90%;
  }
  .headerTel {
    height: auto;
    margin: 0 0 0 0%;
  }
  .copyright small {
    width: 96%;
  }
  .pankuzu {
    width: 98%;
  }
  /*--- modal ---*/
  .menu-trigger,
  .menu-trigger span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
  }
  .menu-trigger {
    position: relative;
    width: 30px;
    height: 15px;
    z-index: 9999;
  }
  .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ccc;
    border-radius: 4px;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  .menu-trigger span:nth-of-type(2) {
    top: 12px;
  }
  .menu-trigger.active span:nth-last-of-type(1) {
    transform: translateY(-6px) rotate(-32deg);
    background: white;
  }
  .menu-trigger.active span:nth-last-of-type(2) {
    transform: translateY(6px) rotate(32deg);
    background: white;
  }
  /*gnav*/
  .gnav {
    background: #1a1a1a;
    display: none;
    height: 100vh;
    width: 60vw;
    position: fixed;
    z-index: 999;
    transition: 1s;
    right: 0;
    top: 0;
  }
  .gnav.active {
    display: block;
  }
  .gnav .gnav__wrap {
    align-items: center;
    display: flex;
    height: 100vh;
    width: 60vw;
    justify-content: center;
    position: fixed;
    top: 0px;
    overflow-y: scroll;
  }
  .gnav .gnav__wrap .gnav__menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 60px 0 60px;
  }
  .gnav .gnav__wrap .gnav__menu .gnav__menu__item {
    margin: 30px auto 0;
    width: 95%;
  }
  .gnav .gnav__wrap .gnav__menu .gnav__menu__item:last-child {
    padding-bottom: min(8%, 60px);
  }
  .gnav .gnav__wrap .gnav__menu .gnav__menu__item a {
    color: white;
    font-size: 15px;
    font-weight: 700;
    padding: 0;
    text-decoration: none;
    transition: 0.2s;
    background: none;
    text-align: center;
    width: 100%;
    text-align: center;
    padding: 0 0 15px 0;
  }
  .gnav .gnav__wrap .gnav__menu .gnav__menu__item a.btn03 {
    padding: 0 5%;
    font-size: 2rem;
  }
  .gnav .gnav__wrap .gnav__menu .gnav__menu__item a:hover {
    color: #aaa;
  }
  /* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
} /* max-width: 1000px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (max-width: 768px) {
  /* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
  /* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
  nav li a {
    font-size: 1.5rem;
  }
  a[href*="tel:"] {
    pointer-events: initial;
    cursor: pointer;
    text-decoration: none;
  }
  /* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
} /* max-width: 768px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (max-width: 591px) {
  /* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
  /* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
  .pc2,
  .pcTel {
    display: none;
  }
  .sp2 {
    display: block;
  }
  .spTel {
    display: inline;
  }
}
/*# sourceMappingURL=maps/style.css.map */
