/* ============================================================
   甲府モータース - メインスタイルシート
   ============================================================ */

/* ---- CSS変数（色・フォント・サイズ） ---- */
:root {
  /* カラー */
  --color-primary:       #1565c0;   /* ブルー（メインカラー） */
  --color-primary-dark:  #0d47a1;   /* 濃いブルー */
  --color-primary-light: #1e88e5;   /* 明るいブルー */
  --color-accent:        #e53935;   /* レッド */
  --color-accent-dark:   #c62828;   /* 濃いレッド */
  --color-text:          #222222;   /* メインテキスト */
  --color-text-muted:    #666666;   /* サブテキスト */
  --color-bg:            #ffffff;   /* 背景（白） */
  --color-bg-alt:        #f7f7f5;   /* 背景（薄グレー） */
  --color-border:        #e0e0e0;   /* ボーダー */
  --color-white:         #ffffff;
  --color-overlay:       rgba(0, 0, 0, 0.55); /* ヒーローオーバーレイ */

  /* フォント */
  --font-base: 'Noto Sans JP', sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.75;

  /* レイアウト */
  --max-width: 1200px;
  --container-padding: 20px;
  --header-height: 70px;

  /* シャドウ */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);

  /* 角丸 */
  --radius:    8px;
  --radius-lg: 16px;

  /* トランジション */
  --transition: 0.2s ease;
}

/* ---- リセット・基本 ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: var(--font-size-base);
}

body {
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: var(--line-height-base);
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--color-primary-light); }

ul, ol { list-style: none; }

/* ---- レイアウト ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: 64px 0;
}
.section--alt {
  background: var(--color-bg-alt);
}
.section--dark {
  background: var(--color-primary-dark);
  color: var(--color-white);
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: var(--color-accent);
  margin: 12px auto 0;
  border-radius: 2px;
}
.section-subtitle {
  text-align: center;
  color: var(--color-text-muted);
  margin-bottom: 40px;
}

/* ---- ヘッダー ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  height: var(--header-height);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

/* ロゴ */
.header-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-logo img {
  height: 50px;
  width: auto;
}
.header-logo-text {
  display: none;
}

/* ヘッダー右側（電話・ナビ） */
.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* 電話番号 */
.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.3;
}
.header-phone a {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-phone a:hover { color: var(--color-primary-light); }
.header-phone-hours {
  font-size: 0.7rem;
  color: var(--color-text-muted);
}

/* グローバルナビ */
.global-nav { display: flex; align-items: center; }
.global-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.global-nav li a {
  display: block;
  padding: 6px 12px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text);
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}
.global-nav li a:hover,
.global-nav li.active a {
  background: var(--color-primary);
  color: var(--color-white);
}

/* ハンバーガーメニュー（スマホ） */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* モバイルナビオーバーレイ */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--color-white);
  box-shadow: var(--shadow-md);
  z-index: 999;
  padding: 16px 0;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; }
.mobile-nav li a {
  display: block;
  padding: 14px 24px;
  font-weight: 700;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  font-size: 1rem;
}
.mobile-nav li a:hover { background: var(--color-bg-alt); color: var(--color-primary); }
.mobile-nav-phone {
  padding: 16px 24px;
  text-align: center;
}
.mobile-nav-phone a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
}

/* ページ本体のトップマージン（固定ヘッダー分） */
.page-body { padding-top: var(--header-height); }

/* ---- ヒーローセクション（トップページ） ---- */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
}
.hero-content {
  position: relative;
  z-index: 1;
  color: var(--color-white);
  padding: 60px 0;
}
.hero-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
  font-family: 'Arial', sans-serif;
}
.hero-label::before,
.hero-label::after {
  content: '';
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.45);
  display: block;
}
.hero-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 32px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- ボタン ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
}
.btn-accent {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}
.btn-accent:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: var(--color-white);
}
.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}
.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
}
.btn-outline-primary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline-primary:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }

