@charset "UTF-8";
@font-face {
  font-family: "PP Neue Montreal";
  src: url("../font/PPNeueMontreal-Bold.woff2") format("woff2"), url("../font/PPNeueMontreal-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PP Neue Montreal";
  src: url("../font/PPNeueMontreal-Medium.woff2") format("woff2"), url("../font/PPNeueMontreal-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
img, object, video {
  max-width: 100%;
  height: auto;
}

html {
  width: 100vw;
  overflow-x: hidden;
}
html.noscroll {
  overflow: hidden;
  height: 100%;
}

body {
  font-family: "tot-shizukardgo-stdn", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  line-height: 2em;
  background: #0070B8;
  color: #fff;
  padding: 0;
  margin: 0;
  position: relative;
  overflow-x: hidden;
  width: 100%;
}
body.noscroll {
  overflow: hidden;
  height: 100%;
}

.loading {
  width: 100vw;
  height: 100dvh;
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.loading__logo {
  font-size: 0;
  line-height: 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.loading__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1;
}

.header {
  width: 100%;
  box-sizing: border-box;
  padding: 30px 90px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  z-index: 11;
  left: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .header {
    padding: 30px 30px 0;
  }
}
.header__logo {
  font-size: 0;
  line-height: 0;
  margin: 0;
}
.header__logo img {
  filter: brightness(1000%) invert(0);
}
@media screen and (max-width: 768px) {
  .header__logo img {
    width: 100%;
    max-width: 153px;
  }
}
.header__nav {
  transition: transform 0.6s, opacity 0.6s;
}
.header__nav.active {
  transform: translateY(20px);
  opacity: 0;
}
.header__nav > div {
  cursor: pointer;
  width: 30px;
  height: 30px;
  font-size: 0;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}
.header__nav > div:before {
  content: "";
  width: 30px;
  height: 2px;
  border-radius: 3px;
  background: #fff;
  position: absolute;
  left: calc(50% - 15px);
  top: calc(50% - 3px);
}
.header__nav > div:after {
  content: "";
  width: 30px;
  height: 2px;
  border-radius: 3px;
  background: #fff;
  position: absolute;
  left: calc(50% - 15px);
  top: calc(50% + 3px);
}

.nav {
  position: fixed;
  right: 90px;
  top: 30px;
  width: 100%;
  max-width: 480px;
  box-sizing: border-box;
  padding: 0 15px 0 30px;
  z-index: 99999;
  pointer-events: none;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .nav {
    top: 0;
    right: 0;
    max-width: 100%;
    padding: 0;
  }
}
.nav__inner {
  max-height: calc(100vh - 100px);
  width: 100%;
  overflow-y: hidden;
  scrollbar-gutter: stable;
  transition: opacity 0.3s;
  transition-delay: 0;
  padding: 30px 0 12px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .nav__inner {
    height: 100%;
    max-height: 100dvh;
    min-height: 100dvh;
    padding: 80px 30px 30px;
  }
}
.nav.active {
  opacity: 1;
  pointer-events: inherit;
}
.nav.active:after {
  transition-delay: 0s;
  transform: scaleY(1);
  opacity: 1;
}
.nav.active .nav__inner {
  opacity: 1;
  overflow-y: auto;
}
.nav.active .nav__main li {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.05s;
}
.nav.active .nav__main li:nth-of-type(2) {
  transition-delay: 0.1s;
}
.nav.active .nav__main li:nth-of-type(3) {
  transition-delay: 0.15s;
}
.nav.active .nav__main li:nth-of-type(4) {
  transition-delay: 0.2s;
}
.nav.active .nav__main li:nth-of-type(5) {
  transition-delay: 0.25s;
}
.nav.active .nav__sub {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}
.nav.active .nav__sub:nth-of-type(2) {
  transition-delay: 0.35s;
}
.nav.active .nav__sub:nth-of-type(3) {
  transition-delay: 0.4s;
}
.nav:after {
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition-delay: 0.3s;
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  border-radius: 5px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .nav:after {
    border-radius: 0;
  }
}
.nav__close {
  cursor: pointer;
  position: absolute;
  z-index: 2;
  right: 20px;
  top: 30px;
  display: block;
  font-size: 0;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  width: 30px;
  height: 30px;
  z-index: 10;
  opacity: 0;
  transform: translateY(-20px);
  transition: transform 0.3s, opacity 0.3s;
}
.nav__close:before {
  content: "";
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #333;
  position: absolute;
  left: calc(50% - 10px);
  top: calc(50% - 1px);
  transform: rotate(45deg);
}
.nav__close:after {
  content: "";
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #333;
  position: absolute;
  left: calc(50% - 10px);
  top: calc(50% - 1px);
  transform: rotate(-45deg);
}
.nav__close.active {
  opacity: 1;
  transition-delay: 0.05s;
  transform: translateY(0);
}
.nav__main {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-bottom: 42px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .nav__main {
    margin-bottom: 72px;
  }
}
.nav__main li {
  opacity: 0;
  transform: translateY(-20px);
  transition: transform 0.3s, opacity 0.3s;
}
.nav__main li a {
  color: #333;
  font-family: "PP Neue Montreal";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5em; /* 150% */
}
.nav__main li a:link, .nav__main li a:visited, .nav__main li a:hover, .nav__main li a:active {
  text-decoration: none;
  color: #333;
}
.nav__sub {
  padding: 18px 0;
  margin: 0;
  box-sizing: border-box;
  min-height: 58px;
  position: relative;
  display: flex;
  justify-content: flex-end;
  z-index: 3;
  opacity: 0;
  transform: translateY(-20px);
  transition: transform 0.3s, opacity 0.3s;
}
.nav__sub:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.nav__sub dt {
  padding: 18px 0;
  margin: 0;
  color: #333;
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  line-height: 2em; /* 200% */
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  cursor: pointer;
  z-index: -1;
}
.nav__sub dt:before {
  content: "";
  width: 10px;
  height: 2px;
  border-radius: 2px;
  background: #333;
  position: absolute;
  right: 0px;
  top: calc(50% - 1px);
  transform: rotate(90deg);
  transition: transform 0.3s, opacity 0.3s;
}
.nav__sub dt:after {
  content: "";
  width: 10px;
  height: 2px;
  border-radius: 2px;
  background: #333;
  position: absolute;
  right: 0;
  top: calc(50% - 1px);
  transform: rotate(0);
}
.nav__sub dt.active:before {
  transform: rotate(0deg);
  opacity: 0;
}
.nav__sub dt a {
  color: #333;
}
.nav__sub dt a:link, .nav__sub dt a:visited, .nav__sub dt a:hover, .nav__sub dt a:active {
  text-decoration: none;
  color: #333;
}
.nav__sub dd {
  padding: 0;
  margin: 0 40px 0 0;
  width: calc(60% - 40px);
  display: none;
}
@media screen and (max-width: 768px) {
  .nav__sub dd {
    width: calc(65% - 30px);
    margin-right: 30px;
  }
}
.nav__sub dd ul {
  list-style: none;
  padding: 0;
  margin: 0;
  transform: translateY(-3px);
}
.nav__sub dd ul li a {
  color: #333;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8em; /* 200% */
}
@media screen and (max-width: 768px) {
  .nav__sub dd ul li a {
    white-space: nowrap;
  }
}
.nav__sub dd ul li a:link, .nav__sub dd ul li a:visited, .nav__sub dd ul li a:hover, .nav__sub dd ul li a:active {
  text-decoration: none;
  color: #333;
}

.footer {
  background: #000;
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
}

.mv {
  width: 100%;
  height: 100svh;
  box-sizing: border-box;
  padding: 40px 90px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .mv {
    padding: 30px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 30px;
  }
}
.mv__video {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  left: 0;
  top: 0;
}
.mv__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  will-change: transform;
}
.mv__video:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.4;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(102, 102, 102, 0.5) 50%, #000 100%);
}
.mv__title {
  font-size: 0;
  line-height: 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .mv__title {
    width: 100%;
  }
  .mv__title img, .mv__title svg {
    width: 100%;
    max-width: 250px;
    height: auto;
  }
}
.mv__scroll {
  position: relative;
  z-index: 2;
  font-family: "PP Neue Montreal";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 1em;
  letter-spacing: 2.4px;
}
@media screen and (max-width: 768px) {
  .mv__scroll {
    font-size: 10px;
    line-height: 1em;
    letter-spacing: 2px;
  }
}

.main {
  width: 100%;
  position: relative;
  z-index: 3;
  background: #0070B8;
}

.inner {
  box-sizing: border-box;
  width: 100%;
  max-width: 1100px;
}

.main {
  display: block;
  position: relative;
  z-index: 4;
}

.trusted {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 2500px;
  background: linear-gradient(180deg, #0070B8 0%, #0D57A3 87.17%);
}
.trusted__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 20px 201px 270px 90px;
  position: relative;
  z-index: 4;
}
@media screen and (max-width: 980px) {
  .trusted__inner {
    padding: 20px 0 270px 60px;
    justify-content: flex-start;
    gap: 60px;
  }
}
@media screen and (max-width: 767px) {
  .trusted__inner {
    padding: 20px 60px 270px;
    justify-content: center;
  }
}
@media screen and (max-width: 460px) {
  .trusted__inner {
    padding: 20px 0 270px 60px;
    justify-content: left;
  }
}
.trusted__midashi {
  font-size: 0;
  line-height: 0;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .trusted__midashi {
    display: none;
  }
}
.trusted__desc {
  position: relative;
  z-index: 3;
}
.trusted__desc p {
  margin: 0 0 3em;
  font-size: 13px;
  line-height: 3em;
}
.trusted__desc div:last-child p {
  line-height: 2em;
  margin-bottom: 0;
}

.pazzle {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 3;
  pointer-events: none;
}
@media screen and (max-width: 1160px) {
  .pazzle {
    left: 30px;
    max-width: calc(100% - 60px);
  }
}
.pazzle__item {
  position: absolute;
  font-size: 0;
  line-height: 0;
  z-index: 2;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .pazzle__item {
    width: 200px;
  }
}
.pazzle__item--01 {
  right: 90px;
  top: 30px;
}
@media screen and (max-width: 1160px) {
  .pazzle__item--01 {
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .pazzle__item--01 {
    right: 0;
  }
}
.pazzle__item--02 {
  left: 90px;
  bottom: 30px;
}
@media screen and (max-width: 1160px) {
  .pazzle__item--02 {
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .pazzle__item--02 {
    left: 0;
  }
}

.webgl {
  width: 100%;
  font-size: 0;
  line-height: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 2;
  top: 0;
  overflow: hidden;
}
.webgl canvas {
  transform: translateY(-100px);
}

.sec-title {
  color: #FFF;
  font-family: "PP Neue Montreal";
  font-size: 70px;
  font-style: normal;
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1.07em;
}
@media screen and (max-width: 768px) {
  .sec-title {
    font-size: 50px;
  }
}
.sec-title--blue {
  color: #0070B8;
}
.sec-title > span {
  display: inline-block;
  overflow: hidden;
}
.sec-title > span.up {
  transform: translateY(-4px);
}
@media screen and (max-width: 768px) {
  .sec-title > span.up-sp {
    transform: translateY(-4px);
  }
}
.sec-title > span > span {
  display: inline-block;
  transform-origin: center top;
}

.sec-subtitle {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.3em;
  margin: 0;
  padding: 0;
}
.sec-subtitle span {
  display: inline-block;
  overflow: hidden;
}

.markets {
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  padding: 120px 30px 130px;
  position: relative;
  z-index: 3;
  background: #0070B8;
}
@media screen and (max-width: 768px) {
  .markets {
    padding: 60px 30px;
  }
}
.markets__title {
  text-align: center;
  margin: 0 0 18px;
}
.markets__subtitle {
  text-align: center;
  margin: 0 0 18px;
}
.markets__desc {
  color: #FFF;
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 2em;
  margin-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .markets__desc {
    margin-bottom: 90px;
  }
}
.markets__desc p {
  margin: 0;
}
.markets__desc p:not(:last-child) {
  margin-bottom: 1em;
}
.markets__image {
  margin: 0 0 90px;
  list-style: none;
  width: 100%;
  max-width: 1100px;
  height: 390px;
  box-sizing: border-box;
  padding: 0 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 94px;
  font-size: 0;
  line-height: 0;
  background: url(../img/markets-bg.webp) no-repeat;
  background-size: 100% auto;
}
@media screen and (max-width: 1160px) {
  .markets__image {
    height: auto;
    padding: 0;
    gap: 0;
  }
}
@media screen and (max-width: 768px) {
  .markets__image {
    flex-direction: column;
    height: auto;
    gap: 10px;
    padding: 0;
    margin-bottom: 76px;
    background: none;
    position: relative;
  }
  .markets__image img {
    width: 100%;
    max-width: 200px;
  }
  .markets__image:after {
    content: "";
    width: 680px;
    height: 260px;
    position: absolute;
    display: block;
    position: absolute;
    left: calc(50% - 330px);
    top: calc(50% - 124px);
    background: url(../img/markets-bg.webp) no-repeat;
    background-size: 100% auto;
    transform: rotate(-90deg);
    z-index: -1;
  }
}
@media screen and (max-width: 1160px) {
  .markets__image > li {
    aspect-ratio: 1/1.07;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 33.3%;
  }
  .markets__image > li:nth-of-type(1) {
    transform: translateX(8px);
  }
  .markets__image > li:nth-of-type(3) {
    transform: translateX(-8px);
  }
  .markets__image > li img {
    max-width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .markets__image > li {
    aspect-ratio: inherit;
    width: auto;
  }
  .markets__image > li:nth-of-type(1) {
    transform: translateX(0);
  }
  .markets__image > li:nth-of-type(2) {
    transform: translateY(6px);
  }
  .markets__image > li:nth-of-type(3) {
    transform: translateX(0);
    transform: translateY(16px);
  }
  .markets__image > li img {
    max-width: 200px;
  }
}
.markets__btn {
  display: flex;
  justify-content: center;
}
.markets__btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 313px;
  min-height: 73px;
  padding: 0 24px;
  box-sizing: border-box;
  border: 1px solid #fff;
  border-radius: 100px;
  color: #FFF;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 1em;
}
.markets__btn a:link, .markets__btn a:visited, .markets__btn a:hover, .markets__btn a:active {
  text-decoration: none;
  color: #fff;
}

.tech {
  padding: 40px 30px 60px;
  position: relative;
  z-index: 3;
  background: #0070B8;
  min-height: 100vh;
}
@media screen and (max-width: 768px) {
  .tech {
    padding: 45px 0;
  }
}
.tech__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 0 auto 60px;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .tech__inner {
    flex-direction: column;
    gap: 0;
    padding: 0 30px;
  }
}
@media screen and (max-width: 768px) {
  .tech__header {
    width: 100%;
  }
}
.tech__title {
  margin: 0 0 18px;
}
.tech__subtitle {
  padding-bottom: 18px;
}
.tech__desc {
  max-width: 440px;
}
@media screen and (max-width: 768px) {
  .tech__desc {
    max-width: 100%;
  }
}
.tech__desc p {
  margin: 0;
}
.tech__desc p:not(:last-child) {
  margin-bottom: 1em;
}
.tech__list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: max-content;
  gap: 12px;
  box-sizing: border-box;
  padding-left: 100vw;
  padding-right: calc((100vw - 1100px) / 2);
}
@media screen and (max-width: 1100px) {
  .tech__list {
    padding-right: 60px;
  }
}
@media screen and (max-width: 768px) {
  .tech__list {
    padding: 0;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
}
.tech__list--ipad {
  padding: 0;
  gap: 16;
  width: 100%;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .tech__list--ipad {
    gap: 0;
    flex-direction: column;
  }
}
.tech__list--ipad .tech__core {
  width: calc(50% - 8px) !important;
}
@media screen and (max-width: 768px) {
  .tech__list--ipad .tech__core {
    width: 100% !important;
  }
}
.tech__core {
  width: 544px;
  height: auto;
  aspect-ratio: 3/2;
  position: relative;
  display: flex;
  align-items: flex-end;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .tech__core {
    width: 100%;
  }
}
.tech__core:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  background: linear-gradient(180deg, #FFF 0%, rgba(102, 102, 102, 0.5) 50%, #000 100%);
  opacity: 0.4;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .tech__core:after {
    opacity: 0.4;
  }
}
@media screen and (max-width: 768px) {
  .tech__core:after {
    opacity: 0.4;
  }
}
@media (hover: hover) {
  .tech__core:hover:after {
    opacity: 0.4;
  }
  .tech__core:hover .tech__core-text {
    opacity: 1;
  }
}
.tech__core-image {
  font-size: 0;
  line-height: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  overflow: hidden;
}
.tech__core-image > div {
  transform: scale(1.2);
}
.tech__core-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
}
.tech__core-text {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 18px;
  padding: 18px;
  width: 100%;
  box-sizing: border-box;
}
@media (hover: hover) {
  .tech__core-text {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .tech__core-text {
    opacity: 1;
    gap: 8px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
  }
}
.tech__core-title {
  position: relative;
  z-index: 3;
  width: 100%;
  color: #FFF;
  font-family: "PP Neue Montreal";
  font-size: 60px;
  font-style: normal;
  font-weight: 500;
  line-height: 1em;
}
@media screen and (max-width: 768px) {
  .tech__core-title {
    font-size: 30px;
    line-height: 1em;
  }
}
.tech__core-subtitle {
  position: relative;
  z-index: 3;
  line-height: 1em;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .tech__core-subtitle:after {
    content: "：";
  }
}
.tech__core-desc {
  position: relative;
  z-index: 3;
  line-height: 1em;
}

.biz {
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
  background: #0070B8;
}
.biz__title {
  margin-bottom: 18px;
  text-align: center;
}
.biz__subtitle {
  margin-bottom: 90px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .biz__subtitle {
    margin-bottom: 30px;
  }
}
.biz__inner {
  padding: 60px 0 90px;
  z-index: 9999;
  box-sizing: border-box;
}
.biz__list-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
}
.biz__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
}
@media screen and (max-width: 1160px) {
  .biz__list {
    gap: 16px;
  }
}
@media screen and (max-width: 768px) {
  .biz__list {
    transform: translateY(0);
    gap: 0;
    width: 100%;
    padding: 0 30px;
    box-sizing: border-box;
    justify-content: space-between;
  }
}
.biz__circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px dashed #FFF;
  box-sizing: border-box;
}
@media screen and (max-width: 1160px) {
  .biz__circle {
    max-width: 30%;
  }
}
@media screen and (max-width: 768px) {
  .biz__circle {
    max-width: 47%;
  }
}
@media screen and (max-width: 768px) {
  .biz__circle--01 {
    margin: 0 26.5% -10px;
  }
}
.biz__circle h4 {
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}
.biz__circle h4 span {
  display: block;
  width: 100%;
}
.biz__circle h4 span:first-child {
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5em;
}
@media screen and (max-width: 667px) {
  .biz__circle h4 span:first-child {
    font-size: 12px;
    line-height: 1.5em;
  }
}
.biz__circle h4 span:last-child {
  color: #FFF;
  text-align: center;
  font-family: "PP Neue Montreal";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5em; /* 150% */
}
@media screen and (max-width: 667px) {
  .biz__circle h4 span:last-child {
    font-size: 12px;
    line-height: 1.5em;
  }
}
.biz-sub {
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
  position: relative;
  margin-top: 400px;
}
@media screen and (max-width: 1024px) {
  .biz-sub {
    margin-top: 0;
  }
}
.biz-column {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin: 0 30px;
  z-index: 4;
}
@media screen and (max-width: 1024px) {
  .biz-column {
    flex-direction: column;
    margin: 0;
  }
}
.biz-column__header {
  width: 39%;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
  padding: 60px 0 90px;
}
@media screen and (max-width: 1024px) {
  .biz-column__header {
    display: none;
  }
}
.biz-column__contents {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  gap: 60px;
  padding: 60px 0 120px 30px;
}
@media screen and (max-width: 1024px) {
  .biz-column__contents {
    gap: 40px;
    padding: 60px 0 120px;
  }
}
.biz-column__nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.biz-column__nav > li {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  align-items: center;
}
.biz-column__nav > li span:first-child {
  border-radius: 12px;
  border: 1px dotted #FFF;
  color: #FFF;
  text-align: center;
  font-family: "PP Neue Montreal";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 24px;
}
.biz-column__nav > li span:last-child {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 1em; /* 100% */
  letter-spacing: 1.6px;
}
.biz-column-detail {
  width: 100%;
  max-width: 520px;
}
@media screen and (max-width: 1024px) {
  .biz-column-detail {
    max-width: 100%;
  }
}
.biz-column-detail__title {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  align-items: center;
  margin: 0 0 18px;
}
@media screen and (max-width: 1024px) {
  .biz-column-detail__title {
    padding: 0 30px;
  }
}
.biz-column-detail__title span:first-child {
  border-radius: 12px;
  border: 1px dotted #FFF;
  color: #FFF;
  text-align: center;
  font-family: "PP Neue Montreal";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 24px;
}
.biz-column-detail__title span:last-child {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 1em; /* 100% */
  letter-spacing: 1.6px;
}
.biz-column-detail__desc {
  font-size: 13px;
  font-style: normal;
  line-height: 1.6em;
  margin: 0;
}
.biz-column-detail__desc:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .biz-column-detail__desc {
    padding: 0 30px;
  }
}
.biz-column-detail__desc p {
  margin: 0;
}
.biz-column-detail__desc p:not(:last-child) {
  margin-bottom: 1em;
}
.biz-column-detail__image {
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 1024px) {
  .biz-column-detail__image {
    padding: 0 30px;
  }
}
.biz-column-detail__image img {
  width: 100%;
  height: auto;
}
.biz-column-detail__image div {
  flex: 1;
  font-size: 0;
  line-height: 0;
  position: relative;
}
.biz-column-detail__image div p {
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 0;
  font-size: 10px;
  line-height: 1em;
  box-sizing: border-box;
/*  mix-blend-mode: difference;*/
/*  padding: 6px;*/
  padding: 30px 6px 6px;
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(102, 102, 102, 0.4) 100% 100%);
}
@media screen and (max-width: 1024px) {
  .biz-column-detail__image .slick-slide {
    margin: 0 3px;
  }
}
.biz-column-detail__image .slick-list {
  overflow: inherit;
}
.biz-column-detail__image .slick-track {
  overflow: inherit;
}
.biz-column-detail__image .slick-dots {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 6px;
}
.biz-column-detail__image .slick-dots > li button {
  width: 8px;
  height: 8px;
  display: block;
  font-size: 0;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  padding: 0;
  margin: 0;
  background: #213287;
  border: none;
  border-radius: 50%;
  transition: background 0.3s;
}
.biz-column-detail__image .slick-dots > li.slick-active button {
  background: #fff;
}

