* {
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
}

html {
  font-size: 62.5%;
}

@media screen and (max-width: 768px) {
  html {
    font-size: 58%;
  }
}

body {
  font-size: 1.6em;
  font-family: "Shippori Mincho B1", serif;
  letter-spacing: 0.1rem;
  background-color: #1b466a;
}

#loding {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #000;
  text-align: center;
  color: #fff;
}

/* Loading画像中央配置　*/
#loding_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#loding_logo img {
  width: 260px;
  animation: blur-anim 10s linear forwards;
  animation-delay: 1s;
}

@keyframes blur-anim {
  100% {
    filter: blur(50px);
  }
}

.sp_view {
  display: none;
}

.pc_view {
  display: block;
}

@media screen and (max-width: 768px) {
  .sp_view {
    display: block;
  }

  .pc_view {
    display: none;
  }
}

.header_wrapper,
.fix_wrapper,
.cta_btn_ct {
  display: none; /* 初期状態で非表示 */
}

.ct_wrapper {
  width: 100%;
  position: absolute;
  z-index: 1;
}

.damy_img {
  width: 100%;
  height: 100vh;
  opacity: 0;
}

/* .header_wrapper {
  display: none;
}

@media screen and (max-width: 768px) {
  .header_wrapper {
    opacity: 0;
  }
} */

.common_h {
  text-align: center;
  margin-bottom: 5rem;
}

.common_h img {
  width: auto;
  height: 77px;
}

@media screen and (max-width: 768px) {
  .common_h {
    margin-bottom: 1.2rem;
  }
  .common_h img {
    width: auto;
    height: 55px;
  }
}

.header_wrapper.show {
  display: block; /* Display the header wrapper when it has the 'show' class */
}

.header {
  position: fixed;
  z-index: 99;
  width: 100%;
  mix-blend-mode: overlay;
  background-color: #010f1e;
  height: 56px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header_list {
  list-style: none;
  display: flex;
}

.link_item {
  margin-right: 2rem;
}

.list_link {
  text-decoration: none;
  color: #fff;
}

.header_ct {
  display: flex;
  justify-content: space-between;
  padding: 1rem 10rem;
  align-items: center;
  z-index: 100; /* アイコンよりも低いz-indexに設定 */
  position: fixed;
  width: 100%;
}

.header_box {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
}

.x_icon {
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .header_box {
    display: flex;
    justify-content: center;
    width: 100%;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    text-align: center;
  }
}

/* ハンバーガーメニューアイコンのスタイル */
.hamburger_icon {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 22.5px;
  cursor: pointer;
  position: relative;
  z-index: 120; /* メニューよりも高く設定 */
  transition: all 0.3s ease;
}

.hamburger_icon span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #1b466a;
  transition: all 0.3s ease;
}

.hamburger_icon.active span:nth-child(1) {
  transform: rotate(45deg) translate(7.5px, 7.5px);
}

.hamburger_icon.active span:nth-child(2) {
  opacity: 0;
}

.hamburger_icon.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media screen and (max-width: 768px) {
  .header {
    height: auto;
    mix-blend-mode: unset;
  }

  .header_ct {
    display: none; /* 初期状態では非表示 */
    height: 100vh;
    align-items: flex-end;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 3em;
    background-color: #010f1e90;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 99;
  }

  .header_list {
    flex-direction: column;
    align-items: center;
  }

  .link_item {
    margin-right: 0;
    margin-bottom: 4rem;
  }

  .hamburger_icon {
    display: flex; /* モバイルで表示 */
    position: fixed; /* スクロールしても表示されるよう固定 */
    top: 1rem;
    right: 1rem;
    background-color: #fff;
    border-radius: 100px;
    width: 50px;
    height: 50px;
    padding: 1.2rem;
    box-shadow: 0px 0px 10px #1b466a;
  }

  /* メニューを表示するためのクラス */
  .header_ct.show {
    display: flex; /* メニューをフェードインで表示 */
    animation: fadeIn 0.5s;
  }
}

/* フェードインアニメーション */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.header_logo {
  display: flex;
}

.header_btn_ct {
  display: flex;
  align-items: center;
}

.header_brn {
  margin-right: 2rem;
}

.header_logo_box {
  height: 40px;
  margin-right: 3.2rem;
}

.header_logo_box img {
  width: auto;
  height: 40px;
}

.fix_wrapper {
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .fix_wrapper {
    opacity: 1;
  }
}

