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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #222222;
  background-color: #FFFFFF;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}

ul,
ol {
  list-style: none;
}

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

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #060F1E;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-loader__inner {
  text-align: center;
  width: 280px;
}
.l-loader__brand {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 28px;
}
.l-loader__brand small {
  display: block;
  font-size: 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
  margin-top: 4px;
}
.l-loader__bar-wrap {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}
.l-loader__bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #00B4D8, #FF6B35);
}
.l-loader__pct {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.1em;
}
.l-loader__pct small {
  font-size: 9px;
}

.l-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .l-container {
    padding: 0 16px;
  }
}

.l-section {
  padding: 120px 0;
}
@media (max-width: 768px) {
  .l-section {
    padding: 64px 0;
  }
}
.l-section--alt {
  background: #F4F8FC;
}
.l-section--dark {
  background: #0D2E5C;
  color: #FFFFFF;
}

.c-section-head {
  text-align: center;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .c-section-head {
    margin-bottom: 40px;
  }
}
.c-section-head__en {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #00B4D8;
  display: block;
  margin-bottom: 12px;
}
.c-section-head__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(32px, 4.2vw, 56px);
  color: #0D2E5C;
  margin-bottom: 16px;
  line-height: 1.25;
  font-weight: 700;
}
.l-section--dark .c-section-head__title {
  color: #FFFFFF;
}
.c-section-head__lead {
  font-size: 20px;
  color: #666666;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .c-section-head__lead {
    font-size: 16px;
  }
}
.l-section--dark .c-section-head__lead {
  color: rgba(255, 255, 255, 0.72);
}

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 44px;
  border-radius: 9999px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  min-height: 56px;
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
}
.c-btn::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -80%;
  width: 55%;
  height: 140%;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.28) 50%, transparent 100%);
  transform: skewX(-18deg);
  transition: left 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.c-btn:hover::before {
  left: 160%;
}
@media (max-width: 768px) {
  .c-btn {
    padding: 14px 32px;
    min-height: 50px;
    font-size: 16px;
    width: 100%;
    max-width: 320px;
  }
}
.c-btn--primary {
  background: #FF6B35;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.38);
}
.c-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(255, 107, 53, 0.46);
}
.c-btn--primary:active {
  transform: translateY(-1px);
}
.c-btn--outline {
  background: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(4px);
}
.c-btn--outline::before {
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.12) 50%, transparent 100%);
}
.c-btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #FFFFFF;
}
.c-btn--outline-dark {
  background: transparent;
  color: #0D2E5C;
  border: 1.5px solid #0D2E5C;
}
.c-btn--outline-dark::before {
  background: linear-gradient(115deg, transparent 0%, rgba(13, 46, 92, 0.1) 50%, transparent 100%);
}
.c-btn--outline-dark:hover {
  background: #0D2E5C;
  color: #FFFFFF;
}
.c-btn.l-header__cta {
  min-height: 52px;
  padding: 13px 32px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.c-btn.l-header__cta::before {
  display: none;
}
@media (max-width: 768px) {
  .c-btn.l-header__cta {
    display: none;
  }
}
.c-btn__arrow {
  font-size: 17px;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1;
}
.c-btn:hover .c-btn__arrow {
  transform: translateX(5px);
}

.c-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 9999px;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.c-badge--accent {
  background: rgba(0, 180, 216, 0.12);
  color: #00B4D8;
  border: 1px solid rgba(0, 180, 216, 0.3);
}
.c-badge--recommended {
  background: #FF6B35;
  color: #FFFFFF;
}

.c-card {
  background: #FFFFFF;
  border-radius: 5px;
  padding: 40px;
  box-shadow: 0 2px 8px rgba(13, 46, 92, 0.08);
  border: 1px solid #E0E8F0;
  transition: all 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (max-width: 768px) {
  .c-card {
    padding: 24px;
  }
}
.c-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(13, 46, 92, 0.12);
  border-color: rgba(0, 180, 216, 0.25);
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  z-index: 201;
  transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (max-width: 768px) {
  .l-header {
    height: 60px;
  }
}
.l-header--thanks {
  position: static;
}
.l-header.is-hidden {
  transform: translateY(-100%);
}
.l-header.menu-lock {
  transform: translateY(0) !important;
}
.l-header.is-scrolled {
  background: rgba(6, 15, 30, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06), 0 4px 24px rgba(0, 0, 0, 0.3);
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 40px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .l-header__inner {
    padding: 0 16px;
  }
}
.l-header__logo {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.02em;
  line-height: 1.2;
  z-index: 201;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .l-header__logo {
    font-size: 16px;
  }
}
.l-header__logo small {
  display: block;
  font-size: 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  margin-top: 2px;
}
.l-header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
@media (max-width: 768px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  position: relative;
  white-space: nowrap;
}
.l-header__nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #00B4D8;
  transition: width 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}
.l-header__nav a:hover {
  color: #FFFFFF;
}
.l-header__nav a:hover::after {
  width: 100%;
}
@media (max-width: 768px) {
  .l-header__nav a::after {
    display: none;
  }
}
@media (max-width: 768px) {
  .l-header__cta {
    display: none;
  }
}
.l-header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  z-index: 201;
  padding: 0;
}
@media (max-width: 768px) {
  .l-header__hamburger {
    display: flex;
  }
}
.l-header__hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: #FFFFFF;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.22s ease;
  transform-origin: center;
}
.l-header__hamburger.is-open span:nth-child(1) {
  transform: translateY(8.25px) rotate(45deg);
}
.l-header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.l-header__hamburger.is-open span:nth-child(3) {
  transform: translateY(-8.25px) rotate(-45deg);
}

