/*************************************************
共通の値の設定
*************************************************/
.section_content {
  margin: 150px 0 150px var(--pc-aside-width);
}
.section_content .section_inner {
  max-width: var(--content-max-width);
  width: 100%;
  margin: 0 auto;
}
/******* 各セクションのタイトル *******/
.section_content .section_ttl {
  text-align: center;
  font-size: 70px;
  font-weight: bold;
  margin-bottom: 30px;
}
.section_content .section_ttl img {
  width: 70%;
  max-width: 300px;
}

/* .section_content .section_ttl span {
  display: inline-block;
  animation: bounce 2s ease infinite;
} */

/* .section_content .section_ttl img {
  display: inline-block;
} */

/******* VIEW MOREボタン *******/
.section_content .more_btn {
  position: relative;
  margin-top: 20px;
}
.section_content .more_btn a {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  font-size: min(5vw, 20px);
  font-weight: bold;
  width: 70%;
  max-width: 300px;
  aspect-ratio: 7/1;
  background-color: #000;
  border-radius: 7px;
  transition-duration: 0.4s;
  z-index: 1;
  margin: 0 auto;
}
.section_content .more_btn a::after {
  background: var(--main-color);
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.section_content .more_btn a:hover {
  color: #000;
  transform: scale(1.1);
}
.section_content .more_btn a:hover::after {
  transform: scale(1.1);
}
.section_content .more_btn a span {
  display: inline-block;
  padding-left: min(2vw, 20px);
}
@media (max-width: 599px) {
  .section_content {
    margin: 150px 0;
  }
  .section_content .section_ttl img {
    width: 100%;
    max-width: 250px;
  }
  .section_content .more_btn a img {
    width: 70%;
  }
}
/*************************************************
fv
*************************************************/
#fv {
  position: relative;
  width: var(--pc-content-width);
  height: calc(var(--pc-content-width) * 4 / 3);
  /* max-height: 100vh; */
  margin-left: var(--pc-aside-width);
  margin-bottom: 30px;
}
.fv_img-box {
  width: 100%;
  height: 80%;
  max-width: var(--content-max-width);
  margin: 0 auto;
}
#fv img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 599px) {
  #fv {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
  }
}
@media (min-width: 1450px) {
  #fv {
    height: 844px;
  }
  .fv_img-box {
    height: calc(844px * 0.8);
  }
}