.growth {
  display: flex;
  justify-content: center;
  background: #000;
  flex-wrap: wrap;
  position: relative;
  z-index: 4;
  padding: 0 30px 1800px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .growth {
    padding: 0 30px 800px;
  }
}
@media screen and (max-width: 768px) {
  .growth {
    padding: 0 30px 160px;
  }
}
.growth__top {
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  .growth__top {
    padding-top: 30px;
  }
}
.growth__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.growth__bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .growth__bottom {
    flex-direction: column;
  }
}
.growth__lead {
  font-family: "PP Neue Montreal";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5em;
  width: 100%;
}
.growth__header {
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: translateY(500px);
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .growth__header {
    transform: translateY(0);
  }
}
@media screen and (max-width: 768px) {
  .growth__header {
    transform: translateY(0);
    margin-bottom: 90px;
  }
}
.growth__desc {
  width: 100%;
  max-width: 250px;
  padding-top: 0;
  transform: translateY(800px);
}
@media screen and (max-width: 1024px) {
  .growth__desc {
    transform: translateY(300px);
  }
}
@media screen and (max-width: 768px) {
  .growth__desc {
    max-width: 100%;
    padding-top: 0;
    transform: translateY(0);
    margin-left: auto;
    max-width: 66.6%;
  }
}
.growth__video {
  font-size: 0;
  line-height: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.8;
  position: relative;
  z-index: -1;
  min-height: 100vh;
}
@media screen and (max-width: 1024px) {
  .growth__video {
    opacity: 0.6;
    min-height: 1366px;
  }
}
@media screen and (max-width: 768px) {
  .growth__video {
    min-height: 530px;
  }
}
.growth__video-inner {
  transform-origin: center top;
}
@media screen and (max-width: 768px) {
  .growth__video-inner {
    transform-origin: center top;
  }
}
.growth__video video {
  transform-origin: center 150px;
  transform: translateZ(0);
  will-change: transform;
}
@media screen and (max-width: 1024px) {
  .growth__video video {
    transform-origin: center center;
  }
}
@media screen and (max-width: 768px) {
  .growth__video video {
    transform: translateY(10vh) scale(2);
  }
}