.l-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  background: linear-gradient(150deg, #060F1E 0%, #0B2347 55%, #060F1E 100%);
  padding-top: calc(60px + 24px);
  padding-bottom: 40px;
  overflow-y: auto;
  counter-reset: nav-counter;
}
.l-mobile-nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, #00B4D8 0%, rgba(0, 180, 216, 0) 80%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .l-mobile-nav.is-open {
    display: flex;
  }
}
.l-mobile-nav a:not(.l-mobile-nav__cta) {
  counter-increment: nav-counter;
  display: flex;
  align-items: center;
  padding: 0 32px;
  height: 70px;
  font-size: 20px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: -0.01em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  transition: color 0.18s ease, background 0.18s ease, padding-left 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}
.l-mobile-nav a:not(.l-mobile-nav__cta)::before {
  content: "0" counter(nav-counter);
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #00B4D8;
  letter-spacing: 0.18em;
  margin-right: 20px;
  min-width: 26px;
  flex-shrink: 0;
}
.l-mobile-nav a:not(.l-mobile-nav__cta)::after {
  content: "";
  position: absolute;
  right: 32px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.25);
  border-top: 1.5px solid rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) rotate(45deg);
  transition: right 0.2s ease, border-color 0.2s ease;
}
.l-mobile-nav a:not(.l-mobile-nav__cta):hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.04);
  padding-left: 40px;
}
.l-mobile-nav a:not(.l-mobile-nav__cta):hover::after {
  right: 28px;
  border-color: #00B4D8;
}
.l-mobile-nav__cta {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 28px 24px 0;
  padding: 18px 24px;
  background: #FF6B35;
  color: #FFFFFF !important;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 28px rgba(255, 107, 53, 0.35);
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease;
}
.l-mobile-nav__cta::before, .l-mobile-nav__cta::after {
  display: none !important;
}
.l-mobile-nav__cta:active {
  transform: scale(0.97);
}

.l-footer {
  background: #060F1E;
  color: rgba(255, 255, 255, 0.6);
}
.l-footer__main {
  padding: 64px 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 768px) {
  .l-footer__main {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.l-footer__logo {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 8px;
}
.l-footer__logo small {
  display: block;
  font-size: 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
  margin-top: 3px;
}
.l-footer__tagline {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 24px;
}
.l-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

.c-sticky-cta {
  display: none;
}
@media (max-width: 768px) {
  .c-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    gap: 10px;
  }
}
.c-sticky-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 20px;
  background: #FF6B35;
  color: #FFFFFF;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
  transition: all 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}
.c-sticky-cta__btn:active {
  transform: scale(0.97);
}

.c-back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: #0D2E5C;
  color: #FFFFFF;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.28s, background 0.2s ease;
  box-shadow: 0 4px 20px rgba(13, 46, 92, 0.4);
  cursor: pointer;
  border: none;
}
.c-back-top svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.c-back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.c-back-top:hover {
  background: #00B4D8;
  transform: translateY(-3px);
}
@media (max-width: 768px) {
  .c-back-top {
    bottom: 84px;
    right: 16px;
    width: 44px;
    height: 44px;
  }
}