.btn_fix {
  position: fixed;
  z-index: 99;
  mix-blend-mode: overlay;
  background-color: #010f1e;
  border: solid 2px #fff;
  width: 120px;
  height: 120px;
  bottom: -6%;
  right: -5%;
  border-radius: 100px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.fixed_red_btn {
  position: fixed;
  z-index: 100;
  width: 60px;
  height: 100px;
  bottom: -7%;
  right: 4%;
}

.btn_white {
  display: block;
  max-width: 255px;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s;
}

.btn_white:hover {
  background-color: #000;
}

.btn_white img {
  width: 100%;
}

.guide_interview {
  margin-bottom: 4rem;
}

#fv {
  background-color: #1b466a;
  background-size: cover;
  background-position: bottom center;
  position: fixed;
  z-index: 0;
}

@media screen and (max-width: 768px) {
  #fv {
    height: 100vh;
  }
}

.fv_img {
  background-image: url(../img/part2fv_bg_pc.webp);
  background-size: cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fv_img img {
  padding: 1.5%;
}

@media screen and (max-width: 768px) {
  .fv_img {
    height: 90vh;
    background-position: bottom center;
  }

  .fv_img img {
    padding: 0;
  }
}

.fv_slide {
  width: 100%;
}

.main_title {
  position: absolute;
  width: 28%;
  top: 82%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  .main_title {
    width: 60%;
    top: 86%;
  }
}

.banner_img {
  width: 25%;
  max-width: 360px;
  position: absolute;
  top: 100%;
  right: 2%;
  transform: translate(0, -50%);
  z-index: 2;
}

.banner_img02 {
  width: 25%;
  max-width: 360px;
  position: absolute;
  top: 82%;
  right: 2%;
  transform: translate(0, -50%);
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .banner_img02 {
    width: 100%;
    max-width: 360px;
    margin: auto;
    margin-bottom: 2rem;
    padding: 0 2rem;
    right: auto;
    position: relative;
    transform: translate(0, 0);
  }

  .banner_img {
    width: 100%;
    max-width: 360px;
    margin: auto;
    margin-bottom: 3rem;
    padding: 0 2rem;
    right: auto;
    position: relative;
    transform: translate(0, 0);
  }
}

#about_sec {
  background-color: #010f1e;
  background: linear-gradient(#1b466a, #010f1e);
  background-size: cover;
  padding: 7.5rem 0;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  #about_sec {
    padding-top: 10rem;
  }
}

.h_what {
  max-width: 196px;
  margin: auto;
  margin-bottom: 5rem;
}

.p_what {
  color: #fff;
  text-align: center;
  line-height: 2.2em;
  letter-spacing: 0.15em;
  padding-bottom: 8rem;
}

@media screen and (max-width: 768px) {
  .p_what {
    padding-bottom: 4rem;
  }
}

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

.what_ct {
  display: flex;
  width: 80%;
  max-width: 900px;
  margin: auto;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .what_ct {
    width: 100%;
    padding: 2rem;
  }
}

.what_box {
  width: 48%;
  position: relative;
}

.guide_name01 {
  width: 200px;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 80%;
  left: 13%;
}

.guide_name02 {
  width: 200px;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 80%;
  left: 89%;
}

@media screen and (max-width: 768px) {
  .guide_name01 {
    width: 108px;
    top: 107%;
    left: 50%;
  }

  .guide_name02 {
    width: 108px;
    top: 107%;
    left: 50%;
  }
}

/* ぼかしから出現 */
.blur {
  animation-name: blurAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}

@keyframes blurAnime {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: scale(1.02);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

.fadeUpTrigger {
  opacity: 0;
  animation-delay: 0.5s;
}

.fadeUpTrigger:last-child {
  animation-delay: 1s;
}

#cast_sec {
  background-color: #010f1e;
  padding-top: 10rem;
  padding-bottom: 5rem;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  #cast_sec {
    padding-top: 10rem;
    /* margin-bottom: -50rem; */
  }
}

.h_prod_guide {
  width: 80%;
  width: 145px;
  margin: auto;
  margin-bottom: 2rem;
}

.prod_guide_ct {
  display: flex;
  margin-bottom: 8rem;
}

@media screen and (max-width: 768px) {
  .prod_guide_ct {
    flex-direction: column;
  }
}

.prod_guide_box {
  position: relative;
  display: inherit;
  width: 50%;
}

@media screen and (max-width: 768px) {
  .prod_guide_box {
    width: 100%;
  }
}

.h_prod_cast {
  width: 80%;
  width: 306px;
  margin: auto;
  margin-bottom: 2rem;
}

