@charset "UTF-8";
@media screen and (max-width: 1000px) {
  html {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 320px) {
  html {
    font-size: 14px;
  }
}

body {
  color: #373E47;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  overflow: hidden;
}

.background {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: url(../img/bg-fixed.png);
  background-size: cover;
  z-index: -1;
}

a {
  color: #373E47;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

p, li, dt, dd, th, td {
  line-height: 1.7;
  font-weight: normal;
  letter-spacing: 0.1rem;
}

h1, h2, h3, h4 {
  line-height: 1.7;
  font-weight: normal;
  letter-spacing: 0.1em;
}

/* smartphone */
@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
  .sp-only {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: block;
  }
}
/* layout */
.content-wrap {
  max-width: 1080px;
  margin: 0 auto;
}
@media screen and (max-width: 1144px) {
  .content-wrap {
    margin: 0 32px;
  }
}
@media screen and (max-width: 767px) {
  .content-wrap {
    margin: 0 20px;
  }
}

img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.button {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: bold;
  max-width: 460px;
  width: 100%;
  height: 80px;
  line-height: 80px;
  position: relative;
  color: #fff;
  text-align: center;
  padding: 0 64px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .button {
    font-size: 1.125rem;
    height: 56px;
    line-height: 56px;
    padding: 0 40px;
  }
}
.button--apply {
  background: -webkit-gradient(linear, left top, right top, from(#0D11BB), to(#120E61));
  background: linear-gradient(to right, #0D11BB, #120E61);
}
.button--view {
  background: -webkit-gradient(linear, left top, right top, from(#008FA2), to(#115980));
  background: linear-gradient(to right, #008FA2, #115980);
}
.button--news {
  background: #373E47;
  height: 56px;
  line-height: 55px;
  border: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .button--news {
    height: 48px;
    line-height: 47px;
  }
}
.button::after {
  content: "";
  display: block;
  width: 34px;
  height: 34px;
  background-image: url(../img/ico-arrow-button.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .button::after {
    width: 24px;
    height: 24px;
    right: 10px;
  }
}
.button:hover {
  opacity: 0.7;
}
.button:hover::after {
  -webkit-transform: translateY(-50%) translateX(8px);
          transform: translateY(-50%) translateX(8px);
}
.button--youtube {
  background: transparent;
  color: #F06414;
  border: 2px solid #F06414;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
  line-height: 1.3;
}
.button--youtube::after {
  background-image: url(../img/ico-arrow-button-orange.png);
}

.text-link {
  color: #F06414;
  font-size: 0.875rem;
  font-weight: bold;
  padding-left: 24px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .text-link {
    padding-left: 24px;
  }
}
.text-link span {
  font-family: "Orbitron", sans-serif;
}
.text-link::before {
  content: "";
  display: block;
  width: 14px;
  height: 13px;
  background-image: url(../img/ico-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .text-link::before {
    width: 14px;
    height: 14px;
  }
}
.text-link:hover {
  opacity: 0.7;
}
.text-link:hover::before {
  -webkit-transform: translateY(-50%) translateX(8px);
          transform: translateY(-50%) translateX(8px);
}

.title__english {
  display: block;
  font-family: "Orbitron", sans-serif;
  font-weight: bold;
  color: #F06414;
  font-size: 3.75rem;
  letter-spacing: 0.1em;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .title__english {
    font-size: 2.5rem;
    line-height: 1.2;
  }
}
.title__japanese {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #373E47;
}
@media screen and (max-width: 767px) {
  .title__japanese {
    font-size: 1rem;
  }
}
.title--white .title__english, .title--white .title__japanese {
  color: #fff;
}

.description {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 2.3;
}
@media screen and (max-width: 767px) {
  .description {
    font-size: 1rem;
    line-height: 2;
    font-weight: normal;
  }
}
.description + .description {
  margin-top: 1.5em;
}

.table {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  border-spacing: 16px;
}
@media screen and (max-width: 767px) {
  .table {
    border-spacing: 0;
  }
}
.table th,
.table td {
  font-size: 1.125rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .table th,
  .table td {
    font-size: 0.9rem;
    padding: 8px;
    vertical-align: top;
  }
}
.table th {
  vertical-align: top;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .table th {
    padding: 0 0 16px;
  }
}
.table th span {
  display: block;
  width: 100%;
  text-align: center;
  font-weight: bold;
  background: #F06414;
  color: #fff;
  position: relative;
  vertical-align: top;
  white-space: nowrap;
  padding: 0 8px;
  height: 40px;
  line-height: 40px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .table th span {
    white-space: normal;
    padding: 8px;
    line-height: 1.5;
    height: auto;
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .table th {
    white-space: normal;
    width: 25%;
  }
}
.table td {
  color: #373E47;
  padding: 8px 0 8px 24px;
}
.table td span {
  display: block;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .table td span {
    font-size: 0.75rem;
  }
}
.table td a {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .table td {
    width: 75%;
  }
}

.table-02 {
  width: calc(100% + 4px);
  margin-left: -2px;
  border-spacing: 2px;
}
.table-02 th,
.table-02 td {
  font-size: 1.125rem;
  padding: 16px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .table-02 th,
  .table-02 td {
    font-size: 0.875rem;
    padding: 8px;
    word-break: break-all;
  }
}
@media screen and (max-width: 767px) {
  .table-02 .status-title {
    font-size: 0.875rem;
    background: #666;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    font-weight: bold;
    padding: 4px;
  }
}
.table-02 .table-title {
  background: #373E47;
  color: #fff;
  font-weight: bold;
  vertical-align: top;
  white-space: nowrap;
  line-height: 1.5;
}
.table-02 .table-title span {
  font-size: 0.875rem;
}
.table-02 td {
  background: #f5f5f5;
  color: #373E47;
  line-height: 1.5;
  vertical-align: top;
}
.table-02 .table-white {
  background: #fff;
}
@media screen and (max-width: 767px) {
  .table-02 .table-white {
    width: 76%;
  }
}
.table-02 .table-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 20px;
}
@media screen and (max-width: 767px) {
  .table-02 .table-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    grid-gap: 8px;
  }
}
.table-02 .table-wrap img {
  max-width: 200px;
}

.tab {
  width: 100%;
}
.tab__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 81px;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .tab__menu {
    min-height: 64px;
  }
}
.tab__menu-item {
  width: 40%;
  padding: 10px 0;
  text-align: center;
  background: #373E47;
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 20px 20px 0 0;
}
.tab__menu-item:first-of-type {
  margin-right: 2%;
}
@media screen and (max-width: 767px) {
  .tab__menu-item:first-of-type {
    margin-right: 1%;
  }
}
@media screen and (max-width: 767px) {
  .tab__menu-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 45%;
    font-size: 1rem;
    padding: 0 8px;
    height: 48px;
    line-height: 1.5;
  }
}
.tab__menu-item.is-active {
  padding: 20px 0;
  background: #F06414;
}
@media screen and (max-width: 767px) {
  .tab__menu-item.is-active {
    padding: 0 8px;
    height: 64px;
  }
}
.tab__panel {
  width: 100%;
}
.tab__panel-box {
  display: none;
  padding: 64px;
  background-color: #fff;
  border-radius: 40px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  .tab__panel-box {
    padding: 16px;
    border-radius: 20px;
  }
}
.tab__panel-box.is-show {
  display: block;
}

.mv {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .mv {
    margin-top: 56px;
  }
}

.apply {
  background-image: url(../img/bg-apply.png);
  background-size: cover;
  padding: 40px 0;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .apply {
    padding: 24px 0;
    background-image: url(../img/bg-apply-sp.png);
    background-position: center;
  }
}
@media screen and (max-width: 1000px) {
  .apply__content {
    text-align: center;
  }
}

.apply__site-title {
  text-align: center;
  font-family: "Orbitron", sans-serif;
  font-weight: bold;
  font-size: 3.5rem;
  margin-bottom: 24px;
  max-width: 1020px;
  margin: 0 auto 32px;
}

@media screen and (max-width: 1000px) {
  .apply__site-title {
    font-size: 2rem;
    line-height: 1.3;
    margin: 0 auto 24px;
  }
}

.apply__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 8px;
}
@media screen and (max-width: 1000px) {
  .apply__text {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    display: inline-block;
  }
}
.apply__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 16px;
}
@media screen and (max-width: 1000px) {
  .apply__date + .apply__date {
    margin-top: 4px;
  }

  .apply__date {
    margin: 0;
  }
}
.apply__date-title {
  width: 120px;
  height: 48px;
  line-height: 46px;
  border: 1px solid #fff;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-right: 24px;
}
@media screen and (max-width: 767px) {
  .apply__date-title {
    font-size: 1rem;
    height: 32px;
    line-height: 31px;
    margin-right: 16px;
    width: 64px;
  }
}
.apply__date-description {
  font-family: "Orbitron", sans-serif;
  font-size: 3.25rem;
  font-weight: bold;
  line-height: 1.2;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .apply__date-description {
    font-size: 2rem;
  }
}

.apply__date-description span {
  font-size: 1rem;
  display: inline-block;
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: bold;
  color: #F06414;
  margin-left:  6px;
  vertical-align: middle;
}

@media screen and (max-width: 1000px) {
  .apply__date-description span {
    font-size: 0.875rem;
    width: 24px;
    height: 24px;
    line-height: 24px;
  }
}

.apply__button-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 860px) {
  .apply__button-list {
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 24px;
    padding-bottom: 24px;
  }
}
.apply__button {
  text-align: center;
  max-width: 440px;
  margin: 0 16px;
}
@media screen and (max-width: 860px) {
  .apply__button {
    width: 100%;
    margin: 0;
  }
}
@media screen and (max-width: 860px) {
  .apply__button:last-of-type {
    margin-top: 12px;
  }
}
.apply__button-title {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: bold;
  position: relative;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .apply__button-title {
    font-size: 1rem;
  }
}
.apply__button-title::before, .apply__button-title::after {
  content: "";
  display: block;
  width: 1px;
  height: 24px;
  background: #fff;
  position: absolute;
  top: 4px;
}
@media screen and (max-width: 767px) {
  .apply__button-title::before, .apply__button-title::after {
    height: 20px;
    top: 3px;
  }
}
.apply__button-title::before {
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  left: -16px;
}
.apply__button-title::after {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  right: -16px;
}
.apply__term {
  display: block;
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .apply__term {
    font-size: 0.875rem;
    margin-bottom: 16px;
  }
}
.apply__term span {
  font-size: 1.6875rem;
  font-weight: bold;
  font-family: "Orbitron", sans-serif;
}
@media screen and (max-width: 767px) {
  .apply__term span {
    font-size: 1rem;
  }
}
.apply__news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 912px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .apply__news {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.apply__news-button {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .apply__news-button {
    width: 100%;
  }
}
.apply__news-title {
  width: 50%;
  font-size: 1.5rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .apply__news-title {
    width: 100%;
    text-align: center;
    font-size: 1rem;
    margin-bottom: 8px;
  }
}

@-webkit-keyframes loop-slide {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes loop-slide {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.concept {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .concept {
    padding: 64px 0;
  }
}
.concept__loop-text {
  width: 100vw;
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .concept__loop-text {
    margin-top: 16px;
    height: 54px;
  }
}
.concept__loop-image {
  -webkit-animation: loop-slide 40s infinite linear 0s both;
  animation: loop-slide 40s infinite linear 0s both;
}
.concept__loop-image img {
  width: 1972px;
  height: 90px;
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  .concept__loop-image img {
    width: 800px;
    height: auto;
  }
}
.concept__content {
  background: #fff;
  padding: 105px 20px 120px;
  text-align: center;
  border-radius: 40px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.16);
  position: relative;
  margin-bottom: 56px;
}
@media screen and (max-width: 767px) {
  .concept__content {
    padding: 64px 16px 80px;
    border-radius: 20px;
    margin-bottom: 8px;
  }
}
.concept__content::before, .concept__content::after {
  content: "";
  display: block;
  width: calc(100% - 48px);
  position: absolute;
  background-size: contain;
  left: 24px;
}
@media screen and (max-width: 767px) {
  .concept__content::before, .concept__content::after {
    width: calc(100% - 32px);
    left: 16px;
  }
}
.concept__content::before {
  background-image: url(../img/img-concept-top.png);
  top: 24px;
  padding-top: 5.8%;
}
@media screen and (max-width: 767px) {
  .concept__content::before {
    background-image: url(../img/img-concept-top-sp.png);
    padding-top: 10.27%;
    top: 16px;
  }
}
.concept__content::after {
  background-image: url(../img/img-concept-bottom.png);
  bottom: 24px;
  padding-top: 5.6%;
}
@media screen and (max-width: 767px) {
  .concept__content::after {
    background-image: url(../img/img-concept-bottom-sp.png);
    padding-top: 11.98%;
    bottom: 16px;
  }
}
.concept__sub-title {
  display: inline-block;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#F06414), to(#FAA92A));
  background: linear-gradient(to right, #F06414, #FAA92A);
  font-size: 2rem;
  font-weight: 700;
  height: 50px;
  line-height: 50px;
  width: 208px;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .concept__sub-title {
    font-size: 1.25rem;
    height: 40px;
    line-height: 40px;
    width: 160px;
  }
}
.concept__title {
  font-size: 3.1875rem;
  font-weight: 700;
  margin-bottom: 56px;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .concept__title {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 32px;
  }
}
.concept__title span {
  font-family: "Orbitron", sans-serif;
  font-size: 3.75rem;
}
@media screen and (max-width: 767px) {
  .concept__title span {
    font-size: 1.5rem;
    line-height: 1.1;
  }
}
.concept__description {
  max-width: 700px;
  text-align: left;
  margin: 0 auto;
}
.concept__description .marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, rgba(218, 41, 42, 0.4)));
  background: linear-gradient(transparent 60%, rgba(218, 41, 42, 0.4) 60%);
  font-weight: 700;
}

.overview {
  padding: 160px 0 120px;
}
@media screen and (max-width: 767px) {
  .overview {
    padding: 80px 0 64px;
  }
}
.overview__title {
  text-align: center;
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .overview__title {
    margin-bottom: 48px;
  }
}
.overview__table {
  margin-bottom: 72px;
}

.overview-tab__annotation {
  font-size: 0.875rem;
  margin-top: 16px;
}

.access {
  background: #373E47;
  color: #fff;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .access {
    padding: 64px 0;
  }
}
.access__title {
  text-align: center;
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .access__title {
    margin-bottom: 48px;
  }
}
.access__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .access__content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.access__text {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .access__text {
    width: 100%;
    margin-bottom: 40px;
  }
}
.access__map {
  width: 50%;
  height: 375px;
}
@media screen and (max-width: 767px) {
  .access__map {
    width: 100vw;
    height: 240px;
    margin-left: -20px;
  }
}
.access__map iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .access__map iframe {
    width: 100vw;
  }
}
.access__information {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .access__information {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.access__information + .access__information {
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .access__information + .access__information {
    margin-top: 32px;
  }
}
.access__information-title {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 700;
  width: 140px;
  padding: 8px 0;
  background: #F06414;
  color: #fff;
  text-align: center;
  line-height: 1.3;
  margin-right: 32px;
}
@media screen and (max-width: 767px) {
  .access__information-title {
    font-size: 1rem;
    width: 100%;
    margin-right: 0;
  }
}
.access__information-description {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  width: calc(100% - 140px);
}
@media screen and (max-width: 767px) {
  .access__information-description {
    font-size: 1rem;
    width: 100%;
    margin-top: 16px;
  }
}
.access__information-description strong {
  font-weight: 700;
}

.casts {
  padding: 120px 0;
}
@media screen and (max-width: 767px) {
  .casts {
    padding: 64px 0;
  }
}
.casts__title {
  text-align: center;
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .casts__title {
    margin-bottom: 40px;
  }
}

.casts__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 960px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .casts__list {
    grid-gap: 20px;
  }
}

.casts__list-content {
  width: calc(25% - 32px);
  position: relative;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .casts__list-content {
    width: calc(50% - 10px);
    margin-bottom: 0;
  }
}

.casts__list::after {
  content: "";
  display: block;
  width: calc(25% - 32px);
}

.casts__list::before {
  content: "";
  display: block;
  width: calc(25% - 32px);
  order: 1;
}

.casts__list-content-inner {
  display: block;
}
@media screen and (max-width: 767px) {
  .casts__list-content-inner {
  }
}
.casts__list-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .casts__list-image {
    margin: 0 auto 16px;
    border-radius: 10px;
  }
}
.casts__list-text {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .casts__list-text {
    width: 100%;
  }
}
.casts__list-title {
  font-size: 1.25em;
  font-weight: 700;
  color: #373E47;
  line-height: 1.2;
  margin-bottom: 4px;
}
@media screen and (max-width: 767px) {
  .casts__list-title {
    font-size: 1rem;
  }
}

.casts__list-tab {
  display: inline-block;
  background: #F06414;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  padding: 2px 16px;
  margin-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .casts__list-tab {
    font-size: 0.875rem;
    margin-bottom: 8px;
  }
}

.casts__list-id {
  display: block;
  color: #F06414;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .casts__list-id {
    text-align: center;
    font-size: 1rem;
  }
}
.casts__list-description {
  color: #373E47;
}
@media screen and (max-width: 767px) {
  .casts__list-description {
    font-size: 0.9rem;
  }
}
.casts__list-more {
  margin-top: 16px;
}

