/* ===========================================
   株式会社タイ — Corporate Site
   Concept: STYLISH × TRUST × GUTS
   =========================================== */

:root {
  --bg: #ffffff;
  --bg-2: #f4f7fb;
  --surface: #ffffff;
  --surface-2: #eef2f8;
  --line: rgba(14, 24, 46, 0.10);
  --line-strong: rgba(14, 24, 46, 0.18);
  --text: #16203a;
  --text-dim: #56607a;
  --text-mute: #939db2;
  --accent: #e23b3b;
  --accent-2: #ff5a4d;
  --gold: #c9a961;
  --radius: 14px;
  --shadow: 0 22px 50px -22px rgba(20, 34, 66, 0.22);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: opacity 0.2s, color 0.2s; }
a:hover { opacity: 0.7; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
}

.muted { color: var(--text-mute); }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .container { max-width: 1320px; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 68px;
}
.header-tel, .nav-cta, .tel-label, .tel-num { white-space: nowrap; }
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}
.logo-mark {
  display: inline-block;
  padding: 4px 10px;
  background: var(--accent);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.16em;
  border-radius: 4px;
}
.logo-text { font-size: 15px; letter-spacing: 0.12em; white-space: nowrap; }
.site-nav { display: flex; align-items: center; gap: 16px; font-size: 13.5px; }
.site-nav a { color: var(--text-dim); white-space: nowrap; }
.site-nav a:hover { color: var(--text); opacity: 1; }
.nav-cta {
  padding: 10px 20px;
  background: var(--accent);
  color: #fff !important;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
}
.nav-cta:hover { background: var(--accent-2); opacity: 1 !important; }

/* ===== Header CTA / Phone ===== */
.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-tel {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  color: var(--text);
  transition: color 0.2s;
}
.header-tel:hover { color: var(--accent); opacity: 1; }
.tel-icon { font-size: 18px; }
.tel-body { display: flex; flex-direction: column; line-height: 1; }
.tel-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.tel-num {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 19px;
  letter-spacing: 0.02em;
  color: var(--text);
}

/* ===== Mobile fixed call bar ===== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line-strong);
  box-shadow: 0 -8px 24px -12px rgba(20, 34, 66, 0.2);
  padding: 10px 12px;
  gap: 8px;
}
.mcb-tel,
.mcb-form {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 8px;
  border-radius: 10px;
  text-align: left;
  font-weight: 700;
}
.mcb-tel {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 15px;
}
.mcb-text { display: flex; flex-direction: column; line-height: 1.1; }
.mcb-small { font-size: 10px; opacity: 0.9; }
.mcb-num { font-family: "Inter", sans-serif; font-weight: 900; font-size: 17px; }
.mcb-form {
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-size: 13px;
}

/* ===== Desktop sticky CTA bar (scroll-stop) ===== */
.desk-cta-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  align-items: stretch;
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.16, 0.84, 0.44, 1);
  box-shadow: 0 -8px 30px -6px rgba(20, 34, 66, 0.22);
}
.desk-cta-bar.show { transform: translateY(0); }
.desk-cta-bar a,
.desk-cta-bar button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.desk-cta-bar a:hover { opacity: 0.93; }
.dcb-tel {
  flex: 1;
  background: linear-gradient(100deg, var(--accent), var(--accent-2));
  color: #fff;
  padding: 15px 24px;
  font-weight: 800;
}
.dcb-tel .dcb-ico { font-size: 20px; }
.dcb-tel .dcb-num {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 0.04em;
}
.dcb-tel .dcb-hours { font-size: 13px; font-weight: 600; opacity: 0.92; }
.dcb-line {
  flex: 1;
  background: #06C755;
  color: #fff;
  padding: 15px 24px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.04em;
}
.dcb-line .dcb-line-ico { display: inline-flex; line-height: 0; }
.dcb-top {
  width: 66px;
  flex: none;
  background: #16203a;
  color: #fff;
  font-size: 22px;
  transition: background 0.2s;
}
.dcb-top:hover { background: #0f1730; }

@media (min-width: 961px) {
  .desk-cta-bar { display: flex; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 14px 30px -10px rgba(226, 59, 59, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); opacity: 1; }
.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); opacity: 1; }
.btn-line {
  background: #06C755;
  color: #fff;
  box-shadow: 0 14px 30px -10px rgba(6, 199, 85, 0.5);
}
.btn-line:hover { background: #05b34c; transform: translateY(-2px); opacity: 1; }
.btn-line-ico { display: inline-flex; align-items: center; line-height: 0; }
/* 準備中（リンク無効化）: 公式LINEなど未開通の導線に付与 */
.is-soon { pointer-events: none; opacity: 0.5; cursor: default; }
.is-soon::after { content: "（準備中）"; font-weight: 700; margin-left: 2px; white-space: nowrap; }
.btn-block { width: 100%; justify-content: center; padding: 19px; font-size: 16px; }
.arrow { font-family: "Inter", sans-serif; font-weight: 900; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-bg img,
.hero-bg video.hero-media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: contrast(1.06) saturate(1.18) brightness(1.0);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.42) 30%, rgba(255, 255, 255, 0.1) 48%, rgba(255, 255, 255, 0) 64%);
}
.hero-person {
  position: absolute;
  right: -2px;
  bottom: 150px;
  height: 56%;
  width: auto;
  z-index: 1;
  object-fit: contain;
  object-position: bottom right;
  filter: drop-shadow(0 8px 22px rgba(20, 34, 66, 0.38)) drop-shadow(0 2px 5px rgba(20, 34, 66, 0.3));
  pointer-events: none;
}
/* Free estimate corner badge (top-right) */
.hero-free-corner {
  position: absolute;
  top: 96px;
  right: max(20px, calc((100% - var(--container)) / 2));
  z-index: 3;
  width: 116px; height: 116px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 14px 30px -8px rgba(226, 59, 59, 0.55);
  transform: rotate(-8deg);
  border: 3px solid #fff;
}
.hfc-area { font-size: 11px; font-weight: 700; letter-spacing: 0.04em; margin-bottom: 2px; }
.hfc-main { font-family: "Zen Kaku Gothic New", sans-serif; font-weight: 900; font-size: 22px; line-height: 1.15; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(14,24,46,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,24,46,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.hero-inner > * { max-width: 700px; }
.hero-eyebrow {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: 0.34em;
  font-size: 12px;
  color: var(--accent);
  margin: 0 0 28px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}
.hero-area-badge,
.hero-free-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.hero-area-badge {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  color: var(--text);
}
.hero-free-badge {
  background: var(--accent);
  color: #fff;
}
.hero-free-badge strong { font-weight: 900; }

.hero-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.18;
  margin: 0 0 26px;
  letter-spacing: 0.01em;
  color: var(--text);
  text-shadow: 0 2px 14px rgba(255, 255, 255, 0.9), 0 0 24px rgba(255, 255, 255, 0.85);
}
.hero-title .line { display: block; white-space: nowrap; }
.hero-title .accent {
  color: var(--accent);
}

/* Emphasized headline (colored outline) */
.hero-title.emph { text-shadow: none; }
.hero-title.emph .big {
  display: block;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.12;
  color: #ff7a1a;
  -webkit-text-stroke: 5px #fff;
  paint-order: stroke fill;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.22), 0 1px 3px rgba(0, 0, 0, 0.18);
  letter-spacing: 0.01em;
}
.hero-title.emph .sub {
  display: block;
  margin-top: 14px;
  font-size: clamp(24px, 3.1vw, 40px);
  line-height: 1.3;
  color: #16203a;
  white-space: normal;
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.95), 0 0 18px rgba(255, 255, 255, 0.9);
}
.hero-title.emph .ot {
  color: var(--accent);
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.02em;
  padding: 0 2px;
}
.sub-br { display: none; }
.hero-lead {
  font-size: 18px;
  color: var(--text);
  max-width: 540px;
  margin: 0 0 44px;
  line-height: 1.95;
  font-weight: 500;
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.95), 0 0 18px rgba(255, 255, 255, 0.9);
}
.hero-lead strong { color: var(--text); font-weight: 800; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 76px; }

