@charset "UTF-8";
html {
  scroll-padding-top: 20px;
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 40px;
  }
}

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-image: url(../img/bg-gradient-sp.jpg);
  background-repeat: repeat-y;
  background-size: cover;
}
body .parallax-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 500%;
  background-image: url(../img/bg-shape-sp.svg);
  background-repeat: repeat-y;
  background-size: cover;
  z-index: -1;
  will-change: transform;
}
@media screen and (min-width: 768px) {
  body {
    background-image: url(../img/bg-gradient-pc.jpg);
  }
  body .parallax-bg {
    background-image: url(../img/bg-shape-pc.svg);
    background-size: 100%;
  }
}
@media screen and (min-width: 1440px) {
  body .parallax-bg {
    background-image: url(../img/bg-shape-over1440.svg);
    background-size: 1992px auto;
    background-position: center;
  }
}

.nowrap {
  white-space: nowrap;
}

.pc {
  display: none !important;
}

@media screen and (min-width: 768px) {
  .pc {
    display: block !important;
  }
  .sp {
    display: none !important;
  }
}
/* 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: #fff;
  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: 128px;
  height: 23px;
}
.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(90deg, #008ADF 0%, #44B8FF 100%));
  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: #0054ff;
  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-wrapper {
  padding: 80px 24px;
}
.kv__figure {
  width: 100%;
  text-align: center;
}
.kv__figure img {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: inline-block;
}
.kv h1 {
  margin-top: 48px;
  text-align: center;
  color: #4B4CFF;
  text-align: center;
  font-size: 24px;
  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: 30px;
  color: #4B4CFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 23.4px */
  letter-spacing: 1px;
  font-family: "sofia-pro", "游ゴシック", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .kv-wrapper {
    padding-top: 124px;
    padding-bottom: 124px;
  }
  .kv__figure img {
    max-width: 670px;
  }
  .kv h1 {
    font-size: 42px;
    margin-top: 70px;
  }
  .kv__description {
    margin-top: 24px;
    font-size: 19px;
    font-weight: 700;
    line-height: 226%;
    gap: 0;
  }
}

