:root {
  --navy: #1F3D5C;
  --navy-deep: #16314B;
  --steel: #2C6E8F;
  --steel-soft: rgba(44, 110, 143, 0.10);
  --gold: #D78A2E;
  --gold-soft: rgba(215, 138, 46, 0.12);
  --base: #FBF7F0;
  --base-soft: #F4EDE0;
  --grey: #5A6573;
  --grey-soft: #B8BFC7;
  --line: #E5DCC9;
  --white: #FFFFFF;
  --shadow: 0 12px 40px rgba(31, 61, 92, 0.10);
  --shadow-sm: 0 4px 16px rgba(31, 61, 92, 0.08);
  --radius: 14px;
  --radius-sm: 8px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: var(--navy-deep);
  background: var(--base);
  line-height: 1.75;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: normal; color: var(--gold); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 240, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
}
.logo {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.logo-mark {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.18em;
  color: var(--navy);
}
.logo-name {
  font-size: 13px;
  color: var(--grey);
  letter-spacing: 0.08em;
}
.site-nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}
.site-nav a {
  color: var(--navy);
  position: relative;
  padding: 4px 0;
}
.site-nav a:hover { color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  line-height: 1.2;
}
.btn-mini {
  padding: 9px 18px;
  font-size: 13px;
  background: var(--navy);
  color: #fff;
}
.btn-mini:hover { background: var(--gold); color: #fff; }
.btn-primary {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 8px 24px rgba(215, 138, 46, 0.32);
}
.btn-primary:hover {
  background: #C57920;
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(215, 138, 46, 0.40);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  border-color: var(--navy);
  flex-direction: column;
  gap: 2px;
  padding: 10px 24px;
}
.btn-ghost:hover {
  background: var(--navy);
  color: #fff;
}
.btn-ghost .btn-num {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.btn-ghost .btn-sub { font-size: 11px; letter-spacing: 0.10em; }
.btn-large { padding: 18px 36px; font-size: 16px; min-width: 280px; }
.btn-large.btn-ghost .btn-num { font-size: 24px; }

/* === HERO === */
.hero {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--base);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(251,247,240,0.97) 0%, rgba(251,247,240,0.94) 35%, rgba(251,247,240,0.78) 48%, rgba(251,247,240,0.30) 65%, rgba(251,247,240,0.05) 85%, rgba(251,247,240,0) 100%),
    linear-gradient(180deg, rgba(31,61,92,0.02) 0%, rgba(31,61,92,0.06) 100%);
}
.hero-inner {
  position: relative;
  z-index: 3;
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero-text { max-width: 560px; }
.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 700;
  margin: 0 0 16px;
  border-left: 3px solid var(--gold);
  padding-left: 12px;
}
.hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 24px;
  color: var(--navy-deep);
  letter-spacing: 0.04em;
  word-break: keep-all;
  overflow-wrap: anywhere;
  max-width: 760px;
}
.hero-sub {
  font-size: clamp(13px, 1.05vw, 15px);
  line-height: 1.9;
  color: var(--navy);
  margin: 0 0 32px;
  font-weight: 500;
  max-width: 500px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 580px;
  background: rgba(31, 61, 92, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  padding: 14px 12px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}
.stat {
  text-align: center;
  color: #fff;
  padding: 4px 4px;
}
.stat + .stat { border-left: 1px solid rgba(255, 255, 255, 0.18); }
.stat-num {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.stat-lbl {
  display: block;
  font-size: 11px;
  letter-spacing: 0.06em;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.85);
}

/* === SECTION COMMON === */
section { padding: 96px 0; }
.section-eyebrow {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.32em;
  color: var(--gold);
  font-weight: 700;
  margin: 0 0 16px;
}
.section-title {
  font-family: 'Noto Serif JP', serif;
  text-align: center;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.45;
  font-weight: 700;
  color: var(--navy-deep);
  margin: 0 0 16px;
  letter-spacing: 0.04em;
}
.section-lead {
  text-align: center;
  font-size: 15px;
  color: var(--grey);
  margin: 0 auto 56px;
  max-width: 720px;
}

/* === REASONS === */
.reasons { background: linear-gradient(180deg, var(--base) 0%, var(--base-soft) 100%); }
.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.reason-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.reason-img {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.reason-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.reason-body { padding: 28px 26px 30px; flex: 1; }
.reason-num {
  display: inline-block;
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.16em;
  margin-bottom: 12px;
}
.reason-h {
  font-family: 'Noto Serif JP', serif;
  font-size: 19px;
  line-height: 1.55;
  color: var(--navy-deep);
  margin: 0 0 14px;
  font-weight: 700;
}
.reason-card p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--navy);
  margin: 0;
}

