@charset "UTF-8";

:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-soft: #f3f6fb;
  --surface-soft-2: #edf3f8;
  --ink: #152235;
  --muted: #516179;
  --line: rgba(21, 34, 53, 0.12);
  --line-strong: rgba(21, 34, 53, 0.18);
  --primary: #0a4f87;
  --primary-dark: #08385f;
  --primary-soft: rgba(10, 79, 135, 0.1);
  --accent: #f0c43d;
  --accent-soft: rgba(240, 196, 61, 0.18);
  --cta: #d92f23;
  --cta-deep: #bf241a;
  --line-green: #16c552;
  --line-green-deep: #0ea942;
  --shadow-sm: 0 12px 30px rgba(21, 34, 53, 0.08);
  --shadow-md: 0 24px 64px rgba(21, 34, 53, 0.14);
  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --container: 1120px;
  --gutter: 20px;
}

#main * {
  box-sizing: border-box;
}
html #main {
  scroll-behavior: smooth;
}
body #main {
  margin: 0;
  font-family:
    -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP",
    sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  line-height: 1.8;
  letter-spacing: 0.02em;
}
#main img {
  display: block;
  max-width: 100%;
  height: auto;
}
#main h2,
#main h3 {
  font-weight: bold;
}
#main ul {
  list-style: disc;
}
a {
  color: inherit;
}
button {
  font: inherit;
}
:focus-visible {
  outline: 3px solid rgba(10, 79, 135, 0.28);
  outline-offset: 3px;
}

.container {
  width: min(var(--container), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}

.section {
  padding: 72px 0;
}
.section--soft {
  border-top: 1px solid rgba(21, 34, 53, 0.05);
  border-bottom: 1px solid rgba(21, 34, 53, 0.05);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 28px;
}
.section-head--center {
  text-align: center;
  margin-inline: auto;
}
.section-kicker {
  display: none !important;
}

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

.card,
.guide-panel,
.cta-band,
.map-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.card {
  padding: 24px;
}
.card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.4;
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.card-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0 0 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.icon-badge {
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(10, 79, 135, 0.12), rgba(10, 79, 135, 0.06));
  color: var(--primary);
  font-weight: 900;
  font-size: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 14px 22px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    filter 0.15s ease;
}
.btn:hover {
  transform: translateY(-1px);
  filter: brightness(0.99);
}
.btn--primary {
  background: linear-gradient(180deg, var(--cta) 0%, var(--cta-deep) 100%);
  color: #fff;
  box-shadow: 0 16px 32px rgba(217, 47, 35, 0.25);
}
.btn--line {
  background: linear-gradient(180deg, var(--line-green) 0%, var(--line-green-deep) 100%);
  color: #fff;
  box-shadow: 0 16px 32px rgba(22, 197, 82, 0.22);
}
.cta-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.guide-panel {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(10, 79, 135, 0.08), rgba(255, 255, 255, 0.98) 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.98));
}
.guide-panel__media img {
  width: 100%;
  aspect-ratio: 16 / 7.2;
  object-fit: cover;
}
.guide-panel__body {
  padding: 28px;
}
.guide-panel__eyebrow {
  margin: 0 0 8px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
}
.guide-panel h3 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.35;
}
.guide-panel ul {
  margin: 0;
  padding-left: 1.25em;
  color: #2f3b4c;
}
.guide-panel li + li {
  margin-top: 8px;
}

.map-card {
  overflow: hidden;
  padding: 0;
}
.map-card iframe {
  display: block;
  width: 100%;
  border: 0;
}

/* =========================================
   Hero
========================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #d6dee8;
}
.hero__media,
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__media img {
  object-fit: cover;
  object-position: center center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 18, 31, 0.14) 0%, rgba(8, 18, 31, 0.04) 34%, rgba(8, 18, 31, 0.18) 100%),
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 42%);
}
.hero__inner,
.hero__foot {
  position: relative;
  z-index: 1;
}
.hero__inner {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 92px;
  padding-bottom: 170px;
}
.hero__copy {
  width: 100%;
  max-width: 920px;
  margin-inline: auto;
  color: #fff;
  text-align: center;
}

#top.hero .hero__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 34px;
  margin: 0 auto 12px;
  border-radius: 0;
  background: linear-gradient(
    90deg,
    rgba(23, 139, 178, 0) 0%,
    rgba(23, 139, 178, 0.88) 16%,
    rgba(23, 139, 178, 0.96) 50%,
    rgba(23, 139, 178, 0.88) 84%,
    rgba(23, 139, 178, 0) 100%
  );
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

#top.hero .hero__brand {
  margin: 0 0 12px;
  color: #f6fbff;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

#top.hero .hero__title {
  width: min(100%, 950px);
  max-width: 950px;
  margin: 18px auto 0;
  color: #fff;
  font-size: clamp(50px, 4.6vw, 65px);
  font-weight: 750;
  line-height: 1.3;
  letter-spacing: 0.01em;
  text-align: center;
  text-shadow:
    0 4px 16px rgba(0, 0, 0, 0.34),
    0 1px 2px rgba(0, 0, 0, 0.34);
}
#top.hero .hero__title-line {
  display: block;
  white-space: nowrap;
}

#top.hero .hero__lead {
  display: inline-block;
  max-width: 65ch;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(0.8rem, 1.28vw, 1rem);
  font-weight: 500;
  line-height: 1.9;
  text-align: left;
  text-shadow:
    0 3px 10px rgba(0, 0, 0, 0.48),
    0 1px 2px rgba(0, 0, 0, 0.7);
  text-wrap: normal;
}

#top.hero .hero__actions {
  margin: 44px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 760px;
}
#top.hero .hero__actions .btn {
  min-height: 78px;
  padding-inline: 24px;
  font-size: 18px;
  font-weight: 600;
}

#top.hero .hero__note {
  margin: 18px auto 36px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  text-shadow:
    0 3px 10px rgba(0, 0, 0, 0.48),
    0 1px 2px rgba(0, 0, 0, 0.4);
}

.hero__foot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  padding-top: 0;
}

#top.hero .promise-list {
  list-style: none;
  margin: 0 auto;
  padding: 16px 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(100%, 760px);
  max-width: 760px;
  border-radius: 18px;
  background: rgba(46, 53, 64, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
#top.hero .promise-list li {
  position: relative;
  padding: 18px 8px;
  text-align: center;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
}
#top.hero .promise-list li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 1.5em;
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-50%);
}

/* =========================================
   Shared section head style
========================================= */
#worries .section-head,
#support .section-head,
#local-proof .section-head,
#closing-guide .section-head,
#store-access .section-head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

