@charset "UTF-8";
/* ============================================================
   〇〇電設工業株式会社 LP スタイル
   構成: 1.変数 / 2.リセット / 3.共通部品 / 4.ヘッダー / 5.各セクション
        6.フォーム / 7.フッター / 8.SP固定CTA / 9.レスポンシブ
   ============================================================ */

/* ---------- 1. 変数 ---------- */
:root {
  --navy:        #0b2545;
  --navy-mid:    #123a63;
  --navy-soft:   #1d4f80;
  --blue:        #0e7ec4;
  --cyan:        #22b8d8;
  --orange:      #ee6c1a;
  --orange-dark: #cf560c;

  --ink:    #17202e;
  --body:   #3c4858;
  --muted:  #6a7789;
  --line:   #dfe6ef;
  --line-2: #eef2f7;
  --white:  #ffffff;
  --soft:   #f4f8fc;

  --radius:    10px;
  --radius-lg: 18px;
  --shadow:    0 2px 4px rgba(11,37,69,.05), 0 12px 28px rgba(11,37,69,.07);
  --shadow-lg: 0 6px 14px rgba(11,37,69,.08), 0 24px 56px rgba(11,37,69,.12);

  --header-h: 74px;
  --font: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic",
          "Yu Gothic", "Meiryo", system-ui, sans-serif;

  --wrap: 1140px;
}

/* ---------- 2. リセット ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.85;
  color: var(--body);
  background: var(--white);
  padding-bottom: 0;
  overflow-wrap: break-word;
}

h1, h2, h3, h4, p, ul, ol, dl, dd, figure, blockquote { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img, svg { max-width: 100%; height: auto; vertical-align: middle; }
a { color: var(--blue); text-decoration: none; transition: color .2s, opacity .2s; }
a:hover { color: var(--orange); }
strong { color: var(--ink); font-weight: 700; }
em { font-style: normal; }
table { border-collapse: collapse; width: 100%; }
button { font-family: inherit; }

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 2px;
}

.visually-hidden, .skip-link {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  top: 8px; left: 8px;
  z-index: 999;
  width: auto; height: auto;
  margin: 0; padding: 10px 18px;
  clip: auto;
  background: var(--navy);
  color: #fff;
  border-radius: 6px;
}

.only-sp { display: none; }

/* ---------- 3. 共通部品 ---------- */
.container {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 24px;
}
.container--narrow { max-width: 860px; }

.section { padding: 100px 0; }
.section--soft { background: var(--soft); }
.section--dark {
  background:
    radial-gradient(1200px 500px at 15% -10%, rgba(34,184,216,.22), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, #08192f 100%);
  color: rgba(255,255,255,.82);
}
.section--contact {
  background:
    radial-gradient(900px 400px at 85% 0%, rgba(34,184,216,.18), transparent 60%),
    linear-gradient(150deg, var(--navy-mid) 0%, var(--navy) 100%);
  color: rgba(255,255,255,.85);
}

/* 見出し */
.sec-head { margin-bottom: 56px; text-align: center; }
.sec-head__en {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--cyan);
  margin-bottom: 10px;
}
.sec-head__ja {
  font-size: clamp(1.55rem, 3.6vw, 2.3rem);
  line-height: 1.45;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .02em;
}
.sec-head__ja::after {
  content: "";
  display: block;
  width: 52px; height: 4px;
  margin: 20px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}
