@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: #e8edf2;
  background: #0d1b2a;
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

:focus-visible {
  outline: 3px solid #00c8c8;
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  padding: 8px 16px;
  background: #00c8c8;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 40px;
  height: 54px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: inherit;
}
.btn::after {
  content: "→";
  font-size: 1rem;
  transition: transform 0.2s ease;
}
.btn:hover::after {
  transform: translateX(4px);
}

.btn--primary {
  background: #00c8c8;
  color: #070e17;
  border-color: #00c8c8;
}
.btn--primary:hover {
  background: #009a9a;
  border-color: #009a9a;
  box-shadow: 0 8px 24px rgba(0, 200, 200, 0.35);
}

.btn--outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
}

.btn--white {
  background: #ffffff;
  color: #00c8c8;
  border-color: #ffffff;
}
.btn--white:hover {
  background: transparent;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn--cyan {
  background: #00c8c8;
  color: #0a1a20;
  border-color: #00c8c8;
  font-weight: 700;
}
.btn--cyan:hover {
  background: #00dede;
  border-color: #00dede;
  box-shadow: 0 8px 28px rgba(0, 200, 200, 0.4);
}

#geo-bg,
canvas[aria-hidden=true] {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.header-accent {
  height: 4px;
  background: #00c8c8;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}

.header {
  position: fixed;
  top: 4px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #0d1b2a;
  border-bottom: 1px solid rgba(0, 200, 200, 0.18);
  height: 72px;
  transition: box-shadow 0.2s ease;
}
.header.is-scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .header {
    height: 60px;
  }
}

.header__inner {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 40px;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding-inline: 24px;
  }
}
@media screen and (max-width: 480px) {
  .header__inner {
    padding-inline: 16px;
  }
}
.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.header__logo img {
  height: 34px;
  width: auto;
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 768px) {
  .header__logo img {
    height: 28px;
  }
}

.nav {
  display: flex;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .nav {
    display: none;
    position: fixed;
    inset: 0;
    top: calc(60px + 4px);
    z-index: 999;
    background: #0d1b2a;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    overflow-y: auto;
  }
  .nav.is-open {
    display: flex;
  }
}

.nav__list {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0;
}
@media screen and (max-width: 768px) {
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    height: auto;
  }
}

.nav__item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .nav__item {
    height: auto;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid rgba(0, 200, 200, 0.18);
  }
}
.nav__item:hover > .nav__dropdown, .nav__item:focus-within > .nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav__link {
  display: flex;
  align-items: center;
  padding: 0 16px;
  height: 100%;
  font-size: 1rem;
  color: #e8edf2;
  white-space: nowrap;
  transition: color 0.15s ease;
  position: relative;
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: #00c8c8;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.nav__link:hover, .nav__link.is-active {
  color: #00c8c8;
}
.nav__link:hover::after, .nav__link.is-active::after {
  transform: scaleX(1);
}
@media screen and (max-width: 768px) {
  .nav__link {
    height: auto;
    padding: 18px 20px;
    font-size: 1rem;
  }
  .nav__link::after {
    display: none;
  }
}

.nav__link--cta {
  margin-left: 12px;
  padding: 0 22px;
  height: 40px;
  background: #00c8c8;
  color: #070e17 !important;
  border-radius: 4px;
  font-weight: 700;
}
.nav__link--cta::after {
  display: none;
}
.nav__link--cta:hover {
  background: #009a9a;
  color: #070e17 !important;
}
@media screen and (max-width: 768px) {
  .nav__link--cta {
    margin: 16px 20px;
    height: 52px;
    border-radius: 4px;
    justify-content: center;
  }
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #0d1b2a;
  border: 1px solid rgba(0, 200, 200, 0.18);
  border-top: 3px solid #00c8c8;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 100;
}
.nav__dropdown li {
  display: block;
}
.nav__dropdown .nav__link {
  display: block;
  height: auto;
  padding: 12px 20px;
  font-size: 1rem;
}
.nav__dropdown .nav__link::after {
  display: none;
}
.nav__dropdown .nav__link:hover {
  background: #152333;
  color: #00c8c8;
}
@media screen and (max-width: 768px) {
  .nav__dropdown {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: none;
    border-top: none;
    border-left: 3px solid #00c8c8;
    margin-left: 20px;
    padding: 0;
    background: #152333;
    display: none;
  }
  .nav__dropdown.is-open {
    display: block;
  }
  .nav__dropdown .nav__link {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(0, 200, 200, 0.18);
    font-size: 1rem;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 6px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.hamburger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.footer {
  background-color: #070e17;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='24'%3E%3Ccircle cx='0' cy='0' r='1.2' fill='%23ffffff' fill-opacity='0.06'/%3E%3Ccircle cx='28' cy='0' r='1.2' fill='%23ffffff' fill-opacity='0.06'/%3E%3Ccircle cx='0' cy='24' r='1.2' fill='%23ffffff' fill-opacity='0.06'/%3E%3Ccircle cx='28' cy='24' r='1.2' fill='%23ffffff' fill-opacity='0.06'/%3E%3Ccircle cx='14' cy='12' r='1.2' fill='%23ffffff' fill-opacity='0.06'/%3E%3C/svg%3E");
  background-size: 28px 24px;
  color: rgba(255, 255, 255, 0.75);
  padding-block: 64px 32px;
}

.footer__inner {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 40px;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    padding-inline: 24px;
  }
}
@media screen and (max-width: 480px) {
  .footer__inner {
    padding-inline: 16px;
  }
}

.footer__top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer__logo img {
  height: 34px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 40px;
}
@media screen and (max-width: 768px) {
  .footer__nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media screen and (max-width: 480px) {
  .footer__nav {
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
  }
}
.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__nav a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}
.footer__nav a:hover {
  color: #ffffff;
}

.footer__nav-heading {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__info {
  margin-bottom: 24px;
}
.footer__info p {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.55);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer__copy {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
}

.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 40px;
}
@media screen and (max-width: 768px) {
  .container {
    padding-inline: 24px;
  }
}
@media screen and (max-width: 480px) {
  .container {
    padding-inline: 16px;
  }
}

.section {
  padding-block: 112px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .section {
    padding-block: 72px;
  }
}

.section--light {
  background-color: #152333;
}

.section__header {
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .section__header {
    margin-bottom: 44px;
  }
}

.section__en {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #009a9a;
  background: rgba(0, 200, 200, 0.12);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.625rem);
  font-weight: 700;
  color: #e8edf2;
  line-height: 1.25;
  margin-bottom: 16px;
}

