/* =========================================================
   E-CONEXION LANDING PAGE
   Premium Navy & Gold Design
========================================================= */

:root {
  --navy-950: #06111f;
  --navy-900: #091a2e;
  --navy-800: #0d2743;
  --navy-700: #143a5e;
  --navy-600: #1d4f7a;

  --gold-700: #9c742c;
  --gold-600: #b68a3b;
  --gold-500: #c99d51;
  --gold-400: #d9b46e;
  --gold-300: #ead3a2;
  --gold-100: #f8f0df;

  --white: #ffffff;
  --ivory: #fbfaf7;
  --surface: #f4f5f6;
  --surface-warm: #f8f5ef;

  --text: #172033;
  --text-sub: #536071;
  --text-muted: #758091;
  --line: #dfe3e8;

  --success: #245c4b;
  --caution: #925f23;
  --danger: #a84d4d;

  --shadow-xs: 0 4px 16px rgba(7, 23, 40, 0.06);
  --shadow-sm: 0 10px 32px rgba(7, 23, 40, 0.09);
  --shadow-md: 0 24px 60px rgba(7, 23, 40, 0.13);
  --shadow-lg: 0 35px 90px rgba(3, 15, 28, 0.2);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --container: 1180px;
  --container-narrow: 850px;
}

/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--ivory);
  font-family:
    "Noto Sans JP",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    sans-serif;
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0.025em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

figure,
h1,
h2,
h3,
p,
ul,
dl,
dd {
  margin-top: 0;
}

section {
  position: relative;
}

::selection {
  color: var(--white);
  background: var(--navy-700);
}

/* =========================================================
   COMMON
========================================================= */

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.container-narrow {
  width: min(calc(100% - 48px), var(--container-narrow));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.section-muted {
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(201, 157, 81, 0.08),
      transparent 28%
    ),
    var(--surface);
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(217, 180, 110, 0.13),
      transparent 30%
    ),
    linear-gradient(145deg, var(--navy-950), var(--navy-800));
}

.section-heading {
  margin-bottom: 54px;
}

.section-heading.center {
  max-width: 850px;
  margin-right: auto;
  margin-bottom: 58px;
  margin-left: auto;
  text-align: center;
}

.section-kicker {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
  color: var(--gold-600);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.22em;
}

.section-kicker::before {
  width: 28px;
  height: 1px;
  content: "";
  background: currentColor;
}

.section-heading.center .section-kicker {
  justify-content: center;
}

.section-heading h2,
.form-aside h2 {
  margin-bottom: 22px;
  color: var(--navy-900);
  font-size: clamp(30px, 4.2vw, 50px);
  font-weight: 900;
  line-height: 1.38;
  letter-spacing: -0.025em;
}

.section-dark .section-heading h2 {
  color: var(--white);
}

.section-heading > p:last-child {
  max-width: 760px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  color: var(--text-sub);
  font-size: 16px;
}

.section-dark .section-heading > p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.text-gold {
  color: var(--gold-500);
}

.small-note,
.hero-note,
.form-note {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.7;
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: 82px;
  border-bottom: 1px solid rgba(14, 35, 59, 0.08);
  background: rgba(255, 255, 255, 0.91);
  box-shadow: 0 5px 24px rgba(6, 17, 31, 0.04);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  height: 100%;
  gap: 34px;
  align-items: center;
}

.logo {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.logo-img {
  width: 180px;
  height: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-left: auto;
}

.nav a {
  position: relative;
  color: #344154;
  font-size: 13px;
  font-weight: 700;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  min-width: 130px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  box-shadow: 0 8px 22px rgba(9, 38, 67, 0.2);
  font-size: 14px;
  font-weight: 900;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.header-cta:hover {
  box-shadow: 0 12px 28px rgba(9, 38, 67, 0.27);
  transform: translateY(-2px);
}

/* =========================================================
   HERO
========================================================= */

.hero {
  min-height: 760px;
  padding: 92px 0 88px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(248, 247, 243, 0.92)),
    var(--ivory);
}

.hero::before {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(201, 157, 81, 0.17);
  border-radius: 50%;
  content: "";
}

.hero::after {
  position: absolute;
  bottom: -190px;
  left: -180px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  content: "";
  background: rgba(13, 39, 67, 0.035);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  gap: 68px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 22px;
  padding: 9px 16px;
  border: 1px solid rgba(182, 138, 59, 0.25);
  border-radius: 100px;
  color: var(--gold-700);
  background: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.eyebrow::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--gold-500);
  box-shadow: 0 0 0 5px rgba(201, 157, 81, 0.13);
}

.hero h1 {
  margin-bottom: 28px;
  color: var(--navy-900);
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: -0.045em;
}

.hero .lead {
  max-width: 690px;
  margin-bottom: 34px;
  color: var(--text-sub);
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 58px;
  padding: 15px 28px;
  gap: 12px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.4;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.btn::after {
  content: "→";
  font-size: 18px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:hover::after {
  transform: translateX(4px);
}

.btn-primary {
  color: var(--navy-950);
  background: linear-gradient(
    120deg,
    var(--gold-300),
    var(--gold-500) 55%,
    var(--gold-400)
  );
  box-shadow: 0 13px 30px rgba(182, 138, 59, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 18px 38px rgba(182, 138, 59, 0.36);
}

.btn-outline {
  border: 1px solid rgba(13, 39, 67, 0.18);
  color: var(--navy-800);
  background: rgba(255, 255, 255, 0.72);
}

.btn-outline:hover {
  border-color: var(--navy-700);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-block {
  width: 100%;
  border-radius: 14px;
  font-size: 16px;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 15px;
}

.trust-badge {
  padding: 13px 8px;
  border: 1px solid rgba(13, 39, 67, 0.09);
  border-radius: 10px;
  text-align: center;
  background: rgba(255, 255, 255, 0.76);
}

.trust-badge span,
.trust-badge small {
  display: block;
  color: var(--text-muted);
  font-size: 9px;
  line-height: 1.45;
}

.trust-badge strong {
  display: block;
  margin-top: 3px;
  color: var(--navy-800);
  font-size: 13px;
  line-height: 1.4;
}

.hero-note {
  margin-bottom: 2px;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  top: -28px;
  right: -32px;
  width: 84%;
  height: 82%;
  border-radius: 36px;
  content: "";
  background: var(--navy-900);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 8px 90px 8px 8px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.floating-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  min-width: 160px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.91);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(15px);
}

.floating-card span,
.floating-card small {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
}

.floating-card strong {
  color: var(--navy-900);
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.card-main {
  top: 55px;
  left: -45px;
}

.card-main strong {
  color: var(--gold-700);
  font-size: 42px;
}

.card-sub {
  right: -25px;
  bottom: 40px;
}

/* =========================================================
   STATS
========================================================= */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.stat-card {
  position: relative;
  min-height: 180px;
  padding: 31px;
  overflow: hidden;
  border: 1px solid rgba(9, 26, 46, 0.08);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-xs);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.stat-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  content: "";
  background: linear-gradient(var(--gold-300), var(--gold-600));
}

.stat-card::after {
  position: absolute;
  right: -45px;
  bottom: -60px;
  width: 135px;
  height: 135px;
  border: 1px solid rgba(201, 157, 81, 0.15);
  border-radius: 50%;
  content: "";
}

.stat-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.stat-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--text-sub);
  font-size: 13px;
  font-weight: 700;
}

.stat-card strong {
  color: var(--navy-800);
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
}

.stat-card strong em {
  margin-left: 5px;
  color: var(--gold-600);
  font-size: 19px;
  font-style: normal;
  letter-spacing: 0;
}

.stat-card .stat-text {
  display: block;
  margin-top: 28px;
  font-size: 31px;
  letter-spacing: -0.03em;
}

/* =========================================================
   WORRIES
========================================================= */

.split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.image-card {
  position: relative;
  margin-bottom: 0;
}

.image-card::before {
  position: absolute;
  z-index: -1;
  right: -22px;
  bottom: -22px;
  width: 88%;
  height: 88%;
  border-radius: var(--radius-lg);
  content: "";
  background: var(--gold-100);
}

.image-card img {
  width: 100%;
  min-height: 580px;
  border-radius: 80px 8px 8px 8px;
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.image-card figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 17px 20px;
  border-radius: 12px;
  color: var(--white);
  background: rgba(6, 17, 31, 0.82);
  font-size: 12px;
  backdrop-filter: blur(10px);
}

.check-panel .section-heading {
  margin-bottom: 32px;
}

.check-list {
  display: grid;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 13px 15px 13px 47px;
  border-bottom: 1px solid var(--line);
  color: #29384b;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 14px;
  left: 8px;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  content: "✓";
  color: var(--white);
  background: var(--navy-700);
  font-size: 12px;
}

.connect-copy {
  margin-top: 30px;
  padding: 22px 25px;
  border-left: 4px solid var(--gold-500);
  color: var(--navy-800);
  background: var(--gold-100);
}

.connect-copy strong {
  color: var(--gold-700);
}

/* =========================================================
   PHILOSOPHY / MESSAGE
========================================================= */

.philosophy {
  overflow: hidden;
}

.philosophy::before {
  position: absolute;
  top: 30px;
  left: 50%;
  color: rgba(255, 255, 255, 0.025);
  content: "E-CONEXION";
  font-size: clamp(80px, 16vw, 210px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.07em;
  transform: translateX(-50%);
  white-space: nowrap;
}

.philosophy-text {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 2.2;
}

.philosophy-text p {
  margin-bottom: 26px;
}

.brand-statement {
  position: relative;
  margin-top: 52px;
  padding-top: 35px;
  border-top: 1px solid rgba(217, 180, 110, 0.34);
  color: var(--gold-300);
  text-align: center;
  font-size: clamp(20px, 3vw, 29px);
  font-weight: 900;
  line-height: 1.7;
}

/* =========================================================
   REASONS
========================================================= */

.reasons-list {
  display: grid;
  gap: 82px;
}

.reason-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 68px;
  align-items: center;
}

.reason-card:nth-child(even) .reason-media {
  order: 2;
}

.reason-media {
  position: relative;
}

.reason-media::after {
  position: absolute;
  z-index: -1;
  top: 22px;
  left: 22px;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  content: "";
  background: var(--gold-100);
}

.reason-media img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  object-fit: cover;
}