/*************************************************
カウントダウン
*************************************************/
.fv_countdown {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: var(--content-max-width);
  height: 20%;
  max-height: calc(844px * 0.2);
  color: #000;
  text-align: center;
  /* background-color: rgba(0, 0, 0, 0.5); */
  background-color: var(--main-color);
  padding: 10px 0;
  margin: 0 auto;
}
.fv_countdown p {
  font-size: 40px;
  font-weight: bold;
}
.fv_countdown-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 12px 0;
}
.day_container {
  padding-right: min(3vw, 30px) !important;
  margin-right: min(1.5vw, 20px);
  border-right: 5px solid #000;
}
.day_container,
.time_container .time_box {
  padding: 0 10px;
}
.fv_countdown-wrapper .time_container {
  display: flex;
}
.fv_countdown-wrapper .time,
.fv_countdown-wrapper .colon {
  font-size: 50px;
  font-weight: bold;
  line-height: 1;
  display: grid;
  padding-bottom: 10px;
}
.fv_countdown-wrapper .unit {
  font-size: 20px;
}
@media (max-width: 599px) {
  .fv_countdown {
    max-height: none;
  }
  .fv_countdown p {
    font-size: 8vw;
  }
  .day_container {
    border-right: 1vw solid #000;
  }
  .fv_countdown-wrapper .time,
  .fv_countdown-wrapper .colon {
    font-size: 10vw;
    padding-bottom: 5px;
  }
  .fv_countdown-wrapper .unit {
    font-size: 4vw;
  }
}
/*************************************************
横に流れるテキストアニメーション
*************************************************/
.slide_text {
  display: flex;
  align-items: center;
  width: var(--pc-content-width);
  margin-left: var(--pc-aside-width);
  color: #000;
  line-height: 60px;
  overflow: hidden;
  white-space: nowrap;
  background: #fff;
}
.slide_text ul {
  animation: flowing 40s linear infinite;
  font-size: max(20px, 1.5vw);
  margin: 0;
  padding: 0;
}
.slide_text ul li {
  display: inline-block;
  padding-right: 10px;
}
@keyframes flowing {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.slide_text.slide-right ul {
  animation: flowing-right 40s linear infinite;
}
@keyframes flowing-right {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@media (max-width: 599px) {
  .slide_text {
    width: 100%;
    margin: 0;
  }
}

/*************************************************
スライド
*************************************************/
#slide {
  margin: 30px auto;
  /* padding-top: 1vw; */
  padding-left: var(--pc-aside-width);
  margin-bottom: 30px;
}
#slide .section_inner {
  max-width: var(--content-max-width);
  margin: 0 auto 50px;
}
#slide .section_inner .slide li img {
  width: 100%;
  padding: 0 15px;
}
#slide .section_inner .slide_sp {
  display: none;
}
#slide .slick-dots {
  bottom: -30px !important;
}
@media screen and (max-width: 599px) {
  #slide {
    width: 100%;
    padding: 0;
  }
  #slide .section_inner .slide {
    display: none;
  }
  #slide .section_inner .slide_sp {
    display: block;
    /* padding-bottom: 25px; */
    margin: 0;
  }
  #slide .section_inner .slide_sp li {
    padding: 3px;
  }
  #slide .section_inner .slide_sp li img {
    width: 100%;
  }
}
/*************************************************
特典会バナー
*************************************************/
#benefits {
  color: #fff;
  text-align: center;
  width: var(--pc-content-width);
  height: fit-content;
  padding: 0 20px;
  margin: 30px 0 60px var(--pc-aside-width);
}
#benefits .section_inner {
  width: 100%;
  max-width: 1000px;
  height: 100%;
  margin: 150px auto 0;
}
#benefits .section_inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 599px) {
  #benefits {
    width: 100%;
    margin-left: 0;
  }
}
/*************************************************
ABOUT
*************************************************/
#about {
  padding: 0 20px;
}
#about .img_catch-copy {
  width: 100%;
  padding: 0 20px;
  margin-bottom: 100px;
}
#about .about_text {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  max-width: 1000px;
  border: 1px solid #000;
  border-radius: 10px;
  padding: 50px 20px;
  margin: 0 auto;
}

/*************************************************
ニュース
*************************************************/
#news .section_ttl img {
  max-width: 200px;
}
#news .news_wrap {
  width: 100%;
  max-height: 400px;
  background-color: #fff;
  font-family: "Sofia Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05rem;
  overflow-y: scroll;
}
#news .news_wrap ul {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  /* padding: 60px 0; */
}
#news .news_wrap ul li {
  padding: 20px 0;
  border-bottom: 1px solid var(--main-color);
  font-size: 20px;
  margin-bottom: 20px;
  line-height: 1.6;
}
#news .news_wrap ul li div {
  font-size: 18px;
  margin-bottom: 20px;
}
#news .news_wrap ul li div span {
  display: inline-block;
  color: #000;
  background: var(--main-color);
  padding: 3px 10px 0px;
  margin-left: 15px;
}
#news .news_wrap ul li a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 599px) {
  #news {
    padding: 0 30px;
  }
  #news .news_wrap ul {
    padding: 60px 15px;
  }
  #news .news_wrap ul li {
    font-size: 14px;
  }
  #news .news_wrap ul li div {
    margin-bottom: 15px;
    font-size: 15px;
  }
}