.section__lead {
  font-size: 1rem;
  color: #8fa3b1;
  line-height: 1.85;
  max-width: 600px;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #070e17;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 15, 35, 0.88) 0%, rgba(10, 15, 35, 0.65) 55%, rgba(0, 200, 200, 0.19) 100%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.hero__orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 200, 200, 0.14) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}
.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(77, 171, 247, 0.12) 0%, transparent 70%);
  bottom: 80px;
  left: -80px;
}

.hero__body {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 40px;
}
@media screen and (max-width: 768px) {
  .hero__body {
    padding-inline: 24px;
  }
}
@media screen and (max-width: 480px) {
  .hero__body {
    padding-inline: 16px;
  }
}
.hero__body {
  padding-top: calc(72px + 4px);
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .hero__body {
    padding-top: calc(60px + 4px + 24px);
    padding-bottom: 60px;
  }
}

.hero__en {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
}

.hero__title {
  font-size: clamp(2.25rem, 5.5vw, 3.875rem);
  font-weight: 700;
  line-height: 1.22;
  color: #ffffff;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero__title em {
  font-style: normal;
  color: #93c5fd;
}

.hero__desc {
  font-size: clamp(1rem, 1.5vw, 1.0625rem);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin-bottom: 48px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__trust {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  list-style: none;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 0;
}

.hero__trust-item {
  display: flex;
  flex-direction: column;
  padding: 20px 32px 20px 0;
  margin-right: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.hero__trust-item:last-child {
  border-right: none;
  margin-right: 0;
}
@media screen and (max-width: 480px) {
  .hero__trust-item {
    padding: 16px 16px 16px 0;
    margin-right: 16px;
  }
}

.hero__trust-num {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #93c5fd;
  line-height: 1.1;
  margin-bottom: 4px;
}
.hero__trust-num small {
  font-size: 0.6em;
  font-weight: 500;
}

.hero__trust-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.hero__scroll {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .hero__scroll {
    display: none;
  }
}

.hero__scroll-line {
  width: 2px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

.hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
  pointer-events: none;
}
.hero__wave svg {
  display: block;
  width: 100%;
  height: auto;
}

.services {
  padding-top: 80px;
  padding-bottom: 112px;
  background-color: #0d1b2a;
}
@media screen and (max-width: 768px) {
  .services {
    padding-top: 56px;
    padding-bottom: 72px;
  }
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  display: block;
  aspect-ratio: 3/4;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 1024px) {
  .service-card {
    aspect-ratio: 4/3;
  }
}
.service-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 15, 35, 0.9) 0%, rgba(10, 15, 35, 0.5) 45%, rgba(10, 15, 35, 0.1) 100%);
  z-index: 1;
  transition: background 0.6s ease;
  border-radius: 24px;
}
.service-card:hover {
  box-shadow: 0 12px 40px rgba(0, 200, 200, 0.2);
}
.service-card:hover .service-card__bg {
  transform: scale(1.06);
}
.service-card:hover::before {
  background: linear-gradient(to top, rgba(10, 15, 35, 0.92) 0%, rgba(0, 200, 200, 0.26) 55%, rgba(10, 15, 35, 0.15) 100%);
}
.service-card:hover .service-card__arrow {
  transform: translateX(6px);
}

.service-card__body {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 100px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .service-card__body {
    padding: 56px 22px;
  }
}

.service-card__en {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #009a9a;
  margin-bottom: 8px;
  background: rgba(234, 234, 236, 0.12);
  border: 1px solid rgba(0, 200, 200, 0.5);
  padding: 4px 12px;
  border-radius: 100px;
}