.reason-label {
  margin-bottom: 10px;
  color: var(--gold-600);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.reason-content h3 {
  margin-bottom: 22px;
  color: var(--navy-800);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.55;
  letter-spacing: -0.025em;
}

.reason-content > p:not(.reason-label, .small-note) {
  margin-bottom: 15px;
  color: var(--text-sub);
}

/* =========================================================
   SERVICES
========================================================= */

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 260px;
  padding: 30px 24px;
  border: 1px solid rgba(13, 39, 67, 0.08);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-xs);
  transition:
    color 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover {
  color: var(--white);
  background: var(--navy-800);
  box-shadow: var(--shadow-md);
  transform: translateY(-7px);
}

.service-icon {
  display: grid;
  width: 55px;
  height: 55px;
  margin-bottom: 27px;
  place-items: center;
  border: 1px solid var(--gold-300);
  border-radius: 50%;
  color: var(--gold-700);
  background: var(--gold-100);
  font-family: serif;
  font-size: 21px;
  font-weight: 700;
}

.service-card h3 {
  margin-bottom: 14px;
  color: var(--navy-800);
  font-size: 18px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--text-sub);
  font-size: 13px;
}

.service-card:hover h3,
.service-card:hover p {
  color: var(--white);
}

.service-card:hover .service-icon {
  color: var(--navy-950);
  background: var(--gold-300);
}

/* =========================================================
   AREA
========================================================= */

.area-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: stretch;
}

.area-copy-box,
.area-premium-card {
  border-radius: var(--radius-lg);
}

.area-copy-box {
  padding: 52px;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(201, 157, 81, 0.15),
      transparent 32%
    ),
    var(--surface-warm);
}

.area-copy-main h2 {
  margin-bottom: 25px;
  color: var(--navy-900);
  font-size: clamp(28px, 4vw, 43px);
  line-height: 1.45;
}

.area-copy-main p {
  color: var(--text-sub);
}

.focus-card {
  display: flex;
  padding: 19px 22px;
  gap: 7px;
  flex-direction: column;
  margin: 30px 0;
  border-left: 4px solid var(--gold-500);
  background: var(--white);
  box-shadow: var(--shadow-xs);
}

.focus-card span {
  color: var(--gold-700);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.focus-card strong {
  color: var(--navy-800);
  font-size: 20px;
}

.area-policy-list {
  display: grid;
  gap: 12px;
}

.area-policy-item {
  display: flex;
  padding: 14px 0;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid rgba(13, 39, 67, 0.1);
}

.area-policy-item > span {
  color: var(--gold-600);
  font-size: 12px;
  font-weight: 900;
}

.area-policy-item div {
  display: flex;
  flex-direction: column;
}

.area-policy-item strong {
  color: var(--navy-800);
  font-size: 14px;
}

.area-policy-item small {
  color: var(--text-muted);
}

.area-premium-card {
  position: relative;
  padding: 52px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(217, 180, 110, 0.22),
      transparent 32%
    ),
    linear-gradient(145deg, var(--navy-900), #10385e);
  box-shadow: var(--shadow-md);
}

.area-bg-text {
  position: absolute;
  top: 10px;
  right: -10px;
  color: rgba(255, 255, 255, 0.035);
  font-size: 90px;
  font-weight: 900;
  line-height: 1;
}

.area-card-head {
  position: relative;
}

.area-card-label {
  margin-bottom: 8px;
  color: var(--gold-300);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.area-card-head h3 {
  margin-bottom: 12px;
  font-size: 31px;
}

.area-card-head > p:last-child {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.area-main-city {
  position: relative;
  display: flex;
  padding: 25px;
  gap: 18px;
  align-items: center;
  margin: 28px 0 18px;
  border: 1px solid rgba(217, 180, 110, 0.35);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.07);
}

.area-main-pin {
  position: relative;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border: 2px solid var(--gold-300);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.area-main-pin::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  content: "";
  background: var(--gold-300);
  transform: translate(-50%, -50%);
}

.area-main-label {
  display: block;
  color: var(--gold-300);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.area-main-city strong {
  display: block;
  font-size: 25px;
}

.area-main-city p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}

.area-city-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.area-city {
  padding: 11px 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  text-align: center;
  background: rgba(255, 255, 255, 0.055);
  font-size: 12px;
  font-weight: 700;
}

.area-note-box {
  margin-top: 25px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.area-note-box > strong {
  font-size: 13px;
}

.area-note-box > p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}

.area-select-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-bottom: 22px;
}

.area-select-points > div {
  display: flex;
  min-width: 0;
  padding: 12px 8px;
  flex-direction: column;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.area-select-points span {
  color: var(--gold-300);
  font-size: 9px;
}

.area-select-points strong {
  font-size: 11px;
}

.area-select-points small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
}

/* =========================================================
   CONSULTATION
========================================================= */

.consult-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.consult-item {
  position: relative;
  padding: 19px 20px 19px 54px;
  border: 1px solid rgba(13, 39, 67, 0.07);
  border-radius: 10px;
  color: var(--navy-800);
  background: var(--white);
  box-shadow: var(--shadow-xs);
  font-weight: 700;
}

.consult-item::before {
  position: absolute;
  top: 50%;
  left: 19px;
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  content: "✓";
  color: var(--navy-900);
  background: var(--gold-300);
  font-size: 11px;
  transform: translateY(-50%);
}

.cta-panel {
  display: flex;
  padding: 38px 42px;
  gap: 35px;
  align-items: center;
  justify-content: space-between;
  margin-top: 35px;
  border-radius: var(--radius-md);
  color: var(--white);
  background:
    radial-gradient(
      circle at 90% 30%,
      rgba(217, 180, 110, 0.16),
      transparent 30%
    ),
    var(--navy-900);
  box-shadow: var(--shadow-md);
}

.cta-panel h3 {
  margin-bottom: 7px;
  font-size: 23px;
}

.cta-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.cta-panel .btn {
  flex-shrink: 0;
}

/* =========================================================
   SUITABILITY
========================================================= */

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.compare-card {
  padding: 40px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.compare-card h3 {
  margin-bottom: 25px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-size: 21px;
}

.compare-card-good {
  border-top: 5px solid var(--success);
}

.compare-card-good h3 {
  color: var(--success);
}

.compare-card-caution {
  border-top: 5px solid var(--caution);
}

.compare-card-caution h3 {
  color: var(--caution);
}

.compare-card-caution .check-list li::before {
  content: "!";
  background: var(--caution);
}

/* =========================================================
   FLOW
========================================================= */

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
  counter-reset: flow;
}

.step-card {
  position: relative;
  min-height: 280px;
  padding: 36px 26px;
  border: 1px solid rgba(13, 39, 67, 0.08);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-xs);
}