.event-wrapper {
  padding: 40px 24px;
}
.event h2 {
  font-family: "sofia-pro", "游ゴシック", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
  font-weight: 700;
  background: var(--Linear, linear-gradient(0deg, #BE31FF 2.03%, #6D37FF 41.16%, #37B2FF 98.92%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
}
.event__lead {
  margin-top: 8px;
  color: var(--Dark-Gray595959, #595959);
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}
.event__flex {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 24px;
}
.event__flex__box {
  padding: 50px 30px;
  border-radius: 12px;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  display: block;
  text-decoration: none;
  transition-duration: 0.3s;
}
.event__flex__box:hover {
  opacity: 0.8;
}
.event__flex__box.award {
  background-image: url(../img/bg-blue.jpg);
}
.event__flex__box.challenge {
  background: linear-gradient(90deg, #FFE100 0%, #D1FF45 13.46%, #FFF 26.92%, #55FFE8 38.94%, #6294FF 54.81%, #888AFF 68.75%, #FF93ED 83.65%, #FF77A6 100%);
}
.event__flex__box.challenge::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 4px;
  left: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border-radius: 10px;
  background-image: url(../img/bg-challenge-sp.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.event__flex__box.diagnosis {
  background-image: url(../img/bg-hero-sp.jpg);
  background-position: center;
}
.event__flex__box.night {
  background-image: url(../img/bg-dark.jpg?v=2);
}
.event__flex__box h2 {
  text-align: center;
  position: relative;
  z-index: 1;
}
.event__flex__box h2 img {
  width: 245px;
  display: inline-block;
}
.event__flex__box h2 img.challenge {
  width: 294px;
}
.event__flex__box picture.diagnosis-heading {
  display: block;
  text-align: center;
}
.event__flex__box picture.diagnosis-heading img {
  width: 294px;
  margin: 0 auto;
}
.event__flex__box__lead {
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 180%; /* 25.2px */
  letter-spacing: 0.84px;
  position: relative;
  z-index: 1;
}
.event__flex__box__lead.challenge {
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
  margin-top: 30px;
}
.event__flex__box__period {
  margin-top: 12px;
  position: relative;
  display: inline-block;
  padding: 4px 14px;
  font-size: 14px;
  font-weight: 700;
  background-color: #d450d1;
  color: #000;
}
.event__flex__box__flag {
  text-align: center;
  margin: 14px auto 0;
  width: 100%;
  max-width: 278px;
}
.event__flex__box__flag img {
  filter: drop-shadow(0 4px 10.4px rgba(0, 0, 0, 0.25));
  width: 100%;
  height: auto;
}
.event__flex__box p {
  margin-top: 24px;
  color: #FFF;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 170%; /* 21.6px */
  letter-spacing: 0.45px;
  width: 100%;
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 194px;
  background-repeat: no-repeat;
  background-position: bottom center;
}
.event__flex__box p.award {
  background-image: url(../img/fig-award01-sp.png);
  background-size: 194px 162px;
}
.event__flex__box p.night {
  background-image: url(../img/fig-night01-sp.png);
  background-size: 160px 179px;
}
.event__flex__box__button {
  margin: 32px auto 0;
  display: flex;
  width: 205px;
  height: 46px;
  padding: 6.008px;
  justify-content: center;
  align-items: center;
  gap: 4.807px;
  color: #FFF;
  font-size: 14.42px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 2px;
  border-radius: 60px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.event__flex__box__button.challenge {
  margin-top: 190px;
  background: var(--Linear, linear-gradient(240deg, #D40004 30.05%, #930002 74.37%));
}
.event__flex__box__button.hero {
  color: #0054FF;
  background: linear-gradient(222deg, #E7F8FF 3.22%, #C3E1FF 62.86%, #FEFFFF 102.45%);
}
.event__flex__box__button.violet {
  background: var(--Linear, linear-gradient(30deg, #BB19F0 3.12%, #4D00FF 61.18%, #AAA2FF 99.73%));
}
.event__flex__box__button.blue {
  background: var(--Linear, linear-gradient(30deg, #75D2DC 3.12%, #0085FF 61.18%, #A2D2FF 99.73%));
}
.event__flex__box__button img {
  width: 16px;
  height: 16px;
}
@media screen and (min-width: 768px) {
  .event h2 {
    font-size: 40px;
  }
  .event__lead {
    font-size: 20px;
    margin-top: 16px;
  }
  .event__flex {
    gap: 56px;
  }
  .event__flex__box {
    padding: 120px 80px;
    max-width: 1100px;
    border-radius: 40px;
  }
  .event__flex__box::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  .event__flex__box.diagnosis {
    padding-top: 80px;
    padding-bottom: 80px;
    background-image: url(../img/bg-hero-pc.jpg);
  }
  .event__flex__box.award::before {
    background-image: url(../img/fig-award01-pc.png), url(../img/fig-award02-pc.png);
    background-repeat: no-repeat;
    background-size: 275px auto, 230px auto;
    background-position: top left 10px, bottom 32px right 25px;
  }
  .event__flex__box.night::before {
    background-image: url(../img/fig-night01-pc.png), url(../img/fig-night02-pc.png);
    background-repeat: no-repeat;
    background-size: 209px auto, 176px auto;
    background-position: bottom 50px left 50px, bottom 50px right 50px;
  }
  .event__flex__box.challenge {
    background: linear-gradient(90deg, #FFE100 0%, #D1FF45 13.46%, #FFF 26.92%, #55FFE8 38.94%, #6294FF 54.81%, #888AFF 68.75%, #FF93ED 83.65%, #FF77A6 100%);
  }
  .event__flex__box.challenge::before {
    top: 4px;
    left: 4px;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    border-radius: 36px;
    background-repeat: no-repeat;
    background-image: url(../img/bg-challenge01.svg), url(../img/bg-challenge02.svg), url(../img/bg-challenge03.svg), linear-gradient(270deg, #001644 17.93%, #000 46.92%, #26001A 82.07%);
    background-size: 220px auto, 220px auto, 914px auto, cover;
    background-position: left center, right center, center top, center;
  }
  .event__flex__box h2 img {
    width: 100%;
    max-width: 574px;
  }
  .event__flex__box h2 img.challenge {
    width: 100%;
    max-width: 640px;
  }
  .event__flex__box picture.diagnosis-heading img {
    width: 560px;
  }
  .event__flex__box__lead {
    font-size: 28px;
  }
  .event__flex__box__lead.challenge {
    font-family: "sofia-pro", "游ゴシック", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 40px; /* 166.667% */
    letter-spacing: 2.88px;
    margin-top: 14px;
  }
  .event__flex__box__period {
    padding: 8px 40px;
    margin: 20px auto 0;
    font-size: 24px;
    display: inline-block !important;
    color: #fff;
    border: 1px solid #FF64FF;
    background-color: transparent;
    box-shadow: 0 0 5.4px 0 #FFA7FF;
    position: relative;
    z-index: 1;
  }
  .event__flex__box__flag {
    position: absolute;
    width: 148px;
    height: 184px;
    top: -10px;
    right: 70px;
    margin: 0;
  }
  .event__flex__box p {
    margin-top: 20px;
    font-size: 20px;
    padding-bottom: 0;
  }
  .event__flex__box p.award, .event__flex__box p.night {
    background-image: none;
  }
  .event__flex__box__button {
    margin-top: 52px;
    font-size: 24px;
    width: 334px;
    height: 56px;
  }
  .event__flex__box__button img {
    width: 27px;
    height: 27px;
  }
  .event__flex__box__button.challenge {
    margin-top: 54px;
  }
  .event__flex__box.night h2 img {
    max-width: 628px;
  }
}

.coming-soon-wrapper {
  padding: 40px 24px 80px;
}
.coming-soon h2 {
  font-family: "sofia-pro", "游ゴシック", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
  font-weight: 700;
  background: var(--LinearX, linear-gradient(0deg, #BE31FF 2.03%, #6D37FF 41.16%, #37B2FF 98.92%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
}
.coming-soon__lead {
  margin-top: 8px;
  color: var(--Dark-Gray595959, #595959);
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}
.coming-soon__flex {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.coming-soon__flex__box {
  font-family: "sofia-pro", "游ゴシック", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  padding: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 10px;
  background: var(--LinearX, linear-gradient(18deg, #BE31FF 2.03%, #6D37FF 41.16%, #37B2FF 98.92%));
  position: relative;
}
.coming-soon__flex__box::after {
  content: "";
  position: absolute;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  top: 2px;
  left: 2px;
  border-radius: 8px;
  background-color: #fff;
  z-index: 0;
}
.coming-soon__flex__box h3 {
  font-family: "sofia-pro", "游ゴシック", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
  font-weight: 700;
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  background: var(--Linear, linear-gradient(90deg, #008ADF 0%, #44B8FF 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: 230px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  position: relative;
}
.coming-soon__flex__box h3::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 3px;
  background: var(--Linear, linear-gradient(90deg, #008ADF 0%, #44B8FF 100%));
  bottom: 0;
  left: calc(50% - 15px);
}
.coming-soon__flex__box.diagnostic h3 {
  background: var(--Linear, linear-gradient(90deg, #1764FF 0%, #4D88FF 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.coming-soon__flex__box.diagnostic h3::after {
  background: var(--Linear, linear-gradient(86deg, #1764FF 34.67%, #4D88FF 65.33%));
}
.coming-soon__flex__box.diagnostic .coming-soon__flex__box__lead {
  color: #0054ff;
}
.coming-soon__flex__box__lead {
  color: #008ADF;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  width: 100%;
  line-height: normal;
  z-index: 1;
  border: solid 2px #008adf;
  padding: 4px 12px;
}
.coming-soon__flex__box__lead.diagnostic {
  border: solid 2px #1764ff;
}
.coming-soon__flex__box p {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .coming-soon-wrapper {
    padding-top: 80px;
    padding-bottom: 120px;
  }
  .coming-soon h2 {
    font-size: 40px;
  }
  .coming-soon__lead {
    font-size: 20px;
  }
  .coming-soon__flex {
    flex-direction: row;
    max-width: 1100px;
    margin: 40px auto 0;
  }
  .coming-soon__flex__box {
    padding: 62px 38px;
    max-width: 524px;
    border-radius: 16px;
  }
  .coming-soon__flex__box::after {
    border-radius: 14px;
  }
  .coming-soon__flex__box h3 {
    width: 376px;
    height: 75px;
    font-size: 32px;
  }
  .coming-soon__flex__box h3::after {
    width: 56px;
    height: 6px;
    left: calc(50% - 28px);
  }
  .coming-soon__flex__box__lead {
    font-size: 24px;
    margin-top: 12px;
    padding: 8px 24px;
  }
  .coming-soon__flex__box p {
    font-size: 20px;
  }
}

.business {
  background: rgba(197, 218, 255, 0.5);
}
.business-wrapper {
  padding: 80px 24px;
}
.business h2 {
  text-align: center;
}
.business h2 img {
  width: 100%;
  max-width: 346px;
  display: inline-block;
}
.business__banner {
  margin-top: 4px;
}
.business__banner a {
  display: block;
  width: 100%;
  max-width: 346px;
  margin: 0 auto;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition-duration: 0.3s;
  cursor: pointer;
  filter: drop-shadow(0px 2px 15px rgba(90, 114, 162, 0.4));
}
.business__banner a:hover {
  opacity: 0.7;
}
.business__banner a .business__banner__button {
  width: 183px;
  height: auto;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .business-wrapper {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .business h2 img {
    max-width: 632px;
  }
  .business__banner {
    margin-top: 56px;
  }
  .business__banner:first-of-type {
    margin-top: 48px;
  }
  .business__banner a {
    max-width: 1100px;
    border-radius: 24px;
    filter: drop-shadow(0px 4px 30px rgba(90, 114, 162, 0.4));
  }
  .business__banner a .business__banner__button {
    width: 362px;
  }
}

/* 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;
}

@media screen and (max-width: 768.2px) {
  .sp-reverse {
    display: flex;
    flex-direction: column-reverse;
  }
}/*# sourceMappingURL=style.css.map */