.hero-stats {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid var(--line-strong);
  max-width: 720px;
}
.stat { display: flex; flex-direction: column; }
.stat .num {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 44px;
  line-height: 1;
  color: var(--text);
}
.stat .num small {
  font-size: 18px;
  margin-left: 4px;
  color: var(--accent);
  font-weight: 700;
}
.stat .label {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
}

/* ===== Hero feature band (full width bottom) ===== */
.hero-features-band {
  position: relative;
  z-index: 3;
  width: 100%;
  margin-top: 30px;
  padding: 22px 0 26px;
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
}
.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.hf-item {
  display: flex;
  flex-direction: column;
  padding: 8px 20px;
  border-left: 3px solid var(--accent);
}
.hf-num {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 8px;
}
.hf-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 17px;
  line-height: 1.35;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.hf-desc {
  font-size: 12px;
  line-height: 1.75;
  color: var(--text-dim);
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--text-dim);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 1;
}
.hero-scroll span {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: scroll 1.8s ease-in-out infinite;
}
@keyframes scroll {
  0% { transform: scaleY(0.2); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0.2); transform-origin: bottom; }
}

/* ===== Section common ===== */
.section { padding: 130px 0; position: relative; }
.section-head { margin-bottom: 70px; }
.section-head.center { text-align: center; }
.section-eyebrow {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: 0.36em;
  font-size: 12px;
  color: var(--accent);
  margin: 0 0 18px;
}
.section-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 3.6vw, 42px);
  line-height: 1.35;
  letter-spacing: 0.06em;
  color: #fff;
  background: linear-gradient(135deg, #ff8a2a 0%, #ff5a4d 100%);
  display: block;
  text-align: center;
  /* full-bleed band: extend edge to edge of the viewport */
  width: auto;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  margin-bottom: 36px;
  padding: 18px 24px;
  box-shadow: 0 10px 24px -16px rgba(255, 90, 77, 0.5);
}
.section-desc { color: var(--text-dim); font-size: 17px; margin: 0; line-height: 1.95; }