/* ---- サービスカード（トップ） ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
/* ---- かかりつけ工場コンセプト ---- */
.concept-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.concept-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.concept-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.concept-icon {
  width: 64px;
  height: 64px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.concept-icon i {
  font-size: 1.6rem;
  color: var(--color-white);
}
.concept-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
  line-height: 1.5;
}
.concept-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  text-align: left;
}
@media (max-width: 768px) {
  .concept-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- サービスカード ---- */
.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-bg-alt);
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card-img img {
  transform: scale(1.04);
}
.service-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-primary);
}
.service-card-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  flex: 1;
  margin-bottom: 16px;
}
.service-card-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.service-card-link:hover { gap: 8px; }

/* ---- お知らせ ---- */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.news-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition);
}
.news-item:last-child { border-bottom: none; }
.news-item:hover { background: var(--color-bg-alt); }
.news-date {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  white-space: nowrap;
  min-width: 90px;
}
.news-category {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  background: rgba(27, 94, 55, 0.1);
  padding: 2px 8px;
  border-radius: 100px;
  white-space: nowrap;
}
.news-title {
  font-size: 0.95rem;
  color: var(--color-text);
  flex: 1;
}

/* ---- ページヘッダー（下層ページ） ---- */
.page-header {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  color: var(--color-white);
  padding: 40px 0;
}
.page-header-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
}
.page-header-breadcrumb {
  margin-top: 8px;
  font-size: 0.85rem;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-header-breadcrumb a { color: var(--color-white); }
.page-header-breadcrumb a:hover { opacity: 0.8; }

/* ---- テーブル（車検料金等） ---- */
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin: 24px 0;
}
.price-table th,
.price-table td {
  border: 1px solid var(--color-border);
  padding: 10px 12px;
  text-align: center;
  vertical-align: middle;
}
.price-table thead th {
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 700;
}
.price-table tbody th {
  background: var(--color-bg-alt);
  font-weight: 700;
  text-align: center;
}
.price-table tbody tr:nth-child(even) td { background: #fafafa; }
.price-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.price-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 8px;
  line-height: 1.8;
}

/* ---- コース画像 ---- */
.course-image {
  max-width: 600px;
  margin: 24px auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.course-image img { width: 100%; }

/* ---- 2カラムレイアウト ---- */
.cols-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 768px) {
  .cols-2 { grid-template-columns: 1fr; gap: 24px; }
}
.cols-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .cols-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .cols-3 { grid-template-columns: 1fr; }
}

/* ---- 診断機画像カード ---- */
.diag-card {
  text-align: center;
}
.diag-card img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 10px;
}
.diag-card-label {
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-primary);
}

/* ---- 鈑金流れ画像 ---- */
.flow-image {
  max-width: 800px;
  margin: 24px auto;
}
.flow-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

/* ---- 鈑金ステップ ---- */
.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}
.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}
.step-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}
.step-content p { font-size: 0.9rem; color: var(--color-text-muted); }

/* ---- 販売カード（メリット・デメリット） ---- */
.sales-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.sales-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.sales-card-img {
  height: 200px;
  overflow: hidden;
  background: var(--color-bg-alt);
}
.sales-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}
.sales-card-body { padding: 20px; }
.sales-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-primary);
}
.merit-list, .demerit-list { margin: 8px 0; }
.merit-list li, .demerit-list li {
  font-size: 0.9rem;
  padding: 4px 0 4px 20px;
  position: relative;
  color: var(--color-text);
}
.merit-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2e7d32;
  font-weight: 700;
}
.demerit-list li::before {
  content: '△';
  position: absolute;
  left: 0;
  color: var(--color-text-muted);
}
.badge-merit {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 100px;
  background: var(--color-accent);
  color: var(--color-white);
  margin: 8px 0 4px;
}
.badge-demerit {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 100px;
  background: var(--color-text-muted);
  color: var(--color-white);
  margin: 8px 0 4px;
}

/* ---- 採用情報 ---- */
.recruit-hero {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  color: var(--color-white);
  padding: 60px 0;
}
.recruit-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}
.recruit-badge {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--color-white);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
}
.recruit-brief {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0;
}
.recruit-brief li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}
.recruit-brief li:last-child { border-bottom: none; }
.recruit-brief .label {
  font-weight: 700;
  color: var(--color-primary);
  min-width: 80px;
}
.recruit-brief i {
  color: var(--color-primary);
  min-width: 20px;
}