.sec-head__lead {
  max-width: 720px;
  margin: 22px auto 0;
  font-size: .97rem;
  color: var(--muted);
}
.sec-head--invert .sec-head__ja { color: #fff; }
.sec-head--invert .sec-head__lead { color: rgba(255,255,255,.72); }

/* ボタン */
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 14px 30px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  text-align: center;
  cursor: pointer;
  transition: transform .18s, box-shadow .18s, background-color .18s;
}
.btn:hover { transform: translateY(-2px); color: #fff; }
.btn--lg { padding: 17px 38px; }
.btn--block { width: 100%; }

.btn--cta {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(238,108,26,.34);
}
.btn--cta:hover { box-shadow: 0 10px 26px rgba(238,108,26,.44); }

.btn--tel {
  background: #fff;
  color: var(--navy);
  border: 2px solid var(--navy);
  box-shadow: 0 6px 18px rgba(11,37,69,.14);
}
.btn--tel:hover { color: var(--navy); background: #f6fafe; }

.btn__sub { font-size: .74rem; font-weight: 600; opacity: .85; letter-spacing: .04em; }
.btn__main { font-size: 1.34rem; letter-spacing: .04em; }

/* 画像プレースホルダ */
.ph {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(-45deg, rgba(11,37,69,.05) 0 12px, rgba(11,37,69,.02) 12px 24px),
    linear-gradient(150deg, #dceaf6, #eff5fa);
  border: 1px dashed rgba(11,37,69,.22);
  border-radius: var(--radius);
  color: var(--navy-soft);
  overflow: hidden;
}
.ph__label {
  font-size: .82rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: .04em;
  line-height: 1.7;
}
.ph__label small { display: block; font-weight: 500; opacity: .7; font-size: .74rem; }
.ph--hero  { aspect-ratio: 4 / 5; border-radius: var(--radius-lg); }
.ph--map   { aspect-ratio: 4 / 3; }
.ph--work  { aspect-ratio: 16 / 10; border-radius: 0; border: 0; border-bottom: 1px dashed rgba(11,37,69,.18); }

/* 出現アニメーション */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- 4. ヘッダー ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-2);
  transition: box-shadow .25s;
}
.header.is-scrolled { box-shadow: 0 4px 20px rgba(11,37,69,.1); }

.header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1360px;
  height: var(--header-h);
  margin-inline: auto;
  padding-inline: 24px;
}

.logo { display: flex; align-items: center; gap: 11px; color: var(--navy); flex-shrink: 0; }
.logo:hover { color: var(--navy); opacity: .8; }
.logo__mark { display: flex; color: var(--blue); }
.logo__text { display: flex; flex-direction: column; line-height: 1.3; }
.logo__text strong { font-size: 1.13rem; letter-spacing: .04em; color: var(--navy); }
.logo__text small { font-size: .69rem; color: var(--muted); letter-spacing: .02em; }

.gnav { margin-left: auto; }
.gnav__list { display: flex; gap: 4px; }
.gnav__list a {
  display: block;
  padding: 8px 12px;
  font-size: .89rem;
  font-weight: 700;
  color: var(--navy);
  border-radius: 6px;
}
.gnav__list a:hover { background: var(--soft); color: var(--blue); }

.header__cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header__tel { display: flex; flex-direction: column; line-height: 1.25; color: var(--navy); }
.header__tel:hover { color: var(--navy); opacity: .75; }
.header__tel-label {
  font-size: .66rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .06em;
}
.header__tel-num { font-size: 1.2rem; font-weight: 700; letter-spacing: .02em; }
.header__btn { padding: 11px 22px; font-size: .89rem; }

.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  margin-left: auto;
  padding: 6px 4px;
  background: none;
  border: 0;
  color: var(--navy);
  cursor: pointer;
}
.hamburger__bars { display: block; width: 26px; }
.hamburger__bars span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.hamburger__label { font-size: .58rem; font-weight: 700; letter-spacing: .08em; }
.hamburger[aria-expanded="true"] .hamburger__bars span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] .hamburger__bars span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] .hamburger__bars span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 5-1. ヒーロー ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + 64px);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 480px at 88% 12%, rgba(34,184,216,.18), transparent 62%),
    radial-gradient(620px 420px at 4% 84%, rgba(14,126,196,.13), transparent 60%),
    linear-gradient(180deg, #f5fafe 0%, #ffffff 72%);
  z-index: -1;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 60px;
  align-items: center;
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 0 24px 84px;
}

.hero__eyebrow {
  display: inline-block;
  padding: 6px 16px;
  margin-bottom: 22px;
  border: 1px solid rgba(14,126,196,.32);
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  font-size: .78rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .06em;
}
.hero__title {
  font-size: clamp(2rem, 5.2vw, 3.3rem);
  line-height: 1.32;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .01em;
  margin-bottom: 24px;
}
.hero__title em {
  position: relative;
  color: var(--orange);
}
.hero__title em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: .04em;
  height: .28em;
  background: rgba(238,108,26,.16);
  border-radius: 3px;
  z-index: -1;
}
.hero__lead { font-size: 1.02rem; margin-bottom: 26px; max-width: 34em; }

.hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.hero__points li {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 9px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(11,37,69,.06);
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
}
.hero__points li span { font-size: .74rem; color: var(--muted); font-weight: 600; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__note { margin-top: 18px; font-size: .8rem; color: var(--muted); }

.hero__figure { position: relative; }
.hero__badge {
  position: absolute;
  bottom: -18px; left: -22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 24px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--orange);
}
.hero__badge strong { font-size: 1.3rem; color: var(--navy); line-height: 1.3; }
.hero__badge span { font-size: .74rem; color: var(--muted); font-weight: 600; letter-spacing: .06em; }

.hero__strip { background: var(--navy); color: rgba(255,255,255,.9); }
.hero__strip-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding-block: 18px;
}
.hero__strip-label {
  padding: 4px 12px;
  border-radius: 4px;
  background: rgba(34,184,216,.2);
  color: var(--cyan);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  flex-shrink: 0;
}
.hero__strip ul { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.hero__strip li {
  position: relative;
  padding-left: 16px;
  font-size: .9rem;
  font-weight: 600;
}
.hero__strip li::before {
  content: "";
  position: absolute;
  left: 0; top: .62em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
}

/* ---------- 5-2. お悩み ---------- */
.trouble-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.trouble-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.trouble-list__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  font-weight: 700;
  font-size: .92rem;
}
.trouble-list p { font-size: .97rem; line-height: 1.7; }