/* ===== Omakase CTA banner ===== */
.omakase { background: var(--bg); padding-bottom: 90px; }
.omakase-band {
  background: linear-gradient(135deg, #16203a 0%, #243150 100%);
  padding: 22px 24px;
  text-align: center;
  margin-bottom: 50px;
}
.omakase-band-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: clamp(20px, 2.8vw, 34px);
  line-height: 1.4;
  color: #fff;
  margin: 0;
  letter-spacing: 0.03em;
}
.omakase-band-title .ob-hl {
  color: #ffd23c;
}
.omakase-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.omakase-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.omakase-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.omakase-area-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.oa-badge {
  background: var(--accent);
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.omakase-area-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(21px, 2.5vw, 30px);
  font-weight: 900;
  margin: 0;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.omakase-cities { font-size: clamp(17px, 1.5vw, 20px); color: var(--text); line-height: 2.0; margin: 0 0 20px; font-weight: 500; }
.omakase-note { font-size: clamp(19px, 1.8vw, 24px); color: var(--text); margin: 0; font-weight: 700; line-height: 1.7; }
.omakase-note strong { color: var(--accent); font-weight: 900; }
.omakase-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== Media section (Concept / About) ===== */
.media-section { background: #fff; }
.media-section.about-teaser { background: var(--bg-2); }
.media-row {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
}
.media-row.reverse .media-visual { order: -1; }
.media-text .section-eyebrow { margin-bottom: 14px; }
.media-title {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.4;
  margin: 0 0 26px;
}
.media-title .accent-text { color: var(--accent); }
.media-lead {
  font-size: clamp(15px, 1.15vw, 17px);
  color: var(--text-dim);
  line-height: 2.0;
  margin: 0 0 32px;
}
.media-lead strong { color: var(--text); font-weight: 800; }
.media-visual {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.media-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* ===== Company intro (会社紹介) ===== */
.company-intro {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff4e8 0%, #ffe7d1 52%, #ffdcbf 100%);
  padding: clamp(64px, 8vw, 104px) 0;
}
.ci-watermark {
  position: absolute;
  left: clamp(-16px, -1vw, 0px); top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: clamp(64px, 13vw, 168px);
  letter-spacing: 0.04em;
  color: rgba(255, 122, 26, 0.16);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}
.ci-frame {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  background: linear-gradient(160deg, #ffffff 0%, #fff6ec 100%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 30px 70px -32px rgba(150, 80, 20, 0.4);
  padding: clamp(40px, 6vw, 76px) clamp(26px, 6vw, 92px);
  text-align: center;
}
.ci-name {
  margin: 0 0 28px;
  line-height: 1.15;
}
.ci-brand {
  display: block;
  font-family: "Inter", "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: clamp(34px, 5.6vw, 64px);
  color: var(--text);
  letter-spacing: 0.02em;
}
.ci-corp {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 2vw, 22px);
  color: var(--text);
  margin-top: 10px;
  letter-spacing: 0.22em;
}
.ci-desc {
  text-align: left;
  font-size: clamp(15px, 1.05vw, 16px);
  color: var(--text-dim);
  line-height: 2.1;
  margin: 0 auto;
  max-width: none;
}
.ci-desc strong { color: var(--accent); font-weight: 800; }
.ci-cta { margin-top: 34px; }
.about-body { max-width: 860px; margin: 0 auto; text-align: center; }
.about-body .media-lead { text-align: left; margin: 0 0 30px; }
.company-lead {
  max-width: 880px;
  font-size: clamp(15px, 1.1vw, 17px);
  color: var(--text-dim);
  line-height: 2.05;
  margin: 0 0 40px;
}
.company-lead strong { color: var(--accent); font-weight: 800; }

/* ===== Legal (privacy policy etc.) ===== */
.legal { max-width: 860px; margin: 0 auto; }
.legal-intro { font-size: 16px; color: var(--text-dim); line-height: 2.0; margin: 0 0 36px; }
.legal h2 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  margin: 38px 0 12px;
  padding-left: 14px;
  border-left: 5px solid var(--accent);
  line-height: 1.4;
}
.legal p { color: var(--text-dim); line-height: 1.95; margin: 0 0 14px; }
.legal ul { margin: 0 0 16px; padding-left: 1.4em; color: var(--text-dim); line-height: 1.95; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--accent); text-decoration: underline; }
.legal-note { font-size: 13px; color: var(--text-mute); margin-top: 34px; line-height: 1.8; }
.legal-date { font-size: 14px; color: var(--text-dim); margin-top: 8px; }

/* ===== Electric price menu ===== */
.price-menu { background: var(--bg); }
.price-note {
  background: linear-gradient(135deg, #ff8a2a 0%, #ff5a4d 100%);
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 16px 30px;
  border-radius: 999px;
  max-width: 1020px;
  margin: 0 auto 46px;
  font-size: clamp(13px, 1.05vw, 16px);
  line-height: 1.75;
  box-shadow: 0 14px 30px -16px rgba(255, 90, 77, 0.5);
}
.price-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pm-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 30px;
  overflow: hidden;
}
.pm-img {
  margin: -26px -30px 20px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.pm-img img { width: 100%; height: 100%; object-fit: cover; }
.pm-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--text);
  margin: 0 0 6px;
  padding-left: 14px;
  border-left: 5px solid var(--accent);
  line-height: 1.3;
}
.pm-price {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: var(--accent);
  font-weight: 900;
  font-size: clamp(22px, 2.2vw, 30px);
  margin: 0 0 12px;
  padding-left: 19px;
}
.pm-desc {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.85;
  margin: 0;
  padding-left: 19px;
}

/* ===== Services ===== */
.services { background: var(--bg-2); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(226, 59, 59, 0.5);
}
.service-card.featured {
  border-color: rgba(226, 59, 59, 0.45);
}
.service-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.service-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.service-card:hover .service-image img { transform: scale(1.06); }
.service-image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(255, 255, 255, 0.6) 100%);
}
.service-num {
  position: absolute;
  top: 20px; left: 20px;
  z-index: 1;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: #fff;
  background: var(--accent);
  padding: 6px 14px;
  border-radius: 4px;
}
.service-body { padding: 36px 32px 40px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 26px;
  font-weight: 900;
  margin: 0 0 16px;
  letter-spacing: 0.04em;
}
.service-desc { color: var(--text-dim); font-size: 14.5px; margin: 0 0 26px; line-height: 1.9; }
.service-list {
  list-style: none;
  padding: 22px 0 0;
  margin: 0 0 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
.service-list li {
  position: relative;
  padding: 8px 0 8px 22px;
  color: var(--text-dim);
}
.service-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 16px;
  width: 10px; height: 2px;
  background: var(--accent);
}

/* ===== Strengths ===== */
.strengths { background: var(--bg); }
.strengths-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.strength-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.strength-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.strength-item:last-child { border-bottom: none; }
.strength-num {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  color: var(--accent);
}
.strength-content h3 {
  font-size: 24px;
  font-weight: 900;
  margin: 0 0 14px;
  letter-spacing: 0.03em;
}
.strength-content p { color: var(--text-dim); font-size: 15px; margin: 0; line-height: 1.95; }
.strengths-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.strengths-visual img {
  width: 100%;
  display: block;
  filter: contrast(1.02);
}
.strengths-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 28px;
  background: var(--accent);
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 28px -8px rgba(226, 59, 59, 0.6);
}
.strengths-badge .big {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}
.strengths-badge .small {
  font-size: 11px;
  margin-top: 6px;
  letter-spacing: 0.12em;
  opacity: 0.92;
}