/* === SERVICES === */
.services { background: var(--white); }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.svc-card {
  background: var(--base);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.svc-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.svc-card-featured {
  background: #fff;
  border: 2px solid var(--gold);
  box-shadow: 0 8px 28px rgba(215, 138, 46, 0.16);
}
.svc-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.svc-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.svc-body { padding: 24px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.svc-badge {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  background: var(--gold);
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.svc-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  line-height: 1.5;
  color: var(--navy-deep);
  margin: 0 0 10px;
  font-weight: 700;
}
.svc-desc {
  font-size: 13px;
  line-height: 1.8;
  color: var(--grey);
  margin: 0 0 16px;
  flex: 1;
}
.svc-price {
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.price-num {
  font-family: 'Noto Serif JP', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.price-unit {
  font-size: 12px;
  color: var(--grey);
}
.svc-note {
  text-align: center;
  font-size: 13px;
  color: var(--grey);
  margin-top: 32px;
}

/* === PROBLEMS === */
.problems { background: linear-gradient(180deg, var(--base-soft) 0%, var(--base) 100%); }
.prob-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.prob-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.prob-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.prob-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.prob-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--navy-deep);
  margin: 22px 22px 10px;
  font-weight: 700;
}
.prob-card p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--grey);
  margin: 0 22px 24px;
}

/* === STEPS === */
.steps { background: var(--white); }
.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}
.step-card {
  background: var(--base);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  position: relative;
}
.step-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.step-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.step-body { padding: 22px 22px 26px; }
.step-num {
  display: inline-block;
  font-family: 'Noto Serif JP', serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.18em;
  background: var(--gold-soft);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.step-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 17px;
  line-height: 1.5;
  color: var(--navy-deep);
  margin: 0 0 10px;
  font-weight: 700;
}
.step-card p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--grey);
  margin: 0;
}

/* === AREA === */
.area { background: linear-gradient(180deg, var(--base) 0%, var(--base-soft) 100%); }
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 48px;
}
.area-map img {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.area-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 24px;
  list-style: none;
  padding: 24px 0 0;
  margin: 0;
  font-size: 13px;
  color: var(--navy);
}
.area-legend li { display: flex; align-items: center; gap: 8px; }
.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
}
.dot-main { background: var(--navy); }
.dot-sub { background: var(--steel); }
.dot-mark { background: var(--gold); border: 2px solid #fff; box-shadow: 0 0 0 1px var(--gold); }
.area-list h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  color: var(--navy-deep);
  margin: 0 0 20px;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 12px;
  display: inline-block;
}
.area-cities {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
}
.area-cities li {
  font-size: 14px;
  color: var(--navy);
  padding: 8px 12px;
  background: rgba(31, 61, 92, 0.06);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--steel);
}
.area-note {
  font-size: 13px;
  color: var(--grey);
  margin: 0;
  line-height: 1.85;
}

/* === VOICES === */
.voices { background: var(--white); }
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.voice-card {
  background: var(--base);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
}
.voice-stars {
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin: 0 0 12px;
}
.voice-body {
  font-size: 14px;
  line-height: 1.95;
  color: var(--navy);
  margin: 0 0 18px;
}
.voice-meta {
  font-size: 12px;
  color: var(--grey);
  letter-spacing: 0.04em;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin: 0;
}

/* === CEO === */
.ceo { background: linear-gradient(180deg, var(--base-soft) 0%, var(--base) 100%); }
.ceo-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  margin-top: 48px;
  align-items: start;
}
.ceo-photo { width: 100%; }
.ceo-placeholder {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 100%);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.ceo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(255,255,255,0.12) 0%, transparent 40%),
    linear-gradient(135deg, transparent 0%, rgba(0,0,0,0.10) 100%);
}
.ceo-placeholder-mark {
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  letter-spacing: 0.32em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.32);
  position: relative;
  z-index: 1;
}
.ceo-placeholder-sub {
  font-size: 12px;
  letter-spacing: 0.18em;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.42);
  position: relative;
  z-index: 1;
}
.ceo-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-deep);
  margin: 0 0 24px;
  border-left: 4px solid var(--gold);
  padding-left: 14px;
}
.ceo-body p {
  font-size: 15px;
  line-height: 2;
  color: var(--navy);
  margin: 0 0 18px;
}
.ceo-meta {
  list-style: none;
  padding: 20px;
  margin: 24px 0 0;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 18px;
}
.ceo-meta li {
  font-size: 13px;
  color: var(--navy);
  padding-left: 18px;
  position: relative;
}
.ceo-meta li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

