@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 {
  background-color: #000;
  color: #fff;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  overflow: hidden;
}

a {
  color: #000;
  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(#FFCF00), to(#FB2500));
  background: linear-gradient(to right, #FFCF00, #FB2500);
}
.button--youtube {
  background: #0D11BB;
}
.button--news {
  background: #000;
  border: 1px solid #fff;
  height: 56px;
  line-height: 55px;
}
@media screen and (max-width: 767px) {
  .button--news {
    height: 48px;
    line-height: 47px;
  }
}
.button::after {
  content: "";
  display: block;
  width: 28px;
  height: 24px;
  background-image: url(../img/ico-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 24px;
  -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);
}

.text-link {
  font-weight: bold;
  color: #fff;
  padding-right: 36px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .text-link {
    padding-right: 24px;
  }
}
.text-link::before {
  content: "";
  display: block;
  width: 28px;
  height: 20px;
  background-image: url(../img/ico-arrow-02.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 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: 20px;
    height: 15px;
  }
}
.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: "Chakra Petch", sans-serif;
  font-weight: bold;
  font-size: 4.5rem;
  letter-spacing: 0.1em;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .title__english {
    font-size: 2.5rem;
  }
}
.title__japanese {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .title__japanese {
    font-size: 1rem;
  }
}

.description {
  font-size: 1.125rem;
  font-weight: bold;
  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 {
  width: 100%;
  border-spacing: 0;
}
.table tr:first-of-type th {
  position: relative;
}
@media screen and (max-width: 767px) {
  .table tr:first-of-type th {
    width: 30%;
  }
}
.table tr:first-of-type th::before {
  content: "";
  width: 100%;
  height: 4px;
  background: #fff;
  position: absolute;
  top: -2px;
  left: 0;
}
.table tr:first-of-type td {
  border-top: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .table tr:first-of-type td {
    width: 70%;
  }
}
.table th,
.table td {
  font-size: 1.125rem;
  padding: 20px 0;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .table th,
  .table td {
    font-size: 1rem;
    padding: 12px 0;
  }
}
.table th {
  font-weight: bold;
  padding-right: 20px;
  position: relative;
  vertical-align: top;
}
.table th::after {
  content: "";
  width: 100%;
  height: 4px;
  background: #fff;
  position: absolute;
  bottom: -2px;
  left: 0;
}
.table td {
  border-bottom: 1px solid #fff;
}

.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: 56px 0 48px;
}
@media screen and (max-width: 1000px) {
  .apply {
    padding: 24px 0;
    background-image: url(../img/bg-apply-sp.png);
    background-position: center;
  }
}
.apply__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: 1000px) {
  .apply__content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: center;
    -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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.apply__text {
  width: calc(100% - 462px);
}
@media screen and (max-width: 1000px) {
  .apply__text {
    width: auto;
    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;
}
@media screen and (max-width: 1000px) {
  .apply__date + .apply__date {
    margin-top: 4px;
  }
}
.apply__date-title {
  width: 176px;
  height: 48px;
  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: 100px;
  }
}
.apply__date-description {
  font-family: "Chakra Petch", sans-serif;
  font-size: 3.75rem;
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .apply__date-description {
    font-size: 2rem;
  }
}
.apply__button-list {
  width: 430px;
}
@media screen and (max-width: 1000px) {
  .apply__button-list {
    width: 100%;
  }
}
.apply__button + .apply__button {
  margin-top: 18px;
}
@media screen and (max-width: 1000px) {
  .apply__button + .apply__button {
    margin-top: 12px;
  }
}
.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: "Chakra Petch", sans-serif;
}
@media screen and (max-width: 767px) {
  .apply__term span {
    font-size: 1rem;
  }
}

.concept-overview {
  background-image: url(../img/bg-concept.jpg);
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .concept-overview {
    background-image: url(../img/bg-concept-sp.jpg);
  }
}

