*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
}

button {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #eef3fa;
  background-color: #070d1a;
  overflow-x: hidden;
}

.inner {
  max-width: calc(70rem + 2.5rem);
  margin-right: auto;
  margin-left: auto;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}
@media (min-width: 768px) {
  .inner {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

.sec-head__en {
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #46e0ff;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.sec-head__en::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: linear-gradient(90deg, #46e0ff 0%, #8b5cf6 100%);
}
.sec-head__ja {
  margin-top: 0.75rem;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #eef3fa;
}
@media (min-width: 768px) {
  .sec-head__ja {
    font-size: 2.375rem;
  }
}
.sec-head--dark .sec-head__en {
  color: #2e5bff;
}
.sec-head--dark .sec-head__ja {
  color: #1b2a41;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-width: 15rem;
  padding: 1rem 1.75rem;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.06em;
  color: #fff;
  background: linear-gradient(105deg, #2e5bff 0%, #8b5cf6 62%, #46e0ff 130%);
  border: 1px solid rgba(70, 224, 255, 0.25);
  border-radius: 0.625rem;
  overflow: hidden;
  box-shadow: 0 0 1.125rem rgba(93, 103, 255, 0.35);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #8b5cf6 0%, #2e5bff 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn__text {
  position: relative;
  z-index: 1;
}
.btn__arrow {
  position: relative;
  z-index: 1;
  width: 1.5rem;
  height: 0.5rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
@media (hover: hover) {
  .btn:hover {
    box-shadow: 0 0 1.75rem rgba(139, 92, 246, 0.55);
    transform: translateY(-0.125rem);
  }
  .btn:hover::before {
    opacity: 1;
  }
  .btn:hover .btn__arrow {
    transform: translateX(0.375rem);
  }
}
.btn--ghost {
  color: #eef3fa;
  background: rgba(10, 18, 36, 0.55);
  border-color: rgba(86, 143, 255, 0.45);
  backdrop-filter: blur(6px);
  box-shadow: 0 0 0.75rem rgba(46, 91, 255, 0.18);
}
.btn--ghost::before {
  background: rgba(70, 224, 255, 0.1);
}
@media (hover: hover) {
  .btn--ghost:hover {
    border-color: rgba(70, 224, 255, 0.7);
    box-shadow: 0 0 1.375rem rgba(70, 224, 255, 0.3);
  }
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #6b8cff;
}
.text-link__arrow {
  width: 1.75rem;
  height: 0.5rem;
  transition: transform 0.3s ease;
}
@media (hover: hover) {
  .text-link:hover .text-link__arrow {
    transform: translateX(0.375rem);
  }
}

.js-fade {
  opacity: 0;
  transform: translateY(1.75rem);
  transition: opacity 0.9s ease, transform 0.9s ease;
  transition-delay: var(--delay, 0s);
}
.js-fade.is-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-fade {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}
.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 200;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: #2e5bff;
  border-radius: 0.25rem;
  transform: translateY(-4rem);
  opacity: 0;
}
.skip-link:focus-visible {
  transform: translateY(0);
  opacity: 1;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}
.header.is-scrolled {
  background-color: rgba(7, 13, 26, 0.82);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(70, 224, 255, 0.14);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
@media (min-width: 1024px) {
  .header__inner {
    height: 5rem;
  }
}
.header__logo {
  position: relative;
  z-index: 102;
  display: inline-flex;
  align-items: center;
  gap: 0.5625rem;
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #eef3fa;
}
@media (min-width: 1024px) {
  .header__logo {
    font-size: 1.375rem;
  }
}
.header__logo-text span {
  color: #46e0ff;
}
.header__logo-mark {
  width: 1.875rem;
  height: 1.875rem;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .header__logo-mark {
    width: 2rem;
    height: 2rem;
  }
}
.header__nav {
  display: none;
}
@media (min-width: 1024px) {
  .header__nav {
    display: block;
  }
}
.header__list {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.header__link {
  position: relative;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #eef3fa;
}
.header__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(105deg, #2e5bff 0%, #8b5cf6 62%, #46e0ff 130%);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}
@media (hover: hover) {
  .header__link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}
.header__contact {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  background: rgba(12, 22, 44, 0.55);
  border: 1px solid rgba(96, 150, 255, 0.5);
  border-radius: 0.625rem;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 0.875rem rgba(70, 140, 255, 0.3);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
@media (hover: hover) {
  .header__contact:hover {
    border-color: rgba(70, 224, 255, 0.75);
    box-shadow: 0 0 1.25rem rgba(70, 224, 255, 0.45);
  }
}
.header__toggle {
  position: relative;
  z-index: 102;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
}
@media (min-width: 1024px) {
  .header__toggle {
    display: none;
  }
}
.header__toggle span {
  position: relative;
  display: block;
  width: 1.5rem;
  height: 1px;
  background-color: #eef3fa;
  transition: background-color 0.3s ease;
}
.header__toggle span::before, .header__toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #eef3fa;
  transition: transform 0.3s ease, top 0.3s ease;
}
.header__toggle span::before {
  top: -0.5rem;
}
.header__toggle span::after {
  top: 0.5rem;
}
.header__toggle[aria-expanded=true] span {
  background-color: transparent;
}
.header__toggle[aria-expanded=true] span::before {
  top: 0;
  transform: rotate(45deg);
}
.header__toggle[aria-expanded=true] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.sp-menu {
  position: fixed;
  inset: 0;
  z-index: 101;
  display: grid;
  place-items: center;
  background-color: rgba(7, 13, 26, 0.96);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  background-image: linear-gradient(to right, rgba(70, 224, 255, 0.14) 1px, transparent 1px), linear-gradient(to bottom, rgba(70, 224, 255, 0.14) 1px, transparent 1px);
  background-size: 48px 48px;
}
.sp-menu.is-open {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 1024px) {
  .sp-menu {
    display: none;
  }
}
.sp-menu__list {
  display: grid;
  gap: 0.5rem;
  text-align: center;
}
.sp-menu__link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #eef3fa;
}
.sp-menu__en {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #46e0ff;
}
.sp-menu__contact {
  margin-top: 1.5rem;
}

body.is-menu-open {
  overflow: hidden;
}

.footer {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 2rem;
  color: #eef3fa;
  background-color: #070d1a;
  border-top: 1px solid rgba(70, 224, 255, 0.14);
}
@media (min-width: 768px) {
  .footer {
    padding-top: 5rem;
  }
}
@media (min-width: 768px) {
  .footer__upper {
    display: flex;
    justify-content: space-between;
    gap: 2.5rem;
  }
}
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5625rem;
  font-family: "Inter", sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.footer__logo-text span {
  color: #46e0ff;
}
.footer__logo-mark {
  width: 1.875rem;
  height: 1.875rem;
  flex-shrink: 0;
}
.footer__company {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.footer__address {
  margin-top: 1rem;
  font-size: 0.8125rem;
  font-style: normal;
  line-height: 2;
  color: #93a4bd;
}
.footer__nav {
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .footer__nav {
    margin-top: 0;
  }
}
.footer__list {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .footer__list {
    grid-template-columns: repeat(2, auto);
    column-gap: 3rem;
  }
}
.footer__link {
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  color: #93a4bd;
  transition: color 0.3s ease;
}
@media (hover: hover) {
  .footer__link:hover {
    color: #46e0ff;
  }
}
.footer__sns {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
.footer__sns-link {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(238, 243, 250, 0.24);
  border-radius: 50%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.footer__sns-link svg {
  width: 1rem;
  height: 1rem;
  fill: #eef3fa;
}
@media (hover: hover) {
  .footer__sns-link:hover {
    border-color: #46e0ff;
    box-shadow: 0 0 1rem rgba(70, 224, 255, 0.35);
  }
}
.footer__lower {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(238, 243, 250, 0.1);
}
@media (min-width: 768px) {
  .footer__lower {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.footer__privacy {
  font-size: 0.75rem;
  color: #93a4bd;
  transition: color 0.3s ease;
}
@media (hover: hover) {
  .footer__privacy:hover {
    color: #46e0ff;
  }
}
.footer__copy {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: #93a4bd;
}

.pagetop {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  background-color: rgba(12, 22, 38, 0.85);
  border: 1px solid rgba(70, 224, 255, 0.14);
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease, box-shadow 0.3s ease;
}
.pagetop.is-show {
  opacity: 1;
  visibility: visible;
}
.pagetop::before {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  border-top: 1px solid #46e0ff;
  border-left: 1px solid #46e0ff;
  transform: rotate(45deg) translate(0.125rem, 0.125rem);
}
@media (hover: hover) {
  .pagetop:hover {
    box-shadow: 0 0 1.25rem rgba(70, 224, 255, 0.4);
  }
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #070d1a;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.35;
  background-image: linear-gradient(to right, rgba(70, 224, 255, 0.06) 1px, transparent 1px), linear-gradient(to bottom, rgba(70, 224, 255, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  animation: hero-kb 18s ease-in-out infinite alternate;
}
.hero__slide.is-active {
  opacity: 1;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(100deg, rgba(4, 8, 18, 0.82) 0%, rgba(4, 8, 18, 0.55) 45%, rgba(4, 8, 18, 0.3) 75%), linear-gradient(to top, rgba(4, 8, 18, 0.6) 0%, transparent 30%);
}
.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
}
.hero__copy {
  max-width: 40rem;
}
.hero__en {
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #46e0ff;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero__en::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, #46e0ff 0%, #8b5cf6 100%);
}
.hero__title {
  margin-top: 1.25rem;
  font-size: 2.375rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.05em;
  text-shadow: 0 0.125rem 1.5rem rgba(4, 8, 18, 0.8);
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 3.25rem;
  }
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: 3.5rem;
    white-space: nowrap;
  }
}
.hero__line {
  display: block;
  overflow: hidden;
}
.hero__line span {
  display: inline-block;
  transform: translateY(110%);
  animation: hero-reveal 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero__line:nth-child(2) span {
  animation-delay: 0.15s;
}
.hero__lead {
  max-width: 35rem;
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  line-height: 2.1;
  color: #eef3fa;
  text-shadow: 0 1px 1rem rgba(4, 8, 18, 0.8);
  opacity: 0;
  animation: hero-fade 1.2s ease 0.6s forwards;
}
@media (min-width: 768px) {
  .hero__lead {
    font-size: 1rem;
  }
}
.hero__btns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
  opacity: 0;
  animation: hero-fade 1.2s ease 0.9s forwards;
}
@media (min-width: 768px) {
  .hero__btns {
    flex-direction: row;
  }
}
.hero__scroll {
  position: absolute;
  bottom: 0;
  left: 1.25rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .hero__scroll {
    left: 2rem;
  }
}
.hero__scroll-text {
  font-family: "Inter", sans-serif;
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  color: #93a4bd;
  writing-mode: vertical-rl;
}
.hero__scroll-bar {
  position: relative;
  width: 1px;
  height: 4rem;
  background-color: rgba(238, 243, 250, 0.2);
  overflow: hidden;
}
.hero__scroll-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(90deg, #46e0ff 0%, #8b5cf6 100%);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes hero-reveal {
  to {
    transform: translateY(0);
  }
}
@keyframes hero-fade {
  to {
    opacity: 1;
  }
}
@keyframes hero-kb {
  to {
    transform: scale(1.06);
  }
}
@keyframes scroll-line {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(260%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__slide {
    transition: none;
  }
  .hero__slide img {
    animation: none;
  }
  .hero__line span {
    transform: none;
    animation: none;
  }
  .hero__lead,
  .hero__btns {
    opacity: 1;
    animation: none;
  }
  .hero__scroll-bar::before {
    animation: none;
  }
}
.for-you {
  position: relative;
  padding-top: 6rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .for-you {
    padding-top: 8.75rem;
  }
}
.for-you::before {
  content: "";
  position: absolute;
  top: 10%;
  left: -20%;
  width: 80%;
  height: 20rem;
  background: radial-gradient(50% 50% at 50% 50%, rgba(46, 91, 255, 0.12), transparent 70%);
  transform: rotate(-18deg);
  pointer-events: none;
}
.for-you__inner {
  position: relative;
}
.for-you__list {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .for-you__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
.for-you__card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 15rem;
  padding: 2rem 1.5rem;
  background: linear-gradient(150deg, rgba(28, 40, 70, 0.7) 0%, rgba(10, 17, 34, 0.92) 100%);
  border: 1px solid rgba(107, 140, 255, 0.28);
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
@media (min-width: 768px) {
  .for-you__card {
    min-height: 18.75rem;
    padding: 2.5rem 2.25rem;
  }
}
@media (hover: hover) {
  .for-you__card:hover {
    transform: translateY(-0.375rem);
    border-color: rgba(70, 224, 255, 0.5);
    box-shadow: 0 0.75rem 3rem rgba(46, 91, 255, 0.25);
  }
  .for-you__card:hover .text-link__arrow {
    transform: translateX(0.375rem);
  }
}
.for-you__card--engineer {
  border-color: rgba(139, 92, 246, 0.32);
}
@media (hover: hover) {
  .for-you__card--engineer:hover {
    border-color: rgba(217, 70, 239, 0.5);
    box-shadow: 0 0.75rem 3rem rgba(139, 92, 246, 0.28);
  }
}
.for-you__card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  max-width: calc(100% - 7.5rem);
}
@media (min-width: 768px) {
  .for-you__card-body {
    max-width: calc(100% - 8.75rem);
  }
}
.for-you__card-en {
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #46e0ff;
}
.for-you__card--engineer .for-you__card-en {
  color: #8b5cf6;
}
.for-you__card-title {
  margin-top: 0.5rem;
  font-size: 1.375rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .for-you__card-title {
    font-size: 1.625rem;
  }
}
.for-you__card-text {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 2;
  color: #93a4bd;
}
.for-you__card-link {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .for-you__card-link {
    margin-top: auto;
    padding-top: 1.5rem;
  }
}
.for-you__card-visual {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  width: 8.125rem;
  pointer-events: none;
}
@media (min-width: 768px) {
  .for-you__card-visual {
    right: 1rem;
    bottom: 0.75rem;
    width: 11.875rem;
  }
}
.for-you__card-visual img {
  width: 100%;
  mix-blend-mode: screen;
  -webkit-mask: radial-gradient(125% 125% at 78% 82%, #000 52%, transparent 84%);
  mask: radial-gradient(125% 125% at 78% 82%, #000 52%, transparent 84%);
}

.service {
  position: relative;
  padding-top: 6rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .service {
    padding-top: 8.75rem;
  }
}
.service::before {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -15%;
  width: 30rem;
  height: 30rem;
  background: radial-gradient(circle, rgba(46, 91, 255, 0.14), transparent 65%);
  pointer-events: none;
}
.service__inner {
  position: relative;
}
@media (min-width: 1024px) {
  .service__inner {
    display: grid;
    grid-template-columns: 18.75rem 1fr;
    gap: 3.5rem;
    align-items: start;
  }
}
@media (min-width: 1024px) {
  .service__head {
    position: sticky;
    top: 7.5rem;
  }
}
.service__lead {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  line-height: 2.1;
  color: #93a4bd;
}
.service__list {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .service__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .service__list {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 0;
  }
}
.service__card {
  position: relative;
  padding: 1.5rem 1.25rem;
  background: linear-gradient(160deg, rgba(22, 33, 60, 0.65) 0%, rgba(10, 17, 34, 0.85) 100%);
  border: 1px solid rgba(107, 140, 255, 0.18);
  border-radius: 0.75rem;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
@media (hover: hover) {
  .service__card:hover {
    transform: translateY(-0.25rem);
    border-color: rgba(70, 224, 255, 0.45);
    box-shadow: 0 0 2rem rgba(46, 91, 255, 0.25);
  }
}
.service__icon {
  width: 1.875rem;
  height: 1.875rem;
}
.service__icon svg {
  width: 100%;
  height: 100%;
}
.service__card-en {
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8b5cf6;
  margin-top: 0.875rem;
  font-size: 0.625rem;
}
.service__card-title {
  margin-top: 0.25rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #eef3fa;
}
.service__card-text {
  margin-top: 0.5rem;
  font-size: 0.78125rem;
  line-height: 1.9;
  color: #93a4bd;
}
.service__link {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
@media (min-width: 1024px) {
  .service__link {
    grid-column: 2;
  }
}

.about {
  position: relative;
  padding-top: 6rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .about {
    padding-top: 8.75rem;
  }
}
.about::after {
  content: "";
  position: absolute;
  top: 20%;
  right: -15%;
  width: 32.5rem;
  height: 32.5rem;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.14), transparent 65%);
  pointer-events: none;
}
.about__inner {
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .about__inner {
    display: grid;
    grid-template-columns: 1fr 27.5rem;
    align-items: center;
    gap: 5rem;
  }
}
.about__text {
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  line-height: 2.2;
  color: #93a4bd;
}
.about__link {
  margin-top: 2rem;
}
.about__orbit {
  position: relative;
  max-width: 20rem;
  margin-top: 3.5rem;
  margin-right: auto;
  margin-left: auto;
  aspect-ratio: 1/1;
}
@media (min-width: 1024px) {
  .about__orbit {
    width: 100%;
    max-width: none;
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
  }
}
.about__orbit::before {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.45) 0%, rgba(139, 92, 246, 0.08) 60%, transparent 75%);
  filter: blur(10px);
}
.about__ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(238, 243, 250, 0.14);
  border-radius: 50%;
}
.about__ring--inner {
  inset: 10%;
  border-color: rgba(238, 243, 250, 0.1);
}
.about__arc {
  position: absolute;
  border-radius: 50%;
  -webkit-mask: radial-gradient(closest-side, transparent calc(100% - 0.21875rem), #000 calc(100% - 0.1875rem));
  mask: radial-gradient(closest-side, transparent calc(100% - 0.21875rem), #000 calc(100% - 0.1875rem));
}
.about__arc--cyan {
  inset: 0;
  background: conic-gradient(from 300deg, transparent 0deg, #46e0ff 40deg, transparent 90deg);
  animation: ring-spin 24s linear infinite;
}
.about__arc--magenta {
  inset: 10%;
  background: conic-gradient(from 120deg, transparent 0deg, #d946ef 45deg, transparent 100deg);
  animation: ring-spin 32s linear infinite reverse;
}
.about__core {
  position: absolute;
  inset: 27%;
  display: grid;
  place-items: center;
  font-family: "Inter", sans-serif;
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  text-shadow: 0 0 1.5rem rgba(139, 92, 246, 0.9);
  border-radius: 50%;
}

@keyframes ring-spin {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .about__arc--cyan,
  .about__arc--magenta {
    animation: none;
  }
}
.news {
  position: relative;
  margin-top: 6rem;
  padding-top: 5rem;
  padding-bottom: 5.5rem;
  color: #1b2a41;
  background: linear-gradient(105deg, #dde5f3 0%, #eae4f9 45%, #d7e5f6 100%);
  overflow: hidden;
}
@media (min-width: 768px) {
  .news {
    margin-top: 8.75rem;
    padding-top: 6rem;
    padding-bottom: 6.5rem;
  }
}
.news::before, .news::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.news::before {
  top: -40%;
  right: 5%;
  width: 26.25rem;
  height: 20rem;
  background: rgba(70, 224, 255, 0.35);
}
.news::after {
  bottom: -50%;
  left: 12%;
  width: 23.75rem;
  height: 18.75rem;
  background: rgba(217, 70, 239, 0.18);
}
.news__inner {
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .news__inner {
    display: grid;
    grid-template-columns: 17.5rem 1fr;
    gap: 4rem;
    align-items: start;
  }
}
.news__link-pc {
  display: none;
}
@media (min-width: 1024px) {
  .news__link-pc {
    display: inline-flex;
    margin-top: 2rem;
  }
}
.news .text-link {
  color: #2e5bff;
}
.news__list {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(27, 42, 65, 0.12);
}
@media (min-width: 1024px) {
  .news__list {
    margin-top: 0;
  }
}
.news__item {
  border-bottom: 1px solid rgba(27, 42, 65, 0.12);
}
.news__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.25rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  transition: background-color 0.3s ease;
}
@media (min-width: 768px) {
  .news__row {
    flex-wrap: nowrap;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
@media (hover: hover) {
  .news a.news__row:hover {
    background-color: rgba(46, 91, 255, 0.06);
  }
  .news a.news__row:hover .news__title {
    color: #2e5bff;
  }
}
.news__date {
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #5a6b82;
  flex-shrink: 0;
}
.news__cat {
  display: inline-block;
  padding: 0.125rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #2e5bff;
  border: 1px solid rgba(46, 91, 255, 0.4);
  border-radius: 1.25rem;
  flex-shrink: 0;
}
.news__title {
  width: 100%;
  font-size: 0.9375rem;
  transition: color 0.3s ease;
}
@media (min-width: 768px) {
  .news__title {
    width: auto;
  }
}
.news__empty {
  padding-top: 1.5rem;
  color: #5a6b82;
}
.news__link-sp {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
}
@media (min-width: 1024px) {
  .news__link-sp {
    display: none;
  }
}

.cta {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 7rem;
  text-align: center;
  overflow: hidden;
}
@media (min-width: 768px) {
  .cta {
    padding-top: 8.75rem;
    padding-bottom: 9.375rem;
  }
}
.cta::before {
  content: "";
  position: absolute;
  top: 30%;
  left: -10%;
  width: 120%;
  height: 12.5rem;
  background: radial-gradient(45% 60% at 25% 50%, rgba(70, 224, 255, 0.12), transparent 70%), radial-gradient(45% 60% at 75% 50%, rgba(139, 92, 246, 0.14), transparent 70%);
  transform: rotate(-3deg);
  pointer-events: none;
}
.cta__inner {
  position: relative;
}
.cta__en {
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #46e0ff;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.cta__title {
  margin-top: 1rem;
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .cta__title {
    font-size: 2.25rem;
  }
}
.cta__text {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  color: #93a4bd;
}
.cta__btn {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.page-hero {
  position: relative;
  padding-top: 8.75rem;
  padding-bottom: 3.5rem;
  background-color: #070d1a;
  overflow: hidden;
}
@media (min-width: 768px) {
  .page-hero {
    padding-top: 11.25rem;
    padding-bottom: 4.5rem;
  }
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
  background-image: linear-gradient(to right, rgba(70, 224, 255, 0.06) 1px, transparent 1px), linear-gradient(to bottom, rgba(70, 224, 255, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
}
.page-hero__glow {
  position: absolute;
  top: -20%;
  right: -8%;
  z-index: 0;
  width: 28.75rem;
  height: 28.75rem;
  background: radial-gradient(circle, rgba(46, 91, 255, 0.26) 0%, rgba(139, 92, 246, 0.12) 50%, transparent 72%);
  filter: blur(40px);
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
}
.page-hero__en {
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #46e0ff;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
}
.page-hero__en::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, #46e0ff 0%, #8b5cf6 100%);
}
.page-hero__title {
  margin-top: 0.875rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.05em;
  color: #eef3fa;
}
@media (min-width: 768px) {
  .page-hero__title {
    font-size: 2.75rem;
  }
}

.breadcrumb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #070d1a;
  border-bottom: 1px solid rgba(70, 224, 255, 0.14);
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem 0.625rem;
  font-size: 0.75rem;
  color: #93a4bd;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.breadcrumb__item:not(:last-child)::after {
  content: "";
  width: 0.3125rem;
  height: 0.3125rem;
  border-top: 1px solid #93a4bd;
  border-right: 1px solid #93a4bd;
  transform: rotate(45deg);
}
.breadcrumb__link {
  color: #93a4bd;
  transition: color 0.3s ease;
}
@media (hover: hover) {
  .breadcrumb__link:hover {
    color: #46e0ff;
  }
}
.breadcrumb[aria-current], .breadcrumb__item[aria-current] {
  color: #eef3fa;
}

.section {
  position: relative;
  padding-top: 4.5rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .section {
    padding-top: 7rem;
  }
}
.section--last {
  padding-bottom: 6rem;
}
@media (min-width: 768px) {
  .section--last {
    padding-bottom: 8.75rem;
  }
}
.section__lead {
  margin-top: 1.5rem;
  max-width: 47.5rem;
  font-size: 0.9375rem;
  line-height: 2.1;
  color: #93a4bd;
}
@media (min-width: 768px) {
  .section__lead {
    font-size: 1rem;
  }
}
.section__lead--wide {
  max-width: 60rem;
}
.section__lead .nobr {
  display: inline-block;
}
.section__glow {
  position: absolute;
  z-index: 0;
  width: 27.5rem;
  height: 27.5rem;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.section__glow--left {
  bottom: 0;
  left: -14%;
  background: radial-gradient(circle, rgba(46, 91, 255, 0.14), transparent 65%);
}
.section__glow--right {
  top: 10%;
  right: -14%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.14), transparent 65%);
}
.section__inner {
  position: relative;
  z-index: 1;
}

.prose {
  font-size: 0.9375rem;
  line-height: 2.1;
  color: #93a4bd;
}
.prose p + p {
  margin-top: 1.25rem;
}
.prose strong {
  color: #eef3fa;
}

.field-list {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .field-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .field-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.field-card {
  position: relative;
  padding: 1.75rem 1.5rem;
  background: linear-gradient(160deg, rgba(22, 33, 60, 0.65) 0%, rgba(10, 17, 34, 0.85) 100%);
  border: 1px solid rgba(107, 140, 255, 0.2);
  border-radius: 0.75rem;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
@media (hover: hover) {
  .field-card:hover {
    transform: translateY(-0.25rem);
    border-color: rgba(70, 224, 255, 0.45);
    box-shadow: 0 0 2rem rgba(46, 91, 255, 0.25);
  }
}
.field-card__icon {
  width: 2rem;
  height: 2rem;
}
.field-card__icon svg {
  width: 100%;
  height: 100%;
}
.field-card__en {
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8b5cf6;
  margin-top: 1rem;
  font-size: 0.6875rem;
}
.field-card__title {
  margin-top: 0.25rem;
  font-size: 1.1875rem;
  font-weight: 700;
  color: #eef3fa;
}
.field-card__text {
  margin-top: 0.75rem;
  font-size: 0.84375rem;
  line-height: 1.9;
  color: #93a4bd;
}
.field-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: 1rem;
}
.field-card__tag {
  padding: 0.125rem 0.625rem;
  font-family: "Inter", sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  color: #46e0ff;
  border: 1px solid rgba(70, 224, 255, 0.3);
  border-radius: 1.25rem;
}

.flow {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
  counter-reset: flow;
}
@media (min-width: 768px) {
  .flow {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}
.flow__step {
  position: relative;
  padding: 1.75rem 1.5rem;
  background: rgba(16, 29, 51, 0.6);
  border: 1px solid rgba(70, 224, 255, 0.14);
  border-radius: 0.75rem;
  counter-increment: flow;
}
.flow__step:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 1px solid #46e0ff;
  border-right: 1px solid #46e0ff;
  right: 50%;
  bottom: -0.875rem;
  transform: translateX(50%) rotate(135deg);
}
@media (min-width: 768px) {
  .flow__step:not(:last-child)::after {
    top: 50%;
    right: -0.8125rem;
    bottom: auto;
    transform: translateY(-50%) rotate(45deg);
  }
}
.flow__num {
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #46e0ff;
}
.flow__num::before {
  content: "0" counter(flow);
}
.flow__title {
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #eef3fa;
}
.flow__text {
  margin-top: 0.625rem;
  font-size: 0.8125rem;
  line-height: 1.9;
  color: #93a4bd;
}

.check-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .check-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
.check-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1.25rem 1.5rem;
  font-size: 0.9375rem;
  color: #eef3fa;
  background: rgba(16, 29, 51, 0.5);
  border: 1px solid rgba(70, 224, 255, 0.14);
  border-radius: 0.625rem;
}
.check-list__item::before {
  content: "";
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.25rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2346e0ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.spec-table {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(70, 224, 255, 0.14);
}
.spec-table__row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(70, 224, 255, 0.14);
}
@media (min-width: 768px) {
  .spec-table__row {
    flex-direction: row;
    gap: 2rem;
  }
}
.spec-table__th {
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: #46e0ff;
}
@media (min-width: 768px) {
  .spec-table__th {
    width: 11.25rem;
  }
}
.spec-table__td {
  font-size: 0.9375rem;
  line-height: 1.9;
  color: #eef3fa;
}

.message {
  margin-top: 3rem;
}
@media (min-width: 1024px) {
  .message {
    display: grid;
    grid-template-columns: 20rem 1fr;
    gap: 3.5rem;
    align-items: start;
  }
}
.message__figure {
  position: relative;
  margin: 0;
  border: 1px solid rgba(70, 224, 255, 0.14);
  border-radius: 0.75rem;
  overflow: hidden;
}
.message__figure img {
  width: 100%;
}
.message__placeholder {
  display: grid;
  place-items: center;
  aspect-ratio: 3/4;
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  color: #93a4bd;
  background: linear-gradient(160deg, rgba(22, 33, 60, 0.7), rgba(10, 17, 34, 0.9));
}
.message__body {
  margin-top: 2rem;
}
@media (min-width: 1024px) {
  .message__body {
    margin-top: 0;
  }
}
.message__title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.6;
  color: #eef3fa;
}
@media (min-width: 768px) {
  .message__title {
    font-size: 1.625rem;
  }
}
.message__text {
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  line-height: 2.1;
  color: #93a4bd;
}
.message__text p + p {
  margin-top: 1.125rem;
}
.message__sign {
  margin-top: 1.75rem;
  font-size: 0.875rem;
  color: #eef3fa;
}
.message__sign span {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.access__map {
  position: relative;
  margin-top: 2rem;
  aspect-ratio: 16/9;
  border: 1px solid rgba(70, 224, 255, 0.14);
  border-radius: 0.75rem;
  overflow: hidden;
}
.access__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2) contrast(1.05);
}
.access__link {
  margin-top: 1.25rem;
}

.style-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .style-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.style-card {
  padding: 2rem 1.75rem;
  background: linear-gradient(155deg, rgba(24, 36, 66, 0.7) 0%, rgba(10, 17, 34, 0.9) 100%);
  border: 1px solid rgba(107, 140, 255, 0.24);
  border-radius: 0.875rem;
}
.style-card__en {
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #46e0ff;
}
.style-card__title {
  margin-top: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #eef3fa;
}
.style-card__dl {
  margin-top: 1.25rem;
  border-top: 1px solid rgba(70, 224, 255, 0.14);
}
.style-card__row {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid rgba(70, 224, 255, 0.14);
}
@media (min-width: 768px) {
  .style-card__row {
    flex-direction: row;
    gap: 1.25rem;
  }
}
.style-card__dt {
  flex-shrink: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #46e0ff;
}
@media (min-width: 768px) {
  .style-card__dt {
    width: 7.5rem;
  }
}
.style-card__dd {
  font-size: 0.875rem;
  line-height: 1.9;
  color: #93a4bd;
}

.entry-list {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .entry-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.entry-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.5rem;
  background: rgba(16, 29, 51, 0.55);
  border: 1px solid rgba(70, 224, 255, 0.14);
  border-radius: 0.75rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
@media (hover: hover) {
  .entry-card:hover {
    transform: translateY(-0.25rem);
    border-color: rgba(70, 224, 255, 0.45);
    box-shadow: 0 0 1.5rem rgba(46, 91, 255, 0.22);
  }
}
.entry-card__name {
  font-family: "Inter", sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #eef3fa;
}
.entry-card__text {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: #93a4bd;
}
.entry-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #46e0ff;
}
.entry-card__link::after {
  content: "";
  width: 0.8125rem;
  height: 0.8125rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2346e0ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3Cpath d='M15 3h6v6'/%3E%3Cpath d='M10 14 21 3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.note {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  font-size: 0.8125rem;
  line-height: 1.9;
  color: #93a4bd;
  background: rgba(46, 91, 255, 0.06);
  border: 1px dashed rgba(107, 140, 255, 0.35);
  border-radius: 0.5rem;
}

.news-page__list {
  margin-top: 3rem;
  border-top: 1px solid rgba(70, 224, 255, 0.14);
}
.news-page__item {
  border-bottom: 1px solid rgba(70, 224, 255, 0.14);
}
.news-page__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.25rem;
  width: 100%;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  text-align: left;
  transition: background-color 0.3s ease;
}
@media (min-width: 768px) {
  .news-page__head {
    flex-wrap: nowrap;
  }
}
.news-page button.news-page__head {
  cursor: pointer;
}
@media (hover: hover) {
  .news-page button.news-page__head:hover {
    background-color: rgba(46, 91, 255, 0.05);
  }
}
.news-page__date {
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #93a4bd;
  flex-shrink: 0;
}
.news-page__cat {
  display: inline-block;
  padding: 0.125rem 0.75rem;
  font-size: 0.6875rem;
  color: #46e0ff;
  border: 1px solid rgba(70, 224, 255, 0.4);
  border-radius: 1.25rem;
  flex-shrink: 0;
}
.news-page__title {
  width: 100%;
  font-size: 0.9375rem;
  color: #eef3fa;
}
@media (min-width: 768px) {
  .news-page__title {
    width: auto;
  }
}
.news-page__toggle {
  margin-left: auto;
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
  position: relative;
}
.news-page__toggle::before, .news-page__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #46e0ff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.news-page__toggle::before {
  width: 0.875rem;
  height: 1px;
  transform: translate(-50%, -50%);
}
.news-page__toggle::after {
  width: 1px;
  height: 0.875rem;
  transform: translate(-50%, -50%);
}
.news-page__head[aria-expanded=true] .news-page__toggle::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}
.news-page__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}
.news-page__head[aria-expanded=true] + .news-page__body {
  grid-template-rows: 1fr;
}
.news-page__body-inner {
  overflow: hidden;
}
.news-page__prose {
  padding-bottom: 1.5rem;
  font-size: 0.875rem;
  line-height: 2;
  color: #93a4bd;
}
.news-page__prose a {
  color: #46e0ff;
  text-decoration: underline;
}
.news-page__empty {
  padding-top: 2.5rem;
  color: #93a4bd;
}

.article {
  max-width: 47.5rem;
}
.article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}
.article__date {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #93a4bd;
}
.article__cat {
  display: inline-block;
  padding: 0.125rem 0.875rem;
  font-size: 0.6875rem;
  color: #46e0ff;
  border: 1px solid rgba(70, 224, 255, 0.4);
  border-radius: 1.25rem;
}
.article__title {
  margin-top: 1.25rem;
  padding-bottom: 1.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: #eef3fa;
  border-bottom: 1px solid rgba(70, 224, 255, 0.14);
}
@media (min-width: 768px) {
  .article__title {
    font-size: 1.875rem;
  }
}
.article__body {
  margin-top: 2.25rem;
  font-size: 0.9375rem;
  line-height: 2.1;
  color: #93a4bd;
}
@media (min-width: 768px) {
  .article__body {
    font-size: 1rem;
  }
}
.article__body p {
  margin-top: 1.25rem;
}
.article__body p:first-child {
  margin-top: 0;
}
.article__body h2 {
  margin-top: 3rem;
  padding-left: 0.875rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #eef3fa;
  border-left: 3px solid;
  border-image: linear-gradient(90deg, #46e0ff 0%, #8b5cf6 100%) 1;
}
.article__body h3 {
  margin-top: 2.25rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #eef3fa;
}
.article__body a {
  color: #46e0ff;
  text-decoration: underline;
}
.article__body ul,
.article__body ol {
  margin-top: 1.25rem;
  padding-left: 1.5rem;
}
.article__body ul {
  list-style: disc;
}
.article__body ol {
  list-style: decimal;
}
.article__body li {
  margin-top: 0.5rem;
}
.article__body img {
  margin-top: 1.75rem;
  border: 1px solid rgba(70, 224, 255, 0.14);
  border-radius: 0.625rem;
}
.article__body strong {
  color: #eef3fa;
}
.article__foot {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(70, 224, 255, 0.14);
}

.news-years {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2.5rem;
}
.news-years__tab {
  padding: 0.5rem 1.25rem;
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #93a4bd;
  border: 1px solid rgba(70, 224, 255, 0.14);
  border-radius: 1.25rem;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.news-years__tab.is-active {
  color: #fff;
  border-color: rgba(70, 224, 255, 0.5);
  background: rgba(46, 91, 255, 0.15);
}

.form {
  max-width: 45rem;
  margin-top: 3rem;
}
.form__group {
  padding-top: 1.75rem;
}
.form__group:first-child {
  padding-top: 0;
}
.form__label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #eef3fa;
}
.form__req, .form__any {
  padding: 0.125rem 0.5rem;
  font-size: 0.6875rem;
  font-weight: 500;
  border-radius: 0.25rem;
}
.form__req {
  color: #ff8ba7;
  background: rgba(255, 100, 130, 0.12);
  border: 1px solid rgba(255, 100, 130, 0.4);
}
.form__any {
  color: #93a4bd;
  background: rgba(147, 164, 189, 0.1);
  border: 1px solid rgba(147, 164, 189, 0.3);
}
.form__note {
  margin-top: 0.375rem;
  font-size: 0.75rem;
  color: #93a4bd;
}
.form__radios {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.875rem;
}
.form__radio {
  position: relative;
  cursor: pointer;
}
.form__radio input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}
.form__radio span {
  display: block;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  color: #eef3fa;
  background: rgba(16, 29, 51, 0.6);
  border: 1px solid rgba(70, 224, 255, 0.14);
  border-radius: 0.5rem;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}
.form__radio input:checked + span {
  border-color: rgba(70, 224, 255, 0.7);
  background: rgba(46, 91, 255, 0.16);
  box-shadow: 0 0 0.875rem rgba(46, 91, 255, 0.3);
}
.form__radio input:focus-visible + span {
  outline: 2px solid #46e0ff;
  outline-offset: 2px;
}
.form__control {
  width: 100%;
  margin-top: 0.875rem;
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  color: #eef3fa;
  background: rgba(10, 17, 34, 0.6);
  border: 1px solid rgba(107, 140, 255, 0.28);
  border-radius: 0.5rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form__control::placeholder {
  color: rgba(147, 164, 189, 0.6);
}
.form__control:focus {
  outline: none;
  border-color: rgba(70, 224, 255, 0.7);
  box-shadow: 0 0 0.875rem rgba(46, 91, 255, 0.28);
}
.form textarea.form__control {
  min-height: 11.25rem;
  resize: vertical;
}
.form__agree {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.875rem;
  font-size: 0.875rem;
  color: #eef3fa;
  cursor: pointer;
}
.form__agree input {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.1875rem;
  appearance: none;
  background: rgba(10, 17, 34, 0.6);
  border: 1px solid rgba(107, 140, 255, 0.4);
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.form__agree input:checked {
  background: #2e5bff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/0.875rem no-repeat;
  border-color: #2e5bff;
}
.form__agree input:focus-visible {
  outline: 2px solid #46e0ff;
  outline-offset: 2px;
}
.form__agree a {
  color: #46e0ff;
  text-decoration: underline;
}
.form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form__error {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: #ff8ba7;
}
.form__submit {
  margin-top: 2.5rem;
}
.form-summary {
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: #ffb3c4;
  background: rgba(255, 100, 130, 0.1);
  border: 1px solid rgba(255, 100, 130, 0.4);
  border-radius: 0.5rem;
}

.center-page {
  display: flex;
  align-items: center;
  min-height: 80vh;
  padding-top: 8.75rem;
  padding-bottom: 6rem;
  text-align: center;
}
.center-page__inner {
  width: 100%;
}
.center-page__en {
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #46e0ff;
  display: block;
  font-size: 3rem;
}
@media (min-width: 768px) {
  .center-page__en {
    font-size: 4.5rem;
  }
}
.center-page__title {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #eef3fa;
}
@media (min-width: 768px) {
  .center-page__title {
    font-size: 2rem;
  }
}
.center-page__text {
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  line-height: 2;
  color: #93a4bd;
}
.center-page__btn {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.page-cta {
  position: relative;
  margin-top: 6rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
  text-align: center;
  background: linear-gradient(140deg, #070d1a 0%, #101d33 55%, #14264a 100%);
  overflow: hidden;
}
@media (min-width: 768px) {
  .page-cta {
    margin-top: 8.75rem;
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}
.page-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(to right, rgba(70, 224, 255, 0.08) 1px, transparent 1px), linear-gradient(to bottom, rgba(70, 224, 255, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 75%);
}
.page-cta__inner {
  position: relative;
}
.page-cta__en {
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #46e0ff;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.page-cta__title {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #eef3fa;
}
@media (min-width: 768px) {
  .page-cta__title {
    font-size: 2rem;
  }
}
.page-cta__text {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  color: #93a4bd;
}
.page-cta__btns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .page-cta__btns {
    flex-direction: row;
    justify-content: center;
  }
}
