* {
  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: "Noto Sans JP", sans-serif;
  font-size: 10px;
  color: #090000;
  scroll-behavior: smooth;
  scroll-margin-top: 100px;
}

.anchor {
  display: block;
  position: relative;
  top: -80px;
  visibility: hidden;
}

.image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.image--100 {
  height: 100%;
}
.image--auto {
  width: auto;
}
.image--contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.header {
  display: none;
}
@media screen and (max-width: 1080px) {
  .header {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 24px 16px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
  }
}
.header.active {
  position: fixed;
}
.header.active .header__logo-img {
  display: none;
}
.header.active .header__logo-img-2,
.header.active .header__menu {
  display: block;
}
.header__container {
  width: 100%;
  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;
}
.header__logo {
  width: 117px;
  height: 21px;
  display: block;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__logo-img-2 {
  display: none;
}
.header__hamburger {
  width: 24px;
  height: 18px;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header__hamburger.close > .header__line {
  background-color: #f31215;
}
.header__hamburger.close > .header__line:nth-child(1) {
  -webkit-transform: translate(0, 9px) rotate(45deg);
          transform: translate(0, 9px) rotate(45deg);
}
.header__hamburger.close > .header__line:nth-child(2) {
  display: none;
}
.header__hamburger.close > .header__line:nth-child(3) {
  -webkit-transform: translate(0, -7px) rotate(-45deg);
          transform: translate(0, -7px) rotate(-45deg);
}
.header__line {
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 1px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__menu {
  width: 100%;
  max-height: 100vh;
  background-color: #f0f0f0;
  padding-block: 117px 200px;
  -webkit-animation: fade-in 0.3s ease;
          animation: fade-in 0.3s ease;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8;
  overflow-y: auto;
}
.header__menu-list .menu__jp {
  color: #090000;
}
.header__button {
  margin-inline: auto;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.menu__list {
  width: 294px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto 48px;
}
.menu__item {
  padding-block: 24px;
  border-bottom: 1px solid #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.menu__item:first-child {
  border-top: 1px solid #fff;
}
.menu__item:hover {
  opacity: 0.8;
}
.menu__item:hover .menu__jp::after {
  right: -40px;
}
.menu__jp, .menu__en {
  display: inline-block;
  line-height: 1.3em;
}
.menu__jp {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  position: relative;
}
.menu__jp::after {
  content: "";
  width: 17px;
  height: 17px;
  background: url("../img/red-arrow.svg") center/cover no-repeat;
  position: absolute;
  top: 50%;
  right: -33px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.menu__en {
  font: 700 1.3rem "Jost", sans-serif;
  color: #cecece;
  display: block;
  margin-top: 8px;
}

.heading {
  position: relative;
  margin-bottom: 35px;
}
.heading::after {
  content: "";
  width: 50px;
  height: 30px;
  background: #df1f1f;
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
          clip-path: polygon(0 0, 100% 0, 0 100%);
  position: absolute;
  bottom: -46px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.heading__content {
  width: 100%;
  min-height: 151px;
  background: -webkit-gradient(linear, left top, left bottom, from(#ff3b21), color-stop(70%, #df1f1f));
  background: linear-gradient(180deg, #ff3b21 0%, #df1f1f 70%);
  position: relative;
  padding: 16px 24px 24px;
}
.heading__content::before, .heading__content::after {
  content: "";
  width: 100%;
  height: 47px;
  position: absolute;
  left: 0;
}
.heading__content::before {
  background-color: #ff3b21;
  -webkit-clip-path: polygon(0 100%, 100% 0, 100% 100%);
          clip-path: polygon(0 100%, 100% 0, 100% 100%);
  top: -47px;
}
.heading__content::after {
  background-color: #df1f1f;
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
          clip-path: polygon(0 0, 100% 0, 0 100%);
  bottom: -47px;
}
.heading__en, .heading__ja {
  display: block;
  text-align: center;
}
.heading__en {
  font: 700 1.3rem "Jost", sans-serif;
  color: #d00003;
  margin-bottom: 8px;
}
.heading__ja {
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3em;
}
.heading__subhead {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3em;
  padding-left: 16px;
  border-left: 4px solid #f31215;
  display: block;
  margin-bottom: 16px;
}
.heading__subhead--white {
  color: #fff;
  margin-left: 40px;
}
.heading__title-en, .heading__title-ja {
  display: block;
  text-align: center;
}
.heading__title-en {
  font: 700 1.3rem "Jost", sans-serif;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, #786f6f), color-stop(75%, #fa292c));
  background: linear-gradient(180deg, #786f6f 40%, #fa292c 75%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  margin-bottom: 8px;
}
.heading__title-ja {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.3em;
  color: #fff;
}

.button {
  width: 100%;
  max-width: 342px;
  height: 64px;
  border: 5px solid transparent;
  border-radius: 32px;
  background: -webkit-gradient(linear, left top, right top, color-stop(70%, #06c755), to(#b7d800)) padding-box, -webkit-gradient(linear, left top, right top, from(#8f7340), color-stop(35%, #d6ba74), color-stop(50%, #fff5d4), color-stop(65%, #d6ba74), to(#8f7340)) border-box;
  background: linear-gradient(90deg, #06c755 70%, #b7d800 100%) padding-box, linear-gradient(90deg, #8f7340 0%, #d6ba74 35%, #fff5d4 50%, #d6ba74 65%, #8f7340 100%) border-box;
  margin: 0 auto;
  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;
  gap: 8px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.button:hover {
  opacity: 0.8;
}
.button:hover .button__arrow {
  -webkit-transform: translateX(16px);
          transform: translateX(16px);
}
.button__arrow {
  width: 17px;
  height: 17px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.footer {
  width: 100%;
  max-width: 390px;
  background-color: #000;
  margin-inline: auto;
  position: relative;
  padding-block: 40px;
  overflow-x: hidden;
  z-index: 3;
}
@media screen and (max-width: 1080px) {
  .footer {
    max-width: 100%;
  }
}
.footer__copyright {
  font-size: 1.3rem;
  color: #fff;
  text-align: center;
}

.pc-layout {
  width: 100%;
  height: 100vh;
  background: url("../img/bg.png") center/cover no-repeat;
  position: fixed;
}
@media screen and (max-width: 1080px) {
  .pc-layout {
    display: none;
  }
}
.pc-layout__intro, .pc-layout__menu {
  width: calc(50vw - 195px);
  height: 100%;
  position: absolute;
  padding-block: 32px;
}
.pc-layout__intro {
  left: 0;
}
.pc-layout__menu {
  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;
  right: 0;
}

.intro__logo {
  width: 134px;
  height: 24px;
  display: block;
  margin-left: 32px;
}
.intro__img {
  width: 100%;
  height: auto;
  aspect-ratio: 763/586;
}
.intro__yt {
  width: clamp(250px, 55%, 354px);
  margin: 0 auto;
}
.intro__yt-link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  display: block;
  margin: 16px auto 0;
  position: relative;
}
.intro__yt-link::after {
  content: "";
  width: 17px;
  height: 17px;
  background: url("../img/red-arrow.svg") center/cover no-repeat;
  position: absolute;
  top: 50%;
  right: -32px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.intro__yt-link:hover {
  opacity: 0.8;
}
.intro__yt-link:hover::after {
  right: -40px;
}

.container {
  width: 100%;
  max-width: 390px;
  background-color: #000;
  margin-inline: auto;
  position: relative;
  overflow-x: hidden;
  z-index: 3;
}
@media screen and (max-width: 1080px) {
  .container {
    max-width: 100%;
  }
}

.mv {
  padding-bottom: 48px;
}
.mv__content {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 24px;
  position: relative;
  margin: -84px auto 0;
  z-index: 1;
}
.mv__content::before {
  content: "";
  width: 390px;
  height: 126px;
  background: url("../img/mv-deco.svg") center/cover no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.mv__desc, .mv__text {
  font-weight: 700;
}
.mv__desc {
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.8em;
  margin-block: 16px;
}
.mv__text {
  font-size: 4.8rem;
  color: #f31215;
}
.mv__text-sm {
  font-size: 3.2rem;
  color: #fff;
}

.cta {
  position: relative;
  padding-block: 24px 72px;
}
.cta--message {
  background-color: transparent;
  margin-top: 40px;
  padding-bottom: 24px;
}
.cta__promo {
  width: 100px;
  height: 100px;
  background-color: #f31215;
  border-radius: 50%;
  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;
  position: absolute;
  top: 0;
  left: -2px;
  z-index: 1;
}
.cta__promo-text {
  color: #fff;
}
.cta__block {
  width: calc(100% - 48px);
  min-height: 395px;
  background: url("../img/cta-bg.png") center/cover no-repeat;
  border-radius: 16px;
  position: relative;
  margin: 0 auto;
  padding: 32px 24px;
}
.cta__block::before {
  content: "";
  position: absolute;
  background: -webkit-gradient(linear, left top, right top, from(#8f7340), color-stop(35%, #d6ba74), color-stop(50%, #fff5d4), color-stop(65%, #d6ba74), to(#8f7340));
  background: linear-gradient(90deg, #8f7340 0%, #d6ba74 35%, #fff5d4 50%, #d6ba74 65%, #8f7340 100%);
  border-radius: inherit;
  padding: 4px;
  inset: 0;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.cta__title, .cta__desc, .cta__promo-text {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}
.cta__title {
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, color-stop(27%, #a49064), color-stop(52%, #fff), color-stop(82%, #a49064));
  background: linear-gradient(90deg, #a49064 27%, #fff 52%, #a49064 82%);
  border-radius: 4px;
  color: #090000;
  display: block;
  margin-bottom: 16px;
  padding: 5px;
}
.cta__heading {
  width: 100%;
  height: auto;
}
.cta__desc {
  color: #d5c093;
  line-height: 1.2em;
  margin-block: 24px;
}
.cta__num {
  font-size: 2.4rem;
}

.event {
  position: relative;
}
.event::before {
  content: "";
  width: 106px;
  height: 573px;
  background-color: #f31215;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(62deg);
          transform: translate(-50%, -50%) rotate(62deg);
}
.event__block {
  width: calc(100% - 48px);
  min-height: 410px;
  background-color: #fff;
  /* background: url("../img/event-bg.jpg") center/cover no-repeat; */
  padding: 48px 24px;
  position: relative;
  margin: 0 auto;
}
.event__block::after {
  content: "";
  width: 98px;
  height: 98px;
  background: url("../img/event-stamp.png") center/cover no-repeat;
  position: absolute;
  top: 0;
  right: -1px;
}
.event__title, .event__sched {
  font-weight: 700;
  display: block;
  text-align: center;
}
.event__title {
  width: 224px;
  border: 1px solid #090000;
  font-size: 2rem;
  letter-spacing: 0.4em;
  line-height: 1em;
  margin: 0 auto;
  padding: 5px 8px;
}
.event__sched {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.8em;
  margin-block: 9px;
}
.event__table {
  width: 100%;
}
.event__table, .event__table-tr td {
  border: 1px solid #090000;
  border-collapse: collapse;
}
.event__table-tr {
  min-height: 39px;
}
.event__table-tr > td {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.5em;
  padding: 8px 16px;
}

.question {
  background: url("../img/question-bg.jpg") center/cover no-repeat;
  padding-block: 60px 96px;
}
.question__content {
  width: 100%;
  max-width: 294px;
  display: block;
  margin: 0 auto;
}
.question__heading, .question__desc {
  color: #fff;
}
.question__heading {
  font-size: 4.8rem;
  font-weight: 700;
  letter-spacing: -0.16em;
  line-height: 1.43em;
}
.question__desc {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.8em;
  margin-block: 48px;
}
.question__message {
  width: 294px;
  height: auto;
}

.about {
  background-color: #f0f0f0;
  padding-bottom: 90px;
}
.about__img {
  width: 100%;
  height: auto;
}
.about__desc {
  width: 100%;
  max-width: 294px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8em;
  display: block;
  margin: 0 auto;
}
.about__desc-red {
  font-size: 2.4rem;
  color: #f31215;
}
.about__highlight {
  background-color: #f31215;
  color: #fff;
  padding: 3px 7px 4px;
}

.point {
  background: url("../img/point-bg.jpg") center/cover no-repeat;
  padding: 80px 24px 128px;
  position: relative;
}
.point__heading {
  width: 100%;
  max-width: 279px;
  height: 88px;
  background: -webkit-gradient(linear, left top, left bottom, from(#ff3b21), color-stop(70%, #df1f1f));
  background: linear-gradient(180deg, #ff3b21 0%, #df1f1f 70%);
  border-radius: 44px;
  color: #fff;
  padding: 22px;
  position: absolute;
  top: -44px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.point__heading::after {
  content: "";
  width: 24px;
  height: 24px;
  background-color: #df1f1f;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  left: 50%;
  bottom: -12px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.point__subhead, .point__heading-text {
  display: block;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.point__subhead {
  font-size: 1.3rem;
  position: absolute;
  top: 12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.point__heading-text {
  font-size: 2.4rem;
  position: relative;
}
.point__heading-text::after {
  content: "";
  width: 155px;
  height: 5px;
  background: url("../img/yellow-dot.svg") center/cover no-repeat;
  position: absolute;
  left: 50%;
  bottom: -3px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.point__heading-num {
  font: 700 4.8rem "Jost", sans-serif;
  line-height: 1em;
}
.point__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.point__item {
  width: 100%;
  min-height: 162px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(0, 0, 0, 0.5)), to(rgba(124, 2, 2, 0.5)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 50%, rgba(124, 2, 2, 0.5) 100%);
  border-radius: 8px;
  text-align: center;
}
.point__head {
  width: 123px;
  height: 32px;
  background: -webkit-gradient(linear, left top, left bottom, from(#ff3b21), color-stop(70%, #df1f1f));
  background: linear-gradient(180deg, #ff3b21 0%, #df1f1f 70%);
  border-radius: 0 0 16px 16px;
  font: 700 1rem "Jost", sans-serif;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  display: block;
  padding: 4px 24px;
  margin: 0 auto 16px;
}
.point__num {
  font-size: 2.4rem;
  line-height: 1em;
}
.point__title, .point__desc {
  letter-spacing: 0.05em;
  line-height: 1.5em;
}
.point__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #f31215;
}
.point__desc {
  font-size: 1.5rem;
  color: #fff;
  margin-top: 8px;
}

.challenger {
  padding-bottom: 80px;
}
.challenger__block {
  width: 100%;
  max-width: 389px;
  height: 616px;
  background: url("../img/challenger-bg.png") center/cover no-repeat;
  display: block;
  margin: -80px auto 0;
  padding-block: 70px;
  position: relative;
  z-index: 1;
}
.challenger__heading {
  display: block;
  margin: 0 auto;
}
.challenger__desc, .challenger__ceo-pos, .challenger__ceo-name {
  display: block;
  text-align: center;
}
.challenger__desc {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.8em;
  text-align: center;
  margin-block: 32px;
}
.challenger__ceo-pos, .challenger__ceo-name {
  line-height: 1.2em;
}
.challenger__ceo-pos {
  font-size: 1.3rem;
}
.challenger__ceo-name {
  font-size: 3.2rem;
  font-weight: 700;
}
.challenger__ceo-sign {
  position: absolute;
  right: 25px;
  bottom: 25px;
}

.roadmap {
  background: url("../img/roadmap-bg.jpg") center/cover no-repeat;
  padding-block: 0 96px;
}
.roadmap__heading {
  margin-bottom: 96px;
}
.roadmap__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 34px;
  padding-inline: 24px;
}
.roadmap__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  position: relative;
}
.roadmap__item:not(:last-child)::after {
  content: "";
  width: 48px;
  height: 18px;
  background: url("../img/arrow.svg") center/cover no-repeat;
  position: absolute;
  left: 40px;
  bottom: -26px;
}
.roadmap__wrap {
  width: 128px;
  height: 128px;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  padding: 5px;
  background: linear-gradient(180deg, #ff1e27 0%, #b30006 100%), linear-gradient(135deg, #fff 0%, #4a4a4a 100%);
  background-clip: content-box, border-box;
  background-origin: border-box;
}
.roadmap__num {
  font: 700 1.3rem "Jost", sans-serif;
  color: #fff;
  line-height: 1em;
}
.roadmap__img {
  margin-top: 2px;
}
.roadmap__content {
  width: calc(100% - 144px);
}
.roadmap__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #f31215;
}
.roadmap__desc {
  font-size: 1.3rem;
  line-height: 1.8em;
  color: #fff;
  margin-top: 8px;
}

.aptitude {
  background-color: #250400;
  padding-top: 75px;
  position: relative;
}
.aptitude__heading {
  width: 334px;
  height: 125px;
  background: url("../img/bubble.svg") center/cover no-repeat;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  padding: 32px 10px;
  position: absolute;
  top: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.aptitude__table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.aptitude__table-title {
  width: 144px;
  height: 48px;
  background: -webkit-gradient(linear, left top, left bottom, from(#ff3b21), color-stop(70%, #df1f1f));
  background: linear-gradient(180deg, #ff3b21 0%, #df1f1f 70%);
  border-radius: 4px 4px 0 0;
  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;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  margin: 0 auto;
}
.aptitude__table-title--gray {
  width: 126px;
  background: #6e6e6e;
  font-size: 1.5rem;
}
.aptitude__table-left {
  width: 190px;
}
.aptitude__table-right {
  width: 142px;
}
.aptitude__table-content {
  height: 300px;
  background-color: #fff;
  border: 5px solid #f31215;
  border-radius: 4px 0 0 4px;
  padding: 16px 8px;
}
.aptitude__table-content--gray {
  border-color: #6e6e6e;
  border-radius: 0 4px 4px 0;
}
.aptitude__table-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.aptitude__table-list--gray .aptitude__table-item {
  font-size: 1.5rem;
}
.aptitude__table-list--gray .aptitude__table-item::before {
  width: 13px;
  height: 13px;
  background: url("../img/bullet.svg");
}
.aptitude__table-item {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3em;
  padding-left: 20px;
  position: relative;
}
.aptitude__table-item::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url("../img/checkmark.svg") center/cover no-repeat;
  position: absolute;
  top: 3px;
  left: 0;
}
.aptitude__table-highlight {
  color: #f31215;
  position: relative;
}
.aptitude__table-highlight::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #ffef41;
  position: absolute;
  left: 0;
  bottom: 2px;
}
.aptitude__text {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3em;
  text-align: center;
  margin-block: 32px 29px;
}
.aptitude__img {
  width: 100%;
  height: auto;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

.achievement {
  padding-bottom: 40px;
}
.achievement__heading {
  background: -webkit-gradient(linear, left top, left bottom, from(#ff1418), to(#000));
  background: linear-gradient(180deg, #ff1418 0%, #000 100%);
  padding: 48px 24px 0;
  margin-bottom: 40px;
}
.achievement__heading-text {
  width: 100%;
  max-width: 356px;
  height: auto;
}
.achievement__arrows {
  width: 210px;
  height: 20px;
  display: block;
  margin: 0 auto 32px;
}
.achievement__block {
  width: 100%;
  position: relative;
  padding-bottom: 32px;
  margin-bottom: 40px;
  z-index: 1;
}
.achievement__block::before {
  content: "";
  width: calc(100% - 80px);
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#000), color-stop(50%, #fff));
  background: linear-gradient(180deg, #000 0%, #fff 50%);
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
.achievement__detail-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 11px;
  margin-bottom: 24px;
}
.achievement__detail-item {
  width: 190px;
  height: 190px;
  background: url("../img/round-deco.png") center/cover no-repeat;
  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;
}
.achievement__detail-item--center {
  margin: 0 auto -10px;
}
.achievement__detail-text {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.achievement__detail-num {
  font-family: "Jost", sans-serif;
  font-size: 4.8rem;
  letter-spacing: -0.02em;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(28%, #ff1500), to(#000));
  background: linear-gradient(180deg, #ff1500 28%, #000 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  line-height: 1em;
  display: inline-block;
  margin-inline: 2px;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}
.achievement__host {
  width: calc(100% - 80px);
  display: block;
  margin: 0 auto;
  padding-inline: 24px;
}
.achievement__host-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;
  gap: 10px;
}
.achievement__img {
  width: 120px;
  height: 181px;
}
.achievement__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
}
.achievement__message-text {
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  padding: 16px 8px 0;
  z-index: 1;
}
.achievement__message-text::before, .achievement__message-text::after {
  content: "";
  width: 40px;
  height: 30px;
  background: url("../img/quotes.svg") center/cover no-repeat;
  position: absolute;
  z-index: -1;
}
.achievement__message-text::before {
  top: 0;
  left: 0;
}
.achievement__message-text::after {
  right: 0;
  bottom: -14px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.achievement__message-info, .achievement__message-note {
  letter-spacing: 0.05em;
  line-height: 1.8em;
  color: #fff;
}
.achievement__message-info {
  font-size: 1.3rem;
}
.achievement__message-note {
  width: calc(100% - 80px);
  font-size: 1rem;
  display: block;
  margin: 0 auto;
}

.faq {
  padding-block: 32px;
}
.faq__list {
  width: calc(100% - 16px);
  background-color: #fff;
  -webkit-box-shadow: 0 10px 30px rgba(255, 0, 5, 0.6);
          box-shadow: 0 10px 30px rgba(255, 0, 5, 0.6);
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  margin: 40px auto 0;
  padding: 24px 16px;
}
.faq__ques {
  width: 100%;
  min-height: 43px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  background-color: #090000;
  padding: 8px;
}
.faq__ques-icon {
  font: 700 2rem "Jost", sans-serif;
  color: #f31215;
}
.faq__ques-text, .faq__ans-text {
  letter-spacing: 0.05em;
  line-height: 1.8em;
}
.faq__ques-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
.faq__ans-text {
  font-size: 1.3rem;
  padding-inline: 8px;
  margin-top: 4px;
}

.message {
  background: url("../img/message-bg.jpg") center/cover no-repeat;
  padding-block: 64px;
}
.message__heading {
  display: block;
  margin: 0 auto 40px;
}
.message__desc {
  width: 262px;
  display: block;
  margin: 0 auto;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.8em;
  color: #fff;
}

.company {
  padding-top: 40px;
}
.company__list {
  width: 342px;
  display: block;
  margin: 40px auto 0;
}
.company__item {
  padding-block: 16px;
}
.company__item:not(:last-child) {
  border-bottom: 1px solid #fff;
}
.company__label, .company__info {
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  line-height: 1.8em;
  color: #fff;
}
.company__label {
  font-weight: 700;
  border-left: 2px solid #f31215;
  padding-left: 8px;
  display: block;
  margin-bottom: 4px;
}
.company__info {
  font-size: 1.3rem;
}

.overflow {
  overflow: hidden;
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.text-yellow {
  color: #ffef41;
}

.text-red {
  color: #f31215;
}

.fs13 {
  font-size: 1.3rem;
}