@charset "UTF-8";
/* -- FOUNDATION -- */
/* reset CSS */
abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: 0 0;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: 0 0;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: 700;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/* reset CSS ここまで */
html {
  font-size: 62.5%;
}

body {
  font: 1.6rem/1.5 sans-serif;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  background: #fff;
  position: relative;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}
a:hover {
  opacity: 0.8;
}

li {
  list-style: none;
}

main {
  display: block;
}

p {
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
}

/* -- LAYOUT -- */
.header {
  width: 100%;
}
.header_container {
  background: #172c78;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100px;
  margin: 0 auto;
}
@media (min-width:769px) and (max-width:1243px) {
  .header_container {
    height: 70px;
  }
}
@media (max-width:768px) {
  .header_container {
    height: 70px;
  }
}
.header .hd_nav {
  width: 7.1428571429%;
}
.header .hd_logo {
  z-index: 10;
  width: 162px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0 0 0 30px;
}
@media (max-width:768px) {
  .header .hd_logo {
    margin: 0 0 0 15px;
  }
}
.header .hd_logo_tfm {
  width: 162px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width:769px) and (max-width:1243px) {
  .header .hd_logo_tfm {
    width: 120px;
  }
}
@media (max-width:768px) {
  .header .hd_logo_tfm {
    width: 120px;
  }
}
.header .hd_logo_tfm > img {
  width: 100%;
  height: auto;
}

#nav_open {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #172c78;
  left: 0;
  top: 0;
  z-index: 101;
}

#nav_toggle {
  background: #172c78;
  display: block;
  width: 100px;
  height: 100px;
  position: fixed;
  top: 0px;
  right: 0px;
  cursor: pointer;
  z-index: 999;
}
@media (min-width:769px) and (max-width:1243px) {
  #nav_toggle {
    width: 70px;
    height: 70px;
  }
}
@media (max-width:768px) {
  #nav_toggle {
    width: 70px;
    height: 70px;
  }
}
#nav_toggle div {
  position: relative;
}
#nav_toggle span {
  display: block;
  height: 3px;
  background: #fff;
  position: absolute;
  width: 100%;
  transition: 0.5s ease-in-out;
}
#nav_toggle span:nth-child(1) {
  top: 35px;
  right: 30px;
  width: 42%;
}
#nav_toggle span:nth-child(2) {
  top: 47px;
  right: 30px;
  width: 42%;
}
#nav_toggle span:nth-child(3) {
  top: 60px;
  right: 30px;
  width: 42%;
}
@media (min-width:769px) and (max-width:1243px) {
  #nav_toggle span:nth-child(1) {
    top: 25px;
    right: 21px;
    width: 42%;
  }
  #nav_toggle span:nth-child(2) {
    top: 34px;
    right: 21px;
    width: 42%;
  }
  #nav_toggle span:nth-child(3) {
    top: 43px;
    right: 21px;
    width: 42%;
  }
}
@media (max-width:768px) {
  #nav_toggle span:nth-child(1) {
    top: 25px;
    right: 21px;
    width: 42%;
  }
  #nav_toggle span:nth-child(2) {
    top: 34px;
    right: 21px;
    width: 42%;
  }
  #nav_toggle span:nth-child(3) {
    top: 43px;
    right: 21px;
    width: 42%;
  }
}

.open #nav_toggle {
  background: #fff;
}

.open #nav_toggle span {
  background: #172c78;
}
.open #nav_toggle span:nth-child(1) {
  top: 47px;
  transform: rotate(135deg);
}
.open #nav_toggle span:nth-child(2) {
  width: 0;
  left: 50%;
}
.open #nav_toggle span:nth-child(3) {
  top: 47px;
  transform: rotate(-135deg);
}
@media (min-width:769px) and (max-width:1243px) {
  .open #nav_toggle span:nth-child(1) {
    top: 34px;
  }
  .open #nav_toggle span:nth-child(3) {
    top: 34px;
  }
}
@media (max-width:768px) {
  .open #nav_toggle span:nth-child(1) {
    top: 34px;
  }
  .open #nav_toggle span:nth-child(3) {
    top: 34px;
  }
}

#global-nav {
  padding-top: 90px;
  padding-bottom: 10px;
  width: 100%;
  text-align: center;
  font-size: 110%;
}
#global-nav.active {
  background-color: rgb(255, 255, 255);
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
}
#global-nav li {
  font-size: 4rem;
  font-weight: 900;
  padding-bottom: 60px;
  margin: 0 auto;
  text-align: center;
}
#global-nav li span {
  font-size: 1.8rem;
  display: block;
}
@media (min-width:769px) and (max-width:1243px) {
  #global-nav li {
    font-size: 3rem;
  }
  #global-nav li span {
    font-size: 1.6rem;
  }
}
@media (max-width:768px) {
  #global-nav li {
    padding-bottom: 30px;
    font-size: 2.4rem;
  }
  #global-nav li span {
    font-size: 1.3rem;
  }
}
#global-nav li a {
  color: #fff;
  text-decoration: none;
}
#global-nav .menuLogo img {
  max-width: 65px;
  position: absolute;
  top: 0;
  left: 0;
}

.menu_sns {
  margin: 0 auto 15px;
  width: 100%;
  max-width: 180px;
  display: flex;
  justify-content: center;
}
.menu_sns li {
  padding: 0 2%;
}
.menu_sns li img {
  width: 25px;
}

.bn_Area {
  text-align: center;
  padding: 0 10px;
}
.bn_Area li {
  padding: 0 10px 30px 10px;
}
.bn_Area li:nth-of-type(1) {
  max-width: 300px;
  margin: 0 auto;
  height: auto;
}
.bn_Area li:last-of-type {
  max-width: 640px;
  margin: 0 auto;
  height: auto;
}

.end_bnr {
  width: 90%;
  max-width: 1100px;
  margin: 30px auto;
}

.kv {
  width: 100%;
  max-width: 1054px;
  margin: 0 auto;
}
@media (max-width:768px) {
  .kv {
    width: 80%;
    margin: 5% auto;
  }
}
.kv_line {
  background: url(../../images/kv_line.png) repeat-x;
  height: 40px;
}
.kv_lead {
  font-size: 2.5rem;
  line-height: 1.88;
  text-align: center;
  font-weight: 900;
  color: #FFF;
  background: #172c78;
  padding: 40px 0;
  box-sizing: border-box;
}
@media (min-width:769px) and (max-width:1243px) {
  .kv_lead {
    font-size: 3rem;
    padding: 26px 0;
  }
}
@media (max-width:768px) {
  .kv_lead {
    font-size: min(1.8rem, 3.8vw);
    padding: 16px 0;
  }
}
.kv_goods {
  background: #FFF;
  width: 90%;
  max-width: 1000px;
  margin: 30px auto 0;
}
@media (max-width:768px) {
  .kv_goods {
    margin: 15px auto 0;
  }
}