.service-card__title {
  font-size: clamp(1rem, 1.6vw, 1.1875rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  margin-top: auto;
  margin-bottom: 12px;
}

.service-card__arrow {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  transition: transform 0.5s ease;
}

.service-card--ai {
  grid-column: 1/-1;
  aspect-ratio: auto;
  min-height: 300px;
  border-left: 4px solid #00c8c8;
}
.service-card--ai::before {
  background: linear-gradient(135deg, rgba(7, 14, 23, 0.82) 0%, rgba(13, 27, 42, 0.65) 60%, rgba(0, 40, 40, 0.52) 100%);
}
.service-card--ai:hover {
  box-shadow: 0 8px 32px rgba(0, 200, 200, 0.15);
}
.service-card--ai:hover .service-card__bg {
  transform: none;
}
.service-card--ai:hover::before {
  background: linear-gradient(135deg, rgba(7, 14, 23, 0.72) 0%, rgba(13, 27, 42, 0.52) 60%, rgba(0, 200, 200, 0.1) 100%);
}
.service-card--ai:hover .service-card__arrow {
  transform: translateX(6px);
}
.service-card--ai .service-card__body {
  position: absolute;
  flex-direction: row;
  align-items: center;
  padding: 2rem 2.5rem;
  text-align: left;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .service-card--ai .service-card__body {
    padding: 1.75rem 1.75rem;
    gap: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .service-card--ai .service-card__body {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 1rem;
  }
}
.service-card--ai .service-card__title {
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}
.service-card--ai .service-card__arrow {
  margin-top: 0.25rem;
}

.service-card__en--ai {
  border-color: rgba(0, 200, 200, 0.4);
  color: #00c8c8;
  background: rgba(0, 200, 200, 0.08);
}

.service-card__ai-icon {
  flex-shrink: 0;
}

.service-card__ai-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__ai-desc {
  font-size: 0.875rem;
  color: rgba(240, 244, 248, 0.65);
  line-height: 1.65;
  margin-bottom: 0.25rem;
}

.feature__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}
@media screen and (max-width: 1024px) {
  .feature__grid {
    gap: 48px;
  }
}
@media screen and (max-width: 768px) {
  .feature__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.feature__grid--reverse .feature__image {
  order: 2;
}
@media screen and (max-width: 768px) {
  .feature__grid--reverse .feature__image {
    order: 0;
  }
}

.feature__image img {
  width: 100%;
  display: block;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}
.feature__image--graphic img {
  margin-inline: auto;
  border-radius: 0;
  box-shadow: none;
}

.feature__content .feature__en {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #00c8c8;
  background: rgba(0, 200, 200, 0.12);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.feature__content .feature__title {
  font-size: clamp(1.5rem, 2.5vw, 2.125rem);
  font-weight: 700;
  color: #e8edf2;
  line-height: 1.3;
  margin-bottom: 24px;
}
.feature__content p {
  font-size: 1rem;
  color: #e8edf2;
  line-height: 1.9;
  margin-bottom: 14px;
}
.feature__content .btn {
  margin-top: 32px;
}

.section--dark {
  background: linear-gradient(135deg, #0d1b2a 0%, #152333 65%, #0d2a2a 100%);
}
.section--dark .feature__content .feature__en {
  color: #00c8c8;
  background: rgba(0, 200, 200, 0.1);
  border: 1px solid rgba(0, 200, 200, 0.3);
}
.section--dark .feature__content .feature__title {
  color: #f0f4f8;
}
.section--dark .feature__content p {
  color: rgba(240, 244, 248, 0.7);
}

.ai-feature-graphic {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 200, 200, 0.1), 0 4px 20px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 200, 200, 0.15);
}
.ai-feature-graphic svg {
  display: block;
  width: 100%;
  height: auto;
}

.wave-top {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  z-index: 1;
  line-height: 0;
  pointer-events: none;
}
.wave-top svg {
  display: block;
  width: 100%;
}

.wave-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 1;
  line-height: 0;
  pointer-events: none;
}
.wave-bottom svg {
  display: block;
  width: 100%;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}

.info-card {
  display: flex;
  flex-direction: column;
  padding: 36px 28px;
  background: #0d1b2a;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  position: relative;
  overflow: hidden;
}
.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #00c8c8;
  border-radius: 16px 16px 0 0;
  transform: scaleX(0);
  transition: transform 0.6s ease;
  transform-origin: left;
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 200, 200, 0.2);
}
.info-card:hover::before {
  transform: scaleX(1);
}

.info-card__num {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(0, 200, 200, 0.08);
  line-height: 1;
  margin-bottom: 14px;
}

.info-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #e8edf2;
  margin-bottom: 10px;
}

.info-card__desc {
  font-size: 1rem;
  color: #8fa3b1;
  line-height: 1.8;
  flex: 1;
  margin-bottom: 20px;
}

.info-card__link {
  font-size: 1rem;
  font-weight: 700;
  color: #00c8c8;
  display: flex;
  align-items: center;
  gap: 6px;
}
.info-card__link::after {
  content: "→";
  transition: transform 0.5s ease;
}
.info-card:hover .info-card__link::after {
  transform: translateX(4px);
}

.cta-banner {
  background: #070e17;
  padding-block: 112px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .cta-banner {
    padding-block: 72px;
  }
}
.cta-banner {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cline x1='0' y1='60' x2='60' y2='0' stroke='%23ffffff' stroke-opacity='0.08' stroke-width='1.5'/%3E%3C/svg%3E");
  background-size: 80px 80px;
}
.cta-banner::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 200, 200, 0.16) 0%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-banner__en {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 5px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta-banner__title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-banner__desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.9;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.cta-banner .btn--white {
  position: relative;
  z-index: 1;
}

.page-hero {
  position: relative;
  background-color: #070e17;
  background-image: linear-gradient(135deg, rgba(10, 15, 30, 0.97) 0%, rgba(17, 24, 39, 0.92) 60%, rgba(0, 200, 200, 0.21) 100%), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='24'%3E%3Ccircle cx='0' cy='0' r='1.2' fill='%23ffffff' fill-opacity='0.06'/%3E%3Ccircle cx='28' cy='0' r='1.2' fill='%23ffffff' fill-opacity='0.06'/%3E%3Ccircle cx='0' cy='24' r='1.2' fill='%23ffffff' fill-opacity='0.06'/%3E%3Ccircle cx='28' cy='24' r='1.2' fill='%23ffffff' fill-opacity='0.06'/%3E%3Ccircle cx='14' cy='12' r='1.2' fill='%23ffffff' fill-opacity='0.06'/%3E%3C/svg%3E");
  background-size: cover, 28px 24px;
  padding: calc(72px + 4px + 80px) 0 88px;
  text-align: center;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .page-hero {
    padding-top: calc(60px + 4px + 56px);
    padding-bottom: 64px;
  }
}
.page-hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 200, 200, 0.15) 0%, transparent 65%);
  top: -120px;
  right: -100px;
  pointer-events: none;
}