.js-fade,
.js-stagger-item {
  visibility: hidden;
}

.u-br-sp {
  display: none;
}
@media (max-width: 768px) {
  .u-br-sp {
    display: inline;
  }
}

.grecaptcha-badge {
  display: none !important;
  visibility: hidden !important;
}

.p-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.p-hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
}
@media (max-width: 767px) {
  .p-hero__canvas {
    display: none;
  }
}
.p-hero__canvas-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: none;
  background: linear-gradient(135deg, #060F1E 0%, #0D2E5C 55%, #004E6A 100%);
  background-size: 200% 200%;
  animation: heroGradientShift 7s ease-in-out infinite alternate;
}
@media (max-width: 767px) {
  .p-hero__canvas-fallback {
    display: block;
  }
}
.p-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(130deg, rgba(6, 15, 30, 0.55) 0%, rgba(6, 15, 30, 0.2) 55%, rgba(6, 15, 30, 0.65) 100%);
}
.p-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: calc(72px + 56px);
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .p-hero__inner {
    padding-top: calc(60px + 40px);
    padding-bottom: calc(152px + env(safe-area-inset-bottom));
  }
}
.p-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #00B4D8;
  margin-bottom: 28px;
}
.p-hero__label::before {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: #00B4D8;
  flex-shrink: 0;
}
.p-hero__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(38px, 6.5vw, 80px);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.18;
  letter-spacing: -0.035em;
  margin-bottom: 30px;
}
.p-hero__title span {
  display: inline-block;
  background: linear-gradient(90deg, #00B4D8, #80DCEF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 768px) {
  .p-hero__title {
    font-size: clamp(34px, 9.5vw, 52px);
    margin-bottom: 24px;
  }
}
.p-hero__title-l1 {
  display: block;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .p-hero__title-l1 {
    white-space: normal;
  }
}
.p-hero__kagi {
  font-style: normal;
  position: relative;
}
.p-hero__kagi span {
  background: linear-gradient(90deg, #FF6B35, #FF9A6C) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}
.p-hero__kagi::before {
  content: "";
  position: absolute;
  inset: -6px -4px;
  background: rgba(255, 107, 53, 0.22);
  border-radius: 4px;
  opacity: 0;
  filter: blur(6px);
}
.p-hero__kagi.is-lit::before {
  animation: kagiGlow 1.4s ease-in-out infinite alternate;
}
.p-hero__sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.9;
  max-width: 540px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .p-hero__sub {
    font-size: 15px;
    margin-bottom: 36px;
  }
  .p-hero__sub br {
    display: none;
  }
}
.p-hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .p-hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .p-hero__actions .c-btn {
    width: 100%;
    max-width: 320px;
  }
}
.p-hero__stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
@media (max-width: 768px) {
  .p-hero__stats {
    gap: 18px;
    margin-top: 40px;
    padding-top: 22px;
  }
}
.p-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.p-hero__stat-num {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #00B4D8;
  line-height: 1;
  letter-spacing: -0.02em;
}
.p-hero__stat-num small {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  margin-left: 2px;
}
.p-hero__stat-num--text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .p-hero__stat-num {
    font-size: 22px;
  }
  .p-hero__stat-num small {
    font-size: 11px;
  }
  .p-hero__stat-num--text {
    font-size: 17px;
  }
}
.p-hero__stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.48);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.p-hero__stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}
.p-hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .p-hero__scroll {
    display: none;
  }
}
.p-hero__scroll-label {
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.38);
}
.p-hero__scroll-bar {
  width: 1.5px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}
.p-hero__scroll-bar::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 1px;
  animation: scrollBarSlide 1.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes kagiGlow {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scrollBarSlide {
  0% {
    top: -50%;
  }
  100% {
    top: 150%;
  }
}
@keyframes heroGradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.p-pain__head {
  text-align: center;
  margin-bottom: 64px;
}
.p-pain__head-pre {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #666666;
  margin-bottom: 12px;
  opacity: 0.6;
}
.p-pain__head-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700;
  color: #0D2E5C;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}
.p-pain__head-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: #00B4D8;
  border-radius: 2px;
  margin: 16px auto 0;
}
@media (max-width: 768px) {
  .p-pain__head-title {
    font-size: clamp(30px, 9vw, 44px);
  }
}
.p-pain__head-lead {
  font-size: 20px;
  color: #666666;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .p-pain__head-lead {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .p-pain__head {
    margin-bottom: 40px;
  }
}