.prod_cast_ct {
  display: flex;
  margin-bottom: 4rem;
}

.prod_cast_box {
  position: relative;
  width: 20%;
  display: inherit;
}

@media screen and (max-width: 768px) {
  .prod_cast_ct {
    overflow-x: scroll;
  }

  .prod_cast_box {
    width: 30%;
    flex-shrink: 0;
  }
}

.no_margin {
  margin-bottom: 8rem;
}

.cast_class_ct {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

@media screen and (max-width: 768px) {
  .cast_class_ct {
    margin: 0 auto 1.5rem;
    width: 90%;
  }
}

.class_icon {
  width: auto;
  height: 100px;
}

.class_date {
  width: auto;
  height: 70px;
}

@media screen and (max-width: 768px) {
  .class_icon {
    height: 55px;
  }

  .class_date {
    height: 40px;
  }
}

#main_btn_ct {
  display: flex;
  width: 80%;
  margin: auto;
  padding-top: 7.5rem;
}
@media screen and (max-width: 768px) {
  #main_btn_ct{
    padding-top: 0rem;
    display: block;
  }
}

.modal_btn_red {
  width: 30%;
  position: absolute;
  display: inline-block;
  z-index: 2;
  bottom: 1%;
  right: 1%;
  cursor: pointer;
}

.prod_guide_ct .modal_btn_red {
  max-width: 90px;
  width: 15%;
}

.modal_btn_red img {
  vertical-align: top;
  transition: 0.2s;
}

.modal_btn_red:hover img {
  transform: scale(1.1);
}

@media screen and (max-width: 768px) {
  .modal_btn_red {
    width: 10%;
    min-width: 55px;
  }
}

.cast_modal {
  /* left: 80%; */
}

.interview_slide .slick-list {
  padding: 0 10%;
}

@media screen and (max-width: 768px) {
  .cast_modal {
    /* top: 82%;
    left: 88%; */
  }

  .class_thumbnail_ct > img {
    width: 90%;
    margin: 0 auto;
  }
}

.rule_ct {
  border: #fff 1px solid;
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  margin-bottom: 8rem;
}

.rule_ct::before {
  content: "";
  width: 250px;
  height: 2px;
  background-image: url(../img/red_bg_pc.webp);
  display: inline-block;
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
}