.page-hero__inner {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 40px;
}
@media screen and (max-width: 768px) {
  .page-hero__inner {
    padding-inline: 24px;
  }
}
@media screen and (max-width: 480px) {
  .page-hero__inner {
    padding-inline: 16px;
  }
}
.page-hero__inner {
  position: relative;
  z-index: 1;
}

.page-hero__eyebrow {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 5px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.page-hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.22;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.page-hero__desc {
  font-size: clamp(1rem, 1.5vw, 1.0625rem);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.9;
  max-width: 620px;
  margin-inline: auto;
}

.thanks-icon {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.link-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  background: #0d1b2a;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 200, 200, 0.18);
}
.link-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #00c8c8;
  border-radius: 16px 16px 0 0;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 200, 200, 0.2);
  border-color: rgba(0, 200, 200, 0.11);
}
.link-card:hover::before {
  transform: scaleX(1);
}
.link-card:hover .link-card__link::after {
  transform: translateX(4px);
}

.link-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 200, 200, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00c8c8;
  margin-bottom: 16px;
}

.link-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #e8edf2;
  margin-bottom: 10px;
  line-height: 1.4;
}

.link-card__desc {
  font-size: 1rem;
  color: #8fa3b1;
  line-height: 1.8;
  flex: 1;
  margin-bottom: 20px;
}

.link-card__link {
  font-size: 1rem;
  font-weight: 700;
  color: #00c8c8;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}
.link-card__link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .link-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .link-grid {
    grid-template-columns: 1fr;
  }
}
.link-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  .link-grid--2col {
    grid-template-columns: 1fr;
  }
}

.company-table {
  border: 1px solid rgba(0, 200, 200, 0.18);
  border-radius: 16px;
  overflow: hidden;
}

.company-table__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid rgba(0, 200, 200, 0.18);
}
.company-table__row:last-child {
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  .company-table__row {
    grid-template-columns: 1fr;
  }
}

.company-table__label {
  background: #152333;
  padding: 18px 24px;
  font-size: 1rem;
  font-weight: 700;
  color: #e8edf2;
  border-right: 1px solid rgba(0, 200, 200, 0.18);
}
@media screen and (max-width: 768px) {
  .company-table__label {
    border-right: none;
    border-bottom: 1px solid rgba(0, 200, 200, 0.18);
    padding: 12px 20px;
  }
}

.company-table__value {
  padding: 18px 24px;
  font-size: 1rem;
  color: #e8edf2;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .company-table__value {
    padding: 14px 20px;
  }
}

.map-embed {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: none;
}
@media screen and (max-width: 768px) {
  .map-embed iframe {
    height: 300px;
  }
}

.web-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .web-features {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .web-features {
    grid-template-columns: 1fr;
  }
}
.web-features--2col {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  .web-features--2col {
    grid-template-columns: 1fr;
  }
}

.web-feature-card {
  background: #0d1b2a;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 200, 200, 0.18);
}

.web-feature-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 200, 200, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00c8c8;
  margin-bottom: 16px;
}
.web-feature-card__icon--demerit {
  background: rgba(220, 38, 38, 0.15);
  color: #f87171;
}

.web-feature-card__title {
  font-weight: 700;
  color: #e8edf2;
  margin-bottom: 10px;
}
.web-feature-card__title--demerit {
  color: #f87171;
}

.web-feature-card__desc {
  font-size: 1rem;
  color: #e8edf2;
  line-height: 1.8;
}

.web-feature-large {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  margin-bottom: 64px;
}
.web-feature-large:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .web-feature-large {
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .web-feature-large {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.web-feature-large--reverse .web-feature-large__image {
  order: 2;
}
@media screen and (max-width: 768px) {
  .web-feature-large--reverse .web-feature-large__image {
    order: 0;
  }
}
.web-feature-large--spaced {
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(0, 200, 200, 0.18);
  margin-bottom: 56px;
}

.web-feature-large__image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  display: block;
}
.web-feature-large__image video {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  display: block;
}

.web-feature-large__num {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(0, 200, 200, 0.08);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}

.web-feature-large__title {
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: #e8edf2;
  line-height: 1.3;
  margin-bottom: 18px;
}

.web-feature-large__desc {
  font-size: 1rem;
  color: #e8edf2;
  line-height: 1.9;
  margin-bottom: 14px;
}

.feature-box {
  background: #152333;
  border-radius: 16px;
  padding: 28px 28px 20px;
  border: 1px solid rgba(0, 200, 200, 0.18);
}

.feature-box__title {
  font-size: 1rem;
  font-weight: 700;
  color: #00c8c8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 200, 200, 0.18);
}

.feature-box__item {
  margin-bottom: 16px;
}

.item-label {
  font-size: 1rem;
  font-weight: 700;
  color: #e8edf2;
  margin-bottom: 6px;
}
.item-label--md {
  font-size: 1rem;
}

.item-text {
  font-size: 1rem;
  color: #e8edf2;
  line-height: 1.8;
}

.item-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #e8edf2;
  margin-bottom: 6px;
}

.flow-steps-section {
  margin-top: 48px;
}

.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 32px;
}

.flow-step {
  display: grid;
  grid-template-columns: 1fr 0.35fr;
  gap: 48px;
  align-items: center;
  padding: 36px 40px;
  background: #152333;
  border-radius: 16px;
  border: 1px solid rgba(0, 200, 200, 0.18);
}
.flow-step--reverse {
  grid-template-columns: 0.35fr 1fr;
}
.flow-step--reverse .flow-step__image {
  order: -1;
}
@media screen and (max-width: 768px) {
  .flow-step {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 24px;
  }
  .flow-step--reverse .flow-step__image {
    order: 0;
  }
}

