:root {
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-soft: #dbeafe;
  --blue-pale: #eff6ff;
  --green: #0b7430;
  --ink: #111827;
  --muted: #5b6472;
  --line: #d8e3f4;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(37, 99, 235, 0.14);
  --radius-lg: 30px;
  --radius-md: 22px;
  --container: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  width: 100%;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.1), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 42%, #ffffff 100%);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  line-height: 1.8;
  overflow-x: clip;
}

.phrase {
  display: inline;
  white-space: normal;
}

.floating-cta-link {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 22;
  height: 64px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 34px rgba(34, 197, 94, 0.34);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  touch-action: manipulation;
}

.floating-cta-link:hover {
  background: #075f29;
  box-shadow: 0 18px 42px rgba(34, 197, 94, 0.4);
  transform: translateY(-2px);
}

.floating-cta-link:active,
.button:active,
.header-cta:active {
  transform: scale(0.98);
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 64px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(216, 227, 244, 0.76);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.brand-mark {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 13px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #60a5fa);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.25);
}

.brand-company,
.brand-service {
  display: block;
  line-height: 1.25;
}

.brand-company {
  font-size: 0.74rem;
  color: var(--blue);
}

.brand-service {
  font-size: 0.92rem;
  white-space: nowrap;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  touch-action: manipulation;
}

.header-cta:hover {
  background: var(--blue-dark);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.3);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 44px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(37, 99, 235, 0.1), transparent 45%),
    radial-gradient(circle at 82% 18%, rgba(147, 197, 253, 0.28), transparent 18rem);
}

.hero-bg::before,
.hero-bg::after {
  position: absolute;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  content: "";
}

.hero-bg::before {
  right: -66px;
  bottom: 100px;
  width: 220px;
  height: 220px;
}

.hero-bg::after {
  top: 170px;
  left: -100px;
  width: 260px;
  height: 260px;
}

.hero-grid {
  display: grid;
  gap: 36px;
}

.eyebrow,
.section-label,
.price-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.eyebrow {
  margin: 0 0 20px;
  padding: 7px 14px;
}

.hero h1,
.section-heading h2,
.service-panel h2,
.cta-panel h2,
.notice-card h2 {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 1.32;
  line-break: strict;
  overflow-wrap: normal;
  word-break: auto-phrase;
}

.hero h1 {
  font-size: clamp(2rem, 9.2vw, 4.6rem);
}

.hero h1 .phrase {
  display: block;
  white-space: nowrap;
}

.hero-lead {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 700;
  line-break: strict;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-badges span::before {
  margin-right: 6px;
  content: "✓";
}

.cta-row {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.3;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  touch-action: manipulation;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.28);
}

.button-primary:hover {
  background: var(--blue-dark);
}

.button-secondary {
  border: 1px solid rgba(37, 99, 235, 0.18);
  color: var(--blue-dark);
  background: var(--white);
}

.button-secondary:hover {
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.14);
}

.button-secondary.light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
}

.micro-copy {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  text-align: center;
}

.cta-assurance,
.cta-kicker {
  margin: 18px 0 0;
  color: var(--blue-dark);
  font-size: 0.9rem;
  font-weight: 900;
}

.cta-kicker {
  color: rgba(255, 255, 255, 0.92);
}

.hero-card {
  position: relative;
  padding: 12px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
}

.mock-map {
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(150deg, #f8fbff 0%, #eaf3ff 100%);
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px;
  padding: 12px 14px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.12);
}

.search-bar span {
  width: 12px;
  height: 12px;
  border: 3px solid var(--blue);
  border-radius: 999px;
}

