@font-face {
  font-family: "impact";
  src: url("../fonts/impact.ttf");
}
.header {
  background-color: transparent;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 76px;
  -webkit-transform: translateY(-200px);
          transform: translateY(-200px);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: 9;
}
@media screen and (max-width: 767px) {
  .header {
    height: 56px;
  }
}
.header.scroll {
  background-color: #000;
}
.header.active .header__nav {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  -webkit-animation: fadeIn 2s;
          animation: fadeIn 2s;
}
@supports (-webkit-touch-callout: none) {
  .header.active .header__nav {
    -webkit-animation-delay: -1500ms;
            animation-delay: -1500ms;
  }
}
.header.active .header__menu-line:nth-child(1)::before, .header.active .header__menu-line:nth-child(1)::after {
  margin-top: 0;
}
.header.active .header__menu-line:nth-child(1) {
  -webkit-transition: 0.5s ease-in-out 0.5s;
  transition: 0.5s ease-in-out 0.5s;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.header.active .header__menu-line:nth-child(2) {
  width: 32px;
  -webkit-transition: 0.3s ease-in-out 0.8s;
  transition: 0.3s ease-in-out 0.8s;
}
.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  .header__wrapper {
    padding: 0 18px !important;
  }
}
.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 9px;
  margin: auto 0;
}
.header__logo-image {
  width: 64px;
  height: 50px;
}
@media screen and (max-width: 767px) {
  .header__logo-image {
    width: 50px;
    height: 39px;
  }
}
.header__logo-text {
  width: 210px;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
@media screen and (max-width: 880px) {
  .header__logo-text {
    width: 180px;
  }
}
@media screen and (max-width: 767px) {
  .header__logo-text {
    width: 169px;
  }
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 285px;
}
@media screen and (max-width: 1600px) {
  .header__nav {
    gap: 200px;
  }
}
@media screen and (max-width: 1366px) {
  .header__nav {
    gap: 100px;
  }
}
@media screen and (max-width: 980px) {
  .header__nav {
    gap: 87px;
  }
}
@media screen and (max-width: 880px) {
  .header__nav {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .header__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: rgba(51, 51, 51, 0.9);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    gap: 75px;
    padding-top: 144px;
    opacity: 0;
    z-index: 1;
    -webkit-transform: translateY(-1000px);
            transform: translateY(-1000px);
    -webkit-transition: 0.6s ease-in-out;
    transition: 0.6s ease-in-out;
  }
}
.header__nav-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin: auto 0 12px;
}
@media screen and (max-width: 767px) {
  .header__nav-inner {
    margin: 0;
    -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;
    gap: 42px;
  }
}
.header__logo, .header__nav-item, .header__nav-sns {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__logo:hover, .header__nav-item:hover, .header__nav-sns:hover {
  opacity: 0.6;
}
.header__nav-item {
  font-size: 1.6rem;
  font-family: "IBM Plex Sans Condensed", sans-serif;
}
@media screen and (max-width: 767px) {
  .header__nav-item {
    font-size: 24px;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 700;
  }
}
.header__nav-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin: auto 0 13px;
}
@media screen and (max-width: 767px) {
  .header__nav-outer {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0;
    gap: 44px;
  }
}
.header__nav-sns {
  position: relative;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .header__nav-sns {
    font-size: 25px;
  }
}
.header__menu {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__menu {
    position: relative;
    display: block;
    width: 32px;
    height: 20px;
    cursor: pointer;
    margin: auto 0;
    z-index: 2;
  }
}
.header__menu-line:nth-child(1), .header__menu-line:nth-child(1)::before, .header__menu-line:nth-child(1)::after {
  content: "";
  background: #e6e6d6;
  position: absolute;
  width: 32px;
  height: 2px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header__menu-line:nth-child(1) {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header__menu-line:nth-child(1)::before {
  margin-top: -9px;
  -webkit-transition: 0.3s ease-in-out 0.3s;
  transition: 0.3s ease-in-out 0.3s;
}
.header__menu-line:nth-child(1)::after {
  margin-top: 9px;
  -webkit-transition: 0.3s ease-in-out 0.3s;
  transition: 0.3s ease-in-out 0.3s;
}
.header__menu-line:nth-child(2) {
  background: #e6e6d6;
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header__menu-line:nth-child(2)::before {
  margin-top: -12px;
  -webkit-transition: 0.3s ease-in-out 0.3s;
  transition: 0.3s ease-in-out 0.3s;
}
.header__menu-line:nth-child(2)::after {
  margin-top: 12px;
  -webkit-transition: 0.3s ease-in-out 0.3s;
  transition: 0.3s ease-in-out 0.3s;
}

.footer {
  background-color: #000;
  padding: 29.5px 0;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 33.5px 0;
  }
}
.footer__wrapper {
  position: relative;
}
.footer__logo {
  width: 80px;
  height: 63px;
  margin: auto;
}
.footer__text {
  position: absolute;
  right: 30px;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .footer__text {
    right: 19px;
    bottom: -16px;
  }
}
.footer__copyright, .footer__note {
  display: block;
  font-size: 1.2rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .footer__copyright, .footer__note {
    font-size: 10px;
  }
}

.card {
  margin: 82px 0 16px;
}
@media screen and (max-width: 767px) {
  .card {
    margin-top: 57px;
  }
}
.card__wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, 300px);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px 30px;
}
@media screen and (max-width: 1036px) {
  .card__wrapper {
    gap: 60px 0;
  }
}
@media screen and (max-width: 1020px) {
  .card__wrapper {
    grid-template-columns: repeat(auto-fill, 48.2%);
  }
}
@media screen and (max-width: 767px) {
  .card__wrapper {
    grid-template-columns: repeat(auto-fill, 100%);
    gap: 30px 0;
  }
}
.card__wrapper:after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}
.card__item {
  position: relative;
  width: 300px;
  height: 500px;
  background-color: #e6e6d6;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.3125em;
  color: #000;
  padding: 0 10px;
  overflow: hidden;
}
@media screen and (max-width: 1020px) {
  .card__item {
    width: 100%;
  }
}
@media screen and (max-width: 360px) {
  .card__item {
    height: 550px;
  }
}
.card__item a {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.card__item a:hover {
  opacity: 0.6;
}
.card__item span {
  display: block;
  margin-top: 12px;
}
.card__item--orange {
  background-color: #f15a24;
  color: #000;
}
.card__item--orange .card__item-title {
  color: #e6e6d6;
}
.card__item--black {
  background-color: #333;
  color: #e6e6d6;
}
.card__item-title {
  font-size: 3.2rem;
  line-height: 0.9375em;
  color: #f15a24;
  margin: 7px 0 10px;
}
.card__item-img {
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}
.card__item-img.left-bot {
  left: 0;
  bottom: 0;
}
.card__item-img.center-bot {
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.card__item-img.right-bot {
  right: 0;
  bottom: 0;
}

.mv {
  height: 100vh;
  height: 100svh;
  position: fixed;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}
.mv__video, .mv__image {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 177.77777778vh;
  height: 56.25vw;
  min-height: 100%;
  min-width: 100%;
}
@media screen and (max-width: 767px) {
  .mv__video, .mv__image {
    width: auto;
    height: 100%;
  }
}
.mv__image {
  display: none;
}
.mv__image > img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .mv__image > img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.page-title {
  font-size: 7.6rem;
  font-family: "impact";
  font-weight: 400;
  line-height: 1;
  margin-bottom: 28px;
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}
@media screen and (max-width: 767px) {
  .page-title {
    font-size: 60px;
    text-align: center;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    margin: 0 0 36px;
  }
}
@media screen and (max-width: 365px) {
  .page-title {
    font-size: 50px;
  }
}

.section-title {
  font-size: 4rem;
  font-weight: 700;
  color: #f15a24;
  line-height: 0.8;
  margin: 35px 0 25px;
}
@media screen and (max-width: 767px) {
  .section-title {
    margin: 28px 0 24px;
  }
}

.roadmap {
  padding: 0 0 55px;
}
@media screen and (max-width: 767px) {
  .roadmap {
    padding: 33px 0 40px;
  }
}
.roadmap__desc {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.5em;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .roadmap__desc {
    font-size: 21px;
    margin-bottom: 28px;
  }
}
.roadmap__update {
  display: block;
  font-size: 1.6rem;
  text-align: right;
}
.roadmap__card-item.cat1 {
  width: 235.5px;
  height: 210px;
}
.roadmap__card-item.cat2 {
  width: 289.17px;
  height: 310.42px;
}
.roadmap__card-item.cat3 {
  width: 219px;
  height: 210px;
}
.roadmap__card-item.cat4 {
  width: 272px;
  height: 305px;
}
.roadmap__card-item.cat5 {
  width: 228px;
  height: 215.5px;
}
.roadmap__card-item.cat6 {
  width: 300px;
  height: 340px;
}
.roadmap__card-item.cat7 {
  width: 260px;
  height: 274px;
  right: 9px;
}
.roadmap__card-item.ufo {
  width: 270.64px;
  height: 339.49px;
}
.roadmap__card-item.cat8 {
  width: 243px;
  height: 325.5px;
}
.roadmap__card-item.cat9 {
  width: 230px;
  height: 316.5px;
}
.roadmap__card-item.cat10 {
  width: 248.4px;
  height: 194.5px;
}
.roadmap__card-item.cat11 {
  width: 301.24px;
  height: 335.24px;
}

.white-paper {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.5em;
  padding-bottom: 80px !important;
}
@media screen and (max-width: 767px) {
  .white-paper {
    font-size: 21px;
    line-height: 1.5714285714em;
    padding-bottom: 40px !important;
  }
}
@media screen and (max-width: 767px) {
  .white-paper__title {
    white-space: nowrap;
    padding-top: 35px;
  }
}
.white-paper__txt {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.3125em;
  text-align: right;
}
.white-paper__txt--big {
  font-size: 2.1rem;
  line-height: 1.1428571429em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: left;
  margin-top: 14px;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .white-paper__txt--big {
    font-size: 19px;
    line-height: 1.2105263158em;
    width: unset;
    margin-left: unset;
  }
}
.white-paper__card-item.cat1 {
  width: 204.5px;
  height: 198.5px;
}
.white-paper__card-item.cat2 {
  width: 307px;
  height: 307px;
  bottom: -33px;
}
.white-paper__card-item.cat3 {
  width: 207px;
  height: 211px;
}
.white-paper__card-item.cat4 {
  width: 227px;
  height: 281px;
}
.white-paper__card-item.donut {
  width: 158.5px;
  height: 97px;
}
.white-paper__card-item.cat5 {
  width: 284.5px;
  height: 165px;
}
.white-paper__card-item.cat6 {
  width: 285px;
  height: 264px;
}
.white-paper__card-item.tori-gate {
  width: 158px;
  height: 130px;
}
.white-paper__card-item.cat7 {
  width: 284px;
  height: 279px;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

html {
  font-family: "IBM Plex Sans", sans-serif;
  color: #e6e6d6;
  font-size: 10px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}
@media screen and (max-width: 767px) {
  html {
    min-width: 100%;
    scroll-padding-top: 56px;
  }
}

.white {
  color: #fff;
}

.white-bg {
  background: #fff;
}

.black {
  color: #000;
}

.black-bg {
  background: #000;
}

.primary {
  color: #f15a24;
}

.primary-bg {
  background: #f15a24;
}

.gray-bg {
  background-color: #666;
}

.semibold {
  font-weight: 600;
}

.overflow {
  overflow: hidden;
}

.cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.w1024 {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
}

.container {
  width: 100%;
  padding: 0 30px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .container {
    padding: 0 10.6%;
  }
}

.anchor {
  display: block;
  position: relative;
  top: -76px;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  .anchor {
    top: -56px;
  }
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.pc-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .pc-flex {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.sp-flex {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.mt-100vh {
  margin-top: 100vh;
  margin-top: 100svh;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