.prize {
  padding: 120px 0 40px;
}
@media screen and (max-width: 767px) {
  .prize {
    padding: 64px 0 20px;
  }
}
.prize__title {
  text-align: center;
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .prize__title {
    margin-bottom: 32px;
  }
}

.prize-content__description {
  text-align: center;
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .prize-content__description {
    font-size: 1.25rem;
    margin-bottom: 40px;
  }
}
.prize-content__description span {
  display: block;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .prize-content__description span {
    font-size: 0.875rem;
    margin-top: 12px;
  }
}
.prize-content__image {
  max-width: 716px;
  padding: 0 10px 20px;
  background: #fff;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.16);
}
.prize-content__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .prize-content__list {
    width: 920px;
    padding-left: 20px;
  }
}
.prize-content__list-content {
  width: 32%;
  background: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.16);
  padding: 93px 16px 24px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .prize-content__list-content {
    width: 280px;
    margin-right: 20px;
  }
}
.prize-content__list-rank {
  text-align: center;
  font-size: 2.75rem;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  background: #F06414;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 77px;
  line-height: 77px;
}
@media screen and (max-width: 767px) {
  .prize-content__list-rank {
    font-size: 2rem;
    line-height: 1.2;
  }
}
.prize-content__list-rank strong {
  display: inline-block;
  font-family: "Orbitron", sans-serif;
  font-size: 3.625rem;
  font-weight: 500;
  margin: 0 8px;
}
@media screen and (max-width: 767px) {
  .prize-content__list-rank strong {
    font-size: 3rem;
  }
}
.prize-content__list-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .prize-content__list-title {
    width: 100%;
    font-size: 1.5rem;
    margin-top: 8px;
    text-align: center;
  }
}
.prize-content__list-image {
  margin-top: -32px;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .prize-content__list-image {
    margin-bottom: 16px;
    margin-top: -24px;
  }
}

