@charset "UTF-8";
/* =============================================================
   R.C.I. 自動車関連サービス  共通スタイルシート
   設計: BEM / 単一 style.css / モバイルファースト
   カラー: メイン#000 サブ#737373 アクセント#E9E9E9
   フォント: Noto Sans JP
   ============================================================= */

/* -------------------------------------------------------------
   1. デザイントークン（CSS変数）
   ------------------------------------------------------------- */
:root {
  /* スマホの強制ダークモード（Auto Dark Theme）での色反転・ロゴ透過を防ぐ（本サイトはライト固定） */
  color-scheme: light;
  /* カラー */
  --c-main: #000000;
  --c-sub: #737373;
  --c-accent: #e9e9e9;
  --c-text: #000000;
  --c-heading: #1a1311;
  --c-bg: #ffffff;
  --c-bg-dark: #000000;
  --c-bg-soft: #f6f6f6;
  --c-line: #e0e0e0;

  /* フォント */
  --ff-base: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;

  /* レイアウト */
  --container: 1200px;
  --container-narrow: 920px;
  --gutter: clamp(20px, 5vw, 40px);
  --header-h: 76px;
  --header-h-sp: 60px;

  /* スペーシング */
  --sp-section: clamp(64px, 9vw, 130px);

  /* その他 */
  --radius: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 6px 24px rgba(0, 0, 0, 0.06);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--ff-base);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-wrap: break-word;
  word-break: normal;
  line-break: strict;
}