#worries .section-head h2,
#support .section-head h2,
#local-proof .section-head h2,
#closing-guide .section-head h2,
#store-access .section-head h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 3.4vw, 52px);
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: #0f1c2e;
}

#worries .section-head p,
#support .section-head p,
#local-proof .section-head p,
#closing-guide .section-head p,
#store-access .section-head p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.8;
  color: #2f3b4c;
}

/* =========================================
   01 不安3つ
========================================= */
#worries {
  background: #fff;
}

#worries .worry-card {
  min-height: 290px;
  padding: 28px 22px 24px;
  border-radius: 12px;
  border: 1px solid rgba(21, 34, 53, 0.14);
  box-shadow:
    0 2px 10px rgba(21, 34, 53, 0.05),
    0 10px 24px rgba(21, 34, 53, 0.04);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

#worries .worry-card .icon-badge {
  width: 84px;
  height: 84px;
  margin: 0 auto 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(21, 34, 53, 0.045), rgba(21, 34, 53, 0.02));
  color: var(--primary);
  font-size: 26px;
  font-weight: 800;
  box-shadow: none;
}

#worries .icon-badge img {
  width: 84px;
  height: 84px;
  object-fit: contain;
}

#worries .worry-card h3 {
  max-width: 13.5em;
  margin: 0 auto 12px;
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: #111a29;
  text-align: center;
}
#worries .worry-card:nth-child(1) h3::before {
  content: "1. ";
}
#worries .worry-card:nth-child(2) h3::before {
  content: "2. ";
}
#worries .worry-card:nth-child(3) h3::before {
  content: "3. ";
}

#worries .worry-card p {
  max-width: 18em;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.8;
  color: #263447;
  text-align: left;
  text-wrap: normal;
}

/* =========================================
   01.5 放置リスク
========================================= */
#risk-note {
  padding-top: 16px;
  padding-bottom: 40px;
}

#risk-note .risk-note__panel {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 30px 26px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 254, 0.98) 100%);
  border: 1px solid rgba(21, 34, 53, 0.1);
  box-shadow:
    0 2px 10px rgba(21, 34, 53, 0.04),
    0 10px 24px rgba(21, 34, 53, 0.03);
}

#risk-note .risk-note__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin: 0 0 12px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(10, 79, 135, 0.08);
  border: 1px solid rgba(10, 79, 135, 0.1);
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

#risk-note .risk-note__panel h2 {
  max-width: none;
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #111a29;
}

#risk-note .risk-note__lead {
  max-width: none;
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #425267;
  text-wrap: pretty;
}

#risk-note .risk-note__list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

#risk-note .risk-note__list li {
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 14px 16px 14px 42px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(21, 34, 53, 0.08);
  color: #1f2c3d;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
}

#risk-note .risk-note__list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(240, 196, 61, 0.95), rgba(224, 177, 34, 0.95));
  transform: translateY(-50%);
  box-shadow: 0 0 0 4px rgba(240, 196, 61, 0.16);
}

/* =========================================
   02 初めての方へ、最初にお伝えする3つのこと
========================================= */
#support {
  background: linear-gradient(180deg, #eef4fa 0%, #f5f8fc 100%);
  padding-top: 56px;
  padding-bottom: 92px;
}

#support .container {
  max-width: 1200px;
}

#support .support-grid {
  gap: 18px;
  align-items: stretch;
}

