@charset "UTF-8";
/*************************************************
common-style
*************************************************/
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-margin: 100px;
  scroll-padding: 100px;
}

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

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

body {
  position: relative;
  font-family: YakuHanJP, "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  background-color: #f0ff64;
  color: black;
}

.bg {
  background-image: url(../images/bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: -9999;
}
@media screen and (max-width: 599px) {
  .bg {
    background-image: url(../images/bg_sp.png);
    background-position: center;
    background-attachment: scroll;
  }
}
.bg img {
  display: block;
  width: 100%;
  height: 100vh;
}

section {
  position: relative;
}

@media screen and (max-width: 960px) {
  .treat {
    display: none !important;
  }
}

.section_inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.section_ttl {
  width: fit-content;
  margin: 0 auto 100px;
}
.section_ttl img {
  display: block;
}
@media screen and (max-width: 599px) {
  .section_ttl {
    width: 100%;
    margin-bottom: 50px;
  }
  .section_ttl img {
    width: 80%;
    margin: 0 auto;
  }
}

.content {
  position: relative;
  border-radius: 20px;
  border: 4px solid #000;
  background: #fff;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

/*************************************************
アニメーション
*************************************************/
.fadeUp {
  transform: translateY(0);
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@media screen and (max-width: 599px) {
  .fadeUp {
    animation-duration: 0.3s;
  }
}

@keyframes fadeUpAnime {
  from {
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.delay-time02 {
  animation-delay: 0.2s;
}
@media screen and (max-width: 599px) {
  .delay-time02 {
    animation-delay: 0.1s;
  }
}

.delay-time04 {
  animation-delay: 0.4s;
}
@media screen and (max-width: 599px) {
  .delay-time04 {
    animation-delay: 0.2s;
  }
}

.delay-time06 {
  animation-delay: 0.6s;
}
@media screen and (max-width: 599px) {
  .delay-time06 {
    animation-delay: 0.3s;
  }
}

.delay-time08 {
  animation-delay: 0.8s;
}
@media screen and (max-width: 599px) {
  .delay-time08 {
    animation-delay: 0.4s;
  }
}

.delay-time1 {
  animation-delay: 1s;
}
@media screen and (max-width: 599px) {
  .delay-time1 {
    animation-delay: 0.5s;
  }
}

/*************************************************
aside
*************************************************/
aside .aside_pc {
  height: 97vh;
  padding-bottom: 30px;
  position: fixed;
  width: 17.3611111111vw;
  background: #F0FF64;
  border-radius: 0px 0px 20px 0px;
  border-right: 5px solid #000;
  border-bottom: 5px solid #000;
  z-index: 999;
}
@media screen and (max-width: 599px) {
  aside .aside_pc {
    display: none;
  }
}
aside .aside_pc .header_pc_img {
  max-width: 190px;
  margin: 0 auto;
}
aside .aside_pc .header_pc_img .header_01 {
  max-width: 120px;
}
aside .aside_pc .header_pc_img img {
  display: block;
  margin: 0 auto;
  width: 100%;
}
aside .aside_pc .header_pc_img .header_02 {
  margin-top: 15px;
}
aside .aside_pc .link {
  width: fit-content;
  margin: 40px auto 25px;
}
aside .aside_pc .link li {
  margin-bottom: 10px;
}
aside .aside_pc .link li a {
  font-size: 18px;
}
aside .aside_pc .sns {
  display: flex;
  justify-content: center;
}
aside .aside_pc .sns li {
  margin-right: 10px;
}
aside .aside_pc .sns li:last-child {
  margin-right: 0;
}
aside .aside_pc .sns li a {
  display: block;
}
aside .aside_pc .sns li a img {
  display: block;
  width: 100%;
}
aside .hamburger {
  display: none;
  position: fixed;
  top: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  background: #F0FF64;
  border: 3px solid #000;
  border-radius: 5px;
  z-index: 1000;
  padding: 0;
  cursor: pointer;
}
aside .hamburger span {
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background-color: #000;
  transition: all 0.3s;
}
aside .hamburger span:nth-child(1) {
  top: 13px;
}
aside .hamburger span:nth-child(2) {
  top: 22px;
}
aside .hamburger span:nth-child(3) {
  top: 31px;
}
aside .hamburger.active span:nth-child(1) {
  top: 22px;
  transform: translateX(-50%) rotate(45deg);
}
aside .hamburger.active span:nth-child(2) {
  opacity: 0;
}
aside .hamburger.active span:nth-child(3) {
  top: 22px;
  transform: translateX(-50%) rotate(-45deg);
}
aside .aside_sp {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}
aside .aside_sp .sp_menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 100%;
  background: #F0FF64;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 70px 20px 30px;
  overflow-y: auto;
}
aside .aside_sp .sp_menu .header_sp_img img {
  display: block;
  margin: 0 auto;
  max-width: 80%;
}
aside .aside_sp .sp_menu .header_sp_img .header_02 {
  margin-top: 15px;
}
aside .aside_sp .sp_menu .link {
  margin: 40px auto 25px;
}
aside .aside_sp .sp_menu .link li {
  margin-bottom: 15px;
  text-align: center;
}
aside .aside_sp .sp_menu .link li a {
  font-size: 18px;
  display: block;
  padding: 5px;
}
aside .aside_sp .sp_menu .sns {
  display: flex;
  justify-content: center;
  gap: 15px;
}
aside .aside_sp.active {
  display: block;
}
aside .aside_sp.active .sp_menu {
  transform: translateX(0);
}
@media screen and (max-width: 599px) {
  aside .hamburger {
    display: block;
  }
}

/*************************************************
header
*************************************************/
/*************************************************
footer
*************************************************/
footer {
  background-color: #82e6eb;
  padding-bottom: 40px;
}
@media screen and (max-width: 599px) {
  footer {
    padding-bottom: 20px;
  }
}
footer .footer_inner {
  padding: 100px 0 0;
  padding-left: 17.3611111111vw;
}
@media screen and (max-width: 599px) {
  footer .footer_inner {
    padding: 50px 20px;
  }
}
@media screen and (max-width: 599px) {
  footer .footer_inner .section_inner .section_ttl img {
    width: 60%;
  }
}
footer .footer_inner .section_inner .content {
  padding: 50px 0;
}
footer .footer_inner .section_inner .content ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
footer .footer_inner .section_inner .content ul li {
  max-width: 150px;
  width: 16%;
  margin: 2%;
}
@media screen and (max-width: 599px) {
  footer .footer_inner .section_inner .content ul li {
    width: 20%;
  }
}
footer .footer_inner .section_inner .content ul li:hover {
  opacity: 0.7;
}
footer .footer_inner .section_inner .content ul li a {
  display: block;
}
footer .footer_inner .section_inner .content ul li a img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 599px) {
  footer .footer_inner .section_inner .content {
    padding: 50px 10px;
  }
}
footer .footer_inner .section_inner .content .cs {
  width: fit-content;
  margin: 200px auto;
}
@media screen and (max-width: 599px) {
  footer .footer_inner .section_inner .content .cs img {
    display: block;
    width: 100%;
  }
}
footer .footer_inner .section_inner .footer_img {
  display: block;
  width: fit-content;
  margin: 0 auto 60px;
}
@media screen and (max-width: 599px) {
  footer .footer_inner .section_inner .footer_img {
    width: 100%;
  }
}
footer .footer_inner:last-child {
  padding-top: 0;
}
footer .footer_inner:last-child .section_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}
@media screen and (max-width: 599px) {
  footer .footer_inner:last-child .section_inner {
    display: block;
  }
}
footer .footer_inner:last-child .section_inner .footer_link {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 599px) {
  footer .footer_inner:last-child .section_inner .footer_link {
    justify-content: space-around;
    margin-bottom: 30px;
  }
}
footer .footer_inner:last-child .section_inner .footer_link a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 20px;
  background: #000;
  color: #fff;
}
footer .footer_inner:last-child .section_inner .footer_link a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 599px) {
  footer .footer_inner:last-child .section_inner small {
    display: block;
    text-align: center;
  }
}
footer .footer_line {
  width: 100%;
  height: 20px;
  background: #f0ff64;
  border-top: 4px solid #000;
  border-bottom: 4px solid #000;
}