img { max-width: 100%; height: auto; vertical-align: bottom; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease), opacity 0.3s var(--ease); }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, p, figure, dl, dd, blockquote { margin: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
table { border-collapse: collapse; width: 100%; }
address { font-style: normal; }
:focus-visible { outline: 2px solid var(--c-main); outline-offset: 3px; }

/* -------------------------------------------------------------
   3. レイアウト
   ------------------------------------------------------------- */
.l-container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.l-container--narrow { max-width: calc(var(--container-narrow) + var(--gutter) * 2); }

.section { padding-block: var(--sp-section); }
.section--soft { background: var(--c-bg-soft); }
.section--accent { background: var(--c-accent); }
.section--dark { background: var(--c-bg-dark); color: #fff; }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }

/* 背景写真＋ダークマスクのテキストセクション（汎用） */
.bg-section { position: relative; isolation: isolate; color: #fff; }
.bg-section__bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.bg-section__bg img { width: 100%; height: 100%; object-fit: cover; }
.bg-section__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.72), rgba(0,0,0,0.8)); }
.bg-section .sec-head__en,
.bg-section .sec-head__ja { color: #fff; }
.bg-section .lead { color: #ececec; }

main { display: block; }

/* -------------------------------------------------------------
   4. タイポグラフィ / 見出し（英日2段組）
   ------------------------------------------------------------- */
.sec-head { margin-bottom: clamp(32px, 5vw, 56px); }
.sec-head--center { text-align: center; }
.sec-head__en {
  display: block;
  font-size: clamp(26px, 6.2vw, 37px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.04em;
  color: var(--c-main);
}
.sec-head__ja {
  display: block;
  margin-top: 0.55em;
  font-size: clamp(19px, 4.3vw, 30px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--c-heading);
  letter-spacing: 0.02em;
}
.section--dark .sec-head__en,
.section--dark .sec-head__ja,
.cta .sec-head__en,
.cta .sec-head__ja { color: #fff; }

/* 見出し下のリード文 */
.lead {
  max-width: 860px;
  font-size: clamp(0.95rem, 2.4vw, 1.0625rem);
  line-height: 2.1;
  color: #2a2a2a;
}
.sec-head--center + .lead,
.lead--center { margin-inline: auto; text-align: center; }
.section--dark .lead { color: #e6e6e6; }

/* 小見出し h3 / h4 */
.h3 {
  font-size: clamp(1.05rem, 3vw, 1.25rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.note { font-size: 0.875rem; color: var(--c-sub); line-height: 1.8; }

/* セクション見出しの装飾ライン（左寄せ時） */
.sec-head--bar .sec-head__en { position: relative; padding-left: 0; }

/* -------------------------------------------------------------
   5. ボタン
   ------------------------------------------------------------- */
.btn {
  --btn-fg: #fff;
  --btn-bg: var(--c-main);
  --btn-bd: var(--c-main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7em;
  min-height: 56px;
  padding: 0.7em 2.4em;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1px solid var(--btn-bd);
  border-radius: 999px;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), transform 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn__arrow { transition: transform 0.4s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--outline { --btn-fg: var(--c-main); --btn-bg: transparent; --btn-bd: var(--c-main); }
.btn--outline:hover { --btn-fg: #fff; --btn-bg: var(--c-main); }
.btn--light { --btn-fg: var(--c-main); --btn-bg: #fff; --btn-bd: #fff; }
.btn--ghost-light { --btn-fg: #fff; --btn-bg: transparent; --btn-bd: rgba(255,255,255,0.7); }
.btn--ghost-light:hover { --btn-fg: var(--c-main); --btn-bg: #fff; --btn-bd: #fff; }
.btn--lg { min-height: 64px; padding-inline: 3em; font-size: 1rem; }
.btn--block { display: flex; width: 100%; }
.btn--line { --btn-fg: #fff; --btn-bg: #06c755; --btn-bd: #06c755; }

/* LINEでかんたん査定（中古車買取） */
.line-assess { max-width: 620px; margin: clamp(26px, 4vw, 44px) auto 0; padding: clamp(24px, 3.4vw, 40px); border: 1px solid var(--c-line); background: #fff; text-align: center; }
.line-assess__head { font-weight: 600; margin-bottom: 1.1em; }
.line-assess__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5em 1.4em; max-width: 460px; margin: 0 auto 1.2em; text-align: left; }
.line-assess__list li { position: relative; padding-left: 1.2em; font-size: 0.92rem; line-height: 1.7; }
.line-assess__list li::before { content: "✓"; position: absolute; left: 0; color: var(--c-main); font-weight: 700; }
.line-assess__note { font-size: 0.84rem; color: var(--c-sub); margin-bottom: 1.5em; }
@media (max-width: 480px) { .line-assess__list { grid-template-columns: 1fr; max-width: 260px; } }

/* -------------------------------------------------------------
   6. ヘッダー
   ------------------------------------------------------------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h-sp);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), height 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0));
  opacity: 1;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}
.header.is-scrolled::before { opacity: 0; }

.header__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header__logo { display: block; line-height: 0; }
.header__logo img {
  height: 26px;
  width: auto;
  transition: opacity 0.4s var(--ease);
}
.header__logo-img--dark { display: none; }
.header.is-scrolled .header__logo-img--light { display: none; }
.header.is-scrolled .header__logo-img--dark { display: inline; }

.header__actions { display: flex; align-items: center; gap: clamp(10px, 1.8vw, 24px); }

/* 電話（情報表示・PC/TABはクリック不可） */
.header__tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.header.is-scrolled .header__tel { color: var(--c-main); }
.header__tel-ico { width: 17px; height: 17px; flex-shrink: 0; }
.header__tel-num { font-size: 0.95rem; font-weight: 500; }
.header__tel[aria-disabled="true"] { cursor: default; }

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  height: 40px;
  padding-inline: 1.5em;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--c-main);
  background: #fff;
  border: 1px solid var(--c-main);
  border-radius: 999px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.header__cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25); }

/* ハンバーガー */
.hamburger {
  position: relative;
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  z-index: 120;
}
.hamburger__bar {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease), background 0.4s var(--ease);
}
.header.is-scrolled .hamburger__bar { background: var(--c-main); }
.hamburger.is-active .hamburger__bar { background: #fff; }
.hamburger.is-active .hamburger__bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.is-active .hamburger__bar:nth-child(2) { opacity: 0; }
.hamburger.is-active .hamburger__bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* -------------------------------------------------------------
   7. ドロワーナビ
   ------------------------------------------------------------- */
.drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(440px, 100%);
  height: 100vh;
  height: 100dvh;
  background: var(--c-bg-dark);
  color: #fff;
  z-index: 110;
  transform: translateX(100%);
  transition: transform 0.55s var(--ease);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.drawer.is-open { transform: translateX(0); }
.drawer__close {
  position: absolute;
  top: 8px;
  right: var(--gutter);
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.drawer__close-bar {
  position: absolute;
  width: 26px;
  height: 2px;
  background: #fff;
  transition: background 0.3s var(--ease);
}
.drawer__close-bar:nth-child(1) { transform: rotate(45deg); }
.drawer__close-bar:nth-child(2) { transform: rotate(-45deg); }
.drawer__close:hover .drawer__close-bar { background: var(--c-sub); }
/* ドロワー展開中はヘッダーのハンバーガーを×ボタンに置き換える */
.hamburger.is-active { opacity: 0; pointer-events: none; }
.drawer__inner {
  padding: calc(var(--header-h-sp) + 28px) clamp(28px, 7vw, 56px) calc(72px + env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.drawer__list { margin-bottom: auto; }
.drawer__item { border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
.drawer__link {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 18px 4px;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.drawer__link:hover { opacity: 0.6; }
.drawer__link .en {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--c-sub);
  text-transform: uppercase;
}
.drawer__contact { margin-top: 36px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.14); }
.drawer__contact-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.drawer__cbtn {
  display: flex; align-items: center; justify-content: center;
  padding: 14px; border: 1px solid rgba(255, 255, 255, 0.25); border-radius: var(--radius);
  transition: background 0.35s var(--ease);
}
.drawer__cbtn:hover { background: rgba(255, 255, 255, 0.08); }
.drawer__cbtn img { width: auto; height: 30px; }
.drawer__contact-num { margin-top: 16px; font-size: 0.84rem; color: #b9b9b9; letter-spacing: 0.02em; }
.drawer__contact-num a { font-size: 1.05rem; font-weight: 500; color: #fff; }
.drawer__cta { margin-top: 20px; }

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
  z-index: 105;
}
.drawer-overlay.is-open { opacity: 1; visibility: visible; }

body.is-locked { overflow: hidden; }

/* -------------------------------------------------------------
   8. ヒーロー（トップページ）
   ------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media video,
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.6) 100%);
}
.hero__inner {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding: calc(var(--header-h-sp) + 40px) var(--gutter) 48px;
}
.hero__catch {
  font-size: clamp(1.5rem, 6.4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}
.hero__catch .accent { display: inline-block; }
.hero__brand {
  margin-top: 1.4em;
  font-size: clamp(1rem, 3.6vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.14em;
}
.hero__brand small { display: block; font-size: 0.6em; letter-spacing: 0.2em; color: #ddd; margin-bottom: 0.4em; }

/* ヒーロー内 サービスクイックリンク */
.hero-nav {
  margin-top: clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.hero-nav__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 14px 10px;
  background: rgba(0, 0, 0, 0.28);
  font-size: clamp(0.8rem, 3.2vw, 0.95rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
  backdrop-filter: blur(2px);
}
.hero-nav__item:hover { background: #fff; color: var(--c-main); }

.hero__scroll {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.hero__scroll::after {
  content: "";
  width: 1px;
  height: 46px;
  background: rgba(255, 255, 255, 0.6);
  animation: scrollLine 2.2s var(--ease) infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); }
  40% { transform: scaleY(1); }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* -------------------------------------------------------------
   9. 下層ページ ヒーロー
   ------------------------------------------------------------- */
.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(280px, 42vw, 460px);
  padding-top: var(--header-h-sp);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.page-hero__bg { position: absolute; inset: 0; z-index: -2; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.5), rgba(0,0,0,0.55));
}
.page-hero__inner {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding: 40px var(--gutter);
}
.page-hero__en {
  display: block;
  font-size: clamp(1.9rem, 7vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.03em;
}
.page-hero__ja {
  display: block;
  margin-top: 0.7em;
  font-size: clamp(1rem, 4vw, 1.4rem);
  font-weight: 500;
  letter-spacing: 0.08em;
}

/* パンくず */
.breadcrumb { background: var(--c-bg-soft); }
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  padding-block: 14px;
  font-size: 0.78rem;
  color: var(--c-sub);
}
.breadcrumb__list li::after { content: "/"; margin-left: 0.5em; color: var(--c-line); }
.breadcrumb__list li:last-child::after { content: ""; }
.breadcrumb a:hover { color: var(--c-main); }

/* -------------------------------------------------------------
   10. 特徴バッジ（ヒーロー直下の3点）
   ------------------------------------------------------------- */
.badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--c-line);
}
.badges__item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(18px, 3vw, 30px) 8px;
  font-size: clamp(0.8rem, 2.6vw, 1.05rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.badges__item + .badges__item { border-left: 1px solid var(--c-line); }
.badges--dark { border-color: rgba(255,255,255,0.25); }
.badges--dark .badges__item + .badges__item { border-left-color: rgba(255,255,255,0.25); }
/* 白黒反転バッジ（黒背景＋白文字・一回り大きめ） */
.badges--invert { background: var(--c-bg-dark); border-color: var(--c-bg-dark); color: #fff; }
.badges--invert .badges__item { font-size: clamp(0.95rem, 3.2vw, 1.25rem); }
.badges--invert .badges__item + .badges__item { border-left-color: rgba(255,255,255,0.28); }

/* -------------------------------------------------------------
   11. サービスカード（トップ）
   ------------------------------------------------------------- */
.services { display: grid; grid-template-columns: 1fr; gap: clamp(20px, 3vw, 32px); }
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--c-line);
  overflow: hidden;
}
.service-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.service-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.service-card:hover .service-card__media img { transform: scale(1.06); }
.service-card__body { padding: clamp(20px, 3vw, 30px); display: flex; flex-direction: column; flex: 1; }
.service-card__title {
  font-size: 1.2rem; font-weight: 500; letter-spacing: 0.02em; margin-bottom: 0.6em;
  display: flex; align-items: baseline; gap: 0.6em;
}
.service-card__title .en { font-size: 0.7rem; letter-spacing: 0.1em; color: var(--c-sub); text-transform: uppercase; }
.service-card__text { font-size: 0.92rem; line-height: 1.95; color: #333; flex: 1; }
.service-card__more {
  align-self: center;
  margin-top: 1.6em;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  padding: 0.85em 1.9em;
  background: var(--c-main); color: #fff;
  border-radius: 999px;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.06em;
  transition: background 0.35s var(--ease), transform 0.35s var(--ease);
}
.service-card__more:hover { background: #333; transform: translateY(-2px); }
.service-card__more .arrow { transition: transform 0.4s var(--ease); }
.service-card:hover .service-card__more .arrow { transform: translateX(4px); }

/* -------------------------------------------------------------
   12. 選ばれる理由 / 特徴リスト
   ------------------------------------------------------------- */
.reasons { display: grid; grid-template-columns: 1fr; gap: clamp(8px, 2vw, 4px); counter-reset: reason; }
.reason {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(16px, 3vw, 36px);
  padding: clamp(24px, 3.4vw, 40px) clamp(8px, 2vw, 20px);
  border-top: 1px solid var(--c-line);
}
.reasons .reason:last-child { border-bottom: 1px solid var(--c-line); }
.reason__num {
  counter-increment: reason;
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 500;
  line-height: 1;
  color: var(--c-sub);
  letter-spacing: 0.04em;
}
.reason__num::before { content: counter(reason, decimal-leading-zero); }
.reason__title {
  font-size: clamp(1.05rem, 3vw, 1.3rem);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 0.6em;
}
.reason__text { font-size: 0.95rem; line-height: 2; color: #333; }

/* 選ばれる理由：背景写真＋ダークマスク版 */
.reasons-feature { position: relative; isolation: isolate; color: #fff; }
.reasons-feature__bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.reasons-feature__bg img { width: 100%; height: 100%; object-fit: cover; }
.reasons-feature__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.88) 100%);
}
.reasons-feature .sec-head__en,
.reasons-feature .sec-head__ja { color: #fff; }
.reasons-feature .reason { border-top-color: rgba(255, 255, 255, 0.18); }
.reasons-feature .reasons .reason:last-child { border-bottom-color: rgba(255, 255, 255, 0.18); }
.reasons-feature .reason__num { color: rgba(255, 255, 255, 0.6); }
.reasons-feature .reason__title { color: #fff; }
.reasons-feature .reason__text { color: rgba(255, 255, 255, 0.82); }

/* カード型の理由（写真ありレイアウト用 grid） */
.feature-grid { display: grid; grid-template-columns: 1fr; gap: clamp(16px, 2.4vw, 26px); }
.feature {
  padding: clamp(22px, 3vw, 34px);
  background: #fff;
  border: 1px solid var(--c-line);
}
.feature__title {
  font-size: clamp(1.02rem, 2.8vw, 1.18rem);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 0.7em;
  padding-left: 0.9em;
  position: relative;
}
.feature__title::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 0.5em; height: 2px; background: var(--c-main);
}
.feature__text { font-size: 0.92rem; line-height: 1.95; color: #333; }

/* -------------------------------------------------------------
   13. チェックリスト（✓ 2カラム）
   ------------------------------------------------------------- */
.checklist { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--c-line); border: 1px solid var(--c-line); }
.checklist__item {
  display: flex; align-items: center; gap: 0.8em;
  padding: clamp(14px, 2.2vw, 20px) clamp(14px, 2.4vw, 24px);
  background: #fff;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  line-height: 1.6;
}
.checklist__check {
  flex-shrink: 0;
  width: 1.25em; height: 1.25em; border-radius: 50%;
  background: var(--c-main); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.7em; font-weight: 700;
}

/* シンプルなぶら下げリスト */
.bullet-list { display: grid; gap: 0.6em; }
.bullet-list li { position: relative; padding-left: 1.3em; line-height: 1.9; }
.bullet-list li::before { content: ""; position: absolute; left: 0; top: 0.8em; width: 0.6em; height: 0.6em; border: 1px solid var(--c-main); }

/* 用途・シーンリスト（矢印マーカー / ボーダーグリッド） */
.scene-list { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--c-line); border: 1px solid var(--c-line); }
.scene-list__item {
  display: flex; align-items: flex-start; gap: 0.85em;
  padding: clamp(15px, 2.2vw, 21px) clamp(15px, 2.4vw, 26px);
  background: #fff; font-size: clamp(0.9rem, 2.5vw, 1rem); line-height: 1.65;
}
.scene-list__item::before {
  content: ""; flex-shrink: 0; margin-top: 0.5em;
  width: 0.5em; height: 0.5em;
  border-top: 1.5px solid var(--c-main); border-right: 1.5px solid var(--c-main);
  transform: rotate(45deg);
}
/* ダーク背景（section--dark）内では白黒反転 */
.section--dark .scene-list { background: rgba(255, 255, 255, 0.2); border-color: rgba(255, 255, 255, 0.2); }
.section--dark .scene-list__item { background: var(--c-bg-dark); color: #fff; }
.section--dark .scene-list__item::before { border-top-color: #fff; border-right-color: #fff; }

/* 末尾の空き枠（PCの2カラムでのみ表示。SPでは非表示） */
.scene-list__item--empty { display: none; }
.scene-list__item--empty::before { content: none; }

/* 対応エリア */
.area { display: grid; grid-template-columns: 1fr; gap: clamp(20px, 3vw, 36px); align-items: start; }
.area__tiers { display: grid; gap: 14px; }
.area__tier { padding: clamp(16px, 2.4vw, 24px); border: 1px solid var(--c-line); border-left: 3px solid var(--c-main); background: #fff; }
.area__tier-label { font-size: 0.98rem; font-weight: 500; margin-bottom: 0.4em; letter-spacing: 0.02em; }
.area__tier-text { font-size: 0.9rem; line-height: 1.85; color: #333; }
.area__map img { width: 100%; height: auto; display: block; }
@media (min-width: 769px) {
  .scene-list--2col { grid-template-columns: repeat(2, 1fr); }
  .scene-list--2col .scene-list__item:last-child:nth-child(odd) { grid-column: 1 / -1; }
  /* 空き枠は表示しつつ、右・下の外枠線を背景色で覆って消す */
  .scene-list--2col .scene-list__item--empty { display: block; margin-right: -1px; margin-bottom: -1px; }
  .area--media { grid-template-columns: 1fr 1.15fr; }
  /* 3項目は3カラムで空セルを作らない（詳細度を上げて2カラム指定に勝たせる） */
  .checklist.checklist--3col { grid-template-columns: repeat(3, 1fr); }
  /* 2カラムで奇数末尾なら最終項目を全幅にして空セルを防ぐ */
  .checklist:not(.checklist--3col) .checklist__item:last-child:nth-child(odd) { grid-column: 1 / -1; }
}

/* -------------------------------------------------------------
   14. フロー（番号付きステップ）
   ------------------------------------------------------------- */
.flow { display: grid; gap: 0; }
.flow__step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(16px, 3vw, 30px);
  padding-bottom: clamp(28px, 4vw, 44px);
}
.flow__step:not(:last-child) { margin-bottom: clamp(8px, 1vw, 12px); }
.flow__marker { display: flex; flex-direction: column; align-items: center; }
.flow__num {
  flex-shrink: 0;
  width: clamp(46px, 8vw, 58px);
  height: clamp(46px, 8vw, 58px);
  border-radius: 50%;
  border: 1.5px solid var(--c-main);
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 500;
}
.flow__line { flex: 1; width: 1px; background: var(--c-line); margin-top: 8px; }
.flow__step:last-child .flow__line { display: none; }
.flow__body { padding-top: clamp(6px, 1vw, 10px); }
.flow__title { font-size: clamp(1.02rem, 2.8vw, 1.2rem); font-weight: 500; margin-bottom: 0.5em; }
.flow__text { font-size: 0.92rem; line-height: 1.95; color: #333; }

/* -------------------------------------------------------------
   15. FAQ（アコーディオン）
   ------------------------------------------------------------- */
.faq { border-top: 1px solid var(--c-line); }
.faq__item { border-bottom: 1px solid var(--c-line); }
.faq__q {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.8em;
  width: 100%;
  padding: clamp(18px, 2.6vw, 26px) 0;
  text-align: left;
  font-size: clamp(0.98rem, 2.6vw, 1.1rem);
  font-weight: 500;
  line-height: 1.6;
}
.faq__mark { font-size: 1.2em; font-weight: 500; color: var(--c-sub); line-height: 1; }
.faq__toggle { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq__toggle::before, .faq__toggle::after {
  content: ""; position: absolute; left: 50%; top: 50%; background: var(--c-main);
  transition: transform 0.4s var(--ease);
}
.faq__toggle::before { width: 16px; height: 1.5px; transform: translate(-50%, -50%); }
.faq__toggle::after { width: 1.5px; height: 16px; transform: translate(-50%, -50%); }
.faq__item.is-open .faq__toggle::after { transform: translate(-50%, -50%) scaleY(0); }
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease);
}
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a-inner { overflow: hidden; }
.faq__a-text {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8em;
  padding: 0 0 clamp(18px, 2.6vw, 26px);
  font-size: 0.94rem;
  line-height: 2;
  color: #333;
}
.faq__a-mark { font-weight: 500; color: var(--c-main); }

/* -------------------------------------------------------------
   16. 店舗情報
   ------------------------------------------------------------- */
.shops { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 4vw, 48px); }
.shop { display: grid; grid-template-columns: 1fr; gap: 0; border: 1px solid var(--c-line); overflow: hidden; }
.shop__body { padding: clamp(22px, 3vw, 34px); }
.shop__name {
  font-size: clamp(1.15rem, 3vw, 1.4rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 1em;
  padding-bottom: 0.6em;
  border-bottom: 1px solid var(--c-line);
}
.info-dl { display: grid; grid-template-columns: 1fr; gap: 0; }
.info-dl__row { display: grid; grid-template-columns: 7em 1fr; gap: 0.5em 1em; padding: 0.7em 0; border-bottom: 1px dashed var(--c-line); }
.info-dl__row:last-child { border-bottom: none; }
.info-dl__dt { font-size: 0.82rem; font-weight: 500; color: var(--c-sub); letter-spacing: 0.04em; padding-top: 0.1em; }
.info-dl__dd { font-size: 0.95rem; line-height: 1.7; }
.shop__map { position: relative; min-height: 240px; }
.shop__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* -------------------------------------------------------------
   17. 会社概要テーブル
   ------------------------------------------------------------- */
.company { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 4vw, 48px); align-items: start; }
.company-table th, .company-table td {
  text-align: left;
  vertical-align: top;
  padding: clamp(14px, 2vw, 20px) clamp(8px, 1.6vw, 16px);
  border-bottom: 1px solid var(--c-line);
  font-size: 0.95rem;
  line-height: 1.8;
}
.company-table th { width: 30%; font-weight: 500; color: var(--c-heading); white-space: nowrap; }
.company-table tr:first-child th, .company-table tr:first-child td { border-top: 1px solid var(--c-line); }
.company__figure { margin: 0; }
.company__figure img { width: 100%; }
.company__badge { margin-top: clamp(18px, 2.6vw, 26px); }
.company__badge img { width: 100%; height: auto; display: block; }
.company__badge p { font-size: 16px; line-height: 1.7; margin-top: 0.9em; text-align: center; }

/* 代表あいさつ / 理念 */
.message { display: grid; grid-template-columns: 1fr; gap: clamp(24px, 4vw, 48px); align-items: center; }
.message__figure { margin: 0; }
.message__figure img { width: 100%; }
.message__text { font-size: clamp(0.95rem, 2.4vw, 1.0625rem); line-height: 2.1; }
.message__sign { margin-top: 1.5em; font-size: 0.9rem; color: var(--c-sub); }
.message__sign strong { display: block; font-size: 1.15rem; color: var(--c-text); font-weight: 500; letter-spacing: 0.06em; margin-top: 0.3em; }

.philosophy { display: grid; grid-template-columns: 1fr; gap: clamp(20px, 3vw, 30px); }
.philosophy__item { padding: clamp(24px, 3.4vw, 40px); border: 1px solid var(--c-line); background: #fff; }
.philosophy__label { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-sub); }
.philosophy__title { font-size: clamp(1.1rem, 3vw, 1.4rem); font-weight: 500; margin: 0.5em 0 0.7em; }
.philosophy__text { font-size: 0.95rem; line-height: 2; color: #333; }
.philosophy.philosophy--stack { grid-template-columns: 1fr; }
.philosophy__text p { margin: 0 0 0.9em; }
.philosophy__text > :last-child { margin-bottom: 0; }
.philosophy__text .terms-sub { font-size: 1rem; font-weight: 600; color: var(--c-main); margin: 1.4em 0 0.5em; padding-left: 0.6em; border-left: 3px solid var(--c-main); }
.philosophy__text .terms-list { margin: 0 0 0.9em; padding-left: 1.4em; list-style: disc; }
.philosophy__text .terms-list li { margin-bottom: 0.4em; }
.philosophy__text .terms-list--num { list-style: decimal; }
.philosophy__text .terms-note { font-size: 0.86rem; color: var(--c-sub); }

/* -------------------------------------------------------------
   18. スタッフ紹介
   ------------------------------------------------------------- */
.staff { display: grid; grid-template-columns: 1fr; gap: clamp(24px, 3vw, 34px); }
.staff-card { background: #fff; border: 1px solid var(--c-line); overflow: hidden; }
.staff-card__media { aspect-ratio: 3 / 4; overflow: hidden; background: var(--c-accent); }
.staff-card__media img { width: 100%; height: 100%; object-fit: cover; }
.staff-card__body { padding: clamp(18px, 2.6vw, 26px); }
.staff-card__name { font-size: 1.15rem; font-weight: 500; letter-spacing: 0.04em; margin-bottom: 0.6em; }
.staff-card__text { font-size: 0.88rem; line-height: 1.9; color: #444; }
.staff-card__role { display: block; margin-top: 0.35em; font-size: 0.8rem; font-weight: 400; letter-spacing: 0.04em; color: var(--c-sub); }
.staff-card__qual { margin-bottom: 0.9em; font-size: 0.76rem; line-height: 1.7; color: #555; }
.staff-card__qual-label { display: inline-block; margin-right: 0.5em; padding: 0.14em 0.6em; background: var(--c-main); color: #fff; font-size: 0.66rem; letter-spacing: 0.06em; border-radius: 2px; }

/* NoPhoto プレースホルダ */
.no-photo {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  background: repeating-linear-gradient(45deg, #f0f0f0, #f0f0f0 12px, #eaeaea 12px, #eaeaea 24px);
  color: var(--c-sub);
}
.no-photo__icon { width: 36px; height: 36px; border: 1.5px solid currentColor; border-radius: 4px; position: relative; }
.no-photo__icon::before { content: ""; position: absolute; left: 6px; bottom: 6px; right: 6px; height: 9px; background: currentColor; clip-path: polygon(0 100%, 32% 40%, 52% 70%, 74% 22%, 100% 100%); }
.no-photo__icon::after { content: ""; position: absolute; top: 6px; right: 8px; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.no-photo__text { font-size: 0.72rem; letter-spacing: 0.1em; }

/* -------------------------------------------------------------
   19. 2カラム メディア（画像 + テキスト）
   ------------------------------------------------------------- */
.media-cols { display: grid; grid-template-columns: 1fr; gap: clamp(20px, 3vw, 40px); }
.media-pair { display: grid; grid-template-columns: 1fr; }
.media-pair__figure { margin: 0 0 clamp(14px, 2vw, 22px); aspect-ratio: 16 / 11; overflow: hidden; background: var(--c-accent); }
.media-pair__figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.media-pair:hover .media-pair__figure img { transform: scale(1.05); }
.media-pair__title { display: flex; align-items: baseline; flex-wrap: wrap; gap: 0.15em 0.6em; font-size: clamp(1.05rem, 2.8vw, 1.25rem); font-weight: 500; margin-bottom: 0.7em; }
.media-pair__title .en { font-size: 0.7rem; font-weight: 400; letter-spacing: 0.1em; color: var(--c-sub); text-transform: uppercase; }
.media-pair__text { font-size: 0.92rem; line-height: 1.95; color: #333; }

/* セクション内の横長バナー画像 */
.media-banner { margin-top: clamp(24px, 4vw, 44px); aspect-ratio: 16 / 7; overflow: hidden; }
.media-banner img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 768px) { .media-banner { aspect-ratio: 16 / 10; } }

/* 料金表 */
.price-table th, .price-table td {
  padding: clamp(14px, 2vw, 18px) clamp(10px, 1.8vw, 20px);
  border-bottom: 1px solid var(--c-line);
  font-size: 0.95rem; text-align: left; vertical-align: middle;
}
.price-table thead th { background: var(--c-main); color: #fff; font-weight: 500; letter-spacing: 0.04em; }
.price-table th { font-weight: 500; }
.price-table td.price { font-weight: 500; white-space: nowrap; }
.price-note { margin-top: 1em; font-size: 0.82rem; color: var(--c-sub); }

/* テキストの補足ブロック */
.note-block { padding: clamp(22px, 3.2vw, 38px); background: var(--c-bg-soft); border: 1px solid var(--c-line); }
.note-block .h3 { margin-bottom: 0.6em; }

/* 取扱保険会社などのパートナーロゴ */
.insurer { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.insurer__label { font-size: 20px; font-weight: 500; letter-spacing: 0.1em; color: var(--c-heading); }
.insurer__logo { width: min(320px, 82%); height: auto; }
/* タブレット/PCでは上の3カラムカード1枚分の幅に揃える */
@media (min-width: 769px) {
  .insurer__logo { width: calc((100% - 2 * clamp(20px, 3vw, 40px)) / 3); max-width: 400px; }
}

/* -------------------------------------------------------------
   フォーム（お問い合わせ）
   ------------------------------------------------------------- */
.form { max-width: 780px; margin-inline: auto; }
.form__row { margin-bottom: clamp(20px, 3vw, 30px); }
.form__label { display: flex; align-items: center; gap: 0.7em; font-weight: 500; font-size: 0.98rem; margin-bottom: 0.6em; }
.form__req { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.04em; color: #fff; background: var(--c-main); padding: 0.25em 0.7em; border-radius: 3px; }
.form__opt { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.04em; color: var(--c-sub); border: 1px solid var(--c-line); padding: 0.2em 0.7em; border-radius: 3px; }
.form__hint { font-size: 0.82rem; color: var(--c-sub); margin: 0 0 0.6em; line-height: 1.7; }
.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form textarea,
.form select {
  width: 100%;
  padding: 0.85em 1em;
  font: inherit;
  font-size: 1rem;
  color: var(--c-text);
  background: #fff;
  border: 1px solid #c9c9c9;
  border-radius: var(--radius);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.form textarea { min-height: 170px; resize: vertical; line-height: 1.8; }
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none; border-color: var(--c-main); box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}
.form__select { position: relative; }
.form__select::after {
  content: ""; position: absolute; right: 1.1em; top: 50%; width: 0.6em; height: 0.6em;
  border-right: 2px solid var(--c-sub); border-bottom: 2px solid var(--c-sub);
  transform: translateY(-70%) rotate(45deg); pointer-events: none;
}
.form select { appearance: none; -webkit-appearance: none; padding-right: 2.6em; cursor: pointer; }
.form__checks { display: grid; grid-template-columns: 1fr; gap: 12px; }
.form__check { display: flex; align-items: flex-start; gap: 0.6em; cursor: pointer; font-size: 0.97rem; line-height: 1.5; }
.form__check input { margin-top: 0.2em; width: 1.1em; height: 1.1em; accent-color: var(--c-main); flex-shrink: 0; }
.form__error { display: none; color: #c0241c; font-size: 0.85rem; margin-top: 0.45em; }
.form__row.is-error .form__error { display: block; }
.form__row.is-error input,
.form__row.is-error textarea,
.form__row.is-error select { border-color: #c0241c; }
.form__actions { text-align: center; margin-top: clamp(28px, 4vw, 40px); }
.form__privacy { font-size: 0.84rem; color: var(--c-sub); text-align: center; margin-bottom: 1.4em; line-height: 1.8; }
@media (min-width: 620px) { .form__checks { grid-template-columns: repeat(2, 1fr); } }

/* 確認画面 */
.confirm-dl { max-width: 780px; margin: 0 auto; border-top: 1px solid var(--c-line); }
.confirm-dl__row { display: grid; grid-template-columns: 1fr; gap: 0.3em; padding: clamp(16px, 2.4vw, 22px) 0; border-bottom: 1px solid var(--c-line); }
.confirm-dl__dt { font-size: 0.85rem; font-weight: 500; color: var(--c-sub); }
.confirm-dl__dd { font-size: 1rem; line-height: 1.8; white-space: pre-wrap; }
.confirm-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: clamp(28px, 4vw, 40px); }
@media (min-width: 620px) { .confirm-dl__row { grid-template-columns: 14em 1fr; gap: 1.5em; } }

/* 完了画面 */
.complete { text-align: center; max-width: 680px; margin: 0 auto; }
.complete__icon { width: 76px; height: 76px; margin: 0 auto clamp(20px, 3vw, 28px); border-radius: 50%; border: 2px solid var(--c-main); display: flex; align-items: center; justify-content: center; }
.complete__icon::after { content: ""; width: 26px; height: 14px; border-left: 3px solid var(--c-main); border-bottom: 3px solid var(--c-main); transform: rotate(-45deg) translate(2px, -3px); }
.complete__text { font-size: clamp(0.95rem, 2.4vw, 1.0625rem); line-height: 2; margin-bottom: 2em; }

/* お電話・FAXでのお問い合わせ */
.contact-direct { display: grid; grid-template-columns: 1fr; gap: clamp(16px, 2.4vw, 24px); max-width: 780px; margin: 0 auto; }
.contact-direct__card { padding: clamp(22px, 3vw, 32px); border: 1px solid var(--c-line); text-align: center; background: #fff; }
.contact-direct__label { font-size: 0.8rem; letter-spacing: 0.1em; color: var(--c-sub); margin-bottom: 0.6em; }
.contact-direct__num { font-size: clamp(1.4rem, 4.5vw, 1.9rem); font-weight: 500; letter-spacing: 0.04em; }
.contact-direct__note { font-size: 0.82rem; color: var(--c-sub); margin-top: 0.5em; }
@media (min-width: 620px) { .contact-direct { grid-template-columns: repeat(2, 1fr); } }

/* 外部リンクカード（グーネット等） */
.ext-cards { display: grid; grid-template-columns: 1fr; gap: clamp(18px, 2.4vw, 28px); }
.ext-card {
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--c-line); background: #fff;
  text-align: center;
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.ext-card:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
.ext-card__logo { height: 54px; display: flex; align-items: center; }
.ext-card__logo img { max-height: 54px; width: auto; }
.ext-card__link { display: inline-flex; align-items: center; gap: 0.6em; font-size: 0.92rem; font-weight: 500; }

/* -------------------------------------------------------------
   20. CTA セクション（お問い合わせ）
   ------------------------------------------------------------- */
.cta {
  position: relative;
  text-align: center;
  color: #fff;
  background: var(--c-bg-dark);
  overflow: hidden;
  isolation: isolate;
}
.cta__bg { position: absolute; inset: 0; z-index: -2; opacity: 0.35; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta__text { max-width: 720px; margin: 0 auto 2em; font-size: clamp(0.95rem, 2.4vw, 1.0625rem); line-height: 2.1; color: #eaeaea; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* -------------------------------------------------------------
   21. フッター
   ------------------------------------------------------------- */
.footer { background: var(--c-bg-dark); color: #cfcfcf; padding-top: clamp(48px, 6vw, 76px); }
.footer__inner {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 48px);
  padding-bottom: clamp(40px, 5vw, 60px);
}
.footer__logo img { height: 30px; width: auto; margin-bottom: 18px; }
.footer__tagline { font-size: 0.86rem; line-height: 1.9; color: #9a9a9a; }
.footer__nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 20px; }
.footer__nav a { font-size: 0.86rem; color: #cfcfcf; }
.footer__nav a:hover { color: #fff; }
.footer__info { font-size: 0.84rem; line-height: 1.9; color: #9a9a9a; }
.footer__info dt { color: #fff; font-weight: 500; margin-bottom: 0.3em; letter-spacing: 0.04em; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.12); }
.footer__copy {
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding: 22px var(--gutter);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: #8a8a8a;
  text-align: center;
}

/* -------------------------------------------------------------
   22. スクロールトップ / SP固定オーバーレイ
   ------------------------------------------------------------- */
.pagetop {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-main);
  border: 1px solid #fff;
  box-shadow: 0 0 0 1px var(--c-main);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease), transform 0.4s var(--ease), background 0.3s var(--ease);
}
.pagetop.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.pagetop:hover { background: #333; }
.pagetop__arrow { width: 12px; height: 12px; border-top: 2px solid #fff; border-right: 2px solid #fff; transform: rotate(-45deg) translate(-1px, 1px); }

.sp-overlay {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 95;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 12px 16px;
  background: var(--c-main);
  border: 1px solid #fff;
  color: #fff;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.45s var(--ease);
}
.sp-overlay.is-visible { transform: translateY(0); }
.sp-overlay__main { font-size: 1rem; font-weight: 500; letter-spacing: 0.1em; }
.sp-overlay__sub { font-size: 0.66rem; color: #cfcfcf; letter-spacing: 0.02em; line-height: 1.4; }

/* -------------------------------------------------------------
   23. アニメーション（スクロール表示）
   ------------------------------------------------------------- */
[data-anim] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
[data-anim].is-inview { opacity: 1; transform: none; }
[data-anim-delay="1"] { transition-delay: 0.1s; }
[data-anim-delay="2"] { transition-delay: 0.2s; }
[data-anim-delay="3"] { transition-delay: 0.3s; }
[data-anim-delay="4"] { transition-delay: 0.4s; }

/* -------------------------------------------------------------
   24. ユーティリティ
   ------------------------------------------------------------- */
.u-center { text-align: center; }
.is-sp-only { display: inline; }
@media (min-width: 769px) { .is-sp-only { display: none; } }
.u-mt-s { margin-top: 1rem; }
.u-mt-m { margin-top: 2rem; }
.u-mt-l { margin-top: clamp(2rem, 4vw, 3.5rem); }
.u-mb-s { margin-bottom: 0.85rem; }
.u-tel-text { color: inherit; }
.is-pc { display: none; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* =============================================================
   レスポンシブ
   ============================================================= */

/* タブレット以上（769px〜） */
@media (min-width: 769px) {
  :root { --header-h-sp: var(--header-h); }
  .header { height: var(--header-h); }
  .header.is-scrolled { height: 64px; }
  .header__logo img { height: 30px; }

  .badges__item { font-size: 1.05rem; }

  .services { grid-template-columns: repeat(2, 1fr); }
  .checklist { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .philosophy { grid-template-columns: repeat(3, 1fr); }
  .staff { grid-template-columns: repeat(3, 1fr); }
  .media-cols { grid-template-columns: repeat(2, 1fr); }
  .media-cols.media-cols--3 { grid-template-columns: repeat(3, 1fr); }
  .media-pair { grid-template-columns: 1fr; }
  .ext-cards { grid-template-columns: repeat(2, 1fr); }

  .hero-nav { grid-template-columns: repeat(4, 1fr); }
  /* PC時はワイヤーフレームの配置順に並べ替え（SP時はDOM順=優先番号順） */
  .hero-nav__item { order: var(--o, 0); }

  .shop { grid-template-columns: 1fr 1fr; }
  .shop__map { min-height: 100%; }

  .company { grid-template-columns: 1.3fr 1fr; }
  .message { grid-template-columns: 1fr 1.4fr; }
  .message--rev .message__figure { order: 2; }

  .footer__inner { grid-template-columns: 1.4fr 1fr 1.2fr; }
  .footer__nav { grid-template-columns: repeat(2, 1fr); }

  .reason { grid-template-columns: auto 1fr; }
}

/* PC（1025px〜） */
@media (min-width: 1025px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .staff { grid-template-columns: repeat(3, 1fr); }
  .drawer__inner { padding-top: calc(var(--header-h) + 36px); }
  /* PC時はヘッダーの電話番号を一回り大きく表示 */
  .header__tel-num { font-size: 1.15rem; }
  .header__tel-ico { width: 20px; height: 20px; }
  /* PC時のみ3カラムチェックリスト（陸送の方法など）を中央寄せ */
  .checklist--3col .checklist__item { justify-content: center; }
}

/* SP（〜768px）: ヘッダーはロゴ+ハンバーガーのみ */
@media (max-width: 768px) {
  .header__tel,
  .header__cta { display: none; }
  .is-sp-hidden { display: none; }
  .sp-overlay { display: flex; }
  .pagetop { bottom: 76px; }
  .pagetop.is-visible.is-raised { bottom: 76px; }
}

/* マウス環境のみ（タブレット/PCで電話クリック不可の見た目維持） */

/* prefers-reduced-motion 対応 */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-anim] { opacity: 1 !important; transform: none !important; }
  .hero__scroll::after { animation: none; }
}