.p-pain {
  background: #F4F8FC;
}
.p-pain__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 992px) {
  .p-pain__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .p-pain__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.p-pain__item {
  padding: 28px 4px 24px;
  display: flex;
  flex-direction: column;
  border-top: 1.5px solid #E0E8F0;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.p-pain__item::before {
  content: "";
  position: absolute;
  top: -1.5px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #FF6B35;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.p-pain__item:hover {
  border-color: transparent;
}
.p-pain__item:hover::before {
  width: 100%;
}
.p-pain__item:hover .p-pain__title {
  color: #0D2E5C;
}
@media (max-width: 768px) {
  .p-pain__item {
    padding: 22px 0 20px;
  }
}
.p-pain__num {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #00B4D8;
  margin-bottom: 14px;
}
.p-pain__title {
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 700;
  color: #222222;
  line-height: 1.5;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}
.p-pain__desc {
  font-size: 16px;
  color: #666666;
  line-height: 1.8;
  margin-top: auto;
}
.p-pain__cta-note {
  text-align: center;
  margin-top: 48px;
}
.p-pain__cta-note p {
  font-size: clamp(22px, 2.2vw, 28px);
  color: #0D2E5C;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.5;
}
.p-pain__cta-note p strong {
  color: #FF6B35;
}
@media (max-width: 768px) {
  .p-pain__cta-note {
    margin-top: 32px;
  }
}

.p-trust {
  background: #FFFFFF;
}
.p-trust__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 992px) {
  .p-trust__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.p-trust__text .c-section-head {
  text-align: left;
  margin-bottom: 32px;
}
.p-trust__body {
  font-size: 20px;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .p-trust__body {
    font-size: 16px;
    margin-bottom: 32px;
  }
}
.p-trust__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 576px) {
  .p-trust__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
.p-trust__stat {
  padding: 24px 20px;
  background: #F4F8FC;
  border-radius: 5px;
  border-left: 3px solid #00B4D8;
}
@media (max-width: 768px) {
  .p-trust__stat {
    padding: 18px 16px;
  }
}
.p-trust__stat-num {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  color: #0D2E5C;
  line-height: 1;
  margin-bottom: 6px;
}
.p-trust__stat-num span {
  font-size: 0.55em;
  font-weight: 600;
  color: #00B4D8;
  vertical-align: super;
  margin-left: 2px;
}
.p-trust__stat-label {
  font-size: 16px;
  color: #666666;
  line-height: 1.5;
}
.p-trust__image {
  position: relative;
}
@media (max-width: 992px) {
  .p-trust__image {
    order: -1;
  }
}
.p-trust__img {
  width: 100%;
  height: 480px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 7px;
  display: block;
}
@media (max-width: 992px) {
  .p-trust__img {
    height: 320px;
  }
}
@media (max-width: 768px) {
  .p-trust__img {
    height: 240px;
  }
}
.p-trust__img-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #FF6B35;
  color: #FFFFFF;
  border-radius: 5px;
  padding: 20px 24px;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.38);
}
@media (max-width: 768px) {
  .p-trust__img-badge {
    bottom: -12px;
    left: -8px;
    padding: 14px 18px;
  }
}
.p-trust__img-badge-num {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  display: block;
}
@media (max-width: 768px) {
  .p-trust__img-badge-num {
    font-size: 28px;
  }
}
.p-trust__img-badge-text {
  font-size: 12px;
  opacity: 0.9;
  white-space: nowrap;
}

.p-reason {
  background: #0D2E5C;
}
.p-reason .c-section-head__title {
  color: #FFFFFF;
}
.p-reason .c-section-head__lead {
  color: rgba(255, 255, 255, 0.65);
}
.p-reason__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .p-reason__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.p-reason__item {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  padding: 40px;
  transition: all 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}
.p-reason__item:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(0, 180, 216, 0.4);
  transform: translateY(-4px);
}
@media (max-width: 768px) {
  .p-reason__item {
    padding: 28px 24px;
  }
}
.p-reason__num {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #00B4D8;
  margin-bottom: 12px;
}
.p-reason__icon {
  width: 52px;
  height: 52px;
  background: rgba(0, 180, 216, 0.15);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.p-reason__icon svg {
  width: 26px;
  height: 26px;
  stroke: #00B4D8;
}
.p-reason__title {
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 14px;
  line-height: 1.4;
}
.p-reason__desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.85;
}