.thumbset {
  padding: min(70px, 6vw) 0;
  background: #f0f3f6;
}
.thumbset_container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin: 0 auto;
  width: 96%;
  max-width: 1120px;
}
.thumbset_item {
  display: flex;
  flex-flow: column;
  width: 300px;
  border-radius: 0 0 30px 0;
  background: #172c78;
}
.thumbset_item:not(:first-child) {
  margin-left: 10px;
}
.thumbset_img {
  width: 300px;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.thumbset_ttl {
  padding: 10px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.25;
}

@media (max-width:768px) {
  .thumbset_item {
    border-radius: 0 0 15px 0;
  }
  .thumbset_item:not(:first-child) {
    margin-left: 5px;
  }
  .thumbset_ttl {
    padding: 5px;
    font-size: 1.2rem;
  }
}
.timeslip {
  border-radius: 20px;
}

.topics {
  padding: 0px 20px 100px;
  background: #f0f3f6;
}
@media (max-width:768px) {
  .topics {
    padding: 0px 20px 30px;
  }
}
.topics_ttl {
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
  padding: 50px 0;
  text-align: center;
}
@media (max-width:768px) {
  .topics_ttl {
    padding: 40px 0 25px;
  }
  .topics_ttl img {
    max-height: 50px;
  }
}
.topics_lead {
  display: inline-block;
  color: #172c78;
  font-weight: 900;
  font-size: 3rem;
  text-align: center;
  margin: 0 0 30px;
  background: linear-gradient(transparent 70%, #ffee00 70%);
}
.topics_lead_wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
@media (max-width:768px) {
  .topics_lead_sp {
    text-align: center;
    margin-bottom: 30px;
  }
  .topics_lead_sp span {
    display: inline-block;
    color: #172c78;
    font-weight: 900;
    font-size: 2.2rem;
    line-height: 1.8;
    text-align: center;
    margin: 0 0 0;
    background: linear-gradient(transparent 70%, #ffee00 70%);
  }
}
.topics_inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 50px;
  padding: 60px 10px 90px;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0px 8px 46px 20px rgba(158, 156, 156, 0.08);
}
@media (max-width:768px) {
  .topics_inner {
    padding: 30px 0px 45px;
  }
}
.topics_list_li {
  width: 90%;
  margin: 0 auto 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #DDDDDD;
}
.topics_list_li:last-child {
  border-bottom: none;
  margin: 0 auto 0px;
  padding-bottom: 0px;
}
.topics_list_link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width:768px) {
  .topics_list_link {
    flex-direction: column;
  }
}
.topics_list_th {
  width: 15%;
}
.topics_list_th img {
  border-radius: 20px;
}
@media (max-width:768px) {
  .topics_list_th {
    width: 50%;
    margin-bottom: 15px;
  }
}
.topics_list_ttl {
  width: 80%;
}
.topics_list_ttl h4 {
  color: #172c78;
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 0.5em;
}
.topics_list_ttl span {
  font-weight: bold;
  color: #c50809;
  text-decoration: underline;
}
.topics_list_ttl a {
  color: #008bff;
  font-weight: bold;
}
.topics_list_ttl i {
  font-size: 1.2rem;
  font-style: normal;
}
@media (max-width:768px) {
  .topics_list_ttl {
    width: 100%;
    margin-bottom: 0px;
  }
  .topics_list_ttl h4 {
    font-size: 1.8rem;
  }
  .topics_list_ttl p {
    font-size: 1.2rem;
  }
}
.topics_list_icon_01 {
  display: inline-block;
  background: #32b446;
  border-radius: 100px;
  padding: 2px 1em;
  font-size: 1rem;
  font-weight: 500;
  color: #f0f3f6;
}
@media (max-width:768px) {
  .topics_list_icon_01 {
    font-size: 0.9rem;
  }
}
.topics_list_icon_02 {
  display: inline-block;
  background: #adc01f;
  border-radius: 100px;
  padding: 2px 1em;
  font-size: 1rem;
  font-weight: 500;
  color: #f0f3f6;
}
@media (max-width:768px) {
  .topics_list_icon_02 {
    font-size: 0.9rem;
  }
}
.topics_list_icon_03 {
  display: inline-block;
  background: #c70082;
  border-radius: 100px;
  padding: 2px 1em;
  font-size: 1rem;
  font-weight: 500;
  color: #f0f3f6;
}
@media (max-width:768px) {
  .topics_list_icon_03 {
    font-size: 0.9rem;
  }
}
.topics_list_btn {
  display: inline-block;
  font-weight: bold;
  background: #ffef38;
  color: #172c78;
  border-radius: 100px;
  font-size: 1.2rem;
  padding: 5px 20px;
}
.topics_list_btn_wrap {
  text-align: right;
}
@media (max-width:768px) {
  .topics_list_btn {
    font-size: 1rem;
    padding: 5px 15px;
  }
}
.topics_news {
  max-width: 1000px !important;
  color: #000;
  background: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.topics_news .topics_list_li {
  width: 90%;
  margin: 0 auto 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #DDDDDD;
}
.topics_news .topics_list_li:last-child {
  border-bottom: none;
  margin: 0 auto 0px;
  padding-bottom: 0px;
}
.topics_news .topics_list_th {
  width: 70%;
  margin-bottom: 30px;
}
.topics_news .topics_list_th img {
  border-radius: 20px;
}
@media (max-width:768px) {
  .topics_news .topics_list_th {
    width: 70%;
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
.topics_news .topics_list_ttl {
  width: 100%;
  text-align: left;
}
.topics_news .topics_list_ttl h4 {
  color: #172c78;
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 0.5em;
}
@media (max-width:768px) {
  .topics_news .topics_list_ttl {
    width: 90%;
    margin-bottom: 0px;
  }
  .topics_news .topics_list_ttl h4 {
    font-size: 1.8rem;
  }
  .topics_news .topics_list_ttl p {
    font-size: 1.2rem;
  }
}
.topics_news .topics_list_icon_01 {
  display: inline-block;
  background: #32b446;
  border-radius: 100px;
  padding: 2px 1em;
  font-size: 1rem;
  font-weight: 500;
  color: #f0f3f6;
}
@media (max-width:768px) {
  .topics_news .topics_list_icon_01 {
    font-size: 0.9rem;
  }
}
.topics_news .topics_list_icon_02 {
  display: inline-block;
  background: #adc01f;
  border-radius: 100px;
  padding: 2px 1em;
  font-size: 1rem;
  font-weight: 500;
  color: #f0f3f6;
}
@media (max-width:768px) {
  .topics_news .topics_list_icon_02 {
    font-size: 0.9rem;
  }
}
.topics_news .topics_list_icon_03 {
  display: inline-block;
  background: #c70082;
  border-radius: 100px;
  padding: 2px 1em;
  font-size: 1rem;
  font-weight: 500;
  color: #f0f3f6;
}
@media (max-width:768px) {
  .topics_news .topics_list_icon_03 {
    font-size: 0.9rem;
  }
}

#inclusion {
  margin-top: -75px;
}
@media (max-width:768px) {
  #inclusion {
    margin-top: -55px;
  }
}

.program_heading {
  width: 38rem !important;
}
@media (max-width:768px) {
  .program_heading {
    width: 23rem !important;
  }
}

.about {
  padding: 0px 0px 100px;
  background: #f0f3f6;
}
@media (min-width:1180px) {
  .about_wrap {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width:1180px) and (max-width:768px) {
  .about_wrap {
    flex-direction: column;
  }
}
@media (min-width:1180px) {
  .about_wrap #abe {
    width: 42%;
    padding: 3%;
  }
  .about_wrap #wide {
    width: 42%;
    padding: 3%;
  }
}
.about_container {
  max-width: 1100px;
  margin: 0 auto 75px;
  padding: 60px 10px 90px;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0px 8px 46px 20px rgba(158, 156, 156, 0.08);
}
.about_heading {
  margin: -40px auto 45px;
  color: #172c78;
  font-size: 2.5rem;
  line-height: 1.68;
  text-align: center;
}
.about_heading img {
  width: 100%;
  max-width: 800px;
}
.about_heading:first-child {
  margin: 0 auto 45px;
}
.about_photo {
  display: flex;
  justify-content: space-between;
  align-items: start;
  width: 825px;
  max-width: 96%;
  margin: 0 auto 5px;
}
.about_photo > img {
  display: block;
  flex: 0 1 47.2727272727%;
  width: 47.2727272727%;
}
.about_photo-one {
  max-width: 96%;
  margin: 0 auto 40px;
  text-align: center;
}
.about_photo-one > img {
  width: 400px;
}
.about_note {
  width: 825px;
  max-width: 96%;
  margin: 0 auto 40px;
  color: #172c78;
  font-size: 1.3rem;
  text-align: right;
}
.about_onair {
  width: 825px;
  max-width: 96%;
  margin: 0 auto 90px;
  padding: 0 10px 30px;
  text-align: center;
  box-sizing: border-box;
  border: 3px solid #172c78;
}
.about_onair-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 309px;
  max-width: 80%;
  height: 50px;
  margin: -23px auto 30px;
  background: #172c78;
}
.about_date {
  margin: 0 auto;
  color: #172c78;
  font-size: 2.8rem;
  font-weight: 700;
}
.about_date > .day {
  font-size: 1.8rem;
}
.about_onair-note {
  margin: 15px auto 0;
  color: #c50809;
  font-size: 1.4rem;
}
.about_ticket {
  container-type: inline-size;
  width: 825px;
  max-width: 96%;
  margin: 0 auto;
  padding: 0 10px 35px;
  text-align: center;
  box-sizing: border-box;
  border: 3px solid #172c78;
}
.about_ticket:not(:last-of-type) {
  margin: 0 auto 90px;
}
.about_ticket-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 309px;
  max-width: 80%;
  height: 50px;
  margin: -23px auto 30px;
  color: #fff;
  font-size: 2.3rem;
  font-weight: 400;
  background: #172c78 !important;
}
.about_ticket-catch {
  margin: 30px auto 15px;
  color: #172c78;
  font-size: 3rem;
  font-weight: 700;
}
.about_ticket-ttl {
  margin: 20px auto 30px;
  color: #172c78;
  font-size: 3rem;
  font-weight: 700;
}
@container (max-width: 700px) {
  .about_ticket-ttl {
    font-size: 3.6vw;
  }
}
.about_topic {
  margin: 0 auto;
  color: #c50809;
  font-size: 1.6rem;
  font-weight: bold;
  background: linear-gradient(transparent 70%, #ffee00 70%);
}
@media (max-width:768px) {
  .about_topic {
    font-size: 1.4rem;
  }
}
.about_ticket-note {
  margin: 0 auto;
  color: #c50809;
  font-size: 1.4rem;
}
.about_ticket-schedule {
  margin: 30px auto 0;
  width: -moz-fit-content;
  width: fit-content;
  text-align: left;
}
.about_ticket-multi {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto 0;
}
.about_ticket-multibtn {
  display: block;
  width: 30%;
  text-align: center;
  border-radius: 100px;
  flex-direction: column;
  height: auto;
  padding: 10px 0;
  margin: 0 15px;
  color: #FFF !important;
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: 900;
  background: url(../../images/live_btn_bg.png) center center repeat-y !important;
  background-size: cover !important;
}
.about_disable {
  background: #ccc !important;
}
.about_table {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: wrap;
  max-width: 600px;
  margin: 0 auto;
  padding: 15px 0;
  color: #172c78;
  text-align: left;
  border-top: 1px solid #172c78;
}
.about_table:last-of-type {
  margin: 0 auto 70px;
  border-bottom: 1px solid #172c78;
}
.about_table a {
  color: #172c78 !important;
  text-decoration: underline;
}
.about_table > dt {
  flex: 0 0 6em;
  width: 6em;
  font-weight: 700;
}
.about_table > dd {
  flex: 0 0 calc(100% - 7em);
  width: calc(100% - 7em);
}
.about_caution {
  margin-top: 10px;
  font-size: 1.4rem;
}
.about_artist {
  display: flex;
  justify-content: start;
  align-items: start;
}
.about_artist > li {
  flex: 1 1 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  text-align: center;
}
.about_artist > li + li {
  margin-left: 10px;
}
.about_artist-photo {
  display: block;
  margin-bottom: 5px;
}
.about_artist-name {
  font-size: 1.6rem;
  font-weight: 700;
  word-break: break-all;
  color: #172c78;
}
.about_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 428px;
  max-width: 100%;
  height: 62px;
  margin: 30px auto 0;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  background: #cbc9c9;
  border-radius: 31px;
}
.about_btn-big {
  width: 90%;
  text-align: center;
  border-radius: 0px;
  flex-direction: column;
  height: auto;
  padding: 15px 0;
  color: #FFF !important;
  font-size: 3rem;
  font-weight: 900;
  background: url(../../images/live_btn_bg.png) center center repeat-y !important;
  background-size: cover;
}
.about_btn-big img {
  width: 80%;
  max-width: 437px;
}
.about_btn.is-active {
  color: #172c78;
  background: #ffef38;
}
.about_cs {
  margin: 0 auto;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}