.h_rule {
  max-width: 176px;
  margin: auto;
  margin-bottom: 5rem;
  position: absolute;
  top: -8.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.rule_btn_ct {
  margin-bottom: 8rem;
}

.gallery_ct {
  padding: 0 3rem;
}

@media screen and (max-width: 768px) {
  .gallery_ct {
    padding: 0 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .gallery .slick-slide {
    margin: 0;
  }
}

/* 
.rule_no {
  margin: 5rem auto;
  text-align: center;
}

.rule_no img {
  max-width: 145px;
  margin-bottom: 2rem;
}

.rule_tx {
  font-size: 1.8rem;
  color: #fff;
  line-height: 2;
} */

.audio_cast_ct {
  display: flex;
  color: #fff;
  background-image: url(../img/snow_bg.webp);
  background-size: cover;
  justify-content: center;
  align-items: center;
  padding: 6rem 2rem;
  border-radius: 1rem;
  margin-top: 8rem;
}

.audio_icon {
  width: 180px;
  margin-right: 4rem;
}

.audio_cast_h {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.audio_cast_tx {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.audio_cast_txsub{
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  .audio_cast_ct {
    width: 90%;
    margin: auto;
    padding: 2rem 2rem;
  }


  .audio_icon {
    width: 80px;
    margin-right: 2rem;
  }
  .audio_cast_h {
    font-size: 1.2rem;
  }
  
  .audio_cast_tx {
    font-size: 1.6rem;
  }

  .audio_cast_txsub{
    font-size: 1.2rem;
  }
}

.interview_sec {
  padding: 5rem 0;
  background-color: #010f1e;
  /* margin: 0 3rem; */
}

.sec03 {
  background-image: url(../img/red_bg_pc.webp);
}

.sec03_wrapper {
  width: 75%;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .sec03_wrapper {
    width: 100%;
  }
}

.h_cast {
  width: 214px;
  margin-bottom: 5rem;
}

@media screen and (max-width: 768px) {
  .h_cast {
    margin: auto;
    margin-bottom: 2.5rem;
  }
}

.h_slide {
  height: 110px;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.h_slide img {
  width: auto;
  height: 110px;
}

.cast_slide {
  width: 90vw;
  margin: auto;
  /* max-width: 1024px; */
  margin-bottom: 4rem;
}

@media screen and (max-width: 768px) {
  .cast_slide {
    width: 100%;
    /* margin-bottom: 5rem; */
  }
}

.br_bottom {
  margin-bottom: 0;
}

.cast_slide_box {
  width: 330px;
  margin-right: 2rem;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

/* モーダル */
.modal_wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  color: #ffffff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modal_layer {
  height: 100%;
  background: rgb(1 15 30 / 75%);
  cursor: pointer;
}

.modal_container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0px;
  /* width: 60%; */
}

.rule_cotainer {
  width: 75%;
  max-width: 1000px;
}

.modal_inner {
  position: relative;
  /* overflow: scroll; */
  height: auto;
  width: 100%;
}

.cast_wrapper {
  width: 75%;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .cast_wrapper {
    width: 100%;
  }
}

.class_wrapper {
  margin-bottom: 4rem;
}

.modal_close {
  /* position: absolute; */
  /* transform: translate(50%, -50%); */
  /* bottom: 100px; */
  /* left: 200px; */
  display: inline-block;
  cursor: pointer;
  text-align: center;
  padding: 15px 40px;
  border-radius: 10px;
  border: #ffffff solid 1px;
  cursor: pointer;
  /* transition: opacity 0.6s; */
  z-index: 103;
}

@media screen and (max-width: 768px) {
  .modal_close {
    display: table;
  }
}
/* 
.modal_close:hover {
  opacity: 0.6;
} */

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

@media screen and (max-width: 768px) {
  .modal_content {
    flex-direction: column;
  }
}

.modal_rule_box {
  font-size: 1.4rem;
  line-height: 2;
  margin-right: 3rem;
}

.modal_rule_box:first-child {
  width: 70%;
}

@media screen and (max-width: 768px) {
  .modal_rule_box {
    width: 100%;
    margin-right: 0;
  }

  .modal_rule_box:first-child {
    width: 100%;
  }
}

.modal_rulu_tx {
  width: 157px;
  margin-bottom: 1.6rem;
}

.modal_rule_p {
  margin-bottom: 1.6rem;
}

@media screen and (max-width: 768px) {
  .modal_rule_p {
    margin-bottom: 4rem;
  }
}

.rule_no img {
  max-width: 145px;
  margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
  .rule_no img {
    max-width: 100px;
    margin-bottom: 0rem;
  }
}

.rule_tx {
  color: #fff;
  line-height: 2;
  margin-bottom: 2rem;
}

/* modal cast */
.modal_cast_box {
  width: 49%;
  font-size: 1.4rem;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .modal_cast_box {
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .prod_cast_box.slick-slide {
    margin-left: 2px;
    margin-right: 2px;
  }
}

.modal_cast_tx {
  height: 100px;
  margin-bottom: 1.6rem;
}

.modal_cast_tx img {
  width: auto;
  height: 100px;
}

@media screen and (max-width: 768px) {
  .modal_cast_tx {
    height: 60px;
    margin-bottom: 1.6rem;
  }

  .modal_cast_tx img {
    height: 60px;
  }
}

.modal_cast_p {
  margin-bottom: 1.6rem;
}

.modal_cast_p.comment {
  margin: 3rem 0;
}

.modal_cast_p.guide_p {
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  .modal_cast_p {
    margin-bottom: 1.6rem;
    height: 20vh;
    overflow: scroll;
  }
}
.modal_cast_message {
  position: absolute;
  top: 50%;
  right: -3%;
  transform: translate(0px, -50%);
  /* width: 60px; */
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .modal_cast_message {
    top: 25%;
  }
}

.no_lead {
  height: 60px;
}

.no_lead img {
  height: 60px;
}

.one_line {
  width: 66px;
}

.two_line {
  width: 125px;
}

.three_line {
  width: 195px;
}

@media screen and (max-width: 768px) {
  .no_lead {
    height: 40px;
  }

  .no_lead img {
    height: 40px;
  }

  .one_line {
    width: 36px;
  }

  .two_line {
    width: 75px;
  }

  .three_line {
    width: 115px;
  }
}

.modal_tx {
  color: #fff;
  line-height: 2;
  margin-bottom: 2rem;
}

iframe.youtube-16-9 {
  width: 800px;
  height: 450px;
  display: block;
  margin: auto;
}

#guide_interview .modal_container {
  width: auto;
}

.cast_interview .modal_container {
  width: auto;
}

@media screen and (max-width: 768px) {
  .modal_close {
    /* width: 22px; */
    /* height: 22px; */
  }

  .modal_close:before,
  .modal_close:after {
    width: 10px;
  }
  .modal_container {
    width: 85%;
    margin: 0 auto;
  }

  .rule_cotainer {
    width: 90%;
  }

  .modal_content {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  iframe.youtube-16-9 {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    max-width: 560px;
    display: block;
    margin: auto;
  }
}

.modal_close_icon {
  position: absolute;
  transform: translate(50%, -50%);
  top: 0;
  right: 0;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgb(255, 255, 255);
  cursor: pointer;
  transition: opacity 0.6s;
  z-index: 103;
}

.modal_close_icon:hover {
  opacity: 0.6;
}

.modal_close_icon:before,
.modal_close_icon:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background: #000;
  content: "";
}

.modal_close_icon:before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal_close_icon:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (max-width: 768px) {
  .modal_close_icon {
    width: 22px;
    height: 22px;
  }

  .modal_close_icon:before,
  .modal_close_icon:after {
    width: 10px;
  }
  #guide_interview .modal_container {
    width: 86%;
    margin: 0 auto;
  }

  .cast_interview .modal_container {
    width: 86%;
    margin: 0 auto;
  }

  #guide_interview .modal_content {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  iframe.youtube-16-9 {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    max-width: 560px;
    display: block;
    margin: auto;
  }
}

#story_sec {
  text-align: center;
  background-image: url(../img/story_bg.webp);
  background-size: cover;
  padding: 8rem 1.5rem;
}

.p_story {
  color: #fff;
  text-align: center;
  line-height: 2.8em;
  letter-spacing: 0.15em;
  padding-bottom: 5rem;
}

.story_author {
  color: #fff;
  padding-bottom: 7rem;
}

.story_red_box {
  background-color: #1b466a;
  border: double;
  padding: 2rem 3rem;
  color: #fff;
  text-align: center;
  line-height: 2.2em;
  letter-spacing: 0.15em;
  display: inline-block;
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  .story_red_box {
    font-size: 1.4rem;
  }

  #story .common_h {
    margin-bottom: 4rem;
  }
}