/* === COMPANY === */
.company { background: var(--white); }
.company-dl {
  max-width: 720px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.company-dl dt,
.company-dl dd {
  padding: 18px 8px;
  border-bottom: 1px solid var(--line);
  margin: 0;
}
.company-dl dt {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy-deep);
  background: var(--base);
  padding-left: 20px;
}
.company-dl dd {
  font-size: 14px;
  color: var(--navy);
  padding-left: 20px;
}
.company-dl a { color: var(--gold); font-weight: 700; }

/* === FAQ === */
.faq { background: linear-gradient(180deg, var(--base) 0%, var(--base-soft) 100%); }
.faq-list {
  max-width: 820px;
  margin: 48px auto 0;
}
.faq-list details {
  background: #fff;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.faq-list details[open] { box-shadow: var(--shadow-sm); }
.faq-list summary {
  padding: 18px 24px 18px 56px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-deep);
  cursor: pointer;
  list-style: none;
  position: relative;
  user-select: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before {
  content: 'Q';
  position: absolute;
  left: 22px;
  top: 16px;
  width: 24px;
  height: 24px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  font-weight: 700;
}
.faq-list summary::after {
  content: '＋';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
}
.faq-list details[open] summary::after { content: '−'; }
.faq-list details p {
  padding: 4px 24px 22px 56px;
  font-size: 14px;
  line-height: 1.95;
  color: var(--navy);
  margin: 0;
  position: relative;
}
.faq-list details p::before {
  content: 'A';
  position: absolute;
  left: 22px;
  top: 5px;
  width: 24px;
  height: 24px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  font-weight: 700;
}

/* === CONTACT CTA === */
.contact {
  background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 100%);
  color: #fff;
  text-align: center;
}
.contact-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  margin: 0 0 18px;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.contact-lead {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 36px;
}
.contact-cta {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.contact .btn-primary { background: var(--gold); }
.contact .btn-ghost {
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.50);
}
.contact .btn-ghost:hover {
  background: #fff;
  color: var(--navy);
}

/* === FOOTER === */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.78);
  padding: 56px 0 80px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin: 0 0 8px;
}
.footer-logo span {
  display: block;
  font-size: 13px;
  letter-spacing: 0.10em;
  color: #fff;
  margin-top: 4px;
}
.footer-addr {
  font-size: 13px;
  line-height: 1.85;
  margin: 12px 0 0;
}
.footer-copyright {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .reason-grid, .svc-grid, .voice-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .prob-grid, .step-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .area-grid, .ceo-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ceo-photo { max-width: 320px; margin: 0 auto; }
}

@media (max-width: 720px) {
  section { padding: 64px 0; }
  .container { padding: 0 18px; }
  .header-inner { padding: 12px 18px; gap: 12px; }
  .site-nav { display: none; }
  .logo-name { display: none; }
  .hero { min-height: 100vh; }
  .hero-bg img { object-position: 78% center; }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(251,247,240,0.96) 0%, rgba(251,247,240,0.88) 50%, rgba(251,247,240,0.55) 100%),
      linear-gradient(180deg, rgba(31,61,92,0.04) 0%, rgba(31,61,92,0.10) 100%);
  }
  .hero-inner { padding-top: 60px; padding-bottom: 60px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
    gap: 0;
  }
  .stat + .stat { border-left: none; }
  .stat:nth-child(2n) { border-left: 1px solid rgba(255,255,255,0.18); }
  .stat:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,0.18); padding-top: 10px; margin-top: 6px; }
  .reason-grid, .svc-grid, .prob-grid, .step-grid, .voice-grid {
    grid-template-columns: 1fr;
  }
  .company-dl { grid-template-columns: 110px 1fr; }
  .company-dl dt, .company-dl dd { padding: 14px 10px; font-size: 13px; }
  .ceo-meta { grid-template-columns: 1fr; }
  .area-cities { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
