:root {
  --navy: #002d72;
  --navy-deep: #001f55;
  --blue: #064394;
  --ink: #072a60;
  --text: #17345f;
  --muted: #5f7190;
  --line: #d8e2f0;
  --soft: #f6f9fd;
  --paper: #ffffff;
  --warm: #f8f5ef;
  --shadow: 0 18px 45px rgba(0, 45, 114, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(90deg, #f8fbff 0, #fff 16%, #fff 84%, #f8fbff 100%);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

.section-narrow {
  width: min(1030px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: min(1100px, calc(100% - 48px));
  min-height: 82px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  color: #111a2c;
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.45;
}

.brand img {
  width: 350px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-links a {
  padding-block: 8px;
  white-space: nowrap;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  color: var(--navy);
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 800;
}

.header-phone {
  position: relative;
  padding-left: 24px;
  font-size: 18px;
  line-height: 1.1;
  white-space: nowrap;
}

.header-phone::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  background: url("assets/icons/svg/phone-blue.svg") center / contain no-repeat;
}

.header-phone small {
  display: block;
  margin-top: 4px;
  font-size: 11px;
}

.header-mail {
  padding: 11px 14px;
  border-radius: 6px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  white-space: nowrap;
}

.menu-button {
  display: none;
  width: 54px;
  min-height: 58px;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 700;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 36px;
  height: 3px;
  margin: 0 auto 7px;
  background: currentColor;
}

.menu-button small {
  display: block;
  margin-top: -1px;
  font-size: 10px;
}

.hero {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 44%, rgba(255, 255, 255, 0.1) 69%),
    radial-gradient(circle at 16% 44%, rgba(185, 210, 235, 0.28), transparent 32%);
}

.hero-inner {
  position: relative;
  width: min(1100px, calc(100% - 48px));
  min-height: 500px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 60px 0 82px;
}

.hero h1 {
  margin: 0 0 24px;
  color: var(--navy);
  font-size: clamp(32px, 3.4vw, 40px);
  line-height: 1.45;
  font-weight: 700;
}

.hero p {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.9;
}

.hero-image {
  align-self: stretch;
  min-height: 500px;
}

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

.trust-panel {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -78px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.trust-panel article {
  min-height: 148px;
  padding: 26px 22px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.trust-panel article:last-child {
  border-right: 0;
}

.trust-panel img,
.worry-grid img,
.reason-grid img,
.compare-track img {
  width: 42px;
  height: 42px;
  margin: 0 auto 13px;
}

.trust-panel h2,
.trust-panel p,
.reason-grid h3,
.reason-grid p,
.compare-track h3,
.compare-track p,
.worry-grid p {
  margin: 0;
}

.trust-panel h2 {
  color: var(--navy);
  font-size: 16px;
}

.trust-panel p {
  margin-top: 8px;
  color: var(--ink);
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.contact-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}

.contact-card {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border-radius: 7px;
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 800;
  text-align: center;
}

.contact-card img {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
}

.contact-card small,
.contact-card em {
  display: block;
  font-style: normal;
}

.contact-card small {
  font-size: 15px;
}

.contact-card strong {
  display: block;
  color: currentColor;
  font-size: 30px;
  line-height: 1.25;
}

.contact-card em {
  font-size: 14px;
}

.contact-card.outline {
  color: var(--navy);
  background: var(--paper);
  border: 2px solid var(--navy);
}

.contact-card.filled {
  color: #fff;
  background: linear-gradient(135deg, var(--navy) 0%, #003c91 100%);
  border: 2px solid var(--navy);
}

.contact-card.filled strong {
  font-size: 22px;
}

.footer-contact .footer-mail::before {
  filter: brightness(0) invert(1);
}

.section {
  padding-top: 72px;
}

.section-title,
.section-row h2,
.final-cta h2,
.page-title {
  margin: 0 0 24px;
  color: var(--navy);
  text-align: center;
  font-size: 26px;
  line-height: 1.45;
}

.title-rule {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  width: min(580px, 100%);
  margin: 0 auto 30px;
}

.title-rule::before,
.title-rule::after {
  content: "";
  height: 1px;
  background: #c8a46b;
}

.title-rule .page-title {
  margin: 0;
}

.worry-grid,
.reason-grid,
.service-grid,
.column-grid {
  display: grid;
  gap: 12px;
}

.worry-grid {
  grid-template-columns: repeat(4, 1fr);
}

.worry-grid article,
.reason-grid article,
.compare-track article,
.service-grid article,
.column-grid article,
.legacy-copy {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 45, 114, 0.05);
}

.worry-grid article {
  min-height: 118px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
}

.worry-grid img {
  margin: 0;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
}

.worry-grid p {
  color: var(--ink);
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.65;
}

.compare-carousel {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  gap: 8px;
}

.arrow {
  width: 34px;
  height: 54px;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}

.compare-track {
  display: flex;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.compare-track::-webkit-scrollbar {
  display: none;
}

.compare-track article {
  min-height: 116px;
  flex: 0 0 33.333%;
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border: 0;
  border-right: 1px solid var(--line);
  box-shadow: none;
  scroll-snap-align: start;
}

.compare-track article:nth-child(3n) {
  border-right: 0;
}

.compare-track img {
  width: 54px;
  height: 54px;
  margin: 0;
  grid-row: span 2;
}

.compare-track h3 {
  color: var(--navy);
  font-size: 15px;
}

.compare-track p {
  color: var(--ink);
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.dots button {
  width: 13px;
  height: 13px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #cbd6e8;
  cursor: pointer;
  transition: width 0.2s ease, background-color 0.2s ease;
}

.dots button[aria-current="true"] {
  width: 28px;
  background: var(--navy);
}

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

.reason-grid article {
  min-height: 166px;
  padding: 24px 18px;
  text-align: center;
}

.reason-grid h3 {
  color: var(--navy);
  font-size: 15px;
}

.reason-grid p {
  margin-top: 8px;
  color: var(--ink);
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
}

.legacy-copy {
  margin-top: 30px;
  padding: 28px 34px;
}

.legacy-copy p {
  margin: 0;
  color: var(--text);
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 2;
}

.service-grid {
  grid-template-columns: repeat(5, 1fr);
}

.service-grid article {
  overflow: hidden;
}

.service-grid img {
  width: 100%;
  aspect-ratio: 1.65 / 1;
  object-fit: cover;
}

.service-grid div {
  padding: 18px 18px 22px;
  text-align: center;
}

.service-grid h3,
.column-grid h3 {
  margin: 0;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.55;
}

.service-grid p {
  margin: 8px 0 0;
  color: var(--ink);
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.section-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.section-row h2 {
  margin: 0;
  text-align: left;
}

.section-row a {
  color: var(--navy);
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 800;
}

.section-row a::after {
  content: " ›";
  font-size: 24px;
  vertical-align: -2px;
}

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

.column-grid article {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 16px;
  padding: 14px;
  align-items: center;
}

.column-grid img {
  width: 118px;
  height: 92px;
  border-radius: 6px;
  object-fit: cover;
}

.column-grid span {
  display: inline-block;
  margin-bottom: 6px;
  padding: 3px 10px;
  border-radius: 5px;
  background: #edf2f8;
  color: var(--navy);
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.column-grid h3 {
  font-size: 15px;
}

.column-grid time {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 0;
  padding: 18px 22px;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.flow-list li {
  position: relative;
  min-height: 88px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  color: var(--navy);
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.flow-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid var(--navy);
  transform: translateY(-50%);
}

.flow-list img {
  width: 38px;
  height: 38px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 700;
}

.faq-list summary {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "⌄";
  font-size: 22px;
}

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

.faq-list p {
  margin: 0;
  padding: 0 24px 18px;
  color: var(--text);
  font-size: 14px;
}

.final-cta {
  margin-top: 72px;
  margin-bottom: 30px;
  padding: 32px 70px;
  border-radius: 9px;
  background:
    linear-gradient(rgba(0, 45, 114, 0.9), rgba(0, 34, 88, 0.96)),
    url("assets/backgrounds/cta-night-city.webp") center / cover;
  color: #fff;
}

.final-cta h2 {
  color: #fff;
  margin-bottom: 22px;
}

.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-card.light {
  min-height: 104px;
}

.contact-card.outline.light {
  color: #fff;
  background: rgba(0, 45, 114, 0.4);
  border-color: rgba(255, 255, 255, 0.84);
}

.contact-card.filled.light {
  color: var(--navy);
  background: #fff;
  border-color: #fff;
}

.contact-card.filled.light strong {
  font-size: 18px;
}

.site-footer {
  background:
    linear-gradient(135deg, rgba(0, 45, 114, 0.98), rgba(0, 31, 85, 0.98)),
    url("assets/backgrounds/cta-night-city.webp") center / cover;
  color: #fff;
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
}

.sub-hero {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: #f7fafd;
}

.sub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.93) 42%, rgba(255, 255, 255, 0.25) 72%),
    var(--hero-image) center right / cover no-repeat;
}

.sub-hero.center::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.72)),
    var(--hero-image) center / cover no-repeat;
}

.sub-hero.services-hero::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.24) 76%),
    var(--hero-image) center right / cover no-repeat;
}

.sub-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100% - 48px));
  margin-inline: auto;
}

