:root {
  --navy: #0b2a5b;
  --blue: #1e73d8;
  --orange: #ff8a00;
  --green: #19b84a;
  --bg: #ffffff;
  --soft: #f5f8fc;
  --text: #0f172a;
  --muted: #5e6b7f;
  --line: #dce6f2;
  --shadow: 0 18px 48px rgba(11, 42, 91, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.75;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 14px clamp(18px, 5vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(220, 230, 242, 0.8);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: clamp(15px, 2vw, 21px);
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  color: var(--blue);
}

.brand-mark svg {
  width: 38px;
  height: 38px;
  fill: currentColor;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}

.hours {
  color: var(--text);
  font-size: 14px;
}

.hours strong {
  color: var(--navy);
  font-family: Montserrat, sans-serif;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 26px;
  border-radius: var(--radius);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(11, 42, 91, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(11, 42, 91, 0.18);
  filter: brightness(1.03);
}

.btn svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.btn-orange {
  background: linear-gradient(180deg, #ff9b1f 0%, var(--orange) 100%);
}

.btn-green {
  background: linear-gradient(180deg, #20c653 0%, #08a83b 100%);
}

.btn-small {
  min-height: 44px;
  padding: 0 18px;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(760px, calc(100svh - 74px));
  padding: clamp(54px, 7vw, 96px) clamp(20px, 5vw, 64px);
  overflow: hidden;
  background: #eef4fb;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 30%, rgba(255, 255, 255, 0.42) 58%, rgba(255, 255, 255, 0.08) 100%),
    linear-gradient(180deg, rgba(245, 248, 252, 0.12), rgba(245, 248, 252, 0.32));
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 840px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  padding: 6px 13px;
  color: var(--blue);
  background: #eaf3ff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.hero h1 {
  margin: 0;
  color: var(--navy);
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: clamp(44px, 5.1vw, 66px);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.9), 0 12px 34px rgba(11, 42, 91, 0.09);
}

.hero h1 span {
  color: var(--orange);
  white-space: nowrap;
}

.sp-break {
  display: none;
}

.lead {
  margin: 26px 0 0;
  color: #243249;
  font-size: clamp(18px, 1.8vw, 23px);
  font-weight: 800;
  line-height: 1.8;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero-buttons,
.final-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.line-dot {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--green);
  background: #fff;
  border-radius: 50%;
  font: 800 10px/1 Montserrat, sans-serif;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 45px;
  padding: 0 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(11, 42, 91, 0.06);
}

.trust-list svg {
  width: 24px;
  height: 24px;
  fill: var(--orange);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  min-height: 100%;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(11, 42, 91, 0.12));
  z-index: 1;
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
}

.hero-media img.is-missing {
  display: none;
}

.hero-media:has(img.is-missing) {
  background:
    linear-gradient(135deg, rgba(30, 115, 216, 0.1), rgba(255, 138, 0, 0.08)),
    #edf3fa;
}

.section {
  padding: clamp(48px, 7vw, 82px) clamp(20px, 5vw, 64px);
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-heading > span:not(.accent) {
  width: min(9vw, 52px);
  height: 1px;
  background: var(--navy);
}

.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(24px, 3.6vw, 38px);
  font-weight: 900;
  line-height: 1.35;
}

.section-heading .accent {
  color: var(--orange);
  font-family: Montserrat, sans-serif;
  font-size: 1.35em;
}

.section-heading h2 span:not(.accent) {
  display: inline;
  color: inherit;
  font-size: 0.58em;
  font-weight: 900;
  white-space: nowrap;
}

.concern-grid,
.reason-grid,
.price-grid,
.flow-grid {
  display: grid;
  gap: 22px;
  max-width: 1160px;
  margin: 0 auto;
}

.concern-grid {
  grid-template-columns: repeat(3, 1fr);
}

.mini-card {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 110px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(11, 42, 91, 0.06);
}

.icon-box {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  flex: 0 0 auto;
  color: var(--navy);
}

.icon-box svg {
  width: 66px;
  height: 66px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.mini-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.55;
}

.reasons,
.flow {
  background: linear-gradient(180deg, #eef6ff 0%, #f7fbff 100%);
}

.reason-grid {
  grid-template-columns: repeat(3, 1fr);
}

.reason-card {
  position: relative;
  overflow: hidden;
  padding: 0 0 26px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 14px 32px rgba(11, 42, 91, 0.08);
}

.reason-card img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.reason-card .num {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: -24px 0 0 20px;
  position: relative;
  z-index: 1;
  color: #fff;
  background: var(--navy);
  border: 4px solid #fff;
  border-radius: 50%;
  font: 800 22px/1 Montserrat, sans-serif;
}

.reason-card h3 {
  margin: 8px 18px 6px;
  color: var(--navy);
  font-size: 21px;
  font-weight: 900;
}

.reason-card p {
  margin: 0 22px;
  color: #29384f;
  font-weight: 700;
}

.pricing {
  background: #fff;
}

.price-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.price-card {
  position: relative;
  min-height: 250px;
  padding: 28px;
  background: #fff;
  border: 2px solid #b9cce7;
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(11, 42, 91, 0.06);
}

.price-card.featured {
  border-color: var(--orange);
  box-shadow: 0 18px 40px rgba(255, 138, 0, 0.18);
  transform: translateY(-10px);
}

.recommend {
  position: absolute;
  top: -19px;
  left: 24px;
  right: 24px;
  margin: 0;
  padding: 7px 10px;
  color: #fff;
  background: var(--orange);
  border-radius: 999px;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
}

.price-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  text-align: center;
  font-size: 20px;
  font-weight: 900;
}

.price {
  margin: 0;
  color: var(--navy);
  text-align: center;
  font-family: Montserrat, "Noto Sans JP", sans-serif;
  font-size: 28px;
  font-weight: 800;
}

.price strong {
  color: var(--orange);
  font-size: 46px;
  letter-spacing: 0;
}

.tax {
  margin: -6px 0 16px;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.price-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 28px;
  color: #26364d;
  font-weight: 700;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 900;
}

.featured li::before {
  color: var(--orange);
}

.badge {
  position: absolute;
  right: 20px;
  bottom: 26px;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  color: #fff;
  background: var(--orange);
  clip-path: polygon(50% 0%, 60% 14%, 76% 9%, 82% 25%, 98% 31%, 91% 47%, 100% 62%, 84% 70%, 82% 87%, 65% 86%, 50% 100%, 37% 86%, 20% 91%, 14% 75%, 0 66%, 8% 50%, 0 34%, 16% 27%, 19% 10%, 36% 14%);
  text-align: center;
  font-weight: 900;
  line-height: 1.25;
}

.flow-grid {
  grid-template-columns: repeat(3, 1fr);
}

.flow-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "icon title"
    "icon body";
  column-gap: 18px;
  min-height: 128px;
  padding: 26px 26px 26px 72px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(11, 42, 91, 0.08);
}

.step {
  position: absolute;
  top: 20px;
  left: 20px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #fff;
  background: var(--navy);
  border-radius: 50%;
  font: 800 18px/1 Montserrat, sans-serif;
}

.flow-icon {
  grid-area: icon;
  align-self: center;
  color: var(--navy);
}

.flow-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.flow-card h3 {
  grid-area: title;
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.flow-card p {
  grid-area: body;
  margin: 0;
  color: #314057;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
}

.faq-list {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(11, 42, 91, 0.05);
}

summary {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 0 22px;
  color: var(--navy);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "⌄";
  margin-left: auto;
  color: var(--navy);
  font-size: 24px;
  transition: transform 0.2s ease;
}

details[open] summary::after {
  transform: rotate(180deg);
}

summary span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  font: 800 13px/1 Montserrat, sans-serif;
}

details p {
  margin: 0;
  padding: 0 22px 20px 60px;
  color: #334155;
}

.final-cta {
  padding: 38px clamp(20px, 5vw, 64px);
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%, rgba(30, 115, 216, 0.4), transparent 28%),
    linear-gradient(135deg, #061d43 0%, var(--navy) 100%);
}

.final-inner {
  max-width: 1160px;
  margin: 0 auto;
  text-align: center;
}

.final-inner h2 {
  margin: 0 0 16px;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
}

.contact-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Montserrat, sans-serif;
}

.phone svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.phone strong {
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1;
}

.contact-row p {
  margin: 0;
  font-weight: 700;
}

.final-buttons {
  justify-content: center;
}

.site-footer {
  padding: 22px 20px 28px;
  text-align: center;
  color: var(--navy);
  background: #fff;
  font-weight: 700;
}

.site-footer p {
  margin: 4px 0;
}

.footer-brand {
  font-size: 18px;
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }

  .hours {
    display: none;
  }

  .hero {
    min-height: 720px;
    align-items: flex-start;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 46%, rgba(255, 255, 255, 0.55) 76%, rgba(255, 255, 255, 0.24) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(11, 42, 91, 0.12));
  }

  .hero-copy {
    width: min(100%, 640px);
  }

  .concern-grid,
  .reason-grid,
  .price-grid,
  .flow-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 66px;
    padding: 10px 14px;
  }

  .brand {
    max-width: 68vw;
    font-size: 13px;
    line-height: 1.35;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-mark svg {
    width: 32px;
    height: 32px;
  }

  .btn-small {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero {
    min-height: 760px;
    padding: 34px 18px 42px;
  }

  .hero h1 {
    font-size: clamp(37px, 10.8vw, 46px);
    line-height: 1.24;
  }

  .sp-break {
    display: block;
  }

  .lead br {
    display: none;
  }

  .hero-buttons .btn,
  .final-buttons .btn {
    width: 100%;
  }

  .trust-list {
    gap: 10px;
  }

  .trust-list li {
    width: 100%;
  }

  .hero-media img {
    object-position: 63% center;
  }

  .section {
    padding: 44px 18px;
  }

  .section-heading {
    gap: 12px;
    margin-bottom: 22px;
  }

  .mini-card {
    gap: 16px;
    padding: 18px;
  }

  .mini-card h3 {
    font-size: 18px;
  }

  .icon-box {
    width: 58px;
    height: 58px;
  }

  .icon-box svg {
    width: 54px;
    height: 54px;
  }

  .price-card {
    padding: 26px 22px;
  }

  .price strong {
    font-size: 40px;
  }

  .badge {
    width: 70px;
    height: 70px;
    right: 14px;
    bottom: 20px;
    font-size: 14px;
  }

  .flow-card {
    padding: 24px 18px 24px 66px;
  }

  details p {
    padding-left: 22px;
  }

  .contact-row {
    gap: 10px;
  }
}