.flow-step__body .item-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.flow-step__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #00c8c8;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.flow-step__image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  display: block;
}

.merit-block {
  border-left: 3px solid #22c55e;
  padding-left: 16px;
  margin-bottom: 20px;
}

.demerit-block {
  border-left: 3px solid #f87171;
  padding-left: 16px;
}

.merit-item {
  margin-bottom: 16px;
}

.badge {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.badge--merit {
  background: rgba(22, 163, 74, 0.15);
  color: #4ade80;
}
.badge--demerit {
  background: rgba(220, 38, 38, 0.2);
  color: #f87171;
}

.plan-item {
  margin-bottom: 20px;
}

.step-img {
  width: 100%;
  max-width: 600px;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  display: block;
  margin-inline: auto;
  margin-top: 48px;
}

.banner-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  display: block;
}

.web-flow {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: flow;
}

.web-flow__item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  position: relative;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .web-flow__item {
    grid-template-columns: 56px 1fr;
    gap: 16px;
    padding-bottom: 32px;
  }
}
.web-flow__item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 72px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(rgba(0, 200, 200, 0.18), rgba(0, 200, 200, 0.18) 80%, transparent);
}
@media screen and (max-width: 768px) {
  .web-flow__item:not(:last-child)::before {
    left: 27px;
    top: 56px;
  }
}

.web-flow__num {
  width: 72px;
  height: 72px;
  background: #00c8c8;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 200, 200, 0.22);
}
@media screen and (max-width: 768px) {
  .web-flow__num {
    width: 56px;
    height: 56px;
    font-size: 1.125rem;
  }
}

.web-flow__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #e8edf2;
  margin-bottom: 10px;
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .web-flow__title {
    padding-top: 14px;
  }
}

.web-flow__desc {
  font-size: 1rem;
  color: #e8edf2;
  line-height: 1.85;
  margin-bottom: 12px;
}
.web-flow__desc a {
  color: #00c8c8;
  text-decoration: underline;
}

.web-flow__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}
.web-flow__list li {
  font-size: 1rem;
  color: #e8edf2;
  line-height: 1.7;
  padding-left: 0;
}

.web-flow__label {
  font-weight: 700;
  color: #e8edf2;
  margin-right: 8px;
}
.web-flow__label::before {
  content: "・";
  color: #00c8c8;
}

.web-flow__note {
  font-size: 1rem;
  color: #8fa3b1;
  margin-top: 12px;
}

.fee-nav {
  background: #152333;
  border-bottom: 1px solid rgba(0, 200, 200, 0.18);
}

.fee-nav__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 40px;
}
@media screen and (max-width: 768px) {
  .fee-nav__list {
    grid-template-columns: repeat(2, 1fr);
    padding-inline: 20px;
  }
}
@media screen and (max-width: 480px) {
  .fee-nav__list {
    grid-template-columns: 1fr;
  }
}

.fee-nav__item {
  border-right: 1px solid rgba(0, 200, 200, 0.18);
}
.fee-nav__item:nth-child(3n) {
  border-right: none;
}
@media screen and (max-width: 768px) {
  .fee-nav__item:nth-child(3n) {
    border-right: 1px solid rgba(0, 200, 200, 0.18);
  }
  .fee-nav__item:nth-child(2n) {
    border-right: none;
  }
}
@media screen and (max-width: 480px) {
  .fee-nav__item {
    border-right: none;
  }
}

.fee-nav__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 16px;
  font-size: 1rem;
  font-weight: 600;
  color: #e8edf2;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  border-bottom: 3px solid transparent;
}
.fee-nav__link:hover {
  color: #00c8c8;
  border-bottom-color: #00c8c8;
}

.fee-nav__num {
  font-size: 1rem;
  font-weight: 700;
  color: #00c8c8;
  background: rgba(0, 200, 200, 0.12);
  padding: 2px 8px;
  border-radius: 4px;
}

.fee-nav__label {
  flex: 1;
  white-space: nowrap;
}

.fee-nav__arrow {
  opacity: 0.5;
}

.fee-section {
  padding-block: 64px;
  border-bottom: 1px solid rgba(0, 200, 200, 0.18);
}
.fee-section:last-child {
  border-bottom: none;
}

.fee-ex-category {
  padding-block: 48px;
  border-bottom: 1px solid rgba(0, 200, 200, 0.18);
}
.fee-ex-category:last-child {
  border-bottom: none;
}

.fee-section__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.fee-section__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #00c8c8, #009a9a);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.fee-section__sub {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #00c8c8;
  margin-bottom: 4px;
}

.fee-section__title {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #e8edf2;
  line-height: 1.3;
}
.fee-section__title a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fee-sub-title {
  font-size: 1rem;
  font-weight: 700;
  color: #e8edf2;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(0, 200, 200, 0.12);
}

.fee-sub-section {
  margin-top: 40px;
}

.fee-table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 200, 200, 0.18);
  margin-bottom: 16px;
}
@media screen and (max-width: 480px) {
  .fee-table-wrap {
    overflow-x: visible;
    box-shadow: none;
    border: none;
    border-radius: 0;
  }
}