.breadcrumb {
  width: min(1100px, calc(100% - 48px));
  margin: 22px auto 0;
  color: var(--muted);
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--navy);
}

.sub-hero h1 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.35;
  font-weight: 700;
}

.sub-hero p {
  max-width: 520px;
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 2;
}

.page-lead {
  max-width: 760px;
  margin: 0 auto 34px;
  color: var(--text);
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 2;
}

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

.page-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 45, 114, 0.06);
}

.page-card img {
  width: 100%;
  aspect-ratio: 1.65 / 1;
  object-fit: cover;
}

.page-card-body {
  padding: 22px 20px 20px;
}

.page-card h2,
.page-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  text-align: center;
  font-size: 21px;
}

.page-card p {
  margin: 0;
  color: var(--text);
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
}

.card-more {
  display: block;
  margin-top: 14px;
  color: var(--navy);
  text-align: right;
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.split-note {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.split-note img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.promise-band {
  margin-top: 72px;
  padding: 42px 0;
  background: linear-gradient(180deg, #f4f8fd, #eef4fb);
}

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

.promise-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 140px;
  padding: 26px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 45, 114, 0.07);
}

.promise-card img,
.feature-card img,
.flow-step img {
  width: 54px;
  height: 54px;
}

.promise-card h3,
.feature-card h3,
.flow-step h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 18px;
}

