:root {
  --navy: #12345a;
  --blue: #1e6a9f;
  --light-blue: #eaf4f8;
  --green: #79a739;
  --light-green: #f1f6e8;
  --cream: #fbfaf5;
  --ink: #17273a;
  --muted: #5c6b78;
  --white: #ffffff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  line-height: 1.75;
}

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

.siteHeader {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1160px, calc(100% - 48px));
  min-height: 90px;
  margin: 0 auto;
}

.brand { display: flex; align-items: center; gap: 13px; }
.brand strong { display: block; font-size: 17px; letter-spacing: .04em; }
.brand small { display: block; margin-top: -3px; color: #73808c; font-size: 9px; letter-spacing: .08em; }
.headerNav { display: flex; align-items: center; gap: 28px; margin-left: auto; margin-right: 34px; }
.headerNav a { color: #4f6374; font-size: 13px; font-weight: 750; }
.headerNav a:hover { color: var(--blue); }

.headerCta, .primaryButton {
  display: inline-flex; align-items: center; justify-content: center; gap: 22px;
  border-radius: 999px;
  background: var(--green); color: white;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(95, 137, 39, .18);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.headerCta { min-height: 48px; padding: 0 23px; font-size: 14px; }
.headerCta:hover, .primaryButton:hover { transform: translateY(-2px); background: #69952f; box-shadow: 0 12px 26px rgba(95, 137, 39, .25); }

.hero { position: relative; overflow: hidden; background: linear-gradient(180deg, #f8fbfc 0%, #e9f3f7 100%); }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(30,106,159,.12) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to right, black, transparent 65%);
}
.heroInner {
  position: relative;
  display: grid; grid-template-columns: 1.14fr .86fr; align-items: center; gap: 42px;
  width: min(1160px, calc(100% - 48px)); min-height: 650px; margin: 0 auto; padding: 72px 0 96px;
}
.heroBackdrop { position: absolute; border-radius: 50%; filter: blur(1px); }
.heroBackdropOne { width: 360px; height: 360px; right: -120px; top: 20px; background: rgba(121,167,57,.13); }
.heroBackdropTwo { width: 230px; height: 230px; left: -80px; bottom: -100px; background: rgba(30,106,159,.08); }

.eyebrow { display: flex; align-items: center; gap: 14px; margin: 0 0 24px; color: var(--blue); font-size: 14px; font-weight: 800; letter-spacing: .08em; }
.eyebrow span:first-child { padding: 5px 13px; border: 1px solid rgba(30,106,159,.25); border-radius: 999px; background: rgba(255,255,255,.7); }
.eyebrow span:last-child { color: #7890a0; font-size: 11px; letter-spacing: .13em; }
.hero h1 { margin: 0; font-size: clamp(40px, 4.6vw, 58px); line-height: 1.3; letter-spacing: -.045em; color: var(--navy); font-weight: 850; }
.hero h1 span { display: block; color: var(--blue); }
.heroLead { max-width: 570px; margin: 28px 0 0; color: #445a6d; font-size: 18px; font-weight: 600; line-height: 2; }
.heroActions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.primaryButton { min-height: 60px; padding: 0 30px; }
.textLink { border-bottom: 1px solid #8798a5; color: #435b6e; font-size: 14px; font-weight: 700; }
.textLink:hover { color: var(--blue); border-color: var(--blue); }

.heroVisual { position: relative; min-height: 440px; }
.heroImageFrame {
  position: absolute; inset: 8px 0 34px 8px;
  margin: 0; overflow: hidden;
  border: 8px solid rgba(255,255,255,.78); border-radius: 42px 42px 42px 13px;
  background: #dbe9ec; box-shadow: 0 22px 48px rgba(23,60,88,.16);
}
.heroImageFrame img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 52% center; }
.consultCard {
  position: absolute; z-index: 5; left: 18px; right: -8px; bottom: 0;
  display: flex; align-items: center; gap: 16px;
  max-width: 430px; margin: auto; padding: 17px 20px;
  border: 1px solid rgba(255,255,255,.7); border-radius: 20px;
  background: rgba(255,255,255,.92); box-shadow: 0 18px 42px rgba(26,70,101,.15); backdrop-filter: blur(12px);
}
.consultIcon { display: grid; place-items: center; width: 50px; height: 50px; flex: 0 0 auto; border-radius: 50%; background: var(--light-green); color: #638f2e; font-size: 26px; font-weight: 900; letter-spacing: 2px; }
.consultCard small, .consultCard strong { display: block; }
.consultCard small { color: #71808a; font-size: 11px; font-weight: 700; }
.consultCard strong { color: var(--navy); font-size: 16px; }

.freeConsultation, .supportPreview { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }
.freeConsultation {
  position: relative; z-index: 3; margin-top: -42px; padding: 52px 60px 34px;
  border: 1px solid rgba(121,167,57,.25); border-radius: 34px;
  background: white; box-shadow: 0 20px 55px rgba(39,69,88,.09);
}
.sectionIntro { max-width: 650px; }
.compactIntro { max-width: none; text-align: center; }
.sectionKicker { margin: 0 0 6px; color: var(--green); font-family: Arial, sans-serif; font-size: 11px; font-weight: 800; letter-spacing: .22em; }
.sectionIntro h2 { margin: 0; color: var(--navy); font-size: clamp(31px, 4vw, 47px); line-height: 1.35; letter-spacing: -.025em; }
.compactIntro h2 span { color: var(--green); }
.sectionIntro > p:last-child { margin: 10px 0 0; color: var(--muted); font-size: 15px; }
.featureGrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 32px; }
.featureCard { overflow: hidden; padding: 10px 10px 17px; border-radius: 19px; background: #f7f9f4; text-align: center; }
.featureImage { display: block; width: 100%; aspect-ratio: 1; margin: 0 auto 12px; border-radius: 14px; object-fit: cover; }
.featureCard h3 { margin: 0; color: var(--navy); font-size: 15px; }
.featureCard p { margin: 2px 0 0; color: #72808a; font-size: 11px; }
.specialistNote { margin: 25px 0 0; padding-top: 20px; border-top: 1px dashed #ccd8bd; color: #526477; font-size: 13px; text-align: center; }

.supportPreview { padding: 110px 0 100px; }
.sectionHeadingRow { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 40px; }
.sectionNumber { color: rgba(30,106,159,.1); font-family: Georgia, serif; font-size: 100px; font-style: italic; line-height: .8; }
.supportGrid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.supportCard { padding: 30px; border: 1px solid #dce5e7; border-radius: 24px; background: white; transition: transform .2s ease, box-shadow .2s ease; }
.supportCard { grid-column: span 2; }
.supportCard:nth-child(4) { grid-column: 2 / span 2; }
.supportCard:nth-child(5) { grid-column: 4 / span 2; }
.supportCard:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(30,66,91,.09); }
.supportCardTop { display: flex; align-items: center; justify-content: space-between; }
.supportCardTop > span { color: #91a1ad; font-family: Georgia, serif; font-size: 13px; }
.supportImage { display: block; width: 100%; aspect-ratio: 1; margin: 15px 0 20px; border-radius: 18px; object-fit: cover; }
.supportCard h3 { margin: 0 0 3px; color: var(--navy); font-size: 21px; }
.supportCard p { margin: 0; color: var(--muted); font-size: 14px; }

.reassuranceSection {
  display: grid; grid-template-columns: 1.08fr .92fr; gap: 55px; align-items: center;
  padding: 95px max(24px, calc((100% - 1040px) / 2));
  background: var(--navy); color: white;
}
.reassuranceCopy .sectionKicker { color: #a7cc71; }
.reassuranceCopy h2 { margin: 8px 0 20px; font-size: clamp(31px, 3.5vw, 40px); line-height: 1.5; letter-spacing: -.03em; }
.reassuranceCopy > p:last-child { max-width: 590px; margin: 0; color: #c9d8e3; font-size: 15px; }
.reassuranceMedia { min-width: 0; }
.consultationImage { display: block; width: 100%; aspect-ratio: 4 / 3; margin-bottom: 14px; border: 6px solid rgba(255,255,255,.1); border-radius: 25px; object-fit: cover; object-position: center; box-shadow: 0 22px 44px rgba(0,0,0,.18); }
.promiseList { display: grid; gap: 12px; }
.promiseList > div { display: flex; align-items: center; gap: 17px; padding: 19px 22px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(255,255,255,.07); }
.promiseList > div > span { display: grid; place-items: center; width: 40px; height: 40px; flex: 0 0 auto; border-radius: 50%; background: var(--green); font-size: 18px; font-weight: 900; }
.promiseList p { margin: 0; }
.promiseList strong, .promiseList small { display: block; }
.promiseList strong { font-size: 16px; }
.promiseList small { color: #adc0ce; font-size: 12px; }

.flowSection { width: min(1160px, calc(100% - 48px)); margin: 0 auto; padding: 110px 0; }
.flowGrid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.flowGrid::before { content: ""; position: absolute; left: 15%; right: 15%; top: 35px; border-top: 1px dashed #9fb6c4; }
.flowCard { position: relative; z-index: 1; padding: 0 14px; text-align: center; }
.flowCard > span { display: grid; place-items: center; width: 70px; height: 70px; margin: 0 auto 22px; border: 7px solid var(--cream); border-radius: 50%; background: var(--blue); color: white; font-family: Georgia, serif; font-size: 22px; font-weight: 700; box-shadow: 0 0 0 1px #b7cad4; }
.flowImage { display: block; width: 100%; aspect-ratio: 1; margin: 0 auto 20px; border-radius: 22px; object-fit: cover; box-shadow: 0 12px 28px rgba(30,66,91,.08); }
.flowCard h3 { margin: 0; color: var(--navy); font-size: 20px; }
.flowCard p { margin: 9px auto 0; color: var(--muted); font-size: 14px; }

.contactSection {
  display: grid; grid-template-columns: .95fr 1.05fr; gap: 60px; align-items: center;
  padding: 110px max(24px, calc((100% - 1040px) / 2));
  background: linear-gradient(135deg, #eaf4f8, #f1f6e8);
}
.contactLead h2 { margin: 8px 0 22px; color: var(--navy); font-size: clamp(34px, 4vw, 44px); line-height: 1.45; letter-spacing: -.035em; }
.contactLead > p:not(.sectionKicker) { max-width: 500px; margin: 0; color: #52687a; font-size: 15px; }
.contactPerson { display: inline-flex; align-items: center; gap: 12px; margin-top: 27px; padding: 10px 18px; border-radius: 999px; background: rgba(255,255,255,.7); }
.contactPerson span { color: #718493; font-size: 11px; }
.contactPerson strong { color: var(--navy); font-size: 14px; }
.contactCard { padding: 38px; border-radius: 28px; background: white; box-shadow: 0 22px 55px rgba(25,70,98,.12); }
.contactLabel { margin: 0 0 15px; color: var(--green); font-size: 12px; font-weight: 850; letter-spacing: .08em; }
.contactMethod { display: grid; grid-template-columns: 64px 1fr auto; align-items: center; gap: 10px; min-height: 67px; padding: 0 18px; border: 1px solid #dfe8ec; border-radius: 17px; }
.contactMethod + .contactMethod { margin-top: 10px; }
.contactMethod:hover { border-color: #9bbccc; background: #f8fbfc; }
.contactMethod span { color: #6f8290; font-size: 11px; font-weight: 750; }
.contactMethod strong { color: var(--navy); font-size: 19px; overflow-wrap: anywhere; }
.contactMethod i { color: var(--green); font-style: normal; font-weight: 900; }
.locationBlock { display: grid; grid-template-columns: 64px 1fr; gap: 10px; margin-top: 22px; padding: 22px 18px; border-top: 1px solid #e5ebed; }
.locationBlock > span { color: #6f8290; font-size: 11px; font-weight: 750; }
.locationBlock p { margin: 0; color: #506474; font-size: 13px; line-height: 1.9; }
.locationBlock strong { color: var(--navy); font-size: 14px; }
.websiteLink { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; padding: 13px 18px; border-radius: 13px; background: #f1f6e8; color: #557a28; font-size: 13px; font-weight: 800; }

.siteFooter { display: flex; align-items: center; justify-content: space-between; gap: 30px; min-height: 116px; padding: 24px max(24px, calc((100% - 1040px) / 2)); background: #0c2948; color: white; }
.footerBrand { display: flex; align-items: center; gap: 12px; font-size: 15px; }
.siteFooter p { margin: 0; color: #9fb3c3; font-size: 11px; text-align: right; }
.mobileStickyCta { display: none; }

@media (max-width: 900px) {
  .heroInner { grid-template-columns: 1fr; gap: 22px; padding-top: 65px; }
  .heroCopy { text-align: center; }
  .heroLead { margin-left: auto; margin-right: auto; }
  .eyebrow, .heroActions { justify-content: center; }
  .heroVisual { max-width: 510px; width: 100%; margin: auto; }
  .featureGrid { grid-template-columns: repeat(2, 1fr); }
  .supportGrid { grid-template-columns: 1fr; }
  .supportCard, .supportCard:nth-child(4), .supportCard:nth-child(5) { grid-column: auto; }
  .reassuranceSection, .contactSection { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 620px) {
  .siteHeader { width: min(100% - 32px, 1160px); min-height: 72px; }
  .brand strong { font-size: 14px; }
  .brand small { display: none; }
  .headerNav { display: none; }
  .headerCta { min-height: 40px; padding: 0 15px; gap: 8px; font-size: 12px; }
  .heroInner, .freeConsultation, .supportPreview { width: min(100% - 32px, 1160px); }
  .heroInner { min-height: auto; padding: 50px 0 86px; }
  .eyebrow { flex-direction: column; gap: 7px; margin-bottom: 18px; }
  .hero h1 { font-size: clamp(36px, 11vw, 50px); }
  .heroLead { margin-top: 20px; font-size: 16px; line-height: 1.85; }
  .heroActions { flex-direction: column; gap: 16px; margin-top: 30px; }
  .primaryButton { width: 100%; }
  .heroVisual { min-height: 350px; }
  .heroImageFrame { inset: 0 0 32px; border-width: 6px; border-radius: 30px 30px 30px 10px; }
  .consultCard { left: 8px; right: 8px; padding: 14px; }
  .consultCard strong { font-size: 14px; }
  .freeConsultation { margin-top: -28px; padding: 38px 18px 24px; border-radius: 25px; }
  .sectionIntro h2 { font-size: 32px; }
  .featureGrid { gap: 8px; margin-top: 26px; }
  .featureCard { padding: 7px 7px 15px; }
  .featureImage { margin-bottom: 9px; border-radius: 12px; }
  .specialistNote { text-align: left; }
  .supportPreview { padding: 80px 0 70px; }
  .sectionHeadingRow { margin-bottom: 28px; }
  .sectionNumber { display: none; }
  .supportCard { padding: 24px; }
  .reassuranceSection { padding: 72px 16px; }
  .reassuranceCopy h2 br { display: none; }
  .promiseList > div { padding: 16px; }
  .flowSection { width: min(100% - 32px, 1160px); padding: 78px 0; }
  .flowGrid { grid-template-columns: 1fr; gap: 32px; margin-top: 36px; }
  .flowGrid::before { display: none; }
  .flowCard { display: grid; grid-template-columns: 118px 1fr; grid-template-areas: "image title" "image note"; column-gap: 16px; padding: 0; text-align: left; }
  .flowCard > span { position: absolute; z-index: 2; left: -5px; top: -8px; width: 42px; height: 42px; margin: 0; border-width: 4px; font-size: 16px; }
  .flowImage { grid-area: image; width: 118px; margin: 0; border-radius: 17px; }
  .flowCard h3 { grid-area: title; align-self: end; }
  .flowCard p { grid-area: note; }
  .flowCard p { margin: 2px 0 0; }
  .contactSection { padding: 76px 16px 88px; }
  .contactLead h2 br { display: none; }
  .contactCard { padding: 25px 16px; border-radius: 23px; }
  .contactMethod { grid-template-columns: 52px 1fr auto; padding: 0 12px; }
  .contactMethod strong { font-size: 16px; }
  .locationBlock { grid-template-columns: 48px 1fr; padding-left: 12px; padding-right: 12px; }
  .siteFooter { flex-direction: column; align-items: flex-start; padding: 34px 16px 92px; }
  .siteFooter p { text-align: left; }
  .mobileStickyCta { position: fixed; z-index: 20; left: 12px; right: 12px; bottom: 10px; display: flex; align-items: center; justify-content: space-between; min-height: 55px; padding: 0 24px; border-radius: 999px; background: var(--green); color: white; font-size: 14px; font-weight: 850; box-shadow: 0 12px 30px rgba(55,86,24,.3); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