@-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-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .concept {
    padding-bottom: 32px;
  }
}
.concept__loop-text {
  margin-top: 24px;
  width: 100vw;
  height: 105px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
@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: 3020px;
  height: 105px;
  margin-right: 32px;
}
@media screen and (max-width: 767px) {
  .concept__loop-image img {
    width: 1500px;
    height: 54px;
  }
}
.concept__content {
  padding-top: 70px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .concept__content {
    padding-top: 32px;
  }
}
.concept__sub-title {
  display: inline-block;
  color: #FEC300;
  font-size: 2rem;
  font-weight: bold;
  height: 50px;
  width: 208px;
  text-align: center;
  margin-bottom: 20px;
  border: 1px solid #FEC300;
}
@media screen and (max-width: 767px) {
  .concept__sub-title {
    font-size: 1.125rem;
    height: 40px;
    line-height: 39px;
    width: 160px;
  }
}
.concept__title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 56px;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .concept__title {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
.concept__title span {
  font-family: "Chakra Petch", sans-serif;
  font-size: 3.5rem;
}
@media screen and (max-width: 767px) {
  .concept__title span {
    font-size: 1.75rem;
  }
}
.concept__description {
  max-width: 700px;
  text-align: left;
  margin: 0 auto;
}

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

.access {
  background: #252A31;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .access {
    padding: 64px 0;
  }
}
.access__title {
  text-align: center;
  margin-bottom: 72px;
}
@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: 46%;
}
@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;
}
@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 {
  font-size: 1.25rem;
  font-weight: bold;
  width: 176px;
  height: 40px;
  line-height: 40px;
  background: #0D11BB;
  color: #fff;
  text-align: center;
  margin-right: 18px;
}
@media screen and (max-width: 767px) {
  .access__information-title {
    font-size: 1rem;
    width: 100%;
  }
}
.access__information-description {
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .access__information-description {
    font-size: 1rem;
    width: 100%;
    margin-top: 16px;
  }
}

.casts {
  background-image: url(../img/bg-casts.jpg);
  padding: 120px 0;
}
@media screen and (max-width: 767px) {
  .casts {
    padding: 64px 0;
    background-image: url(../img/bg-casts-sp.jpg);
  }
}
.casts__title {
  text-align: center;
  margin-bottom: 18px;
}
.casts__annotation {
  display: block;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .casts__annotation {
    margin-bottom: 48px;
  }
}
.casts__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) {
  .casts__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.casts__list-content {
  width: 48%;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .casts__list-content {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .casts__list-content + .casts__list-content {
    margin-top: 24px;
  }
}
.casts__list-link {
  display: block;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.casts__list-link:hover {
  opacity: 0.7;
}
.casts__list-content-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 4px;
  border: 3px solid #000;
  padding: 56px 20px 32px;
  height: calc(100% - 8px);
  position: relative;
  background-image: url(../img/cast-card-01.svg), url(../img/cast-card-02.svg), url(../img/cast-card-03.svg), url(../img/cast-card-04.svg);
  background-position: top left, top right, bottom left, bottom right;
  background-size: 40px;
}
@media screen and (max-width: 767px) {
  .casts__list-content-inner {
    padding: 48px 20px 28px;
    -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;
    background-size: 32px;
  }
}
.casts__list-content-inner::before {
  content: "";
  display: block;
  width: 90%;
  max-width: 346px;
  height: 22px;
  background-image: url(../img/cast-card-top.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
  position: absolute;
  top: 9px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .casts__list-content-inner::before {
    max-width: 250px;
  }
}
.casts__list-image {
  width: 42%;
}
@media screen and (max-width: 767px) {
  .casts__list-image {
    width: 200px;
    margin-bottom: 16px;
  }
}
.casts__list-text {
  width: 54%;
}
@media screen and (max-width: 767px) {
  .casts__list-text {
    width: 100%;
  }
}
.casts__list-title {
  font-size: 2rem;
  font-weight: bold;
  color: #000;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .casts__list-title {
    font-size: 1.5rem;
    text-align: center;
  }
}
.casts__list-id {
  display: block;
  color: #FB2500;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .casts__list-id {
    text-align: center;
  }
}
.casts__description {
  color: #000;
}

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

.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: 48px;
  }
}
.tab__menu-item {
  width: 50%;
  padding: 10px 0;
  text-align: center;
  background: #5A5A5A;
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .tab__menu-item {
    font-size: 1rem;
    padding: 4px 0;
  }
}
.tab__menu-item.is-active {
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .tab__menu-item.is-active {
    padding: 10px 0;
  }
}
.tab__menu-item--students.is-active {
  background: #DE9A00;
}
.tab__menu-item--general.is-active {
  background: #0D11BB;
}
.tab__panel {
  width: 100%;
}
.tab__panel-box {
  display: none;
}
.tab__panel-box.is-show {
  display: block;
}