.promise-card p,
.feature-card p,
.flow-step p,
.company-table,
.access-card p {
  margin: 0;
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.85;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  min-height: 180px;
  padding: 28px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0, 45, 114, 0.05);
}

.feature-card img {
  margin: 0 auto 14px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 44px;
  align-items: start;
}

.faq-categories {
  display: grid;
  gap: 18px;
}

.faq-categories a {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 82px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 800;
}

.faq-categories a:first-child {
  background: var(--navy);
  color: #fff;
}

.faq-categories img {
  width: 36px;
  height: 36px;
}

.faq-categories a:first-child img {
  filter: brightness(0) invert(1);
}

.faq-page-list {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
}

.faq-intro {
  margin: 0 0 8px;
  color: var(--text);
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
}

.faq-category-title {
  scroll-margin-top: 110px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin: 18px 0 4px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.45;
  text-align: center;
}

.faq-category-title::before,
.faq-category-title::after {
  content: "";
  height: 1px;
  background: #c8a46b;
}

.faq-intro + .faq-category-title {
  margin-top: 4px;
}

.faq-page-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.faq-page-list summary {
  display: grid;
  grid-template-columns: 38px 1fr 24px;
  gap: 14px;
  align-items: center;
  min-height: 64px;
  padding: 14px 18px;
  color: var(--navy);
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-page-list summary::-webkit-details-marker {
  display: none;
}

.faq-page-list summary::before {
  content: "Q";
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
}

.faq-page-list summary::after {
  content: "+";
  font-size: 24px;
}

.faq-page-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 0 18px 20px;
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 700;
}