#support .support-card {
  min-height: 290px;
  padding: 28px 22px 24px;
  border-radius: 12px;
  border: 1px solid rgba(10, 62, 112, 0.3);
  background: linear-gradient(180deg, #2b73b8 0%, #1f66ab 100%);
  box-shadow:
    0 2px 10px rgba(11, 42, 73, 0.12),
    0 10px 24px rgba(11, 42, 73, 0.12);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

#support .support-card .card-label {
  display: none;
}

#support .support-card .icon-badge {
  width: 92px;
  height: 92px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 4px 12px rgba(8, 34, 64, 0.1);
}
#support .support-card .icon-badge img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

#support .support-card h3 {
  max-width: 13.5em;
  margin: 0 auto 12px;
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: #fff;
  text-align: center;
}

#support .support-card p {
  max-width: 16em;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
  text-align: left;
  text-wrap: pretty;
}

#support .guide-panel {
  margin-top: 18px;
}

/* =========================================
   03 相談の流れ
========================================= */
#flow {
  background: #fff;
  padding-bottom: 40px;
}

#flow .flow-head {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

#flow .flow-head h2 {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  margin: 0 0 14px;
  color: #0f1c2e;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
#flow .flow-head__main {
  font-size: clamp(34px, 3.3vw, 48px);
  font-weight: 800;
}
#flow .flow-head__slash {
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 700;
  color: #7c8796;
  transform: translateY(-2px);
}
#flow .flow-head__sub {
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 800;
}
#flow .flow-head p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.85;
  color: #435267;
}

#flow .flow-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
  align-items: stretch;
}

#flow .flow-step {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 24px 22px 22px;
  border: 1px solid rgba(21, 34, 53, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfe 100%);
  box-shadow:
    0 10px 24px rgba(21, 34, 53, 0.05),
    0 2px 8px rgba(21, 34, 53, 0.03);
}

#flow .flow-step__chip {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin: 0 0 14px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(10, 79, 135, 0.08);
  border: 1px solid rgba(10, 79, 135, 0.1);
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

#flow .flow-step__num {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

#flow .flow-step h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.42;
  letter-spacing: -0.02em;
  color: #111a29;
}

#flow .flow-step__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #2f3b4c;
  text-align: left;
  text-wrap: normal;
}

@media (min-width: 1025px) {
  #flow .flow-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -18px;
    width: 18px;
    height: 2px;
    background: linear-gradient(90deg, rgba(10, 79, 135, 0.26), rgba(10, 79, 135, 0.1));
    transform: translateY(-50%);
  }
}

/* =========================================
   中盤CTA（LP内2つ目）
========================================= */
#mid-cta {
  background: #fff;
  padding-top: 28px;
}

#mid-cta .cta-band {
  --mid-cta-inner: 780px;
  padding: 28px 40px 34px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 254, 0.98) 100%);
  border: 1px solid rgba(21, 34, 53, 0.1);
  box-shadow:
    0 2px 10px rgba(21, 34, 53, 0.04),
    0 10px 24px rgba(21, 34, 53, 0.03);
}

#mid-cta .cta-band__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(10, 79, 135, 0.08);
  border: 1px solid rgba(10, 79, 135, 0.1);
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 14px max(0px, calc((100% - var(--mid-cta-inner)) / 2));
}

#mid-cta .cta-band h3 {
  max-width: var(--mid-cta-inner);
  margin: 0 0 10px max(0px, calc((100% - var(--mid-cta-inner)) / 2));
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #111a29;
  text-align: left;
}

#mid-cta .cta-band__lead {
  max-width: var(--mid-cta-inner);
  margin: 0 0 0 max(0px, calc((100% - var(--mid-cta-inner)) / 2));
  font-size: 15px;
  line-height: 1.8;
  color: #425267;
  text-align: left;
}

#mid-cta .cta-band__visual {
  max-width: var(--mid-cta-inner);
  margin: 18px auto 0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(21, 34, 53, 0.08);
  box-shadow: 0 4px 14px rgba(21, 34, 53, 0.05);
}
#mid-cta .cta-band__visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

#mid-cta .cta-proof-inline {
  list-style: none;
  max-width: var(--mid-cta-inner);
  margin: 16px auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

#mid-cta .cta-proof-inline li {
  position: relative;
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 12px 14px 12px 38px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(21, 34, 53, 0.08);
  color: #1f2c3d;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

#mid-cta .cta-proof-inline li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(240, 196, 61, 0.95), rgba(224, 177, 34, 0.95));
  transform: translateY(-50%);
  box-shadow: 0 0 0 4px rgba(240, 196, 61, 0.16);
}

#mid-cta .cta-group {
  width: 100%;
  max-width: var(--mid-cta-inner);
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

#mid-cta .cta-group .btn {
  width: 100%;
  min-height: 76px;
  padding-inline: 28px;
  font-size: 18px;
}

/* =========================================
   04 ガイソー足立店で相談されやすい内容
========================================= */
#local-proof {
  background: linear-gradient(180deg, #eef4fa 0%, #f5f8fc 100%);
  padding-top: 86px;
  padding-bottom: 92px;
}

#local-proof .local-proof__cards {
  gap: 18px;
  align-items: stretch;
}