/* ===== Emergency / 24h banner ===== */
.emergency {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
}
.emergency-bg { position: absolute; inset: 0; z-index: 0; }
.emergency-bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.55);
}
.emergency-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(95deg, rgba(10, 14, 26, 0.94) 0%, rgba(10, 14, 26, 0.65) 50%, rgba(10, 14, 26, 0.4) 100%),
    radial-gradient(ellipse at 20% 50%, rgba(226, 59, 59, 0.28) 0%, transparent 55%);
}
.emergency-inner { position: relative; z-index: 1; }
.emergency-text { max-width: 820px; }
.emergency-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: clamp(27px, 3.7vw, 46px);
  line-height: 1.3;
  margin: 18px 0 28px;
  letter-spacing: 0.03em;
  color: #fff;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}
.emergency-title .et-line { display: block; }
.emergency-title .et-q { white-space: nowrap; }
.emergency-lead {
  color: #d4dcef;
  font-size: 16px;
  line-height: 2;
  margin: 0 0 36px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}
.emergency-lead .hl {
  display: inline-block;
  padding: 2px 10px;
  background: rgba(226, 59, 59, 0.2);
  border: 1px solid rgba(226, 59, 59, 0.5);
  color: #fff;
  font-weight: 700;
  border-radius: 4px;
  margin-left: 4px;
}

/* ===== Easy 2 Steps ===== */
.steps { background: var(--bg-2); }
.steps-big {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: clamp(18px, 1.9vw, 30px);
  color: var(--text);
  margin: 16px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: 4px;
  letter-spacing: 0.02em;
}
.steps-big .big2 {
  color: var(--accent);
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: 0.8;
  margin: 0 2px;
}
.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.step-card {
  flex: 1;
  max-width: 420px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  padding-bottom: 24px;
}
.step-badge {
  background: linear-gradient(135deg, #16203a, #243150);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.18em;
  padding: 12px;
}
.step-badge span {
  display: inline-block;
  color: var(--accent);
  font-size: 22px;
  margin-left: 2px;
}
.step-img { aspect-ratio: 16 / 9; overflow: hidden; }
.step-img img { width: 100%; height: 100%; object-fit: cover; }
.step-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 21px;
  color: var(--text);
  margin: 22px 0 0;
  line-height: 1.4;
}
.step-arrow {
  font-size: 36px;
  color: var(--accent);
  font-weight: 900;
  flex-shrink: 0;
}
.steps-area {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 36px 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.steps-area-text { font-size: 15px; color: var(--text-dim); line-height: 1.9; margin: 0 0 6px; }
.steps-area-text strong { color: var(--accent); font-weight: 800; font-size: 17px; }
.steps-cta-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: clamp(18px, 2.4vw, 24px);
  color: var(--text);
  margin: 14px 0 26px;
}
.steps-layout {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 52px;
  align-items: center;
}
.steps-left .section-head { margin-bottom: 34px; }
.steps-left .steps-grid { margin-bottom: 0; }
.steps-intro-text {
  font-size: clamp(15px, 1.05vw, 16px);
  color: var(--text-dim);
  line-height: 2.1;
  margin: 0 0 30px;
}
.steps-right .steps-area { max-width: none; margin: 0; }