.faq-answer::before {
  content: "A";
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.flow-step {
  position: relative;
  min-height: 270px;
  padding: 38px 18px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 45, 114, 0.05);
}

.flow-step::before {
  content: attr(data-step);
  position: absolute;
  top: -20px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 800;
  transform: translateX(-50%);
}

.flow-step img {
  margin: 0 auto 18px;
}

.soft-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
  padding: 34px;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.84), #fff), var(--panel-image) left center / cover no-repeat;
}

.soft-panel h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 28px;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.company-table th,
.company-table td {
  padding: 17px 22px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.company-table th {
  width: 180px;
  color: var(--navy);
  background: #f6f9fd;
}

.company-table tr:last-child th,
.company-table tr:last-child td {
  border-bottom: 0;
}

.certificate-image {
  width: min(620px, 100%);
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.representative-card {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 30px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 45, 114, 0.06);
}

.representative-card img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
}

.representative-card h3 {
  margin: 4px 0 14px;
  color: var(--navy);
  font-size: 30px;
}

.representative-card p {
  margin: 0;
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 2;
}

.representative-role {
  color: var(--gold);
  font-weight: 900;
}

.area-group-list {
  display: grid;
  gap: 28px;
}

.area-group {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 45, 114, 0.06);
}

.area-group h3 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 24px;
}

.area-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.area-link-grid a {
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
  color: var(--navy);
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 800;
  text-align: center;
}

.area-link-grid a:hover {
  border-color: var(--navy);
  background: #fff;
}

.area-detail-layout {
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: 30px;
  align-items: start;
}

.area-detail-layout figure {
  margin: 0;
}

.area-detail-layout img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.area-detail-text p,
.info-panel p {
  margin: 0;
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 2;
}

.area-price-image {
  display: block;
  width: min(760px, 100%);
  margin: 24px auto 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.access-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 45, 114, 0.06);
}

.map-panel {
  min-height: 260px;
  display: grid;
  place-items: center;
  gap: 12px;
  background:
    linear-gradient(45deg, rgba(0, 45, 114, 0.08) 25%, transparent 25% 50%, rgba(0, 45, 114, 0.08) 50% 75%, transparent 75%),
    #f1f6fb;
  background-size: 42px 42px;
  color: var(--navy);
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 800;
  text-align: center;
}

.map-panel img {
  width: 64px;
  height: 64px;
}

.access-map-card .map-panel {
  text-decoration: none;
}

.map-embed {
  width: 100%;
  height: 320px;
  background: #f1f6fb;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.access-route {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.access-route li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 45, 114, 0.05);
}

.access-route span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 800;
}

.access-route p {
  margin: 0;
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.85;
}

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

.column-page-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 45, 114, 0.06);
}

.column-page-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.columns-index {
  margin-bottom: 88px;
}

@media (max-width: 720px) {
  .columns-index {
    margin-bottom: 56px;
  }
}

.column-article {
  padding-block: 64px 88px;
}

.column-article > header {
  max-width: 820px;
  margin: 0 auto 34px;
}

.column-article > header time {
  margin-left: 12px;
  color: var(--muted);
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
}

.column-article h1 {
  margin: 18px 0 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.45;
}