.topic {
  padding: 120px 0 96px;
  background: #373E47;
}
@media screen and (max-width: 767px) {
  .topic {
    padding: 64px 0 48px;
  }
}
.topic__title {
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .topic__title {
    margin-bottom: 48px;
  }
}
.topic__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 40px;
  background: #fff;
  margin-bottom: 56px;
}
@media screen and (max-width: 767px) {
  .topic__box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 16px;
    margin-bottom: 40px;
  }
}
.topic__box-image {
  width: 43%;
}
@media screen and (max-width: 767px) {
  .topic__box-image {
    width: 100%;
    margin-bottom: 16px;
  }
}
.topic__box-text {
  width: 53%;
  color: #373E47;
}
@media screen and (max-width: 767px) {
  .topic__box-text {
    width: 100%;
  }
}
.topic__box-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .topic__box-title {
    font-size: 1.25rem;
    margin-bottom: 16px;
  }
}
.topic__box-description {
  font-size: 1rem;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .topic__box-description {
    font-size: 0.9rem;
  }
}
.topic__banner {
  text-align: center;
}
.topic__banner-title {
  font-size: 2rem;
  font-weight: bold;
  display: inline-block;
  padding: 0 48px;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .topic__banner-title {
    font-size: 1.125rem;
    padding: 0 24px;
    margin-bottom: 32px;
  }
}
.topic__banner-title::before, .topic__banner-title::after {
  content: "";
  display: block;
  width: 2px;
  height: 100px;
  background: #fff;
  position: absolute;
  top: 5px;
}
@media screen and (max-width: 767px) {
  .topic__banner-title::before, .topic__banner-title::after {
    height: 120px;
  }
}
.topic__banner-title::before {
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
  left: 0;
}
@media screen and (max-width: 767px) {
  .topic__banner-title::before {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
}
.topic__banner-title::after {
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
  right: 0;
}
@media screen and (max-width: 767px) {
  .topic__banner-title::after {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
}
.topic__banner-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.topic__banner-list-content {
  max-width: 450px;
  width: 100%;
  margin: 0 12px 24px;
}
@media screen and (max-width: 767px) {
  .topic__banner-list-content {
    margin: 0 0 16px;
  }
}

.schedule {
  padding: 120px 0 80px;
  background: #373E47;
}
@media screen and (max-width: 767px) {
  .schedule {
    padding: 64px 0;
  }
}
.schedule__title {
  text-align: center;
  margin-bottom: 32px;
}
.schedule__annotation {
  display: block;
  text-align: center;
  font-weight: 700;
  margin-bottom: 72px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .schedule__annotation {
    margin-bottom: 48px;
    font-size: 0.875rem;
    font-weight: normal;
  }
}
.schedule__table {
  background: #fff;
  border-radius: 40px;
  padding: 24px 32px;
}
.schedule__annotation-bottom {
  display: block;
  font-weight: bold;
  color: #fff;
  margin-top: 16px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .schedule__annotation-bottom {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .schedule__table {
    width: 100%;
    padding: 16px;
    overflow-x: scroll;
    border-radius: 20px;
  }
  .schedule__table-inner {
    min-width: 480px;
  }
}

.flow {
  padding: 120px 0;
}
@media screen and (max-width: 767px) {
  .flow {
    padding: 64px 0;
  }
}
.flow__title {
  text-align: center;
  margin-bottom: 72px;
}
@media screen and (max-width: 767px) {
  .flow__title {
    margin-bottom: 48px;
  }
}
.flow__panel {
  color: #373E47;
}
.flow .tab__panel-box {
  padding: 64px 20px;
}
@media screen and (max-width: 767px) {
  .flow .tab__panel-box {
    padding: 16px;
  }
}
.flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 980px;
  margin: 0 auto;
}
.flow__list--03 {
  max-width: 740px;
}
@media screen and (max-width: 767px) {
  .flow__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.flow__list-content {
  width: 24%;
  position: relative;
}
.flow__list-content--03 {
  width: 33%;
}
@media screen and (max-width: 767px) {
  .flow__list-content {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .flow__list-content + .flow__list-content {
    margin-top: 16px;
  }
}
.flow__list-content::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(../img/ico-arrow.svg);
  background-size: contain;
  position: absolute;
  top: 50%;
  right: -7%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .flow__list-content::before {
    content: none;
  }
}
.flow__list-content:last-of-type::before {
  content: none;
}
.flow__list-number {
  display: block;
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  font-family: "Orbitron", sans-serif;
  color: #F06414;
  line-height: 1;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .flow__list-number {
    font-size: 1.25rem;
    position: absolute;
    top: 12px;
    left: 100px;
  }
}
.flow__list-image {
  max-width: 160px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #fff;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.16);
  position: relative;
}
.flow__list-image::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.flow__list-image img {
  width: 64px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .flow__list-image img {
    width: 40px;
  }
}
@media screen and (max-width: 767px) {
  .flow__list-image {
    width: 80px;
    margin: 0;
  }
}
.flow__list-description {
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .flow__list-description {
    width: calc(100% - 100px);
    margin-top: 40px;
    text-align: left;
    font-weight: normal;
    font-size: 0.9rem;
  }
}
.flow__list-description a {
  text-decoration: underline;
}

.broadcast {
  padding: 80px 0;
  background: #373E47;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .broadcast {
    padding: 64px 0;
  }
}
.broadcast__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .broadcast__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.broadcast__text {
  width: calc(100% - 560px);
}
@media screen and (max-width: 767px) {
  .broadcast__text {
    width: 100%;
  }
}
.broadcast__button {
  width: 430px;
}
@media screen and (max-width: 767px) {
  .broadcast__button {
    width: 100%;
  }
}
.broadcast__button a + a {
  margin-top: 12px;
}
.broadcast__title {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .broadcast__title {
    text-align: center;
    margin-bottom: 32px;
  }
}

.broadcast__date {
  margin-bottom: 24px;
}

@media screen and (max-width: 767px) {


}

.broadcast__date-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .broadcast__date-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.broadcast__date-list + .broadcast__date-list {
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .broadcast__date-list + .broadcast__date-list {
    margin-top: 32px;
  }
}
.broadcast__date dt {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 700;
  width: 140px;
  padding: 8px 0;
  background: #F06414;
  color: #fff;
  text-align: center;
  line-height: 1.3;
  margin-right: 32px;
}
@media screen and (max-width: 767px) {
  .broadcast__date dt {
    font-size: 1rem;
    width: 100%;
    margin-right: 0;
  }
}
.broadcast__date dd {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  width: calc(100% - 140px);
}
@media screen and (max-width: 767px) {
  .broadcast__date dd {
    font-size: 1rem;
    width: 100%;
    margin-top: 16px;
  }
}

.broadcast__description {
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .broadcast__description {
    font-weight: normal;
    margin-bottom: 40px;
  }
}
.broadcast__description a {
  color: #fff;
  text-decoration: underline;
}

.partner {
  padding: 120px 0;
  background: #fff;
  color: #373E47;
}
@media screen and (max-width: 767px) {
  .partner {
    padding: 64px 0;
  }
}
.partner__title {
  text-align: center;
  margin-bottom: 72px;
}
@media screen and (max-width: 767px) {
  .partner__title {
    margin-bottom: 48px;
  }
}
.partner__content + .partner__content {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .partner__content + .partner__content {
    margin-top: 40px;
  }
}
.partner__content-title {
  font-size: 2.25rem;
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .partner__content-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }
}
.partner__content-title--gold {
  color: #DE9A00;
}
.partner__content-title--silver {
  color: #7690A7;
}
.partner__content-title--bronze {
  color: #B87333;
}
.partner__logo-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.partner__logo-list-content {
  width: 320px;
  margin: 0 24px;
}
@media screen and (max-width: 767px) {
  .partner__logo-list-content {
    max-width: 320px;
    width: 60%;
  }
}
.partner__logo-list-content--silver,
.partner__logo-list-content--bronze
 {
  width: 220px;
}
@media screen and (max-width: 767px) {
  .partner__logo-list-content--silver,
  .partner__logo-list-content--bronze {
    max-width: 260px;
    width: calc(50% - 24px);
    margin: 0 12px;
  }
}

.footer {
  background: #373E47;
  color: #fff;
}
.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 32px 0;
}
@media screen and (max-width: 767px) {
  .footer__content {
    padding: 32px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer__logo-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .footer__logo-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    grid-gap: 32px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 32px;
  }
}
.footer__logo {
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    margin-right: 0;
    margin: 0 12px;
  }
}
.footer__logo:nth-of-type(2) .footer__logo-image {
  width: 190px;
  margin-top: 8px;
}
.footer__logo:nth-of-type(2) .footer__logo-image:nth-of-type(2) {
  margin-top: 14px;
}
@media screen and (max-width: 767px) {
  .footer__logo:nth-of-type(2) .footer__logo-image {
    width: 120px;
    margin-top: 14px;
  }
}
.footer__logo-title {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 14px;
}
@media screen and (max-width: 767px) {
  .footer__logo-title {
    font-size: 1rem;
    text-align: center;
  }
}
.footer__logo-image-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 32px;
}
@media screen and (max-width: 940px) {
  .footer__logo-image-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .footer__logo-image-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.footer__logo-image {
  width: 140px;
}
@media screen and (max-width: 767px) {
  .footer__logo-image {
    width: 100px;
    margin: 0 auto;
  }
}
.footer__menu {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .footer__menu {
    text-align: center;
  }
}
.footer__contact {
  display: inline-block;
  border: 1px solid #fff;
  padding: 8px 56px 16px;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .footer__contact {
    display: block;
    width: 100%;
  }
}
.footer__contact-title {
  font-size: 1.125rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .footer__contact-title {
    font-size: 1rem;
  }
}
.footer__contact-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__contact-list-content {
  width: 32px;
  margin: 0 14px;
}
.footer__contact-list-link {
  display: block;
}
.footer__privacy {
  display: block;
  color: #fff;
  font-weight: bold;
  margin-bottom: 12px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer__privacy:hover {
  opacity: 0.7;
}
.footer__copyright {
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    font-size: 0.75rem;
  }
}

.header {
  width: 100%;
  position: fixed;
  background-color: #fff;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .header {
    height: 56px;
  }
}
.header__logo {
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .header__logo {
    padding-left: 12px;
  }
}
.header__logo a {
  display: block;
  width: 130px;
  line-height: 80px;
}
@media screen and (max-width: 767px) {
  .header__logo a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 90px;
    line-height: 56px;
  }
}
.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 1120px) {
  .header__menu {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.header__menu-list {
  margin-right: 30px;
}
@media screen and (max-width: 1460px) {
  .header__menu-list {
    margin-right: 16px;
  }
}
@media screen and (max-width: 1120px) {
  .header__menu-list {
    margin-right: 0;
    width: 100%;
  }
}
.header__menu-list-content {
  display: inline-block;
  height: 100%;
}
@media screen and (max-width: 1120px) {
  .header__menu-list-content {
    height: auto;
    display: block;
  }
}
.header__menu-list-content + .header__menu-list-content {
  margin-left: 24px;
}
@media screen and (max-width: 1510px) {
  .header__menu-list-content + .header__menu-list-content {
    margin-left: 16px;
  }
}
@media screen and (max-width: 1360px) {
  .header__menu-list-content + .header__menu-list-content {
    margin-left: 12px;
  }
}
@media screen and (max-width: 1120px) {
  .header__menu-list-content + .header__menu-list-content {
    margin-left: 0;
  }
}
.header__menu-list-link {
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #373E47;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__menu-list-link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1120px) {
  .header__menu-list-link {
    padding: 0 32px;
    position: relative;
    margin-bottom: 16px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.header__menu-list-link-english {
  font-size: 1rem;
  font-family: "Orbitron", sans-serif;
  color: #F06414;
}
@media screen and (max-width: 1440px) {
  .header__menu-list-link-english {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 1300px) {
  .header__menu-list-link-english {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 1180px) {
  .header__menu-list-link-english {
    font-size: 0.75rem;
  }
}

@media screen and (max-width: 1150px) {
  .header__menu-list-link-english {
    font-size: 0.7rem;
  }
}

@media screen and (max-width: 1120px) {
  .header__menu-list-link-english {
    margin-right: 8px;
    font-size: 1.5rem;
  }
}
.header__menu-list-link-japanese {
  font-size: 0.65rem;
  letter-spacing: 0;
  font-weight: bold;
}
@media screen and (max-width: 1160px) {
  .header__menu-list-link-japanese {
    font-size: 0.65rem;
  }
}
@media screen and (max-width: 1120px) {
  .header__menu-list-link-japanese {
    font-size: 0.75rem;
    position: relative;
    padding-left: 12px;
  }
  .header__menu-list-link-japanese::before {
    content: "/";
    position: absolute;
    top: 0;
    left: 0;
  }
}
.header__button-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 240px;
}
@media screen and (max-width: 1240px) {
  .header__button-list {
    width: 180px;
  }
}
@media screen and (max-width: 1120px) {
  .header__button-list--fixed {
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
  }
  .header__button-list--fixed br.pc-only {
    display: none;
  }
  .header__button-list--fixed br.sp-only {
    display: block;
  }
}
.header__button-list--sp {
  display: none;
}
@media screen and (max-width: 1120px) {
  .header__button-list--sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative !important;
    bottom: inherit;
    left: inherit;
    width: 180px;
  }
}
@media screen and (max-width: 767px) {
  .header__button-list--sp {
    width: 160px;
  }
}
.header__button-list-content {
  width: 50%;
}
@media screen and (max-width: 1120px) {
  .header__button-list-content {
    width: 100%;
  }
}
.header__button-list-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.5;
  height: 80px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__button-list-link--entry {
  background: -webkit-gradient(linear, left top, right top, from(#0D11BB), to(#120E61));
  background: linear-gradient(to right, #0D11BB, #120E61);
}
.header__button-list-link--view {
  background: -webkit-gradient(linear, left top, right top, from(#008FA2), to(#115980));
  background: linear-gradient(to right, #008FA2, #115980);
}
.header__button-list-link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1240px) {
  .header__button-list-link {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .header__button-list-link {
    height: 56px;
    font-size: 0.875rem;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 1120px) {
  .header__button-list-link--fixed {
    width: 100%;
  }
}
.header #nav-toggle {
  display: none;
}

@media screen and (max-width: 1120px) {
  .header #nav-toggle {
    display: block;
    position: absolute;
    top: 10px;
    right: 190px;
    width: 56px;
    height: 56px;
    cursor: pointer;
    z-index: 101;
  }
  .header #nav-toggle div {
    position: relative;
  }
  .header #nav-toggle span {
    display: block;
    position: absolute;
    height: 1px;
    width: 45%;
    background: #373E47;
    left: 27.5%;
    -webkit-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
  }
  .header #nav-toggle span:nth-child(1) {
    top: 20px;
    width: 50%;
    left: 25%;
  }
  .header #nav-toggle span:nth-child(2) {
    top: 28px;
    width: 50%;
    left: 25%;
  }
  .header #nav-toggle span:nth-child(3) {
    top: 36px;
    width: 50%;
    left: 25%;
  }
  .header #global-nav {
    position: fixed;
    /* 開いてないときは画面外に配置 */
    right: 0;
    top: 0;
    background-color: #fff;
    text-align: left;
    padding: 64px 0 80px;
    opacity: 0;
    z-index: -999;
    visibility: hidden;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
  }
  .fade #global-nav {
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
  /* #nav-toggle 切り替えアニメーション */
  .header.open {
    /* #global-nav スライドアニメーション */
  }
  .header.open #nav-toggle {
    position: fixed;
    top: 8px;
    right: 16px;
  }
  .header.open #nav-toggle span:nth-child(1) {
    top: 26px;
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
    left: 30%;
  }
  .header.open #nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .header.open #nav-toggle span:nth-child(3) {
    width: 50%;
    top: 26px;
    -webkit-transform: rotate(-315deg);
    transform: rotate(-315deg);
    left: 30%;
  }
  .header.open #global-nav {
    position: fixed;
    opacity: 1;
    visibility: visible;
    -webkit-box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.05);
    z-index: 100;
  }
}
@media screen and (max-width: 767px) {
  .header #nav-toggle {
    top: 0;
    right: 160px;
  }
}