#ticket_sec {
  background-color: #000;
  /* background-image: url(../img/bg_pattern.webp); */
  /* background-repeat: initial; */
  background-image: url(../img/bg_price.webp);
  background-position: center top;
  background-size: cover;
  padding-top: 10rem;
  padding-bottom: 10rem;
  position: relative;
  z-index: 0;
}

.bg_black {
  width: 100%;
  height: 20%;
  position: absolute;
  bottom: 0;
  background-image: url(../img/bg_black.webp);
  background-size: cover;
  background-position: bottom;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  #ticket_sec {
    /* padding-top: 55rem; */
    padding-bottom: 3rem;
  }
}

.date_tx {
  width: 280px;
  margin: auto;
  margin-bottom: 7.5rem;
}

@media screen and (max-width: 768px) {
  .date_tx {
    width: 180px;
    margin-bottom: 4rem;
  }
}

.price_tx {
  width: 600px;
  margin: auto;
  margin-bottom: 2.5rem;
}

.price_tx_02 {
  padding-top: 8rem;
  width: 400px;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .price_tx {
    width: 300px;
    margin-bottom: 1.5rem;
  }

  .price_tx_02 {
    width: 280px;
    margin: auto;
    margin-bottom: 3.5rem;
  }
}

.date_ct {
  width: 75%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

@media screen and (max-width: 768px) {
  .date_ct {
    width: 100%;
    justify-content: space-evenly;
    padding-bottom: 4rem;
    flex-direction: column;
    padding: 4rem;
  }
}

.date_border {
  width: 1px;
  height: auto;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .date_border {
    height: 1px;
    width: auto;
    margin: 4rem 0;
  }
}

.date_box {
  width: 30%;
}

@media screen and (max-width: 768px) {
  .date_box {
    width: 100%;
  }
}

.price_ct {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}

@media screen and (max-width: 768px) {
  .price_ct {
    flex-direction: column;
  }
}

.price_box {
  width: 60%;
  width: 378px;
  margin: 0 1rem;
}

@media screen and (max-width: 768px) {
  .price_box {
    width: 100%;
    margin: 0;
    padding: 0 2rem;
  }
}

.lead_ct {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 100;
}

.lead_box {
  margin: 0 1rem;
}

.price_lead_h {
  font-size: 1.4rem;
}

.price_lead_link {
  display: block;
  color: #fff;
  padding-bottom: 1rem;
}

.lead_ct {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .lead_ct {
    flex-direction: column;
    padding: 0 2rem;
  }
}

@media screen and (max-width: 768px) {
  .lead_box {
    margin-bottom: 2rem;
  }
}

.ticket_btn_red,
.ticket_btn_blue,
.ticket_btn_orange {
  width: 80%;
  max-width: 450px;
  margin: auto;
  margin-bottom: 5rem;
}

.ticket_btn_blue a {
  background-color: #fff;
  font-family: sans-serif;
  color: #000;
  border-radius: 100px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 1rem auto;
  max-width: 450px;
  padding: 2.5rem 2rem;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  text-decoration: none;
  z-index: 2;
  font-size: 1.8rem;
  border: 3px #1969b4 solid;
  flex-direction: column;
}

.ticket_btn_orange a {
  background-color: #fff;
  font-family: sans-serif;
  color: #000;
  border-radius: 100px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 1rem auto;
  max-width: 450px;
  padding: 2.5rem 2rem;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  text-decoration: none;
  z-index: 2;
  font-size: 1.8rem;
  border: 3px #f19d60 solid;
  flex-direction: column;
}

.ticket_btn_blue img,
.ticket_btn_orange img {
  width: auto;
  height: 25px;
  margin-bottom: 0.5rem;
}

.ticket_btn_blue a:after,
.ticket_btn_orange a:after {
  position: absolute;
  top: 50%;
  right: 10%;
  border-radius: 1px;
  transition: 0.2s ease-in-out;
  content: "\f0da";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transform: translateY(-50%);
  z-index: 99;
}

.ticket_btn_blue.ticket_fin a:after {
  content: "";
}

.ticket_btn_red a {
  background: linear-gradient(#ce004a, #c20d22);
  font-family: sans-serif;
  color: #fff;
  border-radius: 50px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 1rem auto;
  max-width: 450px;
  padding: 2.5rem 2rem;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  text-decoration: none;
  z-index: 2;
  font-size: 1.8rem;
}

.ticket_btn_red.ticket_fin a {
  background: #313131;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .ticket_btn_red a {
    font-size: 1.5rem;
    max-width: 300px;
    padding: 2.5rem 3rem;
  }

  .ticket_btn_blue a,.ticket_btn_orange a{
    padding: 2rem 2rem;
  }

  .ticket_btn_blue{
    margin-bottom: 1rem;
  }

  .ticket_btn_blue,
  .ticket_btn_orange{
    width: 100%;
  }

}

.ticket_btn_red a:after {
  position: absolute;
  top: 50%;
  right: 10%;
  border-radius: 1px;
  transition: 0.2s ease-in-out;
  content: "\f0da";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transform: translateY(-50%);
  z-index: 99;
}

.ticket_btn_red.ticket_fin a:after {
  content: "";
}

.ticket_btn_red a:hover {
  background: #313131;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .ticket_btn_red a {
    max-width: 300px;
    padding: 2.5rem 3rem;
  }
}