.prize-content {
  background: #fff;
  color: #000;
  padding: 4px;
}
.prize-content__inner {
  padding: 68px 74px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .prize-content__inner {
    padding: 64px 12px;
  }
}
.prize-content__inner::before {
  content: "";
  display: block;
  width: 90%;
  max-width: 346px;
  height: 22px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
  position: absolute;
  top: 9px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .prize-content__inner::before {
    max-width: 250px;
  }
}
.prize-content__inner--students {
  border: 3px solid #DE9A00;
  background-image: url(../img/prize-students-01.svg), url(../img/prize-students-02.svg), url(../img/prize-students-03.svg), url(../img/prize-students-04.svg);
  background-position: top left, top right, bottom left, bottom right;
  background-size: 40px;
}
@media screen and (max-width: 767px) {
  .prize-content__inner--students {
    background-size: 32px;
  }
}
.prize-content__inner--students::before {
  background-image: url(../img/prize-students-top.svg);
}
.prize-content__inner--general {
  border: 3px solid #0D11BB;
  background-image: url(../img/prize-general-01.svg), url(../img/prize-general-02.svg), url(../img/prize-general-03.svg), url(../img/prize-general-04.svg);
  background-position: top left, top right, bottom left, bottom right;
  background-size: 40px;
}
.prize-content__inner--general::before {
  background-image: url(../img/prize-general-top.svg);
}
.prize-content__list-content {
  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) {
  .prize-content__list-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.prize-content__list-content + .prize-content__list-content {
  margin-top: 40px;
}
.prize-content__list-text {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .prize-content__list-text {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .prize-content__list-text-header {
    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: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 16px;
  }
}
.prize-content__list-ranking {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .prize-content__list-ranking {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.prize-content__list-group {
  display: block;
  width: 100px;
  height: 40px;
  line-height: 39px;
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
  margin-right: 16px;
}
@media screen and (max-width: 767px) {
  .prize-content__list-group {
    height: 40px;
    line-height: 39px;
    font-size: 1rem;
    margin-right: 0;
  }
}
.prize-content__list-group--students {
  color: #DE9A00;
  border: 1px solid #DE9A00;
}
.prize-content__list-group--general {
  color: #0D11BB;
  border: 1px solid #0D11BB;
}
.prize-content__list-rank {
  text-align: center;
  font-size: 2rem;
  line-height: 1;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .prize-content__list-rank {
    font-size: 1.5rem;
    line-height: 1.2;
  }
}
.prize-content__list-rank strong {
  font-family: "Chakra Petch", sans-serif;
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .prize-content__list-rank strong {
    font-size: 2.5rem;
  }
}
.prize-content__list-rank--students {
  color: #DE9A00;
}
.prize-content__list-rank--general {
  color: #0D11BB;
}
.prize-content__list-text-title {
  width: 100%;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .prize-content__list-text-title {
    width: 100%;
    font-size: 1.25rem;
    margin-top: 8px;
    text-align: center;
  }
}
.prize-content__list-image {
  width: 50%;
  border: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .prize-content__list-image {
    width: 100%;
    margin-bottom: 16px;
  }
}

.schedule {
  padding: 120px 0;
  background-image: url(../img/bg-schedule.jpg);
}
@media screen and (max-width: 767px) {
  .schedule {
    padding: 64px 0;
    background-image: url(../img/bg-schedule-sp.jpg);
  }
}
.schedule__title {
  text-align: center;
  margin-bottom: 18px;
}
.schedule__annotation {
  display: block;
  text-align: center;
  font-weight: bold;
  margin-bottom: 72px;
}
@media screen and (max-width: 767px) {
  .schedule__annotation {
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 767px) {
  .schedule__table {
    width: 100vw;
    padding: 0 20px;
    overflow-x: scroll;
    overflow-y: visible;
    margin-left: -20px;
  }
}
.schedule__table-inner {
  position: relative;
}
@media screen and (max-width: 767px) {
  .schedule__table-inner {
    min-width: 400px;
  }
}
.schedule__table-content {
  width: calc((100% - 112px) / 4 - 20px);
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .schedule__table-content {
    width: calc((100% - 48px) / 4 - 8px);
    padding: 4px;
    text-align: left;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.schedule__table-content--students-yosen {
  background: rgba(222, 154, 0, 0.7);
  height: 260px;
  top: 198px;
  left: 122px;
}
@media screen and (max-width: 767px) {
  .schedule__table-content--students-yosen {
    left: 52px;
    height: 184px;
    top: 122px;
  }
}
.schedule__table-content--general-yosen {
  background: rgba(13, 17, 187, 0.7);
  height: 305px;
  top: 478px;
  left: calc(122px + (100% - 112px) / 4);
}
@media screen and (max-width: 767px) {
  .schedule__table-content--general-yosen {
    left: calc(52px + (100% - 48px) / 4);
    height: 212px;
    top: 314px;
  }
}
.schedule__table-content--students-final {
  background: rgba(222, 154, 0, 0.7);
  height: 120px;
  top: 408px;
  left: calc(122px + (100% - 112px) / 4 * 2);
}
@media screen and (max-width: 767px) {
  .schedule__table-content--students-final {
    left: calc(52px + (100% - 48px) / 4 * 2);
    height: 88px;
    top: 266px;
  }
}
.schedule__table-content--general-final {
  background: rgba(13, 17, 187, 0.7);
  height: 235px;
  top: 548px;
  left: calc(122px + (100% - 112px) / 4 * 3);
}
@media screen and (max-width: 767px) {
  .schedule__table-content--general-final {
    left: calc(52px + (100% - 48px) / 4 * 3);
    height: 164px;
    top: 362px;
  }
}
.schedule__table-time {
  font-size: 1.125rem;
  font-weight: bold;
  font-family: "Chakra Petch", sans-serif;
}
@media screen and (max-width: 767px) {
  .schedule__table-time {
    font-size: 0.6rem;
    letter-spacing: 0;
    text-align: left;
  }
}
.schedule__table-title {
  font-size: 1.5rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .schedule__table-title {
    font-size: 0.875rem;
    line-height: 1.3;
  }
}

.schedule-table {
  padding-left: 112px;
  width: 100%;
  border-spacing: 0;
}
@media screen and (max-width: 767px) {
  .schedule-table {
    padding-left: 48px;
    padding-bottom: 12px;
  }
}
.schedule-table__date {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .schedule-table__date {
    font-size: 1.125rem;
  }
}
.schedule-table__date strong {
  font-size: 3.6875rem;
  font-family: "Chakra Petch", sans-serif;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .schedule-table__date strong {
    font-size: 2rem;
  }
}
.schedule-table__date:first-of-type {
  border-right: 1px solid #fff;
}
.schedule-table__group {
  padding: 10px;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .schedule-table__group {
    padding: 4px;
  }
}
.schedule-table__group:nth-of-type(2) {
  border-right: 1px solid #fff;
}
.schedule-table__group-tab {
  display: block;
  width: 100%;
  height: 56px;
  line-height: 56px;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .schedule-table__group-tab {
    height: 40px;
    line-height: 40px;
    font-size: 0.875rem;
    letter-spacing: 0;
  }
}
.schedule-table__group-tab--students {
  background: #DE9A00;
}
.schedule-table__group-tab--general {
  background: #0D11BB;
}
.schedule-table tbody {
  counter-reset: number 9;
}
.schedule-table tbody td {
  height: 70px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .schedule-table tbody td {
    height: 48px;
  }
}
.schedule-table tbody td:last-of-type {
  border-right: none;
}
.schedule-table tbody tr td {
  position: relative;
}
.schedule-table tbody tr td:first-of-type::before {
  counter-increment: number 1;
  content: counter(number) ":00";
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  font-family: "Chakra Petch", sans-serif;
  position: absolute;
  top: -20px;
  left: -112px;
}
@media screen and (max-width: 767px) {
  .schedule-table tbody tr td:first-of-type::before {
    font-size: 0.875rem;
    left: -48px;
    top: -12px;
  }
}
.schedule-table tbody tr:last-of-type td:first-of-type::after {
  content: "19:00";
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  font-family: "Chakra Petch", sans-serif;
  position: absolute;
  bottom: -20px;
  left: -112px;
}
@media screen and (max-width: 767px) {
  .schedule-table tbody tr:last-of-type td:first-of-type::after {
    bottom: -12px;
    left: -48px;
    font-size: 0.875rem;
  }
}

.flow {
  padding: 120px 0;
}
@media screen and (max-width: 767px) {
  .flow {
    padding: 64px 0;
  }
}
.flow__title {
  text-align: center;
  margin-bottom: 48px;
}
.flow__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) {
  .flow__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.flow__list-content {
  width: 24%;
  position: relative;
}
@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;
  }
}
@media screen and (max-width: 767px) {
  .flow__list-content + .flow__list-content {
    margin-top: 8px;
  }
}
.flow__list-content::before {
  content: "";
  display: block;
  width: 44px;
  height: 33px;
  background-image: url(../img/ico-arrow-02.svg);
  position: absolute;
  top: 40%;
  right: -11%;
  -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;
  color: transparent;
  font-size: 2.875rem;
  font-family: "Chakra Petch", sans-serif;
  -webkit-text-stroke: 1px #fff;
  text-stroke: 1px #fff;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .flow__list-number {
    font-size: 1.75rem;
    position: absolute;
    top: 0;
    left: 100px;
  }
}
.flow__list-image {
  max-width: 186px;
  margin: 0 auto 24px;
}
@media screen and (max-width: 767px) {
  .flow__list-image {
    width: 80px;
  }
}
.flow__list-description {
  font-weight: bold;
  text-align: center;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .flow__list-description {
    width: calc(100% - 100px);
    margin-top: 32px;
    text-align: left;
    font-weight: normal;
  }
}
.flow__list-description a {
  text-decoration: underline;
  color: #fff;
}

.broadcast {
  padding: 80px 0;
  background: #252A31;
}
@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;
}
@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% - 450px);
}
@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__title {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .broadcast__title {
    text-align: center;
    margin-bottom: 32px;
  }
}
.broadcast__description {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .broadcast__description {
    font-weight: normal;
    margin-bottom: 40px;
  }
}

.partner {
  padding: 120px 0;
  background: #fff;
  color: #000;
}
@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.5rem;
  font-family: "Chakra Petch", sans-serif;
  font-weight: bold;
  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__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: 300px;
  margin: 0 24px;
}
@media screen and (max-width: 767px) {
  .partner__logo-list-content {
    max-width: calc(50% - 24px);
    margin: 0 12px;
  }
}
.partner__logo-list-content--silver {
  width: 260px;
}