.map-area {
  position: relative;
  min-height: 210px;
  margin: 0 16px;
  border-radius: 24px;
  background:
    linear-gradient(90deg, transparent 47%, rgba(37, 99, 235, 0.13) 47% 51%, transparent 51%),
    linear-gradient(0deg, transparent 42%, rgba(37, 99, 235, 0.12) 42% 46%, transparent 46%),
    radial-gradient(circle at 22% 28%, #bfdbfe 0 13%, transparent 14%),
    radial-gradient(circle at 72% 66%, #dbeafe 0 18%, transparent 19%),
    #f4f8ff;
}

.pin {
  position: absolute;
  width: 36px;
  height: 36px;
  border: 7px solid var(--white);
  border-radius: 999px 999px 999px 0;
  background: var(--blue);
  box-shadow: 0 14px 24px rgba(37, 99, 235, 0.3);
  transform: rotate(-45deg);
}

.pin-a {
  top: 38px;
  left: 34px;
}

.pin-b {
  right: 42px;
  bottom: 54px;
  background: #60a5fa;
}

.pin-c {
  top: 78px;
  right: 98px;
  background: var(--green);
}

.business-card {
  margin: -42px 16px 18px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.11);
  position: relative;
}

.business-card p {
  margin: 0 0 6px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
}

.business-card h2 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.45;
  line-break: strict;
  word-break: auto-phrase;
}

.business-card ul,
.price-card ul,
.notice-card ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.business-card li,
.price-card li,
.notice-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-weight: 700;
}

.business-card li::before,
.price-card li::before,
.notice-card li::before {
  position: absolute;
  left: 0;
  color: var(--blue);
  content: "✓";
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-label,
.price-badge {
  margin: 0 0 12px;
  padding: 6px 13px;
}

.section-heading h2,
.service-panel h2,
.cta-panel h2,
.notice-card h2 {
  font-size: clamp(1.8rem, 7vw, 3.2rem);
}

.section-heading p,
.service-panel p,
.cta-panel p,
.notice-card li,
.price-card p,
.flow-list p,
.faq-list p {
  color: var(--muted);
}

.problem-section,
.recommend-section,
.reason-section,
.flow-section,
.faq-section {
  background: rgba(239, 246, 255, 0.68);
}

.problem-list,
.support-grid,
.reason-grid,
.recommend-grid {
  display: grid;
  gap: 16px;
}

.problem-card,
.support-card,
.reason-grid article,
.recommend-grid article,
.price-card,
.notice-card,
.faq-list details {
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.08);
}

.problem-card,
.support-card,
.reason-grid article,
.recommend-grid article {
  padding: 22px;
}

.problem-card > span,
.reason-grid strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: var(--blue);
  background: var(--blue-pale);
  font-weight: 900;
}

.problem-card h3,
.support-card h3,
.reason-grid h3,
.flow-list h3 {
  margin: 14px 0 8px;
  font-size: 1.12rem;
  line-height: 1.5;
  line-break: strict;
  word-break: auto-phrase;
}

.problem-card p,
.support-card p,
.recommend-grid p,
.reason-grid p,
.flow-list p {
  margin: 0;
}

.recommend-wrap {
  display: grid;
  gap: 8px;
}

.recommend-grid article {
  display: grid;
  gap: 8px;
}

.recommend-grid span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #60a5fa);
  font-weight: 900;
}

.recommend-grid strong {
  font-size: 1.12rem;
}

.problem-card,
.support-card,
.reason-grid article,
.recommend-grid article,
.price-card,
.faq-list details {
  animation: fade-up 520ms ease both;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.problem-card:hover,
.support-card:hover,
.reason-grid article:hover,
.recommend-grid article:hover,
.price-card:hover,
.faq-list details:hover {
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow: 0 20px 44px rgba(37, 99, 235, 0.12);
  transform: translateY(-2px);
}

.service-panel {
  display: grid;
  gap: 18px;
  padding: 30px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.24), transparent 18rem),
    linear-gradient(135deg, var(--blue), #0f3ea8);
  box-shadow: var(--shadow);
}

.service-panel .section-label {
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.86);
}

.service-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.support-card .icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #60a5fa);
  font-weight: 900;
}

.price-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.12), transparent 24rem),
    #ffffff;
}

.price-wrap {
  max-width: 720px;
}

