@charset "UTF-8";
/* ここからcss ------------------------- */
.pc_only {
  display: none;
}

html {
  scroll-behavior: smooth;
}

.inview {
  transition: 0.6s;
  opacity: 0;
  transform: translate(0, 60px);
}

.inview_on {
  opacity: 1;
  transform: translate(0, 0) !important;
}

.inview_up {
  transition: 0.6s;
  transform: scale(1);
  /* 初期状態のスケール */
  transition: transform 1s ease;
}

.inview_upafter {
  transform: scale(1.2);
  /* 初期状態のスケール */
}

.fade_up {
  overflow: hidden;
}

.fade_up span {
  position: relative;
  bottom: -100px;
  display: inline-block;
  line-height: 1.2;
}

.fade_up_on span {
  animation: nyu 0.5s ease-out forwards;
}

@keyframes nyu {
  0% {
    bottom: -100px;
  }
  80% {
    bottom: 5px;
  }
  100% {
    bottom: 0px;
  }
}
.size_up {
  opacity: 0;
  transform: scale(1.2);
  transition: 0.5s;
}

.size_up_on {
  opacity: 1;
  transform: scale(1);
}

.top_up {
  opacity: 0;
  transform: scale(1);
  transition: transform 6s;
}

.top_up_on {
  opacity: 1;
  transform: scale(1.2, 1.2);
}

.top_image_up {
  opacity: 0;
  transform: scale(0.9, 0.9);
  transition: transform 1s, opacity 1s;
  transition-delay: 0.5s;
}

.top_image_up_on {
  opacity: 1;
  transform: scale(1, 1);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  vertical-align: bottom;
}

body {
  font-family: "Roboto", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-style: normal;
  overflow-x: hidden;
}

.font_anton {
  font-family: "Anton", serif;
  font-style: normal;
}

