@charset "UTF-8";
body {
  font-family: "helvetica-neue-lt-pro", "Helvetica Neue", Helvetica, Arial, "游ゴシック", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
  font-weight: 400;
  background-color: #000000;
}
.nowrap {
  white-space: nowrap;
}

.pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
}
.bg-main {
  background-image: url(../img/bg-main-sp.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
@media screen and (min-width: 768px) {
  .bg-main {
    background-image: url(../img/bg-main.jpg);
  }
}

.bg-epilogue {
  background-image: url(../img/bg-epilogue.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

/* header nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  will-change: transform;
  z-index: 10;
}

.header-wrapper {
  position: relative;
  z-index: 2;
}
.header__content {
  background-color: #000;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.05);
  padding: 21px 24px;
  position: relative;
  z-index: 2;
}
.header__content .logo {
  z-index: 1;
}
.header__content .logo img {
  width: 87px;
  height: 19px;
}
.header__nav {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.7);
  top: -100vh;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  transition: 0.3s;
  z-index: 0;
  display: flex;
  flex-direction: column;
  padding: 124px 48px 60px;
  gap: 40px;
}
.header__nav.is-showup {
  top: 0;
}
.header__nav a {
  display: block;
  color: #4B4CFF;
  text-decoration: none;
  font-family: "sofia-pro", "游ゴシック", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: normal;
  background-image: url(../img/icon-arrow-right-blue.svg);
  background-repeat: no-repeat;
  background-position: right;
  transition-duration: 0.3s;
}
.header__nav a:hover {
  opacity: 0.6;
}
.header__nav a.header__button {
  font-family: "sofia-pro", "游ゴシック", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
  color: #FFF;
  font-size: 16px;
  line-height: 116%; /* 16.24px */
  border-radius: 300px;
  background: var(--Linear, linear-gradient(18deg, #BE31FF 2.03%, #6D37FF 98.92%));
  padding: 12px 24px;
  text-align: center;
}
.header__nav .nav__sns {
  display: none;
}

.hamburger {
  width: 64px;
  height: 64px;
  cursor: pointer;
  text-indent: -9999px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 3;
}

.bar {
  transition: all 0.3s ease;
  display: block;
  height: 2px;
  width: 32px;
  background: #fff;
  border-radius: 2px;
  margin: 9px auto;
}

.bar.top {
  margin-top: 20px;
}

.bar.middle {
  margin: 0 auto;
}

.bar.bottom {
  margin-bottom: 17px;
}

.hamburger.is-cross .bar.top {
  transform: translateY(11px) rotateZ(45deg);
}

.hamburger.is-cross .bar.middle {
  width: 0;
}

.hamburger.is-cross .bar.bottom {
  transform: translateY(-11px) rotateZ(-45deg);
}

@media screen and (min-width: 1220px) {
  .hamburger {
    display: none;
  }
  header {
    background-color: #fff;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.05);
  }
  .header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
  }
  .header__content {
    background-color: transparent;
    box-shadow: none;
  }
  .header__content .logo img {
    width: 170px;
    height: 37px;
  }
  .header__nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    padding: 0;
    overflow-y: hidden;
    padding-right: 24px;
    gap: 20px;
  }
  .header__nav a {
    color: #0E202E;
    font-family: "sofia-pro", "游ゴシック", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
    background-image: none;
  }
  .header__nav a.header__button {
    font-size: 14px;
  }
  .header__nav .nav__sns {
    display: flex;
    gap: 10px;
  }
}
.kv {
  background-image: url(../img/bg-kv-sp.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.kv::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100px;
  bottom: -50px;
  left: 0;
  background-image: url(../img/bg-x1.png);
  background-size: 100% 100px;
  z-index: 1;
}
.kv-wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 130px 24px 130px;
  background-image: url(../img/fig-award01-sp.png);
  background-size: 273.5px 276px;
  background-repeat: no-repeat;
  background-position: bottom 50px left calc(50% - 20px);
}
.kv__figure {
  width: 100%;
  text-align: center;
  display: block;
}
.kv__figure img {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: inline-block;
}
.kv h1 {
  margin-top: 16px;
  text-align: center;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.24px;
  text-align: center;
  font-family: "sofia-pro", "游ゴシック", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
  font-weight: 700;
}
.kv__description {
  margin-top: 56px;
  color: #FFF;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 240%; /* 36px */
  letter-spacing: 0.9px;
}
@media screen and (min-width: 768px) {
  .kv {
    background-image: url(../img/bg-kv.jpg);
  }
  .kv::after {
    height: 28vw;
    bottom: -14.1vw;
    background-size: 100vw 28vw;
  }
  .kv-wrapper {
    padding-top: 226px;
    padding-bottom: 365px;
  }
  .kv__figure img {
    max-width: 785px;
  }
  .kv h1 {
    font-size: 26px;
    margin-top: 42px;
  }
  .kv__description {
    margin-top: 62px;
    font-size: 22px;
    line-height: 210%; /* 46.2px */
    letter-spacing: 1.32px;
  }
}

.timetable-wrapper {
  padding: 60px 24px;
}
.timetable h2 {
  color: #FFF;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 150%; /* 36px */
  letter-spacing: 3px;
}
.timetable__lead {
  width: 100%;
  max-width: 335px;
  margin: 40px auto 0;
}
.timetable__table {
  width: 100%;
  max-width: 336px;
  margin: 42px auto 0;
}
@media screen and (min-width: 768px) {
  .timetable-wrapper {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .timetable h2 {
    font-size: 40px;
  }
  .timetable__table {
    margin-top: 58px;
    max-width: 531px;
  }
}

.contents-wrapper {
  padding: 60px 24px;
}
.contents h2 {
  color: #FFF;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 150%; /* 36px */
  letter-spacing: 3px;
}
.contents__lead {
  font-family: "sofia-pro", "游ゴシック", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
  margin-top: 10px;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}
.contents__picture {
  display: block;
  width: 100%;
  max-width: 335px;
  margin: 36px auto 0;
}
@media screen and (min-width: 768px) {
  .contents-wrapper {
    background: rgba(0, 0, 0, 0.22);
    padding: 72px 100px;
    border-radius: 32px;
    width: calc(100% - 48px);
    max-width: 1112px;
    margin: 0 auto;
  }
  .contents h2 {
    font-size: 40px;
  }
  .contents__lead {
    font-size: 20px;
    margin-top: 16px;
  }
  .contents__picture {
    margin-top: 48px;
    max-width: 1064px;
  }
}

.outline {
  position: relative;
}
.outline::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100px;
  bottom: -50px;
  left: 0;
  background-image: url(../img/bg-x2.png);
  background-size: 100% 100px;
  z-index: 1;
}
.outline-wrapper {
  padding: 90px 24px 80px;
}
.outline h2 {
  color: #FFF;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 150%; /* 36px */
  letter-spacing: 3px;
}
.outline__list {
  width: 100%;
  max-width: 720px;
  margin: 62px auto 0;
  display: flex;
  color: #fff;
  gap: 40px;
  flex-direction: column;
}
.outline__list dl {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 12px;
}
.outline__list dl dt {
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 120%; /* 333.333% */
  letter-spacing: 0.36px;
}
.outline__list dl dd {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px; /* 150% */
  letter-spacing: 0.32px;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .outline::after {
    height: 28vw;
    bottom: -14vw;
    background-size: 100vw 28vw;
  }
  .outline-wrapper {
    padding-top: 160px;
    padding-bottom: 160px;
  }
  .outline h2 {
    font-size: 40px;
  }
  .outline__list {
    margin-top: 80px;
    gap: 20px;
  }
  .outline__list dl {
    flex-direction: row;
    text-align: left;
    gap: 40px;
    white-space: nowrap;
  }
  .outline__list dl dt {
    font-size: 20px;
    line-height: 60px; /* 300% */
    width: 100px;
    text-align: justify;
    -moz-text-align-last: justify;
         text-align-last: justify;
  }
  .outline__list dl dd {
    font-size: 20px;
    font-weight: 400;
    line-height: 40px; /* 200% */
    letter-spacing: 2px;
  }
}

.apply-wrapper {
  padding: 90px 24px 80px;
  color: #fff;
}
.apply h2 {
  color: #FFF;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}
.apply__flex__text__heading {
  margin-top: 20px;
  font-family: "sofia-pro", "游ゴシック", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
  color: var(--Foreground-contrast-white, #FFF);
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%; /* 24px */
}
.apply__flex__text__heading-sp {
  display: none;
  font-family: "sofia-pro", "游ゴシック", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
  margin-top: 20px;
  color: var(--Foreground-contrast-white, #FFF);
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%; /* 24px */
}
.apply__flex__text p {
  margin-top: 32px;
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.84px;
}
.apply__flex__figure {
  text-align: center;
  margin-top: 32px;
}
.apply__flex__figure img {
  display: inline;
  text-align: center;
  width: 200px;
  height: 200px;
}
.apply__button {
  display: none;
  font-family: "sofia-pro", "游ゴシック", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
  text-decoration: none;
  text-align: center;
  margin: 32px auto 0;
  display: flex;
  width: 100%;
  max-width: 327px;
  height: 46px;
  padding: 6.008px;
  justify-content: center;
  align-items: center;
  gap: 4.807px;
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 36px;
  border-radius: 60px;
  cursor: pointer;
  background: var(--Linear, linear-gradient(30deg, #BB19F0 3.12%, #4D00FF 61.18%, #AAA2FF 99.73%));
}
.apply__bundle {
  position: relative;
  margin-top: 48px;
  padding: 36px 20px;
  border-radius: 4px;
  background: var(--LinearXXX, linear-gradient(220deg, #FF64FF 3.5%, #4C00B8 37.13%, #0AA3FF 96.93%));
}
.apply__bundle::before {
  content: "";
  position: absolute;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  left: 2px;
  top: 2px;
  border-radius: 4px;
  background-image: url(../img/bg-apply.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.apply__heading {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 140%; /* 22.4px */
  position: relative;
  z-index: 2;
}
.apply__description {
  margin-top: 20px;
}
.apply__description li {
  color: #FFF;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  padding-left: 14px;
  position: relative;
  margin-top: 12px;
}
.apply__description li.strong {
  font-size: 16px;
  font-weight: 700;
}
.apply__description li::before {
  position: absolute;
  content: "※";
  left: 0;
}
.apply__bundle2 {
  padding: 16px;
  border-radius: 4px;
  background: rgba(0, 6, 38, 0.2);
  position: relative;
  margin-top: 20px;
}
.apply__heading2 {
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%; /* 18.2px */
  position: relative;
  z-index: 1;
}
.apply__violations li {
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%; /* 18.2px */
  padding-left: 20px;
  position: relative;
}
.apply__violations li::before {
  position: absolute;
  content: "・";
  left: 0;
}
@media screen and (min-width: 768px) {
  .apply-wrapper {
    padding-top: 220px;
  }
  .apply h2 {
    font-size: 28px;
  }
  .apply__flex__text__heading {
    font-size: 20px;
  }
  .apply__bundle {
    width: 100%;
    max-width: 960px;
    padding: 40px 32px;
    margin: 48px auto 0;
  }
  .apply__heading {
    font-size: 20px;
  }
  .apply__description li {
    font-size: 16px;
  }
  .apply__description li.strong {
    font-size: 18px;
  }
  .apply__bundle2 {
    padding: 12px 24px;
  }
  .apply__heading2 {
    font-size: 18px;
  }
  .apply__violations li {
    font-size: 18px;
  }
}

.banner-wrapper {
  padding: 60px 24px;
}
.banner h2 {
  display: none;
}
.banner a {
  display: block;
  width: 100%;
  max-width: 335px;
  margin: 0 auto;
  transition-duration: 0.3s;
}
.banner a:hover {
  opacity: 0.8;
}
@media screen and (min-width: 768px) {
  .banner-wrapper {
    padding-bottom: 180px;
  }
  .banner h2 {
    display: block;
    width: 520px;
    margin: 0 auto;
  }
  .banner h2 img {
    width: 100%;
    height: auto;
  }
  .banner a {
    margin-top: 24px;
    max-width: 912px;
  }
}

/* loading */
.loading-screen {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgb(255, 255, 255);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 1s ease;
}

.spinner {
  position: relative;
  display: flex;
  justify-content: center;
  width: 56px;
  min-width: 56px;
  height: 56px;
  min-height: 56px;
  padding: 4px;
  margin: 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  transform-origin: 50% 50%;
  animation: 1s linear infinite spin;
  opacity: 1;
  transition: opacity 1s ease;
}

.circle {
  fill: none;
  stroke: #000000;
  stroke-miterlimit: 10;
  stroke-opacity: 0.15;
  stroke-width: 5px;
}

.path {
  fill: none;
  stroke: #0054ff;
  stroke-miterlimit: 10;
  stroke-width: 5px;
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.footer_app-icon {
  display: inline-block;
}

.footer__share {
  display: flex;
}/*# sourceMappingURL=style.css.map */