.column-article-hero {
  width: min(900px, 100%);
  max-height: 540px;
  margin: 0 auto 42px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.column-article-lead,
.column-article > section,
.article-note,
.article-cta {
  max-width: 820px;
  margin-inline: auto;
}

.column-article-lead {
  margin-bottom: 42px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 700;
  line-height: 2;
}

.column-article > section {
  margin-bottom: 38px;
}

.column-article > section h2 {
  margin: 0 0 14px;
  padding-bottom: 10px;
  color: var(--navy);
  border-bottom: 2px solid var(--line);
  font-size: 27px;
}

.column-article > section p,
.article-note p,
.article-cta p {
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  line-height: 2;
}

.article-note {
  margin-top: 44px;
  padding: 24px;
  border-left: 5px solid var(--gold);
  background: var(--warm);
}

.article-note p {
  margin: 8px 0 0;
}

.article-cta {
  margin-top: 48px;
  padding: 32px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  text-align: center;
}

.article-cta h2 {
  margin-top: 0;
}

.article-cta a {
  display: inline-block;
  margin-top: 12px;
  padding: 13px 28px;
  border-radius: 6px;
  background: #fff;
  color: var(--navy);
  font-weight: 800;
}

.column-page-card div {
  padding: 22px 20px;
}

.column-page-card span {
  display: inline-block;
  margin-right: 10px;
  padding: 4px 10px;
  border-radius: 5px;
  background: #edf2f8;
  color: var(--navy);
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.column-page-card time {
  color: var(--muted);
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.column-page-card h2 {
  margin: 14px 0 10px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.55;
}

.column-page-card p {
  margin: 0;
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
}

.price-comparison-section {
  padding-top: 42px;
}

.price-comparison-section img {
  width: min(720px, 100%);
  margin-inline: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.checklist-grid label {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: start;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 800;
  line-height: 1.75;
  box-shadow: 0 8px 24px rgba(0, 45, 114, 0.05);
}

.checklist-grid input {
  width: 20px;
  height: 20px;
  margin-top: 4px;
  accent-color: var(--navy);
}

.check-result-box,
.info-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 45, 114, 0.06);
}

.check-result-box {
  margin-top: 24px;
  padding: 26px 30px;
}

.check-result-box h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 22px;
}

.check-result-box p,
.info-panel p {
  margin: 0;
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 2;
}

.info-panel {
  margin-top: 30px;
  padding: 34px;
}

.info-panel p + p {
  margin-top: 16px;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 32px;
  align-items: center;
}

.service-detail-layout img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-detail-lead {
  margin: 0;
  color: var(--ink);
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
}

.service-point-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-point {
  min-height: 190px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 45, 114, 0.06);
}

.service-point h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 22px;
}

.service-point p,
.service-flow-list li {
  margin: 0;
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.9;
}

.service-flow-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-flow-list li {
  position: relative;
  padding: 18px 20px 18px 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.service-flow-list li::before {
  content: counter(service-step);
  counter-increment: service-step;
  position: absolute;
  top: 20px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.service-flow-list {
  counter-reset: service-step;
}

.related-service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.related-service-links a {
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--navy);
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 800;
}

.consultation-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 28px;
  align-items: stretch;
}

.consultation-info,
.contact-form-placeholder {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 45, 114, 0.06);
}

.contact-form-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-form-panel > h2 {
  margin-top: 0;
  color: var(--navy);
}

.contact-form-panel > p {
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
}

.form-field {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.form-field label,
.form-consent {
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #aebbd0;
  border-radius: 6px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--navy);
  outline: 3px solid rgba(0, 45, 114, 0.12);
}

.form-field small {
  color: var(--muted);
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  line-height: 1.7;
}

.required-mark {
  display: inline-block;
  padding: 1px 7px;
  border-radius: 4px;
  background: #a61b32;
  color: #fff;
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 24px;
  line-height: 1.7;
}

.form-consent input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
}

.form-submit {
  width: 100%;
  margin-top: 24px;
  padding: 15px 20px;
  border: 0;
  border-radius: 6px;
  background: var(--navy);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-status {
  min-height: 1.7em;
  margin: 16px 0 0;
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 700;
}

.form-status.success {
  color: #146c43;
}

.form-status.error {
  color: #a61b32;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consultation-info h2,
.contact-form-placeholder h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 28px;
}

.consultation-info p,
.contact-form-placeholder p {
  margin: 0;
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 2;
}

.consultation-info ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.consultation-info li {
  padding: 14px 16px;
  border-radius: 6px;
  background: var(--soft);
  color: var(--ink);
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 800;
}

.contact-form-placeholder {
  display: grid;
  align-content: center;
  min-height: 360px;
  background:
    linear-gradient(180deg, rgba(246, 249, 253, 0.9), rgba(255, 255, 255, 0.98)),
    #fff;
}

.contact-form-placeholder code {
  display: block;
  margin-top: 18px;
  padding: 16px;
  border: 1px dashed var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--navy);
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 800;
  white-space: normal;
}

.interview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: min(760px, 100%);
  margin-inline: auto;
}