.step-card:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 52px;
  right: -27px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  content: "→";
  color: var(--gold-700);
  background: var(--surface);
  font-weight: 900;
}

.step-number {
  display: block;
  margin-bottom: 42px;
  color: var(--gold-500);
  font-family: Georgia, serif;
  font-size: 43px;
  font-style: italic;
  line-height: 1;
}

.step-card h3 {
  margin-bottom: 15px;
  color: var(--navy-800);
  font-size: 19px;
}

.step-card p {
  margin-bottom: 0;
  color: var(--text-sub);
  font-size: 13px;
}

/* =========================================================
   FAQ
========================================================= */

.faq-list {
  width: min(100%, 900px);
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.faq-item:first-child {
  border-top: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  padding: 25px 70px 25px 24px;
  color: var(--navy-800);
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid rgba(13, 39, 67, 0.13);
  border-radius: 50%;
  content: "+";
  color: var(--gold-700);
  transform: translateY(-50%);
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
}

.faq-item p {
  margin: 0;
  padding: 0 70px 26px 48px;
  color: var(--text-sub);
  font-size: 14px;
}

/* =========================================================
   FORM
========================================================= */

.form-section {
  overflow: hidden;
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(217, 180, 110, 0.17),
      transparent 24%
    ),
    linear-gradient(145deg, var(--navy-950), var(--navy-800));
}

.form-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 75px;
  align-items: start;
}

.form-aside {
  position: sticky;
  top: 120px;
  color: var(--white);
}

.form-aside .section-kicker {
  color: var(--gold-300);
}

.form-aside h2 {
  color: var(--white);
  font-size: clamp(32px, 4.3vw, 50px);
}

.form-aside > p {
  color: rgba(255, 255, 255, 0.66);
}

.aside-list {
  padding: 0;
  margin-top: 32px;
  list-style: none;
}

.aside-list li {
  position: relative;
  padding: 14px 0 14px 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 700;
}

.aside-list li::before {
  position: absolute;
  top: 17px;
  left: 3px;
  color: var(--gold-300);
  content: "✓";
}

.contact-form {
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-lg);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 18px;
}

.form-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  margin-bottom: 8px;
  color: var(--navy-800);
  font-size: 13px;
  font-weight: 900;
}

.required,
.optional {
  display: inline-block;
  margin-left: 5px;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 9px;
  line-height: 1.4;
}

.required {
  color: var(--white);
  background: var(--danger);
}

.optional {
  color: var(--text-sub);
  background: #e9ecef;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #d4dae1;
  border-radius: 9px;
  outline: none;
  color: var(--text);
  background-color: #fbfcfd;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.form-field input,
.form-field select {
  height: 56px;
  padding: 0 16px;
}

.form-field textarea {
  min-height: 135px;
  padding: 15px 16px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201, 157, 81, 0.14);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #a1a8b1;
}

.check-agree {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  justify-content: center;
  margin: 28px 0 20px;
  color: var(--text-sub);
  font-size: 13px;
  cursor: pointer;
}

.check-agree input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--navy-700);
}

.check-agree a {
  color: var(--navy-700);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-note {
  margin: 15px 0 0;
  text-align: center;
}

/* =========================================================
   COMPANY
========================================================= */

.company-section {
  background: var(--white);
}

.company-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 72px;
  align-items: start;
}