#local-proof .local-proof__cards > .case-card--topic {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 290px;
  padding: 28px 22px 24px;
  border-radius: 12px;
  text-align: center;
  background: linear-gradient(180deg, #2f80cb 0%, #1f6bb3 100%);
  border: 1px solid rgba(18, 84, 144, 0.28);
  box-shadow:
    0 2px 10px rgba(21, 34, 53, 0.05),
    0 10px 24px rgba(21, 34, 53, 0.06);
}

#local-proof .local-proof__cards > .case-card--topic .local-proof__icon {
  width: 92px;
  height: 92px;
  margin: 0 auto 18px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 4px 12px rgba(8, 34, 64, 0.1);
}
#local-proof .local-proof__cards > .case-card--topic .local-proof__icon img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

#local-proof .local-proof__cards > .case-card--topic .card-label {
  min-height: 0;
  margin: 0 0 10px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 800;
}

#local-proof .local-proof__cards > .case-card--topic h3 {
  max-width: 13.5em;
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: #fff;
  text-align: center;
}

#local-proof .local-proof__cards > .case-card--topic p:last-child {
  max-width: 16em;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.82;
  color: rgba(255, 255, 255, 0.92);
  text-align: left;
  text-wrap: normal;
}

#local-proof .local-proof__estimate {
  margin-top: 22px;
  padding: 24px 22px 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(21, 34, 53, 0.12);
  box-shadow:
    0 2px 10px rgba(21, 34, 53, 0.04),
    0 8px 20px rgba(21, 34, 53, 0.03);
}

#local-proof .local-proof__estimate .card-label,
#local-proof .local-proof__video-block .card-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(10, 79, 135, 0.08);
  border: 1px solid rgba(10, 79, 135, 0.1);
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  box-shadow: none;
  margin: 0 0 14px;
}

#local-proof .local-proof__estimate h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #111a29;
}

#local-proof .local-proof__estimate-head p:last-child {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #425267;
}

#local-proof .estimate-brief__list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

#local-proof .estimate-brief__list li {
  position: relative;
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 12px 14px 12px 40px;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border: 1px solid rgba(21, 34, 53, 0.08);
  color: #1f2c3d;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

#local-proof .estimate-brief__list li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(240, 196, 61, 0.95), rgba(224, 177, 34, 0.95));
  transform: translateY(-50%);
  box-shadow: 0 0 0 4px rgba(240, 196, 61, 0.16);
}

.video-launch {
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  text-align: left;
  cursor: pointer;
}
.video-launch__thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(21, 34, 53, 0.1);
  box-shadow: var(--shadow-sm);
  background: #fff;
}
.video-launch__thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.video-launch__play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  line-height: 1;
}

.video-embed iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

#local-proof .local-proof__video-block {
  margin-top: 22px;
  padding: 28px 26px 26px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(21, 34, 53, 0.12);
  box-shadow:
    0 2px 10px rgba(21, 34, 53, 0.04),
    0 8px 20px rgba(21, 34, 53, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
}

#local-proof .local-proof__video-block > .card-label,
#local-proof .local-proof__video-block > h3,
#local-proof .local-proof__video-block > p {
  width: 100%;
  max-width: 760px;
}

#local-proof .local-proof__video-block > .card-label {
  display: flex;
  align-self: center;
  width: 100%;
  max-width: 720px;
  justify-content: flex-start;
  text-align: left;
  padding: 8px 18px 8px 20px;
  box-sizing: border-box;
}

#local-proof .local-proof__video-block h3 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #111a29;
}

#local-proof .local-proof__video-lead {
  margin: 0;
  max-width: 720px;
  font-size: 15px;
  line-height: 1.8;
  color: #425267;
}

#local-proof .local-proof__video-launch {
  width: 100%;
  max-width: 760px;
  margin: 22px auto 0;
  text-align: center;
}

#local-proof .local-proof__video-launch .video-launch__play {
  width: 72px;
  height: 72px;
  font-size: 24px;
  background: rgba(10, 18, 32, 0.74);
}
#local-proof .local-proof__video-launch .video-launch__text {
  display: inline-flex;
  justify-content: center;
  margin-top: 12px;
  color: var(--primary);
  font-weight: 800;
}

#local-proof .local-proof__video-link {
  width: 100%;
  max-width: 760px;
  margin: 14px auto 0;
  text-align: center;
  font-size: 14px;
}
#local-proof .local-proof__video-link a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
#local-proof .local-proof__video-link a:hover {
  text-decoration: underline;
}

#local-proof .video-embed {
  width: 100%;
  max-width: 760px;
  margin: 22px auto 0;
}

/* =========================================
   05 FAQ
========================================= */
#faq {
  background: #fff;
}

#faq .section-head {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

#faq .section-head h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: #0f1c2e;
}

#faq .section-head p {
  color: #425267;
  font-size: 17px;
  line-height: 1.8;
  max-width: 760px;
  margin: 0 auto;
}

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

#faq .faq-item {
  border-radius: 14px;
  border: 1px solid rgba(21, 34, 53, 0.1);
  box-shadow:
    0 2px 10px rgba(21, 34, 53, 0.04),
    0 8px 20px rgba(21, 34, 53, 0.03);
  background: rgba(255, 255, 255, 0.98);
  overflow: hidden;
}