.gallery {
  position: relative;
  z-index: 5;
  padding: 0 30px 60px;
  display: flex;
  gap: 10px;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  width: 100%;
  height: 900px;
  box-sizing: border-box;
  background: #000;
}
@media screen and (max-width: 1160px) {
  .gallery {
    height: 510px;
    padding: 0;
    gap: 6px;
  }
}
.gallery__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gallery__item--center {
  position: relative;
  bottom: 100%;
}
@media screen and (max-width: 768px) {
  .gallery__item--center {
    bottom: 50%;
  }
}
@media screen and (max-width: 767px) {
  .gallery__item--right {
    display: none;
  }
}

.movie {
  background: #000;
  display: flex;
  justify-content: center;
  padding: 180px 30px 90px;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .movie {
    padding: 60px 30px;
  }
}
.movie__title {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .movie__title {
    margin-bottom: 30px;
  }
}
.movie-list {
  display: flex;
  justify-content: center;
  gap: 100px;
}
@media screen and (max-width: 1160px) {
  .movie-list {
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .movie-list {
    flex-direction: column;
    align-items: center;
  }
}
.movie-list__item {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
  cursor: pointer;
  max-width: 60%;
}
@media screen and (max-width: 768px) {
  .movie-list__item {
    max-width: 100%;
  }
}
.movie-list__image {
  font-size: 0;
  line-height: 0;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.movie-list__image:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.4;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  z-index: 2;
}
.movie-list__image > img {
  transition: transform 0.3s;
  position: relative;
  z-index: 1;
}
.movie-list__image > div {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  position: absolute;
  left: calc(50% - 42px);
  top: calc(50% - 42px);
  transition: background 0.3s;
  z-index: 3;
}
@media (hover: hover) {
  .movie-list__image:hover > img {
    transform: scale(1.1);
  }
  .movie-list__image:hover > div {
    background: rgba(255, 255, 255, 0.5);
  }
}
.movie-list__title {
  margin-bottom: 18px;
  text-align: center;
  font-family: "PP Neue Montreal";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1em;
}
@media screen and (max-width: 768px) {
  .movie-list__title {
    margin-bottom: 12px;
  }
}
.movie-list__desc {
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  line-height: 2em;
}

.footer {
  padding: 90px 30px 60px;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 30px 0 60px;
  }
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    gap: 60px;
  }
}
.footer__main {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 100%;
  max-width: 344px;
}
@media screen and (max-width: 768px) {
  .footer__main {
    width: 100%;
    max-width: 315px;
  }
}
@media screen and (max-width: 768px) {
  .footer__main {
    order: 2;
    gap: 40px;
    max-width: 100%;
    text-align: center;
  }
}
.footer__logo {
  font-size: 0;
  line-height: 0;
}
.footer__logo img {
  width: 100%;
  max-width: 344px;
}
@media screen and (max-width: 768px) {
  .footer__logo img {
    width: 100%;
    max-width: 315px;
  }
}
.footer__copyright {
  font-family: "PP Neue Montreal";
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 1em;
}
.footer__nav {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  max-width: 600px;
}
@media screen and (max-width: 768px) {
  .footer__nav {
    order: 1;
    flex-direction: column;
    max-width: 100%;
  }
}
.footer__nav a:link, .footer__nav a:visited, .footer__nav a:hover, .footer__nav a:active {
  text-decoration: none;
  color: #fff;
}
.footer__nav > dl {
  padding: 0;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer__nav > dl {
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}
.footer__nav > dl dt {
  padding: 0;
  margin: 0;
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  line-height: 2em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer__nav > dl dt {
    padding: 30px;
    line-height: 1em;
    cursor: pointer;
  }
  .footer__nav > dl dt:before {
    content: "";
    width: 10px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    display: block;
    position: absolute;
    right: 30px;
    top: calc(50% - 1px);
    transform: rotate(90deg);
    transition: transform 0.3s, opacity 0.3s;
  }
  .footer__nav > dl dt:after {
    content: "";
    width: 10px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    display: block;
    position: absolute;
    right: 30px;
    top: calc(50% - 1px);
  }
  .footer__nav > dl dt.active:before {
    transform: rotate(0deg);
    opacity: 0;
  }
}
.footer__nav > dl dd {
  padding: 0;
  margin: 0;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 1em;
}
@media screen and (max-width: 768px) {
  .footer__nav > dl dd {
    padding: 0 30px 30px;
    display: none;
  }
}
.footer__nav > dl dd ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 9999;
  overflow-y: auto;
  padding: 60px 90px 120px;
  box-sizing: border-box;
  display: none;
}
@media screen and (max-width: 1160px) {
  .modal {
    padding: 60px 30px 120px;
  }
}
@media screen and (max-width: 768px) {
  .modal {
    padding: 15px 0 0 15px;
  }
}
.modal__close {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 30px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .modal__close {
    margin-bottom: 15px;
    padding: 0 30px;
  }
}
.modal__close div {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.modal__close span {
  box-sizing: border-box;
  display: block;
  color: #FFF;
  font-family: "PP Neue Montreal";
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 1em; /* 100% */
  padding: 8px;
  border: 1px solid #fff;
  border-radius: 30px;
}
.modal__bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #080C21;
  opacity: 0.8;
  z-index: 1;
  cursor: pointer;
}
.modal__inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  background: #fff;
  color: #000;
}
.modal__title {
  text-align: center;
  font-size: 0;
  line-height: 0;
  margin: 0;
  padding: 90px 30px 0;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .modal__title {
    padding: 30px 30px 0;
    text-align: left;
  }
  .modal__title + .modal-block {
    padding-top: 30px;
  }
}
.modal-block {
  padding: 90px 60px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .modal-block {
    padding: 60px 30px;
  }
}
.modal-block:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.modal-block__title {
  color: #0070B8;
  text-align: center;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 1em; /* 100% */
  margin: 0 0 42px;
}
@media screen and (max-width: 768px) {
  .modal-block__title {
    text-align: left;
    font-size: 20px;
    line-height: 1.25em;
    margin-bottom: 42px;
  }
}
.modal-block__desc {
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 1em; /* 100% */
  margin: 0 0 60px;
}
@media screen and (max-width: 768px) {
  .modal-block__desc {
    line-height: 1.5em;
    text-align: left;
    margin-bottom: 30px;
  }
}
.modal-block-list {
  padding: 0 8px;
  margin: 0;
  display: flex;
  justify-content: space-between;
  list-style: none;
  background: url(../img/modal-block-bg.png) no-repeat;
  background-size: 100% auto;
  background-position: 0 48px;
}
@media screen and (max-width: 768px) {
  .modal-block-list {
    flex-direction: column;
    padding: 0;
    gap: 10px;
    background: none;
    position: relative;
  }
  .modal-block-list:after {
    content: "";
    width: 150px;
    height: 432px;
    background: url(../img/modal-block-bg-sp.png) no-repeat;
    background-size: 100% auto;
    position: absolute;
    left: 0;
    top: -15px;
  }
}
.modal-block-list li {
  flex: 1;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 768px) {
  .modal-block-list li {
    padding-left: 168px;
    min-height: 120px;
    justify-content: center;
  }
}
.modal-block-list__title {
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 1em; /* 100% */
  margin: 0 0 34px;
  min-height: 20px;
}
@media screen and (max-width: 768px) {
  .modal-block-list__title {
    min-height: 0;
    text-align: left;
    margin-bottom: 12px;
  }
}
.modal-block-list__image {
  font-size: 0;
  line-height: 0;
  padding: 0;
  margin: 0 0 30px;
  box-sizing: border-box;
  text-align: center;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .modal-block-list__image {
    position: absolute;
    width: 150px;
    left: 0;
    top: 0;
    margin: 0;
    aspect-ratio: inherit;
  }
}
.modal-block-list__image img {
  aspect-ratio: 1/1;
  object-fit: cover;
  max-width: 85%;
}
@media screen and (max-width: 768px) {
  .modal-block-list__image img {
    max-width: 120px;
  }
}
.modal-block-list__desc {
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5em; /* 150% */
}
@media screen and (max-width: 768px) {
  .modal-block-list__desc {
    text-align: left;
    font-size: 10px;
    line-height: 1.5em;
  }
}
.modal-block-list__desc--blue {
  color: #0070B8;
  font-weight: 700;
}

