.js-section,
.top {
  overflow-x: clip;
}

.hero {
  height: calc(100vh - 0rem);
  padding: 2rem;
  border-radius: var(--radius, 3rem);
  overflow: hidden;
  position: relative;
  animation: fade 0.8s linear;
  z-index: 11;
}
@media (max-width: 767px) {
  .hero {
    padding: 1rem;
    padding-bottom: 0;
    height: 100%;
  }
}
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.hero__menus {
  position: absolute;
  inset: 14.5rem auto auto 7rem;
}
@media (max-width: 767px) {
  .hero__menus {
    display: none;
  }
}
.hero__menu {
  display: block;
  width: fit-content;
  margin-bottom: 2rem;
  font-weight: bold;
  text-decoration: underline;
  transition: 0.5s;
}
.hero__menu:hover {
  opacity: 0.6;
}
@media (max-width: 767px) {
  .hero__navi {
    position: relative;
    margin-top: -14.5rem;
  }
}
@media print, screen and (min-width: 768px) {
  .hero__navi-left {
    position: absolute;
    z-index: 10;
    width: fit-content;
    inset: auto auto 5rem 5rem;
  }
}
@media (max-width: 767px) {
  .hero__navi-left {
    margin: 0 0.5rem 4.5rem;
  }
}
@media print, screen and (min-width: 768px) {
  .hero__navi-right {
    position: absolute;
    z-index: 10;
    width: fit-content;
    inset: auto 5rem 5rem auto;
  }
}
.hero__navi-catch {
  font-family: var(--font-en);
  color: var(--accent2);
  font-size: 2rem;
  letter-spacing: 0.15em;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 1.4rem;
  pointer-events: none;
}
@media (max-width: 767px) {
  .hero__navi-catch {
    font-size: 1.2rem;
    margin-top: 1rem;
    gap: 1rem;
  }
}
.hero__navi-catch::after {
  content: "";
  display: block;
  background-color: currentColor;
  height: 1px;
  width: 12rem;
}
@media (max-width: 767px) {
  .hero__navi-catch::after {
    width: 8rem;
  }
}
.hero__news-slider {
  width: 38.5rem;
  height: 9.5rem;
}
@media (max-width: 767px) {
  .hero__news-slider {
    width: 100%;
    height: 8.2rem;
    margin-right: 0;
  }
}
.hero__news-slider .splide__arrow {
  right: 0;
  outline: 0;
  scale: 0.9;
  left: auto !important;
  background-color: transparent;
}
.hero__news-slider .hero-topics {
  background-color: #fff;
  display: grid;
  grid-template-columns: 13rem 1fr;
  transition: 0.4s;
  border-radius: 1.5rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .hero__news-slider .hero-topics {
    grid-template-columns: 11.3rem 1fr;
  }
}
.hero__news-slider .hero-topics:hover {
  filter: brightness(0.9);
}
.hero__news-slider .hero-topics:hover .hero-topics__image img {
  scale: 1.06;
}
.hero__news-slider .hero-topics__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.hero__news-slider .hero-topics__content {
  padding: 1.5rem;
  transition: 0.4s;
}
@media (max-width: 767px) {
  .hero__news-slider .hero-topics__content {
    padding: 1rem 1.5rem;
  }
}
.hero__news-slider .hero-topics__date {
  margin-bottom: 0;
  line-height: 1;
  position: relative;
  top: 0.1rem;
}
.hero__news-slider .hero-topics__title {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 1.4rem;
  line-height: 2rem;
  max-width: 19rem;
}
@media (max-width: 767px) {
  .hero__news-slider .hero-topics__title {
    width: 17.5rem;
    line-height: 1.35;
    font-size: 1.2rem;
  }
}
.hero__news-slider .hero-topics__image {
  height: 9.5rem;
  border-radius: 0.5rem 0 0 0.5rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .hero__news-slider .hero-topics__image {
    height: 8rem;
  }
}
.hero__news-slider .hero-topics__image img {
  transition: 0.8s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .hero__news-slider .splide__arrows--ttb .splide__arrow--prev {
    top: 0.75em !important;
  }
  .hero__news-slider .splide__arrows--ttb .splide__arrow--next {
    bottom: 0.75em !important;
  }
}
.hero #js-hero-slider {
  height: 100%;
}
@media (max-width: 767px) {
  .hero #js-hero-slider {
    height: 44.5rem;
    overflow: hidden;
    border-radius: var(--radius);
  }
  .hero #js-hero-slider .splide__pagination--ttb {
    right: 1rem;
  }
}
.hero #js-hero-slider .splide__pagination__page {
  background-color: var(--accent2);
  transform: none;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 100%;
  margin: 1.4rem 3rem;
}
@media (max-width: 767px) {
  .hero #js-hero-slider .splide__pagination__page {
    width: 1rem;
    height: 1rem;
    border-radius: 100%;
    margin: 0.75rem 0;
  }
}
.hero #js-hero-slider .splide__pagination__page.is-active {
  background-color: var(--accent1);
}
@media (max-width: 767px) {
  .hero .splide__track {
    height: 100% !important;
  }
}
.hero__image {
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.hero__image img {
  border-radius: var(--radius, 3rem);
  width: 100%;
  height: calc(100vh - 4rem);
  object-fit: cover;
}
@media (max-width: 767px) {
  .hero__image img {
    height: 100%;
  }
}

.about {
  position: relative;
  padding-bottom: 15.6rem;
  max-width: 136.6rem;
  margin-left: auto;
  margin-right: auto;
  z-index: 5;
}
@media print, screen and (min-width: 768px) {
  .about .c-ball--1_1 {
    bottom: 18.7rem;
    left: 34.8rem;
  }
  .about .c-ball--1_2 {
    top: 20.3rem;
    z-index: 2;
    right: 47.4rem;
  }
  .about .c-ball--2_1 {
    top: 26.8rem;
    left: 2.25rem;
  }
  .about .c-ball--2_2 {
    right: 8rem;
    bottom: 12.5rem;
  }
  .about .c-ball--2_3 {
    top: -2.63rem;
    right: 37.7rem;
  }
}
@media (max-width: 767px) {
  .about .c-ball--1_1 {
    top: 43rem;
    left: -9rem;
  }
  .about .c-ball--1_2 {
    top: 19rem;
    right: 9rem;
  }
  .about .c-ball--2_1 {
    bottom: 0;
    right: 12rem;
  }
  .about .c-ball--2_2 {
    top: 42rem;
    right: 9rem;
  }
  .about .c-ball--2_3 {
    top: 16rem;
  }
}
@media print, screen and (min-width: 768px) {
  .about__row {
    display: grid;
    grid-template-columns: auto 47rem;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .about__images {
    height: 30rem;
  }
}
.about__image {
  border-radius: var(--radius);
  overflow: hidden;
  width: fit-content;
}
@media (max-width: 767px) {
  .about__image img {
    scale: 1.01;
  }
}
.about__image:nth-child(2) {
  position: absolute;
  inset: auto auto -10rem -13.6rem;
}
@media (max-width: 767px) {
  .about__image:nth-child(2) {
    inset: auto auto -6rem 0;
    z-index: 3;
  }
}
.about__images {
  position: relative;
}
.about__scrolls {
  display: flex;
  white-space: nowrap;
  overflow: hidden;
  gap: 2em;
  margin: 0 calc(50% - 50vw);
  position: relative;
  grid-column: span 2;
  z-index: -1;
}
@media (max-width: 767px) {
  .about__scrolls {
    z-index: 1;
    top: -16.5rem;
  }
}
.about__scroll {
  animation: holizon-animation 30s linear infinite;
  color: #fff;
  font-family: var(--font-en);
  font-size: 13.6rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .about__scroll {
    font-size: 6.4rem;
  }
}

.works {
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .works__row {
    display: grid;
    grid-template-columns: 45.6rem 1fr;
    gap: 6rem;
    align-items: end;
    max-height: 38.3rem;
  }
}
.works__slider {
  height: 34rem;
}
@media (max-width: 767px) {
  .works__slider {
    height: 18.5rem;
    margin-right: -2rem;
  }
}
.works__slider .splide {
  position: static;
}
.works__slider .splide__arrows {
  position: absolute;
  inset: -2.5rem 7rem auto auto;
  display: flex;
  gap: 2rem;
}
@media (max-width: 767px) {
  .works__slider .splide__arrows {
    display: none;
  }
}
.works__slider .works-slider-arrow {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2214.962%22%20height%3D%2212.151%22%20viewBox%3D%220%200%2014.962%2012.151%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_75705%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2075705%22%20transform%3D%22translate(0)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_298219%22%20data-name%3D%22%E3%83%91%E3%82%B9%20298219%22%20d%3D%22M6.084%2C0%2C0%2C7.663%2C1.558%2C8.9%2C6.082%2C3.2l4.509%2C5.7%2C1.56-1.235Z%22%20transform%3D%22translate(14.962%200)%20rotate(90)%22%20fill%3D%22%23212121%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_298220%22%20data-name%3D%22%E3%83%91%E3%82%B9%20298220%22%20d%3D%22M977.933-126.027h13.361v-1.99H977.933Z%22%20transform%3D%22translate(-977.933%20133.097)%22%20fill%3D%22%23212121%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.5rem;
  width: 5rem;
  height: 5rem;
  border-radius: 100%;
  background-color: #fff;
  cursor: pointer;
  transition: 0.4s;
}
.works__slider .works-slider-arrow:hover {
  scale: 1.15;
}
.works__slider .works-slider-arrow--prev {
  transform: scaleX(-1);
}
.works__slider .works-slider-arrow svg {
  display: none;
}
.works .gradient-bg1 {
  width: 100%;
  height: 27.8rem;
  border-radius: var(--radius, 3rem);
  background: linear-gradient(40deg, #eeeff1 0%, #a4bff6 100%);
  position: absolute;
  inset: auto auto 0 0;
}
@media (max-width: 767px) {
  .works .gradient-bg1 {
    height: 16rem;
  }
}
.works .gradient-bg2 {
  position: absolute;
  inset: auto 0 0 auto;
  width: 70rem;
  height: 50.5rem;
  border-radius: var(--radius, 3rem);
  background: linear-gradient(40deg, #eeeff1 0%, #a4bff6 100%);
}
@media (max-width: 767px) {
  .works .gradient-bg2 {
    width: 18.5rem;
    height: 32rem;
  }
}

.works-card {
  position: relative;
  padding-top: 4.5rem;
  padding-left: 2.5rem;
  padding-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .works-card {
    padding-top: 2.5rem;
    padding-left: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
.works-card__no {
  position: absolute;
  inset: 0em 1rem auto auto;
  font-family: var(--font-en);
  font-size: 6.4rem;
  letter-spacing: 0.15em;
  color: var(--accent1);
  font-weight: bold;
}
@media (max-width: 767px) {
  .works-card__no {
    font-size: 4rem;
    right: 0.5rem;
  }
}
.works-card__title {
  font-weight: bold;
  font-size: 2.8rem;
  padding: 0.5rem 2.5rem;
  background-color: #fff;
  border-radius: 1rem;
  width: fit-content;
  position: absolute;
  inset: auto auto 0 0;
}
@media (max-width: 767px) {
  .works-card__title {
    font-size: 1.6rem;
    padding: 0.5rem;
  }
}
.works-card__image img {
  border-radius: var(--radius, 3rem);
  border: solid 2px #fff;
}

.staff-voice__head {
  display: flex;
  justify-content: space-between;
}
.staff-voice__slider {
  height: 50rem;
  margin: 0 calc(50% - 50vw);
}
@media (max-width: 767px) {
  .staff-voice__slider {
    height: 33rem;
    height: auto;
  }
}
.staff-voice__slider .c-interview-card__title {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .staff-voice__slider .c-interview-card__title {
    font-size: 1.6rem;
  }
}
.staff-voice__slider .splide__slide:nth-child(even) {
  padding-top: 6rem;
}
@media (max-width: 767px) {
  .staff-voice__slider .splide__slide:nth-child(even) {
    padding-top: 3rem;
  }
}

@media print, screen and (min-width: 768px) {
  .system__row {
    display: grid;
    grid-template-columns: 1fr 59rem;
  }
}
.system__body {
  border-bottom: 1px solid var(--color-gray);
}
@media (max-width: 767px) {
  .system__body {
    padding-bottom: 4rem;
  }
}
.system__links {
  display: grid;
  grid-auto-rows: 11rem;
}
@media print, screen and (min-width: 768px) {
  .system__links {
    border-left: 1px solid var(--color-gray);
  }
}
@media (max-width: 767px) {
  .system__links {
    grid-auto-rows: 7.8rem;
  }
}
.system__link {
  border-bottom: 1px solid var(--color-gray);
  display: flex;
  align-items: center;
  padding: 0 3.5rem;
  font-size: 2.8rem;
  color: var(--accent1);
  font-weight: bold;
  justify-content: space-between;
  transition: 0.5s;
}
@media (max-width: 767px) {
  .system__link {
    padding: 0 1rem;
    font-size: 2rem;
  }
}
.system__link svg {
  color: #fff;
}
.system__link:hover {
  opacity: 0.6;
}
.system__link:hover .system__link-icon {
  transform: translate(10px, 0);
}
.system__link-icon {
  transition: 0.5s;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 100%;
  background: linear-gradient(to right, #a4bff6 0%, #0e50d4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.system__link-icon svg {
  width: 1rem;
}

.system_requirements {
  overflow: hidden;
}
.system_requirements .c-ball--1_1 {
  top: 3.5rem;
  left: 49.8rem;
  width: 25.5rem;
  height: 25.5rem;
  border-radius: 100%;
}
@media print, screen and (min-width: 768px) {
  .system_requirements .c-ball--1_2 {
    top: 20.3rem;
    left: -3rem;
    width: 23rem;
  }
}
@media (max-width: 767px) {
  .system_requirements .c-ball--1_2 {
    top: 15.3rem;
    right: 7rem;
    width: 18.3rem;
  }
}
.system_requirements .c-ball--1_3 {
  top: 4rem;
  z-index: 2;
  right: 19.4rem;
  width: 8.7rem;
  height: 8.7rem;
  border-radius: 100%;
}
@media (max-width: 767px) {
  .system_requirements .c-ball--1_3 {
    top: 42rem;
    right: 9rem;
    width: 6.2rem;
  }
}
.system_requirements .c-ball--2_1 {
  top: 63.8rem;
  left: 55.25rem;
  width: 10rem;
  height: 10rem;
  border-radius: 100%;
}
@media (max-width: 767px) {
  .system_requirements .c-ball--2_1 {
    top: 41rem;
    left: -14rem;
    width: 12.9rem;
  }
}
.system_requirements .c-ball--2_2 {
  width: 4.7rem;
  right: 18rem;
  bottom: 34.5rem;
}
.system_requirements .c-ball--2_3 {
  top: 6.37rem;
  right: 37.7rem;
}