#faq .faq-item[open] {
  border-color: rgba(10, 79, 135, 0.16);
}

#faq .faq-item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 18px 58px 18px 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  color: #111a29;
}
#faq .faq-item summary::-webkit-details-marker {
  display: none;
}
#faq .faq-item summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 18px;
  font-weight: 800;
}
#faq .faq-item[open] summary::after {
  content: "－";
}
#faq .faq-item__body {
  padding: 0 20px 18px;
  color: #425267;
  font-size: 15px;
  line-height: 1.8;
}

/* =========================================
   06 クロージング
========================================= */
#closing-guide {
  background: linear-gradient(180deg, #eef4fa 0%, #f5f8fc 100%);
}

#closing-guide .closing-guide-panel {
  max-width: 980px;
  margin: 0 auto;
}

#closing-guide .guide-panel__media img {
  aspect-ratio: 16 / 8.2;
}

#closing-guide .guide-panel__body {
  padding: 28px 30px 30px;
}

#closing-guide .guide-panel h3 {
  margin: 0 0 14px;
  font-size: 30px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

#closing-guide .closing-guide-list {
  margin: 0;
  padding-left: 1.2em;
  color: #2f3b4c;
}
#closing-guide .closing-guide-list li {
  font-size: 16px;
  line-height: 1.9;
}
#closing-guide .closing-guide-list li + li {
  margin-top: 8px;
}

/* =========================================
   07 店舗情報・アクセス
========================================= */
#store-access {
  background: #fff;
}

#store-access .store-access-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 22px;
  align-items: stretch;
}

#store-access .store-access-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 28px;
}

#store-access .store-access-card__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
}

#store-access .store-access-card h3 {
  margin: 0 0 18px;
  font-size: 28px;
  line-height: 1.42;
  letter-spacing: -0.01em;
  color: var(--ink);
}

#store-access .store-access-data {
  margin: 0;
  display: grid;
  gap: 10px;
}

#store-access .store-access-data__row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px 16px;
  border: 1px solid rgba(21, 34, 53, 0.08);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
}

#store-access .store-access-data dt {
  color: #677588;
  font-size: 15px;
  font-weight: 700;
}

#store-access .store-access-data dd {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.6;
}

#store-access .store-access-data a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 800;
}
#store-access .store-access-data a:hover {
  text-decoration: underline;
}

#store-access .store-access-map {
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
#store-access .store-access-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
}

/* =========================================
   関連ページカード
========================================= */
#related-links {
  padding-top: 24px;
  padding-bottom: 56px;
  background: #fff;
}

#related-links .container {
  max-width: 1080px;
}

#related-links .related-links__head {
  margin: 0 0 16px;
  text-align: center;
}

#related-links .related-links__eyebrow {
  display: inline-block;
  margin: 0;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

#related-links .related-links__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

#related-links .related-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 206px;
  padding: 20px 20px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  box-shadow: 0 4px 14px rgba(21, 34, 53, 0.04);
  text-decoration: none;
  color: var(--ink);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

#related-links .related-card:hover {
  transform: translateY(-2px);
  border-color: rgba(10, 79, 135, 0.22);
  box-shadow: 0 10px 24px rgba(21, 34, 53, 0.08);
}

#related-links .related-card__tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 32px;
  margin: 0 0 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

#related-links .related-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--ink);
}

#related-links .related-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #4a596d;
}

#related-links .related-card__arrow {
  margin-top: auto;
  padding-top: 14px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: var(--primary);
}

/* =========================================
   Responsive
========================================= */
@media (max-width: 1140px) {
  .hero__inner {
    padding-top: 86px;
    padding-bottom: 160px;
  }
  #top.hero .hero__title {
    font-size: clamp(40px, 4.4vw, 54px);
  }
}