/*************************************************
navi
*************************************************/
/*************************************************
fv
*************************************************/
#fv {
  width: calc(100% - 17.3611111111vw);
  margin-left: 17.3611111111vw;
  min-height: 56.25vw;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#fv img {
  width: 69.9305555556vw;
}
@media screen and (max-width: 599px) {
  #fv {
    width: 100%;
    height: 80vh;
    margin: 0;
    padding: 0 20px;
  }
  #fv img {
    width: 100%;
  }
}

/*************************************************
slide
*************************************************/
#slide {
  padding: 50px 0;
  padding-left: 17.3611111111vw;
  background-color: #f0ff64;
  margin-bottom: 200px;
}
#slide .section_inner .slide li img {
  display: block;
  width: 100%;
  padding: 0 15px;
}
#slide .section_inner .slide li a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 599px) {
  #slide .section_inner .slide {
    display: none;
  }
}
#slide .section_inner .slide_sp {
  display: none;
}
@media screen and (max-width: 599px) {
  #slide .section_inner .slide_sp {
    display: block;
  }
  #slide .section_inner .slide_sp li img {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  #slide {
    width: 100%;
    padding: 50px 20px;
    margin-bottom: 100px;
  }
}
#slide .slick-dots {
  bottom: -50px !important;
}
@media screen and (max-width: 599px) {
  #slide .slick-dots {
    bottom: -80px !important;
  }
}