/*************************************************
キャスト
*************************************************/
#top_cast .section_ttl img {
  max-width: 200px;
}
#top_cast .cast_slider_top,
#top_cast .cast_slider_bottom {
  overflow: hidden;
  margin: 20px 0;
  width: 100%;
}
#top_cast .cast_slider_top .cast_item,
#top_cast .cast_slider_bottom .cast_item {
  aspect-ratio: 1;
  padding: 0 10px;
}
#top_cast .cast_slider_top .cast_item img,
#top_cast .cast_slider_bottom .cast_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 5px;
}
#top_cast .slick-list {
  overflow: visible;
}
@media screen and (max-width: 599px) {
  #top_cast {
    padding: 0;
    width: 100%;
  }
}
/*************************************************
ブランド
*************************************************/
@media screen and (max-width: 599px) {
  #brand {
    width: 100%;
    padding: 0;
  }
}
#brand .section_inner {
  margin-bottom: 120px;
}
@media screen and (max-width: 599px) {
  #brand .section_inner {
    padding: 0;
  }
}
#brand .section_inner .cast_slider_top {
  margin-bottom: 30px;
}
#brand .section_inner .cast_slider_top,
#brand .section_inner .cast_slider_bottom {
  overflow: hidden;
  margin: 20px 0;
  width: 100%;
}
#brand .section_inner .cast_slider_top .cast_item,
#brand .section_inner .cast_slider_bottom .cast_item {
  padding: 0 10px;
}
#brand .section_inner .cast_slider_top .cast_item img,
#brand .section_inner .cast_slider_bottom .cast_item img {
  width: 100%;
  height: auto;
}

/*************************************************
チケット
*************************************************/
@media screen and (max-width: 599px) {
  #ticket {
    padding: 0;
  }
}
#ticket .section_inner {
  margin-bottom: 120px;
}
#ticket .section_inner .content {
  background-color: #fff;
  padding: 60px 0 0;
}
@media screen and (max-width: 599px) {
  #ticket .section_inner .content {
    padding: 30px 15px;
  }
}
#ticket .section_inner .content .ticket_text {
  margin-bottom: 60px;
}
#ticket .section_inner .content .ticket_text p {
  text-align: center;
  line-height: 1.5;
  font-weight: 600;
}
@media screen and (max-width: 599px) {
  #ticket .section_inner .content .ticket_text p {
    font-size: 14px;
  }
}
#ticket .section_inner .content .ticket_content {
  margin-bottom: 60px;
}
#ticket .section_inner .content .ticket_content:last-child {
  margin-bottom: 0;
}
#ticket .section_inner .content .ticket_content img {
  display: block;
  width: fit-content;
  margin: 0 auto 50px;
}
@media screen and (max-width: 599px) {
  #ticket .section_inner .content .ticket_content img {
    width: 60%;
  }
}
#ticket .section_inner .content .ticket_content table,
#ticket .section_inner .content .ticket_content tbody {
  display: block;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
#ticket .section_inner .content .ticket_content table tr,
#ticket .section_inner .content .ticket_content tbody tr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: solid 1px #d9d9d9;
}
#ticket .section_inner .content .ticket_content table tr:last-child,
#ticket .section_inner .content .ticket_content tbody tr:last-child {
  border-bottom: none;
}
#ticket .section_inner .content .ticket_content table tr th,
#ticket .section_inner .content .ticket_content tbody tr th {
  font-weight: 600;
}
@media screen and (max-width: 599px) {
  #ticket .section_inner .content .ticket_content table tr th,
  #ticket .section_inner .content .ticket_content tbody tr th {
    font-size: 14px;
  }
}
#ticket .section_inner .content .ticket_content table tr td,
#ticket .section_inner .content .ticket_content tbody tr td {
  font-size: 20px;
  font-family: "Sofia Sans";
  font-weight: 600;
}
@media screen and (max-width: 599px) {
  #ticket .section_inner .content .ticket_content table tr td,
  #ticket .section_inner .content .ticket_content tbody tr td {
    font-size: 14px;
  }
}
#ticket .section_inner .content .ticket_content table tr td span,
#ticket .section_inner .content .ticket_content tbody tr td span {
  font-size: 14px;
  font-weight: 600;
}
@media screen and (max-width: 599px) {
  #ticket .section_inner .content .ticket_content table tr td span,
  #ticket .section_inner .content .ticket_content tbody tr td span {
    font-size: 10px;
  }
}
#ticket .section_inner .content .ticket_content p {
  margin-top: 15px;
  text-align: center;
  font-weight: 600;
}
@media screen and (max-width: 599px) {
  #ticket .section_inner .content .ticket_content p {
    font-size: 14px;
    line-height: 1.5;
  }
}
#ticket .section_inner .content .ticket_cs table {
  position: relative;
}
#ticket .section_inner .content .ticket_cs table::before {
  position: absolute;
  content: url(../images/ticket_cs.svg);
  width: 160px;
  height: 90px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#ticket .section_inner .content .ticket_cs p {
  margin-top: 15px;
  text-align: center;
  font-weight: 600;
}
@media screen and (max-width: 599px) {
  #ticket .section_inner .content .ticket_cs p {
    font-size: 14px;
    line-height: 1.5;
  }
}
#ticket .section_inner .content .soldout table {
  position: relative;
}
#ticket .section_inner .content .soldout table::before {
  position: absolute;
  content: url(../images/soldout.svg);
  width: 160px;
  height: 90px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#ticket .section_inner .content .playguide {
  margin-top: 30px;
}
#ticket .section_inner .content .playguide li a {
  display: block;
}
#ticket .section_inner .content .playguide li a img {
  display: block;
  max-width: 200px;
  width: 100%;
  margin: 0 auto 30px;
}
#ticket .section_inner .content .kaijo_map {
  margin-bottom: 60px;
}
#ticket .section_inner .content .kaijo_map img {
  display: block;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}
