:root {
  --blue: #0066cc;
  --blue-dark: #004eb0;
  --paper: #fafaf6;
  --focus: #ffd23f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: #111;
  font-family:
    "Noto Sans JP",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    Meiryo,
    sans-serif;
}

.lp {
  width: min(100%, 1030px);
  margin: 0 auto;
  background: var(--paper);
  box-shadow: 0 0 32px rgba(0, 102, 204, 0.08);
}

.lp-section {
  position: relative;
  margin: 0;
  background: var(--paper);
}

.lp-section img {
  display: block;
  width: 100%;
  height: auto;
}

.hotspot {
  position: absolute;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 102, 204, 0.2);
}

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

.hotspot:focus-visible {
  outline: 4px solid var(--focus);
  outline-offset: 4px;
  background: rgba(255, 255, 255, 0.18);
}

.hero-cta {
  left: 6.9%;
  top: 78.9%;
  width: 38.6%;
  height: 5.9%;
}

.service-cta {
  left: 22.7%;
  top: 89.5%;
  width: 54.0%;
  height: 5.2%;
}

.price-cta {
  left: 30.6%;
  top: 83.0%;
  width: 42.8%;
  height: 4.9%;
}

.final-cta {
  left: 24.6%;
  top: 29.5%;
  width: 51.8%;
  height: 6.7%;
}

.sticky-cta {
  position: fixed;
  right: max(16px, calc((100vw - 1030px) / 2 + 18px));
  bottom: 18px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  min-height: 48px;
  padding: 12px 18px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 75, 150, 0.26);
}

.sticky-cta:hover {
  background: var(--blue-dark);
}

.sticky-cta:focus-visible {
  outline: 4px solid var(--focus);
  outline-offset: 3px;
}

.modal-open {
  overflow: hidden;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 28, 64, 0.44);
}

.modal-backdrop[hidden] {
  display: none;
}

.demo-modal {
  position: relative;
  width: min(100%, 420px);
  padding: 32px 26px 26px;
  border: 2px solid rgba(0, 102, 204, 0.18);
  border-radius: 8px;
  background: var(--paper);
  color: #1c2430;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 28, 64, 0.22);
}

.demo-modal h2 {
  margin: 8px 0 12px;
  color: var(--blue);
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: 0;
}

.demo-modal p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
}

.modal-kicker {
  color: var(--blue);
  font-size: 12px !important;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(0, 102, 204, 0.2);
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.modal-ok {
  min-width: 160px;
  min-height: 46px;
  margin-top: 22px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
}

.modal-close:focus-visible,
.modal-ok:focus-visible {
  outline: 4px solid var(--focus);
  outline-offset: 3px;
}

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

@media (max-width: 640px) {
  .lp {
    box-shadow: none;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
    min-width: 104px;
    min-height: 44px;
    padding: 10px 15px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