/*************************************************
about
*************************************************/
#about {
  width: calc(100% - 17.3611111111vw);
  margin-left: 17.3611111111vw;
  margin-bottom: 200px;
}
@media screen and (max-width: 599px) {
  #about {
    width: 100%;
    padding: 0 20px;
    margin-left: 0;
    margin-bottom: 100px;
  }
}
#about .section_inner .content {
  padding: 30px 0 50px;
}
@media screen and (max-width: 599px) {
  #about .section_inner .content {
    padding: 30px 10px 50px;
  }
}
#about .section_inner .content img {
  display: block;
  margin: 0 auto;
  width: fit-content;
}
#about .section_inner .content p {
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.9px;
  line-height: 2;
}
@media screen and (max-width: 599px) {
  #about .section_inner .content p {
    font-size: 14px;
  }
}
#about .section_inner .content .treat_01 {
  position: absolute;
  left: -92px;
  top: -101px;
}
#about .section_inner .content .treat_02 {
  position: absolute;
  right: -67px;
  bottom: -83px;
}

/*************************************************
ニュース
*************************************************/
#news {
  width: calc(100% - 17.3611111111vw);
  margin-left: 17.3611111111vw;
  margin-bottom: 100px;
}
@media screen and (max-width: 599px) {
  #news {
    width: 100%;
    padding: 0 20px;
    margin-left: 0;
    margin-bottom: 50px;
  }
}
#news .section_inner .content {
  padding: 70px 100px;
  height: 400px;
  overflow-y: scroll;
}
@media screen and (max-width: 599px) {
  #news .section_inner .content {
    padding: 30px 10px 50px;
  }
}
#news .section_inner .content ul li {
  padding: 30px 0;
  border-bottom: 1px #000 solid;
}
#news .section_inner .content ul li div {
  display: flex;
  align-items: center;
}
#news .section_inner .content ul li div .date {
  display: inline-block;
  margin-right: 30px;
  margin-bottom: 5px;
  font-size: 16px;
  padding: 5px 0px;
}
@media screen and (max-width: 599px) {
  #news .section_inner .content ul li div .date {
    font-size: 12px;
  }
}
#news .section_inner .content ul li div .tag {
  display: inline-block;
  background-color: #71dea2;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 5px;
}
@media screen and (max-width: 599px) {
  #news .section_inner .content ul li div .tag {
    font-size: 12px;
  }
}
#news .section_inner .content ul li p {
  font-size: 20px;
}
@media screen and (max-width: 599px) {
  #news .section_inner .content ul li p {
    font-size: 14px;
  }
}