.p-service {
  background: #F4F8FC;
}
.p-service__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 1200px) {
  .p-service__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .p-service__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.p-service__card {
  background: #FFFFFF;
  border-radius: 7px;
  padding: 36px 32px;
  border: 1px solid #E0E8F0;
  transition: all 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}
.p-service__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0D2E5C, #00B4D8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}
.p-service__card:hover {
  box-shadow: 0 24px 64px rgba(13, 46, 92, 0.18);
  transform: translateY(-8px);
  border-color: rgba(0, 180, 216, 0.2);
}
.p-service__card:hover::before {
  transform: scaleX(1);
}
.p-service__card:hover .p-service__arrow {
  transform: translateX(6px);
  opacity: 1;
}
@media (max-width: 768px) {
  .p-service__card {
    padding: 26px 22px;
  }
}
.p-service__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(13, 46, 92, 0.08), rgba(0, 180, 216, 0.1));
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.p-service__icon svg {
  width: 28px;
  height: 28px;
  stroke: #0D2E5C;
  stroke-width: 1.5;
}
.p-service__title {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  color: #0D2E5C;
  margin-bottom: 10px;
  line-height: 1.4;
}
.p-service__desc {
  font-size: 16px;
  color: #666666;
  line-height: 1.75;
  margin-bottom: 20px;
}
.p-service__link {
  font-size: 16px;
  font-weight: 600;
  color: #00B4D8;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.04em;
}
.p-service__arrow {
  font-size: 15px;
  opacity: 0.7;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.22s ease;
}

.p-cases {
  background: #060F1E;
}
.p-cases .c-section-head__en {
  color: #00B4D8;
}
.p-cases .c-section-head__title {
  color: #FFFFFF;
}
.p-cases .c-section-head__lead {
  color: rgba(255, 255, 255, 0.6);
}
.p-cases__swiper {
  overflow: hidden;
  padding-bottom: 48px !important;
}
.p-cases .swiper-slide {
  height: auto;
}
.p-cases .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  width: 8px;
  height: 8px;
}
.p-cases .swiper-pagination-bullet-active {
  background: #00B4D8;
  width: 24px;
  border-radius: 4px;
  transition: width 0.3s ease;
}
.p-cases__card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  overflow: hidden;
  height: 100%;
  transition: all 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
  cursor: pointer;
}
.p-cases__card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(0, 180, 216, 0.35);
  transform: translateY(-4px);
}
.p-cases__card:hover .p-cases__more {
  color: #00B4D8;
  gap: 10px;
}
.p-cases__more {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}
.p-cases__img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-cases__body {
  padding: 28px 26px;
}
.p-cases__tag {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #00B4D8;
  background: rgba(0, 180, 216, 0.12);
  border: 1px solid rgba(0, 180, 216, 0.25);
  border-radius: 9999px;
  padding: 3px 12px;
  margin-bottom: 14px;
}
.p-cases__title {
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.55;
}
.p-cases__result {
  background: rgba(0, 180, 216, 0.08);
  border-radius: 3px;
  padding: 14px 16px;
}
.p-cases__result-label {
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #00B4D8;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.p-cases__result-text {
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
}