.company-list > div {
  display: grid;
  grid-template-columns: 180px 1fr;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.company-list dt {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
}

.company-list dd {
  color: var(--navy-800);
  font-size: 13px;
  font-weight: 500;
}

.risk-box {
  padding: 35px;
  border: 1px solid #ddd8cb;
  border-radius: var(--radius-md);
  background: var(--surface-warm);
}

.risk-box h2 {
  margin-bottom: 20px;
  color: var(--navy-800);
  font-size: 21px;
}

.risk-list {
  padding-left: 1.4em;
  margin-bottom: 0;
}

.risk-list li {
  margin-bottom: 13px;
  color: var(--text-sub);
  font-size: 11px;
  line-height: 1.9;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  padding: 25px 0;
  color: rgba(255, 255, 255, 0.58);
  background: var(--navy-950);
  font-size: 11px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-inner p {
  margin-bottom: 0;
}

.footer-inner a {
  color: var(--gold-300);
}

/* =========================================================
   BOTTOM CTA
========================================================= */

.bottom-cta {
  display: none;
}

/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 1050px) {
  .nav {
    display: none;
  }

  .header-cta {
    margin-left: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.8fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(37px, 5.8vw, 57px);
  }

  .trust-badges {
    grid-template-columns: repeat(3, 1fr);
  }

  .card-main {
    left: -25px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .area-layout {
    grid-template-columns: 1fr;
  }

  .flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .step-card:not(:last-child)::after {
    display: none;
  }

  .form-layout {
    gap: 45px;
  }

  .contact-form {
    padding: 35px;
  }
}

/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 767px) {
  body {
    padding-bottom: 66px;
    font-size: 14px;
  }

  html {
    scroll-padding-top: 75px;
  }

  .container,
  .container-narrow {
    width: min(calc(100% - 36px), var(--container));
  }

  .section {
    padding: 76px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading.center {
    margin-bottom: 40px;
    text-align: left;
  }

  .section-heading.center .section-kicker {
    justify-content: flex-start;
  }

  .section-heading h2,
  .form-aside h2 {
    font-size: clamp(27px, 8vw, 37px);
  }

  .section-heading > p:last-child {
    font-size: 14px;
  }

  .site-header {
    height: 68px;
  }

  .logo-img {
    width: 145px;
  }

  .header-cta {
    min-width: 92px;
    height: 40px;
    font-size: 12px;
  }

  .hero {
    min-height: auto;
    padding: 57px 0 75px;
  }

  .hero::before {
    width: 350px;
    height: 350px;
  }

  .hero-grid {
    display: flex;
    gap: 45px;
    flex-direction: column;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(35px, 10vw, 47px);
    line-height: 1.32;
  }

  .hero .lead {
    margin-bottom: 26px;
    font-size: 14px;
    line-height: 1.9;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 25px;
  }

  .btn {
    width: 100%;
    min-height: 56px;
    padding: 14px 18px;
    font-size: 13px;
  }

  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-badge:last-child {
    grid-column: 1 / -1;
  }

  .hero-visual {
    width: 93%;
    margin-left: auto;
  }

  .hero-visual img {
    aspect-ratio: 1.12 / 1;
    border-radius: 6px 55px 6px 6px;
  }

  .hero-visual::before {
    top: -18px;
    right: -20px;
  }

  .floating-card {
    min-width: 125px;
    padding: 12px 14px;
  }

  .floating-card strong {
    font-size: 20px;
  }

  .card-main {
    top: 22px;
    left: -24px;
  }

  .card-main strong {
    font-size: 31px;
  }

  .card-sub {
    right: -5px;
    bottom: -25px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .stat-card {
    min-height: 145px;
    padding: 24px 18px;
  }

  .stat-card strong {
    font-size: 36px;
  }

  .stat-card strong em {
    font-size: 13px;
  }

  .stat-card .stat-text {
    margin-top: 20px;
    font-size: 21px;
  }

  .split-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .image-card {
    width: calc(100% - 12px);
  }

  .image-card img {
    min-height: 360px;
    border-radius: 50px 6px 6px 6px;
  }

  .image-card figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 13px;
    font-size: 10px;
  }

  .check-list li {
    padding-right: 4px;
    font-size: 13px;
  }

  .philosophy-text {
    font-size: 14px;
    line-height: 2.1;
  }

  .brand-statement {
    margin-top: 38px;
    font-size: 19px;
  }

  .reasons-list {
    gap: 65px;
  }

  .reason-card {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .reason-card:nth-child(even) .reason-media {
    order: initial;
  }

  .reason-media::after {
    top: 13px;
    left: 13px;
  }

  .reason-content h3 {
    font-size: 24px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .service-card {
    min-height: 220px;
    padding: 25px 17px;
  }

  .service-icon {
    width: 47px;
    height: 47px;
    margin-bottom: 21px;
  }

  .service-card h3 {
    font-size: 15px;
  }

  .service-card p {
    font-size: 11px;
  }

  .area-copy-box,
  .area-premium-card {
    padding: 31px 24px;
    border-radius: var(--radius-md);
  }

  .area-copy-main h2 {
    font-size: 28px;
  }

  .area-city-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .area-select-points {
    grid-template-columns: 1fr;
  }

  .area-select-points > div {
    padding: 10px;
  }

  .consult-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .consult-item {
    padding: 16px 15px 16px 48px;
    font-size: 12px;
  }

  .cta-panel {
    padding: 30px 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-panel h3 {
    font-size: 20px;
  }

  .compare-grid {
    grid-template-columns: 1fr;
  }

  .compare-card {
    padding: 28px 21px;
  }

  .flow-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .step-card {
    min-height: auto;
    padding: 25px;
  }

  .step-number {
    margin-bottom: 22px;
  }

  .faq-item summary {
    padding: 21px 55px 21px 12px;
    font-size: 13px;
  }

  .faq-item summary::after {
    right: 12px;
  }

  .faq-item p {
    padding: 0 16px 23px 24px;
    font-size: 12px;
  }

  .form-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .form-aside {
    position: static;
  }

  .contact-form {
    padding: 29px 20px;
    border-radius: var(--radius-md);
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 19px;
  }

  .form-field-full {
    grid-column: auto;
  }

  .form-field input,
  .form-field select {
    height: 54px;
    font-size: 14px;
  }

  .check-agree {
    justify-content: flex-start;
    font-size: 12px;
  }

  .company-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .company-list > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .company-list dt {
    color: var(--gold-700);
    font-size: 11px;
  }

  .risk-box {
    padding: 26px 22px;
  }

  .footer-inner {
    gap: 15px;
    flex-direction: column;
    align-items: flex-start;
  }

  .bottom-cta {
    position: fixed;
    z-index: 999;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    height: 66px;
    padding: 7px;
    gap: 7px;
    border-top: 1px solid rgba(13, 39, 67, 0.09);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -8px 28px rgba(6, 17, 31, 0.12);
    backdrop-filter: blur(13px);
  }

  .bottom-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 900;
  }

  .bottom-cta-secondary {
    border: 1px solid var(--navy-700);
    color: var(--navy-700);
    background: var(--white);
  }

  .bottom-cta-primary {
    color: var(--navy-950);
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    box-shadow: 0 6px 15px rgba(182, 138, 59, 0.25);
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 390px) {
  .container,
  .container-narrow {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero h1 {
    font-size: 33px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    min-height: 130px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .area-main-city {
    padding: 19px 15px;
  }
}

/* =========================================================
   ACCESSIBILITY
========================================================= */

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(201, 157, 81, 0.7);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* =========================================================
   MOBILE PREMIUM REDESIGN
   既存CSSの一番下に追加
========================================================= */

@media (max-width: 767px) {
  :root {
    --mobile-side: 20px;
    --mobile-navy: #071727;
    --mobile-navy-light: #102d49;
    --mobile-gold: #c79b4b;
    --mobile-gold-light: #ecd5a0;
    --mobile-cream: #f5f0e7;
  }

  body {
    color: #172131;
    background: #f7f5f0;
    font-size: 14px;
    line-height: 1.9;
  }

  .container,
  .container-narrow {
    width: calc(100% - 40px);
  }

  .section {
    padding: 84px 0;
  }

  /* 見出しに明朝体を使用 */
  .hero h1,
  .section-heading h2,
  .form-aside h2,
  .reason-content h3,
  .area-copy-main h2,
  .brand-statement {
    font-family:
      "Noto Serif JP",
      "Yu Mincho",
      "YuMincho",
      serif;
  }

  /* =====================================================
     HEADER
  ===================================================== */

  .site-header {
    height: 66px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(7, 23, 39, 0.94);
    box-shadow: 0 8px 30px rgba(4, 15, 27, 0.2);
    backdrop-filter: blur(18px);
  }

  .header-inner {
    width: calc(100% - 28px);
    gap: 14px;
  }

  .logo {
    padding: 6px 10px;
    border-radius: 7px;
    background: #fff;
  }

  .logo-img {
    width: 126px;
  }

  .header-cta {
    min-width: 94px;
    height: 40px;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    color: #071727;
    background:
      linear-gradient(
        135deg,
        #f1dca9 0%,
        #c79947 50%,
        #e5c47f 100%
      );
    box-shadow: 0 7px 18px rgba(198, 151, 70, 0.25);
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  /* =====================================================
     HERO
  ===================================================== */

  .hero {
    min-height: auto;
    padding: 60px 0 94px;
    color: #fff;
    background:
      radial-gradient(
        circle at 95% 5%,
        rgba(220, 181, 105, 0.2),
        transparent 30%
      ),
      radial-gradient(
        circle at 0% 65%,
        rgba(37, 85, 124, 0.3),
        transparent 38%
      ),
      linear-gradient(155deg, #06111f 0%, #0b2239 58%, #071727 100%);
  }

  .hero::before {
    top: -120px;
    right: -190px;
    width: 410px;
    height: 410px;
    border: 1px solid rgba(234, 211, 162, 0.15);
  }

  .hero::after {
    bottom: auto;
    top: 155px;
    left: -190px;
    width: 390px;
    height: 390px;
    border: 1px solid rgba(234, 211, 162, 0.08);
    background: transparent;
  }

  .hero-grid {
    display: flex;
    gap: 48px;
    flex-direction: column;
  }

  .hero-copy {
    width: 100%;
  }

  .eyebrow {
    margin-bottom: 23px;
    padding: 8px 13px;
    border-color: rgba(235, 207, 149, 0.28);
    border-radius: 4px;
    color: var(--mobile-gold-light);
    background: rgba(255, 255, 255, 0.05);
    font-size: 9px;
    letter-spacing: 0.15em;
  }

  .eyebrow::before {
    width: 18px;
    height: 1px;
    border-radius: 0;
    background: var(--mobile-gold-light);
    box-shadow: none;
  }

  .hero h1 {
    margin-bottom: 25px;
    color: #fff;
    font-size: clamp(34px, 9.7vw, 44px);
    font-weight: 700;
    line-height: 1.52;
    letter-spacing: -0.045em;
  }

  .hero h1 .text-gold {
    color: transparent;
    background:
      linear-gradient(
        100deg,
        #f2ddb0 0%,
        #c99948 48%,
        #f1d79f 100%
      );
    background-clip: text;
    -webkit-background-clip: text;
  }

  .hero .lead {
    margin-bottom: 29px;
    padding-left: 16px;
    border-left: 1px solid rgba(229, 196, 127, 0.55);
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 400;
    line-height: 2;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
    margin-bottom: 30px;
  }

  .hero .btn {
    min-height: 60px;
    border-radius: 7px;
  }

  .hero .btn-primary {
    color: #071727;
    background:
      linear-gradient(
        110deg,
        #eed7a5 0%,
        #c89a48 52%,
        #e8c982 100%
      );
    box-shadow:
      0 13px 28px rgba(0, 0, 0, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.6);
  }

  .hero .btn-outline {
    border-color: rgba(255, 255, 255, 0.28);
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.055);
  }

  /* HERO実績カード */

  .trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 18px;
  }

  .trust-badge {
    min-height: 70px;
    padding: 13px 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.055);
    box-shadow: none;
    backdrop-filter: blur(10px);
  }

  .trust-badge:first-child {
    grid-column: 1 / -1;
    min-height: 84px;
    border-color: rgba(234, 211, 162, 0.28);
    background:
      linear-gradient(
        120deg,
        rgba(202, 156, 78, 0.2),
        rgba(255, 255, 255, 0.05)
      );
  }

  .trust-badge:last-child {
    grid-column: auto;
  }

  .trust-badge span,
  .trust-badge small {
    color: rgba(255, 255, 255, 0.48);
    font-size: 8px;
  }

  .trust-badge strong {
    color: #fff;
    font-size: 13px;
  }

  .trust-badge:first-child strong {
    color: var(--mobile-gold-light);
    font-size: 21px;
  }

  .hero-note {
    color: rgba(255, 255, 255, 0.44);
    font-size: 9px;
  }

  /* HERO画像を画面幅いっぱいに見せる */

  .hero-visual {
    width: calc(100% + 40px);
    margin-right: -20px;
    margin-left: -20px;
  }

  .hero-visual::before {
    top: -15px;
    right: 20px;
    width: 75%;
    height: 70%;
    border: 1px solid rgba(234, 211, 162, 0.2);
    border-radius: 4px;
    background: transparent;
  }

  .hero-visual img {
    width: calc(100% - 20px);
    aspect-ratio: 1.35 / 1;
    border-radius: 0 42px 0 0;
    box-shadow: 0 30px 55px rgba(0, 0, 0, 0.38);
    object-position: center;
  }

  .floating-card {
    min-width: 125px;
    padding: 12px 14px;
    border: 1px solid rgba(234, 211, 162, 0.26);
    border-radius: 7px;
    color: #fff;
    background: rgba(7, 23, 39, 0.9);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.28);
  }

  .floating-card span,
  .floating-card small {
    color: rgba(255, 255, 255, 0.48);
    font-size: 8px;
  }

  .floating-card strong {
    color: #fff;
    font-size: 19px;
  }

  .card-main {
    top: 21px;
    left: 10px;
  }

  .card-main strong {
    color: var(--mobile-gold-light);
    font-size: 28px;
  }

  .card-sub {
    right: 8px;
    bottom: -28px;
  }

  /* =====================================================
     SECTION HEADING
  ===================================================== */

  .section-heading,
  .section-heading.center {
    margin-bottom: 40px;
    text-align: left;
  }

  .section-heading.center .section-kicker {
    justify-content: flex-start;
  }

  .section-kicker {
    margin-bottom: 13px;
    color: var(--mobile-gold);
    font-size: 9px;
    letter-spacing: 0.24em;
  }

  .section-kicker::before {
    width: 34px;
  }

  .section-heading h2,
  .form-aside h2 {
    position: relative;
    margin-bottom: 20px;
    color: var(--mobile-navy);
    font-size: clamp(27px, 7.7vw, 34px);
    font-weight: 700;
    line-height: 1.58;
    letter-spacing: -0.035em;
  }

  .section-heading > p:last-child {
    color: #66717e;
    font-size: 13px;
    line-height: 2;
  }

  /* =====================================================
     RESULTS
  ===================================================== */

  #stats {
    overflow: hidden;
    background:
      linear-gradient(
        180deg,
        #f4efe5 0%,
        #faf9f6 100%
      );
  }

  #stats::before {
    position: absolute;
    top: 35px;
    right: -10px;
    color: rgba(7, 23, 39, 0.035);
    content: "RESULTS";
    font-family: Georgia, serif;
    font-size: 61px;
    font-weight: 700;
    letter-spacing: -0.06em;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .stat-card {
    min-height: 142px;
    padding: 22px 15px;
    border: 0;
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(7, 23, 39, 0.08);
  }

  .stat-card:first-child {
    grid-column: 1 / -1;
    min-height: 164px;
    padding: 27px 24px;
    color: #fff;
    background:
      radial-gradient(
        circle at 100% 0%,
        rgba(220, 181, 105, 0.2),
        transparent 38%
      ),
      linear-gradient(145deg, #071727, #123652);
  }

  .stat-card::before {
    top: auto;
    right: 15px;
    bottom: 0;
    left: 15px;
    width: auto;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d5ad65, transparent);
  }

  .stat-card:first-child::before {
    right: 24px;
    left: 24px;
  }

  .stat-card span {
    margin-bottom: 13px;
    font-size: 10px;
  }

  .stat-card:first-child span {
    color: rgba(255, 255, 255, 0.58);
  }

  .stat-card strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 35px;
    letter-spacing: -0.04em;
  }

  .stat-card:first-child strong {
    color: var(--mobile-gold-light);
    font-size: 55px;
  }

  .stat-card strong em {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 12px;
  }

  .stat-card:first-child strong em {
    color: #fff;
  }

  .stat-card .stat-text {
    margin-top: 18px;
    font-family: "Noto Serif JP", serif;
    font-size: 18px;
    line-height: 1.5;
  }

  /* =====================================================
     WORRIES
  ===================================================== */

  .split-grid {
    gap: 52px;
  }

  .image-card {
    width: calc(100% + 20px);
    margin-left: -20px;
  }

  .image-card::before {
    right: -10px;
    bottom: -14px;
    border-radius: 0 20px 20px 0;
  }

  .image-card img {
    min-height: 340px;
    border-radius: 0 55px 0 0;
    box-shadow: 0 23px 45px rgba(7, 23, 39, 0.18);
  }

  .image-card figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 14px 16px;
    border-left: 2px solid var(--mobile-gold);
    border-radius: 3px;
    background: rgba(7, 23, 39, 0.86);
  }

  .check-list {
    gap: 0;
  }

  .check-list li {
    min-height: 54px;
    padding: 14px 5px 14px 42px;
    border-bottom: 1px solid #e3ded4;
    font-size: 12px;
  }

  .check-list li::before {
    top: 15px;
    left: 3px;
    width: 23px;
    height: 23px;
    border: 1px solid rgba(199, 155, 75, 0.35);
    color: var(--mobile-gold);
    background: transparent;
  }

  .connect-copy {
    margin-top: 27px;
    padding: 22px;
    border: 0;
    border-top: 1px solid var(--mobile-gold);
    border-bottom: 1px solid var(--mobile-gold);
    color: var(--mobile-navy);
    text-align: center;
    background: transparent;
    font-family: "Noto Serif JP", serif;
    font-size: 15px;
    line-height: 1.9;
  }

  /* =====================================================
     PHILOSOPHY
  ===================================================== */

  .section-dark.philosophy {
    padding: 95px 0;
    background:
      radial-gradient(
        circle at 100% 15%,
        rgba(214, 173, 96, 0.16),
        transparent 28%
      ),
      linear-gradient(165deg, #06111f, #102d49 60%, #071727);
  }

  .philosophy::before {
    top: 60px;
    left: -5px;
    font-size: 69px;
    transform: none;
  }

  .section-dark .section-heading h2 {
    color: #fff;
  }

  .philosophy-text {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 2.2;
  }

  .philosophy-text p {
    margin-bottom: 23px;
  }

  .brand-statement {
    margin-top: 43px;
    padding: 30px 8px 0;
    color: var(--mobile-gold-light);
    font-size: 18px;
    line-height: 1.9;
  }

  /* 広告開始メッセージ */

  #why-ad {
    background:
      linear-gradient(
        180deg,
        #eee6d7 0%,
        #faf8f3 100%
      );
  }

  #why-ad .brand-statement {
    padding: 27px 15px;
    border: 1px solid rgba(176, 131, 54, 0.28);
    border-right: 0;
    border-left: 0;
  }

  /* =====================================================
     REASONS
  ===================================================== */

  #reasons {
    background: #f7f5f0;
  }

  .reasons-list {
    gap: 36px;
  }

  .reason-card {
    display: block;
    overflow: hidden;
    border: 1px solid rgba(7, 23, 39, 0.07);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 17px 45px rgba(7, 23, 39, 0.09);
  }

  .reason-media::after {
    display: none;
  }

  .reason-media img {
    aspect-ratio: 1.38 / 1;
    border-radius: 0;
    box-shadow: none;
  }

  .reason-content {
    position: relative;
    padding: 29px 23px 26px;
  }

  .reason-content::after {
    position: absolute;
    top: 12px;
    right: 15px;
    color: rgba(7, 23, 39, 0.035);
    content: "E";
    font-family: Georgia, serif;
    font-size: 82px;
    font-weight: 700;
    line-height: 1;
  }

  .reason-label {
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
    color: var(--mobile-gold);
    font-size: 9px;
  }

  .reason-content h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 18px;
    color: var(--mobile-navy);
    font-size: 21px;
    line-height: 1.65;
  }

  .reason-content > p:not(.reason-label, .small-note) {
    position: relative;
    z-index: 1;
    color: #69727d;
    font-size: 12px;
    line-height: 2;
  }

  /* =====================================================
     SERVICES
  ===================================================== */

  #services {
    background:
      linear-gradient(
        180deg,
        #ede8df 0%,
        #f8f6f1 100%
      );
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .service-card {
    min-height: 196px;
    padding: 22px 15px;
    border: 0;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(7, 23, 39, 0.07);
  }

  .service-card:nth-child(4n + 1) {
    color: #fff;
    background:
      linear-gradient(145deg, #071727, #133b5b);
  }

  .service-card:nth-child(4n + 1) h3,
  .service-card:nth-child(4n + 1) p {
    color: #fff;
  }

  .service-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 17px;
  }

  .service-card h3 {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .service-card p {
    font-size: 10px;
    line-height: 1.8;
  }

  /* =====================================================
     AREA
  ===================================================== */

  .area-layout {
    gap: 17px;
  }

  .area-copy-box,
  .area-premium-card {
    padding: 32px 23px;
    border-radius: 8px;
  }

  .area-copy-box {
    border: 1px solid #e2d8c6;
    background:
      radial-gradient(
        circle at 100% 0%,
        rgba(199, 155, 75, 0.14),
        transparent 36%
      ),
      #f8f4ec;
  }

  .area-copy-main h2 {
    font-size: 26px;
    line-height: 1.6;
  }

  .area-copy-main p {
    font-size: 12px;
    line-height: 2;
  }

  .focus-card {
    padding: 17px 18px;
    border-left: 3px solid var(--mobile-gold);
    box-shadow: 0 8px 24px rgba(7, 23, 39, 0.06);
  }

  .focus-card strong {
    font-size: 16px;
  }

  .area-premium-card {
    background:
      radial-gradient(
        circle at 100% 0%,
        rgba(221, 184, 112, 0.2),
        transparent 38%
      ),
      linear-gradient(150deg, #06111f, #123754);
    box-shadow: 0 23px 50px rgba(7, 23, 39, 0.22);
  }

  .area-card-head h3 {
    font-family: "Noto Serif JP", serif;
    font-size: 26px;
  }

  .area-city-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .area-select-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .area-select-points > div {
    min-height: 77px;
    padding: 10px 7px;
  }

  .area-select-points strong {
    font-size: 10px;
  }

  .area-select-points small {
    font-size: 7px;
  }

  /* =====================================================
     CONSULTATION
  ===================================================== */

  #consultation {
    background: #f3efe7;
  }

  .consult-grid {
    gap: 0;
    overflow: hidden;
    border: 1px solid #e3ddd1;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(7, 23, 39, 0.07);
  }

  .consult-item {
    min-height: 57px;
    padding: 16px 15px 16px 49px;
    border: 0;
    border-bottom: 1px solid #ebe6dd;
    border-radius: 0;
    box-shadow: none;
    font-size: 11px;
  }

  .consult-item:last-child {
    border-bottom: 0;
  }

  .consult-item::before {
    left: 17px;
    color: var(--mobile-gold);
    background: transparent;
  }

  .cta-panel {
    padding: 31px 23px;
    border-radius: 8px;
    background:
      radial-gradient(
        circle at 100% 0,
        rgba(218, 178, 103, 0.2),
        transparent 35%
      ),
      linear-gradient(145deg, #071727, #123650);
  }

  .cta-panel h3 {
    font-family: "Noto Serif JP", serif;
    font-size: 19px;
    line-height: 1.65;
  }

  /* =====================================================
     SUITABILITY
  ===================================================== */

  .compare-grid {
    gap: 13px;
  }

  .compare-card {
    padding: 27px 21px;
    border-radius: 7px;
    box-shadow: 0 14px 35px rgba(7, 23, 39, 0.08);
  }

  .compare-card h3 {
    font-family: "Noto Serif JP", serif;
    font-size: 17px;
  }

  .compare-card-good {
    border-top: 3px solid #3d7563;
  }

  .compare-card-caution {
    border-top: 3px solid #a8783e;
  }

  /* =====================================================
     FLOW：カードではなく縦タイムライン
  ===================================================== */

  #flow {
    background:
      linear-gradient(
        180deg,
        #f1ede5 0%,
        #faf9f6 100%
      );
  }

  .flow-grid {
    position: relative;
    display: block;
  }

  .flow-grid::before {
    position: absolute;
    top: 29px;
    bottom: 29px;
    left: 23px;
    width: 1px;
    content: "";
    background:
      linear-gradient(
        180deg,
        var(--mobile-gold),
        rgba(199, 155, 75, 0.15)
      );
  }

  .step-card {
    min-height: auto;
    padding: 0 0 34px 66px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .step-card:last-child {
    padding-bottom: 0;
  }

  .step-card:not(:last-child)::after {
    display: none;
  }

  .step-number {
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    width: 47px;
    height: 47px;
    margin: 0;
    place-items: center;
    border: 1px solid rgba(199, 155, 75, 0.5);
    border-radius: 50%;
    color: var(--mobile-gold);
    background: #f5f1e9;
    font-size: 17px;
    font-style: normal;
  }

  .step-card h3 {
    margin-bottom: 8px;
    padding-top: 4px;
    font-family: "Noto Serif JP", serif;
    font-size: 17px;
  }

  .step-card p {
    font-size: 11px;
    line-height: 1.9;
  }

  /* =====================================================
     FAQ
  ===================================================== */

  #faq {
    background: #fff;
  }

  .faq-list {
    display: grid;
    gap: 9px;
  }

  .faq-item,
  .faq-item:first-child {
    overflow: hidden;
    border: 1px solid #e2ded6;
    border-radius: 7px;
    background: #faf9f6;
  }

  .faq-item summary {
    padding: 19px 53px 19px 18px;
    color: var(--mobile-navy);
    font-size: 12px;
    line-height: 1.7;
  }

  .faq-item summary::after {
    right: 15px;
    width: 27px;
    height: 27px;
    border-color: rgba(199, 155, 75, 0.45);
    color: var(--mobile-gold);
  }

  .faq-item p {
    padding: 0 18px 20px;
    color: #68727e;
    font-size: 11px;
    line-height: 2;
  }

  /* =====================================================
     FORM
  ===================================================== */

  .form-section {
    padding-top: 91px;
    background:
      radial-gradient(
        circle at 100% 0%,
        rgba(220, 181, 105, 0.18),
        transparent 30%
      ),
      linear-gradient(155deg, #06111f, #10314d);
  }

  .form-layout {
    gap: 36px;
  }

  .form-aside h2 {
    color: #fff;
    font-size: 29px;
    line-height: 1.55;
  }

  .form-aside > p {
    font-size: 12px;
    line-height: 2;
  }

  .aside-list {
    margin-top: 23px;
  }

  .aside-list li {
    padding: 12px 0 12px 30px;
    font-size: 11px;
  }

  .contact-form {
    padding: 29px 19px;
    border: 1px solid rgba(225, 195, 132, 0.35);
    border-radius: 8px;
    background: #faf9f6;
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.3);
  }

  .form-grid {
    gap: 18px;
  }

  .form-field label {
    font-size: 12px;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    border-color: #d9d5cc;
    border-radius: 5px;
    background-color: #fff;
  }

  .form-field input,
  .form-field select {
    height: 56px;
  }

  .contact-form .btn-primary {
    min-height: 62px;
    border-radius: 6px;
    background:
      linear-gradient(
        110deg,
        #eed8a7,
        #c59643 52%,
        #e8c77e
      );
    box-shadow: 0 13px 30px rgba(160, 114, 43, 0.27);
  }

  /* =====================================================
     COMPANY
  ===================================================== */

  .company-section {
    background: #f6f3ed;
  }

  .company-list {
    overflow: hidden;
    border: 1px solid #e1ddd4;
    border-radius: 7px;
    background: #fff;
  }

  .company-list > div {
    padding: 16px 17px;
    border-bottom-color: #ebe7df;
  }

  .company-list dt {
    color: var(--mobile-gold);
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .company-list dd {
    font-size: 11px;
    line-height: 1.8;
  }

  .risk-box {
    padding: 26px 21px;
    border: 1px solid #dfd5c5;
    border-radius: 7px;
    background: #ece6dc;
  }

  .risk-box h2 {
    font-family: "Noto Serif JP", serif;
    font-size: 18px;
  }

  /* =====================================================
     FOOTER / BOTTOM CTA
  ===================================================== */

  .site-footer {
    padding: 32px 0;
  }

  .bottom-cta {
    height: 70px;
    padding:
      8px
      8px
      calc(8px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(7, 23, 39, 0.1);
    background: rgba(247, 245, 240, 0.96);
  }

  .bottom-cta a {
    border-radius: 5px;
    letter-spacing: 0.05em;
  }

  .bottom-cta-secondary {
    border-color: var(--mobile-navy);
    color: var(--mobile-navy);
    background: #fff;
  }

  .bottom-cta-primary {
    color: #071727;
    background:
      linear-gradient(
        110deg,
        #efd9a7,
        #c59643 55%,
        #e7c77e
      );
    box-shadow: 0 8px 20px rgba(159, 112, 39, 0.24);
  }
}

/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 390px) {
  .container,
  .container-narrow {
    width: calc(100% - 32px);
  }

  .hero-visual {
    width: calc(100% + 32px);
    margin-right: -16px;
    margin-left: -16px;
  }

  .hero h1 {
    font-size: 32px;
  }

  /* 既存CSSの1列化を解除 */
  .stats-grid,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-card:first-child {
    grid-column: 1 / -1;
  }

  .service-card {
    min-height: 190px;
  }

  .area-main-city {
    padding: 19px 15px;
  }
}
/* ヒーロー見出しの改行調整 */
.hero-title {
  margin: 0 0 28px;
  font-size: clamp(42px, 3.6vw, 52px);
  line-height: 1.3;
  letter-spacing: -0.045em;
}

.hero-title-line {
  display: block;
}

/* PC */
@media (min-width: 768px) {
  .hero-title-line {
    white-space: nowrap;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 40px;
  }
}

/* スマートフォン */
@media (max-width: 767px) {
  .hero-title {
    margin-bottom: 22px;
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.28;
  }

  .hero-title-line {
    white-space: normal;
  }
}
/* ==================================================
   PC版ヒーロー：文字と画像の重なりを修正
================================================== */

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
}