/*************************************************
cast
*************************************************/
#cast {
  padding: 100px 0;
  padding-left: 17.3611111111vw;
  background-color: #fd5b7d;
}
@media screen and (max-width: 599px) {
  #cast {
    width: 100%;
    padding: 50px 10px;
  }
}
#cast .section_inner h3 {
  font-size: 28px;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}
#cast .section_inner .cast_link {
  display: flex;
  background: #fff;
  border-radius: 999px;
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  #cast .section_inner .cast_link {
    display: flex;
    align-items: center;
  }
}
#cast .section_inner .cast_link a {
  flex: 1;
  padding: 20px 10px;
  border: none;
  background: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.3888888889vw;
  text-align: center;
}
@media screen and (max-width: 599px) {
  #cast .section_inner .cast_link a {
    font-size: 12px;
    line-height: 1.2;
    padding: 8px 4px;
    height: auto;
    white-space: pre-wrap;
  }
  #cast .section_inner .cast_link a:last-child {
    padding-top: 4px;
    padding-bottom: 4px;
    line-height: 1;
  }
}
#cast .section_inner .cast_link a:hover {
  background: #000;
  color: #fff;
}
#cast .section_inner .cast_grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 50px 14px;
  margin-bottom: 100px;
}
@media screen and (max-width: 599px) {
  #cast .section_inner .cast_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 10px;
  }
}
#cast .section_inner .cast_grid .cast_item a {
  display: block;
}
#cast .section_inner .cast_grid .cast_item a:hover {
  opacity: 0.8;
}
#cast .section_inner .cast_grid .cast_item a img {
  width: 100%;
  height: 100%;
}
#cast .cs {
  width: fit-content;
  margin: 150px auto;
}
#cast .cs img {
  display: block;
}

/*************************************************
brand
*************************************************/
#brand {
  padding: 100px 0;
  padding-left: 17.3611111111vw;
  background-color: #fd8912;
}
@media screen and (max-width: 599px) {
  #brand {
    padding: 50px 20px;
  }
}
#brand .section_inner .brand_wrap {
  margin: 0 auto;
  width: 800px;
  display: grid;
  grid-template-columns: repeat(4, 150px);
  gap: 50px 62px;
}
@media screen and (max-width: 599px) {
  #brand .section_inner .brand_wrap {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 10px;
  }
}
#brand .section_inner .brand_wrap li {
  width: 150px;
}
@media screen and (max-width: 599px) {
  #brand .section_inner .brand_wrap li {
    display: block;
    margin: 0 auto;
  }
}
#brand .section_inner .brand_wrap li .flip-card {
  width: 150px;
  height: 150px;
  perspective: 1000px;
}
#brand .section_inner .brand_wrap li .flip-card .flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  cursor: pointer;
}
#brand .section_inner .brand_wrap li .flip-card .flip-card-inner.is-flipped {
  transform: rotateY(180deg);
}
#brand .section_inner .brand_wrap li .flip-card .flip-card-inner .flip-card-front,
#brand .section_inner .brand_wrap li .flip-card .flip-card-inner .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}
#brand .section_inner .brand_wrap li .flip-card .flip-card-inner .flip-card-front {
  display: block;
  width: 100%;
}
#brand .section_inner .brand_wrap li .flip-card .flip-card-inner .flip-card-front img {
  display: block;
  margin-bottom: 15px;
  width: 100%;
}
@media screen and (max-width: 599px) {
  #brand .section_inner .brand_wrap li .flip-card .flip-card-inner .flip-card-front img {
    width: 100%;
  }
}
#brand .section_inner .brand_wrap li .flip-card .flip-card-inner .flip-card-back {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  color: #fff;
  border-radius: 20px;
  transform: rotateY(180deg);
}
#brand .section_inner .brand_wrap li .flip-card .flip-card-inner .flip-card-back .brand-description {
  font-size: 11px;
  line-height: 1.5;
  padding: 0 12px;
}
#brand .section_inner .brand_wrap li .social-links {
  margin-top: 15px;
  display: flex;
  gap: 15px;
  justify-content: center;
}
#brand .section_inner .brand_wrap li .social-links a {
  display: block;
}
#brand .section_inner .brand_wrap li .social-links a:hover {
  opacity: 0.7;
}