.btn_lead {
  font-size: 1.2rem;
  font-family: sans-serif;
  text-align: center;
  color: #fff;
}

.btn_lead_tx {
  width: 60%;
  margin: auto;
}

.about_fany_ct {
  padding: 3rem 0;
  text-align: center;
  color: #fff;
  border-top: dotted 1px #fff;
  border-bottom: dotted 1px #fff;
  width: 80%;
  margin: auto;
  margin-bottom: 6rem;
}

.about_fany_h {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.about_fany_tx {
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  .about_fany_ct {
    width: 90%;
    text-align: left;
  }
  .about_fany_h {
    font-size: 1.6rem;
  }
  .about_fany_tx {
    font-size: 1.3rem;
  }
}

#access_sec {
  display: flex;
  align-items: center;
  padding-bottom: 10rem;
  background: linear-gradient(#010f1e, #000);
}

@media screen and (max-width: 768px) {
  #access_sec {
    flex-direction: column;
  }
}

.map_box {
  width: 50%;
  color: #fff;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .map_box {
    width: 100%;
    height: 260px;
  }

  .map_box:first-child {
    padding: 0 2rem;
  }
}

.map_box iframe {
  width: 100%;
  height: 600px;
  margin-top: -170px;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}

@media screen and (max-width: 768px) {
  .map_box iframe {
    height: 300px;
  }
}

.map_tx {
  margin-bottom: 2.4rem;
  font-size: 1.4rem;
  line-height: 175%;
}

