@charset "utf-8";
/* ==========================================================================
   株式会社サンコー電設 コーポレートサイト
   デザイン方針：赤系 / シンプル / 男性的 / 気軽め / リーズナブル
   ========================================================================== */

/* --- 変数 ---------------------------------------------------------------- */
:root {
  --brand: #cc1f2b;          /* メインの赤 */
  --brand-dark: #a4161f;
  --brand-tint: #fdf2f2;
  --ink: #23262b;            /* 文字（チャコール） */
  --ink-2: #4d535c;
  --ink-3: #7c848f;
  --line: #e2e5ea;
  --bg: #ffffff;
  --bg-tint: #f5f6f8;
  --dark: #23262b;
  --radius: 4px;
  --container: 1120px;
  --header-h: 84px;
}

/* --- リセット ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.9;
  color: var(--ink);
  background: var(--bg);
  font-feature-settings: "palt";
}
img, iframe { max-width: 100%; }
h1, h2, h3, h4, p, ul, ol, dl, dd, figure, table { margin: 0; padding: 0; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
table { border-collapse: collapse; width: 100%; }

.icon { width: 1em; height: 1em; flex: none; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--brand); color: #fff; padding: 10px 16px;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; }

/* --- レイアウト ---------------------------------------------------------- */
.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.container--narrow { width: min(100% - 40px, 840px); }

.section { padding: 76px 0; }
.section--tint { background: var(--bg-tint); }

.sec-title { text-align: center; margin-bottom: 44px; }
.sec-title__en {
  display: block; color: var(--brand); font-size: 13px; font-weight: 700;
  letter-spacing: .16em;
}
.sec-title__ja {
  font-size: clamp(24px, 4vw, 32px); font-weight: 700; letter-spacing: .04em;
  margin-top: 4px;
}
.sec-title__ja::after {
  content: ""; display: block; width: 40px; height: 3px;
  background: var(--brand); margin: 14px auto 0;
}
.sec-lead { max-width: 800px; margin: 0 auto 40px; text-align: center; color: var(--ink-2); }
.sec-lead--top { margin-bottom: 48px; }
.sec-foot { text-align: center; margin-top: 40px; }
.note { margin-top: 20px; font-size: 14px; color: var(--ink-3); }