.font_russo {
  font-family: "Russo One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

[id] {
  scroll-margin-top: 12vw;
}

.global_header {
  background-color: black;
  position: sticky;
  top: 0;
  z-index: 999;
}
.global_header .header_inner {
  height: 12vw;
  padding-left: 7.5vw;
  padding-right: 7.5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.global_header .header_inner h1 {
  width: 42vw;
}
.global_header .header_inner .pc_only {
  display: none;
}
.global_header .menu-trigger {
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 1001;
}
.global_header .menu-trigger span {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
}
.global_header .menu-trigger span:first-of-type {
  /* ハンバーガーメニューの1番目の線 */
  top: 0;
  transition-duration: 0.5s;
}
.global_header .menu-trigger span:nth-of-type(2) {
  /* ハンバーガーメニューの2番目の線 */
  top: 50%;
  transition-duration: 0.5s;
}
.global_header .menu-trigger span:last-of-type {
  /* ハンバーガーメニューの3番目の線 */
  top: 100%;
  transition-duration: 0.5s;
}

.menu-trigger.active span:first-of-type {
  /* ハンバーガーメニューの1番目の線 */
  top: 50%;
  transform: rotate(45deg);
}

.menu-trigger.active span:nth-of-type(2) {
  /* ハンバーガーメニューの2番目の線 */
  opacity: 0;
  /* 透明にする */
}

.menu-trigger.active span:last-of-type {
  /* ハンバーガーメニューの3番目の線 */
  top: 50%;
  transform: rotate(-45deg);
}

nav {
  background-color: #000;
  height: calc(100vh - 12vw);
  position: fixed;
  top: 12vw;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  left: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
nav .right_nav_schedule_list {
  height: 80vh;
  display: flex;
  flex-direction: column;
  text-align: left;
  justify-content: space-between;
}
nav .right_nav_schedule_list li {
  color: #fff;
  font-size: 5vw;
}
nav .right_nav_schedule_list li a {
  border-bottom: 7px solid #1D2088;
  display: inline-block;
  position: relative;
  text-decoration: none;
  transition: border-color 0.5s ease;
}
nav .right_nav_schedule_list li a:hover {
  border-bottom-color: #E60027;
}
nav .right_nav_schedule_list li a::before {
  content: "";
  position: absolute;
  bottom: -7px;
  width: 10px;
  height: 7px;
  background: #E60027;
  /*左：ピンク*/
}
nav .right_nav_schedule_list li:not(:first-child) {
  margin-top: 5vw;
}

nav.active {
  opacity: 1;
  pointer-events: auto;
}

/* ヘッダー非表示内容*/
.right_nav_schedule_list li:nth-child(5) {
  /*非表示にしておく*/
}

.right_nav_schedule_list li:nth-child(6) {
  /*非表示にしておく*/
}

.right_nav_schedule_list li:nth-child(7) {
  /*非表示にしておく*/
}

.fv {
  position: sticky;
  top: 12vw;
  z-index: -1;
}
.fv .fv_image {
  background: #000;
  overflow: hidden;
  position: relative;
  width: 100vw;
}
.fv .fv_image > img {
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  height: calc(100vh - 12vw);
  width: 100vw;
}
.fv .fv_image p {
  position: absolute;
  width: 100vw;
  max-width: 100vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.buy_btn {
  position: fixed;
  bottom: 0;
  z-index: 2;
}
.buy_btn .buy_btn_sp {
  display: flex;
}
.buy_btn .buy_btn_sp a img {
  width: 50vw;
}

.redfont {
  color: #E60027;
}

.whiteont {
  color: #fff;
}

.bluefont {
  color: #1D2088;
}

.taxfont {
  font-size: 2.5vw;
  margin-left: 2.5vw;
}

.taxfont_s {
  font-size: 2.5vw;
}

.sec-wrapper {
  background-image: url(../image/back_2026.jpg);
  background-position: center center;
  background-size: cover;
  width: 100vw;
}

.content_title {
  max-width: 85vw;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  padding-bottom: 7vw;
}
.content_title .content_title_l {
  font-size: 8vw;
  font-weight: bold;
  letter-spacing: normal;
  white-space: nowrap;
}
.content_title .content_title_m {
  font-size: 3vw;
  margin-left: 1vw;
  font-weight: bold;
  letter-spacing: normal;
  white-space: nowrap;
}

.schedule {
  padding-top: 11.25vw;
  padding-bottom: 6.875vw;
}

.schedule_content {
  max-width: 85vw;
  margin: 0 auto;
}
.schedule_content ul {
  display: flex;
  width: 85vw;
}
.schedule_content ul .schedule_year {
  width: 10.875vw;
  height: 100px;
  background-color: #1D2088;
  display: flex;
  align-items: center;
  justify-content: center;
}
.schedule_content ul .schedule_year .schedule_year_text {
  transform: rotate(-90deg);
  width: clamp(70px, 12vw, 100px);
  color: #fff;
  font-size: clamp(25px, 4.7vw, 37px);
  letter-spacing: normal;
}
.schedule_content ul .schedule_date {
  font-size: 8vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  width: 42vw;
  height: 100px;
  background-image: url(../image/haikei.jpg);
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: lighten;
}
.schedule_content ul .schedule_start {
  width: 32.125vw;
  height: 100px;
  color: #fff;
  background-color: #1D2088;
  display: flex;
  flex-flow: column;
  gap: clamp(6px, 1.5vw, 8px);
  justify-content: center;
}
.schedule_content ul .schedule_start .schedule_start_text {
  font-size: clamp(22px, 4.2vw, 26px);
  text-align: center;
  letter-spacing: normal;
}
.schedule_content ul .schedule_start .schedule_start_coment {
  font-size: 1.75vw;
  text-align: center;
  letter-spacing: normal;
}

.button {
  max-width: 85vw;
  margin: 0 auto;
  padding-top: 7.5vw;
}
.button .ticket_button {
  font-size: 3.75vw;
  background-color: #E60027;
  color: #fff;
  width: 27.15vw;
  padding-top: 1.25vw;
  padding-bottom: 1.25vw;
  text-align: center;
  border-radius: 30px;
  text-align: center;
  margin-left: auto;
  font-weight: bold;
  letter-spacing: normal;
  border: #E60027 solid 2px;
  transition-duration: 0.3s;
}
.button .ticket_button:hover {
  background-color: #ffffff;
  color: #E60027;
  padding-top: 1.25vw;
  padding-bottom: 1.25vw;
  border: #E60027 solid 2px;
}

.about {
  padding-top: 11.25vw;
  padding-bottom: 11.25vw;
}
.about .about_content {
  max-width: 85vw;
  margin: 0 auto;
  color: #fff;
  letter-spacing: normal;
  font-size: 3vw;
  line-height: 6vw;
}

.news {
  padding-top: 11.25vw;
  padding-bottom: 11.25vw;
  background: #fff;
}
.news .news_content {
  max-width: 85vw;
  margin: 0 auto;
}
.news .news_content p {
  display: inline;
}
.news .news_content dt {
  font-size: 2.75vw;
  letter-spacing: normal;
}
.news .news_content dt:not(:first-child) {
  padding-top: 3.125vw;
}
.news .news_content dd {
  font-size: 3vw;
  letter-spacing: normal;
  padding-top: 2vw;
  padding-bottom: 2.625vw;
  border-bottom: 1px solid #000;
}

.all_button {
  font-size: 3.25vw;
  width: 25vw;
  padding-top: 1.25vw;
  padding-bottom: 1.25vw;
  text-align: center;
  border-radius: 30px;
  border: 2px solid #1D2088;
  background-color: #fff;
  text-align: center;
  color: #1D2088;
  margin-left: auto;
  font-weight: bold;
  letter-spacing: normal;
  transition-duration: 0.3s;
}
.all_button:hover {
  background-color: #1D2088;
  color: #ffffff;
  padding-top: 1.25vw;
  padding-bottom: 1.25vw;
  border: #1D2088 solid 2px;
}

.artist {
  padding-top: 11.25vw;
  padding-bottom: 11.25vw;
  background-color: #E7F5FE;
  overflow: hidden;
}
.artist p.artist_comingsoon {
  font-size: 20px;
  color: #000000;
  text-align: center;
  padding: 3rem 0 3rem 0;
}
.artist .artist_day {
  margin-left: auto;
  margin-right: auto;
  max-width: 85vw;
  display: flex;
  align-items: end;
  justify-content: center;
  position: relative;
  text-align: center;
  font-size: 7vw;
  letter-spacing: normal;
  line-height: 1;
  /*非表示にしておく*/
}
.artist .artist_day .artist_week {
  font-size: 3.5vw;
  margin-left: 0.5vw;
  line-height: 1.7;
}
.artist .artist_day::before,
.artist .artist_day::after {
  background: #000;
  content: "";
  width: 34%;
  height: 4px;
  position: absolute;
  bottom: 10px;
}
.artist .artist_day_red {
  margin-top: 13.33vw;
}
.artist .artist_day::before {
  left: 0;
}
.artist .artist_day::after {
  right: 0;
}
.artist .artist_content {
  max-width: 85vw;
  margin: 0 auto;
}
.artist .artist_content .artist_img {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 3.375vw;
  margin-bottom: 3.375vw;
}
.artist .artist_content .artist_img .artist_l {
  width: 85vw;
}
.artist .artist_content .artist_img .artist_l img {
  width: 100%;
}
.artist .artist_content .artist_img .artist_m {
  width: 41.625vw;
}
.artist .artist_content .artist_img .artist_m img {
  width: 100%;
}
.artist .artist_content .artist_img .artist_m span.opning_act {
  padding-left: 1vw;
  font-size: 2.3vw;
}
.artist .artist_content .artist_img p {
  background-color: #1D2088;
  color: #fff;
  font-size: 3vw;
  letter-spacing: normal;
  padding: 1vw 0 1vw 1.25vw;
}
.artist .artist_01 {
  /*非表示にしておく*/
  padding-bottom: 9.375vw;
}

.artist_02 {
  /*非表示にしておく*/
}

.artist_text .content_title .artist_name_n {
  /*非表示にしておく*/
}

.ticket {
  /*非表示にしておく*/
  padding-top: 11.25vw;
  padding-bottom: 11.25vw;
  background: rgba(255, 255, 255, 0.35);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}
.ticket p.ticket_comingsoon {
  font-size: 20px;
  color: #000000;
  text-align: center;
  padding: 3rem 0 3rem 0;
}
.ticket .ticket_content {
  max-width: 85vw;
  margin: 0 auto;
}
.ticket .ticket_01 {
  margin-top: 3.75vw;
  background-color: #fff;
  padding-top: 3.75vw;
  padding-bottom: 3.75vw;
  padding-left: 5vw;
  padding-right: 5vw;
  border-radius: 30px;
  border: 1px solid #000;
}
.ticket .ticket_01 .ticket_name {
  display: flex;
}
.ticket .ticket_01 .ticket_name > li {
  width: 50%;
  font-size: 3.75vw;
  letter-spacing: normal;
  font-weight: bold;
}
.ticket .ticket_02 {
  background-color: #fff;
  padding-top: 3.75vw;
  padding-bottom: 3.75vw;
  padding-left: 5vw;
  padding-right: 5vw;
  border-radius: 30px;
  border: 1px solid #000;
}
.ticket .ticket_02 .ticket_name {
  display: flex;
  align-items: center;
  border-bottom: #000 1px solid;
  padding-bottom: 3.75vw;
}
.ticket .ticket_02 .ticket_name > li {
  width: 50%;
  font-size: 3.75vw;
  letter-spacing: normal;
  font-weight: bold;
}
.ticket .ticket_02 .ticket_image {
  display: flex;
  flex-wrap: wrap;
  gap: 3.375vw;
  margin-top: 3.375vw;
}
.ticket .ticket_02 .ticket_image p {
  font-size: 2.25vw;
  letter-spacing: normal;
  text-align: right;
  margin-top: 3.375vw;
}
.ticket .ticket_02-2 {
  margin-top: 3.75vw;
  background-color: #fff;
  padding-top: 3.75vw;
  padding-bottom: 3.75vw;
  padding-left: 5vw;
  padding-right: 5vw;
  border-radius: 30px;
  border: 1px solid #000;
}
.ticket .ticket_02-2 .ticket_name {
  display: flex;
}
.ticket .ticket_02-2 .ticket_name > li {
  width: 50%;
  font-size: 3.75vw;
  letter-spacing: normal;
  font-weight: bold;
}
.ticket .ticket_03 {
  margin-top: 3.75vw;
  margin-bottom: 10vw;
  background-color: #fff;
  padding-top: 3.75vw;
  padding-bottom: 3.75vw;
  padding-left: 5vw;
  padding-right: 5vw;
  border-radius: 30px;
  border: 1px solid #000;
}
.ticket .ticket_03 .ticket_name {
  display: flex;
  align-items: center;
  border-bottom: #000 1px solid;
  padding-bottom: 3.75vw;
}
.ticket .ticket_03 .ticket_name > li {
  width: 50%;
  font-size: 3.75vw;
  letter-spacing: normal;
  font-weight: bold;
}
.ticket .ticket_03 .ticket_name > li .ticket_coment_s {
  font-size: 2.25vw;
  letter-spacing: normal;
}
.ticket .ticket_03 .ticket_03_coment .ticket_03_01 {
  font-size: 2.75vw;
  letter-spacing: normal;
  line-height: 4vw;
  margin-top: 3.75vw;
}
.ticket .ticket_03 .ticket_03_coment .ticket_03_02 {
  font-size: 3vw;
  letter-spacing: normal;
  line-height: 4vw;
  padding: 5vw;
  background-color: #1D2088;
  border-radius: 30px;
  color: #fff;
  margin-top: 5vw;
}
.ticket .ticket_04 {
  padding-top: 7vw;
  padding-left: 5vw;
  padding-right: 5vw;
  border-radius: 30px;
  background: linear-gradient(180deg, #FFFBD1 0%, #FFFBD1 80%, #E60027 20%, #E60027 100%);
}
.ticket .ticket_04 .buy_ticket .buy_title {
  font-size: 3.2vw;
  letter-spacing: normal;
  font-weight: bold;
  color: #E60027;
}
.ticket .ticket_04 .buy_ticket .buy_coment {
  padding-top: 1.25vw;
  padding-bottom: 3.75vw;
  font-size: 3.4vw;
  letter-spacing: normal;
  font-weight: bold;
  line-height: 1.6;
  max-width: 85vw;
  margin: 0 auto;
}
.ticket .ticket_04 .buy_ticket .buy_text {
  margin-top: 3.75vw;
  margin-bottom: 3.75vw;
  font-size: 2.2vw;
  letter-spacing: normal;
  text-align: center;
}
.ticket .ticket_04 .buy_ticket .buy_attend {
  font-size: 3vw;
  letter-spacing: normal;
  font-weight: bold;
  margin: 0 auto;
  width: 57.75vw;
  padding: 0.5vw 3.75vw;
  color: #1D2088;
  border-radius: 30px;
  border: 1px solid #1D2088;
  display: flex;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.557);
}
.ticket .ticket_04 .buy_ticket .buy_button {
  margin-left: auto;
  margin-right: auto;
  height: 14vw;
  width: 75vw;
}
.ticket .ticket_04 .buy_ticket .buy_button a {
  margin-top: 8vw;
  display: block;
  height: 14vw;
  line-height: 14vw;
  font-size: 3.2vw;
  color: #fff;
  letter-spacing: normal;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}
.ticket .ticket_04 .schedule_content {
  max-width: 75.5vw;
  margin: 0 auto;
}
.ticket .ticket_04 .schedule_content ul {
  display: flex;
  width: 75.5vw;
}
.ticket .ticket_04 .schedule_content ul .schedule_year {
  width: 10.875vw;
  height: 100px;
  background-color: #1D2088;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ticket .ticket_04 .schedule_content ul .schedule_year .schedule_year_text {
  transform: rotate(-90deg);
  width: clamp(70px, 12vw, 100px);
  color: #fff;
  font-size: clamp(25px, 4.7vw, 37px);
  letter-spacing: normal;
}
.ticket .ticket_04 .schedule_content ul .schedule_date {
  font-size: 8vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  width: 42vw;
  height: 100px;
  background-image: url(../image/haikei.jpg);
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: lighten;
}
.ticket .ticket_04 .schedule_content ul .schedule_start {
  width: 32.125vw;
  height: 100px;
  color: #fff;
  background-color: #1D2088;
  display: flex;
  flex-flow: column;
  gap: clamp(6px, 1.5vw, 8px);
  justify-content: center;
}
.ticket .ticket_04 .schedule_content ul .schedule_start .schedule_start_text {
  font-size: clamp(22px, 4.2vw, 26px);
  text-align: center;
  letter-spacing: normal;
}
.ticket .ticket_04 .schedule_content ul .schedule_start .schedule_start_coment {
  font-size: 1.75vw;
  text-align: center;
  letter-spacing: normal;
}

.goods {
  /*非表示にしておく*/
  overflow: hidden;
  padding-top: 11.25vw;
  padding-bottom: 11.25vw;
  background-image: url(../image/back_2026.jpg);
  background-position: center center;
  background-size: cover;
}
.goods p.goods_comingsoon {
  font-size: 20px;
  color: #fff;
  text-align: center;
  padding: 3rem 0 3rem 0;
}
.goods .goods_content {
  width: 85vw;
  margin: 0 auto;
  display: none;
}
.goods .goods_content .goods_text {
  margin-top: 5vw;
  background-color: #fff;
  padding-top: 3.75vw;
  padding-bottom: 3.75vw;
  padding-left: 5vw;
  padding-right: 5vw;
  border-radius: 30px;
  font-size: 3vw;
  line-height: 5vw;
  border: 1px solid #000;
}

.faq {
  /*非表示にしておく*/
  padding-top: 11.25vw;
  padding-bottom: 11.25vw;
  background: #E7F5FE;
}
.faq p.faq_comingsoon {
  font-size: 20px;
  color: #000000;
  text-align: center;
  padding: 3rem 0 3rem 0;
}
.faq .faq_content {
  display: none;
  max-width: 85vw;
  margin: 0 auto;
}
.faq .faq_content .faq_text {
  font-size: 2.5vw;
  letter-spacing: normal;
}
.faq .faq_content .faq_text li {
  margin-top: 1.25vw;
  line-height: 1.2;
}
.faq .faq_content .faq_text .faq_title::before {
  content: "Q.";
  color: #E60027;
  font-size: 3.75vw;
  margin-right: 1.25vw;
  font-weight: bold;
}
.faq .faq_content .faq_text .faq_answer::before {
  content: "A.";
  color: #1D2088;
  font-size: 3.75vw;
  margin-right: 1.25vw;
  font-weight: bold;
}
.faq .faq_content .faq_text:not(:first-child) {
  margin-top: 6.25vw;
}

.access {
  padding-top: 11.25vw;
  padding-bottom: 11.25vw;
  background-color: #ffffff;
}
.access .access_content {
  max-width: 85vw;
  margin: 0 auto;
}
.access .access_content ul {
  display: flex;
  flex-wrap: wrap;
}
.access .access_content ul li {
  width: 100%;
}
.access .access_content ul li .access_title {
  font-size: 2.75vw;
  letter-spacing: normal;
  font-weight: bold;
}
.access .access_content ul li .access_map01 {
  font-size: 3vw;
  letter-spacing: normal;
  line-height: 5vw;
  font-weight: bold;
  line-height: 5vw;
}
.access .access_content ul li .access_map01 img {
  margin-right: 2vw;
  width: 5vw;
}
.access .access_content ul li .access_map02 {
  font-size: 2.75vw;
  letter-spacing: normal;
  line-height: 5vw;
  font-weight: bold;
  margin-top: 3.75vw;
  line-height: 5vw;
}
.access .access_content .access_mapimage {
  width: 100%;
  margin-top: 3.75vw;
}

.archive {
  padding-top: 11.25vw;
  padding-bottom: 11.25vw;
  background-image: url(../image/0M9A7952.jpg);
  background-size: contain;
  background-position: top;
  background-color: rgba(255, 255, 255, 0.1);
  background-blend-mode: lighten;
}
.archive .archive_movie {
  max-width: 85vw;
  margin: 0 auto;
}
.archive .archive_movie video {
  width: 85vw;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: black;
}

footer {
  padding-top: 11.25vw;
  padding-bottom: 11.25vw;
  background-color: #E7F5FE;
}
footer .footer_content {
  max-width: 85vw;
  margin: 0 auto;
  text-align: center;
}
footer .footer_content img {
  width: 32.25vw;
}
footer .footer_content p {
  margin-top: 8.5vw;
  font-size: 2.5vw;
  letter-spacing: normal;
  text-align: center;
  line-height: 5vw;
}

.news_pagenation {
  max-width: 85vw;
  margin: 0 auto;
}
.news_pagenation .news_page_inner {
  margin-top: 3.125vw;
  display: flex;
  gap: 5vw;
  justify-content: center;
}
.news_pagenation .news_page_inner li {
  font-size: 3.2vw;
}
.news_pagenation .news_page_inner li a.news_active {
  color: #E60027;
  font-weight: bold;
}

.ticket_info {
  max-width: 85vw;
  margin: 0 auto;
}
.ticket_info .ticket_s {
  margin-top: 8.5vw;
  font-size: 3.2vw;
}
.ticket_info .ticket_m {
  margin-top: 3.125vw;
  font-size: 3.2vw;
  line-height: 1.4;
  color: #1D2088;
  font-weight: bold;
  border-bottom: #E60027 2px solid;
  display: inline-block;
}

.news_c_details {
  max-width: 85vw;
  margin: 0 auto;
  margin-top: 3.125vw;
  font-size: 3.2vw;
  line-height: 1.4;
}

.ticket_infomation {
  padding-top: 11.25vw;
  padding-bottom: 11.25vw;
}
.ticket_infomation .ticket_info_content {
  max-width: 85vw;
  margin: 0 auto;
}
.ticket_infomation .ticket_info_content .content_title_s {
  font-size: 3.2vw;
  font-weight: bold;
  color: #E60027;
}
.ticket_infomation .ticket_info_content .ticket_info_innner {
  margin-top: 3.125vw;
}
.ticket_infomation .ticket_info_content .ticket_info_innner li {
  font-size: 3.2vw;
  line-height: 1.8;
  padding-top: 2vw;
  padding-bottom: 2vw;
}
.ticket_infomation .ticket_info_content .ticket_info_innner li + li {
  border-top: #1D2088 1px solid;
}

.artist .artist_content .artist_img .back_blue {
  background: #1D2088;
  padding-top: 3vw;
  padding-bottom: 4vw;
}
.artist .artist_content .artist_img .back_blue .artist_names {
  text-align: center;
  font-size: 3.73vw;
  padding-left: 0;
}
.artist .artist_content .artist_img .back_blue .artist_button {
  text-align: center;
  background: #E60027;
  border-radius: 20px;
  width: 36vw;
  margin-top: 1vw;
  margin-left: auto;
  margin-right: auto;
}

.tmb {
  max-width: 85vw;
  margin: 0 auto;
  display: none;
}

.tmb_img {
  width: 100%;
  height: auto;
}

.tmb_img:hover {
  cursor: pointer;
}

.popup {
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: opacity 0.3s, transform 0s 0.3s;
}

.popup__btn {
  display: block;
  z-index: 13;
  position: absolute;
  top: 10vh;
  right: 7.5vw;
  width: 4vh;
  height: 4vh;
  cursor: pointer;
}

.popup__btn::before,
.popup__btn::after {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 2px;
  margin-top: -1px;
  background-color: #fff;
  content: "";
}

.popup__btn::before {
  transform: rotate(45deg);
}

.popup__btn::after {
  transform: rotate(-45deg);
}

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

.popup__img {
  z-index: 11;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: clamp(0px, 85vw, 450px);
  height: auto;
}

.popup__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

input[type=checkbox] {
  display: none;
}

input[type=checkbox]:checked ~ .popup {
  transform: scale(1);
  opacity: 1;
  transition: opacity 0.3s;
}

.font-color--red a {
  color: #E60027;
  font-weight: bold;
}

.jal-info {
  padding-top: 11.25vw;
  padding-bottom: 11.25vw;
  background: #1D2088;
}
.jal-info .jal-info_list {
  max-width: 85vw;
  margin: 0 auto;
  background: #fff;
  padding-block: 6vw;
  border-radius: 30px;
}
.jal-info .jal-info_item {
  padding-inline: 4.75vw;
  margin: 0 auto;
}
.jal-info .jal-info_title {
  font-size: 3.3vw;
  color: #1D2088;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 2vw;
}
.jal-info .jal-info_comment {
  display: grid;
  grid-template-columns: 8fr 2fr;
  align-items: center;
}
.jal-info .jal-info_comment .jal-info_desc {
  font-size: 2.75vw;
  line-height: 1.4;
}
.jal-info .jal-info_comment {
  margin-bottom: 4vw;
}
.jal-info .jal-info_link a {
  display: inline-block;
  width: 100%;
  background: #fff;
  color: #E60027;
  border: 2px solid #E60027;
  border-radius: 20px;
  text-align: center;
  font-size: 3.2vw;
  font-weight: bold;
  line-height: 2.6;
  transition-duration: 0.3s;
}
.jal-info .jal-info_link a:hover {
  background: #fff;
  color: #E60027;
  border: 2px solid #E60027;
}
.jal-info .jal-info_attn {
  font-size: 2.75vw;
  line-height: 1.4;
  margin-bottom: 4vw;
}/*# sourceMappingURL=sp_style.css.map */