/* Intro box (上部・枠付き) + 横並びの行 */
.steps-intro-box {
  max-width: 1040px;
  margin: 0 auto 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 30px clamp(24px, 4vw, 52px);
}
.steps-intro-box .steps-intro-text {
  margin: 0;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 2.05;
  text-align: center;
}
.steps .section-head { margin-bottom: 36px; }
.steps-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.steps-row .step-card { flex: 0 1 232px; margin: 0; }
.steps-row .step-arrow { flex: none; }
.steps-row .steps-area {
  flex: 1 1 360px;
  max-width: 440px;
  margin: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ===== Service Area ===== */
.area { background: var(--bg); }
.area-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.area-map {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.area-map-inner svg { width: 100%; height: auto; max-height: 460px; filter: drop-shadow(0 10px 30px rgba(226, 59, 59, 0.3)); }
.area-map-inner img { width: 100%; height: auto; max-height: 480px; object-fit: contain; display: block; margin: 0 auto; }
.area-pulse {
  position: absolute;
  top: 20px; right: 20px;
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(226, 59, 59, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(226, 59, 59, 0.7); }
  70% { box-shadow: 0 0 0 16px rgba(226, 59, 59, 0); }
  100% { box-shadow: 0 0 0 0 rgba(226, 59, 59, 0); }
}
.area-lead {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.95;
  margin: 0 0 30px;
}
.area-lead strong { color: var(--text); font-weight: 800; }
.prefecture-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.pref-flag {
  display: block;
  padding: 18px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  font-weight: 800;
  font-size: 16px;
  text-align: center;
  transition: transform 0.25s, border-color 0.25s;
}
.pref-flag:hover { transform: translateY(-3px); border-color: rgba(226, 59, 59, 0.5); }
.area-note { font-size: 13px; color: var(--text-mute); margin: 0; }

/* ===== Flow & Pricing ===== */
.flow { background: var(--bg-2); }
.flow-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: step;
}
.flow-step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: border-color 0.3s, transform 0.3s;
}
.flow-step:hover { border-color: rgba(226, 59, 59, 0.4); transform: translateY(-4px); }
.flow-num {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}
.flow-body h3 {
  font-size: 19px;
  font-weight: 900;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.flow-body p { color: var(--text-dim); font-size: 14px; line-height: 1.9; margin: 0; }
.badge-free {
  display: inline-block;
  padding: 3px 9px;
  background: rgba(80, 200, 130, 0.15);
  border: 1px solid rgba(80, 200, 130, 0.45);
  color: #5fcc8b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  border-radius: 4px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 30px;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); border-color: rgba(226, 59, 59, 0.4); }
.pricing-card.featured {
  border-color: rgba(226, 59, 59, 0.5);
  background: linear-gradient(160deg, #fff3f2 0%, #ffffff 100%);
}
.pricing-head { margin-bottom: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.pricing-tag {
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.pricing-from { margin: 0; display: flex; align-items: baseline; gap: 8px; }
.from-label {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.from-val {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: var(--text);
  line-height: 1;
}
.from-val small { font-size: 16px; margin-left: 4px; color: var(--text-dim); }
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: var(--text-dim);
}
.pricing-card ul li {
  position: relative;
  padding: 8px 0 8px 22px;
}
.pricing-card ul li::before {
  content: "";
  position: absolute; left: 0; top: 16px;
  width: 10px; height: 2px;
  background: var(--accent);
}
.pricing-note {
  font-size: 13px;
  color: var(--text-mute);
  margin: 0;
  line-height: 1.85;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-note strong { color: var(--text-dim); font-weight: 700; }

/* ===== FAQ ===== */
.faq { background: var(--bg); }
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item[open] { border-color: rgba(226, 59, 59, 0.4); }
.faq-item summary {
  display: grid;
  grid-template-columns: 40px 1fr 32px;
  gap: 18px;
  align-items: center;
  padding: 22px 28px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.q-mark, .a-mark {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 18px;
  border-radius: 50%;
}
.a-mark { background: var(--surface-2); border: 1px solid var(--accent); color: var(--accent); }
.q-text {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.q-toggle {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 26px;
  color: var(--accent);
  text-align: center;
  transition: transform 0.3s;
}
.faq-item[open] .q-toggle { transform: rotate(45deg); }
.faq-answer {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  padding: 6px 28px 26px;
}
.faq-answer p {
  margin: 4px 0 0;
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--text-dim);
}

/* ===== Qualifications (inside company) ===== */
.qualifications {
  margin-top: 60px;
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.qualifications-title {
  font-size: 22px;
  font-weight: 900;
  margin: 0 0 30px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 14px;
}
.qualifications-title::before {
  content: "";
  display: inline-block;
  width: 6px; height: 24px;
  background: var(--accent);
}
.qualifications-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.qualifications-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.qual-icon {
  font-size: 28px;
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(226, 59, 59, 0.12);
  border-radius: 10px;
  flex-shrink: 0;
}
.qualifications-list li > div { display: flex; flex-direction: column; gap: 4px; }
.qual-name { font-weight: 800; font-size: 15px; }
.qual-num { font-family: "Inter", sans-serif; font-size: 13px; color: var(--text-dim); }
.qual-num small { font-size: 11px; color: var(--text-mute); margin-left: 4px; }
.qual-note { font-size: 12px; color: var(--text-mute); margin: 0; line-height: 1.85; }

/* ===== Cases / Before-After ===== */
.cases { background: var(--bg); }
.case-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.case-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: center;
  transition: border-color 0.3s, transform 0.3s;
}
.case-card:hover { border-color: rgba(226, 59, 59, 0.4); transform: translateY(-4px); }
.case-pair {
  display: grid;
  grid-template-columns: 1fr 28px 1fr;
  gap: 14px;
  align-items: center;
}
.ba {
  position: relative;
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg);
}
.ba img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.ba-label {
  position: absolute;
  top: 10px; left: 10px;
  padding: 5px 12px;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.18em;
  border-radius: 4px;
  color: #fff;
}
.ba-label.before { background: rgba(50, 56, 76, 0.95); }
.ba-label.after { background: var(--accent); }
.ba-arrow {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: var(--accent);
  text-align: center;
}
.case-info {}
.case-tag {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(226, 59, 59, 0.15);
  color: var(--accent);
  border: 1px solid rgba(226, 59, 59, 0.4);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  border-radius: 4px;
  margin-bottom: 16px;
}
.case-info h3 {
  font-size: 22px;
  font-weight: 900;
  margin: 0 0 14px;
  letter-spacing: 0.03em;
  line-height: 1.4;
}
.case-info p { color: var(--text-dim); font-size: 14.5px; margin: 0; line-height: 1.95; }

/* ===== Testimonials ===== */
.testimonials { background: var(--bg-2); }
.voice-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.voice-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  align-items: start;
  transition: border-color 0.3s, transform 0.3s;
}
.voice-card:hover { border-color: rgba(226, 59, 59, 0.35); transform: translateY(-3px); }
.voice-photo {
  width: 140px; height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent);
}
.voice-photo img { width: 100%; height: 100%; object-fit: cover; }
.voice-body {}
.voice-quote {
  font-size: 22px;
  font-weight: 900;
  margin: 0 0 16px;
  letter-spacing: 0.03em;
  line-height: 1.5;
  color: var(--text);
}
.voice-text {
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 2;
  margin: 0 0 22px;
}
.voice-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.voice-customer { display: flex; flex-direction: column; gap: 4px; }
.voice-area { font-size: 12px; color: var(--text-mute); letter-spacing: 0.06em; }
.voice-name { font-size: 18px; font-weight: 800; }
.voice-name small { font-size: 13px; font-weight: 500; color: var(--text-dim); margin-left: 4px; }
.voice-tag {
  padding: 8px 16px;
  background: rgba(226, 59, 59, 0.1);
  color: var(--accent);
  border: 1px solid rgba(226, 59, 59, 0.4);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
}
.voice-tag.ac { background: rgba(64, 156, 230, 0.12); color: #6ab4ed; border-color: rgba(64, 156, 230, 0.4); }
.voice-tag.cleaning { background: rgba(80, 200, 130, 0.1); color: #5fcc8b; border-color: rgba(80, 200, 130, 0.4); }
.voice-footer {
  text-align: center;
  margin: 60px 0 0;
  font-size: 14px;
  color: var(--text-mute);
  letter-spacing: 0.05em;
}

/* ===== Leaders ===== */
.leaders { background: var(--bg-2); }
.leader-grid { display: flex; flex-direction: column; gap: 80px; }
.leader-card {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: center;
}
.leader-card.reverse { grid-template-columns: 1fr 380px; }
.leader-card.reverse .leader-photo { order: 2; }
.leader-card.reverse .leader-body { order: 1; }

.leader-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
}
.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: contrast(1.02) saturate(0.95);
}
.leader-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 14, 26, 0.85) 100%);
  pointer-events: none;
}
.leader-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  padding: 8px 18px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  border-radius: 4px;
  z-index: 1;
}
.leader-role {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: 0.28em;
  font-size: 11px;
  color: var(--accent);
  margin: 0 0 22px;
}
.leader-quote {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 900;
  line-height: 1.4;
  margin: 0 0 30px;
  letter-spacing: 0.03em;
}
.leader-text { color: var(--text-dim); font-size: 15.5px; line-height: 2.05; margin: 0; }