.p-price {
  background: #FFFFFF;
}
.p-price__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
@media (max-width: 992px) {
  .p-price__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
    gap: 20px;
  }
}
.p-price__card {
  border-radius: 7px;
  padding: 40px 36px;
  border: 1.5px solid #E0E8F0;
  transition: all 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.p-price__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(13, 46, 92, 0.12);
}
.p-price__card--recommended {
  background: #0D2E5C;
  border-color: #0D2E5C;
  transform: scale(1.04);
  box-shadow: 0 24px 64px rgba(13, 46, 92, 0.18);
}
.p-price__card--recommended:hover {
  transform: scale(1.04) translateY(-6px);
}
@media (max-width: 992px) {
  .p-price__card--recommended {
    transform: none;
    order: -1;
  }
  .p-price__card--recommended:hover {
    transform: translateY(-6px);
  }
}
@media (max-width: 768px) {
  .p-price__card {
    padding: 30px 26px;
  }
}
.p-price__recommend-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #FF6B35;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 18px;
  border-radius: 9999px;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.38);
}
.p-price__plan {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #00B4D8;
  margin-bottom: 12px;
}
.p-price__name {
  font-size: 20px;
  font-weight: 700;
  color: #0D2E5C;
  margin-bottom: 6px;
  line-height: 1.3;
}
.p-price__card--recommended .p-price__name {
  color: #FFFFFF;
}
.p-price__target {
  font-size: 13px;
  color: #666666;
  margin-bottom: 28px;
}
.p-price__card--recommended .p-price__target {
  color: rgba(255, 255, 255, 0.6);
}
.p-price__price-wrap {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #E0E8F0;
}
.p-price__card--recommended .p-price__price-wrap {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}
.p-price__price {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 3.5vw, 42px);
  font-weight: 700;
  color: #0D2E5C;
  line-height: 1;
}
.p-price__card--recommended .p-price__price {
  color: #FFFFFF;
}
.p-price__price--contact {
  font-size: 26px;
}
.p-price__price-unit {
  font-size: 14px;
  color: #666666;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.p-price__card--recommended .p-price__price-unit {
  color: rgba(255, 255, 255, 0.6);
}
.p-price__price-note {
  font-size: 12px;
  color: #666666;
  margin-top: 4px;
}
.p-price__card--recommended .p-price__price-note {
  color: rgba(255, 255, 255, 0.5);
}
.p-price__features {
  margin-bottom: 32px;
}
.p-price__features li {
  font-size: 16px;
  color: #666666;
  padding: 9px 0;
  border-bottom: 1px solid #E0E8F0;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}
.p-price__features li::before {
  content: "✓";
  color: #00B4D8;
  font-weight: 700;
  flex-shrink: 0;
}
.p-price__card--recommended .p-price__features li {
  color: rgba(255, 255, 255, 0.8);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.p-price__btn {
  display: block;
  text-align: center;
  padding: 15px;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 0.04em;
}
.p-price__btn--default {
  border: 1.5px solid #0D2E5C;
  color: #0D2E5C;
}
.p-price__btn--default:hover {
  background: #0D2E5C;
  color: #FFFFFF;
}
.p-price__btn--primary {
  background: #FF6B35;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.38);
}
.p-price__btn--primary:hover {
  background: rgb(255, 77.1069306931, 12.2);
  transform: translateY(-2px);
}
.p-price__note {
  text-align: center;
  margin-top: 40px;
  font-size: 16px;
  color: #666666;
}
.p-price__note a {
  color: #00B4D8;
  text-decoration: underline;
}

.p-flow {
  background: #F4F8FC;
}
.p-flow__track {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 768px) {
  .p-flow__track {
    flex-direction: column;
    gap: 0;
  }
}
.p-flow__line {
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: #E0E8F0;
  overflow: hidden;
  z-index: 0;
}
@media (max-width: 768px) {
  .p-flow__line {
    display: none;
  }
}
.p-flow__line-inner {
  height: 100%;
  background: linear-gradient(90deg, #0D2E5C, #00B4D8);
  transform-origin: left center;
}
.p-flow__step {
  flex: 1;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 8px;
}
@media (max-width: 768px) {
  .p-flow__step {
    display: flex;
    align-items: flex-start;
    text-align: left;
    padding: 0 0 28px 0;
    gap: 20px;
  }
  .p-flow__step:last-child {
    padding-bottom: 0;
  }
  .p-flow__step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 56px;
    left: 27px;
    width: 2px;
    height: calc(100% - 28px);
    background: #E0E8F0;
  }
}
.p-flow__step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid #E0E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #666666;
  transition: all 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 2;
}
.p-flow__step.is-active .p-flow__step-circle {
  background: #0D2E5C;
  border-color: #0D2E5C;
  color: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(13, 46, 92, 0.15);
}
@media (max-width: 768px) {
  .p-flow__step-circle {
    margin: 0;
    flex-shrink: 0;
  }
}
@media (max-width: 768px) {
  .p-flow__step-body {
    padding-top: 12px;
  }
}
.p-flow__step-title {
  font-size: 15px;
  font-weight: 700;
  color: #0D2E5C;
  margin-bottom: 8px;
  line-height: 1.4;
}
.p-flow__step-desc {
  font-size: 16px;
  color: #666666;
  line-height: 1.75;
}

.p-faq {
  background: #FFFFFF;
}
.p-faq__list {
  max-width: 800px;
  margin: 0 auto;
}
.p-faq__item {
  border-bottom: 1px solid #E0E8F0;
}
.p-faq__item:first-child {
  border-top: 1px solid #E0E8F0;
}
.p-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  text-align: left;
  cursor: pointer;
  transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}
