@font-face {
  font-family: "Noto Sans JP";
  src: url("../font/NotoSansJP-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../font/NotoSansJP-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}
body {
  font-size: 15px;
  line-height: 2.2em;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  background-color: #001031;
  background-image: url(../img/bg.avif);
  background-position: center top;
  background-size: 100% auto;
  padding: 0;
  margin: 0;
  width: 100%;
  overflow-x: hidden;
}
body.active {
  height: 100dvh;
  overflow: hidden;
}

img, object, video {
  max-width: 100%;
  height: auto;
}

.header {
  position: fixed;
  left: 30px;
  top: 20px;
  border-radius: 100px;
  background: rgba(220, 225, 235, 0.9);
  width: calc(100% - 60px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 15px 20px;
  gap: 30px;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  .header {
    left: 0;
    top: 0;
    border-radius: 0;
    width: 100%;
    padding: 15px 10px;
  }
}
.header__logo {
  font-size: 0;
  line-height: 0;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 258px;
  }
}
.header__nav {
  margin-left: auto;
}
@media screen and (max-width: 1200px) {
  .header__nav {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .header__cta {
    display: none;
  }
}
.header__menu {
  background: linear-gradient(to right, #6400ff, #b400ff);
  color: #fff;
  position: relative;
  overflow: hidden;
  width: 63px;
  height: 48px;
  border-radius: 100px;
  cursor: pointer;
}
@media screen and (min-width: 1201px) {
  .header__menu {
    display: none;
  }
}
.header__menu:after {
  content: "";
  width: 24px;
  height: 2px;
  background: #fff;
  display: block;
  position: absolute;
  top: calc(50% - 1px);
  left: calc(50% - 12px);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}
.header__menu span {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  font-size: 0;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.header__menu span:after {
  content: "";
  width: 24px;
  height: 2px;
  background: #fff;
  display: block;
  position: absolute;
  top: calc(50% - 8px);
  left: calc(50% - 12px);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s;
}
.header__menu span:before {
  content: "";
  width: 24px;
  height: 2px;
  background: #fff;
  display: block;
  position: absolute;
  top: calc(50% + 6px);
  left: calc(50% - 12px);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s;
}
.header__menu:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  box-shadow: inset 0 0 6px 0 rgba(0, 0, 0, 0.6);
  mix-blend-mode: multiply;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 100px;
}
.header__menu.active:after {
  display: none;
}
.header__menu.active span:before {
  top: calc(50% - 1px);
  transform: rotate(45deg);
}
.header__menu.active span:after {
  top: calc(50% - 1px);
  transform: rotate(-45deg);
}

.nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav__item {
  flex-shrink: 0;
}
.nav__item a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-weight: bold;
  white-space: nowrap;
  gap: 6px;
  font-size: 14px;
  line-height: 1.5em;
  transition: color 0.3s;
  position: relative;
}
.nav__item a:link, .nav__item a:visited {
  text-decoration: none;
  color: #000f37;
}
.nav__item a:hover, .nav__item a:active {
  text-decoration: none;
  color: #000f37;
}
@media screen and (min-width: 769px) {
  .nav__item a:hover, .nav__item a:active {
    color: #7800ff;
  }
  .nav__item a:hover .open, .nav__item a:active .open {
    background: #7800ff;
  }
}
.nav__item a .open {
  width: 20px;
  height: 20px;
  background: #000f37;
  position: relative;
  border-radius: 50%;
  display: block;
  font-size: 0;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  transition: background 0.3s;
}
.nav__item a .open:after {
  content: "";
  width: 10px;
  height: 2px;
  background: #fff;
  display: block;
  position: absolute;
  left: calc(50% - 5px);
  top: calc(50% - 1px);
}
.nav__item a .open:before {
  content: "";
  width: 10px;
  height: 2px;
  background: #fff;
  display: block;
  position: absolute;
  left: calc(50% - 5px);
  top: calc(50% - 1px);
  transform: rotate(90deg);
}
.nav__item.active a:link, .nav__item.active a:visited, .nav__item.active a:hover, .nav__item.active a:active {
  color: #7800ff;
}
.nav__item.active a .open {
  background: #7800ff;
}
.nav__item.active a:after {
  background: #7800ff;
}
.nav__item.thisopen a .open:before {
  display: none;
}
.nav__item--link a, .nav__item.adjustment a {
  position: relative;
}
.nav__item--link a:after, .nav__item.adjustment a:after {
  content: "";
  width: 20px;
  height: 20px;
  background: #000f37;
  border-radius: 50%;
  display: block;
  transition: background 0.3s;
}
@media screen and (min-width: 769px) {
  .nav__item--link a:hover:after, .nav__item--link a:active:after, .nav__item.adjustment a:hover:after, .nav__item.adjustment a:active:after {
    background: #7800ff;
  }
}
.nav__item--link a:before, .nav__item.adjustment a:before {
  content: "";
  width: 6px;
  height: 6px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  right: 8px;
  top: calc(50% - 3px);
  transform: rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.cta {
  display: flex;
  justify-content: flex-start;
  flex-shrink: 0;
  gap: 5px;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer {
  background: linear-gradient(to right, rgba(0, 10, 20, 0.6), rgba(0, 20, 80, 0.6));
}
.footer-inner {
  padding: 80px 0;
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
  margin: 0 auto;
  display: flex;
}
@media screen and (max-width: 1200px) {
  .footer-inner {
    padding: 80px 15px;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .footer-inner {
    padding: 30px 15px;
    flex-direction: column;
  }
}
.footer__header {
  width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media screen and (max-width: 1200px) {
  .footer__header {
    width: 100%;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 768px) {
  .footer__header {
    margin-bottom: 0;
  }
}
.footer__header .btn--secondary,
.footer__header .btn--cta {
  max-width: 250px;
}
.footer__bottom {
  background: #000a32;
}
.footer__bottom .footer-inner {
  padding: 34px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .footer__bottom .footer-inner {
    padding: 34px 15px;
    flex-direction: column;
  }
}
.footer__bottom .copyright {
  font-size: 10px;
  line-height: 1em;
  font-weight: 400;
  letter-spacing: 1px;
}
.footer__bottom-link {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1200px) {
  .footer__bottom-link {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0px 12px;
    margin-bottom: 18px;
    padding: 0 10px;
  }
}
.footer__bottom-link > li a {
  font-size: 13px;
  line-height: 1.5em;
}
.footer__bottom-link > li a:link, .footer__bottom-link > li a:visited {
  text-decoration: none;
  color: #fff;
}
.footer__bottom-link > li a:hover, .footer__bottom-link > li a:active {
  text-decoration: none;
  color: #fff;
}
@media (hover: hover) {
  .footer__bottom-link > li a:hover {
    opacity: 0.7;
  }
}
.footer__block {
  width: 100%;
  max-width: calc(100% - 320px);
}
@media screen and (max-width: 1200px) {
  .footer__block {
    max-width: 100%;
  }
}
.footer__logo {
  font-size: 0;
  line-height: 0;
  max-width: 216px;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    margin-bottom: 12px;
    max-width: 162px;
  }
}
@media (hover: hover) {
  .footer__logo a:hover {
    opacity: 0.7;
  }
}
.footer__cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .footer__cta {
    flex-direction: row;
    justify-content: center;
    width: 100%;
    gap: 10px;
    margin-top: 16px;
  }
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .footer-nav {
    gap: 0;
  }
}
.footer-nav:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
@media screen and (max-width: 768px) {
  .footer-nav:not(:last-child) {
    border-bottom: none;
  }
}
.footer-nav__item {
  width: calc(50% - 15px);
}
@media screen and (max-width: 768px) {
  .footer-nav__item {
    width: 100%;
  }
}
.footer-nav__item:last-child:first-child {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0 30px;
}
.footer-nav__item > a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  line-height: 1.5em;
  box-sizing: border-box;
  padding: 16px 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer-nav__item > a {
    font-size: 16px;
    line-height: 1.5em;
    padding: 10px 0;
  }
}
.footer-nav__item > a:link, .footer-nav__item > a:visited {
  text-decoration: none;
  color: #fff;
}
.footer-nav__item > a:hover, .footer-nav__item > a:active {
  text-decoration: none;
  color: #fff;
}
.footer-nav__item > a:before {
  content: "";
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  display: block;
  background: url(../img/icon-arrow-w.svg);
  background-size: 110% auto;
  background-position: top center;
  flex-shrink: 0;
  border-radius: 50%;
}
@media (hover: hover) {
  .footer-nav__item > a:hover {
    opacity: 0.7;
  }
}
.footer-nav__item > a .open {
  width: 20px;
  height: 20px;
  background: #fff;
  position: relative;
  border-radius: 50%;
  display: block;
  font-size: 0;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  transition: background 0.3s;
  flex-shrink: 0;
}
@media screen and (min-width: 769px) {
  .footer-nav__item > a .open {
    display: none;
  }
}
.footer-nav__item > a .open:after {
  content: "";
  width: 10px;
  height: 2px;
  background: #000f37;
  display: block;
  position: absolute;
  left: calc(50% - 5px);
  top: calc(50% - 1px);
}
.footer-nav__item > a .open:before {
  content: "";
  width: 10px;
  height: 2px;
  background: #000f37;
  display: block;
  position: absolute;
  left: calc(50% - 5px);
  top: calc(50% - 1px);
  transform: rotate(90deg);
  transition: transform 0.3s;
}
.footer-nav__item > a .open.active:after {
  display: none;
}
.footer-nav__item > a .open.active:before {
  transform: rotate(0);
}
@media screen and (max-width: 768px) {
  .footer-nav__item:not(.footer-nav__item--link):not(.adjustment) a:before {
    display: none;
  }
}
.footer-nav-s {
  width: calc(50% - 15px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .footer-nav-s {
    width: 100%;
    padding-left: 30px;
    display: none;
    padding-bottom: 0;
  }
}
.footer-nav-s > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .footer-nav-s > ul {
    gap: 0;
    display: none;
  }
}
.footer-nav-s__title {
  font-size: 14px;
  line-height: 1.5em;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .footer-nav-s__title {
    font-weight: 500;
    position: relative;
    padding-bottom: 12px;
    display: flex;
    justify-content: space-between;
    padding-top: 12px;
  }
  .footer-nav-s__title:before {
    content: "";
    width: 100%;
    height: 1px;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(to right, #6400ff, #b400ff);
  }
}
.footer-nav-s__title a:link, .footer-nav-s__title a:visited, .footer-nav-s__title a:hover, .footer-nav-s__title a:active {
  text-decoration: none;
  color: #fff;
}
@media (hover: hover) {
  .footer-nav-s__title a:hover {
    opacity: 0.7;
  }
}
.footer-nav-s__title .open {
  width: 20px;
  height: 20px;
  background: #fff;
  position: relative;
  border-radius: 50%;
  display: block;
  font-size: 0;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  transition: background 0.3s;
  flex-shrink: 0;
}
@media screen and (min-width: 769px) {
  .footer-nav-s__title .open {
    display: none;
  }
}
.footer-nav-s__title .open:after {
  content: "";
  width: 10px;
  height: 2px;
  background: #000f37;
  display: block;
  position: absolute;
  left: calc(50% - 5px);
  top: calc(50% - 1px);
}
.footer-nav-s__title .open:before {
  content: "";
  width: 10px;
  height: 2px;
  background: #000f37;
  display: block;
  position: absolute;
  left: calc(50% - 5px);
  top: calc(50% - 1px);
  transform: rotate(90deg);
  transition: transform 0.3s;
}
.footer-nav-s__title .open.active:after {
  display: none;
}
.footer-nav-s__title .open.active:before {
  transform: rotate(0);
}
.footer-nav-s__title--link a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.footer-nav-s__title--link a:after {
  content: "";
  width: 6px;
  height: 6px;
  box-sizing: border-box;
  display: block;
  transform: rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  flex-shrink: 0;
}
@media screen and (min-width: 769px) {
  .footer-nav-s__title--link a:after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .footer-nav-s__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
}
.footer-nav-s__item a {
  display: block;
  font-size: 12px;
  line-height: 1.5em;
  position: relative;
  padding-left: 8px;
}
@media screen and (max-width: 768px) {
  .footer-nav-s__item a {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: space-between;
  }
}
.footer-nav-s__item a:link, .footer-nav-s__item a:visited {
  text-decoration: none;
  color: #a0bedc;
}
@media screen and (max-width: 768px) {
  .footer-nav-s__item a:link, .footer-nav-s__item a:visited {
    color: #fff;
  }
}
.footer-nav-s__item a:hover, .footer-nav-s__item a:active {
  text-decoration: none;
  color: #a0bedc;
}
@media screen and (max-width: 768px) {
  .footer-nav-s__item a:hover, .footer-nav-s__item a:active {
    color: #fff;
  }
}
@media (hover: hover) {
  .footer-nav-s__item a:hover {
    opacity: 0.7;
  }
}
.footer-nav-s__item a:before {
  content: "-";
  position: absolute;
  left: 0;
}
@media screen and (max-width: 768px) {
  .footer-nav-s__item a:before {
    display: none;
  }
}
.footer-nav-s__item a:after {
  content: "";
  width: 6px;
  height: 6px;
  box-sizing: border-box;
  display: block;
  transform: rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  flex-shrink: 0;
}
@media screen and (min-width: 769px) {
  .footer-nav-s__item a:after {
    display: none;
  }
}
.footer-nav-l ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .footer-nav-l ul {
    display: none;
  }
}
.footer-nav-l__item {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-nav-l__item a {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 13px;
  line-height: 1.5em;
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  .footer-nav-l__item a {
    font-size: 10px;
    line-height: 1.5em;
  }
}
.footer-nav-l__item a:link, .footer-nav-l__item a:visited {
  text-decoration: none;
  color: #fff;
}
.footer-nav-l__item a:hover, .footer-nav-l__item a:active {
  text-decoration: none;
  color: #fff;
}
@media (hover: hover) {
  .footer-nav-l__item a:hover {
    opacity: 0.7;
  }
}
.footer-nav-l__item a .thumb {
  flex-shrink: 0;
  width: 70px;
  border-radius: 3px;
}
.footer-nav-l__item a:after {
  content: "";
  width: 6px;
  height: 6px;
  box-sizing: border-box;
  display: block;
  transform: rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  flex-shrink: 0;
}

.btn {
  display: inline-block;
  box-sizing: border-box;
  transition: color 0.3s, background 0.3s, filter 0.3s, border-color 0.3s;
}
.btn span {
  display: inline-block;
  transform: translateY(-2px);
}
.btn--dark {
  background: #000f37;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
.btn--dark:link, .btn--dark:visited {
  text-decoration: none;
  color: #fff;
}
.btn--dark:hover, .btn--dark:active {
  text-decoration: none;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .btn--dark:hover, .btn--dark:active {
    background: #7800ff;
  }
}
.btn--gradient {
  background: linear-gradient(to right, #6400ff, #b400ff);
  color: #fff;
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
.btn--gradient:link, .btn--gradient:visited {
  text-decoration: none;
  color: #fff;
}
.btn--gradient:hover, .btn--gradient:active {
  text-decoration: none;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .btn--gradient:hover, .btn--gradient:active {
    filter: brightness(150%);
  }
}
.btn--gradient:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  box-shadow: inset 0 0 6px 0 rgba(0, 0, 0, 0.6);
  mix-blend-mode: multiply;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 100px;
}
.btn--gradient:after {
  background-image: url(../img/icon-arrow-p.svg) !important;
}
.btn--border {
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.btn--border:link, .btn--border:visited {
  text-decoration: none;
  color: #fff;
}
.btn--border:hover, .btn--border:active {
  text-decoration: none;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .btn--border:hover, .btn--border:active {
    background: #6400ff;
  }
}
.btn--cta {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 130px;
  height: 40px;
  font-weight: bold;
  border-radius: 100px;
}
.btn--primary {
  width: 100%;
  max-width: 496px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 24px 32px;
  border-radius: 100px;
  font-size: 24px;
  line-height: 1em;
}
.btn--primary:after {
  content: "";
  width: 30px;
  height: 30px;
  display: block;
  background: url(../img/icon-arrow-p.svg);
  background-size: cover;
}
.btn--standard {
  width: 100%;
  max-width: 308px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 24px 32px;
  border-radius: 100px;
  font-size: 18px;
  line-height: 1.2em;
  text-align: left;
  position: relative;
}
.btn--standard:after {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background: url(../img/icon-arrow-gradient.svg);
  background-size: cover;
  border-radius: 50%;
}
@media screen and (min-width: 769px) {
  .btn--standard:hover:after {
    filter: brightness(180%);
  }
}
.btn--secondary {
  width: 100%;
  max-width: 200px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-radius: 100px;
  font-size: 15px;
  line-height: 1em;
}
.btn--secondary:after {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background: url(../img/icon-arrow-w.svg);
  background-size: cover;
}
.btn--secondary-l {
  max-width: 280px;
}
.btn--sns {
  width: 100%;
  max-width: 160px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  padding: 0 15px;
  border-radius: 50px;
  min-height: 50px;
  align-items: center;
  background: rgba(255, 255, 255, 0.5);
}
.btn--sns:link, .btn--sns:visited {
  text-decoration: none;
  color: #000f37;
}
.btn--sns:hover, .btn--sns:active {
  text-decoration: none;
  color: #000f37;
}

.drawer {
  position: fixed;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  background: linear-gradient(to right, rgba(0, 10, 20, 0.95), rgba(0, 20, 80, 0.95));
  z-index: 9998;
  box-sizing: border-box;
  padding: 120px 60px 30px;
  left: 0;
  top: 0;
  transform: translateY(-100vh);
  pointer-events: none;
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}
@media screen and (max-width: 768px) {
  .drawer {
    padding: 90px 15px 30px;
  }
}
.drawer.active {
  pointer-events: inherit;
  transform: translateY(0);
  opacity: 1;
}
.drawer__cta {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 24px;
}
.drawer__cta .btn {
  max-width: calc(50% - 3px);
}
.drawer .nav-drawer__item > a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 6px 0;
  gap: 8px;
}
.drawer .nav-drawer__item > a:link, .drawer .nav-drawer__item > a:visited {
  text-decoration: none;
  color: #fff;
}
.drawer .nav-drawer__item > a:hover, .drawer .nav-drawer__item > a:active {
  text-decoration: none;
  color: #fff;
}
.drawer .nav-drawer__item--link > a:before, .drawer .nav-drawer__item.adjustment > a:before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background: url(../img/icon-arrow-w.svg);
  background-size: 110% auto;
  background-position: top center;
  flex-shrink: 0;
  border-radius: 50%;
}
.drawer .nav-drawer__item .open {
  width: 20px;
  height: 20px;
  background: #fff;
  position: relative;
  border-radius: 50%;
  display: block;
  font-size: 0;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  transition: background 0.3s;
  flex-shrink: 0;
}
.drawer .nav-drawer__item .open:after {
  content: "";
  width: 10px;
  height: 2px;
  background: #000f37;
  display: block;
  position: absolute;
  left: calc(50% - 5px);
  top: calc(50% - 1px);
  transition: transform 0.3s;
}
.drawer .nav-drawer__item .open:before {
  content: "";
  width: 10px;
  height: 2px;
  background: #000f37;
  display: block;
  position: absolute;
  left: calc(50% - 5px);
  top: calc(50% - 1px);
  transform: rotate(90deg);
  transition: transform 0.3s;
}
.drawer .nav-drawer__item .open.active:after {
  display: none;
}
.drawer .nav-drawer__item .open.active:before {
  transform: rotate(0);
}
.drawer .nav-drawer-s {
  padding-left: 30px;
  display: none;
}
.drawer .nav-drawer-s__title {
  font-size: 14px;
  line-height: 1.5em;
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 12px 0;
}
.drawer .nav-drawer-s__title:after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background: linear-gradient(to right, #6400ff, #b400ff);
  position: absolute;
  left: 0;
  bottom: 0;
}
.drawer .nav-drawer-s__title a:link, .drawer .nav-drawer-s__title a:visited, .drawer .nav-drawer-s__title a:hover, .drawer .nav-drawer-s__title a:active {
  text-decoration: none;
  color: #fff;
}
.drawer .nav-drawer-s__title .open {
  width: 20px;
  height: 20px;
  background: #fff;
  position: relative;
  border-radius: 50%;
  display: block;
  font-size: 0;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  transition: background 0.3s;
  flex-shrink: 0;
}
.drawer .nav-drawer-s__title .open:after {
  content: "";
  width: 10px;
  height: 2px;
  background: #000f37;
  display: block;
  position: absolute;
  left: calc(50% - 5px);
  top: calc(50% - 1px);
}
.drawer .nav-drawer-s__title .open:before {
  content: "";
  width: 10px;
  height: 2px;
  background: #000f37;
  display: block;
  position: absolute;
  left: calc(50% - 5px);
  top: calc(50% - 1px);
  transform: rotate(90deg);
  transition: transform 0.3s;
}
.drawer .nav-drawer-s__title .open.active:after {
  display: none;
}
.drawer .nav-drawer-s__title .open.active:before {
  transform: rotate(0);
}
.drawer .nav-drawer-s__title--link a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.drawer .nav-drawer-s__title--link a:after {
  content: "";
  width: 6px;
  height: 6px;
  box-sizing: border-box;
  display: block;
  transform: rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  flex-shrink: 0;
}
@media screen and (min-width: 769px) {
  .drawer .nav-drawer-s__title--link a:after {
    display: none;
  }
}
.drawer .nav-drawer-s > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
}
.drawer .nav-drawer-s__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.drawer .nav-drawer-s__item > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  line-height: 1.5em;
  padding: 12px 0;
}
.drawer .nav-drawer-s__item > a:link, .drawer .nav-drawer-s__item > a:visited {
  text-decoration: none;
  color: #fff;
}
.drawer .nav-drawer-s__item > a:hover, .drawer .nav-drawer-s__item > a:active {
  text-decoration: none;
  color: #fff;
}
.drawer .nav-drawer-s__item > a:after {
  content: "";
  width: 8px;
  height: 8px;
  box-sizing: border-box;
  display: block;
  transform: rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  flex-shrink: 0;
}
.drawer .nav-drawer-l {
  padding-left: 30px;
  display: none;
}
.drawer .nav-drawer-l__title {
  font-size: 14px;
  line-height: 1.5em;
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 12px 0;
}
.drawer .nav-drawer-l__title a:link, .drawer .nav-drawer-l__title a:visited, .drawer .nav-drawer-l__title a:hover, .drawer .nav-drawer-l__title a:active {
  text-decoration: none;
  color: #fff;
}
.drawer .nav-drawer-l__title:after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background: linear-gradient(to right, #6400ff, #b400ff);
  position: absolute;
  left: 0;
  bottom: 0;
}
.drawer .nav-drawer-l > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
}
.drawer .nav-drawer-l__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.drawer .nav-drawer-l__item > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  line-height: 1.5em;
  padding: 12px 0;
  gap: 8px;
}
.drawer .nav-drawer-l__item > a:link, .drawer .nav-drawer-l__item > a:visited {
  text-decoration: none;
  color: #fff;
}
.drawer .nav-drawer-l__item > a:hover, .drawer .nav-drawer-l__item > a:active {
  text-decoration: none;
  color: #fff;
}
.drawer .nav-drawer-l__item > a img {
  width: 100%;
  max-width: 70px;
  border-radius: 6px;
}
.drawer .nav-drawer-l__item > a:after {
  content: "";
  width: 8px;
  height: 8px;
  box-sizing: border-box;
  display: block;
  transform: rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  flex-shrink: 0;
  margin-left: auto;
}
.drawer .nav-drawer-l__item > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
}

.megamenu {
  background: rgba(0, 10, 30, 0.95);
  position: fixed;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  left: 0;
  bottom: 0;
  z-index: 9998;
  transform: translateY(-100vh);
  pointer-events: none;
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}
@media screen and (max-width: 768px) {
  .megamenu {
    display: none;
  }
}
.megamenu.active {
  pointer-events: inherit;
  transform: translateY(0);
  opacity: 1;
}
.megamenu-inner {
  padding: 130px 0 60px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 60px;
}

.nav-mega {
  width: calc(50% - 30px);
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.nav-mega__item {
  width: 100%;
}
.nav-mega__item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-bottom: 10px;
  font-size: 22px;
  line-height: 1.5em;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-sizing: border-box;
}
.nav-mega__item a:before {
  content: "";
  width: 100px;
  height: 1px;
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  background: linear-gradient(to right, #6400ff, #b400ff);
}
.nav-mega__item a:link, .nav-mega__item a:visited {
  text-decoration: none;
  color: #fff;
}
.nav-mega__item a:hover, .nav-mega__item a:active {
  text-decoration: none;
  color: #fff;
}
@media (hover: hover) {
  .nav-mega__item a:hover .thumb, .nav-mega__item a:hover:after,
  .nav-mega__item a:hover span, .nav-mega__item a:active .thumb, .nav-mega__item a:active:after,
  .nav-mega__item a:active span {
    opacity: 0.7;
  }
}
.nav-mega__item a .thumb {
  width: 100px;
  border-radius: 6px;
  overflow: hidden;
}
.nav-mega__item a:after {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background: url(../img/icon-arrow-gradient.svg);
  background-size: cover;
  border-radius: 50%;
  flex-shrink: 0;
}
.nav-mega__item a span {
  margin-right: auto;
}
.nav-mega-s {
  width: calc(50% - 15px);
}
.nav-mega-s__title {
  position: relative;
  box-sizing: border-box;
  padding-bottom: 16px;
  font-size: 18px;
  line-height: 1em;
}
.nav-mega-s__title:not(:first-child) {
  margin-top: 30px;
}
.nav-mega-s__title:after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  background: linear-gradient(to right, #6400ff, #b400ff);
}
.nav-mega-s > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-mega-s__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.nav-mega-s__item a {
  font-size: 12px;
  line-height: 1.5em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  gap: 8px;
}
.nav-mega-s__item a:link, .nav-mega-s__item a:visited {
  text-decoration: none;
  color: #fff;
}
.nav-mega-s__item a:hover, .nav-mega-s__item a:active {
  text-decoration: none;
  color: #fff;
}
@media (hover: hover) {
  .nav-mega-s__item a:hover, .nav-mega-s__item a:active {
    opacity: 0.7;
  }
}
.nav-mega-s__item a:after {
  content: "";
  width: 6px;
  height: 6px;
  box-sizing: border-box;
  display: block;
  transform: rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  flex-shrink: 0;
}
.nav-mega-l {
  margin-top: -30px;
  width: 100%;
}
.nav-mega-l ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}
.nav-mega-l__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  width: 100%;
}
.nav-mega-l__item a {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 13px;
  line-height: 1.5em;
  padding: 16px 0;
  min-height: 86px;
  box-sizing: border-box;
}
.nav-mega-l__item a:link, .nav-mega-l__item a:visited {
  text-decoration: none;
  color: #fff;
}
.nav-mega-l__item a:hover, .nav-mega-l__item a:active {
  text-decoration: none;
  color: #fff;
}
@media (hover: hover) {
  .nav-mega-l__item a:hover, .nav-mega-l__item a:active {
    opacity: 0.7;
  }
}
.nav-mega-l__item a .thumb {
  flex-shrink: 0;
  width: 80px;
  border-radius: 6px;
}
.nav-mega-l__item a:after {
  content: "";
  width: 6px;
  height: 6px;
  box-sizing: border-box;
  display: block;
  transform: rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  flex-shrink: 0;
  margin-left: auto;
}

.mv {
  position: relative;
  width: 100%;
  height: 760px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .mv {
    height: 486px;
  }
}
.mv__image {
  font-size: 0;
  line-height: 0;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.mv__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
}
.mv__text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-shadow: 0 0 10px rgba(0, 20, 60, 0.5);
}
@media screen and (max-width: 768px) {
  .mv__text {
    gap: 20px;
  }
}
.mv__title {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .mv__title {
    gap: 8px;
  }
}
.mv__title div {
  overflow: hidden;
}
.mv__title div:first-child {
  font-size: 58px;
  line-height: 1em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .mv__title div:first-child {
    font-size: 20px;
    line-height: 1em;
  }
}
.mv__title div:nth-of-type(2) {
  font-size: 48px;
  line-height: 1em;
  font-weight: bold;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .mv__title div:nth-of-type(2) {
    font-size: 34px;
    line-height: 1.2em;
  }
}
.mv__title div:nth-of-type(2) br {
  display: none;
}
@media screen and (max-width: 768px) {
  .mv__title div:nth-of-type(2) br {
    display: inherit;
  }
}
.mv__title div:last-child {
  font-size: 18px;
  line-height: 1em;
}
@media screen and (max-width: 768px) {
  .mv__title div:last-child {
    font-size: 16px;
    line-height: 1em;
  }
}
.mv__title div span {
  display: inline-block;
}
.mv__title div span span {
  opacity: 0;
  transform: translateY(50);
}
.mv__title-en {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: "Roboto";
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .mv__title-en {
    gap: 6px;
  }
}
.mv__title-en div {
  overflow: hidden;
}
.mv__title-en div:first-child span {
  font-size: 0;
  line-height: 0;
  display: inline-block;
}
.mv__title-en div:first-child span span {
  font-size: 102px;
  line-height: 1em;
  opacity: 0;
  transform: translateY(50);
}
@media screen and (max-width: 768px) {
  .mv__title-en div:first-child span span {
    font-size: 59px;
    line-height: 1em;
  }
}
.mv__title-en div:first-child span span:last-child {
  font-size: 28px;
  margin-top: -20px;
  position: relative;
  top: -60px;
}
@media screen and (max-width: 768px) {
  .mv__title-en div:first-child span span:last-child {
    font-size: 16px;
    top: -10px;
  }
}
.mv__title-en div:first-child sup {
  font-size: 28px;
  margin-top: -20px;
  position: relative;
  top: -20px;
}
@media screen and (max-width: 768px) {
  .mv__title-en div:first-child sup {
    font-size: 16px;
    top: -10px;
  }
}
.mv__title-en div:last-child {
  font-size: 18px;
  line-height: 1em;
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  .mv__title-en div:last-child {
    font-size: 11px;
    line-height: 1em;
    letter-spacing: 0;
  }
}
.mv__title-en div:last-child span span {
  opacity: 0;
  transform: translateY(50);
}
.mv__scroll {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Roboto";
  font-weight: 500;
  width: 100%;
  position: absolute;
  width: 80px;
  bottom: 20px;
  left: calc(50% - 40px);
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .mv__scroll {
    font-size: 11px;
    line-height: 1.5em;
    gap: 6px;
  }
}
.mv__scroll:after {
  content: "";
  width: 1px;
  height: 80px;
  display: block;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .mv__scroll:after {
    height: 50px;
    background: linear-gradient(to bottom, #fff, transparent 90%);
  }
}
.mv__scroll:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  bottom: 80px;
  left: calc(50% - 4px);
  border-radius: 50%;
  background: #fff;
  display: block;
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
@media screen and (max-width: 768px) {
  .mv__scroll:before {
    width: 6px;
    height: 6px;
    left: calc(50% - 3px);
    bottom: 50px;
    animation: circlemove-sp 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
  }
}

@keyframes circlemove {
  0% {
    bottom: 80px;
  }
  100% {
    bottom: -5px;
  }
}
@keyframes circlemove-sp {
  0% {
    bottom: 50px;
  }
  100% {
    bottom: 10px;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  60% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.headline {
  font-family: "Roboto";
  font-weight: 900;
  -webkit-text-stroke: 1px rgba(180, 210, 255, 0.5);
  font-size: 82px;
  line-height: 1em;
  color: transparent;
}
@media screen and (max-width: 768px) {
  .headline {
    font-size: 42px;
    line-height: 1em;
  }
}

.title {
  font-size: 36px;
  line-height: 1.5em;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .title {
    font-size: 22px;
    line-height: 1.5em;
  }
}

.image {
  font-size: 0;
  line-height: 0;
  position: relative;
  box-sizing: border-box;
  padding: 8px;
}
.image:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  background: rgba(220, 225, 225, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  left: 0;
  top: 0;
  position: absolute;
  border-radius: 12px;
  z-index: -1;
}
.image img {
  border-radius: 10px;
  width: 100%;
  height: auto;
}
.image iframe {
  border-radius: 10px;
  width: 100%;
  aspect-ratio: 16/9;
}

.sec-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (max-width: 1260px) {
  .sec-inner {
    padding: 0 30px;
  }
}
@media screen and (max-width: 768px) {
  .sec-inner {
    padding: 0;
  }
}
.sec-inner--flex {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .sec-inner--flex {
    flex-direction: column;
  }
}

.block__desc p {
  margin: 0;
}
.block__desc p:not(:last-child) {
  margin-bottom: 1em;
}

.sec__header {
  width: 100%;
  max-width: 256px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .sec__header {
    gap: 12px;
    max-width: 100%;
  }
}
.sec__header + * {
  width: calc(100% - 256px);
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .sec__header + * {
    width: 100%;
  }
}
.sec__headline {
  font-size: 36px;
  line-height: 1em;
}
@media screen and (max-width: 768px) {
  .sec__headline {
    font-size: 43px;
    line-height: 1em;
    text-align: center;
  }
}
.sec__title {
  font-size: 38px;
  line-height: 1em;
}
@media screen and (max-width: 768px) {
  .sec__title {
    font-size: 30px;
    line-height: 1em;
    text-align: center;
  }
}
.sec__title:not(:last-child) {
  margin-bottom: 28px;
}
.sec__title--s {
  font-size: 28px;
  line-height: 1em;
}
.sec__footer {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.sec.outline {
  padding: 100px 15px 120px;
}
@media screen and (max-width: 768px) {
  .sec.outline {
    padding: 48px 10px 62px;
  }
}
.sec.outline .outline__headline {
  text-align: center;
  margin-bottom: 32px;
}
.sec.outline .outline__title {
  text-align: center;
  margin-bottom: 40px;
}
.sec.outline .block {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .sec.outline .block {
    flex-direction: column;
    gap: 30px;
  }
}
.sec.outline .block__image {
  width: 56%;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .sec.outline .block__image {
    width: 100%;
  }
}
.sec.outline .block__image iframe {
  border-radius: 10px;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.sec.outline .block__text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .sec.outline .block__text {
    padding: 0 5px;
    gap: 20px;
  }
}
.sec.outline .block__desc {
  font-size: 16px;
  line-height: 2.2em;
}
@media screen and (max-width: 768px) {
  .sec.outline .block__desc + div {
    display: flex;
    justify-content: center;
  }
}
.sec.story {
  background-image: url(../img/sec-story-bg.avif);
  background-position: center top;
  background-size: cover;
}
.sec.story .story__title {
  font-size: 42px;
  line-height: 1.2em;
}
@media screen and (max-width: 768px) {
  .sec.story .story__title {
    font-size: 30px;
    line-height: 1.2em;
  }
  .sec.story .story__title br {
    display: none;
  }
}
.sec.story .block {
  display: flex;
  gap: 60px;
  padding: 168px 0 256px;
}
@media screen and (max-width: 768px) {
  .sec.story .block {
    flex-direction: column;
    gap: 30px;
    padding: 60px 15px 120px;
  }
}
.sec.story .block.adjustment {
  padding: 168px 0 128px;
}
@media screen and (max-width: 768px) {
  .sec.story .block.adjustment {
    padding: 60px 15px;
  }
}
.sec.story .block__header {
  width: 323px;
  flex-shrink: 0;
  gap: 30px;
  display: flex;
  flex-direction: column;
}
.sec.story .block__desc {
  font-size: 16px;
  line-height: 2.2em;
}
.sec.story .block__desc strong {
  font-size: 22px;
  line-height: 2.2em;
}
.sec.message {
  margin-top: -176px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .sec.message {
    max-width: calc(100% - 20px);
    margin: -60px auto 30px;
  }
}
.sec.message .message__title {
  font-size: 28px;
  line-height: 1.4em;
  color: #000f37;
  padding-bottom: 20px;
  position: relative;
  border-bottom: 1px solid #b4bed2;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .sec.message .message__title {
    font-size: 20px;
    line-height: 1.4em;
  }
}
.sec.message .message__title:after {
  content: "";
  width: 120px;
  height: 1px;
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  background: linear-gradient(to right, #6400ff, #b400ff);
}
.sec.message .message__name {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  font-size: 24px;
  line-height: 1.5em;
}
@media screen and (max-width: 768px) {
  .sec.message .message__name {
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    font-size: 18px;
    line-height: 1.5em;
    gap: 8px;
  }
}
.sec.message .message__name span {
  font-size: 12px;
  line-height: 1.5em;
  display: block;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .sec.message .message__name span {
    font-size: 12px;
    line-height: 1.5em;
    text-align: left;
  }
}
.sec.message .block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-radius: 12px;
  gap: 20px 50px;
  background-image: url(../img/sec-message-bg.avif);
  background-position: center top;
  background-size: cover auto;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .sec.message .block {
    flex-direction: column;
    align-items: flex-start;
  }
}
.sec.message .block__image {
  width: 100%;
  max-width: 440px;
  flex-shrink: 0;
  border-radius: 12px 0 12px 0;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
  box-shadow: 0 0 8px rgba(0, 15, 55, 0.1);
  margin-bottom: auto;
}
@media screen and (max-width: 1100px) {
  .sec.message .block__image {
    max-width: calc(50% - 25px);
  }
}
@media screen and (max-width: 768px) {
  .sec.message .block__image {
    max-width: calc(100% - 20px);
  }
}
.sec.message .block__image img {
  transform: scale(1.01);
  width: 100%;
  height: auto;
}
.sec.message .block__text {
  width: calc(100% - 490px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-sizing: border-box;
  padding-right: 58px;
  padding: 20px 58px 20px 0;
}
@media screen and (max-width: 1100px) {
  .sec.message .block__text {
    width: calc(50% - 25px);
  }
}
@media screen and (max-width: 768px) {
  .sec.message .block__text {
    width: 100%;
    padding: 0 15px;
  }
}
.sec.message .block__desc {
  color: #000f37;
}
@media screen and (max-width: 768px) {
  .sec.message .block__desc {
    font-size: 13px;
    line-height: 1.8em;
  }
}
.sec.message .block__footer {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  padding: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec.message .block__footer {
    padding: 0 15px 30px;
  }
}
.sec.message .block__footer:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background: #dce1eb;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 768px) {
  .sec.message .block__footer:before {
    display: none;
  }
}
.sec.sponsor, .sec.clients {
  background: rgba(0, 10, 40, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  box-sizing: border-box;
  margin-bottom: 120px;
  height: 160px;
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .sec.sponsor, .sec.clients {
    height: 100px;
  }
}
.sec.sponsor .sponsor__header,
.sec.sponsor .clients__header, .sec.clients .sponsor__header,
.sec.clients .clients__header {
  background-image: url(../img/mask01.svg);
  background-size: 100% auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 220px;
  height: 160px;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding-right: 24px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .sec.sponsor .sponsor__header,
  .sec.sponsor .clients__header, .sec.clients .sponsor__header,
  .sec.clients .clients__header {
    width: 135px;
    height: 100px;
  }
}
.sec.sponsor .sponsor__headline,
.sec.sponsor .clients__headline, .sec.clients .sponsor__headline,
.sec.clients .clients__headline {
  font-size: 32px;
  line-height: 1em;
}
@media screen and (max-width: 768px) {
  .sec.sponsor .sponsor__headline,
  .sec.sponsor .clients__headline, .sec.clients .sponsor__headline,
  .sec.clients .clients__headline {
    font-size: 19px;
    line-height: 1em;
  }
}
.sec.sponsor .sponsor__title,
.sec.sponsor .clients__title, .sec.clients .sponsor__title,
.sec.clients .clients__title {
  font-size: 22px;
  line-height: 1em;
}
@media screen and (max-width: 768px) {
  .sec.sponsor .sponsor__title,
  .sec.sponsor .clients__title, .sec.clients .sponsor__title,
  .sec.clients .clients__title {
    font-size: 16px;
    line-height: 1em;
  }
}
.sec.solution {
  background-image: url(../img/sec-solution-bg.avif);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .sec.solution {
    padding: 60px 10px;
    background-position: center top;
  }
}
.sec.solution .solution__headline {
  font-size: 36px;
  line-height: 1em;
}
@media screen and (max-width: 768px) {
  .sec.solution .solution__headline {
    font-size: 43px;
    line-height: 1em;
  }
}
.sec.solution .solution__title {
  font-size: 38px;
  line-height: 1em;
}
@media screen and (max-width: 768px) {
  .sec.solution .solution__title {
    font-size: 30px;
    line-height: 1em;
  }
}
.sec.solution .block {
  display: flex;
}
@media screen and (max-width: 768px) {
  .sec.solution .block {
    flex-direction: column;
  }
}
.sec.solution .block__header {
  width: 100%;
  max-width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .sec.solution .block__header {
    max-width: 100%;
    margin-bottom: 22px;
  }
}
.sec.solution .block__title {
  font-size: 22px;
  line-height: 1.4em;
  color: #fff;
  padding-bottom: 12px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
}
.sec.solution .block__title:after {
  content: "";
  width: 80px;
  height: 1px;
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  background: linear-gradient(to right, #6400ff, #b400ff);
}
.sec.solution .block__text {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.sec.solution .block__item {
  width: calc(50% - 10px);
  box-sizing: border-box;
  background: rgba(0, 10, 40, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .sec.solution .block__item {
    width: 100%;
    padding: 15px;
  }
}
.sec.reason {
  padding: 120px 0;
}
.sec.reason .reason__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.sec.reason .reason__headline {
  font-size: 36px;
  line-height: 1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec.reason .reason__headline {
    font-size: 43px;
    line-height: 1em;
  }
}
.sec.reason .reason__headline br {
  display: none;
}
@media screen and (max-width: 768px) {
  .sec.reason .reason__headline br {
    display: inherit;
  }
}
.sec.reason .reason__title {
  font-size: 42px;
  line-height: 1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec.reason .reason__title {
    font-size: 30px;
    line-height: 1.2em;
  }
}
.sec.reason .reason__title br {
  display: none;
}
@media screen and (max-width: 768px) {
  .sec.reason .reason__title br {
    display: inherit;
  }
}
.sec.reason .reason__footer {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .sec.reason .reason__footer {
    justify-content: center;
  }
}
.sec.reason .block {
  counter-increment: reason;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 30px;
  gap: 60px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px 60px 20px 20px;
  background: linear-gradient(to right, rgba(0, 10, 40, 0.15), rgba(120, 0, 255, 0.15));
}
@media screen and (max-width: 768px) {
  .sec.reason .block {
    flex-direction: column;
    padding: 10px 10px 20px;
    border-radius: 0 12px 12px 0;
    gap: 25px;
    margin-right: 10px;
    border-left: none;
  }
}
.sec.reason .block:nth-of-type(odd) {
  padding: 20px 20px 20px 60px;
}
@media screen and (max-width: 768px) {
  .sec.reason .block:nth-of-type(odd) {
    padding: 10px 10px 20px;
    margin-right: 0;
    margin-left: 10px;
    border-radius: 12px 0 0 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
  }
}
.sec.reason .block:nth-of-type(odd) .block__image {
  order: 2;
}
@media screen and (max-width: 768px) {
  .sec.reason .block:nth-of-type(odd) .block__image {
    order: 1;
  }
}
.sec.reason .block__image {
  width: 100%;
  max-width: 560px;
  flex-shrink: 0;
  margin-bottom: auto;
}
@media screen and (max-width: 1200px) {
  .sec.reason .block__image {
    max-width: calc(50% - 30px);
  }
}
@media screen and (max-width: 768px) {
  .sec.reason .block__image {
    max-width: 100%;
  }
}
.sec.reason .block__text {
  box-sizing: border-box;
  width: 100%;
  max-width: calc(100% - 620px);
}
@media screen and (max-width: 1200px) {
  .sec.reason .block__text {
    max-width: calc(50% - 30px);
  }
}
@media screen and (max-width: 768px) {
  .sec.reason .block__text {
    max-width: 100%;
    padding: 0 15px;
    font-size: 14px;
    line-height: 1.8em;
    order: 2;
  }
}
.sec.reason .block__title {
  font-size: 28px;
  line-height: 1.4em;
  color: #fff;
  padding-bottom: 12px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
  margin: 0 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .sec.reason .block__title {
    font-size: 20px;
    line-height: 1.4em;
  }
}
.sec.reason .block__title:before {
  content: "";
  width: 120px;
  height: 1px;
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  background: linear-gradient(to right, #6400ff, #b400ff);
}
.sec.reason .block__title:after {
  content: counter(reason, decimal-leading-zero);
  font-family: "Roboto";
  font-weight: 900;
  -webkit-text-stroke: 1px rgba(180, 210, 255, 0.5);
  font-size: 108px;
  line-height: 1em;
  color: transparent;
}
@media screen and (max-width: 768px) {
  .sec.reason .block__title:after {
    font-size: 64px;
    line-height: 1em;
  }
}
.sec.assign {
  background: rgba(0, 10, 20, 0.3);
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .sec.assign {
    padding: 60px 10px;
  }
}
.sec.assign .assign__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.sec.assign .assign__headline {
  text-align: center;
  font-size: 36px;
  line-height: 1em;
}
@media screen and (max-width: 768px) {
  .sec.assign .assign__headline {
    font-size: 43px;
    line-height: 1em;
  }
}
.sec.assign .assign__title {
  text-align: center;
  font-size: 42px;
  line-height: 1em;
}
@media screen and (max-width: 768px) {
  .sec.assign .assign__title {
    font-size: 30px;
    line-height: 1.4em;
  }
}
.sec.assign .assign__title br {
  display: none;
}
@media screen and (max-width: 768px) {
  .sec.assign .assign__title br {
    display: inherit;
  }
}
.sec.assign .block {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .sec.assign .block {
    flex-direction: column;
    gap: 15px;
  }
}
.sec.assign .block__item {
  width: 100%;
  max-width: calc(33.3% - 20px);
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: linear-gradient(to top, rgba(0, 10, 40, 0.15), rgba(120, 0, 255, 0.15));
  padding: 25px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .sec.assign .block__item {
    max-width: 100%;
  }
}
.sec.assign .block__image {
  font-size: 0;
  line-height: 0;
  text-align: center;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .sec.assign .block__image {
    padding: 10px 20px 0;
  }
}
.sec.assign .block__image img {
  width: auto;
  height: 263px;
}
@media screen and (max-width: 768px) {
  .sec.assign .block__image img {
    width: 100%;
    height: auto;
  }
}
.sec.assign .block__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sec.assign .block__title {
  font-size: 22px;
  line-height: 1.5em;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .sec.assign .block__title {
    font-size: 18px;
    line-height: 1.5em;
  }
}
.sec.assign .block__desc {
  padding: 0 25px;
}
@media screen and (max-width: 768px) {
  .sec.assign .block__desc {
    font-size: 13px;
    line-height: 1.8em;
  }
}
.sec.service {
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .sec.service {
    padding: 60px 10px;
  }
}
.sec.service .service__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.sec.service .service__headline {
  font-size: 36px;
  line-height: 1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec.service .service__headline {
    font-size: 43px;
    line-height: 1em;
  }
}
.sec.service .service__title {
  font-size: 42px;
  line-height: 1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec.service .service__title {
    font-size: 30px;
    line-height: 1em;
  }
}
.sec.service .block {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .sec.service .block {
    gap: 30px;
  }
}
.sec.service .block__image {
  font-size: 0;
  line-height: 0;
}
.sec.service .block__desc {
  font-size: 16px;
  line-height: 2.2em;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .sec.service .block__desc {
    padding: 0 10px;
    font-size: 14px;
    line-height: 1.8em;
    margin-top: 0;
  }
}
.sec.service .block__btn {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .sec.service .block__btn {
    justify-content: center;
  }
}
.sec.awards {
  background: rgba(0, 10, 20, 0.3);
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .sec.awards {
    padding: 60px 10px;
  }
}
.sec.awards + .awards {
  padding-top: 0;
}
.sec.awards .awards__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .sec.awards .awards__header {
    margin-bottom: 20px;
  }
}
.sec.awards .awards__headline {
  font-size: 36px;
  line-height: 1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec.awards .awards__headline {
    font-size: 43px;
    line-height: 1em;
  }
}
.sec.awards .awards__title {
  font-size: 42px;
  line-height: 1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec.awards .awards__title {
    font-size: 30px;
    line-height: 1em;
  }
}
.sec.awards .awards__footer {
  margin-top: 32px;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .sec.awards .awards__footer {
    margin-top: 20px;
    justify-content: center;
  }
}
.sec.case {
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .sec.case {
    padding: 60px 10px;
  }
}
.sec.voice {
  padding: 0 0 120px;
}
@media screen and (max-width: 768px) {
  .sec.voice {
    padding: 0 10px 60px;
  }
  .sec.voice .list-voice__item {
    margin: 0 5px;
  }
  .sec.voice .list-voice .item__title {
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
  .sec.voice .list-voice .item__desc {
    margin-bottom: 8px;
  }
}
.sec.bnr {
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .sec.bnr {
    padding-bottom: 60px;
  }
}
.sec.bnr.adjustment {
  padding-top: 128px;
}
@media screen and (max-width: 768px) {
  .sec.bnr.adjustment {
    padding-top: 64px;
  }
}
.sec.bnr .block {
  font-size: 0;
  line-height: 0;
  display: flex;
  box-sizing: border-box;
  justify-content: center;
  padding: 0 20px;
  gap: 22px;
}
@media screen and (max-width: 768px) {
  .sec.bnr .block {
    flex-direction: column;
    gap: 15px;
    padding: 0 10px;
  }
}
.sec.bnr .block__item {
  display: block;
  font-size: 0;
  line-height: 0;
  width: calc(50% + 11px);
}
@media screen and (max-width: 768px) {
  .sec.bnr .block__item {
    width: 100%;
  }
}
.sec.bnr .block__item img {
  width: 100%;
  height: auto;
}
@media (hover: hover) {
  .sec.bnr .block__item:hover {
    opacity: 0.7;
  }
}
.sec.news {
  padding: 0 0 120px;
}
@media screen and (max-width: 768px) {
  .sec.news {
    padding: 0 10px 60px;
  }
}
.sec.contact {
  background: url(../img/sec-contact-bg.avif);
  background-size: cover;
  background-position: center center;
  border-radius: 48px 48px 0 0;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .sec.contact {
    background-position: 150vw top;
    background-size: auto 100%;
    border-radius: 14px 14px 0 0;
  }
}
.sec.contact .contact__header {
  text-align: center;
}
.sec.contact .contact__headline {
  font-size: 36px;
  line-height: 1em;
}
.sec.contact .contact__title {
  font-size: 42px;
  line-height: 1em;
  margin: 16px 0 32px;
}
@media screen and (max-width: 768px) {
  .sec.contact .contact__title {
    font-size: 30px;
    line-height: 1em;
    margin: 13px 0 20px;
  }
}
.sec.contact .contact__desc {
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .sec.contact .contact__desc {
    margin-bottom: 30px;
  }
}
.sec.contact .contact__desc p {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .sec.contact .contact__desc p {
    font-size: 14px;
    line-height: 1.8em;
  }
}
.sec.contact .contact__desc p:not(:last-child) {
  margin-bottom: 1em;
}
.sec.contact .contact__link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .sec.contact .contact__link {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
  }
}
.sec.related {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .sec.related {
    padding: 60px 0;
  }
}
@media screen and (max-width: 768px) {
  .sec.related .sec__header {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .sec.related .sec__header .sec__headline {
    font-size: 32px;
    line-height: 1em;
  }
}

.list-bnr {
  font-size: 0;
  line-height: 0;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 980px;
}
.list-bnr .slick-list {
  overflow: inherit;
}
.list-bnr__item {
  float: left;
  margin: 0 5px;
}
@media (hover: hover) {
  .list-bnr__item a:hover {
    opacity: 0.7;
  }
}
.list-bnr__item img {
  border-radius: 4px;
}

.list-link {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.list-link__item a {
  display: flex;
  background: #dce1eb;
  box-sizing: border-box;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-radius: 4px;
  position: relative;
}
.list-link__item a:link, .list-link__item a:visited {
  text-decoration: none;
  color: #000f37;
}
.list-link__item a:hover, .list-link__item a:active {
  text-decoration: none;
  color: #000f37;
}
.list-link__item a span {
  display: inline-block;
  transform: translateY(-2px);
}
.list-link__item a:after {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background: url(../img/icon-arrow-b.svg);
  background-size: cover;
  flex-shrink: 0;
  position: absolute;
  right: 10px;
  top: calc(50% - 10px);
}
@media (hover: hover) {
  .list-link__item a:hover {
    opacity: 0.7;
  }
}
.list-link__item a.active {
  pointer-events: none;
  opacity: 0.7;
}

.list-awards {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 20px;
}
.list-awards--center {
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .list-awards {
    gap: 6px;
  }
}
.list-awards__item {
  width: calc(25% - 15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: linear-gradient(to top, rgba(0, 10, 40, 0.15), rgba(120, 0, 255, 0.15));
  box-sizing: border-box;
  padding: 4px;
}
@media screen and (max-width: 768px) {
  .list-awards__item {
    width: calc(50% - 3px);
  }
}
.list-awards__item:link, .list-awards__item:visited {
  text-decoration: none;
  color: #fff;
}
.list-awards__item:hover, .list-awards__item:active {
  text-decoration: none;
  color: #fff;
}
.list-awards__item.adjustment {
  pointer-events: none;
}
@media (hover: hover) {
  .list-awards__item:hover {
    opacity: 0.7;
  }
}
.list-awards__image {
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
}
.list-awards__image img {
  width: 100%;
  height: auto;
}
.list-awards__title {
  margin: 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.5em;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .list-awards__title {
    font-size: 14px;
    line-height: 1.5em;
  }
}

.list-case {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.list-case__item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: linear-gradient(to right, rgba(0, 10, 40, 0.15), rgba(120, 0, 255, 0.15));
  box-sizing: border-box;
  padding: 10px;
  display: flex;
  gap: 40px;
  position: relative;
}
.list-case__item:before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background: url(../img/icon-arrow-w.svg);
  background-size: cover;
  position: absolute;
  right: 20px;
  bottom: 20px;
}
@media screen and (max-width: 768px) {
  .list-case__item:before {
    right: 10px;
    bottom: 10px;
  }
}
@media (hover: hover) {
  .list-case__item:hover {
    opacity: 0.7;
  }
}
.list-case .item:link, .list-case .item:visited {
  text-decoration: none;
  color: #fff;
}
.list-case .item:hover, .list-case .item:active {
  text-decoration: none;
  color: #fff;
}
.list-case .item__image {
  font-size: 0;
  line-height: 0;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.list-case .item__text {
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .list-case .item__text {
    padding-right: 0;
  }
}
.list-case .item__header {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
  position: relative;
  padding-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .list-case .item__header {
    flex-direction: row;
    align-items: center;
  }
  .list-case .item__header .item__image {
    width: 130px;
  }
  .list-case .item__header > div:not(.item__image) {
    width: calc(100% - 142px);
  }
}
.list-case .item__header:before {
  content: "";
  width: 120px;
  height: 1px;
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  background: linear-gradient(to right, #6400ff, #b400ff);
}
.list-case .item__copy {
  font-size: 14px;
  line-height: 1.5em;
  color: #78a0ff;
}
@media screen and (max-width: 768px) {
  .list-case .item__copy {
    font-size: 11px;
    line-height: 1.5em;
  }
}
.list-case .item__title {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .list-case .item__title {
    font-size: 18px;
    line-height: 1.5em;
  }
}
.list-case .item__info {
  font-size: 14px;
  line-height: 1.5em;
}
@media screen and (max-width: 768px) {
  .list-case .item__info {
    font-size: 12px;
    line-height: 1.5em;
  }
}

.list-case-s {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .list-case-s {
    gap: 20px 10px;
  }
}
.list-case-s__item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: linear-gradient(to right, rgba(0, 10, 40, 0.15), rgba(120, 0, 255, 0.15));
  box-sizing: border-box;
  padding: 10px 10px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  width: calc(50% - 10px);
}
@media screen and (max-width: 768px) {
  .list-case-s__item {
    width: calc(50% - 5px);
  }
}
@media screen and (max-width: 480px) {
  .list-case-s__item {
    width: 100%;
  }
}
.list-case-s__item:before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background: url(../img/icon-arrow-w.svg);
  background-size: cover;
  position: absolute;
  right: 10px;
  bottom: 10px;
}
.list-case-s--slider {
  display: block;
  zoom: 1;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s;
  position: relative;
}
.list-case-s--slider.slick-initialized {
  opacity: 1;
}
.list-case-s--slider .item {
  float: left;
}
.list-case-s--slider .slick-arrow {
  position: absolute;
  top: calc(35% - 20px);
  width: 40px;
  height: 40px;
  z-index: 100;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .list-case-s--slider .slick-arrow {
    width: 30px;
    height: 30px;
    top: calc(25% - 15px);
  }
}
@media (hover: hover) {
  .list-case-s--slider .slick-arrow:hover {
    opacity: 0.7;
  }
}
.list-case-s--slider .slick-prev {
  left: 20 !important;
}
@media screen and (max-width: 768px) {
  .list-case-s--slider .slick-prev {
    left: 5px !important;
  }
}
.list-case-s--slider .slick-next {
  right: 20 !important;
}
@media screen and (max-width: 768px) {
  .list-case-s--slider .slick-next {
    right: 5px !important;
  }
}
.list-case-s .item:link, .list-case-s .item:visited {
  text-decoration: none;
  color: #fff;
}
.list-case-s .item:hover, .list-case-s .item:active {
  text-decoration: none;
  color: #fff;
}
.list-case-s .item__image {
  font-size: 0;
  line-height: 0;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.list-case-s .item__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 5/3;
  object-fit: cover;
}
.list-case-s .item__text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 18px 10px 0;
  box-sizing: border-box;
}
.list-case-s .item__header {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .list-case-s .item__header {
    flex-direction: row;
    align-items: center;
  }
  .list-case-s .item__header .item__image {
    width: 130px;
  }
  .list-case-s .item__header > div:not(.item__image) {
    width: calc(100% - 142px);
  }
}
.list-case-s .item__header:before {
  content: "";
  width: 120px;
  height: 1px;
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  background: linear-gradient(to right, #6400ff, #b400ff);
}
.list-case-s .item__date {
  font-size: 12px;
  line-height: 1em;
  font-weight: 400;
}
.list-case-s .item__copy {
  font-size: 13px;
  line-height: 1.5em;
}
@media screen and (max-width: 768px) {
  .list-case-s .item__copy {
    font-size: 11px;
    line-height: 1.5em;
  }
}
.list-case-s .item__title {
  margin: 0;
  font-size: 20px;
  line-height: 1.5em;
}
@media screen and (max-width: 768px) {
  .list-case-s .item__title {
    font-size: 18px;
    line-height: 1.5em;
  }
}
.list-case-s .item__cat {
  color: #78a0ff;
}
.list-case-s .item__info {
  font-size: 14px;
  line-height: 1.5em;
}
@media screen and (max-width: 768px) {
  .list-case-s .item__info {
    font-size: 12px;
    line-height: 1.5em;
  }
}

.list-voice {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.list-voice__item {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: linear-gradient(to top, rgba(0, 10, 40, 0.15), rgba(120, 0, 255, 0.15));
  box-sizing: border-box;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: calc(50% - 10px);
}
@media screen and (max-width: 768px) {
  .list-voice__item {
    width: 100%;
  }
}
.list-voice .item:link, .list-voice .item:visited {
  text-decoration: none;
  color: #fff;
}
.list-voice .item:hover, .list-voice .item:active {
  text-decoration: none;
  color: #fff;
}
.list-voice .item__title {
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
  position: relative;
  padding-bottom: 16px;
}
.list-voice .item__title:before {
  content: "";
  width: 80px;
  height: 1px;
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  background: linear-gradient(to right, #6400ff, #b400ff);
}
.list-voice .item__desc {
  font-size: 14px;
  line-height: 1.5em;
}
.list-voice .item__desc p {
  margin: 0;
}
.list-voice .item__desc p:not(:last-child) {
  margin-bottom: 1em;
}
.list-voice .item__info {
  font-size: 14px;
  line-height: 1.5em;
  color: #78a0ff;
}

.list-news {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.list-news__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 16px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .list-news__item {
    gap: 12px;
    padding: 16px 0;
  }
}
@media (hover: hover) {
  .list-news .item a:hover {
    opacity: 0.7;
  }
}
.list-news .item__date {
  font-size: 12px;
  line-height: 1.5em;
}
.list-news .item__cat a, .list-news .item__cat span {
  background: linear-gradient(to right, #6400ff, #b400ff);
  color: #fff;
  display: inline-block;
  font-size: 12px;
  line-height: 1.5em;
  padding: 8px 16px;
  border-radius: 100px;
}
@media screen and (max-width: 768px) {
  .list-news .item__cat a, .list-news .item__cat span {
    font-size: 10px;
    line-height: 1.5em;
    padding: 7px 14px;
  }
}
.list-news .item__cat a:link, .list-news .item__cat a:visited, .list-news .item__cat span:link, .list-news .item__cat span:visited {
  text-decoration: none;
  color: #fff;
}
.list-news .item__cat a:hover, .list-news .item__cat a:active, .list-news .item__cat span:hover, .list-news .item__cat span:active {
  text-decoration: none;
  color: #fff;
}
.list-news .item__title {
  width: 100%;
  margin: 0;
  font-size: 18px;
  line-height: 1.5em;
}
@media screen and (max-width: 768px) {
  .list-news .item__title {
    font-size: 16px;
    line-height: 1.5em;
  }
}
.list-news .item__title a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}
.list-news .item__title a:link, .list-news .item__title a:visited {
  text-decoration: none;
  color: #fff;
}
.list-news .item__title a:hover, .list-news .item__title a:active {
  text-decoration: none;
  color: #fff;
}
.list-news .item__title a:after {
  content: "";
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  display: block;
  transition: background 0.3s;
  flex-shrink: 0;
}
.list-news .item__title a:before {
  content: "";
  width: 6px;
  height: 6px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  right: 8px;
  top: calc(50% - 3px);
  transform: rotate(45deg);
  border-top: 2px solid #000f37;
  border-right: 2px solid #000f37;
}

.list-voice .slick-dots,
.list-related .slick-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  padding-bottom: 12px;
}
.list-voice .slick-dots > li button,
.list-related .slick-dots > li button {
  display: block;
  font-size: 0;
  line-height: 0;
  text-indent: 100%;
  padding: 0;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  width: 10px;
  height: 10px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
}
.list-voice .slick-dots > li.slick-active button,
.list-related .slick-dots > li.slick-active button {
  border-color: #fff;
  background: #fff;
}

.list-related {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0;
  line-height: 0;
}
.list-related__item {
  display: block;
  width: calc(33.3% - 14px);
}
@media screen and (max-width: 768px) {
  .list-related__item {
    margin: 0 5px;
  }
}
.list-related__item img {
  width: 100%;
  height: auto;
}
@media (hover: hover) {
  .list-related__item:hover {
    opacity: 0.7;
  }
}

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

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

.page-header {
  width: 100%;
  height: 378px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  box-sizing: border-box;
  padding-top: 80px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .page-header {
    margin-bottom: 20px;
    height: 340px;
  }
}
.page-header__image {
  font-size: 0;
  line-height: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.page-header__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
}
.page-header__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
.page-header__title {
  font-size: 58px;
  line-height: 1em;
  margin: 0;
  text-shadow: 0 0 20px rgba(0, 20, 60, 0.8);
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .page-header__title {
    font-size: 30px;
    line-height: 1em;
  }
}
@media screen and (max-width: 375px) {
  .page-header__title {
    font-size: 26px;
    line-height: 1em;
  }
}
@media screen and (max-width: 374px) {
  .page-header__title {
    font-size: 24px;
    line-height: 1em;
  }
}
.page-header__title--s {
  font-size: 42px;
  line-height: 1.2em;
}
@media screen and (max-width: 768px) {
  .page-header__title--s {
    font-size: 24px;
    line-height: 1.2em;
  }
}
.page-header__title-en {
  font-size: 28px;
  line-height: 1em;
  margin: 0;
  font-family: "Roboto";
  font-weight: 600;
  text-shadow: 0 0 20px rgba(0, 20, 60, 0.8);
}
@media screen and (max-width: 768px) {
  .page-header__title-en {
    font-size: 18px;
    line-height: 1em;
  }
}
.page-header .topicpath {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  font-size: 14px;
  line-height: 1.5em;
  gap: 4px;
  width: calc(100% - 60px);
  position: absolute;
  left: 30px;
  top: 112px;
}
@media screen and (max-width: 768px) {
  .page-header .topicpath {
    left: 10px;
    font-size: 10px;
    line-height: 1.5em;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.page-header .topicpath li {
  display: flex;
  justify-content: flex-start;
  gap: 4px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .page-header .topicpath li {
    display: inline;
  }
}
.page-header .topicpath li:not(:first-child):before {
  content: ">";
}
@media screen and (max-width: 768px) {
  .page-header .topicpath li:not(:first-child):before {
    display: inline;
  }
}
.page-header .topicpath li a:link, .page-header .topicpath li a:visited {
  text-decoration: none;
  color: #fff;
}
.page-header .topicpath li a:hover, .page-header .topicpath li a:active {
  text-decoration: none;
  color: #fff;
}

.column {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  padding-bottom: 160px;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .column {
    padding: 0 10px;
    gap: 60px;
  }
}
.column__main {
  width: 100%;
  max-width: calc(74% - 80px);
}
@media screen and (max-width: 768px) {
  .column__main {
    max-width: 100%;
  }
}
.column__main:first-child:last-child {
  max-width: 100%;
}
.column__sub {
  width: 100%;
  max-width: 26%;
}
@media screen and (max-width: 768px) {
  .column__sub {
    max-width: 100%;
  }
}
.column__title {
  font-size: 32px;
  line-height: 1.2em;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-sizing: border-box;
  padding-bottom: 24px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .column__title {
    font-size: 24px;
    line-height: 1.2em;
  }
}
.column__title--none {
  margin-bottom: 0;
}
.column__title span {
  font-size: 18px;
  line-height: 1.4em;
  color: #78a0ff;
}
.column__title:after {
  content: "";
  width: 120px;
  height: 1px;
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  background: linear-gradient(to right, #6400ff, #b400ff);
}
.column__title + .list-news {
  margin-top: -30px;
}
.column__title + .list-news__item:first-child {
  border-top: none;
}
.column__subtitle {
  font-size: 24px;
  line-height: 1.5em;
  padding-bottom: 21px;
  position: relative;
  margin: 0 0 20px;
}
@media screen and (max-width: 768px) {
  .column__subtitle {
    font-size: 18px;
    line-height: 1.5em;
  }
}
.column__subtitle:after {
  content: "";
  width: 80px;
  height: 1px;
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  background: linear-gradient(to right, #6400ff, #b400ff);
}
.column__subtitle span {
  font-size: 16px;
  line-height: 1em;
  color: #78a0ff;
}

.sub-nav {
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  background: rgba(0, 10, 40, 0.6);
}
.sub-nav:not(:last-child) {
  margin-bottom: 30px;
}
.sub-nav__title {
  background: linear-gradient(to right, #6400ff, #b400ff);
  color: #fff;
  margin: 0;
  padding: 15px;
  display: flex;
  justify-content: center;
}
.sub-nav-top {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(180, 190, 210, 0.4);
}
.sub-nav-top > a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  line-height: 1.5em;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .sub-nav-top > a {
    font-size: 16px;
    line-height: 1.5em;
    padding: 15px;
  }
}
.sub-nav-top > a:link, .sub-nav-top > a:visited {
  text-decoration: none;
  color: #fff;
}
.sub-nav-top > a:hover, .sub-nav-top > a:active {
  text-decoration: none;
  color: #fff;
}
@media (hover: hover) {
  .sub-nav-top > a:hover, .sub-nav-top > a:active {
    opacity: 0.7;
  }
}
.sub-nav-top > a:before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background: url(../img/icon-arrow-w.svg);
  background-size: cover;
}
.sub-nav-list {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0;
  padding: 0;
  border-radius: 0 0 12px 12px;
  list-style: none;
}
.sub-nav-list__item:not(:first-child) {
  border-top: 1px solid rgba(180, 190, 210, 0.4);
}
.sub-nav-list__item > a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  line-height: 1.5em;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .sub-nav-list__item > a {
    font-size: 16px;
    line-height: 1.5em;
    padding: 15px;
  }
}
.sub-nav-list__item > a:link, .sub-nav-list__item > a:visited {
  text-decoration: none;
  color: #fff;
}
.sub-nav-list__item > a:hover, .sub-nav-list__item > a:active {
  text-decoration: none;
  color: #fff;
}
@media (hover: hover) {
  .sub-nav-list__item > a:hover, .sub-nav-list__item > a:active {
    opacity: 0.7;
  }
}
.sub-nav-list__item > a:before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background: url(../img/icon-arrow-w.svg);
  background-size: cover;
}
.sub-nav-list__item > .sub-nav-list {
  list-style: none;
  padding: 0 20px 18px 48px;
  margin: -12px 0 0;
}
@media screen and (max-width: 768px) {
  .sub-nav-list__item > .sub-nav-list {
    padding-left: 42px;
  }
}
.sub-nav-list__item > .sub-nav-list .sub-nav-list__item a {
  display: block;
  font-size: 16px;
  line-height: 1.5em;
  position: relative;
  padding: 0 0 0 8px;
}
.sub-nav-list__item > .sub-nav-list .sub-nav-list__item a:link, .sub-nav-list__item > .sub-nav-list .sub-nav-list__item a:visited {
  text-decoration: none;
  color: #a0bedc;
}
.sub-nav-list__item > .sub-nav-list .sub-nav-list__item a:hover, .sub-nav-list__item > .sub-nav-list .sub-nav-list__item a:active {
  text-decoration: none;
  color: #a0bedc;
}
@media screen and (max-width: 768px) {
  .sub-nav-list__item > .sub-nav-list .sub-nav-list__item a:hover, .sub-nav-list__item > .sub-nav-list .sub-nav-list__item a:active {
    color: #fff;
  }
}
.sub-nav-list__item > .sub-nav-list .sub-nav-list__item a:before {
  display: none;
}
.sub-nav-list__item > .sub-nav-list .sub-nav-list__item a:after {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
}
.sub-nav-info {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0;
  padding: 10px 10px 32px;
  border-radius: 0 0 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sub-nav-info__image {
  font-size: 0;
  line-height: 0;
}
.sub-nav-info__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 5/3;
  object-fit: cover;
  border-radius: 8px;
}
.sub-nav-info__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 10px;
}
.sub-nav-info__title {
  font-size: 20px;
  line-height: 1.5em;
  margin: 0;
}
.sub-nav-info__btn {
  display: flex;
  justify-content: center;
}
.sub-nav-info__btn .btn--secondary {
  max-width: 278px;
}

.pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .pager {
    gap: 10px;
  }
}
.pager__arrow {
  font-size: 0;
  line-height: 0;
  flex-shrink: 0;
}
.pager__arrow--next {
  transform: scale(-1, 1);
}
.pager__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 1;
}
@media screen and (max-width: 768px) {
  .pager__inner {
    gap: 5px;
  }
}
.pager__item {
  font-family: "Roboto";
  font-weight: 600;
  font-size: 18px;
  line-height: 1em;
}
@media screen and (max-width: 768px) {
  .pager__item {
    font-size: 12px;
    line-height: 1em;
  }
}
.pager__item:first-child:last-child {
  display: none;
}
.pager__item a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 4px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 4px;
  background: #f8fcf8;
}
@media screen and (max-width: 768px) {
  .pager__item a {
    padding: 4px 4px;
    min-width: 24px;
    min-height: 24px;
  }
}
.pager__item a:link, .pager__item a:visited {
  text-decoration: none;
  color: #000f37;
}
.pager__item a:hover, .pager__item a:active {
  text-decoration: none;
  color: #000f37;
}
.pager__item span {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 4px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 4px;
  background: #78a0ff;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .pager__item span {
    padding: 4px 4px;
    min-width: 24px;
    min-height: 24px;
  }
}

.doc-main {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 10, 40, 0.6);
  border-radius: 12px;
  margin-bottom: 80px;
  padding: 32px 20px 48px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .doc-main {
    padding: 20px 15px;
    gap: 16px;
  }
}
.doc-main__title {
  font-size: 32px;
  line-height: 1.5em;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .doc-main__title {
    font-size: 24px;
    line-height: 1.2em;
  }
}
.doc-main__btn {
  width: 100%;
  display: flex;
  justify-content: center;
}

.list-doc {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.list-doc__item {
  width: calc(25% - 15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: linear-gradient(to top, rgba(0, 10, 40, 0.15), rgba(120, 0, 255, 0.15));
  box-sizing: border-box;
  padding: 4px 4px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 1200px) {
  .list-doc__item {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 480px) {
  .list-doc__item {
    width: 100%;
  }
}
.list-doc .item__image {
  font-size: 0;
  line-height: 0;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}
.list-doc .item__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 8/5;
  object-fit: cover;
}
.list-doc .item__text {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .list-doc .item__text {
    padding: 0 6px;
  }
}
.list-doc .item__title {
  margin: 0;
  font-size: 20px;
  line-height: 1.5em;
  font-weight: 600;
  min-height: 90px;
}
@media screen and (max-width: 768px) {
  .list-doc .item__title {
    min-height: 0;
    font-size: 18px;
    line-height: 1.5em;
  }
}
.list-doc .item__title a:link, .list-doc .item__title a:visited, .list-doc .item__title a:hover, .list-doc .item__title a:active {
  text-decoration: none;
  color: #fff;
}
.list-doc .item__desc {
  font-size: 14px;
  line-height: 1.5em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .list-doc .item__desc {
    font-size: 11px;
    line-height: 1.5em;
  }
}
.list-doc .item__desc a:link, .list-doc .item__desc a:visited, .list-doc .item__desc a:hover, .list-doc .item__desc a:active {
  text-decoration: none;
  color: #fff;
}
.list-doc .item__btn {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .list-doc .item__btn {
    padding: 0 6px;
  }
}
.list-doc .item__btn > div {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1201px) {
  .list-doc .item__btn .btn {
    max-width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .list-doc .item__btn .btn {
    max-width: 100%;
  }
}

.list-issue {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .list-issue {
    gap: 20px;
  }
}
.list-issue__item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: linear-gradient(to right, rgba(0, 10, 40, 0.15), rgba(120, 0, 255, 0.15));
  box-sizing: border-box;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .list-issue__item {
    padding: 20px 10px 10px;
  }
}
.list-issue .item__title {
  width: 100%;
  margin: 0;
  font-size: 24px;
  line-height: 1.5em;
  position: relative;
  padding-left: 16px;
}
@media screen and (max-width: 768px) {
  .list-issue .item__title {
    font-size: 18px;
    line-height: 1.5em;
  }
}
.list-issue .item__title:before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(to top, #6400ff, #b400ff);
}
.list-issue .item__block {
  width: 100%;
  max-width: calc(50% - 10px);
  display: block;
}
@media screen and (max-width: 768px) {
  .list-issue .item__block {
    max-width: 100%;
  }
}
.list-issue .item__block:link, .list-issue .item__block:visited {
  text-decoration: none;
  color: #fff;
}
.list-issue .item__block:hover, .list-issue .item__block:active {
  text-decoration: none;
  color: #fff;
}
.list-issue .item__block dl {
  margin: 0;
  padding: 0;
}
.list-issue .item__block dl dt {
  background: linear-gradient(to right, #6400ff, #b400ff);
  margin: 0;
  font-size: 20px;
  line-height: 1.5em;
  padding: 16px 20px;
  border-radius: 12px 12px 0 0;
}
@media screen and (max-width: 768px) {
  .list-issue .item__block dl dt {
    font-size: 18px;
    line-height: 1.5em;
  }
}
.list-issue .item__block dl dd {
  margin: 0;
  padding: 20px 20px 30px;
  background: rgba(0, 10, 40, 0.6);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0 0 12px 12px;
  position: relative;
}
.list-issue .item__block dl dd:after {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background: url(../img/icon-arrow-p.svg);
  background-size: cover;
  position: absolute;
  right: 10px;
  bottom: 10px;
}
.list-issue .item__block dl dd ul {
  margin: 0;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.list-issue .item__block dl dd ul li {
  display: flex;
  justify-content: flex-start;
  font-size: 14px;
  line-height: 1.5em;
  gap: 8px;
}
.list-issue .item__block dl dd ul li:before {
  content: "";
  width: 14px;
  height: 14px;
  display: block;
  border-radius: 50%;
  box-sizing: border-box;
  border: 2px solid #78a0ff;
  flex-shrink: 0;
  transform: translateY(4px);
}
.list-issue .item__block dl dd ul li br {
  display: none;
}

.contents {
  padding: 90px 0;
}
@media screen and (max-width: 768px) {
  .contents {
    padding: 60px 0;
  }
}
.contents:first-child {
  padding-top: 0;
}
.contents:last-child {
  padding-bottom: 0;
}
.contents + .contents {
  padding-top: 0;
}
.contents__bottom {
  display: flex;
  justify-content: center;
}
.contents__bottom:not(:first-child) {
  margin-top: 40px;
}
.contents__bottom + .contents__bottom {
  margin-top: 30px;
}
.contents.reason {
  padding: 90px 0;
}
@media screen and (max-width: 768px) {
  .contents.reason {
    padding: 60px 0;
  }
}
.contents.reason + .reason {
  padding-top: 0;
}
.contents.reason .block {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .contents.reason .block {
    flex-direction: column;
    gap: 20px;
  }
}
.contents.reason .block:not(:last-child) {
  margin-bottom: 48px;
}
.contents.reason .block__image {
  width: 100%;
  max-width: 480px;
  margin-bottom: auto;
}
@media screen and (max-width: 1200px) {
  .contents.reason .block__image {
    max-width: calc(50% - 20px);
  }
}
@media screen and (max-width: 768px) {
  .contents.reason .block__image {
    max-width: 100%;
  }
}
.contents.reason .block__text {
  width: 100%;
  max-width: calc(100% - 520px);
  box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
  .contents.reason .block__text {
    max-width: calc(50% - 20px);
  }
}
@media screen and (max-width: 768px) {
  .contents.reason .block__text {
    max-width: 100%;
    padding: 0 10px;
    font-size: 13px;
    line-height: 1.8em;
  }
}
.contents.reason .block:nth-of-type(even) .block__image {
  order: 2;
}
@media screen and (max-width: 768px) {
  .contents.reason .block:nth-of-type(even) .block__image {
    order: 1;
  }
}
.contents.reason .block:nth-of-type(even) .block__text {
  order: 1;
}
@media screen and (max-width: 768px) {
  .contents.reason .block:nth-of-type(even) .block__text {
    order: 2;
  }
}
.contents.consul {
  padding: 90px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .contents.consul {
    padding: 60px 0;
  }
}
.contents.consul:before {
  content: "";
  width: 100vw;
  height: 100%;
  display: block;
  z-index: -1;
  position: absolute;
  left: calc(50% - 50vw);
  top: 0;
  background: rgba(0, 10, 20, 0.3);
}
.contents.consul .block {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .contents.consul .block {
    flex-direction: column;
    gap: 15px;
  }
}
.contents.consul .block__item {
  width: 100%;
  max-width: calc(50% - 15px);
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: linear-gradient(to top, rgba(0, 10, 40, 0.15), rgba(120, 0, 255, 0.15));
  padding: 20px 18px;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .contents.consul .block__item {
    max-width: 100%;
  }
}
.contents.consul .block__image {
  font-size: 0;
  line-height: 0;
  text-align: center;
  flex-shrink: 0;
}
.contents.consul .block__image img {
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 135px;
  border-radius: 50%;
}
.contents.consul .block__text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contents.consul .block__title {
  font-size: 22px;
  line-height: 1.5em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-sizing: border-box;
  padding-bottom: 15px;
  margin: 0;
  display: flex;
  flex-direction: column;
  position: relative;
}
.contents.consul .block__title span {
  font-size: 18px;
  line-height: 1.4em;
  color: #78a0ff;
}
.contents.consul .block__title:after {
  content: "";
  width: 120px;
  height: 1px;
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  background: linear-gradient(to right, #6400ff, #b400ff);
}
@media screen and (max-width: 768px) {
  .contents.consul .block__title {
    font-size: 18px;
    line-height: 1.5em;
  }
}
.contents.consul .block__title span {
  color: #78a0ff;
  font-size: 14px;
  line-height: 1.5em;
}
.contents.consul .block__desc {
  font-size: 14px;
  line-height: 1.8em;
}
@media screen and (max-width: 768px) {
  .contents.consul .block__desc {
    font-size: 13px;
    line-height: 1.8em;
  }
}
.contents.awards {
  padding: 90px 0 0;
}
@media screen and (max-width: 768px) {
  .contents.awards {
    padding: 60px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .contents.awards:last-child {
    padding-bottom: 60px;
  }
}
.contents.awards .awards__footer {
  margin-top: 48px;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .contents.awards .awards__footer {
    justify-content: center;
  }
}
.contents.service .block__image {
  font-size: 0;
  line-height: 0;
  margin-bottom: 32px;
}
.contents.service .block__desc {
  font-size: 16px;
  line-height: 1.8em;
}
@media screen and (max-width: 768px) {
  .contents.service .block__desc {
    font-size: 15px;
    line-height: 1.8em;
    padding: 0 10px;
  }
}
.contents.case {
  position: relative;
  padding: 90px 0;
}
.contents.case:after {
  content: "";
  width: 100vw;
  height: 100%;
  position: absolute;
  left: calc(50% - 50vw);
  top: 0;
  background: rgba(0, 10, 20, 0.3);
  z-index: -1;
}
.contents.faq {
  position: relative;
  padding: 90px 0;
}
.contents.solution {
  position: relative;
  padding: 90px 0;
}
.contents.solution:after {
  content: "";
  width: 100vw;
  height: 100%;
  position: absolute;
  left: calc(50% - 50vw);
  top: 0;
  background: rgba(0, 10, 20, 0.3);
  z-index: -1;
}
.contents.solution .headline {
  text-align: center;
  font-size: 36px;
  line-height: 1em;
}
.contents.solution .title {
  text-align: center;
  font-size: 42px;
  line-height: 1.4em;
}
@media screen and (max-width: 768px) {
  .contents.solution .title {
    font-size: 24px;
    line-height: 1.4em;
  }
}
.contents.solution .block__header {
  margin-bottom: 32px;
}
.contents.solution .block__text {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.contents.solution .block__title {
  text-align: center;
  padding: 0;
  margin: 0;
  font-size: 22px;
  line-height: 1.5em;
  font-weight: bold;
  margin-bottom: 10px;
}
.contents.solution .block__item {
  width: calc(33.3% - 14px);
  box-sizing: border-box;
  background: linear-gradient(to top, rgba(0, 10, 40, 0.15), rgba(120, 0, 255, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .contents.solution .block__item {
    width: 100%;
    padding: 15px;
  }
}

.localnav-list-header {
  text-align: center;
  color: #fff;
  background: linear-gradient(to right, #6400ff, #b400ff);
  font-size: 22px;
  line-height: 1em;
  font-weight: bold;
  padding: 15px;
  border-radius: 12px 12px 0 0;
}
@media screen and (max-width: 768px) {
  .localnav-list-header {
    font-size: 14px;
    line-height: 1em;
    padding: 10px;
  }
}
.localnav-list-header + .localnav-list {
  border-radius: 0 0 12px 12px;
}

.localnav-list {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 10, 40, 0.6);
  border-radius: 12px;
  position: relative;
}
.localnav-list__item {
  width: 25%;
  box-sizing: border-box;
  font-size: 0;
  line-height: 0;
}
@media screen and (max-width: 1200px) {
  .localnav-list__item {
    width: 100%;
  }
  .localnav-list__item:before, .localnav-list__item:after {
    display: none !important;
  }
}
@media screen and (max-width: 1200px) {
  .localnav-list__item--blank {
    display: none;
  }
}
.localnav-list__item:first-child:before {
  content: "";
  width: 1px;
  height: 100%;
  display: block;
  position: absolute;
  left: 25%;
  background: #525A71;
}
.localnav-list__item:nth-of-type(2):before {
  content: "";
  width: 1px;
  height: 100%;
  display: block;
  position: absolute;
  left: 50%;
  background: #525A71;
}
.localnav-list__item:nth-of-type(3):before {
  content: "";
  width: 1px;
  height: 100%;
  display: block;
  position: absolute;
  left: 75%;
  background: #525A71;
}
.localnav-list__item:nth-of-type(5):after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  background: #525A71;
}
@media screen and (max-width: 1200px) {
  .localnav-list__item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }
}
.localnav-list__item a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  font-size: 18px;
  line-height: 1.5em;
  min-height: 80px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .localnav-list__item a {
    font-size: 15px;
    line-height: 1.5em;
    min-height: 60px;
  }
  .localnav-list__item a br {
    display: none;
  }
}
.localnav-list__item a:link, .localnav-list__item a:visited {
  text-decoration: none;
  color: #fff;
}
.localnav-list__item a:hover, .localnav-list__item a:active {
  text-decoration: none;
  color: #fff;
}
@media (hover: hover) {
  .localnav-list__item a:hover, .localnav-list__item a:active {
    opacity: 0.7;
  }
}
.localnav-list__item a:before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background: url(../img/icon-arrow-w.svg);
  background-size: cover;
  flex-shrink: 0;
  transform: rotate(90deg);
}
.localnav-list__item a.link:before {
  transform: rotate(0);
}

.lineup-list {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: linear-gradient(to left, rgba(0, 10, 40, 0.15), rgba(120, 0, 255, 0.15));
  box-sizing: border-box;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
}
.lineup-list:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .lineup-list {
    padding: 10px 5px;
  }
}
.lineup-list__title {
  text-align: center;
  font-size: 32px;
  line-height: 1.5em;
  font-weight: bold;
  color: #fff;
  width: 100%;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .lineup-list__title {
    font-size: 18px;
    line-height: 1.5em;
  }
}
.lineup-list__item {
  width: calc(20% - 16px);
  box-sizing: border-box;
  border-radius: 6px;
  background: rgba(0, 180, 255, 0.5);
  padding: 5px 10px 10px;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .lineup-list__item {
    width: 100%;
    padding-top: 0;
    overflow: hidden;
  }
}
.lineup-list__item:not(:last-child):before {
  content: "";
  width: 1px;
  height: 100%;
  display: block;
  position: absolute;
  right: -10px;
  background: rgba(255, 255, 255, 0.5);
  top: 0;
}
.lineup-list .item__title {
  font-size: 18px;
  line-height: 1.5em;
  text-align: center;
  background: linear-gradient(to right, #6400ff, #b400ff);
  white-space: nowrap;
  min-height: 43px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 10px;
  width: calc(100% + 10px);
  transform: translateX(-5px);
  position: relative;
}
@media screen and (max-width: 1200px) {
  .lineup-list .item__title {
    font-size: 11px;
    line-height: 1.5em;
    min-height: 24px;
    width: calc(100% + 20px);
    transform: translateX(-10px);
  }
}
.lineup-list .item__title:after {
  content: "";
  width: 20px;
  height: 43px;
  background: #b400ff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  left: calc(100% - 1px);
  top: 0;
  position: absolute;
  display: block;
}
@media screen and (max-width: 1200px) {
  .lineup-list .item__title:after {
    display: none;
  }
}
.lineup-list .item:last-child .item__title:after {
  display: none;
}
.lineup-list .item__block {
  background: #fff;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
  border-radius: 4px;
  margin: 0;
}
@media screen and (min-width: 1201px) {
  .lineup-list .item__block.active:not(.item__block--s) {
    opacity: 0.7;
    pointer-events: none;
  }
}
@media screen and (max-width: 1200px) {
  .lineup-list .item__block.active {
    opacity: 0.7;
    pointer-events: none;
  }
}
@media screen and (hover: hover) and (min-width: 1201px) {
  .lineup-list .item__block:hover:not(.item__block--s) {
    opacity: 0.7;
  }
}
@media screen and (hover: hover) and (max-width: 1200px) {
  .lineup-list .item__block:hover {
    opacity: 0.7;
  }
}
.lineup-list .item__block:not(:last-child) {
  margin-bottom: 5px;
}
.lineup-list .item__block--pink dt {
  background: #e650c8 !important;
}
@media screen and (max-width: 1200px) {
  .lineup-list .item__block--pink dt + dd {
    height: 90px !important;
  }
}
.lineup-list .item__block--pink dd:first-child:after {
  background: #e650c8 !important;
}
.lineup-list .item__block--blue dt {
  background: #3ca0df !important;
}
@media screen and (max-width: 1200px) {
  .lineup-list .item__block--blue dt + dd {
    height: 90px !important;
  }
}
.lineup-list .item__block--blue dd:first-child:after {
  background: #3ca0df !important;
}
.lineup-list .item__block--green dt {
  background: #50b450 !important;
}
@media screen and (max-width: 1200px) {
  .lineup-list .item__block--green dt + dd {
    height: 90px !important;
  }
}
.lineup-list .item__block--green dd:first-child:after {
  background: #50b450 !important;
}
@media screen and (max-width: 1200px) {
  .lineup-list .item__block--purple dt + dd {
    height: 90px !important;
  }
}
.lineup-list .item__block--l dd {
  height: 231px;
}
@media screen and (max-width: 1200px) {
  .lineup-list .item__block--l dd {
    height: 60px;
  }
}
.lineup-list .item__block--m dd {
  height: 166px;
}
@media screen and (max-width: 1200px) {
  .lineup-list .item__block--m dd {
    height: 60px;
  }
}
.lineup-list .item__block--ml dd {
  height: 124px;
}
@media screen and (max-width: 1200px) {
  .lineup-list .item__block--ml dd {
    height: 60px;
  }
}
.lineup-list .item__block--mm dd {
  height: 80px;
}
@media screen and (max-width: 1200px) {
  .lineup-list .item__block--mm dd {
    height: 60px;
  }
}
.lineup-list .item__block--ms dd {
  height: 80px;
}
@media screen and (max-width: 1200px) {
  .lineup-list .item__block--ms dd {
    height: 60px;
  }
}
.lineup-list .item__block--w {
  width: calc(300% + 80px);
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1200px) {
  .lineup-list .item__block--w {
    width: 100%;
  }
}
.lineup-list .item__block--w dd {
  height: 60px;
}
@media screen and (max-width: 1200px) {
  .lineup-list .item__block--w dd {
    height: 60px;
  }
}
.lineup-list .item__block--s {
  opacity: 0;
}
@media screen and (max-width: 1200px) {
  .lineup-list .item__block--s {
    opacity: 1;
  }
}
.lineup-list .item__block--s dd {
  height: 60px;
}
.lineup-list .item__block--xs dd {
  height: 52px;
}
@media screen and (max-width: 768px) {
  .lineup-list .item__block--xs dd {
    height: 60px;
  }
}
.lineup-list .item__block--xs dd a {
  font-size: 12px !important;
  line-height: 1.2em !important;
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 768px) {
  .lineup-list .item__block--xs dd a {
    font-size: 14px !important;
    line-height: 1.4em !important;
  }
}
.lineup-list .item__block dt {
  background: #6e46e6;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  min-height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  border-radius: 4px;
  width: calc(100% - 4px);
  position: absolute;
  left: 2px;
  top: 2px;
}
.lineup-list .item__block dt + dd a {
  padding-top: 32px;
}
.lineup-list .item__block dd {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  position: relative;
}
.lineup-list .item__block dd:first-child:after {
  content: "";
  width: 32px;
  height: 32px;
  background: #6e46e6;
  clip-path: polygon(0% 0, 100% 0%, 0 100%);
  left: 2px;
  top: 2px;
  position: absolute;
  display: block;
}
@media screen and (max-width: 768px) {
  .lineup-list .item__block dd:first-child:after {
    width: 16px;
    height: 16px;
  }
}
.lineup-list .item__block dd a {
  display: flex;
  font-size: 14px;
  line-height: 1.4em;
  text-align: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
}
.lineup-list .item__block dd a:link, .lineup-list .item__block dd a:visited {
  text-decoration: none;
  color: #00143c;
}
.lineup-list .item__block dd a:hover, .lineup-list .item__block dd a:active {
  text-decoration: none;
  color: #00143c;
}
.lineup-list .item__block dd a:before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background: url(../img/icon-arrow-b.svg);
  background-size: cover;
  flex-shrink: 0;
  position: absolute;
  right: 8px;
  bottom: 8px;
}
@media screen and (max-width: 1200px) {
  .lineup-list .item__block dd a:before {
    right: 10px;
    bottom: 10px;
  }
}

.slick-arrow {
  padding: 0;
  border: none;
  position: absolute;
  bottom: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: url(../img/icon-arrow-slider.svg) no-repeat;
  background-size: 100% auto;
  display: block;
  font-size: 0;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .slick-arrow {
    width: 30px;
    height: 30px;
  }
}
.slick-arrow.slick-prev {
  transform: scale(-1, 1);
  left: 15px;
}
.slick-arrow.slick-next {
  right: 15px;
}
.slick-arrow img {
  border-radius: 50%;
}

.slick-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .slick-dots {
    gap: 4px;
  }
}
.slick-dots > li button {
  display: block;
  font-size: 0;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  width: 120px;
  height: 8px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .slick-dots > li button {
    width: 40px;
    height: 4px;
  }
}
.slick-dots > li.slick-active button {
  background: linear-gradient(to right, #6400ff, #b400ff);
}

.lineup-list-s {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: linear-gradient(to right, rgba(0, 10, 40, 0.15), rgba(120, 0, 255, 0.15));
  box-sizing: border-box;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
.lineup-list-s:not(:last-child) {
  margin-bottom: 30px;
}
.lineup-list-s__header {
  position: relative;
  width: 100%;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .lineup-list-s__header {
    height: auto;
    padding: 30px 20px;
  }
}
.lineup-list-s__header-image {
  width: 100%;
  height: 100%;
  font-size: 0;
  line-height: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.lineup-list-s__header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lineup-list-s__header-image:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(0, 10, 40, 0.6);
  left: 0;
  top: 0;
  position: absolute;
}
.lineup-list-s__header-text {
  position: relative;
  z-index: 2;
  text-align: center;
}
.lineup-list-s__header-title {
  padding-bottom: 32px;
  position: relative;
  font-size: 32px;
  line-height: 1em;
  margin: 0 0 20px;
}
.lineup-list-s__header-title:after {
  content: "";
  width: 110px;
  height: 8px;
  border-radius: 2px;
  background: #3ca0df;
  position: absolute;
  left: calc(50% - 55px);
  bottom: 0;
}
.lineup-list-s__header-title--pink:after {
  background: #e650c8;
}
.lineup-list-s__header-title--green:after {
  background: #50b450;
}
.lineup-list-s__header-title--purple:after {
  background: #6e46e6;
}
@media screen and (max-width: 768px) {
  .lineup-list-s__header-desc {
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  .lineup-list-s__header-desc br {
    display: none;
  }
}
.lineup-list-s__item {
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .lineup-list-s__item {
    padding: 10px;
  }
}
.lineup-list-s__item > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}
.lineup-list-s__item > ul > li {
  width: calc(33.3% - 7px);
}
@media screen and (max-width: 1200px) {
  .lineup-list-s__item > ul > li {
    width: calc(50% - 5px);
  }
}
@media screen and (max-width: 768px) {
  .lineup-list-s__item > ul > li {
    width: 100%;
  }
}
.lineup-list-s__item > ul > li a {
  display: flex;
  font-size: 15px;
  line-height: 1.4em;
  text-align: left;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  min-height: 60px;
  justify-content: center;
  position: relative;
  padding-left: 32px;
  padding-right: 32px;
  background: #fff;
  border-radius: 4px;
}
.lineup-list-s__item > ul > li a:link, .lineup-list-s__item > ul > li a:visited {
  text-decoration: none;
  color: #00143c;
}
.lineup-list-s__item > ul > li a:hover, .lineup-list-s__item > ul > li a:active {
  text-decoration: none;
  color: #00143c;
}
@media (hover: hover) {
  .lineup-list-s__item > ul > li a:hover, .lineup-list-s__item > ul > li a:active {
    opacity: 0.7;
  }
}
.lineup-list-s__item > ul > li a:before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background: url(../img/icon-arrow-b.svg);
  background-size: cover;
  flex-shrink: 0;
  position: absolute;
  right: 10px;
  top: calc(50% - 10px);
}
.lineup-list-s__item > ul > li a:after {
  content: "";
  width: 32px;
  height: 32px;
  background: #3ca0df;
  clip-path: polygon(0% 0, 100% 0%, 0 100%);
  left: 2px;
  top: 2px;
  position: absolute;
  display: block;
}
@media screen and (max-width: 768px) {
  .lineup-list-s__item > ul > li a:after {
    width: 16px;
    height: 16px;
  }
}
.lineup-list-s__item > ul > li a.pink:after {
  background: #e650c8;
}
.lineup-list-s__item > ul > li a.green:after {
  background: #50b450;
}
.lineup-list-s__item > ul > li a.purple:after {
  background: #6e46e6;
}

.common-block {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .common-block {
    flex-direction: column;
    gap: 20px;
  }
}
.common-block:not(:last-child) {
  margin-bottom: 48px;
}
.common-block__image {
  width: 100%;
  max-width: 480px;
  margin-bottom: auto;
}
@media screen and (max-width: 1200px) {
  .common-block__image {
    max-width: calc(50% - 20px);
  }
}
@media screen and (max-width: 768px) {
  .common-block__image {
    max-width: 100%;
  }
}
.common-block__subtitle {
  width: 100%;
  margin-bottom: 8px;
}
.common-block__subtitle br {
  display: none;
}
.common-block__text {
  width: 100%;
  max-width: calc(100% - 520px);
  box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
  .common-block__text {
    max-width: calc(50% - 20px);
  }
}
@media screen and (max-width: 768px) {
  .common-block__text {
    max-width: 100%;
    padding: 0 10px;
    font-size: 13px;
    line-height: 1.8em;
  }
}
.common-block:nth-of-type(even) .common-block__image {
  order: 2;
}
@media screen and (max-width: 768px) {
  .common-block:nth-of-type(even) .common-block__image {
    order: 1;
  }
}
.common-block:nth-of-type(even) .common-block__text {
  order: 1;
}
@media screen and (max-width: 768px) {
  .common-block:nth-of-type(even) .common-block__text {
    order: 2;
  }
}

.step {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.step__item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px 20px 20px 0;
  background: linear-gradient(to right, rgba(0, 10, 40, 0.15), rgba(120, 0, 255, 0.15));
  position: relative;
}
@media screen and (max-width: 768px) {
  .step__item {
    padding: 20px 10px;
    gap: 10px;
  }
}
.step__item:not(:last-child):after {
  content: "";
  width: 60px;
  height: 40px;
  background: linear-gradient(to bottom, #6400ff, #b400ff);
  display: block;
  position: absolute;
  left: 50px;
  bottom: -30px;
  z-index: 10;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
@media screen and (max-width: 768px) {
  .step__item:not(:last-child):after {
    left: calc(50% - 30px);
  }
}
.step__no {
  font-family: "Roboto";
  font-weight: 900;
  text-align: center;
  -webkit-text-stroke: 1px rgba(180, 210, 255, 0.5);
  color: transparent;
  width: 160px;
  padding-top: 8px;
}
@media screen and (max-width: 768px) {
  .step__no {
    font-size: 42px;
    line-height: 1em;
    width: 80px;
    padding-top: 0;
  }
}
.step__no div:first-child {
  font-size: 32px;
  line-height: 1em;
}
@media screen and (max-width: 768px) {
  .step__no div:first-child {
    font-size: 16px;
    line-height: 1em;
  }
}
.step__no div:last-child {
  font-size: 92px;
  line-height: 1em;
}
@media screen and (max-width: 768px) {
  .step__no div:last-child {
    font-size: 48px;
    line-height: 1em;
  }
}
.step__text {
  width: calc(72% - 200px);
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .step__text {
    width: calc(100% - 100px);
    margin-bottom: 10px;
  }
}
.step__image {
  width: 28%;
  margin-bottom: auto;
}
@media screen and (max-width: 768px) {
  .step__image {
    width: 100%;
  }
}

.assign-box {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 40px 10px 128px 10px;
  background: linear-gradient(to right, rgba(0, 10, 40, 0.15), rgba(120, 0, 255, 0.15));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .assign-box {
    padding-top: 20px;
  }
}
.assign-box__header {
  font-size: 32px;
  line-height: 1em;
  margin: 0 0 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .assign-box__header {
    font-size: 18px;
    line-height: 1.2em;
    margin-bottom: 10px;
  }
}
.assign-box__item {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px 20px 20px 0;
  background: linear-gradient(to top, rgba(0, 10, 40, 0.15), rgba(120, 0, 255, 0.15));
  box-sizing: border-box;
  width: 100%;
  max-width: 1000px;
  align-items: center;
}
.assign-box__no {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  margin-right: 20px;
  font-family: "Roboto";
  width: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .assign-box__no {
    width: 80px;
  }
}
.assign-box__no div:first-child {
  font-weight: 500;
  font-size: 12px;
  line-height: 1em;
}
@media screen and (max-width: 768px) {
  .assign-box__no div:first-child {
    font-size: 10px;
    line-height: 1em;
  }
}
.assign-box__no div:last-child {
  -webkit-text-stroke: 1px rgb(255, 255, 255);
  color: transparent;
  font-weight: 600;
  font-size: 48px;
  line-height: 1em;
}
@media screen and (max-width: 768px) {
  .assign-box__no div:last-child {
    font-size: 32px;
    line-height: 1em;
  }
}
.assign-box__title {
  font-size: 22px;
  line-height: 1.5em;
  margin: 0;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .assign-box__title {
    font-size: 16px;
    line-height: 1.5em;
  }
}

.solution-box {
  width: 100%;
  max-width: 1120px;
  margin: -104px auto 0;
  border-radius: 12px;
  background-image: url(../img/sec-message-bg.avif);
  background-position: center top;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  position: relative;
  box-sizing: border-box;
}
.solution-box:after {
  content: "";
  width: 60px;
  height: 40px;
  background: linear-gradient(to bottom, #6400ff, #b400ff);
  display: block;
  position: absolute;
  left: calc(50% - 30px);
  top: -20px;
  z-index: 10;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
.solution-box__text {
  text-align: center;
  color: #000f37;
  width: 100%;
}
.solution-box__title {
  padding-bottom: 20px;
  position: relative;
  font-size: 32px;
  line-height: 1em;
  margin: 0 0 20px;
}
@media screen and (max-width: 768px) {
  .solution-box__title {
    font-size: 24px;
    line-height: 1.2em;
  }
}
.solution-box__title:after {
  content: "";
  width: 110px;
  height: 2px;
  background: linear-gradient(to right, #6400ff, #b400ff);
  position: absolute;
  left: calc(50% - 55px);
  bottom: 0;
}
.solution-box__desc {
  margin-bottom: 32px;
}
.solution-box__btn {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .solution-box__btn {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
}
.solution-box__btn a {
  width: 100%;
  max-width: 380px;
  min-height: 74px;
  display: flex;
  background: #fff;
  box-sizing: border-box;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px 15px 15px;
  border-radius: 4px;
  position: relative;
  font-size: 15px;
  line-height: 1.4em;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .solution-box__btn a {
    max-width: 100%;
  }
}
.solution-box__btn a:link, .solution-box__btn a:visited {
  text-decoration: none;
  color: #00143c;
}
.solution-box__btn a:hover, .solution-box__btn a:active {
  text-decoration: none;
  color: #00143c;
}
@media (hover: hover) {
  .solution-box__btn a:hover, .solution-box__btn a:active {
    opacity: 0.7;
  }
}
.solution-box__btn a:after {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background: url(../img/icon-arrow-b.svg);
  background-size: cover;
  flex-shrink: 0;
  position: absolute;
  right: 10px;
  top: calc(50% - 10px);
}
@media (hover: hover) {
  .solution-box__btn a:hover {
    opacity: 0.7;
  }
}

.list-faq__item {
  display: flex;
  position: relative;
  padding: 24px 32px 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 18px;
  line-height: 1.5em;
}
@media screen and (max-width: 768px) {
  .list-faq__item {
    font-size: 15px;
    line-height: 1.5em;
  }
}
.list-faq__item:link, .list-faq__item:visited {
  text-decoration: none;
  color: #fff;
}
.list-faq__item:hover, .list-faq__item:active {
  text-decoration: none;
  color: #fff;
}
@media (hover: hover) {
  .list-faq__item:hover, .list-faq__item:active {
    opacity: 0.7;
  }
}
.list-faq__item:before {
  content: "Q.";
  display: block;
  margin: 0 16px;
  text-align: center;
  flex-shrink: 0;
  background: linear-gradient(to right, #6400ff, #b400ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.list-faq__item:after {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background: url(../img/icon-arrow-w.svg);
  background-size: cover;
  position: absolute;
  right: 0;
  top: calc(50% - 10px);
}

.article:not(:last-child) {
  margin-bottom: 80px;
}
.article__header {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-sizing: border-box;
  padding-bottom: 16px;
  margin: 0;
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .article__header {
    font-size: 24px;
    line-height: 1.2em;
  }
}
.article__header:after {
  content: "";
  width: 120px;
  height: 1px;
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  background: linear-gradient(to right, #6400ff, #b400ff);
}
.article__info {
  display: flex;
  gap: 16px;
  align-items: center;
}
.article__cat {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
@media screen and (max-width: 768px) {
  .article__cat {
    font-size: 14px;
    line-height: 1.5em;
  }
}
.article__cat a:link, .article__cat a:visited {
  text-decoration: none;
  color: #78a0ff;
}
.article__cat a:hover, .article__cat a:active {
  text-decoration: none;
  color: #78a0ff;
}
.article__cat .toplevel {
  color: #78a0ff;
}
.article__assign {
  font-size: 13px;
  line-height: 1.5em;
}
.article__assign a:link, .article__assign a:visited {
  text-decoration: none;
  color: #fff;
}
.article__assign a:hover, .article__assign a:active {
  text-decoration: none;
  color: #fff;
}
.article__title {
  margin: 0;
  font-size: 36px;
  line-height: 1.5em;
  margin-bottom: 4px;
}
@media screen and (max-width: 768px) {
  .article__title {
    font-size: 24px;
    line-height: 1.5em;
  }
}
.article__date {
  font-size: 12px;
  line-height: 1.5em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .article__date {
    font-size: 10px;
    line-height: 1.5em;
  }
}
.article__body:not(:last-child) {
  margin-bottom: 40px;
}
.article__body h1 {
  font-size: 36px;
  line-height: 1.5em;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .article__body h1 {
    font-size: 32px;
    line-height: 1.5em;
  }
}
.article__body h1:not(:last-child) {
  margin-bottom: 1em;
}
.article__body h2 {
  font-size: 32px;
  line-height: 1.5em;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .article__body h2 {
    font-size: 28px;
    line-height: 1.5em;
  }
}
.article__body h2:not(:last-child) {
  margin-bottom: 1em;
}
.article__body h3 {
  font-size: 28px;
  line-height: 1.5em;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0 0 16px 16px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .article__body h3 {
    font-size: 24px;
    line-height: 1.5em;
  }
}
.article__body h3:not(:last-child) {
  margin-bottom: 1em;
}
.article__body h3:before {
  content: "";
  width: 4px;
  height: 30px;
  display: block;
  background: linear-gradient(to top, #6400ff, #b400ff);
  position: absolute;
  left: 0;
  top: 8px;
}
.article__body h4 {
  position: relative;
  padding: 16px 16px 16px 12px;
  font-size: 22px;
  line-height: 1.2em;
  margin-bottom: 20px;
  background: rgba(0, 10, 40, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 768px) {
  .article__body h4 {
    font-size: 18px;
    line-height: 1.5em;
  }
}
.article__body h4:before {
  content: "";
  width: 1px;
  height: 100%;
  display: block;
  background: linear-gradient(to top, #6400ff, #b400ff);
  position: absolute;
  left: 0;
  top: 0;
}
.article__body h5 {
  font-size: 20px;
  line-height: 1.5em;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0 0 16px 16px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .article__body h5 {
    font-size: 18px;
    line-height: 1.5em;
  }
}
.article__body h5:not(:last-child) {
  margin-bottom: 1em;
}
.article__body h5:before {
  content: "";
  width: 1px;
  height: 24px;
  display: block;
  background: linear-gradient(to top, #6400ff, #b400ff);
  position: absolute;
  left: 0;
  top: 4px;
}
.article__body h6 {
  font-size: 18px;
  line-height: 1.5em;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0 0 16px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .article__body h6 {
    font-size: 16px;
    line-height: 1.5em;
  }
}
.article__body h6:not(:last-child) {
  margin-bottom: 1em;
}
.article__body h7 {
  font-size: 18px;
  line-height: 1.5em;
  margin: 0;
}
.article__body h7:not(:last-child) {
  margin-bottom: 1em;
}
.article__body img {
  border-radius: 12px;
}
.article__body iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}
.article__body strong {
  color: #ffe678;
}
.article__body a:link, .article__body a:visited {
  text-decoration: underline;
  color: #96b4ff;
}
.article__body a:hover, .article__body a:active {
  text-decoration: underline;
  color: #96b4ff;
}
.article__body ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article__body ul:not(:last-child) {
  margin-bottom: 2em;
}
.article__body ul li {
  display: flex;
  justify-content: flex-start;
  font-size: 14px;
  line-height: 1.5em;
  gap: 8px;
}
.article__body ul li:before {
  content: "";
  width: 14px;
  height: 14px;
  display: block;
  border-radius: 50%;
  box-sizing: border-box;
  border: 2px solid #78a0ff;
  flex-shrink: 0;
  transform: translateY(4px);
}
.article__body ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  counter-reset: number;
}
.article__body ol:not(:last-child) {
  margin-bottom: 2em;
}
.article__body ol li {
  display: flex;
  justify-content: flex-start;
  font-size: 14px;
  line-height: 1.5em;
  gap: 8px;
  counter-increment: number;
}
.article__body ol li:before {
  content: counter(number);
  width: 26px;
  height: 26px;
  display: block;
  box-sizing: border-box;
  background: #8c00ff;
  flex-shrink: 0;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-2px);
}
.article__body p {
  margin: 0;
}
.article__body p:not(:last-child) {
  margin-bottom: 2em;
}
.article__btn-sns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.article__btn-sns:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .article__btn-sns .btn {
    max-width: calc(50% - 5px);
  }
}
.article__btn-download {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.article__btn-download:not(:last-child) {
  margin-bottom: 20px;
}
.article__btn-back {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.article__btn-back:not(:last-child) {
  margin-bottom: 20px;
}

.block-company {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px;
  background: linear-gradient(to right, rgba(0, 10, 40, 0.15), rgba(120, 0, 255, 0.15));
  gap: 40px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .block-company {
    gap: 10px;
  }
}
.block-company:not(:last-child) {
  margin-bottom: 1em;
}
.block-company__image {
  font-size: 0;
  line-height: 0;
  flex-shrink: 0;
  width: 280px;
  border-radius: 12px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .block-company__image {
    width: 100%;
  }
}
.block-company__image img {
  width: 100%;
  height: auto;
}
.block-company__text {
  width: calc(100% - 320px);
}
@media screen and (max-width: 768px) {
  .block-company__text {
    width: 100%;
    box-sizing: border-box;
    padding: 0 10px;
  }
}
.block-company__title {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-sizing: border-box;
  padding-bottom: 16px;
  margin: 0;
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  position: relative;
  font-size: 22px;
  line-height: 1.5em;
}
@media screen and (max-width: 768px) {
  .block-company__title {
    font-size: 18px;
    line-height: 1.5em;
  }
}
.block-company__title:after {
  content: "";
  width: 120px;
  height: 1px;
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  background: linear-gradient(to right, #6400ff, #b400ff);
}
.block-company__title p {
  margin: 0;
}
.block-company__title p:first-child {
  color: #78a0ff;
  font-size: 14px;
  line-height: 1.5em;
}
.block-company__title p:first-child:last-child {
  font-size: 22px;
  line-height: 1.5em;
}
.block-company__title p:not(:last-child) {
  margin-bottom: 0;
}
.block-company__desc {
  font-size: 14px;
  line-height: 1.5em;
}

.block-list {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px;
  background: rgba(0, 10, 40, 0.6);
  padding: 30px;
}
.block-list:not(:last-child) {
  margin-bottom: 1em;
}
.block-list__title {
  position: relative;
  padding: 0 0 0 12px;
  font-size: 18px;
  line-height: 1.2em;
  margin-bottom: 20px;
}
.block-list__title:before {
  content: "";
  width: 2px;
  height: 100%;
  display: block;
  background: linear-gradient(to top, #6400ff, #b400ff);
  position: absolute;
  left: 0;
}

.related-post {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px;
  background: rgba(0, 10, 40, 0.6);
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
}
.related-post:not(:last-child) {
  margin-bottom: 1em;
}
.related-post__title {
  position: relative;
  padding: 0 0 0 12px;
  font-size: 18px;
  line-height: 1.2em;
  margin: 0;
  width: 100%;
}
.related-post__title:before {
  content: "";
  width: 2px;
  height: 100%;
  display: block;
  background: linear-gradient(to top, #6400ff, #b400ff);
  position: absolute;
  left: 0;
}
.related-post__item {
  width: calc(50% - 20px);
}
@media screen and (max-width: 1200px) {
  .related-post__item {
    width: 100%;
  }
}
.related-post .item {
  display: flex;
  gap: 16px;
}
.related-post .item__image {
  font-size: 0;
  line-height: 0;
  width: 160px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}
.related-post .item__title {
  width: calc(100% - 176px);
  font-size: 16px;
  line-height: 1.5em;
}
.related-post .item__title a {
  display: block;
}
.related-post .item__title a:link, .related-post .item__title a:visited {
  text-decoration: none;
  color: #fff;
}
.related-post .item__title a:hover, .related-post .item__title a:active {
  text-decoration: none;
  color: #fff;
}

.service-table {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: linear-gradient(to top, rgba(0, 10, 40, 0.15), rgba(120, 0, 255, 0.15));
  box-sizing: border-box;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.service-table:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 1200px) {
  .service-table {
    flex-direction: column;
    gap: 10px;
    padding: 10px;
  }
}
.service-table__block {
  border-radius: 12px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 6px;
  box-sizing: border-box;
  padding: 24px 10px 10px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .service-table__block {
    border-radius: 6px;
  }
}
.service-table__block--region {
  width: 100%;
  max-width: 27%;
  background: rgba(0, 180, 255, 0.5);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1200px) {
  .service-table__block--region {
    max-width: 100%;
  }
}
.service-table__block--region:before {
  content: "";
  width: 24px;
  height: 24px;
  background: linear-gradient(to right, transparent, #00b0ff 40%);
  position: absolute;
  right: -15px;
  top: calc(50% - 12px);
  display: block;
}
@media screen and (max-width: 1200px) {
  .service-table__block--region:before {
    display: none;
  }
}
.service-table__block--region:after {
  content: "";
  width: 20px;
  height: 40px;
  background: #00b0ff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  right: -34px;
  top: calc(50% - 20px);
  position: absolute;
  display: block;
}
@media screen and (max-width: 1200px) {
  .service-table__block--region:after {
    display: none;
  }
}
.service-table__block--service {
  width: 100%;
  max-width: calc(46% - 38px);
  background: rgba(0, 200, 200, 0.5);
  margin-left: auto;
  margin-right: 8px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .service-table__block--service {
    max-width: 100%;
  }
}
.service-table__block--product {
  width: 100%;
  max-width: 27%;
  background: rgba(100, 20, 180, 0.5);
}
@media screen and (max-width: 1200px) {
  .service-table__block--product {
    max-width: 100%;
  }
}
.service-table__title-en {
  font-family: "Roboto";
  font-weight: 900;
  -webkit-text-stroke: 1px rgba(180, 210, 255, 0.5);
  font-size: 24px;
  line-height: 1em;
  color: transparent;
}
.service-table__title {
  font-size: 32px;
  line-height: 1em;
  font-weight: bold;
  margin: 0 0 20px;
}
@media screen and (max-width: 768px) {
  .service-table__title {
    font-size: 24px;
    line-height: 1em;
    margin-bottom: 16px;
  }
}
.service-table__item {
  background: #fff;
  width: 100%;
  color: #00143c;
  height: 100%;
  max-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  border-radius: 4px;
  line-height: 1.2em;
  gap: 4px;
  box-sizing: border-box;
  padding: 6px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .service-table__item {
    max-height: 100%;
  }
}
.service-table__item--top {
  align-items: flex-start;
}
.service-table__item--s {
  max-width: calc(100% - 100px);
  margin-right: auto;
}
@media screen and (max-width: 1200px) {
  .service-table__item--s {
    max-width: 100%;
  }
}
.service-table__item--l {
  max-height: 126px;
}
@media screen and (max-width: 1200px) {
  .service-table__item--l {
    max-height: 100%;
  }
}
.service-table__item--v {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  max-width: 44px;
  max-height: 126px;
}
@media screen and (max-width: 1200px) {
  .service-table__item--v {
    -ms-writing-mode: inherit;
    writing-mode: inherit;
    max-width: 100%;
    max-height: 60px;
  }
}
.service-table__item--security {
  position: absolute;
  right: 60px;
  bottom: 10px;
}
@media screen and (max-width: 1200px) {
  .service-table__item--security {
    position: inherit;
    right: auto;
    bottom: auto;
  }
}
.service-table__item--monitor {
  position: absolute;
  right: 10px;
  bottom: 10px;
}
@media screen and (max-width: 1200px) {
  .service-table__item--monitor {
    position: inherit;
    right: auto;
    bottom: auto;
  }
}
.service-table__item--image {
  font-size: 0;
  line-height: 0;
}
.service-table__item--image img {
  height: 100%;
  width: auto;
}
@media screen and (max-width: 768px) {
  .service-table__item--image img {
    width: 300px;
    height: auto;
  }
}
.service-table__sub-wrap {
  background: #dce6e6;
  width: 100%;
  display: flex;
  justify-content: space-between;
  height: 100%;
  max-height: 48px;
  border-radius: 4px;
  box-sizing: border-box;
  padding-top: 2px;
}
@media screen and (max-width: 1200px) {
  .service-table__sub-wrap {
    padding: 6px 0;
    max-height: 100%;
  }
}
.service-table__sub-wrap--l {
  max-height: 54px;
  padding-top: 4px;
}
@media screen and (max-width: 1200px) {
  .service-table__sub-wrap--l {
    padding: 6px 0;
    max-height: 100%;
  }
}
.service-table__sub-wrap--xl {
  max-height: 114px;
  padding-top: 12px;
}
@media screen and (max-width: 1200px) {
  .service-table__sub-wrap--xl {
    padding: 6px 0;
    max-height: 100%;
  }
}
.service-table__sub {
  width: 100%;
  max-width: 50%;
  display: flex;
}
@media screen and (max-width: 1200px) {
  .service-table__sub {
    max-width: 100%;
    padding: 0px;
  }
}
.service-table__sub--ab {
  position: absolute;
  left: 6px;
  bottom: 6px;
  max-width: calc(50% - 8px);
}
@media screen and (max-width: 1200px) {
  .service-table__sub--ab {
    max-width: 100%;
    position: relative;
    left: auto;
    bottom: auto;
  }
}
.service-table__sub ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  padding: 0 8px;
}
@media screen and (max-width: 768px) {
  .service-table__sub ul {
    padding: 0 6px;
  }
}
.service-table__sub ul li {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  line-height: 1.6em;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1200px) {
  .service-table__sub ul li {
    line-height: 1.6em;
    text-align: left;
    font-size: 12px;
    line-height: 1.6em;
    align-items: flex-start;
  }
}
.service-table__sub ul li:before {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
  background: #00c8c8;
  flex-shrink: 0;
}
@media screen and (max-width: 1200px) {
  .service-table__sub ul li:before {
    transform: translateY(6px);
  }
}

.service-outline__image {
  margin: 0;
}
.service-outline__image:not(:last-child) {
  margin-bottom: 40px;
}
.service-outline__image img {
  aspect-ratio: 3/1;
  object-fit: cover;
}

.flow {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: linear-gradient(to right, rgba(0, 10, 40, 0.15), rgba(120, 0, 255, 0.15));
  box-sizing: border-box;
  padding: 20px 20px 20px 0;
  margin: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .flow {
    padding: 10px 10px 20px;
  }
}
.flow:not(:last-child) {
  margin-bottom: 20px;
}
.flow:not(:last-child):after {
  content: "";
  width: 60px;
  height: 40px;
  background: linear-gradient(to bottom, #6400ff, #b400ff);
  display: block;
  position: absolute;
  left: 45px;
  bottom: -30px;
  z-index: 10;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
@media screen and (max-width: 768px) {
  .flow:not(:last-child):after {
    left: calc(50% - 30px);
  }
}
.flow__step {
  width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
  flex-shrink: 0;
  font-family: "Roboto";
  font-weight: 900;
  -webkit-text-stroke: 1px rgba(180, 210, 255, 0.5);
  color: transparent;
  order: 1;
}
@media screen and (max-width: 768px) {
  .flow__step {
    width: 80px;
  }
}
.flow__step div, .flow__step p {
  margin: 0;
}
.flow__step div:first-child, .flow__step p:first-child {
  font-size: 32px;
  line-height: 1em;
}
@media screen and (max-width: 768px) {
  .flow__step div:first-child, .flow__step p:first-child {
    font-size: 18px;
    line-height: 1em;
  }
}
.flow__step div:last-child, .flow__step p:last-child {
  font-size: 92px;
  line-height: 1em;
}
@media screen and (max-width: 768px) {
  .flow__step div:last-child, .flow__step p:last-child {
    font-size: 40px;
    line-height: 1em;
  }
}
.flow__text {
  margin-right: auto;
  width: 100%;
  max-width: calc(70% - 190px);
  order: 1;
}
@media screen and (max-width: 768px) {
  .flow__text {
    max-width: calc(100% - 80px);
  }
}
.flow__image {
  width: 30%;
  flex-shrink: 0;
  margin-bottom: auto;
  order: 1;
}
@media screen and (max-width: 768px) {
  .flow__image {
    width: 100%;
    order: 0;
    margin-bottom: 20px;
  }
}
.flow__subtitle {
  font-size: 16px;
  line-height: 1.5em;
  color: #78a0ff;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .flow__subtitle {
    font-size: 12px;
    line-height: 1.5em;
    margin-bottom: 4px;
  }
}
.flow__title {
  font-size: 24px;
  line-height: 1.5em;
  padding-bottom: 16px;
  position: relative;
  margin: 0 0 20px;
}
@media screen and (max-width: 768px) {
  .flow__title {
    font-size: 18px;
    line-height: 1.5em;
  }
}
.flow__title:after {
  content: "";
  width: 80px;
  height: 1px;
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  background: linear-gradient(to right, #6400ff, #b400ff);
}
.flow__title span {
  font-size: 16px;
  line-height: 1em;
  color: #78a0ff;
}
.flow__desc {
  margin: 0;
}

#page_top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 20px;
  bottom: -50px;
  background: linear-gradient(to bottom, #6400ff, #b400ff);
  opacity: 0.6;
  border-radius: 50%;
}

#page_top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
@media (hover: hover) {
  #page_top a:hover, #page_top a:active {
    opacity: 0.7;
  }
}

#page_top a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f106";
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 18px;
  height: 25px;
  top: -8px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