/*************************************************
timetable
*************************************************/
#timetable {
  width: calc(100% - 17.3611111111vw);
  margin-left: 17.3611111111vw;
  margin-bottom: 200px;
  margin-top: 100px;
}
@media screen and (max-width: 599px) {
  #timetable {
    width: 100%;
    margin-left: 0;
    padding: 0 20px;
    margin: 50px 0 100px;
  }
}
#timetable .section_inner .content {
  padding: 100px 0;
}
@media screen and (max-width: 599px) {
  #timetable .section_inner .content {
    padding: 50px 10px;
  }
}
#timetable .section_inner .content h3 {
  font-size: 20px;
  text-align: center;
  margin-bottom: 30px;
}
#timetable .section_inner .content p {
  font-size: 16px;
  line-height: 1.8;
  width: fit-content;
  margin: 0 auto 50px;
}
@media screen and (max-width: 599px) {
  #timetable .section_inner .content p {
    font-size: 14px;
  }
}
#timetable .section_inner .content .ts {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
#timetable .section_inner .content .cs {
  width: fit-content;
  margin: 100px auto;
}
#timetable .section_inner .content .cs img {
  display: block;
  width: 100%;
}
#timetable .section_inner .content .treat_03 {
  position: absolute;
  right: -92px;
  top: -30px;
}
#timetable .section_inner .content .treat_04 {
  position: absolute;
  left: -128px;
  bottom: -105px;
}

/*************************************************
ライブ配信
*************************************************/
#livestream {
  width: calc(100% - 17.3611111111vw);
  margin-left: 17.3611111111vw;
  margin-bottom: 200px;
}
@media screen and (max-width: 599px) {
  #livestream {
    width: 100%;
    margin-left: 0;
    margin-bottom: 100px;
    padding: 0 20px;
  }
}
#livestream .section_inner .content {
  padding: 100px 0;
}
@media screen and (max-width: 599px) {
  #livestream .section_inner .content {
    padding: 50px 10px;
  }
}
#livestream .section_inner .content p {
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 599px) {
  #livestream .section_inner .content p {
    font-size: 14px;
  }
}
#livestream .section_inner .content h3 {
  margin: 10px 0 30px;
  text-align: center;
  font-size: 24px;
  color: #fd8912;
}
#livestream .section_inner .content .livestream_btn {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 50px;
}
@media screen and (max-width: 599px) {
  #livestream .section_inner .content .livestream_btn {
    display: block;
    width: fit-content;
    margin: 60px auto 0;
  }
}
#livestream .section_inner .content .livestream_btn a {
  display: block;
}
@media screen and (max-width: 599px) {
  #livestream .section_inner .content .livestream_btn a {
    margin-bottom: 30px;
  }
  #livestream .section_inner .content .livestream_btn a:last-child {
    margin-bottom: 0;
  }
}
#livestream .section_inner .content .livestream_btn a:hover {
  opacity: 0.7;
}
#livestream .section_inner .content .livestream_btn a img {
  display: block;
  width: 100%;
}
#livestream .section_inner .content .treat_05 {
  position: absolute;
  left: -58px;
  top: -51px;
}
#livestream .section_inner .content .treat_06 {
  position: absolute;
  right: -52px;
  bottom: -45px;
}