.fee-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 1rem;
}
.fee-table thead tr {
  background: #070e17;
  color: #ffffff;
}
.fee-table th {
  padding: 14px 20px;
  font-weight: 700;
  font-size: 1rem;
  text-align: left;
  letter-spacing: 0.04em;
}
.fee-table th:nth-child(1),
.fee-table td:nth-child(1) {
  width: 17em;
  white-space: nowrap;
}
.fee-table th:nth-child(2),
.fee-table td:nth-child(2) {
  width: 14em;
}
.fee-table .fee-th--center {
  text-align: center;
  white-space: nowrap;
}
.fee-table tbody tr {
  border-bottom: 1px solid rgba(0, 200, 200, 0.18);
}
.fee-table tbody tr:last-child {
  border-bottom: none;
}
.fee-table tbody tr:nth-child(even) {
  background: #152333;
}
.fee-table td {
  padding: 14px 20px;
  color: #e8edf2;
  line-height: 1.65;
  vertical-align: top;
}
.fee-table td a {
  color: #00c8c8;
  text-decoration: underline;
}
.fee-table .fee-price {
  font-weight: 700;
  color: #00c8c8;
  text-align: center;
  white-space: nowrap;
  font-size: 1rem;
}
.fee-table .fee-total {
  background: rgba(0, 200, 200, 0.12) !important;
}
.fee-table .fee-total td {
  font-weight: 700;
  color: #e8edf2;
}
.fee-table .fee-total .fee-price {
  color: #00c8c8;
  font-size: 1rem;
}
@media screen and (max-width: 480px) {
  .fee-table,
  .fee-table tbody {
    display: block;
    width: 100%;
  }
  .fee-table thead {
    display: none;
  }
  .fee-table tbody tr {
    display: block;
    border: 1px solid rgba(0, 200, 200, 0.18);
    border-left: 3px solid #00c8c8;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    background: #152333;
  }
  .fee-table tbody tr:nth-child(even) {
    background: rgba(0, 200, 200, 0.08);
    border-left-color: #00c8c8;
  }
  .fee-table td:nth-child(1) {
    background: rgba(0, 200, 200, 0.12);
    font-weight: 600;
    width: auto;
    white-space: normal;
  }
  .fee-table td:nth-child(2) {
    width: auto;
  }
  .fee-table td {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(0, 200, 200, 0.15);
    line-height: 1.55;
  }
  .fee-table td:last-child {
    border-bottom: none;
  }
  .fee-table td::before {
    font-weight: 700;
    color: #00c8c8;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    flex-shrink: 0;
    min-width: 2.6em;
    padding-top: 0.1em;
  }
  .fee-table td:nth-child(1)::before {
    content: "項目";
  }
  .fee-table td:nth-child(2)::before {
    content: "料金";
  }
  .fee-table td:nth-child(3)::before {
    content: "摘要";
  }
  .fee-table .fee-price {
    text-align: left;
    font-size: 1.05rem;
  }
  .fee-table .fee-total td::before {
    color: #00c8c8;
  }
}

.fee-notes {
  margin-top: 12px;
}

.fee-note {
  font-size: 1rem;
  color: #8fa3b1;
  line-height: 1.8;
  padding-left: 1em;
  text-indent: -1em;
}
.fee-note::before {
  content: "";
}

.fee-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
}

.fee-accordion__item {
  border-radius: 16px;
  border: 1px solid rgba(0, 200, 200, 0.18);
  overflow: hidden;
  background: #0d1b2a;
}
.fee-accordion__item[open] .fee-accordion__icon {
  transform: rotate(180deg);
}
.fee-accordion__item[open] .fee-accordion__summary {
  background: rgba(0, 200, 200, 0.12);
  border-bottom: 1px solid rgba(0, 200, 200, 0.18);
}

.fee-accordion__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  user-select: none;
  gap: 16px;
  transition: background 0.2s;
}
.fee-accordion__summary:hover {
  background: #152333;
}
.fee-accordion__summary::-webkit-details-marker {
  display: none;
}

.fee-accordion__label {
  display: flex;
  align-items: center;
  gap: 14px;
}

.fee-accordion__num {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  background: #00c8c8;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fee-accordion__title {
  font-size: 1rem;
  font-weight: 700;
  color: #e8edf2;
}

.fee-accordion__icon {
  flex-shrink: 0;
  color: #8fa3b1;
  transition: transform 0.25s ease;
}

.fee-accordion__body {
  padding: 24px;
}

.form-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media screen and (max-width: 1024px) {
  .form-icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .form-icon-grid {
    grid-template-columns: 1fr;
  }
}

.form-icon-card {
  display: flex;
  gap: 14px;
  background: #0d1b2a;
  border-radius: 8px;
  padding: 18px;
  border: 1px solid rgba(0, 200, 200, 0.18);
  align-items: flex-start;
}

.form-icon-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 200, 200, 0.12);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.form-icon-card__icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.form-icon-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #e8edf2;
  margin-bottom: 4px;
}

.form-icon-card__desc {
  font-size: 1rem;
  color: #8fa3b1;
  line-height: 1.75;
}

.form-badge {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 100px;
  background: rgba(0, 200, 200, 0.12);
  color: #00c8c8;
  margin-right: 6px;
}
.form-badge--paid {
  background: rgba(234, 179, 8, 0.2);
  color: #fbbf24;
  display: block;
  margin-bottom: 6px;
}

.form-subsection {
  margin-bottom: 40px;
}

.form-subsection__title {
  font-size: 1rem;
  font-weight: 700;
  color: #e8edf2;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(0, 200, 200, 0.12);
  display: flex;
  align-items: center;
}

.form-section__header {
  margin-bottom: 32px;
}

.form-sample-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  background: #152333;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(0, 200, 200, 0.18);
}
@media screen and (max-width: 768px) {
  .form-sample-box {
    grid-template-columns: 1fr;
  }
}

.form-sample-box__img img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.form-sample-box__title {
  font-size: 1rem;
  font-weight: 700;
  color: #e8edf2;
  margin-bottom: 12px;
}

.form-sample-box__desc {
  font-size: 1rem;
  color: #e8edf2;
  line-height: 1.8;
  margin-bottom: 16px;
}

.form-sample-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #00c8c8, #009a9a);
  color: #ffffff;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 700;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}
.form-sample-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.form-csv-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
@media screen and (max-width: 768px) {
  .form-csv-box {
    grid-template-columns: 1fr;
  }
}