.p-faq__question:hover .p-faq__q-text {
  color: #0D2E5C;
}
@media (max-width: 768px) {
  .p-faq__question {
    padding: 20px 0;
    gap: 12px;
  }
}
.p-faq__q-mark {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #00B4D8;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}
.p-faq__q-text {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  color: #222222;
  line-height: 1.55;
  transition: color 0.2s ease;
}
@media (max-width: 768px) {
  .p-faq__q-text {
    font-size: 15px;
  }
}
.p-faq__q-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid #E0E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: #666666;
  transition: all 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}
.p-faq__item.is-open .p-faq__q-icon {
  background: #0D2E5C;
  border-color: #0D2E5C;
  color: #FFFFFF;
  transform: rotate(45deg);
}
.p-faq__answer {
  overflow: hidden;
}
.p-faq__a-inner {
  display: flex;
  gap: 16px;
  padding: 0 0 28px 44px;
}
@media (max-width: 768px) {
  .p-faq__a-inner {
    padding: 0 0 22px 40px;
  }
}
.p-faq__a-mark {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #FF6B35;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
  margin-left: -44px;
  margin-right: 16px;
}
@media (max-width: 768px) {
  .p-faq__a-mark {
    margin-left: -40px;
  }
}
.p-faq__a-text {
  font-size: 15px;
  color: #666666;
  line-height: 1.85;
}

.p-company {
  background: #F4F8FC;
}
.p-company__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 992px) {
  .p-company__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.p-company__image {
  position: relative;
}
@media (max-width: 992px) {
  .p-company__image {
    order: -1;
  }
}
.p-company__img {
  width: 100%;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 7px;
  display: block;
}
@media (max-width: 768px) {
  .p-company__img {
    height: 260px;
  }
}
.p-company__img-accent {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border-radius: 7px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 4px solid #FFFFFF;
  box-shadow: 0 8px 32px rgba(13, 46, 92, 0.12);
}
@media (max-width: 768px) {
  .p-company__img-accent {
    width: 80px;
    height: 80px;
    top: -10px;
    right: -10px;
  }
}
.p-company__img-badge {
  position: absolute;
  bottom: -16px;
  left: 24px;
  background: #0D2E5C;
  color: #FFFFFF;
  border-radius: 5px;
  padding: 14px 20px;
  box-shadow: 0 8px 32px rgba(13, 46, 92, 0.12);
  border: 2px solid rgba(0, 180, 216, 0.3);
}
@media (max-width: 768px) {
  .p-company__img-badge {
    bottom: -12px;
    left: 16px;
    padding: 10px 16px;
  }
}
.p-company__text .c-section-head {
  text-align: left;
  margin-bottom: 28px;
}
.p-company__body {
  font-size: 15px;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 32px;
}
.p-company__table {
  width: 100%;
  border-collapse: collapse;
}
.p-company__table tr {
  border-bottom: 1px solid #E0E8F0;
}
.p-company__table tr:first-child {
  border-top: 1px solid #E0E8F0;
}
.p-company__table th, .p-company__table td {
  padding: 14px 0;
  text-align: left;
  font-size: 16px;
  line-height: 1.6;
  vertical-align: top;
}
.p-company__table th {
  width: 100px;
  color: #666666;
  font-weight: 500;
  flex-shrink: 0;
}
.p-company__table td {
  color: #222222;
}
@media (max-width: 768px) {
  .p-company__table th {
    width: 80px;
  }
}

.p-tech {
  background: #FFFFFF;
}
.p-tech__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 992px) {
  .p-tech__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.p-tech__card {
  background: #F4F8FC;
  border-radius: 5px;
  padding: 36px 32px;
  border: 1px solid #E0E8F0;
  border-left: 4px solid #00B4D8;
  transition: all 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}
.p-tech__card:hover {
  box-shadow: 0 8px 32px rgba(13, 46, 92, 0.12);
  transform: translateY(-4px);
  border-left-color: #0D2E5C;
}
.p-tech__card--salesforce {
  border-left-color: #00A1E0;
}
@media (max-width: 768px) {
  .p-tech__card {
    padding: 24px 20px;
  }
}
.p-tech__card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.p-tech__category {
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #00B4D8;
  display: block;
  margin-bottom: 8px;
}
.p-tech__name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  color: #0D2E5C;
  line-height: 1.3;
  margin-bottom: 12px;
}
.p-tech__desc {
  font-size: 16px;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 20px;
}
.p-tech__products-label {
  font-size: 11px;
  font-weight: 600;
  color: #666666;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: "Poppins", sans-serif;
}
.p-tech__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.p-tech__chip {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 500;
  background: rgba(0, 180, 216, 0.08);
  color: #0D2E5C;
  border: 1px solid rgba(0, 180, 216, 0.22);
  letter-spacing: 0.02em;
  white-space: nowrap;
  font-family: "Poppins", sans-serif;
}
.p-tech__partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 3px;
  background: rgba(0, 161, 224, 0.08);
  border: 1px solid rgba(0, 161, 224, 0.25);
  font-size: 11px;
  font-weight: 600;
  color: #00A1E0;
  letter-spacing: 0.04em;
  margin-top: 16px;
  flex-shrink: 0;
}
.p-tech__partner-badge::before {
  content: "✓";
  font-size: 12px;
  font-weight: 700;
}