/*************************************************
チケット
*************************************************/
#ticket {
  width: calc(100% - 17.3611111111vw);
  margin-left: 17.3611111111vw;
  margin-bottom: 200px;
}
@media screen and (max-width: 599px) {
  #ticket {
    width: 100%;
    margin-left: 0;
    margin-bottom: 100px;
    padding: 0 20px;
  }
}
#ticket .section_inner .content {
  padding: 100px 0;
}
@media screen and (max-width: 599px) {
  #ticket .section_inner .content {
    padding: 50px 10px;
  }
}
#ticket .section_inner .content p {
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 599px) {
  #ticket .section_inner .content p {
    font-size: 14px;
  }
}
#ticket .section_inner .content .price {
  margin-top: 50px;
}
#ticket .section_inner .content .price h3 {
  width: 250px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 20px;
  background: #000;
  color: #fff;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 50px;
}
@media screen and (max-width: 599px) {
  #ticket .section_inner .content .price h3 {
    font-size: 18px;
  }
}
#ticket .section_inner .content .price .price_wrap {
  display: flex;
  gap: 60px;
  justify-content: center;
}
@media screen and (max-width: 599px) {
  #ticket .section_inner .content .price .price_wrap {
    display: block;
    margin: 0 auto;
    width: fit-content;
  }
  #ticket .section_inner .content .price .price_wrap img {
    display: block;
  }
}
#ticket .section_inner .content .schedule {
  margin-top: 60px;
}
#ticket .section_inner .content .schedule h3 {
  width: 250px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 20px;
  background: #000;
  color: #fff;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 50px;
}
@media screen and (max-width: 599px) {
  #ticket .section_inner .content .schedule h3 {
    font-size: 18px;
  }
}
#ticket .section_inner .content .schedule .schedule_01 {
  margin-bottom: 30px;
}
#ticket .section_inner .content .schedule .schedule_01 p {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
  font-size: 20px;
}
@media screen and (max-width: 599px) {
  #ticket .section_inner .content .schedule .schedule_01 p {
    font-size: 16px;
  }
}
#ticket .section_inner .content .schedule .schedule_01 .soldout {
  position: relative;
}
#ticket .section_inner .content .schedule .schedule_01 .soldout::after {
  position: absolute;
  content: url(../images/soldout.svg);
  top: -30%;
  left: 50%;
  display: inline-block;
  width: 140px;
  height: 30px;
}
#ticket .section_inner .content .schedule .schedule_01 .ticket_link {
  margin-top: 30px;
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 599px) {
  #ticket .section_inner .content .schedule .schedule_01 .ticket_link {
    display: block;
    margin: 30px auto 0;
    width: fit-content;
  }
  #ticket .section_inner .content .schedule .schedule_01 .ticket_link a {
    display: block;
    margin-bottom: 15px;
    width: fit-content;
  }
}
#ticket .section_inner .content span {
  color: #ff001f;
  font-size: 14px;
  display: block;
  text-align: center;
}
#ticket .section_inner .content .treat_07 {
  position: absolute;
  left: -59px;
  top: -63px;
}
#ticket .section_inner .content .treat_08 {
  position: absolute;
  right: -63px;
  top: 415px;
}
#ticket .section_inner .content .treat_10 {
  position: absolute;
  left: -81px;
  bottom: -63px;
}

