/*************************************************
チケット ページ
*************************************************/
#ticket .section_inner {
  margin-bottom: 120px;
}
@media screen and (max-width: 599px) {
  #ticket {
    padding: 0;
  }
  #ticket .section_inner .section_ttl:not(.ticket_schedule .section_ttl) {
  max-width: 450px !important;
}
}

#ticket .section_inner .section_ttl .character-img-left {
  max-width: 150px !important;
}
#ticket .section_inner .content {
  padding: 50px 0 30px;
  background-color: #fff;
  margin-bottom: 60px;
}
.ticket_text {
  font-size: 25px;
  text-align: center;
  line-height: 1.5;
  font-weight: 600;
}
@media screen and (max-width: 599px) {
  .ticket_text p {
    font-size: 14px;
  }
}
.kaijo_map img {
  display: block;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.ticket_flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 10px;
}
.ticket_content {
  text-align: center;
  width: 48%;
  padding: 10px;
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .ticket_content {
    width: calc(100% - 20px);
    margin: 0 10px 20px;
  }
}
.ticket_content .ticket_item {
  padding: 20px 0;
  border-bottom: 0.5px solid #ccc;
}
.ticket_content .ticket_item p {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}
.ticket_content .ticket_item-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.ticket_content .ticket_item p.small {
  font-size: 12px;
}
.ticket_content .ticket_item .circle {
  display: inline-block;
  width: 20px;
  aspect-ratio: 1;
  border-radius: 100%;
  background-color: #e73c92;
  margin-right: 5px;
}
.ticket_content.arena .ticket_item .circle {
  background-color: #ef851e;
}
.ticket_content.stand .ticket_item .circle {
  background-color: #009ee9;
}
.ticket_content.support .ticket_item .circle {
  background-color: #7438d7;
}
.ticket_price,
.ticket_price tbody {
  display: block;
  width: 100%;
  font-size: 20px;
  padding: 10px 0;
}
.ticket_price tr {
  display: flex;
  justify-content: center;
  padding-bottom: 5px;
}
.ticket_price tr th {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  font-weight: 600;
  padding-right: 10px;
}
.ticket_price tr td {
  color: darkgreen;
  font-size: 30px;
  font-family: "Sofia Sans";
  font-weight: bold;
}
.ticket_price tr td span {
  color: #000;
  font-size: 16px;
  font-weight: 600;
}

.ticket_schedule {
  margin-top: 80px;
}
.ticket_schedule .section_ttl {
  max-width: 700px;
  margin-bottom: 0;
}
@media (max-width:599px) {
  .ticket_schedule .section_ttl {
    max-width: none;
  }
}
.ticket_schedule .section_ttl .ttl-img {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0px auto 30px;
  object-fit: cover;
  z-index: 10;
}
.ticket_schedule .section_ttl .character-img-right {
  margin: 0;
  max-width: 150px !important;
  z-index: 5;
}
.ticket_schedule p {
  padding-left: 5px;
  padding-bottom: 10px;
}
.schedule_content {
  width: 100%;
  background-color: #fff;
  padding: 30px;
  margin-bottom: 50px;
}
.schedule_content.bg-none {
  background: none;
}
.schedule_content.green {
  background-color: #aed5ba
}
.schedule_content.gray {
  background-color: #ccc;
}
.schedule_content.gray p.red {
  color: red;
  font-size: 25px;
  font-weight: bold;
}
.schedule_content h3 {
  font-size: 25px;
  font-weight: bold;
  padding-bottom: 15px;
}
.schedule_content p {
  font-size: 18px;
  font-weight: 600;
  padding: 0 0 10px 0;
}
.schedule_content span {
  font-size: 16px;
  font-weight: normal;
}
.schedule_content p a {
  color: #009ee9;
  border-bottom: 1px solid #009ee9;
  font-weight: bold;
}
.schedule_content p a:hover {
  opacity: 0.5;
}
.schedule_content .entry_content {
  margin-top: 20px;
}
.schedule_content .btn_container {
  text-align: center;
}
.schedule_content .more_btn {
  position: relative;
  margin-top: 20px;
  margin-bottom: 5px;
}
.schedule_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;
}
.schedule_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;
}
.schedule_content .more_btn a:hover {
  color: #000;
  transform: scale(1.1);
}
.schedule_content .more_btn a:hover::after {
  transform: scale(1.1);
}
.schedule_content .more_btn a span {
  display: inline-block;
  padding-left: min(2vw, 20px);
}
.schedule_content .playguide {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
padding: 0 20px;
opacity: 0.5;
margin-top: 30px;
}
.schedule_content .playguide li {
  padding: 0 10px;
  margin-bottom: 10px;
}
.schedule_content .playguide li a {
  width: fit-content;
  display: block;
  pointer-events: none;
}
.schedule_content .playguide li a img {
  display: block;
  max-width: 200px;
  width: 100%;
}
.schedule_content .coming-soon-container {
    max-width: 500px;
  margin: 0 auto;
}
.schedule_content img.coming-soon {
  width: 100%;
  aspect-ratio: 5/1;
  object-fit: cover;
}

/* .ticket_content h3 {
  display: block;
  width: 100%;
  max-width: 200px;
  text-align: center;
  padding: 10px 5px;
  background-color: var(--main-color);
  margin: 0 auto 30px;
}
.ticket_content .date-container {
    display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
*/
/* .ticket_content p.date {
  font-family: "Sofia Sans";
  font-size: 30px;
  font-weight: bold;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  margin: 0;
}
.ticket_content p.date.padding {
  padding: 0 10px;
}
.ticket_content p.date span {
  font-size: 15px;
  display: inline-block;
  padding: 2.5px 5px 0;
  border: 0.5px solid #000;
  margin: 0 15px 0 5px;
}


.ticket_contact {
  padding-bottom: 60px;
}
.ticket_contact h3 {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .ticket_contact h3 {
    font-size: 16px;
  }
}
.ticket_contact p {
  text-align: center;
  font-weight: 600;
}
@media screen and (max-width: 599px) {
  .ticket_contact p {
    font-size: 14px;
  }
}
.ticket_contact span {
  font-weight: 600;
  font-family: "Sofia Sans";
  font-size: 24px;
  display: block;
  text-align: center;
  margin: 15px 0;
}

.ticket_cs table {
  position: relative;
}
.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_cs p {
  margin-top: 15px;
  text-align: center;
  font-weight: 600;
}
@media screen and (max-width: 599px) {
  .ticket_cs p {
    font-size: 14px;
    line-height: 1.5;
  }
}
.soldout table {
  position: relative;
}
.soldout table::before {
  position: absolute;
  content: url(../images/soldout.svg);
  width: 160px;
  height: 90px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
} */