.interview-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(0, 45, 114, 0.06);
}

.interview-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: var(--soft);
}

.interview-card div {
  padding: 24px;
}

.interview-card span {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--navy);
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.interview-card h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.55;
}

.interview-card p,
.interview-quote li {
  margin: 0;
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.9;
}

.interview-quote {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.interview-quote li {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.interview-quote b {
  color: var(--navy);
}

.interview-detail {
  text-align: center;
}

.companytank-link {
  display: inline-flex;
  margin: 4px 0 24px;
}

.companytank-link img {
  width: 195px;
  height: auto;
}

.legacy-interview-frame {
  display: grid;
  gap: 18px;
  width: min(760px, 100%);
  margin-inline: auto;
}

.legacy-interview-frame img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 45, 114, 0.07);
}

.interview-source-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.back-actions {
  margin-top: 28px;
}

.legacy-interview-index {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.legacy-interview-index h2 {
  margin: 10px 0 0;
}

.legacy-interview-index img {
  max-width: 100%;
  height: auto;
}

.legacy-index-main {
  width: min(698px, 100%);
  margin-bottom: 10px;
}

.legacy-interview-index a {
  display: block;
  width: min(696px, 100%);
}

.legacy-interview-index a img {
  display: block;
  width: 100%;
}

.legacy-series {
  display: grid;
  gap: 18px;
  color: #333;
}

.legacy-series-image {
  display: block;
  width: min(698px, 100%);
  height: auto;
  margin-inline: auto;
}

.legacy-series-lead {
  width: min(698px, 100%);
  margin: 0 auto;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.8;
}

.legacy-series-lead img {
  margin-top: 10px;
}

.legacy-series-list {
  width: min(698px, 100%);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.85;
}

.legacy-series-list li {
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid rgba(188, 204, 225, 0.65);
}

.legacy-series-list .lastline {
  border-bottom: 0;
  color: var(--muted);
  text-align: right;
  font-size: 0.9rem;
}

.legacy-series-list .owner {
  color: #d00000;
}

.legacy-series-list .guest {
  color: #008000;
}

.legacy-after {
  display: grid;
  gap: 16px;
  width: min(698px, 100%);
  margin-inline: auto;
}

.legacy-after > img {
  width: min(370px, 100%);
  height: auto;
}

.legacy-after li img {
  width: 174px;
  height: auto;
}

.legacy-return {
  display: block;
  width: 165px;
  margin: 12px auto 0;
}

.legacy-return img {
  width: 100%;
  height: auto;
}

.interview-dialogue {
  display: grid;
  gap: 14px;
  width: min(760px, 100%);
  margin: 26px auto 0;
  text-align: left;
}

.dialogue-row {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 45, 114, 0.05);
}

.dialogue-row b {
  color: var(--navy);
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 900;
}

.dialogue-row p {
  margin: 0;
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.9;
}

.dialogue-note {
  width: min(760px, 100%);
  margin: 18px auto 0;
  color: var(--muted);
  text-align: right;
  font-size: 0.9rem;
}

.after-note {
  width: min(760px, 100%);
  margin: 28px auto 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  text-align: left;
}

.after-note img {
  display: block;
  width: min(174px, 100%);
  height: auto;
  margin: 14px 0;
}

.access-card img.photo {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.access-card div {
  padding: 24px;
}

.access-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
}

.mini-cta {
  margin-top: 72px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.mini-cta h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 30px;
}

.footer-inner {
  width: min(1100px, calc(100% - 48px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.1fr;
  gap: 56px;
  padding: 56px 0 42px;
}

.footer-brand img {
  width: 178px;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.2));
}

.footer-brand p {
  margin: 18px 0 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}

.site-footer nav {
  display: grid;
  gap: 12px;
  align-content: start;
  font-size: 14px;
  font-weight: 700;
}

.footer-contact {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  text-align: center;
}

.footer-contact a:first-child {
  font-size: 24px;
  font-weight: 800;
}

.footer-mail {
  margin-top: 14px;
  padding: 14px;
  border-radius: 6px;
  background: #fff;
  color: var(--navy);
  font-weight: 800;
}