/*************************************************
アクセス
*************************************************/
#access {
  width: calc(100% - 17.3611111111vw);
  margin-left: 17.3611111111vw;
  margin-bottom: 100px;
}
@media screen and (max-width: 599px) {
  #access {
    width: 100%;
    margin-left: 0;
    margin-bottom: 50px;
    padding: 0 20px;
  }
}
#access .section_inner .content {
  padding: 100px 0;
}
@media screen and (max-width: 599px) {
  #access .section_inner .content {
    padding: 50px 10px;
  }
}
#access .section_inner .content .access_inner {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 55px;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  #access .section_inner .content .access_inner {
    gap: 15px;
  }
}
#access .section_inner .content .access_inner span {
  width: 200px;
  height: 40px;
  border-radius: 20px;
  background: #fd5b7d;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 599px) {
  #access .section_inner .content .access_inner span {
    width: 100px;
    font-size: 14px;
  }
}
#access .section_inner .content .access_inner p {
  font-size: 18px;
  letter-spacing: 0.9px;
}
@media screen and (max-width: 599px) {
  #access .section_inner .content .access_inner p {
    font-size: 14px;
  }
}
#access .section_inner .content .gmap {
  max-width: 800px;
  height: 400px;
  margin: 0 auto 30px;
}
@media screen and (max-width: 599px) {
  #access .section_inner .content .gmap {
    width: 100%;
    height: 260px;
  }
}
#access .section_inner .content .gmap iframe {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 20px;
}
#access .section_inner .content .treat_11 {
  position: absolute;
  right: -63px;
  top: -93px;
}
#access .section_inner .content .treat_12 {
  position: absolute;
  left: -97px;
  bottom: -56px;
}

/*************************************************
report
*************************************************/
#report {
  padding-top: 100px;
  width: calc(100% - 17.3611111111vw);
  margin-left: 17.3611111111vw;
  margin-bottom: 100px;
}
@media screen and (max-width: 599px) {
  #report {
    width: 100%;
    padding: 0 20px;
    margin-left: 0;
    margin-bottom: 100px;
    padding-top: 100px;
  }
}
#report .section_inner .report_list {
  display: flex;
  justify-content: space-between;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  #report .section_inner .report_list {
    display: block;
  }
  #report .section_inner .report_list li {
    margin-bottom: 10px;
  }
  #report .section_inner .report_list li a img {
    display: block;
    width: 60%;
    margin: 0 auto;
  }
}

.report_img a {
  position: relative;
  display: block;
}
.report_img a::after {
  content: "©︎超十代";
  position: absolute;
  bottom: 5px;
  right: 5px;
  font-size: 10px;
  color: #fff;
  font-weight: 100;
  z-index: 100;
}
.report_img img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
}

#op, #first, #second {
  width: calc(100% - 17.3611111111vw);
  margin-left: 17.3611111111vw;
  margin-bottom: 100px;
}
@media screen and (max-width: 599px) {
  #op, #first, #second {
    width: 100%;
    padding: 0 20px;
    margin-left: 0;
    margin-bottom: 100px;
  }
}
#op .section_inner .content, #first .section_inner .content, #second .section_inner .content {
  padding: 100px 50px;
}
@media screen and (max-width: 599px) {
  #op .section_inner .content, #first .section_inner .content, #second .section_inner .content {
    padding: 30px 10px 50px;
  }
}
#op .section_inner .content h3, #first .section_inner .content h3, #second .section_inner .content h3 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
  color: #fd8912;
  font-weight: 700;
}
#op .section_inner .content h4, #first .section_inner .content h4, #second .section_inner .content h4 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 15px;
}
#op .section_inner .content .report_img_wrap_tate, #first .section_inner .content .report_img_wrap_tate, #second .section_inner .content .report_img_wrap_tate {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 100px;
}
@media screen and (max-width: 599px) {
  #op .section_inner .content .report_img_wrap_tate, #first .section_inner .content .report_img_wrap_tate, #second .section_inner .content .report_img_wrap_tate {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 50px;
  }
}
#op .section_inner .content .report_img_wrap_yoko, #first .section_inner .content .report_img_wrap_yoko, #second .section_inner .content .report_img_wrap_yoko {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 50px;
}
#op .section_inner .content .report_img_wrap_tate a, #first .section_inner .content .report_img_wrap_tate a, #second .section_inner .content .report_img_wrap_tate a {
  aspect-ratio: 2/3;
  overflow: hidden;
  display: block;
}
#op .section_inner .content .report_img_wrap_tate a img, #first .section_inner .content .report_img_wrap_tate a img, #second .section_inner .content .report_img_wrap_tate a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}