/* --- ボタン -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius); border: 2px solid transparent;
  font-weight: 700; letter-spacing: .04em; line-height: 1.4;
  transition: background-color .2s, color .2s, border-color .2s;
}
.btn--lg { padding: 16px 34px; font-size: 17px; }
.btn--primary { background: var(--dark); color: #fff; border-color: var(--dark); }
.btn--primary:hover { background: #000; border-color: #000; }
.btn--accent { background: var(--brand); color: #fff; border-color: var(--brand); }
.btn--accent:hover { background: var(--brand-dark); border-color: var(--brand-dark); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn--ghost:hover { background: rgba(255,255,255,.14); border-color: #fff; }

/* --- ヘッダー ------------------------------------------------------------ */
.header {
  position: sticky; top: 0; z-index: 100; background: #fff;
  border-bottom: 1px solid var(--line);
}
.header__inner {
  width: min(100% - 32px, 1280px); margin-inline: auto;
  min-height: var(--header-h); display: flex; align-items: center; gap: 20px;
}
.logo { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.logo__mark {
  width: 40px; height: 40px; display: grid; place-items: center;
  background: var(--brand); color: #fff; border-radius: var(--radius); font-size: 22px;
}
.logo__mark .icon { fill: currentColor; stroke: none; }
.logo__ja { display: block; font-size: 19px; font-weight: 700; letter-spacing: .04em; line-height: 1.3; }
.logo__en { display: block; font-size: 10px; color: var(--ink-3); letter-spacing: .12em; }

.gnav { display: flex; align-items: center; gap: 24px; }
.gnav__list { display: flex; align-items: center; gap: 4px; }
.gnav__link {
  display: block; padding: 8px 12px; font-size: 15px; font-weight: 500;
  border-bottom: 2px solid transparent;
}
.gnav__link:hover, .gnav__link.is-active { color: var(--brand); border-bottom-color: var(--brand); }
.gnav__link--cta {
  background: var(--brand); color: #fff; border-radius: var(--radius);
  padding: 10px 18px; margin-left: 8px; border-bottom: none;
}
.gnav__link--cta:hover, .gnav__link--cta.is-active {
  background: var(--brand-dark); color: #fff; border-bottom-color: transparent;
}
.gnav__tel { display: none; }

.hamburger { display: none; }

/* --- ヒーロー ------------------------------------------------------------ */
.hero { position: relative; color: #fff; background: var(--dark); overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(115deg, rgba(204,31,43,.92) 0%, rgba(204,31,43,0) 46%),
    url("/assets/img/hero.svg");
  background-size: cover, cover;
  background-position: center, center;
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(20,22,26,.72), rgba(20,22,26,.35));
}
.hero__inner { position: relative; padding: 92px 0 84px; }
.hero__sub {
  display: inline-block; font-size: 14px; font-weight: 700; letter-spacing: .08em;
  border: 1px solid rgba(255,255,255,.5); padding: 5px 14px; border-radius: 100px;
}
.hero__title {
  font-size: clamp(30px, 6vw, 52px); font-weight: 700; line-height: 1.4;
  letter-spacing: .02em; margin: 20px 0 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.hero__lead { max-width: 620px; color: rgba(255,255,255,.92); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__points {
  display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 34px;
  font-size: 15px; font-weight: 500;
}
.hero__points li { display: flex; align-items: center; gap: 7px; }
.hero__points .icon { color: #ff5a63; width: 20px; height: 20px; stroke-width: 2.6; }

/* --- 下層ページヘッダー -------------------------------------------------- */
.page-head {
  background: var(--dark); color: #fff; padding: 56px 0;
  background-image: linear-gradient(100deg, rgba(204,31,43,.9), rgba(204,31,43,0) 55%);
}
.page-head__en { font-size: 13px; font-weight: 700; letter-spacing: .16em; color: rgba(255,255,255,.75); }
.page-head__title { font-size: clamp(26px, 4.6vw, 38px); font-weight: 700; letter-spacing: .04em; margin-top: 2px; }

.breadcrumb { border-bottom: 1px solid var(--line); font-size: 13px; color: var(--ink-3); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; padding: 12px 0; }
.breadcrumb li + li::before { content: "›"; margin-right: 8px; color: var(--ink-3); }
.breadcrumb a:hover { color: var(--brand); text-decoration: underline; }

/* --- 選ばれる理由 -------------------------------------------------------- */
.feature-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.feature-card {
  background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--brand);
  border-radius: var(--radius); padding: 30px 26px;
}
.feature-card__icon {
  display: grid; place-items: center; width: 52px; height: 52px; font-size: 28px;
  background: var(--brand-tint); color: var(--brand); border-radius: var(--radius); margin-bottom: 16px;
}
.feature-card__title { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.feature-card__text { font-size: 15px; color: var(--ink-2); }
.feature-card--sm { border-top-width: 3px; }

/* --- 業務内容カード ------------------------------------------------------ */
.service-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.service-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 24px; transition: border-color .2s, transform .2s;
}
.service-card:hover { border-color: var(--brand); transform: translateY(-3px); }
.service-card__icon { font-size: 32px; color: var(--brand); margin-bottom: 14px; }
.service-card__title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.service-card__text { font-size: 14px; color: var(--ink-2); flex: 1; }
.service-card__more {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
  font-size: 14px; font-weight: 700; color: var(--brand);
}
.service-card__more .icon { width: 18px; height: 18px; }

/* --- 業務内容詳細 -------------------------------------------------------- */
.anchor-nav { margin-bottom: 48px; }
.anchor-nav ul { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.anchor-nav a {
  display: block; padding: 9px 18px; border: 1px solid var(--line); border-radius: 100px;
  font-size: 14px; font-weight: 500; background: #fff;
}
.anchor-nav a:hover { border-color: var(--brand); color: var(--brand); }

.service-detail-list { display: grid; gap: 28px; }
.service-detail { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.service-detail__head {
  display: flex; align-items: center; gap: 14px; padding: 20px 26px;
  background: var(--dark); color: #fff;
}
.service-detail__num { font-size: 22px; font-weight: 700; color: var(--brand); letter-spacing: .04em; }
.service-detail__icon { font-size: 26px; display: grid; place-items: center; }
.service-detail__title { font-size: clamp(19px, 3vw, 24px); font-weight: 700; }
.service-detail__body { padding: 28px 26px 32px; }
.service-detail__summary { color: var(--ink-2); }
.service-detail__sub {
  font-size: 15px; font-weight: 700; margin: 22px 0 12px; padding-left: 12px;
  border-left: 4px solid var(--brand);
}

.check-list { display: grid; gap: 10px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.check-list--2col { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.check-list li { display: flex; gap: 10px; font-size: 15px; }
.check-list .icon { width: 20px; height: 20px; color: var(--brand); margin-top: 5px; stroke-width: 2.6; }

/* --- 管理業務 ------------------------------------------------------------ */
.mgmt-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.mgmt-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px;
}
.mgmt-card__step { font-size: 26px; font-weight: 700; color: var(--brand); line-height: 1; }
.mgmt-card__title { font-size: 18px; font-weight: 700; margin: 10px 0 8px; }
.mgmt-card__text { font-size: 14px; color: var(--ink-2); }

.mgmt-detail-list { display: grid; gap: 16px; }
.mgmt-detail {
  display: flex; gap: 22px; align-items: flex-start; background: #fff;
  border: 1px solid var(--line); border-left: 4px solid var(--brand);
  border-radius: var(--radius); padding: 26px 28px;
}
.mgmt-detail__step { font-size: 32px; font-weight: 700; color: var(--brand); line-height: 1.2; letter-spacing: .02em; }
.mgmt-detail__title { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.mgmt-detail__text { color: var(--ink-2); font-size: 15px; }

/* --- 施工実績 ------------------------------------------------------------ */
.work-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.work-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.work-card__thumb {
  aspect-ratio: 4 / 3; display: grid; place-items: center;
  background: var(--dark) url("/assets/img/pattern.svg") center/cover;
  color: #fff;
}
.work-card__thumb span {
  border: 2px solid rgba(255,255,255,.85); padding: 6px 18px; font-weight: 700; letter-spacing: .08em;
}
.work-card__body { padding: 22px 22px 26px; }
.work-card__cat { font-size: 12px; font-weight: 700; color: var(--brand); letter-spacing: .08em; }
.work-card__title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.work-card__text { font-size: 14px; color: var(--ink-2); }

/* --- 流れ ---------------------------------------------------------------- */
.flow { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); counter-reset: flow; }
.flow__item {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px 22px;
}
.flow__num { font-size: 12px; font-weight: 700; letter-spacing: .1em; color: #fff; background: var(--brand); padding: 3px 10px; border-radius: 100px; }
.flow__title { font-size: 18px; font-weight: 700; margin: 12px 0 6px; }
.flow__text { font-size: 14px; color: var(--ink-2); }

/* --- FAQ ----------------------------------------------------------------- */
.faq { display: grid; gap: 12px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.faq__q {
  display: flex; align-items: flex-start; gap: 12px; padding: 18px 22px;
  font-weight: 700; cursor: pointer; list-style: none; position: relative; padding-right: 52px;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::before { content: "Q"; color: var(--brand); font-size: 18px; line-height: 1.6; }
.faq__q::after {
  content: ""; position: absolute; right: 22px; top: 26px; width: 12px; height: 12px;
  border-right: 2px solid var(--ink-3); border-bottom: 2px solid var(--ink-3);
  transform: rotate(45deg); transition: transform .2s;
}
.faq__item[open] .faq__q::after { transform: rotate(-135deg); }
.faq__a { padding: 0 22px 20px 54px; font-size: 15px; color: var(--ink-2); }

/* --- 会社概要 ------------------------------------------------------------ */
.message__body p { margin-bottom: 18px; }
.message__name { text-align: right; font-weight: 700; margin-top: 24px; }

.table { background: #fff; border: 1px solid var(--line); font-size: 15px; }
.table th, .table td { padding: 16px 20px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.table tr:last-child th, .table tr:last-child td { border-bottom: none; }
.table th { width: 30%; background: var(--bg-tint); font-weight: 700; white-space: nowrap; }

.history { display: grid; }
.history__item {
  display: flex; gap: 24px; padding: 16px 0; border-bottom: 1px dashed var(--line); font-size: 15px;
}
.history__year { font-weight: 700; color: var(--brand); flex: none; width: 96px; }

/* --- アクセス ------------------------------------------------------------ */
.access { display: grid; gap: 32px; grid-template-columns: minmax(280px, 360px) 1fr; align-items: start; }
.access__name { font-size: 22px; font-weight: 700; margin-bottom: 16px; }
.access__dl { margin-bottom: 24px; font-size: 15px; }
.access__dl dt { font-weight: 700; color: var(--brand); font-size: 13px; letter-spacing: .06em; margin-top: 14px; }
.access__dl dd { margin-left: 0; }
.access__dl a:hover { text-decoration: underline; }
.access__map { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.access__map iframe { display: block; width: 100%; height: 440px; border: 0; }
.access__routes { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); margin-top: 32px; }
.access__route { background: var(--bg-tint); border-radius: var(--radius); padding: 20px 22px; }
.access__route h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.access__route p { font-size: 15px; color: var(--ink-2); }

/* --- フォーム ------------------------------------------------------------ */
.contact-tel { text-align: center; margin-bottom: 44px; }
.contact-tel a {
  display: inline-flex; align-items: center; gap: 12px; padding: 16px 34px;
  border: 2px solid var(--brand); border-radius: var(--radius); color: var(--brand);
}
.contact-tel a:hover { background: var(--brand-tint); }
.contact-tel .icon { width: 34px; height: 34px; }
.contact-tel b { display: block; font-size: 30px; line-height: 1.2; letter-spacing: .02em; }
.contact-tel small { display: block; font-size: 12px; color: var(--ink-2); }

.form { display: grid; gap: 22px; }
.form__label { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 15px; margin-bottom: 8px; }
.req { background: var(--brand); color: #fff; font-size: 11px; padding: 2px 8px; border-radius: 2px; font-weight: 700; }
.form__input {
  width: 100%; padding: 13px 15px; border: 1px solid #c9ced6; border-radius: var(--radius);
  font: inherit; font-size: 16px; background: #fff; color: var(--ink);
}
.form__input:focus { border-color: var(--brand); outline: none; box-shadow: 0 0 0 3px rgba(204,31,43,.15); }
.form__input::placeholder { color: #aab1ba; }
.form__textarea { resize: vertical; line-height: 1.8; }
.form__error { color: var(--brand); font-size: 13px; font-weight: 700; margin-top: 6px; display: none; }
.form__error.is-shown { display: block; }
.form__input.is-invalid { border-color: var(--brand); background: var(--brand-tint); }
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__check { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; justify-content: center; }
.form__check input { width: 20px; height: 20px; margin-top: 4px; accent-color: var(--brand); }
.form__check a { color: var(--brand); text-decoration: underline; }
.form__row--check { text-align: center; background: var(--bg-tint); padding: 20px; border-radius: var(--radius); }
.form__submit { text-align: center; }
.form__submit .btn { min-width: 280px; }
.form__submit .btn[disabled] { opacity: .6; pointer-events: none; }
.form__status { text-align: center; font-weight: 700; }
.form__status.is-ok { color: #17803d; }
.form__status.is-ng { color: var(--brand); }

/* --- CTA ----------------------------------------------------------------- */
.cta { background: var(--dark) url("/assets/img/pattern.svg") center/cover; color: #fff; padding: 60px 0; }
.cta__inner { text-align: center; }
.cta__lead { font-size: clamp(20px, 3.4vw, 28px); font-weight: 700; letter-spacing: .02em; }
.cta__sub { color: rgba(255,255,255,.85); font-size: 15px; margin-top: 6px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; align-items: center; margin-top: 26px; }
.cta__tel {
  display: inline-flex; align-items: center; gap: 12px; padding: 12px 28px;
  background: #fff; color: var(--brand); border-radius: var(--radius);
}
.cta__tel:hover { background: #f2f2f2; }
.cta__tel .icon { width: 30px; height: 30px; }
.cta__tel b { display: block; font-size: 27px; line-height: 1.2; }
.cta__tel small { display: block; font-size: 11px; color: var(--ink-2); }

/* --- フッター ------------------------------------------------------------ */
.footer { background: #1a1d21; color: #cfd3d9; padding: 48px 0 0; font-size: 14px; }
.footer__inner { display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; }
.footer__name { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.footer__addr { line-height: 1.9; }
.footer__map { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; color: #fff; }
.footer__map:hover { text-decoration: underline; }
.footer__nav ul { display: grid; grid-template-columns: repeat(2, minmax(120px, 1fr)); gap: 8px 32px; }
.footer__nav a:hover { color: #fff; text-decoration: underline; }
.copyright {
  text-align: center; font-size: 12px; color: #8a9099; margin-top: 40px;
  padding: 16px; border-top: 1px solid #2c3036;
}

/* --- 404 ----------------------------------------------------------------- */
.section--404 { text-align: center; padding: 100px 0; }
.nf__code { font-size: 72px; font-weight: 700; color: var(--brand); line-height: 1; }
.nf__title { font-size: clamp(20px, 4vw, 28px); font-weight: 700; margin: 12px 0 16px; }
.nf__text { color: var(--ink-2); margin-bottom: 28px; }

/* --- 本文（プライバシー） ------------------------------------------------ */
.prose h2 { font-size: 18px; font-weight: 700; margin: 32px 0 8px; padding-left: 12px; border-left: 4px solid var(--brand); }
.prose p { color: var(--ink-2); font-size: 15px; }
.prose__date { margin-top: 40px; text-align: right; }

/* --- レスポンシブ -------------------------------------------------------- */
@media (max-width: 1080px) {
  .gnav__link { padding: 8px 8px; font-size: 14px; }
}

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

  .hamburger {
    display: flex; flex-direction: column; align-items: center; gap: 3px;
    background: none; border: none; padding: 4px 2px; color: var(--ink);
  }
  .hamburger__bars { display: block; width: 26px; height: 18px; position: relative; }
  .hamburger__bars i {
    position: absolute; left: 0; width: 100%; height: 2px; background: var(--ink);
    transition: transform .25s, opacity .2s;
  }
  .hamburger__bars i:nth-child(1) { top: 0; }
  .hamburger__bars i:nth-child(2) { top: 8px; }
  .hamburger__bars i:nth-child(3) { top: 16px; }
  .hamburger__label { font-size: 9px; font-weight: 700; letter-spacing: .1em; }
  .hamburger[aria-expanded="true"] i:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger[aria-expanded="true"] i:nth-child(2) { opacity: 0; }
  .hamburger[aria-expanded="true"] i:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .gnav {
    position: fixed; top: var(--header-h); right: 0; z-index: 99;
    width: min(320px, 86vw); height: calc(100dvh - var(--header-h));
    background: #fff; border-left: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 12px 20px 40px; overflow-y: auto;
    transform: translateX(100%); transition: transform .25s ease; visibility: hidden;
  }
  .gnav.is-open { transform: translateX(0); visibility: visible; }
  .gnav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .gnav__link {
    padding: 15px 4px; border-bottom: 1px solid var(--line); font-size: 16px;
  }
  .gnav__link.is-active { border-bottom-color: var(--line); }
  .gnav__link--cta { margin: 18px 0 0; text-align: center; padding: 14px; }
  .gnav__tel { display: block; margin-top: 20px; text-align: center; }
  .gnav__tel a {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 22px; font-weight: 700; color: var(--brand);
  }
  .gnav__tel small { display: block; font-size: 12px; color: var(--ink-3); }

  .nav-overlay {
    position: fixed; inset: var(--header-h) 0 0; background: rgba(0,0,0,.4); z-index: 98;
  }
  body.is-nav-open { overflow: hidden; }

  .logo__ja { font-size: 16px; }
  .logo__mark { width: 34px; height: 34px; font-size: 19px; }

  .section { padding: 56px 0; }
  .hero__inner { padding: 64px 0 60px; }
  .access { grid-template-columns: 1fr; }
  .access__map iframe { height: 320px; }
  .table th { width: 34%; padding: 14px; }
  .table td { padding: 14px; }
}

@media (max-width: 600px) {
  body { font-size: 15px; line-height: 1.85; }
  .container, .container--narrow { width: calc(100% - 32px); }
  .hero__actions .btn { width: 100%; }
  .hero__points { flex-direction: column; gap: 8px; }
  .table, .table tbody, .table tr, .table th, .table td { display: block; width: 100%; }
  .table th { white-space: normal; border-bottom: none; padding: 12px 14px 6px; }
  .table td { padding: 0 14px 14px; }
  .history__item { flex-direction: column; gap: 2px; }
  .history__year { width: auto; }
  .mgmt-detail { flex-direction: column; gap: 4px; padding: 22px; }
  .service-detail__head { flex-wrap: wrap; gap: 10px; padding: 16px 20px; }
  .service-detail__body { padding: 22px 20px 26px; }
  .cta__tel, .contact-tel a { width: 100%; justify-content: center; }
  .form__submit .btn { width: 100%; min-width: 0; }
  .footer__inner { flex-direction: column; gap: 24px; }
}

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