.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-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-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 {
  width: 170px;
}
@media screen and (max-width: 767px) {
  .footer__logo-image {
    width: 100px;
  }
}
.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-size: 0.875rem;
  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: 1360px) {
  .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: 30px;
}
@media screen and (max-width: 1360px) {
  .header__menu-list-content + .header__menu-list-content {
    margin-left: 24px;
  }
}
@media screen and (max-width: 1260px) {
  .header__menu-list-content + .header__menu-list-content {
    margin-left: 16px;
  }
}
@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: #000;
  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 {
    color: #fff;
    padding: 0 32px;
    position: relative;
    margin-bottom: 16px;
  }
}
.header__menu-list-link-english {
  font-size: 1.125rem;
  font-family: "Chakra Petch", sans-serif;
}
@media screen and (max-width: 1360px) {
  .header__menu-list-link-english {
    font-size: 1rem;
  }
}
.header__menu-list-link-japanese {
  font-size: 0.75rem;
  font-weight: bold;
}
@media screen and (max-width: 1360px) {
  .header__menu-list-link-japanese {
    font-size: 0.65rem;
  }
}
.header__button-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1120px) {
  .header__button-list--fixed {
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
  }
}
.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;
  }
}
@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.5rem;
  width: 160px;
  height: 80px;
  background: -webkit-gradient(linear, left top, right top, from(#FFCF00), to(#FB2500));
  background: linear-gradient(to right, #FFCF00, #FB2500);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__button-list-link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .header__button-list-link {
    height: 56px;
    width: 80px;
    font-size: 0.875rem;
  }
}
@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: 160px;
    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: #000;
    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: #000;
    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 {
    background: #fff;
  }
  .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: 80px;
  }
}