.tx_theater {
  width: 80%;
  max-width: 390px;
  margin: auto;
  margin-bottom: 2rem;
}

#goods_sec {
  background-color: #000;
  padding-bottom: 5rem;
}

.lineup_wrapper {
  width: 75%;
  margin: auto;
  margin-bottom: 4rem;
}

@media screen and (max-width: 768px) {
  .lineup_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 85%;
  }
}

.goods_banner_box {
  width: 75%;
  margin: auto;
  margin-bottom: 6rem;
}

.lineup_ct {
  display: flex;
  justify-content: space-between;
  color: #fff;
}

.lineup_box {
  width: 24%;
}

@media screen and (max-width: 768px) {
  .goods_banner_box {
    width: 85%;
  }

  .lineup_ct {
    flex-wrap: wrap;
  }

  .lineup_box {
    width: 49%;
    margin-bottom: 2rem;
  }
}

.goods_lineup_tx {
  color: #ffffff;
  text-align: center;
  padding: 2rem;
  width: 100%;
  border: solid 1px #fff;
  margin-bottom: 10rem;
}

.lineup_h {
  color: #fff;
  font-size: 1.8rem;
  padding: 1rem 2rem;
  border-radius: 30px;
  border: 1px solid #fff;
  display: inline-block;
  margin-bottom: 2rem;
}

.goods_item_title {
  margin-bottom: 0.8rem;
}

@media screen and (max-width: 768px) {
  .lineup_h {
    font-size: 1.5rem;
  }

  .goods_item_title {
    font-size: 1.3rem;
  }

  .goods_lineup_tx {
    font-size: 1.3rem;
  }
}

.banner_tx {
  color: #fff;
  margin-top: 3.2rem;
  text-align: center;
}

.goods_h_ct {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3.2rem;
}

.h_border {
  height: 1px;
  background-color: #fff;
  width: 50px;
}

.goods_h {
  font-size: 2.4rem;
  margin: 0 2rem;
  color: #fff;
}

.goods_sec .btn_lead {
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .goods_h {
    font-size: 1.8rem;
    margin: 0 1rem;
    color: #fff;
  }

  .h_border {
    width: 25px;
  }
}

.goods_table {
  color: #fff;
  width: 85%;
  max-width: 1000px;
  margin: auto;
}

.goods_sell_box {
  display: flex;
  align-items: stretch;
  border: 1px solid #fff;
  margin-bottom: 3.2rem;
  font-family: sans-serif;
  letter-spacing: 0;
}

.goods_item_h {
  text-align: center;
  width: 10%;
  display: inline-flex;
  border-right: 1px solid #fff;
  align-items: center;
  justify-content: center;
}

.goods_item {
  padding: 2rem;
  width: 45%;
}

.border-right {
  border-right: 1px solid #fff;
}

.one_column {
  width: 90%;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .goods_sell_box {
    flex-direction: column;
  }
  .goods_item_h {
    padding: 1rem;
    width: 100%;
    border-bottom: 1px solid #fff;
  }

  .goods_item {
    padding: 1.5rem;
    font-size: 1.3rem;
    width: 100%;
  }

  .border-right {
    border-right: 0px;
    border-bottom: 1px solid #fff;
  }

  .one_column {
    width: 100%;
  }
}

.goods_title {
  font-size: 2rem;
}

.goods_tx {
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .goods_title {
    font-size: 1.5rem;
  }

  .goods_tx {
    font-size: 1.1rem;
  }
}