.payment-badge {
  width: min(180px, 100%);
  margin: 14px auto 0;
  border-radius: 4px;
  background: #fff;
}

.copyright {
  margin: 0;
  padding: 0 24px 34px;
  text-align: center;
  font-size: 13px;
}

@media (max-width: 900px) {
  body {
    background: #fff;
  }

  .section-narrow,
  .header-inner,
  .hero-inner,
  .footer-inner {
    width: min(100% - 32px, 560px);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand {
    gap: 10px;
    font-size: 12px;
  }

  .brand img {
    width: min(300px, calc(100vw - 112px));
  }

  .menu-button {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .nav-links {
    position: fixed;
    inset: 72px 0 auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 14px 24px 22px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .menu-open .nav-links {
    display: grid;
  }

  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    background: #fff;
  }

  .hero-inner {
    min-height: 0;
    display: block;
    padding-top: 24px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero h1 {
    margin-bottom: 18px;
    font-size: 30px;
    line-height: 1.58;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-image {
    min-height: 0;
    margin: 12px -16px 0 26%;
  }

  .hero-image img {
    height: 270px;
    object-position: center;
    border-radius: 0;
  }

  .trust-panel {
    grid-template-columns: repeat(3, 1fr);
    margin-top: -8px;
  }

  .trust-panel article {
    min-height: 148px;
    padding: 22px 12px;
  }

  .trust-panel article:nth-child(3) {
    border-right: 0;
  }

  .trust-panel article:nth-child(4) {
    grid-column: 1 / -1;
    min-height: 118px;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .trust-panel h2 {
    font-size: 14px;
  }

  .trust-panel p {
    font-size: 11px;
  }

  .contact-strip,
  .final-cta-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-card {
    min-height: 88px;
  }

  .section {
    padding-top: 56px;
  }

  .section-title,
  .section-row h2,
  .final-cta h2 {
    font-size: 23px;
  }

  .worry-grid {
    grid-template-columns: 1fr 1fr;
  }

  .worry-grid article {
    min-height: 96px;
    padding: 14px;
  }

  .worry-grid img {
    width: 42px;
    height: 42px;
  }

  .compare-carousel {
    grid-template-columns: 24px 1fr 24px;
    gap: 0;
  }

  .arrow {
    width: 24px;
  }

  .compare-track {
    display: flex;
  }

  .compare-track article {
    flex-basis: 150px;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .compare-track img {
    grid-row: auto;
  }

  .reason-grid {
    grid-template-columns: repeat(4, minmax(126px, 1fr));
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .legacy-copy {
    padding: 22px 18px;
  }

  .legacy-copy p {
    font-size: 14px;
    line-height: 1.9;
  }

  .service-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(78%, 1fr);
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    margin-inline: -16px;
    padding: 0 16px 14px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }

  .service-grid::-webkit-scrollbar {
    display: none;
  }

  .service-grid article {
    min-width: 0;
    scroll-snap-align: center;
  }

  .service-grid h3 {
    font-size: 16px;
  }

  .section-row {
    align-items: baseline;
  }

  .section-row a {
    font-size: 13px;
    white-space: nowrap;
  }

  .column-grid {
    grid-template-columns: 1fr;
  }

  .column-grid article {
    grid-template-columns: 104px 1fr;
    padding: 12px;
  }

  .column-grid img {
    width: 104px;
    height: 98px;
  }

  .flow-list {
    grid-template-columns: repeat(5, 1fr);
    padding: 16px 4px;
  }

  .flow-list li {
    font-size: 10px;
  }

  .flow-list img {
    width: 30px;
    height: 30px;
  }

  .flow-list li:not(:last-child)::after {
    right: -3px;
    border-top-width: 6px;
    border-bottom-width: 6px;
    border-left-width: 7px;
  }

  .faq-list summary {
    padding-inline: 16px;
    font-size: 14px;
  }

  .final-cta {
    margin-top: 56px;
    padding: 26px 16px;
  }

  .sub-hero {
    min-height: 280px;
  }

  .sub-hero::before,
  .sub-hero.center::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.8) 55%, rgba(255, 255, 255, 0.55) 100%),
      var(--hero-image) center / cover no-repeat;
  }

  .sub-hero.services-hero::before {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.84) 54%, rgba(255, 255, 255, 0.46) 100%),
      var(--hero-image) center right / cover no-repeat;
  }

  .sub-hero-inner,
  .breadcrumb {
    width: calc(100% - 32px);
  }

  .sub-hero h1 {
    font-size: 38px;
  }

  .sub-hero p {
    max-width: 100%;
    font-size: 16px;
  }

  .page-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .page-card-body {
    padding: 18px 14px;
  }

  .page-card h2,
  .page-card h3 {
    font-size: 18px;
  }

  .split-note,
  .soft-panel,
  .faq-layout,
  .access-grid,
  .consultation-panel,
  .area-detail-layout,
  .service-detail-layout {
    grid-template-columns: 1fr;
  }

  .area-link-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .promise-grid,
  .feature-grid,
  .service-point-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .service-detail-layout img {
    height: 280px;
  }

  .promise-card {
    grid-template-columns: 46px 1fr;
    padding: 20px;
  }

  .feature-card {
    min-height: 160px;
    padding: 22px 14px;
  }

  .faq-page-list {
    padding: 14px;
  }

  .flow-steps {
    grid-template-columns: 1fr 1fr;
    gap: 28px 14px;
  }

  .flow-step {
    min-height: 240px;
  }

  .company-table {
    font-size: 13px;
  }

  .representative-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 22px 18px;
  }

  .representative-card img {
    width: min(280px, 100%);
    margin: 0 auto;
  }

  .representative-card h3 {
    font-size: 26px;
    text-align: center;
  }

  .representative-role {
    text-align: center;
  }

  .area-group {
    padding: 20px 14px;
  }

  .area-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
    padding: 13px 16px;
  }

  .company-table th {
    border-bottom: 0;
  }

  .company-table td {
    border-bottom: 1px solid var(--line);
  }

  .column-page-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .column-page-card div {
    padding: 18px 14px;
  }

  .column-page-card h2 {
    font-size: 17px;
  }

  .checklist-grid {
    grid-template-columns: 1fr;
  }

  .check-result-box,
  .info-panel {
    padding: 22px 18px;
  }

  .mini-cta {
    margin-top: 56px;
    padding: 24px 14px;
  }

  .mini-cta h2 {
    font-size: 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px 32px;
    padding-top: 42px;
  }

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .footer-contact a:first-child,
  .footer-contact small {
    grid-column: 1;
  }

  .footer-mail {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin-top: 0;
  }
}

