:root {
  --navy: #31315f;
  --deep: #0b2b55;
  --blue: #2d22f8;
  --sky: #dfeeff;
  --aqua: #dff4ff;
  --pale: #f2f8fc;
  --paper: #fff;
  --red: #d9323f;
  --text: #1f2937;
  --muted: #5f7388;
  --line: #dce6f2;
  --shadow: 0 28px 70px rgba(7, 28, 59, 0.13);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", system-ui, sans-serif;
  color: #1f2937;
  background: #fff;
  line-height: 1.85;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1180px, 100% - 44px);
  margin: 0 auto;
}

.global-nav {
  background: #fff;
  border-bottom: 1px solid #e5edf5;
  position: sticky;
  top: 0;
  z-index: 50;
  height: 100px;
}

.global-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img {
  width: 220px;
  display: block;
}

.global-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex: 1;
  color: #1f2937;
  font-size: 13px;
  font-weight: 500;
}

.global-cta {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.nav {
  background: #fff;
  border-bottom: 1px solid #e5edf5;
}

.nav-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.back {
  color: #2d22f8;
  font-weight: 900;
  font-size: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 32px;
  font-weight: 700;
  font-size: 16px;
  border-radius: 51px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.1em;
}
.btn-red {
  background: #d9323f;
  color: #fff;
  box-shadow: 0 16px 30px rgba(217, 50, 63, 0.2);
}
.btn-navy {
  background: #31315f;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.92);
}
.btn-blue {
  background: #2d22f8;
  color: #fff;
  box-shadow: 0 16px 30px rgba(9, 111, 200, 0.2);
}
.btn-outline {
  background: rgba(255, 255, 255, 0.92);
  color: #31315f;
  border: 2px solid rgba(49, 49, 95, 0.22);
  backdrop-filter: blur(10px);
}
.btn-white {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-white:hover {
  background: rgba(255, 255, 255, 0.16);
}
.btn-orange {
  position: relative;
  min-width: 260px;
  min-height: 64px;
  padding: 20px 30px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffcf3f 0%, #ff9f0a 46%, #ff6a00 100%);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 34px rgba(255, 140, 0, 0.26);
  overflow: visible;
}
.btn-orange .btn-balloon {
  position: absolute;
  left: 50%;
  top: -28px;
  transform: translateX(-50%);
  min-width: 220px;
  padding: 6px 16px;
  border-radius: 999px;
  background: #fff;
  color: #ff8a00;
  border: 2px solid currentColor;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
  text-align: center;
}
.btn-orange .btn-balloon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateX(-50%) rotate(45deg);
}
.btn-orange .btn-main {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.btn-orange:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(255, 140, 0, 0.34);
  opacity: 0.96;
}
.btn:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

section {
  padding: 96px 0;
}

.pale {
  background: #f2f8fc;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head p {
  margin: 18px auto 0;
  max-width: 680px;
}

.en {
  display: block;
  color: #2d22f8;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

h2 {
  color: #31315f;
  font-size: clamp(30px, 4.4vw, 48px);
  line-height: 1.42;
  font-weight: 900;
}

footer {
  background: #06142a;
  color: rgba(255, 255, 255, 0.7);
  padding: 42px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.58);
  text-decoration: underline;
  text-underline-offset: 4px;
}

footer.simple {
  background: transparent;
  padding: 34px 0;
  color: #6b7f94;
  font-size: 12px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 30px 0 0;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 58%;
  height: 100%;
  background: linear-gradient(135deg, #78e1ff 0%, #1064f0 30%, #2f3f78 64%, #1f2147 100%);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  right: -12vw;
  bottom: -18vw;
  width: 48vw;
  height: 48vw;
  border-radius: 50%;
  border: 64px solid rgba(255, 255, 255, 0.08);
  z-index: 1;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: px;
  align-items: center;
  min-height: 450px;
  padding-bottom: 10px;
}

.hero-tag {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #31315f;
  font-weight: 900;
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.4;
  margin-top: 40px;
  letter-spacing: 0;
}
.hero-tag::before {
  content: "";
  width: 38px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2d22f8, #dfeeff);
}
.hero-tag strong {
  color: #2d22f8;
}

.service-title {
  color: #31315f;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", system-ui, sans-serif;
  color: #1f2937;
  font-size: clamp(39px, 4.5vw, 62px);
  line-height: 1.16;
  letter-spacing: 0.03em;
  font-weight: 900;
  max-width: 760px;
  font-feature-settings: "palt";
  text-wrap: balance;
}
.hero h1 .line {
  display: block;
  white-space: nowrap;
}

.hero-lead {
  margin-top: 24px;
  max-width: 620px;
  color: #5f7388;
  font-size: 16px;
  line-height: 1.9;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin: 42px 0 40px;
}

.hero-cta {
  position: relative;
  min-width: 460px;
  min-height: 64px;
  padding: 20px 28px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  line-height: 1.3;
  box-shadow: 0 16px 34px rgba(49, 49, 95, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(49, 49, 95, 0.22);
  opacity: 0.94;
}

.hero-cta-balloon {
  position: absolute;
  left: 50%;
  top: -28px;
  transform: translateX(-50%);
  min-width: 340px;
  padding: 6px 16px;
  border-radius: 999px;
  background: #fff;
  color: #31315f;
  border: 2px solid currentColor;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.hero-cta-balloon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateX(-50%) rotate(45deg);
}

.hero-cta-main {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.hero-cta-primary {
  background: #31315f;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.92);
}
.hero-cta-primary .hero-cta-balloon {
  color: #31315f;
}

.hero-cta-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: #31315f;
  border: 2px solid rgba(49, 49, 95, 0.22);
  backdrop-filter: blur(10px);
}
.hero-cta-secondary .hero-cta-balloon {
  color: #31315f;
}

.hero-visual {
  min-height: 480px;
  position: relative;
}

.hero-output-visual {
  position: absolute;
  inset: 18px 0 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hero-output-visual img {
  width: min(760px, 100%);
}

.logos {
  background: #fff;
  padding: 82px 0 58px;
  border-bottom: 1px solid #dce6f2;
}

.logos-title {
  max-width: 760px;
  margin: 0 auto 80px;
  text-align: center;
  color: #5f7388;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.8;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}

.logo-cell {
  position: relative;
  min-height: 245px;
  padding: 76px 24px 28px;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(16, 100, 240, 0.14);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(7, 28, 59, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.logo-cell:hover {
  transform: translateY(-3px);
  border-color: rgba(16, 100, 240, 0.22);
  box-shadow: 0 26px 58px rgba(7, 28, 59, 0.12);
}
.logo-cell.logo-white {
  background: #fff;
}
.logo-cell b {
  display: block;
  color: #31315f;
  font-size: 21px;
  line-height: 1.42;
  letter-spacing: 0.01em;
}
.logo-cell span {
  display: block;
  margin-top: 12px;
  color: #5f7388;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 700;
}

.benefit-illust {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  width: 104px;
  height: 104px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  z-index: 2;
}
.benefit-illust::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(120, 225, 255, 0.18) 0%, rgba(16, 100, 240, 0.1) 100%);
  border: 1px solid rgba(16, 100, 240, 0.14);
  box-shadow: 0 14px 30px rgba(7, 28, 59, 0.08);
  z-index: -1;
}
.benefit-illust img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  display: block;
}

@media (max-width: 800px) {
  .logos {
    padding: 72px 0 54px;
    background: #fff;
  }
  .logos-title {
    text-align: center;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 46px;
    color: #5f7388;
  }
  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 46px 12px;
  }
  .logo-cell {
    position: relative;
    min-height: auto;
    padding: 54px 12px 18px;
    text-align: center;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(7, 28, 59, 0.08);
  }
  .logo-cell b {
    margin-top: 0;
    font-size: 14px;
    line-height: 1.45;
    text-align: center;
  }
  .logo-cell span {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.65;
    text-align: center;
  }
  .benefit-illust {
    width: 78px;
    height: 78px;
  }
  .benefit-illust::before {
    inset: 6px;
  }
  .benefit-illust img {
    width: 58px;
    height: 58px;
    object-fit: contain;
  }
}
.about {
  background: #f2f8fc;
}

.about .section-head {
  max-width: 860px;
  margin: 0 auto 54px;
  text-align: center;
}
.about .section-head p {
  max-width: 760px;
  margin: 18px auto 0;
}

.about-visual {
  position: relative;
}
.about-visual img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(7, 28, 59, 0.08);
}

.about-points {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-point {
  padding: 28px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(16, 100, 240, 0.08);
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(7, 28, 59, 0.05);
  text-align: center;
}
.about-point h3 {
  color: #31315f;
  font-size: 22px;
  margin-bottom: 10px;
}
.about-point p {
  color: #5f7388;
  font-size: 14px;
  line-height: 1.8;
}

.instant {
  background: #fff;
  overflow: hidden;
}

.instant-feature-list {
  display: grid;
  gap: 96px;
}

.instant-feature {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.instant-feature--reverse {
  grid-template-columns: 1.1fr 0.9fr;
}
.instant-feature--reverse .instant-feature-text {
  order: 2;
}
.instant-feature--reverse .instant-feature-visual {
  order: 1;
}

.instant-feature-text {
  position: relative;
  z-index: 2;
}
.instant-feature-text h3 {
  position: relative;
  display: inline-block;
  color: #31315f;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.55;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  z-index: 1;
}
.instant-feature-text h3::before {
  content: "";
  position: absolute;
  left: -14px;
  bottom: 6px;
  width: calc(100% + 28px);
  height: 18px;
  background: rgba(16, 100, 240, 0.1);
  z-index: -1;
}
.instant-feature-text p {
  color: #5f7388;
  font-size: 16px;
  line-height: 2;
}
.instant-feature-text ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  list-style: none;
}
.instant-feature-text li {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(16, 100, 240, 0.08);
  color: #2d22f8;
  font-size: 13px;
  font-weight: 900;
}

.instant-feature-num {
  position: absolute;
  right: -18px;
  top: -76px;
  z-index: -1;
  color: rgba(15, 23, 42, 0.16);
  font-size: clamp(110px, 13vw, 190px);
  font-weight: 900;
  line-height: 1;
}

.instant-feature-visual img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 24px 58px rgba(7, 28, 59, 0.1);
}

.download-card {
  margin-top: 46px;
  background: linear-gradient(100deg, #31315f, #1168b7);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 36px 42px;
  box-shadow: 0 28px 70px rgba(7, 28, 59, 0.13);
}
.download-card.light {
  background: #fff;
  color: #1f2937;
  border: 1px solid #dce6f2;
}
.download-card.light h3 {
  color: #31315f;
}
.download-card.light p {
  color: #5f7388;
}
.download-card h3 {
  font-size: 28px;
  line-height: 1.45;
}
.download-card p {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 8px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.case-card {
  background: #fff;
  border: 1px solid #dce6f2;
  box-shadow: 0 24px 58px rgba(7, 28, 59, 0.1);
  overflow: hidden;
  border-radius: 12px;
}
.case-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.case-body {
  padding: 24px;
}
.case-body span {
  color: #2d22f8;
  font-size: 12px;
  font-weight: 900;
}
.case-body h3 {
  color: #31315f;
  font-size: 19px;
  line-height: 1.58;
  margin: 8px 0 12px;
}
.case-body p {
  color: #5f7388;
  font-size: 14px;
}

.point {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(120deg, #31315f, #103d72);
}
.point::before {
  content: "";
  position: absolute;
  inset: auto -12vw -26vw auto;
  width: 58vw;
  height: 58vw;
  border-radius: 50%;
  border: 70px solid rgba(255, 255, 255, 0.06);
}
.point .section-head h2 {
  color: #fff;
}
.point .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.step-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step-grid.security-grid {
  grid-template-columns: repeat(3, 1fr);
}

.step {
  min-height: 270px;
  background: #fff;
  color: #1f2937;
  padding: 28px;
  border-top: 6px solid #dfeeff;
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(7, 28, 59, 0.1);
}
.step small {
  color: #2d22f8;
  font-weight: 900;
}
.step h3 {
  color: #31315f;
  font-size: 20px;
  line-height: 1.55;
  margin: 14px 0 10px;
}
.step p {
  color: #5f7388;
  font-size: 14px;
}

.step-illust {
  width: 100%;
  aspect-ratio: 4/3;
  margin-bottom: 18px;
  border-radius: 12px;
  overflow: hidden;
  background: #eef8ff;
  border: 1px solid #dce6f2;
  box-shadow: 0 12px 30px rgba(7, 28, 59, 0.08);
}
.step-illust--small {
  aspect-ratio: 16/10;
}
.step-illust img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.use {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 24px;
  background: #fff;
  border: 1px solid #dce6f2;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(7, 28, 59, 0.08);
}
.use h3 {
  color: #31315f;
  font-size: 20px;
  line-height: 1.58;
  margin-bottom: 8px;
}
.use p {
  color: #5f7388;
  font-size: 14px;
}

.use-illust {
  min-height: 126px;
  border-radius: 14px;
  overflow: hidden;
  background: #eef8ff;
  border: 1px solid #dce6f2;
  box-shadow: 0 14px 34px rgba(7, 28, 59, 0.09);
}
.use-illust img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid #dce6f2;
  box-shadow: 0 18px 50px rgba(7, 28, 59, 0.08);
}

.compare-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}
.compare-table th,
.compare-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid #e2edf6;
  font-size: 14px;
}
.compare-table th {
  background: #31315f;
  color: #fff;
}
.compare-table th:nth-child(n+3) {
  background: #163d73;
}
.compare-table th:last-child {
  background: #2d22f8;
}
.compare-table tr.highlight {
  background: #eaf7ff;
  font-weight: 900;
  color: #31315f;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: stretch;
}

.price {
  background: #fff;
  border: 1px solid #dce6f2;
  padding: 38px;
  box-shadow: 0 24px 58px rgba(7, 28, 59, 0.1);
  border-radius: 14px;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
}
.price.featured {
  color: #fff;
  background: linear-gradient(135deg, #31315f, #2d22f8);
}
.price.featured small {
  color: #9ee3ff;
}
.price.featured p,
.price.featured li {
  opacity: 0.78;
}
.price small {
  color: #2d22f8;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.price h3 {
  font-size: 28px;
  color: inherit;
  margin-top: 8px;
}
.price p,
.price li {
  color: inherit;
  opacity: 0.78;
}
.price ul {
  margin: 24px 0 0 18px;
  display: grid;
  gap: 10px;
}

.amount {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.2;
  margin: 22px 0 8px;
}

.timeline {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: stretch;
}

.timeline-item {
  background: #fff;
  border-top: 5px solid #2d22f8;
  padding: 22px;
  min-height: 138px;
  display: grid;
  align-content: start;
  border-radius: 12px;
  box-shadow: 0 14px 32px rgba(7, 28, 59, 0.07);
}
.timeline-item b {
  color: #31315f;
}
.timeline-item p {
  color: #5f7388;
  font-size: 13px;
  margin-top: 8px;
}

.faq {
  max-width: 920px;
  margin: 34px auto 0;
  display: grid;
  gap: 12px;
}
.faq details {
  background: #fff;
  border: 1px solid #dce6f2;
  padding: 20px 24px;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(7, 28, 59, 0.07);
}
.faq summary {
  color: #31315f;
  font-weight: 900;
  cursor: pointer;
}
.faq p {
  color: #5f7388;
  font-size: 14px;
  margin-top: 12px;
}

.cta {
  position: relative;
  overflow: hidden;
  background: #071c3b;
  color: #fff;
  padding: 108px 0;
  text-align: center;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 22% 0%, rgba(36, 165, 232, 0.28), transparent 28%), radial-gradient(circle at 86% 28%, rgba(9, 111, 200, 0.3), transparent 32%), linear-gradient(135deg, #071c3b 0%, #0d2f5e 58%, #096fc8 100%);
}
.cta::after {
  content: "";
  position: absolute;
  right: -14vw;
  bottom: -32vw;
  width: 58vw;
  height: 58vw;
  border-radius: 50%;
  border: 80px solid rgba(255, 255, 255, 0.06);
}
.cta .en {
  display: block;
  color: #5f98ff;
}
.cta h2 {
  color: #fff;
}
.cta p {
  color: rgba(255, 255, 255, 0.78);
  margin: 18px auto 0;
  max-width: 760px;
}

.cta-grid {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.site-footer {
  background: #071c3b;
  color: rgba(255, 255, 255, 0.76);
  padding: 64px 0 28px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  align-items: flex-start;
}

.footer-brand {
  max-width: 420px;
}
.footer-brand p {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.9;
}

.footer-logo img {
  width: 220px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 24px;
  font-size: 13px;
  font-weight: 700;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}
.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-bottom small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.52);
}

.sp-fixed-cta {
  display: none;
}

@media (max-width: 1024px) {
  .global-links {
    display: none;
  }
  .hero-visual {
    min-height: 560px;
  }
  .feature,
  .feature:nth-child(even) {
    grid-template-columns: 86px 1fr;
  }
  .feature-visual {
    grid-column: 1/-1;
  }
  .feature-visual:nth-child(even) .feature-copy {
    order: initial;
  }
  .logo-grid,
  .case-grid,
  .step-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}
.logo-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 78px 18px;
}

.logo-cell {
  min-height: 220px;
}

@media (max-width: 767px) {
  .container {
    width: min(100% - 32px, 1180px);
  }
  body {
    line-height: 1.78;
    padding-bottom: 92px;
  }
  .btn {
    width: auto;
    min-height: 38px;
    padding: 8px 14px;
    font-size: 11px;
    border-radius: 999px;
  }
  .btn-orange {
    width: 90%;
    justify-content: center;
  }
  .global-nav {
    position: sticky;
    height: 60px;
    box-shadow: 0 6px 18px rgba(7, 28, 59, 0.06);
  }
  .global-inner {
    min-height: 60px;
    gap: 8px;
  }
  .brand img {
    width: 118px;
  }
  .global-cta {
    gap: 6px;
  }
  .global-cta .btn {
    width: auto;
    min-height: 34px;
    padding: 7px 12px;
    font-size: 10px;
    border-radius: 999px;
  }
  .global-cta .btn-outline {
    display: inline-flex;
  }
  .hero {
    padding: 22px 0 40px;
    background: #fff;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #78e1ff 0%, #1064f0 30%, #2f3f78 64%, #1f2147 100%);
    clip-path: polygon(0 55%, 140% 0, 100% 100%, 0 100%);
    z-index: 0;
  }
  .hero::after {
    display: none;
  }
  .hero-grid {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: auto;
    padding-bottom: 0;
  }
  .hero-copy {
    position: relative;
    z-index: 5;
    text-align: left;
  }
  .service-title {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 14px;
  }
  .hero h1 {
    font-size: clamp(36px, 10vw, 48px);
    line-height: 1.18;
    letter-spacing: 0.03em;
    max-width: 7.8em;
  }
  .hero h1 .line {
    white-space: normal;
  }
  .hero-tag {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.7;
  }
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  .hero-lead-sp {
    margin-top: 24px;
    color: #fff;
    font-size: 14px;
    line-height: 1.9;
    padding-bottom: 30px;
  }
  .hero-visual {
    position: relative;
    z-index: 4;
    width: 100%;
    min-height: 200px;
    margin-top: 30px;
  }
  .hero-output-visual {
    position: relative;
    inset: auto;
    display: flex;
    justify-content: center;
  }
  .hero-output-visual img {
    width: min(122%, 520px);
    filter: drop-shadow(0 24px 48px rgba(15, 23, 42, 0.18));
  }
  .hero-cta-wrap {
    position: relative;
    z-index: 5;
  }
  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 34px;
    margin: 32px auto 0;
  }
  .hero-cta {
    width: 90%;
    min-width: 0;
    min-height: 74px;
    padding: 20px 20px 18px;
    border-radius: 999px;
  }
  .hero-cta-balloon {
    left: 50%;
    top: -27px;
    transform: translateX(-50%);
    min-width: 220px;
    padding: 5px 12px;
    font-size: 12px;
  }
  .hero-cta-main {
    font-size: 20px;
    letter-spacing: 0.04em;
  }
  section {
    padding: 58px 0;
  }
  .section-head {
    margin-bottom: 34px;
    text-align: center;
  }
  .section-head .en {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
  }
  .section-head h2 {
    font-size: clamp(25px, 7.6vw, 34px);
    line-height: 1.42;
    letter-spacing: 0.01em;
  }
  .section-head p {
    max-width: 92%;
    margin: 14px auto 0;
    font-size: 14px;
    line-height: 1.9;
  }
  .logos {
    padding: 72px 0 54px;
    background: #fff;
  }
  .logos-title {
    text-align: center;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 46px;
    color: #5f7388;
  }
  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 46px 12px;
  }
  .logo-cell {
    position: relative;
    min-height: auto;
    padding: 54px 12px 18px;
    text-align: center;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(7, 28, 59, 0.08);
  }
  .logo-cell b {
    margin-top: 0;
    font-size: 14px;
    line-height: 1.45;
    text-align: center;
  }
  .logo-cell span {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.65;
    text-align: center;
  }
  .benefit-illust {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
    width: 78px;
    height: 78px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    z-index: 2;
  }
  .benefit-illust::before {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(120, 225, 255, 0.18) 0%, rgba(16, 100, 240, 0.1) 100%);
    border: 1px solid rgba(16, 100, 240, 0.14);
    box-shadow: 0 10px 22px rgba(7, 28, 59, 0.08);
    z-index: -1;
  }
  .benefit-illust img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    display: block;
  }
  .about {
    padding: 58px 0;
  }
  .about-visual img {
    border-radius: 18px;
  }
  .about-points {
    display: none;
  }
  .about-point {
    padding: 22px 18px;
    border-radius: 18px;
    text-align: left;
  }
  .about-point h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }
  .about-point p {
    font-size: 13px;
    line-height: 1.75;
  }
  .instant {
    padding: 60px 0;
  }
  .instant-feature-list {
    gap: 62px;
  }
  .instant-feature,
  .instant-feature--reverse {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .instant-feature--reverse .instant-feature-text,
  .instant-feature--reverse .instant-feature-visual {
    order: initial;
  }
  .instant-feature-text h3 {
    font-size: 25px;
    line-height: 1.55;
    margin-bottom: 14px;
  }
  .instant-feature-text p {
    font-size: 14px;
    line-height: 1.95;
  }
  .instant-feature-text ul {
    gap: 8px;
    margin-top: 18px;
  }
  .instant-feature-text li {
    font-size: 12px;
    padding: 7px 12px;
    border-radius: 999px;
  }
  .instant-feature-num {
    right: 0;
    top: -42px;
    font-size: 96px;
  }
  .instant-feature-visual img {
    border-radius: 18px;
  }
  .download-card {
    margin-top: 34px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .download-card h3 {
    font-size: 20px;
    line-height: 1.55;
  }
  .download-card p {
    font-size: 13px;
    line-height: 1.85;
  }
  .download-card .btn-orange {
    width: 90%;
    margin-top: 18px;
  }
  .use-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .use {
    display: block;
    padding: 16px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(7, 28, 59, 0.08);
  }
  .use h3 {
    font-size: 15px;
    line-height: 1.65;
    margin-top: 12px;
  }
  .use p {
    font-size: 13px;
    line-height: 1.8;
  }
  .use-illust {
    width: 100%;
    min-height: auto;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
  }
  .use-illust img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .step-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .step {
    min-height: auto;
    padding: 20px;
    border-radius: 18px;
    border-top-width: 4px;
    box-shadow: 0 12px 28px rgba(7, 28, 59, 0.08);
  }
  .step small {
    font-size: 12px;
  }
  .step h3 {
    font-size: 18px;
    line-height: 1.55;
    margin: 10px 0 8px;
  }
  .step p {
    font-size: 13px;
    line-height: 1.85;
  }
  .step-illust {
    aspect-ratio: 16/9;
    margin-bottom: 14px;
    border-radius: 12px;
  }
  .step-grid.vision-flow {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-right: calc(50% - 50vw);
    padding-right: 22px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .step-grid.vision-flow::-webkit-scrollbar {
    display: none;
  }
  .step-grid.vision-flow .step {
    flex: 0 0 82%;
    min-width: 0;
    padding: 20px 18px;
    scroll-snap-align: start;
  }
  .step-grid.vision-flow .step:not(:last-child)::after {
    display: none;
  }
  .case-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .case-card {
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(7, 28, 59, 0.08);
  }
  .case-card img {
    aspect-ratio: 16/9;
  }
  .case-body {
    padding: 20px 18px;
  }
  .case-body h3 {
    font-size: 17px;
    line-height: 1.55;
  }
  .case-body p {
    font-size: 13px;
    line-height: 1.85;
  }
  .compare-wrap {
    margin-left: -16px;
    margin-right: -16px;
    border-left: none;
    border-right: none;
    border-radius: 0;
  }
  .compare-table {
    min-width: 720px;
  }
  .compare-table th,
  .compare-table td {
    padding: 12px 14px;
    font-size: 12px;
    line-height: 1.55;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .price {
    padding: 24px 20px;
    border-radius: 18px;
  }
  .price h3 {
    font-size: 23px;
  }
  .price p,
  .price li {
    font-size: 13px;
    line-height: 1.8;
  }
  .amount {
    font-size: 31px;
  }
  .timeline {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 22px;
  }
  .timeline-item {
    padding: 18px;
    min-height: auto;
    border-radius: 18px;
    border: 1px solid #dce6f2;
    border-left: 5px solid #2d22f8;
    border-top: 1px solid #dce6f2;
  }
  .timeline-item p {
    font-size: 13px;
    line-height: 1.8;
  }
  .faq {
    gap: 12px;
  }
  .faq details {
    padding: 17px 18px;
    border-radius: 18px;
  }
  .faq summary {
    font-size: 13px;
    line-height: 1.65;
  }
  .faq p {
    font-size: 13px;
    line-height: 1.8;
  }
  .cta {
    padding: 76px 0;
    text-align: left;
  }
  .cta::after {
    right: -46vw;
    bottom: -48vw;
    width: 86vw;
    height: 86vw;
    border-width: 42px;
  }
  .cta h2 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.35;
  }
  .cta p {
    margin-left: 0;
    font-size: 14px;
    line-height: 1.85;
  }
  .site-footer {
    padding: 48px 0 92px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 28px;
  }
  .footer-logo img {
    width: 170px;
  }
  .footer-brand p {
    font-size: 13px;
    line-height: 1.8;
  }
  .footer-links {
    justify-content: flex-start;
    gap: 12px 18px;
    font-size: 12px;
  }
  .footer-bottom {
    margin-top: 30px;
  }
  .sp-fixed-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(12px);
    box-shadow: 0 -10px 30px rgba(7, 28, 59, 0.1);
  }
  .sp-fixed-cta .btn-orange {
    position: relative;
    width: min(100%, 420px);
    min-height: 62px;
    padding: 16px 20px 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .sp-fixed-cta .btn-orange .btn-balloon {
    top: -24px;
    min-width: 210px;
    font-size: 11px;
  }
  .sp-fixed-cta .btn-orange .btn-main {
    font-size: 17px;
    letter-spacing: 0.04em;
  }
}

/*# sourceMappingURL=style-index.css.map */