.p-cta {
  background: linear-gradient(135deg, #060F1E 0%, #0D2E5C 60%, #0A4A60 100%);
  position: relative;
  overflow: hidden;
}
.p-cta::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.p-cta .c-section-head__title {
  color: #FFFFFF;
}
.p-cta .c-section-head__lead {
  color: rgba(255, 255, 255, 0.65);
}
.p-cta__form-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  padding: 48px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
@media (max-width: 768px) {
  .p-cta__form-wrap {
    padding: 28px 22px;
    border-radius: 5px;
  }
}
.p-cta__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .p-cta__form {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.p-cta__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-cta__field--full {
  grid-column: 1/-1;
}
.p-cta__label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.04em;
}
.p-cta__label--req::after {
  content: "必須";
  font-size: 10px;
  background: #FF6B35;
  color: #FFFFFF;
  padding: 2px 7px;
  border-radius: 3px;
  margin-left: 8px;
  font-weight: 600;
  letter-spacing: 0;
  vertical-align: middle;
}
.p-cta__input, .p-cta__select, .p-cta__textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  padding: 13px 16px;
  color: #FFFFFF;
  font-size: 16px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  transition: border-color 0.22s ease, background 0.22s ease;
  width: 100%;
  outline: none;
}
.p-cta__input::-moz-placeholder, .p-cta__select::-moz-placeholder, .p-cta__textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.p-cta__input::placeholder, .p-cta__select::placeholder, .p-cta__textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.p-cta__input:focus, .p-cta__select:focus, .p-cta__textarea:focus {
  border-color: #00B4D8;
  background: rgba(255, 255, 255, 0.11);
}
.p-cta__select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.p-cta__select option {
  background: #060F1E;
  color: #FFFFFF;
}
.p-cta__textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.7;
}
.p-cta__submit {
  grid-column: 1/-1;
  margin-top: 8px;
}
.p-cta__btn {
  width: 100%;
  padding: 18px;
  background: #FF6B35;
  color: #FFFFFF;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: none;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.38);
  transition: all 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.p-cta__btn:hover {
  background: rgb(255, 77.1069306931, 12.2);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(255, 107, 53, 0.46);
}
.p-cta__privacy {
  grid-column: 1/-1;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  line-height: 1.7;
}
.p-cta__privacy a {
  color: #00B4D8;
  text-decoration: underline;
}

.p-spot-banner {
  background: #0D2E5C;
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.p-spot-banner__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(0, 180, 216, 0.18) 0%, transparent 70%);
  animation: spotGlow 4s ease-in-out infinite alternate;
  pointer-events: none;
}
.p-spot-banner__text {
  position: relative;
  z-index: 1;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  letter-spacing: 0.03em;
}
.p-spot-banner__text strong {
  color: #00B4D8;
  font-weight: 800;
  display: inline-block;
  position: relative;
}
.p-spot-banner__text strong::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: #00B4D8;
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}
@media (max-width: 768px) {
  .p-spot-banner__text {
    font-size: clamp(17px, 4.5vw, 22px);
  }
}
.p-spot-banner__text.is-visible strong::after {
  width: 100%;
}
@media (max-width: 768px) {
  .p-spot-banner {
    padding: 48px 0;
  }
}

@keyframes spotGlow {
  0% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }
}
.lp-dx-submit {
  text-align: center;
  padding: 80px 20px;
}
.lp-dx-submit__title {
  margin-bottom: 40px;
}/*# sourceMappingURL=style.css.map */