.price-card {
  padding: 28px;
  text-align: center;
}

.price-card .button {
  width: 100%;
  margin-top: 22px;
}

.price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin: 8px 0 8px;
}

.price-main strong {
  color: var(--blue);
  font-size: clamp(3.4rem, 16vw, 5.4rem);
  font-weight: 900;
  letter-spacing: -0.06em;
}

.price-main span {
  font-weight: 900;
}

.price-card ul {
  text-align: left;
}

.flow-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: var(--radius-md);
  background: var(--white);
}

.flow-list span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}

.flow-list h3 {
  margin-top: 0;
}

.cta-section {
  padding-block: 56px;
}

.cta-panel {
  padding: 34px 22px;
  border-radius: var(--radius-lg);
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.24), transparent 18rem),
    linear-gradient(135deg, #1d4ed8, #2563eb 60%, #60a5fa);
  box-shadow: var(--shadow);
}

.cta-panel .section-label {
  color: var(--blue-dark);
  background: var(--white);
}

.cta-panel p {
  margin: 16px auto 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.center {
  justify-content: center;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0 18px;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 0;
  font-weight: 900;
}

.faq-list summary::marker {
  color: var(--blue);
}

.faq-list p {
  margin: 0;
  padding: 0 0 18px;
}

.notice-section {
  padding-bottom: 104px;
}

.notice-card {
  padding: 24px;
}

.legal-page {
  min-height: 100svh;
  background: var(--blue-pale);
}

.legal-page h1 {
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 7vw, 2.6rem);
  line-height: 1.35;
}

.legal-page p {
  color: var(--muted);
}

.site-footer {
  padding: 36px 0 104px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-inner {
  display: grid;
  gap: 12px;
  text-align: center;
  place-items: center;
}

.footer-inner p,
.footer-inner small {
  margin: 0;
  color: var(--muted);
}

.footer-service {
  color: var(--blue-dark) !important;
  font-weight: 900;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  font-size: 0.9rem;
  font-weight: 800;
}

.footer-nav a {
  color: var(--blue-dark);
}

.footer-nav a:hover {
  text-decoration: underline;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 420px) {
  .site-header {
    gap: 8px;
    padding: 10px 12px;
  }

  .brand {
    gap: 7px;
  }

  .brand-mark {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
    border-radius: 12px;
  }

  .brand-company {
    font-size: 0.66rem;
  }

  .brand-service {
    font-size: 0.82rem;
    letter-spacing: 0.01em;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .eyebrow {
    font-size: 0.78rem;
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 8.7vw, 2.35rem);
  }

  .section {
    padding: 56px 0;
  }

  .button {
    min-height: 60px;
  }
}

@media (min-width: 720px) {
  .floating-cta-link {
    display: none;
  }

  .site-header {
    padding-inline: 28px;
  }

  .hero {
    padding-top: 76px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 430px;
    align-items: center;
  }

  .cta-row {
    display: flex;
    flex-wrap: wrap;
  }

  .button {
    min-width: 220px;
  }

  .micro-copy {
    text-align: left;
  }

  .problem-list,
  .reason-grid,
  .recommend-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-card.wide {
    grid-column: span 2;
  }

  .service-panel {
    grid-template-columns: 0.92fr 1fr;
    align-items: center;
    padding: 44px;
  }

  .flow-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .flow-list li {
    grid-template-columns: 1fr;
  }

  .cta-panel,
  .notice-card,
  .price-card {
    padding: 44px;
  }

  .site-footer {
    padding-bottom: 42px;
  }
}

@media (min-width: 960px) {
  .section {
    padding: 88px 0;
  }

  .support-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .support-card.wide {
    grid-column: span 2;
  }
}

@media (hover: none) {
  .button:hover,
  .header-cta:hover,
  .floating-cta-link:hover,
  .problem-card:hover,
  .support-card:hover,
  .reason-grid article:hover,
  .recommend-grid article:hover,
  .price-card:hover,
  .faq-list details:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