#ticket .section_inner .content .ticket_contact h3 {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 599px) {
  #ticket .section_inner .content .ticket_contact h3 {
    font-size: 16px;
  }
}
#ticket .section_inner .content .ticket_contact p {
  text-align: center;
  font-weight: 600;
}
@media screen and (max-width: 599px) {
  #ticket .section_inner .content .ticket_contact p {
    font-size: 14px;
  }
}
#ticket .section_inner .content .ticket_contact span {
  font-weight: 600;
  font-family: "Sofia Sans";
  font-size: 24px;
  display: block;
  text-align: center;
  margin: 15px 0;
}

/*************************************************
タイムテーブル
*************************************************/
#timetable {
  margin-bottom: 0;
}
@media screen and (max-width: 599px) {
  #timetable {
    padding: 0 30px;
  }
}
#timetable .section_ttl img {
  max-width: 600px;
}
#timetable .content {
  width: 100%;
  max-width: 750px;
  background-color: #fff;
  font-family: "Sofia Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05rem;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  #timetable .content {
    padding: 60px 30px;
  }
}
#timetable .content p {
  font-size: 14px;
  text-align: center;
  margin-bottom: 30px;
}
#timetable .content img {
  display: block;
  max-width: 300px;
  width: 100%;
  margin: 0 auto 60px;
}
@media screen and (max-width: 599px) {
  #timetable .content img {
    max-width: 200px;
  }
}
#timetable .content ul {
  margin-bottom: 30px;
}
#timetable .content ul:last-child {
  margin-bottom: 0;
}
#timetable .content ul li {
  margin-bottom: 15px;
  font-size: 16px;
}
#timetable .content ul .time {
  display: block;
  text-align: center;
  color: #fff;
  background: #d8002c;
  padding: 5px 10px 3px;
  margin: 0 auto;
  font-size: 20px;
  margin-bottom: 15px;
}

/*************************************************
パートナーフッター（トップのみ表示）
*************************************************/
.section_partner {
  background-color: var(--main-color);
  position: relative;
  padding-bottom: 30px;
}
.section_partner .section_inner {
  max-width: 1000px;
  width: 100%;
  padding: 60px 20px 0 calc(var(--pc-aside-width) + 20px);
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .section_partner .section_inner {
    padding: 60px 30px 0;
  }
}
.section_partner .section_inner .special_partner ul li {
  width: 300px !important;
}
.section_partner .section_inner .partner {
  margin-bottom: 60px;
}
.section_partner .section_inner .partner p {
  font-family: "Sofia Sans", sans-serif;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05rem;
  text-align: center;
  font-size: 26px;
  margin-bottom: 15px;
}
.section_partner .section_inner .partner ul {
  padding: 15px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.section_partner .section_inner .partner ul li {
  max-width: 150px;
  width: 16%;
  margin: 2%;
}
@media screen and (max-width: 599px) {
  .section_partner .section_inner .partner ul li {
    width: 20%;
  }
}
.section_partner .section_inner .partner ul li:hover {
  opacity: 0.7;
}
.section_partner .section_inner .partner ul li a {
  display: block;
}
.section_partner .section_inner .partner ul li a img {
  display: block;
  width: 100%;
}