/* ===== Company ===== */
.company { background: var(--bg); }
.company-table {
  margin: 0;
  border-top: 1px solid var(--line);
}
.company-table > div {
  display: grid;
  grid-template-columns: 220px 1fr;
  padding: 24px 8px;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.company-table dt {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}
.company-table dd { margin: 0; font-size: 16px; color: var(--text); }

/* ===== Contact ===== */
.contact {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
}
.contact-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.contact-bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: contrast(1.02) saturate(1) brightness(1.05);
}
.contact-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(244, 247, 251, 0.97) 0%, rgba(244, 247, 251, 0.9) 50%, rgba(244, 247, 251, 0.97) 100%),
    radial-gradient(ellipse at 80% 20%, rgba(226, 59, 59, 0.10) 0%, transparent 55%);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact-title {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 900;
  line-height: 1.4;
  margin: 0 0 28px;
  letter-spacing: 0.03em;
}
.contact-lead { color: var(--text-dim); font-size: 16px; line-height: 2; margin: 0; }

.contact-form {
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 44px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 14px 16px;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.contact-form textarea { resize: vertical; }
.form-note {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--text-mute);
  text-align: center;
}

/* ===== Sub-service detail pages ===== */
.sub-intro { background: var(--bg-2); }
.sub-intro-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.sub-intro-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}
.sub-intro-image img { width: 100%; height: 100%; object-fit: cover; }
.sub-intro-lead {
  font-size: 17px;
  line-height: 2;
  color: var(--text-dim);
  margin: 12px 0 32px;
}
.sub-intro-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.sub-usecases { background: var(--bg); }
.usecase-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.usecase-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  align-items: center;
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.7;
}
.usecase-list .check {
  width: 32px; height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
  border-radius: 50%;
}

.sub-what { background: var(--bg-2); }
.what-steps {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 760px;
  counter-reset: step;
}
.what-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  counter-increment: step;
  font-size: 16px;
  line-height: 1.7;
}
.what-steps li:last-child { border-bottom: none; }
.what-steps .step-dot {
  width: 36px; height: 36px;
  background: var(--accent);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 15px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.what-steps .step-dot::after {
  content: counter(step, decimal-leading-zero);
}

.sub-price { background: var(--bg); }
.sub-price-box {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(160deg, var(--surface-2) 0%, var(--surface) 100%);
  border: 1px solid rgba(226, 59, 59, 0.45);
  border-radius: var(--radius);
  padding: 60px 40px;
}
.sub-price-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 32px;
  font-weight: 900;
  margin: 14px 0 28px;
  letter-spacing: 0.04em;
}
.sub-price-from {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  margin: 0 0 24px;
}
.sub-price-from .from-label {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--accent);
}
.sub-price-from .from-val {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  color: var(--text);
}
.sub-price-from .from-val small { font-size: 22px; margin-left: 6px; color: var(--text-dim); }
.sub-price-note {
  font-size: 14px;
  color: var(--text-mute);
  line-height: 1.85;
  margin: 0 0 36px;
}

.sub-faq { background: var(--bg-2); }

.sub-related { background: var(--bg); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.related-card {
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: inherit;
  transition: transform 0.3s, border-color 0.3s;
}
.related-card:hover {
  transform: translateY(-4px);
  border-color: rgba(226, 59, 59, 0.5);
  opacity: 1;
}
.related-cat {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.related-card h3 {
  font-size: 18px;
  font-weight: 900;
  margin: 0;
  letter-spacing: 0.03em;
  line-height: 1.4;
}
.related-arrow {
  margin-top: auto;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dim);
}

/* ===== Page Hero (sub-pages) ===== */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(226, 59, 59, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(255, 90, 77, 0.14) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(14,24,46,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,24,46,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }

.breadcrumb {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text-mute);
  margin-bottom: 28px;
}
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--accent); opacity: 1; }
.breadcrumb span { color: var(--text); font-weight: 700; }

.page-hero-eyebrow {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: 0.36em;
  font-size: 12px;
  color: var(--accent);
  margin: 0 0 16px;
}
.page-hero-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.15;
  margin: 0 0 22px;
  letter-spacing: 0.04em;
}
.page-hero-lead {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.95;
  margin: 0;
  max-width: 720px;
}

/* ===== Nav active state ===== */
.site-nav a.active {
  color: var(--text);
  position: relative;
}
.site-nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -22px;
  height: 2px;
  background: var(--accent);
}

/* ===== Section CTA ===== */
.section-cta {
  margin-top: 50px;
  text-align: center;
}

/* ===== Service preview link wrapping ===== */
.service-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}
.service-link:hover { opacity: 1; }
.service-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}