/* 通常のPC */
@media (min-width: 1100px) {
  .hero-grid {
    grid-template-columns:
      minmax(0, 1.18fr)
      minmax(0, 0.82fr);
    gap: 44px;
  }

  .hero-title {
    font-size: clamp(42px, 3.6vw, 52px);
    line-height: 1.3;
    letter-spacing: -0.05em;
  }

  .hero-title-line {
    display: block;
    white-space: nowrap;
  }

  /* 実績カードを画像の内側へ移動 */
  .hero-visual .card-main {
    top: 28px !important;
    right: 20px !important;
    left: auto !important;
    transform: none !important;
  }

  .hero-visual .card-sub {
    right: 20px !important;
    bottom: 28px !important;
    left: auto !important;
    transform: none !important;
  }
}

/* 1024px前後の小さめPC・タブレット横向き */
@media (min-width: 768px) and (max-width: 1099px) {
  .hero-grid {
    grid-template-columns:
      minmax(0, 1.15fr)
      minmax(340px, 0.85fr);
    gap: 24px;
  }

  .hero-title {
    font-size: clamp(34px, 3.8vw, 42px);
    line-height: 1.32;
    letter-spacing: -0.055em;
  }

  .hero-title-line {
    display: block;
    white-space: nowrap;
  }

  /* カードが見出し側へ飛び出さないようにする */
  .hero-visual .card-main {
    top: 20px !important;
    right: 14px !important;
    left: auto !important;
    transform: none !important;
  }

  .hero-visual .card-sub {
    right: 14px !important;
    bottom: 20px !important;
    left: auto !important;
    transform: none !important;
  }
}