@media (max-width: 1024px) {
  .grid--3,
  #flow .flow-steps {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    max-width: 780px;
  }

  #risk-note .risk-note__list,
  #local-proof .estimate-brief__list,
  #related-links .related-links__grid,
  #store-access .store-access-layout {
    grid-template-columns: 1fr;
  }

  #flow .flow-step {
    min-height: auto;
  }
  #store-access .store-access-map iframe {
    min-height: 380px;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 56px 0;
  }

  .hero {
    min-height: 100svh;
  }
  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(8, 18, 31, 0.16) 0%, rgba(8, 18, 31, 0.04) 36%, rgba(8, 18, 31, 0.24) 100%),
      radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 44%);
  }
  .hero__inner {
    justify-content: center;
    padding-top: 28px;
    padding-bottom: 164px;
  }
  .hero__copy {
    max-width: none;
    text-align: center;
    margin-inline: auto;
    padding-inline: 10px;
  }

  #top.hero .hero__eyebrow {
    min-height: 42px;
    padding: 10px 20px;
    margin-inline: auto;
    font-size: 13px;
    max-width: min(100%, 22rem);
    background: linear-gradient(
      90deg,
      rgba(23, 139, 178, 0) 0%,
      rgba(23, 139, 178, 0.86) 14%,
      rgba(23, 139, 178, 0.95) 50%,
      rgba(23, 139, 178, 0.86) 86%,
      rgba(23, 139, 178, 0) 100%
    );
  }

  #top.hero .hero__brand {
    margin-bottom: 10px;
    font-size: 13px;
  }

  #top.hero .hero__title {
    width: fit-content;
    max-width: min(100%, 30rem);
    margin: 14px auto 0;
    font-size: clamp(29px, 7.4vw, 41px);
    line-height: 1.28;
    letter-spacing: -0.035em;
    text-align: center;
    text-shadow:
      0 4px 16px rgba(0, 0, 0, 0.48),
      0 1px 2px rgba(0, 0, 0, 0.36);
  }

  #top.hero .hero__title-line {
    display: block;
    white-space: nowrap;
  }

  #top.hero .hero__lead {
    display: inline-block;
    max-width: 45ch;
    margin: 12px auto 0;
    font-size: 0.9rem;
    line-height: 1.8;
    text-align: left;
    text-shadow:
      0 3px 10px rgba(0, 0, 0, 0.48),
      0 1px 2px rgba(0, 0, 0, 0.7);
    text-wrap: normal;
  }

  #top.hero .hero__actions {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: min(100%, 25rem);
    max-width: 25rem;
    margin-top: clamp(290px, 36vh, 390px);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  }

  #top.hero .hero__actions .btn {
    min-height: 64px;
    padding-inline: 12px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 0;
    box-shadow: none;
  }

  #top.hero .hero__note {
    margin-top: 14px;
    margin-bottom: 0;
    max-width: 24rem;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    text-shadow:
      0 3px 10px rgba(0, 0, 0, 0.48),
      0 1px 2px rgba(0, 0, 0, 0.4);
  }

  .hero__foot {
    bottom: 16px;
  }

  #top.hero .promise-list {
    width: min(100%, 400px);
    max-width: 400px;
    margin: 0 auto;
    padding: 14px;
    grid-template-columns: 1fr;
    gap: 8px;
    border-radius: 18px;
    background: rgba(46, 53, 64, 0.42);
  }

  #top.hero .promise-list li {
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.55;
    white-space: normal;
  }
  #top.hero .promise-list li + li::before {
    display: none;
  }

  .section-head {
    margin-bottom: 24px;
  }
  .section-head h2 {
    font-size: clamp(26px, 7vw, 34px);
  }
  .section-head p {
    font-size: 14px;
  }

  .cta-group {
    grid-template-columns: 1fr;
  }

  .card,
  .guide-panel__body,
  .cta-band {
    padding: 20px;
  }

  .guide-panel__media img {
    aspect-ratio: 16 / 10;
  }
  .guide-panel h3 {
    font-size: 24px;
  }

  #worries {
    padding-bottom: 20px;
  }
  #worries .worry-card {
    min-height: 0;
  }

  #risk-note {
    padding-top: 0;
    padding-bottom: 30px;
  }
  #risk-note .risk-note__panel {
    padding: 22px 18px 20px;
    border-radius: 14px;
  }
  #risk-note .risk-note__eyebrow {
    min-height: 36px;
    margin-bottom: 10px;
    padding: 7px 14px;
    font-size: 12px;
  }
  #risk-note .risk-note__panel h2 {
    font-size: 21px;
    line-height: 1.42;
  }
  #risk-note .risk-note__lead {
    font-size: 14px;
    line-height: 1.8;
  }
  #risk-note .risk-note__list {
    margin-top: 14px;
    gap: 10px;
  }
  #risk-note .risk-note__list li {
    min-height: 52px;
    padding: 12px 14px 12px 38px;
    border-radius: 12px;
    font-size: 14px;
  }
  #risk-note .risk-note__list li::before {
    left: 14px;
    width: 11px;
    height: 11px;
  }

  #support {
    padding-top: 44px;
    padding-bottom: 64px;
  }
  #support .section-head p,
  #local-proof .section-head p,
  #closing-guide .section-head p,
  #store-access .section-head p {
    max-width: 28em;
    text-align: left;
  }
  #support .support-grid {
    gap: 14px;
  }
  #support .support-card {
    min-height: 0;
    padding: 24px 14px 20px;
    border-radius: 12px;
  }
  #support .support-card .icon-badge {
    width: 84px;
    height: 84px;
    padding: 8px;
    border-radius: 14px;
    margin: 0 auto 16px;
  }
  #support .support-card .icon-badge img {
    width: 68px;
    height: 68px;
  }
  #support .support-card h3 {
    max-width: 12.8em;
    margin: 0 auto 10px;
  }
  #support .support-card p {
    max-width: 22em;
    margin: 0 auto;
    line-height: 1.85;
  }
  #support .guide-panel {
    margin-top: 14px;
  }

  #flow {
    padding-top: 52px;
    padding-bottom: 28px;
  }
  #flow .flow-head {
    margin-bottom: 24px;
  }
  #flow .flow-head h2 {
    gap: 8px;
  }
  #flow .flow-head__main {
    font-size: clamp(28px, 7vw, 34px);
  }
  #flow .flow-head__slash {
    font-size: 18px;
    transform: translateY(-1px);
  }
  #flow .flow-head__sub {
    font-size: clamp(21px, 5.4vw, 26px);
  }
  #flow .flow-head p {
    font-size: 14px;
    line-height: 1.8;
  }
  #flow .flow-steps {
    gap: 14px;
  }
  #flow .flow-step {
    padding: 20px 16px 18px;
    border-radius: 16px;
  }
  #flow .flow-step__chip {
    min-height: 36px;
    margin-bottom: 12px;
    padding: 7px 14px;
    font-size: 12px;
  }
  #flow .flow-step__num {
    margin-bottom: 8px;
    font-size: 12px;
  }
  #flow .flow-step h3 {
    font-size: 20px;
    line-height: 1.45;
  }
  #flow .flow-step__text {
    font-size: 14px;
    line-height: 1.8;
  }

  #mid-cta {
    padding-top: 20px;
  }
  #mid-cta .cta-band {
    --mid-cta-inner: 100%;
    padding: 22px 18px 20px;
    border-radius: 14px;
  }
  #mid-cta .cta-band__eyebrow {
    min-height: 36px;
    margin: 0 0 10px;
    padding: 7px 14px;
    font-size: 12px;
  }
  #mid-cta .cta-band h3 {
    max-width: none;
    margin: 0 0 10px;
    font-size: 21px;
    line-height: 1.42;
  }
  #mid-cta .cta-band__lead {
    max-width: none;
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
  }
  #mid-cta .cta-band__visual {
    max-width: none;
    margin-top: 16px;
    border-radius: 14px;
  }
  #mid-cta .cta-band__visual img {
    aspect-ratio: 16 / 10;
  }
  #mid-cta .cta-proof-inline {
    width: 100%;
    max-width: none;
    margin: 14px 0 0;
    gap: 10px;
    grid-template-columns: 1fr;
  }
  #mid-cta .cta-proof-inline li {
    min-height: 50px;
    padding: 12px 14px 12px 38px;
    font-size: 14px;
  }
  #mid-cta .cta-group {
    width: 100%;
    max-width: none;
    margin: 20px 0 0;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  #mid-cta .cta-group .btn {
    min-height: 68px;
    font-size: 16px;
    padding-inline: 20px;
  }

  #local-proof {
    padding-top: 60px;
    padding-bottom: 64px;
  }
  #local-proof .local-proof__cards {
    gap: 14px;
  }
  #local-proof .local-proof__cards > .case-card--topic {
    min-height: 0;
    padding: 24px 14px 20px;
    border-radius: 12px;
  }
  #local-proof .local-proof__cards > .case-card--topic .local-proof__icon {
    width: 84px;
    height: 84px;
    padding: 8px;
    border-radius: 14px;
    margin: 0 auto 16px;
  }
  #local-proof .local-proof__cards > .case-card--topic .local-proof__icon img {
    width: 68px;
    height: 68px;
  }
  #local-proof .local-proof__cards > .case-card--topic .card-label {
    margin-bottom: 8px;
    font-size: 13px;
  }
  #local-proof .local-proof__cards > .case-card--topic h3 {
    max-width: 12.8em;
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.4;
  }
  #local-proof .local-proof__cards > .case-card--topic p:last-child {
    max-width: 22em;
    font-size: 15px;
    line-height: 1.85;
  }
  #local-proof .local-proof__estimate,
  #local-proof .local-proof__video-block {
    padding: 22px 18px 20px;
    border-radius: 12px;
  }
  #local-proof .local-proof__estimate .card-label,
  #local-proof .local-proof__video-block .card-label {
    min-height: 36px;
    margin-bottom: 12px;
    padding: 7px 14px;
    font-size: 12px;
  }
  #local-proof .local-proof__estimate h3,
  #local-proof .local-proof__video-block h3 {
    font-size: 21px;
    line-height: 1.42;
  }
  #local-proof .local-proof__estimate-head p:last-child,
  #local-proof .local-proof__video-lead {
    font-size: 14px;
    line-height: 1.8;
  }
  #local-proof .estimate-brief__list {
    margin-top: 14px;
    gap: 10px;
    grid-template-columns: 1fr;
  }
  #local-proof .estimate-brief__list li {
    min-height: 50px;
    padding: 12px 14px 12px 38px;
    border-radius: 12px;
    font-size: 14px;
  }
  #local-proof .estimate-brief__list li::before {
    left: 14px;
    width: 12px;
    height: 12px;
  }
  #local-proof .local-proof__video-launch {
    margin-top: 16px;
  }
  #local-proof .local-proof__video-launch .video-launch__play {
    width: 58px;
    height: 58px;
    font-size: 20px;
  }
  #local-proof .local-proof__video-link,
  #local-proof .local-proof__video-launch .video-launch__text {
    font-size: 13px;
  }
  #local-proof .local-proof__video-link {
    margin-top: 12px;
  }
  #local-proof .video-embed {
    margin-top: 18px;
  }

  #faq .section-head {
    margin-bottom: 18px;
  }
  #faq .section-head h2 {
    font-size: clamp(28px, 7vw, 34px);
    line-height: 1.3;
  }
  #faq .section-head p {
    font-size: 14px;
  }
  #faq .faq-item {
    border-radius: 12px;
  }
  #faq .faq-item summary {
    padding: 16px 52px 16px 18px;
    font-size: 15px;
    line-height: 1.5;
  }
  #faq .faq-item__body {
    padding: 0 18px 16px;
    font-size: 14px;
  }

  #closing-guide {
    padding-top: 60px;
    padding-bottom: 64px;
  }
  #closing-guide .section-head {
    margin-bottom: 24px;
  }
  #closing-guide .closing-guide-panel {
    border-radius: 12px;
  }
  #closing-guide .guide-panel__media img {
    aspect-ratio: 16 / 10;
  }
  #closing-guide .guide-panel__body {
    padding: 22px 18px 20px;
  }
  #closing-guide .guide-panel h3 {
    font-size: 24px;
    line-height: 1.45;
  }
  #closing-guide .closing-guide-list li {
    font-size: 15px;
    line-height: 1.85;
  }

  #store-access .section-head {
    margin-bottom: 24px;
  }
  #store-access .store-access-layout {
    gap: 18px;
  }
  #store-access .store-access-card {
    padding: 20px;
  }
  #store-access .store-access-card h3 {
    font-size: 24px;
    line-height: 1.45;
    margin-bottom: 14px;
  }
  #store-access .store-access-data {
    gap: 10px;
  }
  #store-access .store-access-data__row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px;
  }
  #store-access .store-access-data dt {
    font-size: 14px;
  }
  #store-access .store-access-data dd {
    font-size: 15px;
    line-height: 1.7;
  }
  #store-access .store-access-map iframe {
    min-height: 320px;
  }

  #related-links {
    padding-top: 16px;
    padding-bottom: 40px;
  }
  #related-links .related-links__head {
    margin-bottom: 12px;
  }
  #related-links .related-links__eyebrow {
    font-size: 13px;
  }
  #related-links .related-links__grid {
    gap: 10px;
  }
  #related-links .related-card {
    padding: 16px 16px 14px;
    border-radius: 12px;
  }
  #related-links .related-card__tag {
    min-height: 30px;
    margin-bottom: 10px;
    padding: 6px 10px;
    font-size: 11px;
  }
  #related-links .related-card h3 {
    font-size: 18px;
    line-height: 1.45;
    margin-bottom: 8px;
  }
  #related-links .related-card p {
    font-size: 13px;
    line-height: 1.7;
  }
  #related-links .related-card__arrow {
    padding-top: 10px;
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