@media screen and (min-width: 769px) {
  .btn:hover span > span {
    animation: fadeOutIn 0.6s ease-in-out;
  }
  .btn:hover span > span:nth-child(1) {
    animation-delay: 0s;
  }
  .btn:hover span > span:nth-child(2) {
    animation-delay: 0.03s;
  }
  .btn:hover span > span:nth-child(3) {
    animation-delay: 0.06s;
  }
  .btn:hover span > span:nth-child(4) {
    animation-delay: 0.09s;
  }
  .btn:hover span > span:nth-child(5) {
    animation-delay: 0.12s;
  }
  .btn:hover span > span:nth-child(6) {
    animation-delay: 0.15s;
  }
  .btn:hover span > span:nth-child(7) {
    animation-delay: 0.18s;
  }
  .btn:hover span > span:nth-child(8) {
    animation-delay: 0.21s;
  }
  .btn:hover span > span:nth-child(9) {
    animation-delay: 0.24s;
  }
  .btn:hover span > span:nth-child(10) {
    animation-delay: 0.27s;
  }
  .btn:hover span > span:nth-child(11) {
    animation-delay: 0.3s;
  }
  .btn:hover span > span:nth-child(12) {
    animation-delay: 0.33s;
  }
  .btn:hover span > span:nth-child(13) {
    animation-delay: 0.36s;
  }
  .btn:hover span > span:nth-child(14) {
    animation-delay: 0.39s;
  }
  .btn:hover span > span:nth-child(15) {
    animation-delay: 0.42s;
  }
  .btn:hover span > span:nth-child(16) {
    animation-delay: 0.45s;
  }
  .btn:hover span > span:nth-child(17) {
    animation-delay: 0.48s;
  }
  .btn:hover span > span:nth-child(18) {
    animation-delay: 0.51s;
  }
  .btn:hover span > span:nth-child(19) {
    animation-delay: 0.54s;
  }
  .btn:hover span > span:nth-child(20) {
    animation-delay: 0.57s;
  }
}
.btn:hover img {
  animation: arrow 0.6s ease-in-out;
}

@keyframes fadeOutIn {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes arrow {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(8px);
    opacity: 0;
  }
  51% {
    transform: translateX(-8px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .sp-hide {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .pc-hide {
    display: none;
  }
}