/* スマートフォン */
@media (max-width: 767px) {
  .hero-title {
    font-size: clamp(33px, 9.5vw, 43px);
    line-height: 1.3;
    letter-spacing: -0.05em;
  }

  .hero-title-line {
    white-space: normal;
  }

  .hero-visual .card-main {
    top: 16px !important;
    right: 12px !important;
    left: auto !important;
    transform: none !important;
  }

  .hero-visual .card-sub {
    right: 12px !important;
    bottom: 16px !important;
    left: auto !important;
    transform: none !important;
  }
}
/* ==================================================
   ヒーロー最終調整
   必ずstyle.cssの一番最後に配置
================================================== */

/* PC */
@media screen and (min-width: 1024px) {
  .hero .hero-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 60%) minmax(0, 40%) !important;
    align-items: center !important;
    column-gap: 32px !important;
  }

  .hero .hero-copy {
    position: relative !important;
    z-index: 2 !important;
    min-width: 0 !important;
    max-width: none !important;
    padding-right: 12px !important;
  }

  .hero .hero-copy .hero-title {
    max-width: 100% !important;
    margin: 0 0 28px !important;
    font-size: clamp(38px, 3.6vw, 50px) !important;
    line-height: 1.32 !important;
    letter-spacing: -0.055em !important;
  }

  .hero .hero-copy .hero-title-line {
    display: block !important;
    white-space: nowrap !important;
  }

  .hero .hero-visual {
    position: relative !important;
    z-index: 1 !important;
    min-width: 0 !important;
    width: 100% !important;
    overflow: hidden !important;
  }

  .hero .hero-visual > img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
  }

  /* フローティングカードを画像内に収める */
  .hero .hero-visual .card-main {
    top: 24px !important;
    right: 18px !important;
    left: auto !important;
    transform: none !important;
  }

  .hero .hero-visual .card-sub {
    right: 18px !important;
    bottom: 24px !important;
    left: auto !important;
    transform: none !important;
  }
}