.topics {
  padding: 100px 0 100px;
}
@media screen and (max-width: 767px) {
  .topics {
    padding: 64px 0;
  }
}
.topics__title {
  margin-bottom: 64px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .topics__title {
    margin-bottom: 48px;
  }
}
.topics__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .topics__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.topics__text {
  width: 49%;
  background: #fff;
  border-radius: 20px;
  padding: 32px;
}
@media screen and (max-width: 767px) {
  .topics__text {
    width: 100%;
    padding: 20px;
    margin-bottom: 24px;
  }
}
.topics__description {
  font-size: 1.25rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .topics__description {
    font-size: 1rem;
    margin-bottom: 16px;
  }
}
.topics__link {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.topics__link:hover {
  opacity: 0.7;
}
.topics__banner {
  width: 49%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .topics__banner {
    width: 100%;
  }
}
.topics__banner-link {
  width: calc(50% - 5px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.topics__banner-link:first-of-type {
  width: 100%;
  margin-bottom: 10px;
}
.topics__banner-link:hover {
  opacity: 0.7;
}

small {
  display: inline-block;
}

.ticket {
  padding: 40px 0 100px;
}

.goods {
  padding: 100px 0 140px;
}

.ticket__title,
.goods__title {
  text-align: center;
  margin-bottom: 64px;
}

.ticket__image {
  width: 39.3%;
}

.ticket__table {
  width: 56%;
}

.ticket__table .table-02 th,
.ticket__table .table-02 td {
  font-size: 1rem;
}


.ticket__content {
  display: flex;
  justify-content: space-between;
}

.coming-soon {
  text-align: center;
}

.coming-soon span {
  font-size: 2.5rem;
  font-weight: bold;
  font-family: "Orbitron", sans-serif;
  text-align: center;
  background: #F06414;
  color: #fff;
  display: inline-block;
  padding: 0 16px;
}

.andmore {
  text-align: center;
  margin-top: 32px;
}

.andmore span {
  font-weight: bold;
  /* font-family: "Orbitron", sans-serif; */
  text-align: center;
  font-size: 1.25rem;
}

.ticket__button {
  text-align: center;
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .ticket {
    padding: 40px 0 56px;
  }

  .goods {
    padding: 56px 0 80px;
  }

  .ticket__title,
  .goods__title {
    margin-bottom: 48px;
  }

  .coming-soon span {
    font-size: 1.5rem;
    padding: 0 12px;
  }

  .andmore span {
    font-size: 1rem;
  }

  .ticket__image {
    width: 100%;
  }

  .ticket__table {
    width: 100%;
    margin-top: 24px;
  }

  .ticket__table .table-02 th,
  .ticket__table .table-02 td {
    font-size: 0.875rem;
  }


  .ticket__content {
    flex-wrap: wrap;
  }

  .ticket__button {
    margin-top: 40px;
  }
}