#main #commonForm30sec .secForm .secFormIn .secFormLeft .secFormLeftTitleArea .secFormLeftTitleIcon {
  width: 80px;
  height: 80px;
}

#main #commonForm30sec .secForm .secFormIn .secFormRight .secFormRightTitleArea .secFormRightTitleIcon {
  width: 76px;
  height: 76px;
}

#main #commonForm30sec {
  letter-spacing: 0;
}

/* =========================================
   Safari/Chromeの文字組み差を減らす調整
   追記用
========================================= */

html #main {
  -webkit-text-size-adjust: 100%;
}

#worries .worry-card h3,
#support .support-card h3,
#local-proof .local-proof__cards > .case-card--topic h3 {
  width: min(100%, 300px);
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

#worries .worry-card p,
#support .support-card p,
#local-proof .local-proof__cards > .case-card--topic p:last-child {
  width: min(100%, 270px);
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  text-wrap: normal;
}

@media (max-width: 767px) {
  #worries .worry-card h3,
  #support .support-card h3,
  #local-proof .local-proof__cards > .case-card--topic h3 {
    width: min(100%, 18em);
  }

  #worries .worry-card p,
  #support .support-card p,
  #local-proof .local-proof__cards > .case-card--topic p:last-child {
    width: min(100%, 22em);
  }
}

/* =========================================
   Safariの
   01 / 02 を 04 の安定したカード文法に寄せる
========================================= */

/* 共通：01と02のカード内レイアウトを固定 */
#worries .worry-card,
#support .support-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* 見出し幅を固定寄りにする */
#worries .worry-card h3,
#support .support-card h3 {
  width: 100%;
  max-width: 300px;
  margin: 0 0 12px;
}

/* 本文幅を固定してSafari差を減らす */
#worries .worry-card p,
#support .support-card p {
  width: 100%;
  max-width: 270px;
  margin: 0;
  text-wrap: normal;
}

/* 01は今の見た目を大きく壊したくないので左寄せ維持 */
#worries .worry-card p {
  text-align: left;
}

/* 02は04に寄せて中央寄せにした方が安定しやすい */
#support .support-card p {
  text-align: center;
}

@media (max-width: 767px) {
  #worries .worry-card h3,
  #support .support-card h3 {
    max-width: 18em;
  }

  #worries .worry-card p,
  #support .support-card p {
    max-width: 22em;
  }
}