/* タブレット以下は縦並びにする */
@media screen and (max-width: 1023px) {
  .hero .hero-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 38px !important;
  }

  .hero .hero-copy {
    width: 100% !important;
    max-width: 100% !important;
    padding-right: 0 !important;
  }

  .hero .hero-copy .hero-title {
    font-size: clamp(34px, 6.5vw, 48px) !important;
    line-height: 1.3 !important;
    letter-spacing: -0.05em !important;
  }

  .hero .hero-copy .hero-title-line {
    display: block !important;
    white-space: normal !important;
  }

  .hero .hero-visual {
    width: 100% !important;
    max-width: 680px !important;
    margin: 0 auto !important;
    overflow: hidden !important;
  }
}

/* ==================================================
   実績カードの配置調整
   PC：上段3枚・下段2枚を中央配置
================================================== */

#stats .stats-grid {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 20px !important;
  align-items: stretch;
}

/* 上段3枚 */
#stats .stat-card {
  grid-column: span 2;
  width: 100%;
  min-width: 0;
}

/* 下段2枚を中央へ */
#stats .stat-card:nth-child(4) {
  grid-column: 2 / span 2;
}

#stats .stat-card:nth-child(5) {
  grid-column: 4 / span 2;
}

/* カードの高さを統一 */
#stats .stat-card {
  display: flex;
  min-height: 142px;
  flex-direction: column;
  justify-content: center;
}