/* ===== Service Detail (services page) ===== */
.service-detail.alt { background: var(--bg-2); }
.sd-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.sd-layout.reverse { grid-template-columns: 1.2fr 1fr; }
.sd-layout.reverse .sd-image { order: 2; }
.sd-layout.reverse .sd-body { order: 1; }
.sd-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
}
.sd-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.sd-tag {
  position: absolute;
  top: 20px; left: 20px;
  padding: 10px 18px;
  background: var(--accent);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 20px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.sd-tag small {
  font-size: 9px;
  letter-spacing: 0.2em;
  opacity: 0.9;
  margin-top: 4px;
}
.sd-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.3;
  margin: 12px 0 22px;
  letter-spacing: 0.03em;
}
.sd-desc { color: var(--text-dim); font-size: 17px; line-height: 2.05; margin: 0 0 32px; }
.sd-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 22px; }
.sd-list li {
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
}
.sd-list h3 { font-size: 17px; font-weight: 900; margin: 0 0 10px; display: flex; align-items: center; gap: 10px; }
.sd-list p { font-size: 14px; color: var(--text-dim); margin: 0; line-height: 1.85; }
.sd-list.linked li { padding: 0; transition: transform 0.25s, border-color 0.25s; }
.sd-list.linked li a {
  display: block;
  padding: 22px 24px;
  color: inherit;
  text-decoration: none;
}
.sd-list.linked li a:hover { opacity: 1; }
.sd-list.linked li:hover {
  transform: translateX(6px);
  border-left-color: var(--accent-2);
  background: var(--surface-2);
}
.sd-arrow {
  margin-left: auto;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  color: var(--accent);
  transition: transform 0.25s;
}
.sd-list.linked li:hover .sd-arrow { transform: translateX(4px); }

