@charset "UTF-8";
/* common
/* ----------------------------------------------- */
html {
  font-size: 62.5%; /* PC: 10px */
}

@media (max-width: 767px) {
  html {
    font-size: 2.6667vw; /* SP: 可変 */
  }
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #00070D;
  line-height: 1.6;
  font-size: 1.6rem;
  font-size: 2.6666666667vw;
}

p {
  font-size: 1.4rem;
  line-height: 1.5;
}

.hidden {
  overflow: hidden;
  position: relative;
}

.container {
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .container {
    padding: 0;
  }
}

a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}

.dsp_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .dsp_sp {
    display: block;
  }
}

.dsp_pc {
  display: block;
}
@media screen and (min-width: 1080px) {
  .dsp_pc {
    display: none;
  }
}

video, img {
  width: 100%;
  height: auto;
}

video {
  cursor: pointer;
}

.inner, .inner__scene {
  max-width: 100rem;
  width: 100%;
  margin: 0 auto;
}

.align-c {
  text-align: center;
}

.pt {
  padding-top: 80px;
}
@media screen and (min-width: 768px) {
  .pt {
    padding-top: 120px;
  }
}

.pb {
  padding-bottom: 100px;
}
@media screen and (min-width: 768px) {
  .pb {
    padding-bottom: 120px;
  }
}

.text__white {
  color: #FFF;
}

/* 背景設定 */
.bg_wide {
  position: relative;
}

.bg_wide::before {
  display: block;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  margin-right: calc((100vw - 100%) / 2 * -1);
  margin-left: calc((100vw - 100%) / 2 * -1);
  content: "";
}

.bg_wide::after {
  display: block;
  z-index: -2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  margin-right: calc((100vw - 100%) / 2 * -1);
  margin-left: calc((100vw - 100%) / 2 * -1);
  content: "";
}

/**/
.en-title {
  font-size: 16px;
  font-family: "Lexend", sans-serif;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(90deg, #806DFF 0%, #FF08AD 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: table;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .en-title {
    font-size: 24px;
    margin-bottom: 8px;
  }
}

.section-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .section-title {
    font-size: 42px;
    margin-bottom: 50px;
  }
}

/* --- hover --- */
/* --- cv-btn --- */
.cta-wrap {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  padding: 25px;
  background: #040056;
}
.cta-wrap .cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 17px;
  color: #fff;
  background: var(--blue, linear-gradient(90deg, #1781FF 0%, #02CADC 100%));
  border-radius: 4rem;
  
  @media screen and (min-width: 768px){
    font-size: 26px;
    height: 68px;
  }
}

/* header
/* ----------------------------------------------- */
.header {
  padding: 2rem 4rem;
  background-color: rgba(14, 6, 30, 0.95);
  position: relative;
  z-index: 100;
  position: fixed;
  width: 100%;
}

.header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  width: 20.6rem;
}

.header__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}
.header__list li a {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  color: #FFF;
}

.header__cv {
  display: flex;
  align-items: center;
}

.header__now {
  margin-left: 2rem;
}

.footer {
  padding: 30px 0 80px;
  margin-top: -1px;
  color: #fff;
  background: #010B1B;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  max-width: 120rem;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
}

.footer__nav-link {
  font-size: 15px;
  margin: 0;
  font-weight: 400;
  color: #fff;
}
.footer__nav-link:nth-of-type(n + 2) {
  margin-top: 2.2rem;
}
.footer__nav-link::before, .footer__nav-link:last-of-type::after {
  content: none;
}

.footer__copy {
  text-align: center;
  font-size: 12px;
  line-height: 1.66;
  padding-bottom: 74px;
}