/* 注釈の幅と余白を調整 */
#stats .inline-note {
  max-width: 920px;
  margin: 20px auto 0;
  text-align: center;
}

/* タブレット：上段2枚＋中段2枚＋下段1枚 */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #stats .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  #stats .stat-card {
    grid-column: span 2;
  }

  #stats .stat-card:nth-child(4) {
    grid-column: span 2;
  }

  #stats .stat-card:nth-child(5) {
    grid-column: 2 / span 2;
  }
}

/* スマートフォン：1列 */
@media screen and (max-width: 767px) {
  #stats .stats-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  #stats .stat-card,
  #stats .stat-card:nth-child(4),
  #stats .stat-card:nth-child(5) {
    grid-column: 1 / -1;
  }

  #stats .stat-card {
    min-height: 120px;
  }

  #stats .inline-note {
    margin-top: 16px;
    text-align: left;
  }
}

/* 対応エリアカード */
#stats .stat-card-area .stat-text {
  margin-top: 8px;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.35;
}

#stats .stat-area-detail {
  display: block;
  margin-top: 10px;
  color: #64717d;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

/* スマートフォン */
@media screen and (max-width: 767px) {
  #stats .stat-card-area .stat-text {
    font-size: 22px;
  }

  #stats .stat-area-detail {
    font-size: 10px;
    line-height: 1.65;
  }
}

/* ==================================================
   対応エリアカードのバランス調整
================================================== */

/* 左右のカラムを無理に同じ高さにしない */
.area-layout-balanced {
  align-items: start !important;
}

/* カードを内容に合わせた高さにする */
.area-premium-card.area-premium-compact {
  height: auto !important;
  min-height: 0 !important;
  align-self: start !important;
  padding-bottom: 34px !important;
}

/* 都市一覧 */
.area-city-grid-compact {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 8px !important;
}

/* 7個目の名古屋市を中央に配置 */
.area-city-grid-compact .area-city:nth-child(7) {
  grid-column: 2;
}

/* 選定ポイント周辺の余白 */
.area-premium-compact .area-note-box {
  margin-top: 24px !important;
  padding-top: 20px !important;
}

/* 最後の説明文の余白を整理 */
.area-premium-compact .area-note-box > p:last-child {
  margin-bottom: 0 !important;
}

/* タブレット・スマートフォン */
@media screen and (max-width: 767px) {
  .area-city-grid-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  /* スマホでは名古屋市を横幅いっぱいにして中央表示 */
  .area-city-grid-compact .area-city:nth-child(7) {
    grid-column: 1 / -1;
    width: calc(50% - 4px);
    justify-self: center;
  }

  .area-premium-card.area-premium-compact {
    padding-bottom: 26px !important;
  }
}

.area-region-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.area-region-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.035);
}

.area-region-label {
  color: #d8b56d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.area-region-row p {
  margin: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .area-region-row {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 10px;
  }
}

/* =========================================================
   AREA SECTION FINAL ADJUSTMENT
   左右カードの高さ・都市一覧・余白の最終調整
   必ずstyle.cssの一番最後に配置
========================================================= */

/*
  PCのみ左右のカードを同じ高さにする。
  1050px以下では既存CSSにより1列になるため、
  高さは自動に戻す。
*/
@media screen and (min-width: 1051px) {
  /* 左右のカラムを同じ高さまで伸ばす */
  .area-layout.area-layout-balanced {
    display: grid !important;
    grid-template-columns: 0.95fr 1.05fr !important;
    gap: 36px !important;
    align-items: stretch !important;
  }

  /* 左側カード */
  .area-layout-balanced > .area-copy-box.area-copy-balanced {
    display: flex !important;
    height: 100% !important;
    min-height: 0 !important;
    flex-direction: column !important;
    box-sizing: border-box !important;
    align-self: stretch !important;
  }

  /* 右側カード */
  .area-layout-balanced >
  .area-chip-box.area-premium-card.area-premium-compact {
    display: flex !important;
    height: 100% !important;
    min-height: 0 !important;
    padding-bottom: 52px !important;
    flex-direction: column !important;
    box-sizing: border-box !important;
    align-self: stretch !important;
  }

  /*
    右側下部の「選定時に確認するポイント」を
    カード下部へ配置する
  */
  .area-layout-balanced
  .area-premium-compact
  .area-note-box {
    margin-top: auto !important;
    padding-top: 24px !important;
  }
}

/* =========================================================
   都市一覧の配置
========================================================= */

.area-city-grid-compact {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 8px !important;
}

/* 7個目の名古屋市を中央に配置 */
.area-city-grid-compact .area-city:nth-child(7) {
  grid-column: 2;
}

/* 都市名が長い場合もカード内に収める */
.area-city-grid-compact .area-city {
  display: flex;
  min-width: 0;
  min-height: 42px;
  padding: 10px 7px;
  align-items: center;
  justify-content: center;
  line-height: 1.45;
  white-space: normal;
}

/* =========================================================
   右側カード内部の余白調整
========================================================= */

.area-premium-compact .area-card-head {
  flex-shrink: 0;
}

.area-premium-compact .area-main-city {
  flex-shrink: 0;
}

.area-premium-compact .area-city-grid-compact,
.area-premium-compact .area-region-list {
  flex-shrink: 0;
}

.area-premium-compact .area-note-box > p:last-child {
  margin-bottom: 0 !important;
}

/* 選定ポイント3枚の高さを統一 */
.area-premium-compact .area-select-points {
  align-items: stretch;
}

.area-premium-compact .area-select-points > div {
  height: 100%;
  justify-content: center;
}

/* =========================================================
   タブレット
========================================================= */

@media screen and (min-width: 768px) and (max-width: 1050px) {
  /*
    1050px以下では左右が縦並びになるため、
    同じ高さには固定しない
  */
  .area-layout.area-layout-balanced {
    grid-template-columns: 1fr !important;
    align-items: start !important;
  }

  .area-layout-balanced > .area-copy-box.area-copy-balanced,
  .area-layout-balanced >
  .area-chip-box.area-premium-card.area-premium-compact {
    height: auto !important;
    min-height: 0 !important;
    align-self: auto !important;
  }

  .area-layout-balanced
  .area-premium-compact
  .area-note-box {
    margin-top: 25px !important;
    padding-top: 24px !important;
  }
}

/* =========================================================
   スマートフォン
========================================================= */

@media screen and (max-width: 767px) {
  .area-layout.area-layout-balanced {
    grid-template-columns: 1fr !important;
    align-items: start !important;
  }

  .area-layout-balanced > .area-copy-box.area-copy-balanced,
  .area-layout-balanced >
  .area-chip-box.area-premium-card.area-premium-compact {
    height: auto !important;
    min-height: 0 !important;
    padding-bottom: 32px !important;
    align-self: auto !important;
  }

  .area-city-grid-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  /* 名古屋市を最下段中央へ配置 */
  .area-city-grid-compact .area-city:nth-child(7) {
    grid-column: 1 / -1;
    width: calc(50% - 4px);
    justify-self: center;
  }

  .area-city-grid-compact .area-city {
    min-height: 40px;
    font-size: 11px;
  }

  .area-layout-balanced
  .area-premium-compact
  .area-note-box {
    margin-top: 24px !important;
    padding-top: 20px !important;
  }
}