/* アコーディオン（詳細） */
.accordion {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 16px 0;
}
.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--color-bg-alt);
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  user-select: none;
  transition: background var(--transition);
}
.accordion-header:hover { background: #eee; }
.accordion-header .icon {
  transition: transform var(--transition);
  font-size: 0.85rem;
}
.accordion.open .accordion-header .icon { transform: rotate(180deg); }
.accordion-body {
  display: none;
  padding: 20px;
}
.accordion.open .accordion-body { display: block; }

/* 採用1日の流れ */
.flow-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.flow-step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
  align-items: center;
}
.flow-step:last-child { border-bottom: none; }
.flow-time {
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  padding: 8px 4px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.85rem;
}
.flow-content h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--color-primary);
}
.flow-content p { font-size: 0.9rem; color: var(--color-text-muted); }
.flow-img {
  width: 100px;
  flex-shrink: 0;
}
.flow-img img {
  width: 100%;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 600px) {
  .flow-step { grid-template-columns: 90px 1fr; }
  .flow-img { width: 70px; }
}

/* 当社メリットリスト */
.merit-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.merit-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.merit-card i {
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.merit-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.merit-card p { font-size: 0.88rem; color: var(--color-text-muted); }

/* ---- 会社概要テーブル ---- */
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.info-table th,
.info-table td {
  border: 1px solid var(--color-border);
  padding: 12px 16px;
  vertical-align: top;
}
.info-table th {
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 700;
  white-space: nowrap;
  width: 140px;
}

/* ---- マップ ---- */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.map-wrap iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* ---- お問い合わせフォーム ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}
.contact-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-primary);
}
.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
}
.contact-info-item i {
  color: var(--color-primary);
  margin-top: 3px;
  min-width: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 0.9rem;
}
.form-label .required {
  font-size: 0.75rem;
  background: #e53935;
  color: white;
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 6px;
}
.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font-base);
  color: var(--color-text);
  transition: border-color var(--transition);
  background: var(--color-white);
}
.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(27, 94, 55, 0.1);
}
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }

/* ---- CTAバナー ---- */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  padding: 56px 0;
  text-align: center;
}
.cta-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.cta-section p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 28px;
}
.cta-phone {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin-bottom: 4px;
}
.cta-phone a { color: inherit; }
.cta-hours {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 24px;
}

/* ---- フッター ---- */
.site-footer {
  background: #111;
  color: #ccc;
  padding: 48px 0 0;
  font-size: 0.9rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}
.footer-logo {
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  height: 40px;
  width: auto;
}
.footer-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  line-height: 1.6;
}
.footer-info-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.footer-info-item i { color: #fdd835; margin-top: 3px; }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.footer-nav a {
  color: #aaa;
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--color-white); }
.footer-copyright {
  border-top: 1px solid #333;
  padding: 16px 0;
  text-align: center;
  font-size: 0.8rem;
  color: #666;
}

/* ---- ページトップボタン ---- */
.page-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  z-index: 500;
}
.page-top-btn.visible {
  opacity: 1;
  pointer-events: all;
}
.page-top-btn:hover { background: var(--color-primary-dark); color: white; }

/* ---- ハイライトボックス ---- */
.highlight-box {
  background: linear-gradient(135deg, rgba(27,94,55,0.06) 0%, rgba(27,94,55,0.12) 100%);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 1.05rem;
  font-weight: 700;
}

/* インフォメーションボックス */
.info-box {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 0.9rem;
}

/* 注意書き */
.notes {
  margin: 20px 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 2;
}
.notes li::before {
  content: '※';
  margin-right: 4px;
}
.notes li { list-style: none; }

/* ---- ユーティリティ ---- */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mt-4 { margin-top: 32px; }
.mt-8 { margin-top: 64px; }
.gap-y-4 > * + * { margin-top: 32px; }

/* ---- レスポンシブ ---- */
@media (max-width: 1024px) {
  .global-nav li a { padding: 6px 8px; font-size: 0.8rem; }
  .header-phone a { font-size: 1.1rem; }
}

@media (max-width: 860px) {
  .global-nav { display: none; }
  .header-phone { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 640px) {
  .section { padding: 48px 0; }
  .hero { min-height: 400px; }
  .hero-title { font-size: 1.6rem; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .news-item { flex-wrap: wrap; gap: 4px; }
  .news-date { min-width: auto; }
  .cta-phone { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-lg { width: 100%; }
}