.goods_list_ul {
  padding-left: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.goods_list_item {
  text-align: left;
  margin-top: 2px;
  font-size: 1.4rem;
}

.table_small {
  font-size: 1rem;
}

.left_tx {
  text-align: left;
}

.cash_ct {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

.cash_ct img {
  width: 24%;
}

@media screen and (max-width: 768px) {
  .cash_ct {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cash_ct img {
    width: 48%;
    margin-bottom: 2rem;
  }
}

#series {
  padding: 5rem 0;
  padding-bottom: 10rem;
  background-color: #000;
}

.sec05 {
  background-color: #000;
  padding-bottom: 5rem;
}

.closing_img {
  position: relative;
}

.series_ct {
  display: flex;
  justify-content: space-between;
  width: 65%;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .series_ct {
    width: 90%;
  }
}

.series_box {
  width: 48%;
  margin-bottom: 2rem;
  text-align: center;
  transition: 0.5s;
}
.series_box a {
  transition: 0.3s;
}

.series_box a:hover {
  background: rgba(255, 255, 255, 0.35);
}

.series_img {
  margin-bottom: 3.2rem;
}

.link_icon {
  width: auto;
  height: 16px;
  margin-left: 0.5rem;
}

.link_style {
  color: #fff;
  text-decoration: none;
  border: solid 1px #fff;
  padding: 1rem 2rem;
  border-radius: 50px;
}

.tx_style {
  color: #fff;
  border: solid 1px #fff;
  padding: 1rem 2rem;
  border-radius: 50px;
  display: inline;
}

@media screen and (max-width: 768px) {
  .link_style,
  .tx_style {
    font-size: 1.2rem;
  }

  .link_icon {
    height: 11.5px;
  }
}

/* CSS */
.closing_img_right {
  opacity: 0.1; /* 初めは画像を半透明にする */
  transition: opacity 2s; /* フェード効果を追加 */
}

/* スクロールして要素が可視範囲に入ったら不透明度を変更するためのクラス */
.closing_img_right.visible {
  opacity: 1;
}

.closing_logo {
  max-width: 417px;
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 2;
}

.credit {
  text-align: center;
  color: #fff;
  line-height: 200%;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .credit {
    font-size: 1.2rem;
    padding-bottom: 2rem;
    padding: 0 2rem;
  }
}

footer {
  background-color: #000;
}

.footer_ct {
  width: 80%;
  max-width: 1024px;
  margin: auto;
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .footer_ct {
    width: 100%;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
  }
}

.footer_logo_ct {
  display: flex;
}

.footer_logo_box {
  height: 45px;
  margin-right: 3.2rem;
}

.footer_logo_box img {
  width: auto;
  height: 45px;
}

@media screen and (max-width: 768px) {
  .footer_logo_ct {
    align-items: center;
    margin-bottom: 8rem;
  }

  .footer_logo_box {
    height: 50px;
    margin-right: 2.4rem;
  }

  .footer_logo_box:last-child {
    margin-right: 0;
  }

  .footer_logo_box img {
    width: auto;
    height: 30px;
  }
}

.footer_btn_ct {
  width: 150px;
  text-align: center;
}

@keyframes rotation1 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

.closing_btn {
  margin-bottom: 4rem;
  text-align: center;
  position: relative;
  display: block;
}

.round_tx {
  position: absolute;
  top: -40%;
  left: 0%;
  width: 148px;
  animation: 10s linear infinite rotation1;
}

.btn_tx {
  width: 76px;
}

.copywrite {
  font-family: sans-serif;
  color: #fff;
  width: 80%;
  max-width: 1024px;
  margin: auto;
  padding: 0 0 3rem 0;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .copywrite {
    width: 100%;
  }
}

.ytp-chrome-top-buttons {
  display: none !important;
}

.cta_btn_ct {
  position: fixed;
  bottom: 1%;
  right: 1%;
  width: 160px;
  background-color: #133355;
  z-index: 299;
  overflow: hidden;
  border-radius: 200px;
  transition: 0.3s;
}
.cta_btn_ct:hover {
  opacity: 0.7;
  transform: rotate(10deg);
}

.cta_btn_ct img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .cta_btn_ct {
    bottom: -2%;
    right: -2%;
    width: 105px;
    border-radius: 100px 100px 0px 100px;
    background-color: #13335590;
    -webkit-backdrop-filter: blur(12px);
  }
}


/* ーーーーーーーーーガイドーーーーーーーーーーー */

.guide_container{
  /* height: 100vh; */
  background-image: url('../img/guide_bg.webp');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 20px 10px 50px;
}

.guide_img{
  max-width: 800px;
  margin:0 auto;
}

.guide_ura{
  border-top: #fff 1px solid;
  margin-top: 80px;
  padding-top: 50px;
}

.guide_img img{
  margin: 30px 0;
}

@media screen and (max-width: 768px) {
  .guide_img img{
    margin: 10px 0;
  }
}

.questionnaire{
  border-top: #fff 1px solid;
  margin-top: 30px;
  padding-top: 50px;
  text-align: center;
  color: #fff;
  margin-bottom: 200px;
}

.questionnaire_text{
  margin-top: 30px;
  display: block;
  font-size: 1.5rem;
}

.questionnaire label{
  padding-top: 10px;
  display: block;
  font-size: 1.3rem;
}

.questionnaire_link{
  max-width: 500px;
  background-color: white;
  color: #1b466a;
  padding: 20px;
  display: block;
  margin: 30px auto;
  font-size: 2.5rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .questionnaire_link{
    padding: 10px;
    width: 340px;
  }
}