.form-csv-img img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.form-notice-box {
  background: #152333;
  border-radius: 8px;
  padding: 16px 20px;
  border: 1px solid rgba(0, 200, 200, 0.18);
}
.form-notice-box p {
  font-size: 1rem;
  color: #8fa3b1;
  line-height: 1.8;
}

.contact-tel-section {
  padding-block: 48px 0;
}

.contact-tel-box {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 760px;
  margin-inline: auto;
  background: rgba(0, 200, 200, 0.12);
  border: 1px solid rgba(0, 200, 200, 0.2);
  border-radius: 16px;
  padding: 28px 36px;
}
@media screen and (max-width: 768px) {
  .contact-tel-box {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
}

.contact-tel-box__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #00c8c8;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-tel-box__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-tel-box__label {
  font-size: 0.875rem;
  color: #8fa3b1;
  font-weight: 500;
}

.contact-tel-box__number {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #00c8c8;
  letter-spacing: 0.04em;
  text-decoration: none;
  line-height: 1.1;
}
.contact-tel-box__number:hover {
  text-decoration: underline;
}

.contact-tel-box__hours {
  font-size: 0.8125rem;
  color: #8fa3b1;
}

.contact-tel-section__or {
  text-align: center;
  margin-top: 32px;
  font-size: 0.9375rem;
  color: #8fa3b1;
  position: relative;
}
.contact-tel-section__or::before, .contact-tel-section__or::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 60px;
  height: 1px;
  background: rgba(0, 200, 200, 0.18);
  margin: 0 12px;
}

.contact-section {
  padding-block: 80px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='24'%3E%3Ccircle cx='0' cy='0' r='1.2' fill='%2300c8c8' fill-opacity='0.05'/%3E%3Ccircle cx='28' cy='0' r='1.2' fill='%2300c8c8' fill-opacity='0.05'/%3E%3Ccircle cx='0' cy='24' r='1.2' fill='%2300c8c8' fill-opacity='0.05'/%3E%3Ccircle cx='28' cy='24' r='1.2' fill='%2300c8c8' fill-opacity='0.05'/%3E%3Ccircle cx='14' cy='12' r='1.2' fill='%2300c8c8' fill-opacity='0.05'/%3E%3C/svg%3E");
  background-size: 28px 24px;
}

.contact-form {
  max-width: 760px;
  margin-inline: auto;
  background: #0d1b2a;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 200, 200, 0.18);
  padding: 48px;
}
@media screen and (max-width: 768px) {
  .contact-form {
    padding: 32px 24px;
  }
}

.contact-dl {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 200, 200, 0.18);
}
@media screen and (max-width: 768px) {
  .contact-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.contact-dt {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 700;
  color: #e8edf2;
  padding-top: 10px;
}
@media screen and (max-width: 768px) {
  .contact-dt {
    padding-top: 0;
  }
}

.contact-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  background: #152333;
  color: #8fa3b1;
  white-space: nowrap;
}
.contact-badge--required {
  background: rgba(220, 38, 38, 0.2);
  color: #f87171;
}

.contact-dd {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-name-row {
  display: flex;
  gap: 12px;
}
@media screen and (max-width: 480px) {
  .contact-name-row {
    flex-direction: column;
    gap: 8px;
  }
}

.contact-input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(0, 200, 200, 0.18);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  color: #e8edf2;
  background: #0d1b2a;
  transition: border-color 0.2s;
}
.contact-input:focus {
  outline: none;
  border-color: #00c8c8;
  box-shadow: 0 0 0 3px rgba(0, 200, 200, 0.08);
}
.contact-input--half {
  max-width: 240px;
}

.contact-select {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(0, 200, 200, 0.18);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  color: #e8edf2;
  background: #0d1b2a;
  transition: border-color 0.2s;
}
.contact-select:focus {
  outline: none;
  border-color: #00c8c8;
}

.contact-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(0, 200, 200, 0.18);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  color: #e8edf2;
  background: #0d1b2a;
  resize: vertical;
  line-height: 1.7;
  transition: border-color 0.2s;
}
.contact-textarea:focus {
  outline: none;
  border-color: #00c8c8;
  box-shadow: 0 0 0 3px rgba(0, 200, 200, 0.08);
}

.contact-check-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #e8edf2;
  cursor: pointer;
}
.contact-check-label input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: #00c8c8;
  flex-shrink: 0;
}

.contact-submit-wrap {
  margin-top: 32px;
  text-align: center;
}

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  padding: 0 48px;
  background: #00c8c8;
  color: #ffffff;
  border: none;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 200, 200, 0.22);
}
.contact-submit-btn:hover {
  background: #009a9a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 200, 200, 0.3);
}

.pri-section {
  padding-block: 80px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='24'%3E%3Ccircle cx='0' cy='0' r='1.2' fill='%2300c8c8' fill-opacity='0.05'/%3E%3Ccircle cx='28' cy='0' r='1.2' fill='%2300c8c8' fill-opacity='0.05'/%3E%3Ccircle cx='0' cy='24' r='1.2' fill='%2300c8c8' fill-opacity='0.05'/%3E%3Ccircle cx='28' cy='24' r='1.2' fill='%2300c8c8' fill-opacity='0.05'/%3E%3Ccircle cx='14' cy='12' r='1.2' fill='%2300c8c8' fill-opacity='0.05'/%3E%3C/svg%3E");
  background-size: 28px 24px;
}

.pri-intro {
  font-size: 1rem;
  color: #e8edf2;
  line-height: 1.9;
  margin-bottom: 48px;
  padding: 20px 24px;
  background: #152333;
  border-radius: 8px;
  border-left: 4px solid #00c8c8;
}