.trouble-bridge {
  position: relative;
  margin-top: 56px;
  padding-top: 46px;
  text-align: center;
  font-size: 1.05rem;
}
.trouble-bridge::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-top: 24px solid var(--cyan);
  opacity: .55;
}
.trouble-bridge span {
  display: block;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

/* ---------- 5-3. 選ばれる理由 ---------- */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.reason-card {
  position: relative;
  padding: 42px 28px 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.reason-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.reason-card__no {
  position: absolute;
  top: -18px; left: 26px;
  padding: 6px 16px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .08em;
}
.reason-card__title {
  font-size: 1.19rem;
  line-height: 1.5;
  color: var(--navy);
  margin-bottom: 14px;
}
.reason-card__text { font-size: .94rem; }
.reason-card__list {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}
.reason-card__list li {
  position: relative;
  padding-left: 20px;
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.7;
}
.reason-card__list li + li { margin-top: 6px; }
.reason-card__list li::before {
  content: "";
  position: absolute;
  left: 2px; top: .52em;
  width: 8px; height: 4px;
  border-left: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  transform: rotate(-45deg);
}

/* ---------- 5-4. 料金 ---------- */
.price-block { margin-bottom: 64px; }
.price-block__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 22px;
}
.price-block__tag {
  padding: 4px 12px;
  border-radius: 5px;
  background: var(--orange);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.table-wrap {
  overflow-x: auto;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  -webkit-overflow-scrolling: touch;
}
.price-table, .info-table { min-width: 640px; font-size: .93rem; }
.price-table thead th {
  padding: 15px 18px;
  background: var(--navy);
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  text-align: left;
  letter-spacing: .04em;
  white-space: nowrap;
}
.price-table tbody th,
.price-table tbody td {
  padding: 15px 18px;
  border-top: 1px solid var(--line-2);
  text-align: left;
  vertical-align: middle;
}
.price-table tbody th { font-weight: 700; color: var(--ink); }
.price-table tbody tr:nth-child(even) { background: #fbfdff; }
.price-table tbody tr:hover { background: #f2f8fd; }
.price-table td:nth-child(3) { color: var(--muted); white-space: nowrap; }
.price-table td:nth-child(4) { color: var(--muted); font-size: .86rem; }
.price-table .price {
  font-size: 1.14rem;
  font-weight: 700;
  color: var(--orange);
  white-space: nowrap;
}

.note-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 40px;
  margin-top: 26px;
  padding: 28px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--blue);
  border-radius: var(--radius);
}
.note-box__title {
  font-size: .98rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.note-box__title--alt { color: var(--orange-dark); }
.note-box__list li {
  position: relative;
  padding-left: 20px;
  font-size: .89rem;
  line-height: 1.75;
}
.note-box__list li::before {
  content: "";
  position: absolute;
  left: 3px; top: .58em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
}
.note-box__list--alt li::before {
  border-radius: 2px;
  background: var(--orange);
}

.service-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.svc-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.svc-card__head {
  padding: 26px 28px 22px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: rgba(255,255,255,.8);
}
.svc-card__head h3 { font-size: 1.25rem; color: #fff; margin-bottom: 6px; }
.svc-card__head p { font-size: .88rem; }
.svc-card__list { padding: 10px 28px 26px; }
.svc-card__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px dashed var(--line);
  font-size: .95rem;
  color: var(--ink);
}
.svc-card__list li:last-child { border-bottom: 0; }
.svc-card__list li span {
  flex-shrink: 0;
  font-weight: 700;
  color: var(--orange);
  font-size: .98rem;
}

.section__cta {
  margin-top: 56px;
  padding: 36px 32px;
  text-align: center;
  background: #fff;
  border: 2px solid var(--orange);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.section__cta p { margin-bottom: 22px; font-size: 1.02rem; }

/* ---------- 5-5. 対応エリア ---------- */
.area-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.area-group + .area-group { margin-top: 32px; }
.area-group__title {
  display: inline-block;
  padding: 6px 16px;
  margin-bottom: 16px;
  border-radius: 6px;
  background: var(--navy);
  color: #fff;
  font-size: .92rem;
  letter-spacing: .04em;
}
.area-group__title--main {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
}
.area-tags { display: flex; flex-wrap: wrap; gap: 9px; }
.area-tags li {
  padding: 8px 17px;
  background: #fff;
  border: 1px solid var(--blue);
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 700;
  color: var(--navy);
}
.area-tags--sub li { border-color: var(--line); color: var(--muted); font-weight: 600; }
.area-note {
  margin-top: 28px;
  padding: 18px 20px;
  background: var(--soft);
  border-radius: var(--radius);
  font-size: .9rem;
  color: var(--muted);
}
.area-layout__map iframe {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
  border-radius: var(--radius);
  display: block;
}

/* ---------- 5-6. 施工の流れ ---------- */
.flow-list {
  display: grid;
  gap: 0;
  max-width: 860px;
  margin-inline: auto;
}
.flow-item {
  position: relative;
  padding: 0 0 40px 42px;
  border-left: 2px solid rgba(255,255,255,.18);
}
.flow-item:last-child { border-left-color: transparent; padding-bottom: 0; }
.flow-item::before {
  content: "";
  position: absolute;
  left: -9px; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(34,184,216,.2);
}
.flow-item__step {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--cyan);
  margin-bottom: 6px;
}
.flow-item__title { font-size: 1.22rem; color: #fff; margin-bottom: 8px; }
.flow-item__text { font-size: .95rem; max-width: 40em; }

/* ---------- 5-7. 施工事例 ---------- */
.works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.work-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.work-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.work-card__body { padding: 24px 26px 26px; }
.work-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 10px;
}
.chip {
  padding: 4px 11px;
  border-radius: 4px;
  background: rgba(14,126,196,.1);
  color: var(--blue);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.work-card__title { font-size: 1.12rem; color: var(--navy); margin-bottom: 8px; line-height: 1.55; }
.work-card__text { font-size: .92rem; }
.work-card__spec {
  display: flex;
  gap: 32px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}
.work-card__spec div { display: flex; align-items: baseline; gap: 8px; }
.work-card__spec dt { font-size: .76rem; color: var(--muted); font-weight: 700; }
.work-card__spec dd { font-size: 1.02rem; font-weight: 700; color: var(--orange); }

/* ---------- 5-8. お客様の声 ---------- */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.voice-card {
  position: relative;
  padding: 46px 28px 26px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.voice-card::before {
  content: "”";
  position: absolute;
  top: 6px; left: 22px;
  font-size: 4rem;
  line-height: 1;
  color: rgba(14,126,196,.18);
  font-family: Georgia, serif;
}
.voice-card p { font-size: .96rem; }
.voice-card footer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line-2);
  font-size: .84rem;
  font-weight: 700;
  color: var(--navy);
}

/* ---------- 5-9. FAQ ---------- */
.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(11,37,69,.04);
  overflow: hidden;
}
.faq-item summary {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 56px 20px 22px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  transition: background-color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: #f8fbfe; }
.faq-item summary::before {
  content: "Q";
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
}
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 24px; top: 27px;
  width: 10px; height: 10px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(45deg);
  transition: transform .25s;
}
.faq-item[open] summary { background: #f4f9fd; }
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item__body {
  display: flex;
  gap: 14px;
  padding: 4px 24px 24px 22px;
  border-top: 1px solid var(--line-2);
  padding-top: 20px;
}
.faq-item__body::before {
  content: "A";
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
}
.faq-item__body p { font-size: .95rem; }

/* ---------- 5-10. 会社概要 ---------- */
.info-table tbody th,
.info-table tbody td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line-2);
  text-align: left;
  font-size: .94rem;
  vertical-align: top;
}
.info-table tbody th {
  width: 30%;
  background: #f8fbfd;
  color: var(--navy);
  font-weight: 700;
  white-space: nowrap;
}
.info-table tbody tr:last-child th,
.info-table tbody tr:last-child td { border-bottom: 0; }

/* ---------- 6. お問い合わせ / フォーム ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 40px;
  align-items: start;
}

.contact-tel {
  padding: 26px 24px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-lg);
  text-align: center;
}
.contact-tel__label { font-size: .84rem; font-weight: 700; color: var(--cyan); letter-spacing: .06em; }
.contact-tel__num {
  display: block;
  margin: 6px 0 4px;
  font-size: clamp(1.7rem, 4.4vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: .02em;
  line-height: 1.25;
}
.contact-tel__num:hover { color: var(--cyan); }
.contact-tel__time { font-size: .8rem; color: rgba(255,255,255,.6); }

.contact-merit {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}
.contact-merit li {
  position: relative;
  padding: 11px 16px 11px 42px;
  background: rgba(255,255,255,.05);
  border-radius: 8px;
  font-size: .93rem;
  font-weight: 700;
  color: #fff;
}
.contact-merit li::before {
  content: "";
  position: absolute;
  left: 17px; top: 1.05em;
  width: 10px; height: 5px;
  border-left: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  transform: rotate(-45deg);
}
.contact-side__note {
  margin-top: 22px;
  font-size: .8rem;
  line-height: 1.8;
  color: rgba(255,255,255,.6);
}

.form {
  padding: 34px 34px 30px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  color: var(--body);
}
.form__honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__row + .form__row,
.form__grid + .form__row,
.form__row + .form__grid { margin-top: 20px; }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form__grid + .form__grid { margin-top: 20px; }

.form__label {
  display: block;
  margin-bottom: 7px;
  font-size: .89rem;
  font-weight: 700;
  color: var(--navy);
}
.req {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 3px;
  background: #e5484d;
  color: #fff;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .04em;
  vertical-align: 1px;
}

.form__input {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: #fbfcfe;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color .2s, box-shadow .2s, background-color .2s;
  -webkit-appearance: none;
  appearance: none;
}
select.form__input {
  background-image: linear-gradient(45deg, transparent 50%, var(--navy) 50%),
                    linear-gradient(135deg, var(--navy) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}
.form__input:focus {
  outline: none;
  background: #fff;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(14,126,196,.15);
}
.form__input.is-error { border-color: #e5484d; background: #fff7f7; }
.form__textarea { resize: vertical; line-height: 1.75; }

.form__error {
  margin-top: 6px;
  font-size: .8rem;
  font-weight: 700;
  color: #d13438;
}

.form__checks { display: flex; flex-wrap: wrap; gap: 10px; }
.form__checks label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: #fbfcfe;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .91rem;
  cursor: pointer;
  transition: border-color .2s, background-color .2s;
}
.form__checks label:hover { border-color: var(--blue); }
.form__checks input { accent-color: var(--blue); width: 16px; height: 16px; margin: 0; }
.form__checks input:checked + span { font-weight: 700; color: var(--navy); }

.form__row--agree { margin-top: 24px; }
.form__agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 18px;
  background: var(--soft);
  border-radius: 8px;
  font-size: .91rem;
  cursor: pointer;
}
.form__agree input { accent-color: var(--blue); width: 17px; height: 17px; margin-top: 3px; flex-shrink: 0; }
.form__row--agree + .btn { margin-top: 24px; }
.form__note { margin-top: 14px; font-size: .8rem; color: var(--muted); text-align: center; }

/* ---------- 7. フッター ---------- */
.footer { background: #07172b; color: rgba(255,255,255,.62); padding-top: 56px; }
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
}
.footer__name { font-size: 1.24rem; font-weight: 700; color: #fff; margin-bottom: 14px; }
.footer__addr { font-size: .9rem; line-height: 1.9; }
.footer__lic {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .8rem;
  line-height: 1.85;
  color: rgba(255,255,255,.45);
}
.footer__nav ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.footer__nav a { font-size: .89rem; color: rgba(255,255,255,.68); }
.footer__nav a:hover { color: var(--cyan); }
.footer__copy {
  padding: 18px 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}

/* ---------- 8. SP固定CTA ---------- */
.sp-cta { display: none; }

/* ---------- 9. レスポンシブ ---------- */
@media (max-width: 1080px) {
  .gnav__list a { padding: 8px 9px; font-size: .84rem; }
  .header__btn { display: none; }
}

@media (max-width: 900px) {
  :root { --header-h: 62px; }

  /* ヘッダー：ドロワー化 */
  .gnav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(11,37,69,.12);
    transition: max-height .3s ease;
  }
  .gnav.is-open { max-height: 70vh; overflow-y: auto; }
  .gnav__list { display: block; padding: 8px 20px 20px; }
  .gnav__list li + li { border-top: 1px solid var(--line-2); }
  .gnav__list a { padding: 15px 4px; font-size: 1rem; border-radius: 0; }
  .header__cta { display: none; }
  .hamburger { display: flex; }

  .hero { padding-top: calc(var(--header-h) + 40px); }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 56px;
  }
  .hero__figure { max-width: 460px; margin-inline: auto; width: 100%; }
  .hero__badge { left: 0; bottom: -14px; padding: 14px 18px; }

  .trouble-list { grid-template-columns: 1fr 1fr; }
  .reason-grid { grid-template-columns: 1fr; gap: 34px; }
  .voice-grid { grid-template-columns: 1fr; }
  .works-grid { grid-template-columns: 1fr; }
  .service-cards { grid-template-columns: 1fr; }
  .note-box { grid-template-columns: 1fr; gap: 24px; }
  .note-box__title--alt { margin-top: 4px; }
  .area-layout { grid-template-columns: 1fr; gap: 34px; }
  .contact-layout { grid-template-columns: 1fr; gap: 28px; }
  .footer__inner { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 640px) {
  body { padding-bottom: 66px; }   /* SP固定CTAの高さ分 */
  .only-sp { display: inline; }

  .section { padding: 66px 0; }
  .container { padding-inline: 18px; }
  .sec-head { margin-bottom: 38px; }
  .sec-head__lead { font-size: .92rem; text-align: left; }

  .hero__title { line-height: 1.4; }
  .hero__lead { font-size: .96rem; }
  .hero__points li { padding: 7px 14px; font-size: .92rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .hero__strip-inner { padding-block: 14px; }
  .hero__strip li { font-size: .84rem; }

  .trouble-list { grid-template-columns: 1fr; gap: 12px; }
  .trouble-list li { padding: 18px; }
  .trouble-list p { font-size: .93rem; }

  .reason-card { padding: 36px 22px 26px; }
  .price-block__title { font-size: 1.15rem; flex-wrap: wrap; }
  .note-box { padding: 22px 20px; }
  .section__cta { padding: 28px 20px; }
  .section__cta p { font-size: .95rem; text-align: left; }

  .flow-item { padding-left: 30px; padding-bottom: 32px; }
  .flow-item__title { font-size: 1.1rem; }

  .work-card__body { padding: 20px; }
  .work-card__spec { gap: 22px; }

  .faq-item summary { padding: 17px 46px 17px 18px; font-size: .95rem; }
  .faq-item summary::after { right: 20px; top: 24px; }
  .faq-item__body { padding: 18px 18px 20px; }

  /* テーブルをカード化 */
  .table-wrap { overflow: visible; box-shadow: none; background: none; }
  .price-table, .info-table { min-width: 0; }
  .price-table thead { display: none; }
  .price-table tbody tr {
    display: block;
    margin-bottom: 14px;
    background: #fff !important;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
  }
  .price-table tbody th,
  .price-table tbody td {
    display: block;
    border-top: 0;
    padding: 6px 18px;
  }
  .price-table tbody th {
    padding: 14px 18px;
    background: #f4f8fc;
    font-size: .96rem;
  }
  .price-table tbody td::before {
    content: attr(data-label) "：";
    font-size: .78rem;
    font-weight: 700;
    color: var(--muted);
  }
  .price-table tbody td:last-child { padding-bottom: 16px; }
  .price-table .price { font-size: 1.2rem; }

  .info-table { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
  .info-table tbody th,
  .info-table tbody td { display: block; width: auto; white-space: normal; }
  .info-table tbody th { padding: 11px 18px 10px; font-size: .84rem; }
  .info-table tbody td { padding: 12px 18px 16px; }

  .form { padding: 24px 20px; border-radius: var(--radius); }
  .form__grid { grid-template-columns: 1fr; gap: 20px; }
  .form__checks label { font-size: .88rem; padding: 8px 13px; }

  .footer { padding-top: 44px; }
  .footer__nav ul { gap: 8px 18px; }

  /* SP固定CTA */
  .sp-cta {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255,255,255,.2);
    box-shadow: 0 -4px 16px rgba(11,37,69,.18);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .sp-cta__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 17px 8px;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: .04em;
  }
  .sp-cta__item:hover { color: #fff; }
  .sp-cta__ico { display: flex; }
  .sp-cta__item--tel  { background: var(--navy); }
  .sp-cta__item--form { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); }
}

/* ---------- 10. キャンペーン独自パーツ ---------- */
.btn--line {
  background: linear-gradient(135deg, #06c755 0%, #05a648 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(6,199,85,.32);
}
.btn--line:hover { color: #fff; box-shadow: 0 10px 26px rgba(6,199,85,.42); }

.hero__price-box {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 16px 26px;
  margin-bottom: 24px;
  background: #fff;
  border: 2px solid var(--orange);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.hero__price-box-label { font-size: .78rem; font-weight: 700; color: var(--navy); letter-spacing: .04em; }
.hero__price-box-num {
  font-size: clamp(2.1rem, 5vw, 2.7rem);
  font-weight: 700;
  color: var(--orange);
  line-height: 1.2;
}
.hero__price-box-num span { font-size: 1.15rem; font-weight: 700; margin-left: 2px; }
.hero__price-box-note { font-size: .8rem; color: var(--muted); }

.urgency-banner {
  margin-bottom: 28px;
  padding: 18px 22px;
  background: linear-gradient(135deg, rgba(238,108,26,.1), rgba(238,108,26,.04));
  border: 1px solid rgba(238,108,26,.35);
  border-radius: var(--radius);
}
.urgency-banner__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--orange-dark);
  margin-bottom: 6px;
}
.urgency-banner__text { font-size: .87rem; color: var(--body); line-height: 1.8; }

.cta-final {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}
.cta-final__note {
  flex-basis: 100%;
  margin-top: 10px;
  font-size: .88rem;
  color: rgba(255,255,255,.72);
}
.cta-final__note a { color: var(--cyan); }

@media (max-width: 640px) {
  .hero__price-box { width: 100%; }
  .sp-cta { grid-template-columns: 1fr 1fr; }
  .sp-cta__item--line { background: linear-gradient(135deg, #06c755, #05a648); }
}

/* ---------- 印刷 ---------- */
@media print {
  .header, .sp-cta, .hero__actions, .form, .skip-link { display: none !important; }
  body { padding: 0; color: #000; }
  .section, .hero { padding: 20px 0; }
  .section--dark, .section--contact { background: none !important; color: #000 !important; }
  .sec-head--invert .sec-head__ja, .flow-item__title { color: #000 !important; }
}