/* ===== Service menu tiles (square, 4-up grid) ===== */
.sd-head { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.sd-head .sd-title { margin: 12px 0 16px; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.menu-tile {
  display: flex;
  flex-direction: column;
  min-height: 232px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, border-color 0.25s;
}
.menu-tile:hover { transform: translateY(-4px); border-color: rgba(226, 59, 59, 0.4); opacity: 1; }
.menu-tile-head {
  background: linear-gradient(135deg, #ff8a2a 0%, #ff5a4d 100%);
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: 0.02em;
  padding: 14px 12px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
}
.menu-tile-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 16px;
  text-align: center;
}
.menu-tile-body p { margin: 0; font-size: 12.5px; line-height: 1.85; color: var(--text-dim); }
.menu-tile-img { width: 100%; height: 122px; overflow: hidden; flex: none; }
.menu-tile-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.menu-tile:hover .menu-tile-img img { transform: scale(1.04); transition: transform 0.4s; }

/* ===== Header services dropdown ===== */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-dropdown > a::after {
  content: "";
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 28px;
  min-width: 720px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.7);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 110;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-col h5 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-strong);
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
}
.dropdown-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dropdown-col li a {
  display: block;
  padding: 8px 10px;
  font-size: 13.5px;
  color: var(--text-dim);
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.dropdown-col li a:hover {
  background: rgba(226, 59, 59, 0.12);
  color: var(--text);
  opacity: 1;
}

/* ===== Strength Grid 3 ===== */
.strength-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.strength-card {
  padding: 40px 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.strength-card:hover { transform: translateY(-4px); border-color: rgba(226, 59, 59, 0.4); }
.strength-card .strength-num {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 18px;
  line-height: 1;
}
.strength-card h3 { font-size: 22px; font-weight: 900; margin: 0 0 14px; letter-spacing: 0.03em; }
.strength-card p { color: var(--text-dim); font-size: 14px; line-height: 1.95; margin: 0; }

/* ===== Promises (pricing page) ===== */
.promises { background: var(--bg-2); }
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.promise-card {
  padding: 44px 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.promise-card:hover { transform: translateY(-4px); }
.promise-card.featured {
  border-color: rgba(226, 59, 59, 0.5);
  background: linear-gradient(160deg, #fff3f2 0%, #ffffff 100%);
}
.promise-icon {
  width: 72px; height: 72px;
  margin: 0 auto 22px;
  background: rgba(226, 59, 59, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}
.promise-card h3 {
  font-size: 20px;
  font-weight: 900;
  margin: 0 0 14px;
  letter-spacing: 0.03em;
  line-height: 1.4;
}
.promise-card p { color: var(--text-dim); font-size: 14px; line-height: 1.95; margin: 0; }

.pricing-section { background: var(--bg); }

/* ===== Contact methods (contact page) ===== */
.contact-methods-section { background: var(--bg-2); }
.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.contact-methods.two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
  margin: 0 auto;
}
.contact-methods.stacked {
  grid-template-columns: 1fr;
  gap: 20px;
}
.contact-method {
  padding: 40px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.contact-method:hover { transform: translateY(-4px); border-color: rgba(226, 59, 59, 0.4); }
.contact-method.featured {
  border-color: rgba(226, 59, 59, 0.5);
  background: linear-gradient(160deg, #fff3f2 0%, #ffffff 100%);
}
.cm-icon {
  width: 72px; height: 72px;
  margin: 0 auto 18px;
  background: rgba(226, 59, 59, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}
.contact-method h3 { font-size: 20px; font-weight: 900; margin: 0 0 12px; letter-spacing: 0.03em; }
.contact-method > p { color: var(--text-dim); font-size: 13.5px; line-height: 1.85; margin: 0 0 18px; }
.cm-action {
  display: inline-block;
  padding: 10px 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.02em;
}
.cm-action:hover { background: var(--accent-2); opacity: 1; }
.cm-note { margin: 14px 0 0 !important; font-size: 11px !important; color: var(--text-mute) !important; }

/* Contact form points and labels */
.contact-points {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-points li {
  font-size: 14px;
  color: var(--text-dim);
  padding-left: 4px;
}
.required, .optional {
  display: inline-block;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  border-radius: 3px;
  margin-left: 8px;
  vertical-align: middle;
}
.required { background: var(--accent); color: #fff; }
.optional { background: var(--surface-2); color: var(--text-mute); border: 1px solid var(--line); }

/* CTA num (inline on button) */
.cta-num {
  margin-left: 6px;
  font-family: "Inter", sans-serif;
  font-weight: 900;
}

/* ===== Cases page additions ===== */
.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.case-meta > div { display: flex; gap: 8px; align-items: baseline; }
.case-meta dt { font-size: 11px; color: var(--text-mute); letter-spacing: 0.1em; margin: 0; }
.case-meta dd { font-size: 13px; font-weight: 700; margin: 0; }
.case-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-mute);
  margin: 40px 0 0;
}

/* About leader name */
.leader-name {
  margin: 24px 0 0;
  font-size: 14px;
  color: var(--text-dim);
}
.leader-name strong { font-size: 17px; color: var(--text); font-weight: 900; margin-left: 4px; letter-spacing: 0.04em; }

/* ===== Contact CTA box (used on all pages) ===== */
.contact-cta {
  background:
    radial-gradient(ellipse at 70% 50%, rgba(226, 59, 59, 0.22) 0%, transparent 55%),
    var(--bg-2);
}
.cta-box {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.cta-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.03em;
  margin: 18px 0 22px;
}
.cta-lead { color: var(--text-dim); font-size: 16px; line-height: 1.95; margin: 0 0 36px; }
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Footer (multi-column) ===== */
.site-footer {
  padding: 70px 0 40px;
  background: var(--surface-2);
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand-box {}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.footer-desc {
  color: var(--text-dim);
  font-size: 13.5px;
  line-height: 1.95;
  margin: 0 0 22px;
}
.footer-tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--text);
}
.footer-tel:hover { color: var(--accent); opacity: 1; }
.footer-links h4 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0 0 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-strong);
  color: var(--text);
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  font-size: 13.5px;
  color: var(--text-dim);
}
.footer-links a:hover { color: var(--accent); opacity: 1; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.footer-copy {
  margin: 0;
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.1em;
}

/* ===== Responsive ===== */
@media (max-width: 1180px) {
  .header-tel { display: none; }
}
@media (max-width: 960px) {
  .site-nav { display: none; }
  .header-tel { display: none; }
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 80px; }
  .area-layout { grid-template-columns: 1fr; gap: 40px; }
  .area-map { max-width: 360px; margin: 0 auto; aspect-ratio: auto; padding: 30px; }
  .omakase-body { grid-template-columns: 1fr; gap: 28px; }
  .omakase-photo { max-width: 480px; margin: 0 auto; }
  .omakase-area-title { white-space: normal; }
  .media-row { grid-template-columns: 1fr; gap: 32px; }
  .media-row.reverse .media-visual { order: 0; }
  .media-visual { max-width: 560px; margin: 0 auto; width: 100%; }
  .media-title { margin-bottom: 18px; }
  .media-lead { margin-bottom: 24px; }
  .price-menu-grid { grid-template-columns: 1fr; gap: 16px; }
  .steps-layout { grid-template-columns: 1fr; gap: 40px; }
  .steps-row { flex-direction: column; }
  .steps-row .step-card, .steps-row .steps-area { flex: none; width: 100%; max-width: 480px; }
  .steps-grid { flex-direction: column; gap: 14px; }
  .step-card { max-width: 100%; width: 100%; }
  .step-arrow { transform: rotate(90deg); }
  .flow-steps { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .qualifications-list { grid-template-columns: 1fr; }
  .qualifications { padding: 28px; }
  .service-grid { grid-template-columns: 1fr; }
  .strengths-layout { grid-template-columns: 1fr; gap: 50px; }
  .leader-card,
  .leader-card.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .leader-card.reverse .leader-photo { order: 0; }
  .leader-card.reverse .leader-body { order: 0; }
  .leader-photo { max-width: 360px; }
  .contact-inner { grid-template-columns: 1fr; gap: 50px; }
  .company-table > div { grid-template-columns: 130px 1fr; }
  .section { padding: 90px 0; }
  .hero-stats { gap: 32px; }
  .stat .num { font-size: 34px; }
  .hero-features { grid-template-columns: repeat(2, 1fr); gap: 8px 12px; }
  .hero-features-band { margin-top: 24px; padding: 18px 0 20px; }
  .hf-item { padding: 8px 14px; }
  .hf-desc { display: none; }
  .hero-person {
    display: none; /* スマホ・タブレットでは透けて見えて不自然なため非表示 */
  }
  .hero-free-corner {
    width: 86px; height: 86px;
    top: 84px;
    right: 16px;
  }
  .hfc-main { font-size: 17px; }
  .hfc-area { font-size: 9px; }
  .case-card { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
  .voice-card { grid-template-columns: 1fr; gap: 20px; padding: 28px; text-align: center; }
  .voice-photo { margin: 0 auto; }
  .voice-meta { justify-content: center; }
  .emergency { padding: 80px 0; }
  .sd-layout, .sd-layout.reverse { grid-template-columns: 1fr; gap: 36px; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .sd-layout.reverse .sd-image { order: 0; }
  .sd-layout.reverse .sd-body { order: 0; }
  .sd-image { max-width: 480px; margin: 0 auto; aspect-ratio: 4/3; }
  .sub-intro-layout { grid-template-columns: 1fr; gap: 36px; }
  .usecase-list { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .sub-price-box { padding: 44px 24px; }
  .sub-price-from .from-val { font-size: 42px; }
  .strength-grid-3 { grid-template-columns: 1fr; }
  .promise-grid { grid-template-columns: 1fr; }
  .contact-methods { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .page-hero { padding: 130px 0 60px; }
  .cta-actions { flex-direction: column; align-items: stretch; }
}

@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .hero { padding: 110px 0 70px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .contact-form { padding: 28px; }
  .strength-item { grid-template-columns: 60px 1fr; gap: 18px; }
  .strength-num { font-size: 42px; }
  .service-body { padding: 28px 24px 32px; }
  .prefecture-list { grid-template-columns: repeat(2, 1fr); }
  .faq-item summary { grid-template-columns: 32px 1fr 24px; gap: 12px; padding: 18px 18px; }
  .q-mark, .a-mark { width: 32px; height: 32px; font-size: 15px; }
  .q-text { font-size: 14px; }
  .faq-answer { grid-template-columns: 32px 1fr; gap: 12px; padding: 6px 18px 22px; }
}