.pri-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pri-item {
  padding-block: 36px;
  border-bottom: 1px solid rgba(0, 200, 200, 0.18);
}
.pri-item:last-child {
  border-bottom: none;
}

.pri-item__title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #e8edf2;
  margin-bottom: 16px;
}

.pri-item__num {
  width: 36px;
  height: 36px;
  background: #00c8c8;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.pri-item__body p {
  font-size: 1rem;
  color: #e8edf2;
  line-height: 1.9;
  margin-bottom: 12px;
}
.pri-item__body p:last-child {
  margin-bottom: 0;
}

.pri-ol {
  padding-left: 1.5em;
}
.pri-ol li {
  font-size: 1rem;
  color: #e8edf2;
  line-height: 1.9;
  margin-bottom: 8px;
}
.pri-ol li:last-child {
  margin-bottom: 0;
}

.pri-contact {
  margin-top: 48px;
  text-align: center;
}
.pri-contact p {
  font-size: 1rem;
  color: #e8edf2;
  margin-bottom: 20px;
}

.pri-contact__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #00c8c8;
  color: #ffffff;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 700;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 200, 200, 0.22);
}
.pri-contact__btn:hover {
  background: #009a9a;
  transform: translateY(-2px);
}

.template-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
@media screen and (max-width: 1024px) {
  .template-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .template-gallery {
    grid-template-columns: 1fr;
  }
}

.template-gallery__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.template-gallery__label {
  margin: 0;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #009a9a;
}

.template-gallery__img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  cursor: zoom-in;
  transition: transform 0.25s ease;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.template-gallery__img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 200, 200, 0.2);
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.modal-overlay.is-open {
  display: flex;
}

.modal-window {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.modal-window img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}

.modal-window__close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

.pagetop {
  display: none;
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: #00c8c8;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 100;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 200, 200, 0.3);
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}
.pagetop--show {
  display: flex;
}
.pagetop:hover {
  background: #009a9a;
  transform: translateY(-3px);
}
@media screen and (max-width: 768px) {
  .pagetop {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}

.btn--ghost {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
}

.maintenance-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
@media screen and (max-width: 768px) {
  .maintenance-plans {
    grid-template-columns: 1fr;
  }
}

.maintenance-plan {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 200, 200, 0.18);
  border-radius: 24px;
  padding: 36px;
  background: #0d1b2a;
}
.maintenance-plan--primary {
  background: #00c8c8;
  border-color: #00c8c8;
  color: #ffffff;
}
@media screen and (max-width: 480px) {
  .maintenance-plan {
    padding: 24px 20px;
  }
}

.maintenance-plan__head {
  margin-bottom: 28px;
}

.maintenance-plan__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: #00c8c8;
  color: #ffffff;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.maintenance-plan--primary .maintenance-plan__badge {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.maintenance-plan__title {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 4px;
}

.maintenance-plan__subtitle {
  font-size: 0.875rem;
  color: #8fa3b1;
}
.maintenance-plan--primary .maintenance-plan__subtitle {
  color: rgba(255, 255, 255, 0.75);
}

.maintenance-plan__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  flex-grow: 1;
}
.maintenance-plan__list li {
  padding-left: 20px;
  position: relative;
  font-size: 0.9375rem;
}
.maintenance-plan__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00c8c8;
}
.maintenance-plan--primary .maintenance-plan__list li::before {
  background: rgba(255, 255, 255, 0.8);
}

.maintenance-plan__price {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
  padding: 20px;
  background: #152333;
  border-radius: 16px;
}
.maintenance-plan--primary .maintenance-plan__price {
  background: rgba(0, 0, 0, 0.15);
}

.maintenance-plan__price-label {
  font-size: 0.75rem;
  color: #8fa3b1;
  margin-bottom: 4px;
}
.maintenance-plan--primary .maintenance-plan__price-label {
  color: rgba(255, 255, 255, 0.7);
}

.maintenance-plan__price-value {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #00c8c8;
  line-height: 1.2;
}
.maintenance-plan__price-value small {
  font-size: 0.6em;
  font-weight: 400;
}
.maintenance-plan--primary .maintenance-plan__price-value {
  color: #ffffff;
}

.maintenance-plan__price-note {
  font-size: 0.75rem;
  color: #8fa3b1;
  margin-top: 6px;
}
.maintenance-plan--primary .maintenance-plan__price-note {
  color: rgba(255, 255, 255, 0.65);
}

.maintenance-plans__note {
  text-align: center;
  font-size: 0.8125rem;
  color: #8fa3b1;
  margin-top: 24px;
}

.btn--outline {
  background: transparent;
  color: #00c8c8;
  border: 2px solid #00c8c8;
}
.btn--outline:hover {
  background: #00c8c8;
  color: #ffffff;
}

.btn--white-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.7);
}
.btn--white-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
}

.cta-banner__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.maintenance-faq {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.maintenance-faq__item {
  border-bottom: 1px solid rgba(0, 200, 200, 0.18);
}
.maintenance-faq__item:first-child {
  border-top: 1px solid rgba(0, 200, 200, 0.18);
}

.maintenance-faq__q {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 24px 0;
  font-size: 1rem;
  font-weight: 600;
  cursor: default;
}

.maintenance-faq__q-icon,
.maintenance-faq__a-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
}

.maintenance-faq__q-icon {
  background: #00c8c8;
  color: #ffffff;
}

.maintenance-faq__a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 0 0 24px 0;
  font-size: 0.9375rem;
  color: #8fa3b1;
  line-height: 1.8;
}

.maintenance-faq__a-icon {
  background: #152333;
  color: #00c8c8;
  border: 1px solid rgba(0, 200, 200, 0.18);
}/*# sourceMappingURL=main.css.map */