.about_end {
  color: #c50809;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}

@media (max-width:768px) {
  .about {
    width: 100%;
    margin: 0 auto;
    padding: 0 0px 50px;
  }
  .about_container {
    width: calc(100% - 40px);
    margin: 0px auto 25px;
    padding: 30px 10px;
  }
  .about_heading {
    margin: -10px auto 30px;
    font-size: 1.8rem;
  }
  .about_heading:first-child {
    margin: 0 auto 30px;
  }
  .about_photo {
    display: block;
    max-width: 100%;
    margin: 0 auto 5px;
  }
  .about_photo img {
    width: 100%;
    max-width: 390px;
    margin: 0 auto;
  }
  .about_photo img:not(:last-child) {
    margin-bottom: 15px;
  }
  .about_note {
    width: 390px;
    max-width: 100%;
  }
  .about_onair {
    margin: 0 auto 50px;
  }
  .about_onair-heading {
    height: 40px;
    margin: -23px auto 15px;
  }
  .about_onair-heading img {
    width: 7rem;
  }
  .about_date {
    font-size: 2rem;
  }
  .about_onair-note {
    font-size: 1.2rem;
    text-align: left;
  }
  .about_ticket:not(:last-of-type) {
    margin: 0 auto 50px;
  }
  .about_ticket-heading {
    height: 40px;
    margin: -23px auto 15px;
    font-size: 1.8rem;
  }
  .about_ticket-catch {
    margin: 20px auto 20px;
    font-size: 2rem;
  }
  .about_ticket-note {
    font-size: 1.2rem;
    text-align: left;
  }
  .about_ticket-schedule {
    font-size: 1.4rem;
  }
  .about_ticket-multi {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    margin: 15px auto 0;
  }
  .about_ticket-multibtn {
    display: block;
    width: 80%;
    text-align: center;
    border-radius: 100px;
    flex-direction: column;
    height: auto;
    padding: 5px 0;
    margin: 0 0 15px 0;
    color: #FFF !important;
    font-size: 1.5rem;
    line-height: 1.8;
    font-weight: 900;
    background: url(../../images/live_btn_bg.png) center center repeat-y !important;
    background-size: cover !important;
  }
  .about_disable {
    background: #ccc !important;
  }
  .about_table {
    width: 96%;
    font-size: 1.4rem;
  }
  .about_table:last-of-type {
    margin: 0 auto 60px;
  }
  .about_artist > li {
    flex: 1 1 30%;
  }
  .about_artist > li + li {
    margin-left: 2%;
  }
  .about_artist-photo {
    margin-bottom: 4px;
  }
  .about_artist-name {
    font-size: 2.2vw;
  }
  .about_btn {
    width: 85%;
    height: 50px;
    margin: 20px auto 0;
    border-radius: 25px;
    font-size: 1.6rem;
  }
  .about_btn-big {
    width: 90%;
    text-align: center;
    border-radius: 0px;
    flex-direction: column;
    height: auto;
    padding: 15px 0;
    color: #FFF !important;
    font-size: 1.5rem;
    line-height: 1.8;
    font-weight: 900;
    background: url(../../images/live_btn_bg.png) center center repeat-y !important;
    background-size: cover !important;
  }
  .about_btn-big img {
    width: 80%;
    max-width: 437px;
  }
  .about_cs {
    font-size: 1.6rem;
  }
  .about_end {
    padding-bottom: 20px;
    font-size: 1.6rem;
  }
}
.goods {
  max-width: 1000px;
  margin: 0 auto 70px;
}
@media (max-width:768px) {
  .goods {
    width: 90%;
  }
}
.goods a {
  display: block;
}
.goods a + a {
  margin-top: 30px;
}
.goods_time {
  background: #FFF;
  border-radius: 20px;
  margin-bottom: 50px;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media (max-width:768px) {
  .goods_time {
    margin-bottom: 25px;
  }
}
.goods_time h4 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #172c78;
}
@media (max-width:768px) {
  .goods_time h4 {
    font-size: 1.6rem;
  }
}
.goods_time_wrap {
  width: 96%;
  margin: 0 auto;
}
@media (max-width:768px) {
  .goods_time_wrap {
    display: flex;
    justify-content: space-around;
  }
}
.goods_time_box {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}
@media (max-width:768px) {
  .goods_time_box {
    width: 48%;
    flex-direction: column;
  }
}
.goods_time h3 {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  color: #172c78;
  margin-bottom: 30px;
}
@media (max-width:768px) {
  .goods_time h3 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
}
.goods_icon_01 {
  display: inline-block;
  background: #32b446;
  border-radius: 100px;
  padding: 2px 1em;
  font-size: 1.1rem;
  font-weight: 500;
  color: #f0f3f6;
  display: flex;
  align-items: center;
}
@media (max-width:768px) {
  .goods_icon_01 {
    display: inline;
    font-size: 1rem;
  }
}
.goods_icon_02 {
  display: inline-block;
  background: #adc01f;
  border-radius: 100px;
  padding: 2px 1em;
  font-size: 1.1rem;
  font-weight: 500;
  color: #f0f3f6;
  display: flex;
  align-items: center;
}
@media (max-width:768px) {
  .goods_icon_02 {
    display: inline;
    font-size: 1rem;
    margin-top: 10px;
  }
}
.goods_icon_03 {
  display: inline-block;
  background: #c70082;
  border-radius: 100px;
  padding: 2px 1em;
  font-size: 1.1rem;
  font-weight: 500;
  color: #f0f3f6;
  display: flex;
  align-items: center;
}
@media (max-width:768px) {
  .goods_icon_03 {
    display: inline;
    font-size: 1rem;
    margin-top: 10px;
  }
}

@media (max-width:768px) {
  .goods {
    margin: 0 auto 50px;
  }
  .goods a + a {
    margin-top: 20px;
  }
}
.faq {
  display: block;
  background: #172c78;
  text-align: center;
  padding: 20px 0;
  width: 94%;
  margin: 50px auto 0;
  border-radius: 0px;
}
.faq img {
  max-height: 120px;
}
@media (max-width:768px) {
  .faq img {
    max-height: 80px;
  }
}

.park {
  max-width: 1040px;
  margin: 0 auto 105px;
  padding: 30px 40px 40px;
  background: #b8cc21;
  border-radius: 17px;
  box-shadow: 0px 8px 46px 20px rgba(158, 156, 156, 0.08);
}
@media (max-width:768px) {
  .park {
    width: 87%;
    margin: 0 auto 50px;
    padding: 15px 4% 30px;
  }
}
.park .timetable_list {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}
@media (min-width:769px) and (max-width:1243px) {
  .park .timetable_list {
    flex-direction: column;
    margin: 0px auto;
  }
}
@media (max-width:768px) {
  .park .timetable_list {
    flex-direction: column;
    margin: 0px auto;
  }
}
.park .timetable_list_wrap {
  width: 100%;
}
.park .timetable_list_box {
  width: 100%;
  flex-direction: column;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width:768px) {
  .park .timetable_list_box {
    width: 90%;
    margin: 20px auto;
  }
}
.park .timetable_list_box_head {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}
.park .timetable_list_box_head img {
  max-height: 50px;
}
.park .timetable_list_box_head_c1 {
  background-color: #172c78;
  margin-top: 30px;
}
@media (max-width:768px) {
  .park .timetable_list_box_head_c1 {
    margin-top: 15px;
  }
}
.park .timetable_list_box_head_c2 {
  background-color: #ffef38;
  margin-top: 30px;
}
@media (max-width:768px) {
  .park .timetable_list_box_head_c2 {
    margin-top: 15px;
  }
}
.park .timetable_list_box_head_c3 {
  background-color: #b8cc21;
  text-align: center;
  color: #fff;
  font-size: 3.5rem;
  line-height: 1.68;
  text-align: center;
  padding: 0 0 30px;
  font-weight: 700;
}
@media (min-width:769px) and (max-width:1243px) {
  .park .timetable_list_box_head_c3 {
    font-size: 3rem;
    padding: 0 0 15px;
  }
}
@media (max-width:768px) {
  .park .timetable_list_box_head_c3 {
    font-size: 2rem;
    padding: 0 0 15px;
  }
}
.park .timetable_list_box_head_c4 {
  background-color: #52a2b9;
  margin-top: 30px;
}
@media (max-width:768px) {
  .park .timetable_list_box_head_c4 {
    margin-top: 15px;
  }
}
.park .timetable_list_box_cont {
  width: 100%;
  background: #FFF;
  padding: 20px 20px 0px;
  box-sizing: border-box;
}
.park .timetable_list_box_contflex {
  width: 100%;
  margin: 0 auto;
  padding: 40px;
  box-sizing: border-box;
  background: #172c78;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media (min-width:769px) and (max-width:1243px) {
  .park .timetable_list_box_contflex {
    padding: 20px 20px;
  }
}
@media (max-width:768px) {
  .park .timetable_list_box_contflex {
    flex-direction: column;
    padding: 20px 40px 0;
  }
}
.park .timetable_list_box_cont_note {
  font-size: 1.2rem;
  text-align: right;
  color: #000;
  margin-right: 10px;
}
@media (min-width:769px) and (max-width:1243px) {
  .park .timetable_list_box_cont_note {
    text-align: right;
    font-size: 1rem;
  }
}
@media (max-width:768px) {
  .park .timetable_list_box_cont_note {
    text-align: left;
    font-size: 1rem;
    padding-left: 15px;
  }
}
.park .timetable_list_box_cont_box {
  width: 27%;
  text-align: center;
}
@media (min-width:769px) and (max-width:1243px) {
  .park .timetable_list_box_cont_box {
    width: 30%;
  }
}
@media (max-width:768px) {
  .park .timetable_list_box_cont_box {
    width: 100%;
    margin: 0 auto 30px;
  }
}
.park .timetable_list_box_cont_box p {
  font-size: 1.8rem;
  color: #FFF;
  font-weight: bold;
  margin-top: 10px;
}
@media (min-width:769px) and (max-width:1243px) {
  .park .timetable_list_box_cont_box p {
    font-size: 1.2rem;
  }
}
@media (max-width:768px) {
  .park .timetable_list_box_cont_box p {
    font-size: 1.4rem;
  }
}
.park .timetable_list_box_cont_box strong {
  font-size: 2.2rem;
  color: #ffef38;
  font-weight: bold;
  text-decoration: underline;
  margin: 0 5px;
}
@media (min-width:769px) and (max-width:1243px) {
  .park .timetable_list_box_cont_box strong {
    font-size: 1.5rem;
  }
}
@media (max-width:768px) {
  .park .timetable_list_box_cont_box strong {
    font-size: 1.7rem;
  }
}
.park .timetable_list_box_cont2 {
  width: 100%;
  background: #FFF;
  padding: 20px 20px 0px;
  box-sizing: border-box;
}
.park .timetable_list_box_cont2flex {
  width: 100%;
  margin: 0 auto;
  padding: 40px;
  box-sizing: border-box;
  background: #ffef38;
  display: block;
  justify-content: center;
  align-items: stretch;
  flex-direction: column;
}
@media (min-width:769px) and (max-width:1243px) {
  .park .timetable_list_box_cont2flex {
    padding: 20px 20px;
  }
}
@media (max-width:768px) {
  .park .timetable_list_box_cont2flex {
    flex-direction: column;
    padding: 20px 40px;
  }
}
.park .timetable_list_box_cont2_note {
  font-size: 1.4rem;
  text-align: right;
  color: #172c78;
  font-weight: bold;
  margin-top: 10px;
}
@media (min-width:769px) and (max-width:1243px) {
  .park .timetable_list_box_cont2_note {
    text-align: right;
    font-size: 1rem;
  }
}
@media (max-width:768px) {
  .park .timetable_list_box_cont2_note {
    text-align: left;
    font-size: 1rem;
  }
}
.park .timetable_list_box_cont2_box {
  width: 27%;
  text-align: center;
  margin: 0 auto;
}
@media (min-width:769px) and (max-width:1243px) {
  .park .timetable_list_box_cont2_box {
    width: 30%;
  }
}
@media (max-width:768px) {
  .park .timetable_list_box_cont2_box {
    width: 100%;
    margin: 0 auto 30px;
  }
}
.park .timetable_list_box_cont2_box_apology {
  display: block;
  font-size: 1.8rem;
  color: #F00;
  font-weight: bold;
  margin-top: 30px;
  text-decoration: underline;
}
@media (max-width:768px) {
  .park .timetable_list_box_cont2_box_apology {
    font-size: 1.4rem;
    margin: 0 auto;
  }
}
.park .timetable_list_box_cont2_box p {
  font-size: 1.8rem;
  color: #172c78;
  font-weight: bold;
  margin-top: 10px;
}
.park .timetable_list_box_cont2_box p span {
  font-size: 1.4rem;
}
@media (min-width:769px) and (max-width:1243px) {
  .park .timetable_list_box_cont2_box p {
    font-size: 1.2rem;
  }
  .park .timetable_list_box_cont2_box p span {
    font-size: 1rem;
  }
}
@media (max-width:768px) {
  .park .timetable_list_box_cont2_box p {
    font-size: 1.4rem;
  }
  .park .timetable_list_box_cont2_box p span {
    font-size: 1rem;
  }
}
.park .timetable_list_box_cont2_box strong {
  font-size: 2.2rem;
  color: #172c78;
  font-weight: bold;
  text-decoration: underline;
  margin: 0 5px;
}
@media (min-width:769px) and (max-width:1243px) {
  .park .timetable_list_box_cont2_box strong {
    font-size: 1.5rem;
  }
}
@media (max-width:768px) {
  .park .timetable_list_box_cont2_box strong {
    font-size: 1.7rem;
  }
}
.park .timetable_list_box_cont3 {
  width: 100%;
  background: #FFF;
  padding: 20px 0px;
  box-sizing: border-box;
  border-radius: 20px;
}
.park .timetable_list_box_cont3flex {
  width: 100%;
  margin: 0 auto;
  padding: 40px;
  box-sizing: border-box;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media (min-width:769px) and (max-width:1243px) {
  .park .timetable_list_box_cont3flex {
    padding: 20px 20px;
  }
}
@media (max-width:768px) {
  .park .timetable_list_box_cont3flex {
    flex-direction: column;
    padding: 20px 40px 0;
  }
}
.park .timetable_list_box_cont3_note {
  font-size: 1.4rem;
  text-align: right;
  color: #172c78;
  font-weight: bold;
  margin-top: 10px;
}
@media (min-width:769px) and (max-width:1243px) {
  .park .timetable_list_box_cont3_note {
    text-align: right;
    font-size: 1rem;
  }
}
@media (max-width:768px) {
  .park .timetable_list_box_cont3_note {
    text-align: left;
    font-size: 1rem;
  }
}
.park .timetable_list_box_cont3_box {
  width: 31%;
  text-align: center;
}
@media (min-width:769px) and (max-width:1243px) {
  .park .timetable_list_box_cont3_box {
    width: 30%;
  }
}
@media (max-width:768px) {
  .park .timetable_list_box_cont3_box {
    width: 100%;
    max-width: 350px;
    margin: 0 auto 30px;
  }
}
.park .timetable_list_box_cont3_box p {
  font-size: 1.8rem;
  color: #000;
  font-weight: bold;
  margin-top: 10px;
}
@media (min-width:769px) and (max-width:1243px) {
  .park .timetable_list_box_cont3_box p {
    font-size: 1.2rem;
  }
}
@media (max-width:768px) {
  .park .timetable_list_box_cont3_box p {
    font-size: 1.4rem;
  }
}
.park .timetable_list_box_cont3_box strong {
  font-size: 2rem;
  color: #a3b51d;
  font-weight: bold;
  text-decoration: underline;
  margin: 0 5px;
}
@media (min-width:769px) and (max-width:1243px) {
  .park .timetable_list_box_cont3_box strong {
    font-size: 1.5rem;
  }
}
@media (max-width:768px) {
  .park .timetable_list_box_cont3_box strong {
    font-size: 1.5rem;
  }
}
.park .timetable_list_box_cont4 {
  width: 100%;
  background: #FFF;
  padding: 20px 20px 20px;
  box-sizing: border-box;
}
.park .timetable_list_box_cont4flex {
  width: 100%;
  margin: 0 auto;
  padding: 40px;
  box-sizing: border-box;
  background: #52a2b9;
  display: block;
  text-align: center;
}
@media (min-width:769px) and (max-width:1243px) {
  .park .timetable_list_box_cont4flex {
    padding: 20px 20px;
  }
}
@media (max-width:768px) {
  .park .timetable_list_box_cont4flex {
    flex-direction: column;
    padding: 20px 20px 0;
  }
}
.park .timetable_list_box_cont4_note {
  font-size: 1.4rem;
  text-align: right;
  color: #172c78;
  font-weight: bold;
  margin-top: 10px;
}
@media (min-width:769px) and (max-width:1243px) {
  .park .timetable_list_box_cont4_note {
    text-align: right;
    font-size: 1rem;
  }
}
@media (max-width:768px) {
  .park .timetable_list_box_cont4_note {
    text-align: left;
    font-size: 1rem;
  }
}
.park .timetable_list_box_cont4_time {
  color: #FFF;
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: bold;
}
@media (max-width:768px) {
  .park .timetable_list_box_cont4_time {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
}
.park .timetable_list_box_cont4_btn {
  width: 100%;
  max-width: 400px;
  display: inline-block;
  padding: 10px 20px;
  text-align: center;
  box-sizing: border-box;
  color: #172c78;
  background: #ffef38;
  border-radius: 100px;
  margin: 0 auto 40px;
  font-size: 2.4rem;
  font-weight: 900;
}
@media (max-width:768px) {
  .park .timetable_list_box_cont4_btn {
    font-size: 2rem;
    margin: 0 auto 20px;
  }
}
.park .timetable_list_box_cont4_sticker span {
  color: #FFF;
  font-size: 1.4rem;
  padding-top: 10px;
  display: block;
}
@media (max-width:768px) {
  .park .timetable_list_box_cont4_sticker span {
    font-size: 1.1rem;
    padding-bottom: 15px;
  }
}
.park .timetable_list_box_cont4_box {
  width: 27%;
  text-align: center;
  margin: 0 auto 20px;
}
@media (min-width:769px) and (max-width:1243px) {
  .park .timetable_list_box_cont4_box {
    width: 30%;
  }
}
@media (max-width:768px) {
  .park .timetable_list_box_cont4_box {
    width: 100%;
    margin: 0 auto 15px;
    padding: 0 20px;
    box-sizing: border-box;
  }
}
.park .timetable_list_box_cont4_box p {
  font-size: 1.8rem;
  color: #FFF;
  font-weight: bold;
  margin-top: 10px;
}
.park .timetable_list_box_cont4_box p span {
  font-size: 1.4rem;
}
@media (min-width:769px) and (max-width:1243px) {
  .park .timetable_list_box_cont4_box p {
    font-size: 1.2rem;
  }
  .park .timetable_list_box_cont4_box p span {
    font-size: 1rem;
  }
}
@media (max-width:768px) {
  .park .timetable_list_box_cont4_box p {
    font-size: 1.4rem;
  }
  .park .timetable_list_box_cont4_box p span {
    font-size: 1rem;
  }
}
.park .timetable_list_box_cont4_box strong {
  font-size: 2.2rem;
  color: #ffef38;
  font-weight: bold;
  text-decoration: underline;
  margin: 0 5px;
}
@media (min-width:769px) and (max-width:1243px) {
  .park .timetable_list_box_cont4_box strong {
    font-size: 1.5rem;
  }
}
@media (max-width:768px) {
  .park .timetable_list_box_cont4_box strong {
    font-size: 1.7rem;
  }
}
.park .timetable_list_box_body {
  width: 100%;
  background: #FFF;
  padding: 1px 20px 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
@media (max-width:768px) {
  .park .timetable_list_box_body {
    flex-direction: column;
  }
}
.park .timetable_list_box_linecube {
  width: 32%;
  display: block;
  position: relative;
  background: #172c78;
  margin-top: 30px;
  padding-top: 50px;
}
@media (max-width:768px) {
  .park .timetable_list_box_linecube {
    width: 100%;
    padding-top: 25px;
  }
}
.park .timetable_list_box_linecube_status {
  width: 100%;
  max-width: 300px;
  position: absolute;
  top: -10px;
  left: -10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width:769px) and (max-width:1243px) {
  .park .timetable_list_box_linecube_status {
    max-width: 200px;
  }
}
@media (max-width:768px) {
  .park .timetable_list_box_linecube_status {
    max-width: 200px;
  }
}
.park .timetable_list_box_linecube_time {
  width: 50%;
  font-size: 2rem;
  font-weight: 900;
  background: #ffef38;
  color: #172c78;
  padding: 10px 20px;
  box-sizing: border-box;
}
@media (min-width:769px) and (max-width:1243px) {
  .park .timetable_list_box_linecube_time {
    font-size: 1.6rem;
    padding: 5px 10px;
  }
}
@media (max-width:768px) {
  .park .timetable_list_box_linecube_time {
    font-size: 1.6rem;
    padding: 5px 10px;
  }
}
.park .timetable_list_box_linecube_apptype {
  width: 50%;
  font-size: 2rem;
  font-weight: 900;
  background: #e6337f;
  color: #FFF;
  padding: 10px 20px;
  box-sizing: border-box;
}
@media (min-width:769px) and (max-width:1243px) {
  .park .timetable_list_box_linecube_apptype {
    font-size: 1.6rem;
    padding: 5px 10px;
  }
}
@media (max-width:768px) {
  .park .timetable_list_box_linecube_apptype {
    font-size: 1.6rem;
    padding: 5px 10px;
  }
}
.park .timetable_list_box_linecube_photo {
  width: 70%;
  margin: 10px auto 0;
  text-align: center;
}
.park .timetable_list_box_linecube_txt {
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  padding: 20px 0;
  box-sizing: border-box;
  color: #FFF;
}
.park .timetable_list_box_linecube_txt strong {
  font-size: 1.7rem;
}
.park .timetable_list_box_linecube_txt span {
  font-size: 1.2rem;
  line-height: 1.5;
  display: inline-block;
}
@media (min-width:769px) and (max-width:1243px) {
  .park .timetable_list_box_linecube_txt {
    font-size: 1.6rem;
    padding: 10px 0;
  }
  .park .timetable_list_box_linecube_txt strong {
    font-size: 1.4rem;
  }
  .park .timetable_list_box_linecube_txt span {
    font-size: 1rem;
    display: inline-block;
  }
}
@media (max-width:768px) {
  .park .timetable_list_box_linecube_txt {
    font-size: 1.6rem;
    padding: 10px 0;
  }
  .park .timetable_list_box_linecube_txt strong {
    font-size: 1.4rem;
  }
  .park .timetable_list_box_linecube_txt span {
    font-size: 1rem;
    display: inline-block;
  }
}
.park .timetable_list_box_tower {
  width: 32%;
  display: block;
  position: relative;
  background: #ffef38;
  margin-top: 30px;
}
@media (max-width:768px) {
  .park .timetable_list_box_tower {
    width: 100%;
  }
}
.park .timetable_list_box_tower_status {
  width: 100%;
  max-width: 300px;
  position: absolute;
  top: -10px;
  left: -10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width:769px) and (max-width:1243px) {
  .park .timetable_list_box_tower_status {
    top: -15px;
    left: -10px;
    max-width: 200px;
  }
}
@media (max-width:768px) {
  .park .timetable_list_box_tower_status {
    max-width: 200px;
  }
}
.park .timetable_list_box_tower_time {
  width: 50%;
  font-size: 2rem;
  font-weight: 900;
  background: #172c78;
  color: #FFF;
  padding: 10px 20px;
  box-sizing: border-box;
}
@media (min-width:769px) and (max-width:1243px) {
  .park .timetable_list_box_tower_time {
    font-size: 1.3rem;
    padding: 2px 5px;
  }
}
@media (max-width:768px) {
  .park .timetable_list_box_tower_time {
    font-size: 1.6rem;
    padding: 5px 10px;
  }
}
.park .timetable_list_box_tower_apptype {
  width: 50%;
  font-size: 2rem;
  font-weight: 900;
  background: #e6337f;
  color: #FFF;
  padding: 10px 20px;
  box-sizing: border-box;
}
@media (min-width:769px) and (max-width:1243px) {
  .park .timetable_list_box_tower_apptype {
    font-size: 1.3rem;
    padding: 2px 5px;
  }
}
@media (max-width:768px) {
  .park .timetable_list_box_tower_apptype {
    font-size: 1.6rem;
    padding: 5px 10px;
  }
}
.park .timetable_list_box_tower_wrap {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.park .timetable_list_box_tower_photo {
  width: 30%;
  margin: 0 auto 0;
  text-align: center;
}
.park .timetable_list_box_tower_txt {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 70%;
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  padding: 40px 10px 0px;
  box-sizing: border-box;
  color: #172c78;
  line-height: 1.5;
}
.park .timetable_list_box_tower_txt strong {
  font-size: 1.7rem;
}
.park .timetable_list_box_tower_txt span {
  font-size: 1.2rem;
  line-height: 1.5;
  display: inline-block;
}
@media (min-width:769px) and (max-width:1243px) {
  .park .timetable_list_box_tower_txt {
    font-size: 1.2rem;
    padding: 10px 5px 10px;
  }
  .park .timetable_list_box_tower_txt strong {
    font-size: 1.2rem;
  }
  .park .timetable_list_box_tower_txt span {
    font-size: 1rem;
    display: inline-block;
  }
}
@media (max-width:768px) {
  .park .timetable_list_box_tower_txt {
    font-size: 1.6rem;
    padding: 20px 5px 0px;
  }
  .park .timetable_list_box_tower_txt strong {
    font-size: 1.4rem;
  }
  .park .timetable_list_box_tower_txt span {
    font-size: 1rem;
    display: inline-block;
  }
}
.park .timetable_list_box_kitaya {
  width: 48%;
  display: block;
  position: relative;
  background: #b8cc21;
  margin-top: 50px;
}
@media (max-width:768px) {
  .park .timetable_list_box_kitaya {
    width: 100%;
  }
}
.park .timetable_list_box_kitaya_status {
  width: 100%;
  position: absolute;
  top: -30px;
  left: -10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media (min-width:769px) and (max-width:1243px) {
  .park .timetable_list_box_kitaya_status {
    top: -30px;
    align-items: stretch;
  }
}
@media (max-width:768px) {
  .park .timetable_list_box_kitaya_status {
    top: -20px;
  }
}
.park .timetable_list_box_kitaya_time {
  width: 30%;
  font-size: 1.8rem;
  font-weight: 900;
  background: #172c78;
  color: #FFF;
  padding: 10px 10px;
  box-sizing: border-box;
  line-height: 1.2;
}
@media (min-width:769px) and (max-width:1243px) {
  .park .timetable_list_box_kitaya_time {
    width: 27%;
    font-size: 1.4rem;
    padding: 10px 10px;
  }
}
@media (max-width:768px) {
  .park .timetable_list_box_kitaya_time {
    width: 25%;
    font-size: 1.3rem;
    padding: 5px 7px;
    display: inline;
  }
}
.park .timetable_list_box_kitaya_apptype {
  font-size: 1.8rem;
  font-weight: 900;
  background: #ffef38;
  color: #e6337f;
  padding: 10px 10px;
  box-sizing: border-box;
  text-align: left;
  line-height: 1.2;
}
.park .timetable_list_box_kitaya_apptype span {
  font-size: 1.1rem;
}
@media (min-width:769px) and (max-width:1243px) {
  .park .timetable_list_box_kitaya_apptype {
    width: 60%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 1.4rem;
    padding: 7px 10px;
  }
  .park .timetable_list_box_kitaya_apptype span {
    width: 60%;
    display: inline-block;
    font-size: 1rem;
    margin-left: 5px;
  }
}
@media (max-width:768px) {
  .park .timetable_list_box_kitaya_apptype {
    font-size: 1.3rem;
    display: inline;
    padding: 5px 7px;
  }
  .park .timetable_list_box_kitaya_apptype span {
    font-size: 0.8rem;
    display: inline;
  }
}
.park .timetable_list_box_kitaya_wrap {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.park .timetable_list_box_kitaya_photo {
  width: 30%;
  margin: 0 auto 0;
  text-align: center;
}
.park .timetable_list_box_kitaya_txt {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 70%;
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  padding: 20px 10px 0px;
  box-sizing: border-box;
  color: #FFF;
  line-height: 1.5;
}
.park .timetable_list_box_kitaya_txt strong {
  font-size: 1.7rem;
}
.park .timetable_list_box_kitaya_txt span {
  font-size: 1.2rem;
  line-height: 1.5;
  display: inline-block;
}
@media (min-width:769px) and (max-width:1243px) {
  .park .timetable_list_box_kitaya_txt {
    font-size: 1.6rem;
    padding: 10px 0;
    line-height: 1.3;
  }
  .park .timetable_list_box_kitaya_txt strong {
    font-size: 1.4rem;
  }
  .park .timetable_list_box_kitaya_txt span {
    font-size: 1rem;
    display: inline-block;
  }
}
@media (max-width:768px) {
  .park .timetable_list_box_kitaya_txt {
    font-size: 1.6rem;
    padding: 10px 0;
  }
  .park .timetable_list_box_kitaya_txt strong {
    font-size: 1.4rem;
  }
  .park .timetable_list_box_kitaya_txt span {
    font-size: 1rem;
    display: inline-block;
  }
}

.timetable {
  padding: 0 0 150px;
  background: #f0f3f6;
  container-type: inline-size;
}
.timetable_img {
  width: 47%;
}
.timetable_img_wrap {
  width: 96%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0px 0 100px;
  display: flex;
  justify-content: space-between;
}
@media (max-width:768px) {
  .timetable_img_wrap {
    flex-direction: column;
    padding: 0px 0 50px;
  }
}
@media (max-width:768px) {
  .timetable_img {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media (max-width:768px) {
  .timetable_tabbtn {
    width: 96%;
    margin: 0 auto;
  }
}
.timetable_heading-box {
  padding: 30px 10px 50px;
  background: url(../../images/bg_heading.jpg) no-repeat;
  background-size: cover;
}
.timetable_heading {
  text-align: center;
}
.timetable_top-box {
  display: flex;
  justify-content: center;
  align-items: start;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.timetable_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28.7rem;
  height: 6rem;
  padding-bottom: 0.3rem;
  color: #172c78;
  font-family: "Barlow", "Noto Sans JP", sans-serif;
  font-style: normal;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  box-sizing: border-box;
  background: #FFF;
  border: 5px solid #172c78;
  border-radius: 3rem;
  opacity: 1;
  cursor: pointer;
}
.timetable_btn > .day {
  margin-left: 0.1rem;
  padding-top: 0.85rem;
  font-size: 1.44rem;
}
.timetable_btn:hover {
  opacity: 0.8;
}
.timetable_btn:active {
  opacity: 0.6;
}
.timetable_btn:first-of-type {
  margin-right: 38px;
}
.timetable_btn.is-active {
  color: #172c78;
  background: #172c78;
  color: #ffee00;
}
.timetable_selected-date {
  padding: 50px 0;
  color: #172c78;
  font-family: "Barlow", "Noto Sans JP", sans-serif;
  font-style: normal;
  font-size: 4.4rem;
  font-weight: 700;
  text-align: center;
}
.timetable_selected-date.is-active {
  display: block;
}
.timetable_selected-date > span {
  position: relative;
  top: -0.3rem;
  display: inline-block;
  font-size: 0.5em;
}
.timetable_container {
  position: relative;
  width: 1100px;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
@container (max-width: 1320px) {
  .timetable_container {
    padding: 0 10px 0 100px;
  }
}
.timetable_timeline {
  position: absolute;
  left: -90px;
  width: 90px;
}
@container (max-width: 1320px) {
  .timetable_timeline {
    left: 15px;
  }
}
.timetable_timeline-time {
  position: absolute;
  width: 74px;
}
.timetable_timeline-time.t1000 {
  top: 138px;
}
.timetable_timeline-time.t1100 {
  top: 318px;
}
.timetable_timeline-time.t1200 {
  top: 498px;
}
.timetable_timeline-time.t1300 {
  top: 678px;
}
.timetable_timeline-time.t1400 {
  top: 858px;
}
.timetable_timeline-time.t1500 {
  top: 1038px;
}
.timetable_timeline-time.t1600 {
  top: 1218px;
}
.timetable_timeline-time.t1700 {
  top: 1398px;
}
.timetable_timeline-time.t1800 {
  top: 1578px;
}
.timetable_timeline-time.t1900 {
  top: 1758px;
}
.timetable_timeline-time.t2000 {
  top: 1938px;
}
.timetable_timeline-time.t2100 {
  top: 2116px;
}
.timetable_table {
  position: relative;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 153px repeat(10, 180px) 178px;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  width: 1100px;
  max-width: 100%;
  margin: 0 auto;
  background: #fff;
  overflow: hidden;
  border-radius: 17px;
  box-shadow: 0px 8px 46px 20px rgba(158, 156, 156, 0.08);
}
.timetable_table.is-active {
  display: grid;
}
.timetable_table .thead-line {
  grid-area: 1/1/2/2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
}
.timetable_table .thead-kitaya {
  grid-area: 1/2/2/3;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
}
.timetable_table .thead-sakura {
  grid-area: 1/3/2/4;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-bottom: 2px solid #000;
}
.timetable_table .time-point {
  position: relative;
  background: repeating-linear-gradient(#fff, #fff 28px, #e6e6e6 28px, #e6e6e6 30px);
}
.timetable_table .time-point:not(:nth-child(3n)) {
  border-right: 2px solid #000;
}
.timetable_table .box {
  position: absolute;
  top: 10px;
  left: 10px;
  width: calc(100% - 20px);
  height: 160px;
  padding: 12px 12px 0;
  box-sizing: border-box;
  background: #ebeef1;
  border-radius: 9px;
  cursor: pointer;
  z-index: 2;
  container-type: inline-size;
}
.timetable_table .box:hover {
  opacity: 0.8;
}
.timetable_table .box-line {
  background: #47c85c url(../../images/arrow-line.png) no-repeat bottom right;
}
.timetable_table .box-kitaya {
  background: #b8cc21 url(../../images/arrow-kitaya.png) no-repeat bottom right;
}
.timetable_table .box-sakura {
  background: #f87575 url(../../images/arrow-sakura.png) no-repeat bottom right;
}
.timetable_table .box-other {
  background: #dee4e9;
  cursor: default;
}
.timetable_table .box-other:hover {
  opacity: 1;
}
.timetable_table .box-comingsoon {
  position: absolute;
  top: 10px;
  left: 10px;
  width: calc(100% - 20px);
  height: 160px;
  color: #777;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  box-sizing: border-box;
  cursor: pointer;
  z-index: 2;
  cursor: default;
}
.timetable_table .box-comingsoon:hover {
  opacity: 1;
}
.timetable_table .box_time {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 193px;
  max-width: 98%;
  height: 30px;
  margin: 0 auto;
  padding-bottom: 2px;
  color: #ebeef1;
  font-family: "Barlow", "Noto Sans JP", sans-serif;
  font-style: normal;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 0;
  box-sizing: border-box;
  background: #000;
}
.timetable_table .box_time-line {
  color: #47c85c;
}
.timetable_table .box_time-kitaya {
  color: #b8cc21;
}
.timetable_table .box_time-sakura {
  color: #f87575;
}
.timetable_table .box_ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 10px;
  height: 120px;
  color: #000;
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1.39;
  text-align: center;
  box-sizing: border-box;
}
.timetable_table .box_ttl-column {
  flex-flow: column;
}
.timetable_table .box_ttl-column span.small {
  margin-top: 1em;
  font-size: 0.65em;
  text-align: left;
}
.timetable_table .box_ttl-column span.small i {
  font-size: 0.6em;
  font-style: normal;
}
@container (max-width: 308px) {
  .timetable_table .box_ttl-small {
    font-size: 2rem;
  }
}
.timetable_table .box_ttl-smallest {
  font-size: 1.7rem;
}
@container (max-width: 308px) {
  .timetable_table .box_ttl-smallest {
    font-size: 1.3rem;
  }
}
.timetable_table .box-plus10 {
  top: 30px;
}
.timetable_table .box-plus30 {
  top: 90px;
}
.timetable_table .box-plus40 {
  top: 120px;
}
.timetable_table .box-plus45 {
  top: 135px;
}
.timetable_table .box-plus50 {
  top: 150px;
}
.timetable_table .box-50min {
  height: 130px;
}
.timetable_table .box-50min .box_ttl {
  height: 88px;
}
.timetable_table .box-75min {
  height: 210px;
}
.timetable_table .box-75min .box_ttl {
  height: 166px;
}
.timetable_table .box-85min {
  height: 235.6px;
}
.timetable_table .box-85min .box_ttl {
  height: 186px;
}
.timetable_table .box-120min {
  height: 400px;
}
.timetable_table .box-120min .box_ttl {
  height: 300px;
}
.timetable_table .box-180min {
  height: 520px;
}
.timetable_table .box-180min .box_ttl {
  height: 480px;
}
.timetable_table .box-360min {
  height: 1060px;
}
.timetable_table .box-360min .box_ttl {
  height: 1020px;
}
.timetable_table .l1000 {
  grid-area: 2/1/3/2;
}
.timetable_table .k1000 {
  grid-area: 2/2/3/3;
}
.timetable_table .s1000 {
  grid-area: 2/3/3/4;
}
.timetable_table .l1100 {
  grid-area: 3/1/4/2;
}
.timetable_table .k1100 {
  grid-area: 3/2/4/3;
}
.timetable_table .s1100 {
  grid-area: 3/3/4/4;
}
.timetable_table .l1200 {
  grid-area: 4/1/5/2;
}
.timetable_table .k1200 {
  grid-area: 4/2/5/3;
}
.timetable_table .s1200 {
  grid-area: 4/3/5/4;
}
.timetable_table .l1300 {
  grid-area: 5/1/6/2;
}
.timetable_table .k1300 {
  grid-area: 5/2/6/3;
}
.timetable_table .s1300 {
  grid-area: 5/3/6/4;
}
.timetable_table .l1400 {
  grid-area: 6/1/7/2;
}
.timetable_table .k1400 {
  grid-area: 6/2/7/3;
}
.timetable_table .s1400 {
  grid-area: 6/3/7/4;
}
.timetable_table .l1500 {
  grid-area: 7/1/8/2;
}
.timetable_table .k1500 {
  grid-area: 7/2/8/3;
}
.timetable_table .s1500 {
  grid-area: 7/3/8/4;
}
.timetable_table .l1600 {
  grid-area: 8/1/9/2;
}
.timetable_table .k1600 {
  grid-area: 8/2/9/3;
}
.timetable_table .s1600 {
  grid-area: 8/3/9/4;
}
.timetable_table .l1700 {
  grid-area: 9/1/10/2;
}
.timetable_table .k1700 {
  grid-area: 9/2/10/3;
}
.timetable_table .s1700 {
  grid-area: 9/3/10/4;
}
.timetable_table .l1800 {
  grid-area: 10/1/11/2;
}
.timetable_table .k1800 {
  grid-area: 10/2/11/3;
}
.timetable_table .s1800 {
  grid-area: 10/3/11/4;
}
.timetable_table .l1900 {
  grid-area: 11/1/12/2;
}
.timetable_table .k1900 {
  grid-area: 11/2/12/3;
}
.timetable_table .s1900 {
  grid-area: 11/3/12/4;
}
.timetable_table .l2000 {
  grid-area: 12/1/13/2;
}
.timetable_table .k2000 {
  grid-area: 12/2/13/3;
}
.timetable_table .s2000 {
  grid-area: 12/3/13/4;
}

@media (max-width:768px) {
  .timetable {
    padding: 0 0 30px;
  }
  .timetable_heading-box {
    padding: 15px 10px 30px;
  }
  .timetable_heading {
    width: 24.96rem;
    margin: 0 auto;
  }
  .timetable_btn {
    height: 4rem;
    padding-bottom: 0.2rem;
    font-size: 2rem;
    border: 2px solid #fff;
    border-radius: 2rem;
  }
  .timetable_btn:first-of-type {
    margin-right: 10px;
  }
  .timetable_btn > .day {
    padding-top: 0.4rem;
  }
  .timetable_selected-date {
    padding: 30px 0;
    font-size: 3.6rem;
  }
  .timetable_container {
    padding: 0 2vw 0 12vw;
  }
  .timetable_timeline {
    left: 1vw;
    width: 12vw;
  }
  .timetable_timeline-time {
    position: absolute;
    width: 10vw;
    font-size: 1vw;
    line-height: 1;
  }
  .timetable_timeline-time.t1000 {
    top: 18.4vw;
  }
  .timetable_timeline-time.t1100 {
    top: 42.4vw;
  }
  .timetable_timeline-time.t1200 {
    top: 66.4vw;
  }
  .timetable_timeline-time.t1300 {
    top: 90.4vw;
  }
  .timetable_timeline-time.t1400 {
    top: 114.4vw;
  }
  .timetable_timeline-time.t1500 {
    top: 138.4vw;
  }
  .timetable_timeline-time.t1600 {
    top: 162.4vw;
  }
  .timetable_timeline-time.t1700 {
    top: 186.4vw;
  }
  .timetable_timeline-time.t1800 {
    top: 210.4vw;
  }
  .timetable_timeline-time.t1900 {
    top: 234.4vw;
  }
  .timetable_timeline-time.t2000 {
    top: 258.4vw;
  }
  .timetable_timeline-time.t2100 {
    top: 282.1333vw;
  }
  .timetable_table {
    grid-template-rows: 20.4vw repeat(10, 24vw) 23.7333vw;
    border-radius: 2.2667vw;
  }
  .timetable_table .thead-line {
    padding: 1.3333vw;
    border-bottom: 0.2667vw solid #000;
    border-right: 0.2667vw solid #000;
  }
  .timetable_table .thead-kitaya {
    padding: 1.3333vw;
    border-bottom: 0.2667vw solid #000;
    border-right: 0.2667vw solid #000;
  }
  .timetable_table .thead-sakura {
    padding: 1.3333vw 4.5vw;
    border-bottom: 0.2667vw solid #000;
  }
  .timetable_table .time-point {
    background: repeating-linear-gradient(#fff, #fff 3.7333vw, #e6e6e6 3.7333vw, #e6e6e6 4vw);
  }
  .timetable_table .time-point:not(:nth-child(3n)) {
    border-right: 0.2667vw solid #000;
  }
  .timetable_table .box {
    top: 1vw;
    left: 1vw;
    width: calc(100% - 2vw);
    height: 22vw;
    padding: 1.6vw 1.6vw 0;
    border-radius: 1.2vw;
  }
  .timetable_table .box-line {
    background: #47c85c url(../../images/arrow-line.png) no-repeat bottom right;
    background-size: 7vw;
  }
  .timetable_table .box-kitaya {
    background: #b8cc21 url(../../images/arrow-kitaya.png) no-repeat bottom right;
    background-size: 7vw;
  }
  .timetable_table .box-sakura {
    background: #f87575 url(../../images/arrow-sakura.png) no-repeat bottom right;
    background-size: 7vw;
  }
  .timetable_table .box-comingsoon {
    top: 1vw;
    left: 0;
    width: 100%;
    height: 22vw;
    padding: 0;
    border-radius: 1.2vw;
    font-size: 4vw;
  }
  .timetable_table .box_time {
    width: 25.7333vw;
    max-width: 100%;
    height: 4vw;
    margin: 0 auto;
    padding: 0;
    font-size: 3.6vw;
    box-sizing: border-box;
    background: #000;
  }
  .timetable_table .box_ttl {
    padding-bottom: 1.3333vw;
    height: 16vw;
    color: #000;
    font-size: 3.0667vw;
  }
  .timetable_table .box_ttl-column {
    font-size: 2.5vw;
  }
  .timetable_table .box_ttl-column span.small {
    margin-top: 1em;
    font-size: 0.55em;
  }
  .timetable_table .box_ttl-small {
    font-size: 2.5vw;
  }
  .timetable_table .box_ttl-smallest {
    padding-bottom: 0.2vw;
    font-size: 2vw;
  }
  .timetable_table .box-plus10 {
    top: 2vw;
  }
  .timetable_table .box-plus30 {
    top: 12vw;
  }
  .timetable_table .box-plus40 {
    top: 16vw;
  }
  .timetable_table .box-plus45 {
    top: 18vw;
  }
  .timetable_table .box-plus50 {
    top: 20vw;
  }
  .timetable_table .box-50min {
    height: 20.75vw;
  }
  .timetable_table .box-50min .box_ttl {
    height: 16vw;
  }
  .timetable_table .box-75min {
    height: 28.6vw;
  }
  .timetable_table .box-75min .box_ttl {
    height: 22vw;
  }
  .timetable_table .box-85min {
    height: 31.02vw;
  }
  .timetable_table .box-85min .box_ttl {
    height: 25vw;
  }
  .timetable_table .box-120min {
    height: 54vw;
  }
  .timetable_table .box-120min .box_ttl {
    height: 38vw;
  }
  .timetable_table .box-180min {
    height: 70vw;
  }
  .timetable_table .box-180min .box_ttl {
    height: 56vw;
  }
  .timetable_table .box-360min {
    height: 142vw;
  }
  .timetable_table .box-360min .box_ttl {
    height: 134vw;
  }
}
.modaal-container {
  max-width: 650px;
  background: transparent;
}

.modal {
  max-width: 650px;
  padding: 35px 35px 50px;
  text-align: center;
  border-radius: 9px;
}
.modal-line {
  color: #47c85c;
  background: #47c85c;
}
.modal-line .modal_link {
  color: #47c85c;
}
.modal-kitaya {
  color: #b8cc21;
  background: #b8cc21;
}
.modal-kitaya .modal_link {
  color: #b8cc21;
}
.modal-sakura {
  color: #f87575;
  background: #f87575;
}
.modal-sakura .modal_link {
  color: #f87575;
}
.modal_time {
  margin: 0 auto 40px;
  padding: 10px 18px 15px;
  font-size: 4rem;
  font-family: "Barlow", "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  background: #000;
}
.modal_time > img {
  height: 29px;
}
.modal_img {
  display: block;
  width: 390px;
  max-width: 100%;
  margin: 0 auto 20px;
}
.modal_ttl {
  margin: 0 auto 15px;
  color: #000;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.5;
}
.modal_location {
  margin: 0 auto 45px;
  color: #000;
  font-weight: 700;
  font-size: 2.4rem;
}
.modal_txt {
  margin: 0 auto 20px;
  color: #000;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.67;
  text-align: left;
}
.modal_txt i {
  font-size: 0.8em;
  font-style: normal;
}
.modal_link {
  display: block;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  background: #000;
  padding: 1vw 5vw;
  border-radius: 100px;
}
.modal .js-modaal-close {
  position: absolute;
  top: -35px;
  right: 2px;
  width: 26px;
  height: 26px;
  font-size: 0;
  cursor: pointer;
}

@media (max-width:768px) {
  .modaal-container {
    max-width: 94vw;
  }
  .modal {
    max-width: 94vw;
    padding: 10px 10px 20px;
    border-radius: 1.2vw;
  }
  .modal_time {
    margin: 0 auto 10px;
    padding: 0.5rem 2vw 0.7rem;
    font-size: 2.2rem;
  }
  .modal_time > img {
    height: 1.6rem;
  }
  .modal_img {
    margin: 0 auto 10px;
  }
  .modal_ttl {
    margin: 0 auto 10px;
    font-size: 2rem;
    border-radius: 1.467vw;
  }
  .modal_location {
    margin: 0 auto 10px;
    font-size: 1.6rem;
  }
  .modal_txt {
    margin: 0 auto 10px;
    font-size: 1.4rem;
  }
  .modal .js-modaal-close {
    top: -27px;
    width: 20px;
    height: 20px;
  }
}
.event {
  padding: 0 0 75px;
  background: #f0f3f6;
}
.event_heading-box {
  padding: 30px 10px 100px;
  background: url(../../images/bg_heading.jpg) no-repeat;
  background-size: cover;
}
.event_heading {
  text-align: center;
}
.event_container {
  width: calc(100% - 20px);
  max-width: 1100px;
  margin: -75px auto 0;
  padding: 75px 0 110px;
  background: #fff;
  box-sizing: border-box;
  border-radius: 17px;
  box-shadow: 0px 8px 46px 20px rgba(158, 156, 156, 0.08);
}
.event_list {
  display: flex;
  justify-content: start;
  flex-flow: wrap;
  width: 825px;
  max-width: 96%;
  margin: 0 auto 60px;
}
.event_list dt {
  flex: 0 0 15.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15.3rem;
  height: 5.2rem;
  margin-bottom: 2.2rem;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  background: #172c78;
}
.event_list dd {
  flex: 1 1 calc(100% - 153px);
  margin-bottom: 22px;
  padding-left: 72px;
  color: #172c78;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.75;
  box-sizing: border-box;
}
.event_list dd > span.small {
  padding-bottom: 0.4rem;
  font-size: 1.7rem;
}
.event_list dd > .note {
  padding-bottom: 0.4rem;
  font-size: 1.7rem;
  line-height: 1;
}
.event_map {
  width: 825px;
  max-width: 96%;
  margin: 0 auto 55px;
}
.event_map:last-child {
  margin: 0 auto;
}
.event_map-heading {
  margin: 0 auto 10px;
  color: #172c78;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.24;
}
.event_location {
  margin-top: 4px;
  color: #172c78;
  font-size: 1.5rem;
  font-weight: 400;
}
.event_map-wrapper {
  max-width: 825px;
  height: 287px;
  filter: grayscale(1);
}
.event_map-wrapper:hover {
  filter: none;
}
.event_map-wrapper iframe {
  max-width: 100%;
}

@media (max-width:768px) {
  .event {
    padding: 0 0 50px;
  }
  .event_heading-box {
    padding: 15px 10px 60px;
  }
  .event_heading {
    margin: 0 auto;
  }
  .event_heading > img {
    width: 15.3rem;
  }
  .event_container {
    margin: -50px auto 0;
    padding: 30px 0;
  }
  .event_list {
    width: 90%;
    margin: 0 auto 10px;
  }
  .event_list dt {
    flex: 0 0 8rem;
    width: 8rem;
    height: 3rem;
    font-size: 1.6rem;
  }
  .event_list dd {
    flex: 1 1 calc(100% - 8rem);
    padding-left: 1rem;
    font-size: 1.6rem;
  }
  .event_list dd > span.small {
    display: inline-block;
    margin-bottom: 1rem;
    padding-bottom: 0;
    font-size: 1.2rem;
    line-height: 1;
  }
  .event_list dd > .note {
    padding-bottom: 0.4rem;
    font-size: 1.2rem;
    line-height: 1;
  }
  .event_map {
    margin: 0 auto 30px;
  }
  .event_map-heading {
    font-size: 2rem;
  }
}
.sponsors {
  padding: 60px 0;
  background: #172c78;
}
.sponsors_list {
  display: flex;
  justify-content: start;
  flex-flow: wrap;
  max-width: 1000px;
  width: 96%;
  height: auto;
  margin: 0 auto;
  gap: 20px 2%;
}
.sponsors_list > li {
  width: 23.5%;
}
.sponsors_list > li.is-solo {
  width: 45%;
  margin-bottom: -50px;
}

@media (max-width:768px) {
  .sponsors {
    padding: 40px 0;
  }
  .sponsors_list {
    max-width: 450px;
    width: 90%;
    gap: 3vw 4%;
  }
  .sponsors_list > li {
    width: 48%;
  }
  .sponsors_list > li.is-solo {
    width: 70%;
    margin-bottom: -25px;
  }
}
.sq {
  width: 100%;
}
.sq_archive {
  width: 100%;
  max-width: 300px;
  display: block;
  padding: 10px 20px;
  text-align: center;
  box-sizing: border-box;
  color: #FFF;
  background: #172c78;
  border-radius: 100px;
  margin: 60px auto 40px;
  font-size: 1.6rem;
  font-weight: 900;
}
@media (max-width:768px) {
  .sq_archive {
    width: 60%;
    max-width: auto;
    font-size: 1.2rem;
    margin: 40px auto 20px;
  }
}
.sq_sns {
  width: 90%;
  max-width: 200px;
  margin: 40px auto 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
}
.sq_sns li {
  padding: 0 10px;
}
.sq_logo {
  display: block;
  width: 150px;
  margin: 60px auto 30px;
}
@media (max-width:768px) {
  .sq_logo {
    width: 100px;
    margin: 30px auto 15px;
  }
}

.copyright {
  background: #172c78;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.copyright_txt {
  font-size: 1.2rem;
  color: #FFF;
  text-align: center;
}
@media (max-width:768px) {
  .copyright_txt {
    font-size: 1rem;
  }
}

.pagetop {
  position: fixed;
  display: flex;
  align-items: center;
  padding: 20px 15px;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  text-align: center;
  background: #172c78;
  border-radius: 50%;
  z-index: 100;
}
.pagetop > img {
  width: 16px;
  min-height: 0;
}

/* -- UTILITY -- */
.is-animation {
  position: relative;
  overflow: hidden;
  background: transparent;
}
.is-animation:before {
  position: absolute;
  display: block;
  width: 300%;
  height: 100%;
  top: 0;
  bottom: 0;
  animation: bg-gradient 5s linear infinite alternate;
  background: linear-gradient(45deg, #c661eb 0%, #233678 50%, #83c2df 100%);
  content: "";
  z-index: -1;
}

@keyframes bg-gradient {
  0% {
    right: 0;
  }
  100% {
    right: -200%;
  }
}
/* 共通フッター用 もしくはブレイクポイントごとの表示指定 */
.pcDetail {
  display: block;
}

.spDetail {
  display: none;
}

.pc {
  display: block;
}

.tb {
  display: none;
}

.sp {
  display: none;
}

.spib {
  display: none;
}

@media (max-width:980px) {
  .spDetail {
    display: block;
  }
  .pcDetail {
    display: none;
  }
}
@media (min-width:769px) and (max-width:1243px) {
  .pcDetail {
    display: none;
  }
  .pc {
    display: none;
  }
  .tb {
    display: block;
  }
  .sp {
    display: none;
  }
  .spib {
    display: none;
  }
}
@media (max-width:768px) {
  .pcDetail {
    display: none;
  }
  .spDetail {
    display: block;
  }
  .pc {
    display: none;
  }
  .tb {
    display: none;
  }
  .sp {
    display: block !important;
  }
  .spib {
    display: inline-block !important;
  }
}/*# sourceMappingURL=style.css.map */