@media (max-width: 460px) {
  .section-narrow,
  .header-inner,
  .hero-inner,
  .footer-inner {
    width: calc(100% - 24px);
  }

  .brand img {
    width: min(240px, calc(100vw - 118px));
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero-image {
    margin-left: 22%;
  }

  .hero-image img {
    height: 250px;
  }

  .trust-panel img {
    width: 36px;
    height: 36px;
  }

  .contact-card {
    gap: 16px;
  }

  .contact-card strong {
    font-size: 25px;
  }

  .contact-card.filled strong {
    font-size: 19px;
  }

  .worry-grid p,
  .service-grid p,
  .reason-grid p {
    font-size: 12px;
  }

  .reason-grid {
    grid-template-columns: repeat(4, 132px);
  }

  .column-grid h3 {
    font-size: 14px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .page-grid,
  .promise-grid,
  .feature-grid,
  .column-page-grid,
  .interview-grid,
  .service-point-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-layout img {
    height: 230px;
  }

  .service-point {
    min-height: auto;
    padding: 22px 18px;
  }

  .consultation-info,
  .contact-form-placeholder {
    padding: 24px 18px;
  }

  .flow-steps {
    grid-template-columns: 1fr;
  }

  .title-rule {
    gap: 12px;
  }

  .faq-page-list summary {
    grid-template-columns: 34px 1fr 20px;
    padding-inline: 12px;
  }

  .faq-answer {
    grid-template-columns: 34px 1fr;
    padding-inline: 12px;
  }

  .dialogue-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
