/* =============================================
   株式会社車工房鬼丸 — メインスタイルシート
   ============================================= */

/* ===== Variables ===== */
:root {
  --blue: #1a5ca8;
  --blue-dark: #134a8e;
  --white: #ffffff;
  --gray-bg: #f7f7f7;
  --text: #222222;
  --text-sub: #666666;
  --border: #dddddd;
  --font: "Noto Sans JP", sans-serif;

  --header-h: 120px; /* PC ヘッダー高さ */
  --header-h-sp: 60px; /* SP ヘッダー高さ */
  --left-w: 360px; /* 青エリアの横幅 */
  --diag: 70px; /* 斜め三角の幅 */
}

/* ===== Reset ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  vertical-align: middle;
}

/* PCのみ改行 / SPのみ改行 */
br.pc-only { display: block; }
br.sp-only { display: none; }

@media (max-width: 767px) {
  br.pc-only { display: none; }
  br.sp-only { display: block; }
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.header-inner {
  display: flex;
  height: var(--header-h);
  position: relative;
}

/* --- 左エリア（青背景） --- */
.header-left {
  flex: 0 0 var(--left-w);
  background: var(--blue);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 8px 10px 20px;
  position: relative;
  z-index: 2;
  align-items: flex-end;
  text-align: end;
}

/* 斜め区切り：右側に青い三角形を配置 */
.header-left::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(100% - 1px);
  width: calc(var(--diag) + 1px);
  height: 100%;
  background: var(--blue);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  pointer-events: none;
}

.header-catch {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  white-space: nowrap;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-logo img {
  height: 68px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.logo-fallback {
  display: none; /* ロゴ画像がない場合に onerror で表示 */
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* --- 右エリア --- */
.header-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* 上段：連絡先情報 */
.header-info {
  flex: 0 0 55px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
  padding: 12px 280px 0 24px;
}

.header-message {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  line-height: 1.7;
  white-space: nowrap;
}

.header-tel {
  text-align: center;
}

.tel-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--blue);
  transition: opacity 0.2s;
}
.tel-link:hover {
  opacity: 0.75;
}

.tel-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.tel-number {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.business-hours {
  color: var(--blue);
  font-size: 10px;
  margin-top: 3px;
  white-space: nowrap;
  letter-spacing: 0.2;
}

/* 下段：グローバルナビ */
.header-nav {
  flex: 1;
  display: flex;
  align-items: stretch;
  padding: 0 260px 0 24px;
}

.header-nav ul {
  display: flex;
  align-items: stretch;
  width: 100%;
  justify-content: flex-end;
}

.header-nav li {
  display: flex;
  align-items: center;
}

.header-nav a {
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  color: var(--text);
  position: relative;
  transition: color 0.2s;
}

/* ホバー時のアンダーライン */
.header-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.25s;
}

.header-nav a:hover {
  color: var(--blue);
}
.header-nav a:hover::after {
  width: calc(100% - 28px);
}


/* --- ドロップダウンメニュー --- */
.has-dropdown {
  position: relative;
}

.dropdown-chevron {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 5px;
  vertical-align: middle;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.2s;
}

.has-dropdown:hover .dropdown-chevron,
.has-dropdown:focus-within .dropdown-chevron {
  transform: rotate(180deg);
}

.nav-dropdown {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 168px;
  background: var(--white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  border-top: 3px solid var(--blue);
  z-index: 200;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  display: flex;
}

.nav-dropdown li {
  display: block;
  width: 100%;
  border-bottom: 1px solid var(--border);
}

.nav-dropdown li:last-child {
  border-bottom: none;
}

.header-nav .nav-dropdown a {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  color: var(--text);
  white-space: nowrap;
  height: auto;
}

.header-nav .nav-dropdown a:hover {
  background: var(--gray-bg);
  color: var(--blue);
}

.header-nav .nav-dropdown a::after {
  display: none;
}

/* --- ロゴリンク --- */
.header-logo__link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* --- モバイルナビ グループラベル / サブ項目 --- */
.mobile-nav__group-item {
  background: var(--gray-bg);
  border-bottom: 1px solid var(--border);
}

.mobile-nav__group-label {
  display: block;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-sub);
  letter-spacing: 0.05em;
}

.mobile-nav__sub-item > a {
  padding-left: 40px;
  font-size: 14px;
  color: var(--text-sub);
  background: var(--gray-bg);
}

/* --- ハンバーガーボタン（PC では非表示） --- */
.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 14px;
  font-family: var(--font);
  flex-shrink: 0;
}

.hamburger-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}

.hamburger-lines span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.hamburger-label {
  font-size: 9px;
  color: var(--text-sub);
  margin-top: 3px;
}

/* 開いた状態：三本線 → × */
.hamburger.is-open .hamburger-lines span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open .hamburger-lines span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-open .hamburger-lines span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- モバイルメニュー（ドロワー） --- */
.mobile-nav {
  display: none; /* SP のみ有効 */
  position: fixed;
  top: var(--header-h-sp);
  right: 0;
  width: 100%;
  height: calc(100dvh - var(--header-h-sp));
  background: var(--white);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 999;
}

.mobile-nav.is-open {
  transform: none;
}

.mobile-nav li {
  border-bottom: 1px solid var(--border);
}

.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition:
    background 0.15s,
    color 0.15s;
}

.mobile-nav a::after {
  content: "›";
  font-size: 22px;
  font-weight: 300;
  color: var(--text-sub);
  flex-shrink: 0;
}

.mobile-nav a:hover {
  background: var(--gray-bg);
  color: var(--blue);
}

/* --- オーバーレイ --- */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 998;
}

.overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

/* =============================================
   HERO SLIDER
   ============================================= */
.hero {
  position: relative;
  width: 100%;
  height: 540px;
  overflow: hidden;
  background: #1a2a4a;
}

.hero-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #1a2a4a;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.is-active { opacity: 1; }

/* 各スライドの背景画像（画像を images/ に配置してください） */
.hero-slide--1 { background-image: url('../images/slide1.jpg'); }
.hero-slide--2 { background-image: url('../images/slide2.jpg'); }
.hero-slide--3 { background-image: url('../images/slide3.jpg'); }

/* 左下：キャッチコピーボックス */
.hero-catch {
  position: absolute;
  bottom: 56px;
  left: 0 ;
  background: rgba(255, 255, 255, 1);
  padding: 16px 28px;
}

.hero-catch p {
  color: var(--blue);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: normal;
}

/* 右下：インジケーター */
.hero-indicators {
  position: absolute;
  bottom: 24px;
  right: 32px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero-dot {
  width: 36px;
  height: 4px;
  background: rgba(255, 255, 255, .45);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background .3s;
  padding: 0;
}

.hero-dot.is-active { background: var(--white); }

/* =============================================
   SERVICE SECTION
   ============================================= */

/* --- セクションヘッダー（タイトル＋説明 同じ行） --- */
.section-header {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 48px 60px;
}

.section-title {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-shrink: 0;
}

.section-title__en {
  font-size: 54px;
  font-weight: 700;
  font-style: italic;
  color: var(--blue);
  letter-spacing: 0.02em;
  line-height: 1;
}

.section-title__ja {
  font-size: 15px;
  font-weight: 500;
  color: var(--blue);
}

.section-desc {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text);
}

/* --- サービスカード（3枚・斜め区切り） --- */
.service-cards {
  display: flex;
  height: 380px;
  overflow: hidden;
}

.service-card {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: block;
  background-size: cover;
  background-position: center;
  background-color: #1a2a4a; /* 画像未配置時のフォールバック */
  text-decoration: none;
}

/* 背景画像（images/service1〜3.jpg を配置してください） */
.service-card--1 { background-image: url('../images/service1.jpg'); }
.service-card--2 { background-image: url('../images/service2.jpg'); }
.service-card--3 { background-image: url('../images/service3.jpg'); }

/* 斜め区切り：clip-path + 負のmarginで実現 */
.service-card--1 {
  clip-path: polygon(0 0, 100% 0, calc(100% - 40px) 100%, 0 100%);
  z-index: 3;
}
.service-card--2 {
  margin-left: -40px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 40px) 100%, 0 100%);
  z-index: 2;
}
.service-card--3 {
  margin-left: -40px;
  z-index: 1;
}

/* 暗いオーバーレイ（デフォルト） */
.service-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .78);
  transition: background .35s ease;
}

/* ホバー：青オーバーレイ */
.service-card:hover .service-card__overlay {
  background: rgba(26, 92, 168, .78);
}

/* テキストコンテンツ */
.service-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 36px;
  z-index: 1;
}

.service-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.5;
  margin-bottom: 10px;
  transition: color .3s;
}

.service-card:hover .service-card__title {
  color: var(--white);
}

.service-card__desc {
  font-size: 13px;
  color: var(--white);
  line-height: 1.8;
  opacity: .9;
}

/* =============================================
   NEWS SECTION
   ============================================= */

.news-section {
  display: flex;
  align-items: stretch;
  min-height: 340px;
  overflow: hidden;
}

/* --- 左エリア（タイトル） --- */
.news-left {
  flex: 0 0 42%;
  position: relative;
  background: var(--gray-bg);
  background-image: url('../images/news-bg.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 90px 60px 60px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 60px) 100%, 0 100%);
  z-index: 1;
}

/* 背景画像のオーバーレイ */
.news-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(80, 80, 80, 0.85);
}

.news-section-title {
  display: flex;
  align-items: baseline;
  gap: 14px;
  position: relative;
  margin-bottom: 20px;
}

.news-title__en {
  font-size: 54px;
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1;
}

.news-title__ja {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
}

.news-section-desc {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
}

/* --- 右エリア（ニュース一覧） --- */
.news-right {
  flex: 1;
  background: #fff;
  padding: 48px 60px 40px 100px;
  margin-left: -60px;
}

.news-list {
  list-style: none;
}

.news-item {
  border-bottom: 1px solid var(--border);
}

.news-item:first-child {
  border-top: 1px solid var(--border);
}

.news-item__link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  transition: opacity 0.2s;
}

.news-item__link:hover {
  opacity: 0.7;
}

.news-item__img {
  width: 88px;
  height: 64px;
  object-fit: cover;
  flex-shrink: 0;
  background: #ddd;
}

.news-item__body {
  flex: 1;
  min-width: 0;
}

.news-item__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.news-item__date {
  font-size: 13px;
  color: var(--text-sub);
  letter-spacing: 0.05em;
}

.news-item__cat {
  display: inline-block;
  padding: 2px 8px;
  background: #888;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.news-item__cat--new {
  background: var(--blue);
}

.news-item__title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 一覧へリンク */
.news-more {
  text-align: right;
  margin-top: 20px;
}

.news-more__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  border-bottom: 1px solid var(--blue);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.news-more__link:hover {
  opacity: 0.7;
}

/* =============================================
   ACCESS SECTION
   ============================================= */

.access-section {
  display: flex;
  align-items: stretch;
  min-height: 320px;
  overflow: hidden;
  background: #fff;
}

/* --- 左エリア（タイトル＋情報）：右端を"/"斜めにカット --- */
.access-left {
  flex: 0 0 54%;
  background: #fff;
  padding: 60px 60px 60px 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
  clip-path: polygon(0 0, calc(100% - 60px) 0, 100% 100%, 0 100%);
}

.access-section-title {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 28px;
}

.access-title__en {
  font-size: 54px;
  font-weight: 700;
  font-style: italic;
  color: var(--blue);
  letter-spacing: 0.02em;
  line-height: 1;
}

.access-title__ja {
  font-size: 15px;
  font-weight: 500;
  color: var(--blue);
}

/* 情報テーブル */
.access-info {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px 16px;
  margin-bottom: 32px;
  font-size: 14px;
}

.access-info dt {
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  padding-top: 1px;
}

.access-info dd {
  color: var(--text);
  line-height: 1.7;
}

.access-info a {
  color: var(--blue);
}

/* Googleマップリンク */
.access-map-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  border-bottom: 1px solid var(--blue);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: opacity 0.2s;
}

.access-map-link:hover {
  opacity: 0.7;
}

/* --- 右エリア（マップ）--- */
.access-right {
  flex: 1;
  background: var(--gray-bg);
  margin-left: -60px;
  clip-path: none;
  z-index: 0;
  display: flex;
  align-items: center;
  padding: 40px 40px 40px 80px;
}

.access-map {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.access-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* =============================================
   BANKIN-SECTION（板金塗装）
   ============================================= */

.bankin-section {
  background: #fff;
}

/* --- ヘッダーエリア（背景画像 + 白オーバーレイ） --- */
.bankin-top {
  padding-bottom: 60px;
  background-image:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.80) 0%, rgba(255, 255, 255, 0.80) 80%, rgba(202, 202, 202, 1.00) 100%),
    url('../images/bankin-bg.jpg');
  background-size: cover;
  background-position: center;
  background-color: #e8edf5; /* 画像未配置時のフォールバック */
}

.bankin-header {
  padding: 60px 60px 24px;
  text-align: center;
}

.bankin-title {
  display: inline-flex;
  align-items: baseline;
  gap: 16px;
}

.bankin-title__en {
  font-size: 54px;
  font-weight: 700;
  font-style: italic;
  color: var(--blue);
  letter-spacing: 0.02em;
  line-height: 1;
}

.bankin-title__ja {
  font-size: 15px;
  font-weight: 500;
  color: var(--blue);
}

.bankin-catch {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 40px;
  padding: 0 20px;
  line-height: 1.7;
  color: var(--text);
}

.bankin-num {
  font-size: 40px;
  color: var(--blue);
  line-height: 1;
}

/* 動画 */
.bankin-video-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 40px;
}

.bankin-video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.bankin-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.bankin-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a2a4a;
  color: rgba(255, 255, 255, .45);
  font-size: 18px;
  letter-spacing: 0.1em;
}

/* --- ポイント〜メーカーをまとめるグラデーション背景 --- */
.bankin-lower {
  background: linear-gradient(to bottom, #cacaca 0%, #ffffff 100%);
}

/* --- 5 つのポイント --- */
.bankin-points-bg {
  background: transparent;
  padding: 60px 40px;
}

.bankin-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.bankin-point {
  flex: 0 0 calc(33.333% - 16px);
  max-width: calc(33.333% - 16px);
  text-align: center;
  overflow: hidden;
}

.bankin-point__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #c8c8c8;
}

.bankin-point__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bankin-point h3 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  margin: 16px 16px 10px;
  color: var(--text);
}

.bankin-point p {
  font-size: 13px;
  color: var(--text);
  line-height: 1.8;
  margin: 0 16px 20px;
}

/* --- CTA ボタン --- */
.bankin-cta {
  text-align: center;
  padding: 52px 20px;
  background: transparent;
}

.bankin-btn {
  display: inline-block;
  padding: 16px 48px;
  background: #555;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: background 0.25s;
}

.bankin-btn:hover {
  background: var(--blue);
}

/* --- お客様の声 --- */
.bankin-reviews {
  background: transparent;
  padding: 60px;
}

.bankin-reviews__title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 40px;
}

.bankin-reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.review-card {
  overflow: hidden;
}

.review-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: #ccc;
}

.review-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px 8px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: #ddd;
  flex-shrink: 0;
}

.review-car {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.review-name {
  font-size: 12px;
  color: var(--text);
}

.review-headline {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  padding: 4px 20px 8px;
  line-height: 1.5;
}

.review-body {
  font-size: 13px;
  color: var(--text);
  line-height: 1.9;
  padding: 0 20px 24px;
}

/* --- 取り扱いメーカー --- */
.bankin-makers {
  background: transparent;
  padding: 36px 60px 64px;
  text-align: center;
}

.bankin-makers__note {
  font-size: 13px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 32px;
}

.maker-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 28px;
  list-style: none;
  max-width: 900px;
  margin: 0 auto;
}

.maker-logos li {
  flex: 0 0 auto;
}

.maker-logos img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: grayscale(20%);
  opacity: 0.85;
  transition: filter 0.2s, opacity 0.2s;
}

.maker-logos img:hover {
  filter: none;
  opacity: 1;
}

/* =============================================
   FOOTER
   ============================================= */

.site-footer {
  background: #3c3c3c;
  color: #ccc;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 60px 48px;
}

/* --- ロゴ＋SNS --- */
.footer-logo-col {
  flex: 0 0 200px;
}

.footer-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-logo-fallback {
  display: none;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.footer-sns {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.footer-sns__label {
  font-size: 11px;
  color: #fff;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.footer-sns__icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-sns__link {
  color: #fff;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.footer-sns__link:hover {
  color: #cecbcb;
}

/* --- ナビゲーション --- */
.footer-nav {
  flex: 1;
  display: flex;
  gap: 40px;
}

.footer-nav__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-nav__col a {
  font-size: 13px;
  color: #fff;
  transition: color 0.2s;
}

.footer-nav__col a:hover {
  color: #cecbcb;
}

/* --- 連絡先 --- */
.footer-contact {
  flex: 0 0 280px;
}

.footer-contact__top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.footer-badge {
  display: inline-block;
  padding: 3px 10px;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.footer-contact__catch {
  font-size: 13px;
  color: #fff;
}

.footer-tel {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  margin-bottom: 8px;
  transition: opacity 0.2s;
}

.footer-tel:hover {
  opacity: 0.8;
}

.footer-hours {
  font-size: 11px;
  color: #fff;
  line-height: 1.7;
}

/* コピーライト */
.footer-bottom {
  border-top: 1px solid #555;
  text-align: center;
  padding: 18px 20px;
}

.footer-bottom p {
  font-size: 12px;
  color: #888;
}

/* =============================================
   PAGE SUBNAV（ページ内リンクメニュー）
   ============================================= */
.page-subnav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--header-h);
  z-index: 900;
}

.page-subnav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-subnav__link {
  display: flex;
  align-items: center;
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.04em;
  white-space: nowrap;
  position: relative;
  transition: color 0.2s;
}

.page-subnav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.25s;
}

.page-subnav__link:hover {
  color: var(--blue);
}

.page-subnav__link:hover::after {
  width: calc(100% - 56px);
}

/* セパレーター */
.page-subnav__list li + li .page-subnav__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 12px;
  width: 1px;
  background: var(--border);
}

/* =============================================
   PAGE HERO（サービスページ メインビジュアル）
   ============================================= */
.page-hero {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #1a2a4a;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero--kizu {
  background-image: url('../images/service1.jpg');
}

.page-hero--shaiken {
  background-image: url('../images/service2.jpg');
}

.page-hero--custom {
  background-image: url('../images/service3.jpg');
}

.page-hero--hanbai {
  background-image: url('../images/slide3.jpg');
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 92, 168, 0.68);
}

.page-hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-hero__title {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  line-height: 1.3;
  margin-bottom: 10px;
}

.page-hero__en {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* =============================================
   INNER（コンテンツ共通ラッパー）
   ============================================= */
.inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 60px;
}

/* =============================================
   SECTION HEADING（共通セクションタイトル）
   ============================================= */
.section-heading {
  text-align: center;
  margin-bottom: 56px;
}

.section-heading__en {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-heading__ja {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.5;
}

.section-heading--white .section-heading__en {
  color: rgba(255, 255, 255, 0.7);
}

.section-heading--white .section-heading__ja {
  color: var(--white);
}

/* =============================================
   WORRIES SECTION（こんなお悩みありませんか）
   ============================================= */
.worries-section {
  padding: 64px 0 0;
  background: var(--gray-bg);
  position: relative;
}

/* タイトル */
.worries-heading {
  text-align: center;
  margin-bottom: 48px;
}

.worries-heading__sub {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-sub);
  margin-bottom: 6px;
  letter-spacing: 0.06em;
}

.worries-heading__main {
  font-size: 30px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

.worries-heading__main em {
  font-style: normal;
  color: var(--blue);
}

/* 本文：左=画像、右=バッジ */
.worries-body {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 60px 64px;
}

.worries-img {
  flex: 0 0 340px;
  overflow: hidden;
}

.worries-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

/* バッジリスト */
.worries-badges {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
}

.worries-badge {
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 10px 24px;
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

/* 黄色強調 */
.worries-badge em {
  font-style: normal;
  color: #ffd700;
}

/* =============================================
   WORRIES RESOLVE（矢印＋解決テキスト）
   ============================================= */
.worries-resolve {
  background: #fff;
  text-align: center;
  padding: 0 20px 56px;
}

/* グレー背景から白への三角矢印 */
.worries-resolve__arrow {
  width: 0;
  height: 0;
  border-left: 56px solid transparent;
  border-right: 56px solid transparent;
  border-top: 44px solid var(--gray-bg);
  margin: 0 auto 36px;
}

.worries-resolve__sub {
  font-size: 14px;
  color: var(--text-sub);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.worries-resolve__main {
  font-size: 26px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 4px;
  letter-spacing: 0.04em;
}

/* =============================================
   BUTTONS（共通ボタン）
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 44px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: 2px solid transparent;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
}

.btn--primary {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}

.btn--primary:hover {
  background: transparent;
  color: var(--white);
}

.btn--tel {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.btn--tel:hover {
  background: var(--white);
  color: var(--blue);
}

/* =============================================
   KIZU POINTS SECTION（4つのポイント）
   ============================================= */
.kizu-points-section {
  padding: 80px 0;
}

.kizu-points {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.kizu-point {
  display: grid;
  grid-template-columns: 60px 1fr 1fr;
  gap: 0 48px;
  align-items: center;
}

.kizu-point--rev {
  grid-template-columns: 60px 1fr 1fr;
}

.kizu-point--rev .kizu-point__img {
  order: 3;
}

.kizu-point--rev .kizu-point__body {
  order: 2;
}

.kizu-point__num {
  font-size: 64px;
  font-weight: 700;
  font-style: italic;
  color: rgba(130, 128, 128, 0.85);
  line-height: 1;
  letter-spacing: -0.02em;
  align-self: flex-start;
  padding-top: 8px;
}

.kizu-point__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #c8c8c8;
}

.kizu-point__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kizu-point__body {
  padding: 0 8px;
}

.kizu-point__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 16px;
}

.kizu-point__desc {
  font-size: 14px;
  color: rgba(1, 1, 1, 0.85);
  line-height: 1.9;
}

/* =============================================
   CAUTION SECTION（ご注意いただきたいポイント）
   ============================================= */
.caution-section {
  background: var(--gray-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}

.caution-inner {
  display: flex;
  align-items: center;
  gap: 56px;
}

.caution-left {
  flex: 0 0 200px;
  text-align: center;
}

.caution-icon {
  width: 56px;
  height: 56px;
  color: var(--blue);
  margin: 0 auto 12px;
}

.caution-icon svg {
  width: 100%;
  height: 100%;
}

.caution-sub {
  font-size: 12px;
  color: var(--blue);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.caution-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.6;
}

.caution-body {
  flex: 1;
}

.caution-body p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.95;
  margin-bottom: 12px;
}

.caution-body p:last-child {
  margin-bottom: 0;
}

/* =============================================
   FLOW SECTION（施工の流れ）
   ============================================= */
.flow-section {
  padding: 80px 0;
  background: #fff;
}

.flow-list {
  list-style: none;
  position: relative;
}

.flow-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 56px;
  width: 2px;
  height: 100%;
  background: var(--border);
}

.flow-item {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding-bottom: 48px;
  position: relative;
}

.flow-item:last-child {
  padding-bottom: 0;
}

.flow-item__step {
  flex-shrink: 0;
  width: 112px;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--blue);
  text-transform: uppercase;
  background: #fff;
  position: relative;
  z-index: 1;
}

.flow-item__step span {
  display: block;
  font-size: 36px;
  font-weight: 700;
  font-style: italic;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.flow-item__body {
  flex: 1;
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
  padding-bottom: 48px;
}

.flow-item:last-child .flow-item__body {
  border-bottom: none;
  padding-bottom: 0;
}

.flow-item__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.flow-item__desc {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.9;
}

/* =============================================
   FAQ SECTION（よくあるご質問）
   ============================================= */
.faq-section {
  padding: 80px 0;
  background: var(--gray-bg);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-top: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  cursor: default;
  line-height: 1.6;
}

.faq-q__label,
.faq-a__label {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  margin-top: 1px;
}

.faq-q__label {
  background: var(--blue);
  color: var(--white);
}

.faq-a__label {
  background: #e0e8f5;
  color: var(--blue);
}

.faq-a {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 0 0 22px;
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.9;
}

/* =============================================
   カスタムページ：施工メニュー
   ============================================= */
.menu-section {
  padding: 80px 0;
  background: var(--gray-bg);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.menu-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.menu-card:hover {
  box-shadow: 0 8px 24px rgba(26, 92, 168, 0.12);
  transform: translateY(-4px);
}

.menu-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8f0fa;
  color: var(--blue);
  border-radius: 50%;
}

.menu-card__icon svg {
  width: 28px;
  height: 28px;
}

.menu-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.5;
}

.menu-card__desc {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.8;
}

/* =============================================
   カスタムページ：Before / After スライダー
   ============================================= */
.ba-section {
  padding: 80px 0;
  background: #fff;
}

.ba-intro {
  text-align: center;
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.9;
  max-width: 640px;
  margin: 0 auto 48px;
}

.ba-list {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.ba-item__caption {
  text-align: center;
  margin-top: 16px;
}

.ba-item__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 4px;
}

.ba-item__desc {
  font-size: 13px;
  color: var(--text-sub);
}

.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
  user-select: none;
}

.ba-slider__pane {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.8;
}

.ba-slider__pane small {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.ba-slider__pane--after {
  background: var(--blue);
  color: rgba(255, 255, 255, 0.85);
}

.ba-slider__pane--before {
  background: #8b96a3;
  color: rgba(255, 255, 255, 0.85);
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}

.ba-slider__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #fff;
  z-index: 3;
  pointer-events: none;
  transform: translateX(-1px);
}

.ba-slider__handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  color: var(--blue);
}

.ba-slider__handle svg {
  width: 20px;
  height: 20px;
}

.ba-slider__tag {
  position: absolute;
  top: 16px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  z-index: 4;
  pointer-events: none;
}

.ba-slider__tag--before { left: 16px; }
.ba-slider__tag--after  { right: 16px; }

.ba-slider__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  -webkit-appearance: none;
  appearance: none;
  z-index: 5;
}

/* =============================================
   カスタムページ：アコーディオンFAQ
   ============================================= */
.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  border: 1px solid var(--border);
  background: #fff;
}

.accordion-item__q {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 48px 20px 24px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  position: relative;
}

.accordion-item__q::-webkit-details-marker {
  display: none;
}

.accordion-item__q::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--blue);
}

.accordion-item[open] .accordion-item__q::after {
  content: "−";
}

.accordion-item__label {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 50%;
  background: #e0e8f5;
  color: var(--blue);
}

.accordion-item__a {
  padding: 0 24px 22px 68px;
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.9;
}

/* =============================================
   CTA SECTION（お問い合わせ）
   ============================================= */
.cta-section {
  background: #1a2a4a;
  background-image:
    linear-gradient(rgba(26, 44, 74, 0.92), rgba(26, 44, 74, 0.92)),
    url('../images/bankin-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
}

.cta-inner {
  text-align: center;
}

.cta-catch {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.cta-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* =============================================
   現在ページのナビハイライト
   ============================================= */
.header-nav a[aria-current="page"] {
  color: var(--blue);
}

.header-nav a[aria-current="page"]::after {
  width: calc(100% - 28px);
}

/* =============================================
   車検・点検ページ
   ============================================= */

/* リード */
.shaiken-lead {
  padding: 64px 0 56px;
  text-align: center;
}

.shaiken-lead__heading {
  font-size: 28px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.5;
  margin-bottom: 28px;
  text-decoration: underline;
  text-decoration-color: var(--blue);
  text-underline-offset: 6px;
}

.shaiken-lead__desc {
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.9;
}

/* サービスセクション */
.shaiken-service {
  padding: 72px 0;
}

.shaiken-service--gray {
  background: var(--gray-bg);
}

.shaiken-service__header {
  text-align: center;
  margin-bottom: 48px;
}

.shaiken-service__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
  background: var(--blue);
  padding: 4px 18px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.shaiken-service__title {
  font-size: 26px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.5;
  text-decoration: underline;
  text-decoration-color: var(--blue);
  text-underline-offset: 6px;
}

.shaiken-service__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.shaiken-service__body--rev {
  direction: rtl;
}

.shaiken-service__body--rev > * {
  direction: ltr;
}

.shaiken-service__img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 4px;
}

.shaiken-service__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.shaiken-service__text p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
}

.shaiken-service__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.shaiken-service__list li {
  font-size: 14px;
  font-weight: 500;
  color: var(--blue);
  padding-left: 20px;
  position: relative;
}

.shaiken-service__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* =============================================
   キャンペーンセクション（再利用可）
   ============================================= */

.campaign-section {
  background: #dde4ef;
  padding: 64px 20px;
  text-align: center;
}

.campaign-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.campaign-sub {
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  letter-spacing: 0.06em;
  padding-bottom: 6px;
  border-bottom: 2px solid #e8b800;
}

.campaign-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1.35;
}

.campaign-detail {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.campaign-highlight {
  color: var(--blue);
  font-size: 20px;
}

.campaign-note {
  font-size: 13px;
  color: var(--text-sub);
}

.btn--campaign {
  display: inline-block;
  margin-top: 8px;
  padding: 16px 40px;
  background: var(--blue-dark);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 2px;
  transition: background 0.2s, opacity 0.2s;
}

.btn--campaign:hover {
  background: var(--blue);
}

/* =============================================
   その他サービスセクション
   ============================================= */

.other-services {
  padding: 72px 0;
}

.other-services__heading {
  font-size: 24px;
  font-weight: 700;
  color: var(--blue);
  text-align: center;
  text-decoration: underline;
  text-decoration-color: var(--blue);
  text-underline-offset: 6px;
  margin-bottom: 48px;
  line-height: 1.5;
}

.other-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.other-services__card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.other-services__card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
}

.other-services__card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.other-services__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.other-services__card-desc {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.8;
}

.other-services__card-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.other-services__price-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-sub);
}

/* =============================================
   定期点検・法定点検セクション
   ============================================= */

/* 定期点検イントロ */
.teiki-intro {
  padding: 64px 0 48px;
}

.teiki-intro__header {
  text-align: center;
  margin-bottom: 28px;
}

.teiki-intro__heading {
  font-size: 26px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.5;
  margin-top: 16px;
  text-decoration: underline;
  text-decoration-color: var(--blue);
  text-underline-offset: 6px;
}

.teiki-intro__desc {
  max-width: 760px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-sub);
}

/* 車検と法定点検の違い テーブル */
.teiki-diff {
  padding: 56px 0;
}

.teiki-diff__heading {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 24px;
  text-decoration: underline;
  text-decoration-color: var(--blue);
  text-underline-offset: 5px;
}

.teiki-diff__table-wrap {
  overflow-x: auto;
}

.teiki-diff__table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 14px;
}

.teiki-diff__table th,
.teiki-diff__table td {
  border: 1px solid var(--border);
  padding: 14px 20px;
  vertical-align: top;
  line-height: 1.7;
}

.teiki-diff__table thead th {
  color: var(--text);
  font-weight: 700;
  text-align: center;
}

.teiki-diff__table thead th:first-child {
  background: var(--white);
  color: transparent;
  border-top-color: var(--white);
  border-left-color: var(--white);
  width: 80px;
}

.teiki-diff__table tbody td:first-child {
  font-weight: 700;
  text-align: center;
  color: var(--text);
  white-space: nowrap;
}

/* 法定点検の検査項目 */
.hoteiten-section {
  padding: 56px 0;
}

.hoteiten-section__heading {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 12px;
  text-decoration: underline;
  text-decoration-color: var(--blue);
  text-underline-offset: 5px;
}

.hoteiten-section__note {
  font-size: 13px;
  color: var(--text-sub);
  margin-bottom: 36px;
}

.hoteiten-cols {
  display: flex;
  gap: 0;
  align-items: stretch;
}

.hoteiten-col {
  flex: 1;
}

.hoteiten-col__inner {
  padding: 32px 36px;
  background: var(--white);
  height: 100%;
  border-radius: 4px;
}

.hoteiten-col__divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 0 20px;
  flex-shrink: 0;
}

.hoteiten-col__icon {
  color: var(--blue);
  margin-bottom: 12px;
}

.hoteiten-col__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}

.hoteiten-col__count {
  font-size: 13px;
  color: var(--text-sub);
  margin-bottom: 16px;
}

.hoteiten-col__count strong {
  color: var(--blue);
  font-size: 15px;
}

.hoteiten-col__list {
  list-style: disc;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hoteiten-col__list li {
  font-size: 14px;
  color: var(--text);
}

.hoteiten-col__plus {
  font-size: 28px;
  font-weight: 700;
  color: var(--blue);
  text-align: center;
  margin: 20px 0 12px;
}

.hoteiten-col__extra {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  text-align: center;
}

/* 法定点検のメリット */
.teiki-merit {
  padding: 64px 0;
}

.teiki-merit__header {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 36px;
}

.teiki-merit__heading {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: var(--blue);
  text-underline-offset: 5px;
  white-space: nowrap;
}

.teiki-merit__sub {
  font-size: 13px;
  color: var(--text-sub);
}

.teiki-merit__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.teiki-merit__card {
  background: var(--white);
  border-radius: 4px;
  padding: 28px 24px;
  text-align: center;
}

.teiki-merit__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.teiki-merit__card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 12px;
}

.teiki-merit__card-desc {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.8;
  text-align: left;
}

/* =============================================
   BLOG PAGE
   ============================================= */

.page-hero--blog {
  background-image: url('../images/blog-hero.jpg');
}

.blog-wrap {
  padding: 56px 0 80px;
  background: var(--gray-bg);
}

/* 2カラム（メイン＋サイドバー）レイアウト */
.blog-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* ---- メインエリア ---- */
.blog-main {
  flex: 1;
  min-width: 0;
}

/* 記事カードグリッド（2列） */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.blog-card {
  background: var(--white);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.blog-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.blog-card__link {
  display: block;
  color: inherit;
}

.blog-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #c8c8c8;
}

.blog-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__thumb img {
  transform: scale(1.04);
}

/* カテゴリーバッジ */
.blog-card__cat {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #888;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  letter-spacing: 0.04em;
  z-index: 1;
}

.blog-card__cat--works  { background: var(--blue); }
.blog-card__cat--news   { background: #555; }
.blog-card__cat--camp   { background: #c07010; }
.blog-card__cat--recruit { background: #2a8a50; }

.blog-card__body {
  padding: 16px 18px 20px;
}

.blog-card__date {
  display: block;
  font-size: 12px;
  color: var(--text-sub);
  margin-bottom: 8px;
  letter-spacing: 0.06em;
}

.blog-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.65;
  margin-bottom: 8px;
  transition: opacity 0.2s;
}

.blog-card:hover .blog-card__title {
  opacity: 0.75;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-card__excerpt {
  font-size: 12px;
  color: var(--text-sub);
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---- ページネーション ---- */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.blog-pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--blue);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.blog-pagination__item:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.blog-pagination__item--current {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  pointer-events: none;
}

.blog-pagination__item--arrow {
  font-size: 20px;
  font-weight: 400;
}

/* ---- サイドバー ---- */
.blog-sidebar {
  flex: 0 0 268px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ウィジェット共通 */
.sidebar-widget {
  background: var(--white);
  overflow: hidden;
}

/* ウィジェット見出し */
.sidebar-widget__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 14px 11px 16px;
  letter-spacing: 0.06em;
  width: 100%;
  border: none;
  font-family: var(--font);
  cursor: default;
  position: relative;
}

/* 右端に白い三角ノッチ */
.sidebar-widget__heading::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 0;
  border-top: 40px solid var(--gray-bg);
  border-left: 14px solid transparent;
}

/* アコーディオン見出しはクリック可能 */
.sidebar-accordion__toggle {
  cursor: pointer;
}

.sidebar-accordion__toggle:hover {
  opacity: 0.9;
}

/* アコーディオンの開閉アイコン */
.sidebar-chevron {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.3s;
  position: relative;
  z-index: 1;
}

.sidebar-accordion--open .sidebar-chevron {
  transform: rotate(180deg);
}

/* アコーディオン本体（デフォルト閉じ） */
.sidebar-accordion__body {
  display: none;
}

.sidebar-accordion--open .sidebar-accordion__body {
  display: block;
}

/* ---- 最新記事リスト ---- */
.sidebar-latest {
  padding: 4px 0;
}

.sidebar-latest__item {
  border-bottom: 1px solid var(--border);
}

.sidebar-latest__item:last-child {
  border-bottom: none;
}

.sidebar-latest__link {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 14px;
  font-size: 12px;
  color: var(--text);
  line-height: 1.5;
  transition: background 0.15s, color 0.15s;
}

.sidebar-latest__link:hover {
  background: var(--gray-bg);
  color: var(--blue);
}

.sidebar-latest__date {
  font-size: 11px;
  color: var(--text-sub);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 2px;
}

.sidebar-latest__title {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* 最新記事のチェブロン */
.sidebar-latest__arrow {
  font-size: 16px;
  color: var(--text-sub);
  flex-shrink: 0;
  align-self: center;
}

/* ---- カテゴリー・アーカイブ共通リスト ---- */
.sidebar-cats,
.sidebar-archive-list {
  padding: 4px 0;
}

.sidebar-cats__item > a,
.sidebar-archive-list__item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: background 0.15s, color 0.15s;
}

.sidebar-cats__item:last-child > a,
.sidebar-archive-list__item:last-child > a {
  border-bottom: none;
}

.sidebar-cats__item > a:hover,
.sidebar-archive-list__item > a:hover {
  background: var(--gray-bg);
  color: var(--blue);
}

.sidebar-cats__count {
  font-size: 12px;
  color: var(--text-sub);
}

/* アーカイブ：年の折りたたみ */
.sidebar-archive-year-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  width: 100%;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  font-family: var(--font);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.sidebar-archive-year-btn:hover {
  background: var(--gray-bg);
  color: var(--blue);
}

.sidebar-archive-year-btn .sidebar-chevron {
  width: 12px;
  height: 12px;
}

.sidebar-archive-months {
  display: none;
  padding: 0;
  background: #f2f4f8;
}

.sidebar-archive-list__item--open .sidebar-archive-months {
  display: block;
}

.sidebar-archive-months__link {
  display: flex;
  align-items: center;
  padding: 8px 14px 8px 28px;
  font-size: 12px;
  color: var(--text-sub);
  border-bottom: 1px solid #e5e5e5;
  transition: background 0.15s, color 0.15s;
}

.sidebar-archive-months__link::before {
  content: "─";
  margin-right: 8px;
  font-size: 10px;
  color: #bbb;
}

.sidebar-archive-months__link:hover {
  color: var(--blue);
  background: #e8ecf5;
}

/* =============================================
   会社概要ページ
   ============================================= */

.page-hero--about {
  background-image: url('../images/about-hero.jpg');
}

/* リード文 */
.about-lead {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}

.about-lead__heading {
  font-size: 28px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.8;
  text-decoration: underline;
  text-decoration-color: var(--blue);
  text-underline-offset: 8px;
  margin-bottom: 48px;
}

.about-lead__body {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.about-lead__body p {
  font-size: 15px;
  line-height: 2;
  color: var(--text);
  margin-bottom: 20px;
}

.about-lead__body p:last-child {
  margin-bottom: 0;
}

.about-lead__motto {
  max-width: 720px;
  margin: 48px auto 0;
  padding: 24px 32px;
  background: var(--gray-bg);
  border-left: 4px solid var(--blue);
  text-align: left;
}

.about-lead__motto p {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 8px;
}

.about-lead__motto cite {
  font-size: 13px;
  color: var(--text-sub);
  font-style: normal;
}

/* ご挨拶 */
.about-greeting {
  padding: 80px 0;
}

.about-greeting__body {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
}

.about-greeting__text p {
  font-size: 15px;
  line-height: 2.1;
  color: var(--text);
  margin-bottom: 24px;
}

.about-greeting__text p:last-child {
  margin-bottom: 0;
}

.about-greeting__closing {
  color: var(--blue);
  font-weight: 600;
}

.about-greeting__sign {
  margin-top: 32px;
  text-align: right;
}

.about-greeting__title {
  display: block;
  font-size: 13px;
  color: var(--text-sub);
  margin-bottom: 6px;
}

.about-greeting__name {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.12em;
}

.about-greeting__photo img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.about-greeting__photo-placeholder {
  display: none;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--gray-bg);
  border: 1px dashed var(--border);
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-sub);
  font-size: 13px;
  line-height: 1.8;
}

/* 会社概要テーブル */
.about-outline-section {
  padding: 80px 0;
}

.about-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.about-table th,
.about-table td {
  padding: 18px 24px;
  border: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.9;
}

.about-table th {
  background: #c0d8eb;
  color: var(--blue);
  font-weight: 700;
  width: 200px;
  white-space: nowrap;
}

.about-table td {
  background: #fff;
  color: var(--text);
}

.about-table td a {
  color: var(--blue);
}

/* アクセスマップ */
.about-access-section {
  padding: 80px 0;
  background: #fff;
}

.about-access__body {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}

.about-access__dl {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.about-access__dl-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0 16px;
  font-size: 14px;
}

.about-access__dl-row dt {
  font-weight: 700;
  color: var(--text);
  padding-top: 1px;
}

.about-access__dl-row dd {
  color: var(--text);
  line-height: 1.8;
}

.about-access__dl-row dd a {
  color: var(--blue);
}

.about-access__map iframe {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
  display: block;
}

/* =============================================
   レスポンシブ：スマートフォン（〜767px）
   ============================================= */
@media (max-width: 767px) {
  .header-inner {
    height: var(--header-h-sp);
    align-items: center;
    justify-content: space-between;
  }

  /* 青エリア：斜めなし・ロゴのみ */
  .header-left {
    flex: 0 0 auto;
    height: 100%;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
  }

  .header-left::after {
    width: 30px;
  }

  .header-catch {
    display: none;
  }

  .header-logo img {
    height: 32px;
  }

  .logo-fallback {
    font-size: 18px;
  }

  /* PC ナビ・情報エリアを非表示 */
  .header-right {
    display: none;
  }

  /* ハンバーガーボタンを表示 */
  .hamburger {
    display: flex;
  }

  /* モバイルメニューを有効化 */
  .mobile-nav {
    display: block;
  }

  /* ヒーロー（SP） */
  .hero {
    height: 480px;
  }

  .hero-catch {
    bottom: 36px;
    left: 16px;
    padding: 10px 16px;
  }

  .hero-catch p {
    font-size: 14px;
  }

  .hero-indicators {
    bottom: 12px;
    right: 16px;
  }

  .hero-dot {
    width: 24px;
  }

  /* 板金塗装セクション（SP） */
  .bankin-header {
    padding: 40px 20px 16px;
  }

  .bankin-title__en {
    font-size: 36px;
  }

  .bankin-catch {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .bankin-num {
    font-size: 28px;
  }

  .bankin-video-wrap {
    padding: 0 16px;
  }

  .bankin-top {
    padding-bottom: 32px;
  }

  .bankin-points-bg {
    padding: 32px 16px;
  }

  .bankin-point {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .bankin-cta {
    padding: 36px 20px;
  }

  .bankin-btn {
    padding: 14px 28px;
    font-size: 14px;
  }

  .bankin-reviews {
    padding: 40px 16px;
  }

  .bankin-reviews__grid {
    grid-template-columns: 1fr;
  }

  .bankin-makers {
    padding: 32px 16px 48px;
  }

  .maker-logos img {
    height: 28px;
  }

  /* アクセスセクション（SP） */
  .access-section {
    flex-direction: column;
    min-height: 0;
    overflow: visible;
  }

  .access-left {
    flex: none;
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 36px), 0 100%);
    padding: 32px 20px 56px;
    z-index: 1;
  }

  .access-right {
    margin-left: 0;
    margin-top: -36px;
    padding: 0;
    z-index: 0;
    clip-path: none;
  }

  .access-map {
    aspect-ratio: 4 / 3;
  }

  .access-info {
    font-size: 13px;
    gap: 8px 12px;
  }

  .access-map-link {
    margin-top: 20px;
  }

  /* ニュースセクション（SP） */
  .news-section {
    flex-direction: column;
  }

  .news-left {
    flex: none;
    clip-path: none;
    padding: 32px 20px 24px;
    align-items: flex-start;
    text-align: left;
    background-image: none;
    background-color: var(--gray-bg);
    min-height: 0;
  }

  .news-left::before {
    display: none;
  }

  .news-title__en {
    font-size: 38px;
    color: var(--blue);
  }

  .news-title__ja {
    color: var(--blue);
  }

  .news-section-desc {
    color: var(--text-sub);
  }

  .news-right {
    margin-left: 0;
    padding: 16px 20px 40px;
  }

  .news-item__img {
    width: 120px;
    height: 88px;
  }

  .news-more {
    text-align: center;
  }

  /* フッター（SP） */
  .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 40px 20px 32px;
    text-align: center;
  }

  .footer-logo-col {
    flex: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-logo img {
    height: 52px;
  }

  .footer-sns {
    justify-content: center;
    margin-top: 20px;
  }

  .footer-nav {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .footer-nav__col {
    gap: 20px;
    padding: 0 16px;
    align-items: flex-start;
  }

  .footer-contact {
    flex: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-contact__top {
    justify-content: center;
  }

  .footer-tel {
    font-size: 26px;
  }

  /* サービスセクション（SP） */
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 32px 20px;
  }

  .section-title__en {
    font-size: 38px;
  }

  .section-desc {
    font-size: 13px;
  }

  .service-cards {
    flex-direction: column;
    height: auto;
    overflow: visible;
  }

  .service-card {
    flex: 0 0 130px;
    display: flex;
    align-items: center;
  }

  /* 斜め区切りをリセット */
  .service-card--1,
  .service-card--2,
  .service-card--3 {
    clip-path: none;
    margin-left: 0;
    z-index: auto;
  }

  .service-card__content {
    position: relative;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    bottom: auto;
  }

  .service-card__title {
    font-size: 16px;
    margin-bottom: 0;
    flex: 1;
    text-align: center;
  }

  /* 説明文は非表示 */
  .service-card__desc {
    display: none;
  }

  /* 右矢印 */
  .service-card__content::after {
    content: '›';
    font-size: 26px;
    font-weight: 300;
    color: var(--blue);
    flex-shrink: 0;
    transition: color .3s;
  }

  .service-card:hover .service-card__content::after {
    color: var(--white);
  }

  /* ページ内サブナビ（SP） */
  .page-subnav {
    top: var(--header-h-sp);
    overflow-x: auto;
  }

  .page-subnav__list {
    justify-content: flex-start;
    min-width: max-content;
  }

  .page-subnav__link {
    padding: 11px 18px;
    font-size: 12px;
  }

  .page-subnav__link:hover::after {
    width: calc(100% - 36px);
  }

  /* ページヒーロー（SP） */
  .page-hero {
    height: 180px;
  }

  .page-hero__title {
    font-size: 24px;
  }

  .page-hero__en {
    font-size: 11px;
    letter-spacing: 0.2em;
  }

  /* inner（SP） */
  .inner {
    padding: 0 20px;
  }

  /* セクション見出し（SP） */
  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading__ja {
    font-size: 22px;
  }

  /* お悩みセクション（SP） */
  .worries-section {
    padding: 40px 0 0;
  }

  .worries-heading {
    margin-bottom: 28px;
    padding: 0 20px;
  }

  .worries-heading__main {
    font-size: 22px;
  }

  .worries-body {
    flex-direction: column;
    gap: 24px;
    padding: 0 20px 52px;
  }

  .worries-img {
    flex: none;
    width: 100%;
  }

  .worries-img img {
    height: 200px;
  }

  .worries-badge {
    font-size: 14px;
    padding: 10px 16px;
  }

  /* resolve（SP） */
  .worries-resolve {
    padding: 0 20px 40px;
  }

  .worries-resolve__arrow {
    border-left-width: 40px;
    border-right-width: 40px;
    border-top-width: 32px;
    margin-bottom: 24px;
  }

  .worries-resolve__main {
    font-size: 20px;
  }

  /* ボタン（SP） */
  .btn {
    padding: 13px 28px;
    font-size: 14px;
  }

  .btn--tel {
    font-size: 20px;
  }

  /* ポイントセクション（SP） */
  .kizu-points-section {
    padding: 48px 0;
  }

  .kizu-points {
    gap: 40px;
  }

  .kizu-point {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .kizu-point__num {
    font-size: 48px;
    order: -1;
  }

  .kizu-point--rev .kizu-point__img {
    order: 0;
  }

  .kizu-point--rev .kizu-point__body {
    order: 0;
  }

  .kizu-point__title {
    font-size: 17px;
    margin-bottom: 10px;
  }

  /* 注意事項（SP） */
  .caution-section {
    padding: 40px 0;
  }

  .caution-inner {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }

  .caution-left {
    flex: none;
  }

  .caution-title {
    font-size: 20px;
  }

  .caution-body {
    text-align: left;
  }

  /* 施工の流れ（SP） */
  .flow-section {
    padding: 48px 0;
  }

  .flow-list::before {
    left: 40px;
  }

  .flow-item {
    gap: 20px;
    padding-bottom: 32px;
  }

  .flow-item__step {
    width: 80px;
  }

  .flow-item__step span {
    font-size: 28px;
  }

  .flow-item__body {
    padding-bottom: 32px;
  }

  .flow-item__title {
    font-size: 16px;
  }

  /* FAQ（SP） */
  .faq-section {
    padding: 48px 0;
  }

  .faq-q {
    font-size: 14px;
    padding: 18px 0;
  }

  .faq-a {
    font-size: 13px;
    padding-bottom: 18px;
  }

  /* CTA（SP） */
  .cta-section {
    padding: 48px 20px;
  }

  .cta-catch {
    font-size: 20px;
  }

  .cta-sub {
    font-size: 13px;
    margin-bottom: 28px;
  }

  .cta-actions {
    flex-direction: column;
    gap: 16px;
  }

  /* カスタムページ：施工メニュー（SP） */
  .menu-section {
    padding: 48px 0;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .menu-card {
    padding: 24px 20px;
  }

  /* カスタムページ：Before / After スライダー（SP） */
  .ba-section {
    padding: 48px 0;
  }

  .ba-intro {
    margin-bottom: 32px;
  }

  .ba-list {
    gap: 36px;
  }

  .ba-slider__handle {
    width: 36px;
    height: 36px;
  }

  .ba-slider__handle svg {
    width: 16px;
    height: 16px;
  }

  .ba-slider__tag {
    font-size: 11px;
    padding: 3px 10px;
  }

  /* カスタムページ：アコーディオンFAQ（SP） */
  .accordion-item__q {
    font-size: 14px;
    padding: 16px 40px 16px 16px;
    gap: 12px;
  }

  .accordion-item__q::after {
    right: 16px;
  }

  .accordion-item__label {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .accordion-item__a {
    padding: 0 16px 18px 52px;
    font-size: 13px;
  }

  /* 車検・点検ページ（SP） */
  .shaiken-lead {
    padding: 44px 20px 36px;
  }

  .shaiken-lead__heading {
    font-size: 20px;
  }

  .shaiken-service {
    padding: 48px 0;
  }

  .shaiken-service__title {
    font-size: 20px;
  }

  .shaiken-service__body,
  .shaiken-service__body--rev {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 28px;
  }

  .shaiken-service__img img {
    height: 220px;
  }

  /* その他サービス（SP） */
  .other-services {
    padding: 48px 20px;
  }

  .other-services__heading {
    font-size: 18px;
    margin-bottom: 32px;
  }

  .other-services__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* 定期点検・法定点検（SP） */
  .teiki-intro {
    padding: 44px 20px 36px;
  }

  .teiki-intro__heading {
    font-size: 20px;
  }

  .teiki-diff {
    padding: 40px 20px;
  }

  .hoteiten-section {
    padding: 40px 20px;
  }

  .hoteiten-cols {
    flex-direction: column;
    gap: 20px;
  }

  .hoteiten-col__divider {
    display: none;
  }

  .hoteiten-col__inner {
    padding: 24px 20px;
  }

  .teiki-merit {
    padding: 44px 20px;
  }

  .teiki-merit__header {
    flex-direction: column;
    gap: 8px;
  }

  .teiki-merit__cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* ブログページ（SP） */
  .blog-wrap {
    padding: 32px 0 56px;
  }

  .blog-layout {
    flex-direction: column;
    gap: 32px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .blog-sidebar {
    flex: none;
    width: 100%;
  }

  /* 月別アーカイブの白三角ノッチを背景色に合わせる */
  .sidebar-widget__heading::after {
    border-top-color: var(--gray-bg);
  }

  /* 会社概要ページ（SP） */
  .about-lead {
    padding: 48px 0;
  }

  .about-lead__heading {
    font-size: 20px;
    margin-bottom: 32px;
  }

  .about-lead__motto {
    padding: 20px;
    margin-top: 32px;
  }

  .about-greeting {
    padding: 48px 0;
  }

  .about-greeting__body {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-greeting__photo {
    max-width: 260px;
    margin: 0 auto;
  }

  .about-greeting__name {
    font-size: 20px;
  }

  .about-outline-section {
    padding: 48px 0;
  }

  .about-table th {
    width: 100px;
    padding: 14px 16px;
    white-space: normal;
  }

  .about-table td {
    padding: 14px 16px;
  }

  .about-access-section {
    padding: 48px 0;
  }

  .about-access__body {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-greeting__motto {
    padding: 20px 20px;
    margin-top: 32px;
  }
}

/* =============================================
   お問い合わせページ
   ============================================= */

.page-hero--contact {
  background: linear-gradient(135deg, #0d3d7a 0%, #1a5ca8 60%, #2176c8 100%);
}

.contact-section {
  padding: 72px 0 96px;
  background: var(--gray-bg);
}

.contact-lead {
  text-align: center;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 28px;
}

.contact-notice {
  background: #e8f0fb;
  border-left: 4px solid var(--blue);
  border-radius: 4px;
  padding: 16px 20px;
  margin-bottom: 48px;
  font-size: 13px;
  color: #444;
  line-height: 1.8;
}

/* フォームラッパー */
.contact-form-wrap {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  padding: 56px 64px;
  max-width: 760px;
  margin: 0 auto;
}

/* ハニーポット（視覚的に完全に隠す） */
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* フォームグループ */
.form-group {
  margin-bottom: 36px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
}

.required-badge {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.optional-badge {
  display: inline-block;
  background: #999;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

/* テキスト入力・メール・電話 */
.form-input {
  width: 100%;
  padding: 10px 0;
  border: none;
  border-bottom: 2px solid var(--border);
  background: transparent;
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}

.form-input::placeholder {
  color: #bbb;
}

.form-input:focus {
  border-bottom-color: var(--blue);
}

.form-input.is-error {
  border-bottom-color: #d9534f;
}

/* セレクト */
.form-select-wrap {
  position: relative;
  display: inline-block;
  width: 260px;
}

.form-select-wrap::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--blue);
  pointer-events: none;
}

.form-select {
  width: 100%;
  padding: 10px 36px 10px 2px;
  border: none;
  border-bottom: 2px solid var(--border);
  background: transparent;
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  outline: none;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.2s;
}

.form-select:focus {
  border-bottom-color: var(--blue);
}

.form-select.is-error {
  border-bottom-color: #d9534f;
}

/* テキストエリア */
.form-textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  outline: none;
  resize: vertical;
  min-height: 140px;
  transition: border-color 0.2s;
}

.form-textarea::placeholder {
  color: #bbb;
}

.form-textarea:focus {
  border-color: var(--blue);
}

.form-textarea.is-error {
  border-color: #d9534f;
}

/* エラーメッセージ */
.form-error {
  display: block;
  color: #d9534f;
  font-size: 12px;
  margin-top: 6px;
  min-height: 1em;
}

/* チェックボックス（個人情報同意） */
.form-group--privacy {
  margin-bottom: 24px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--blue);
  flex-shrink: 0;
  cursor: pointer;
}

.form-checkbox__label {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}

.form-checkbox__label a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-checkbox__label a:hover {
  opacity: 0.75;
}

/* reCAPTCHA注記 */
.recaptcha-note {
  font-size: 12px;
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 36px;
  text-align: center;
}

.recaptcha-note a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* 送信ボタン */
.form-submit {
  text-align: center;
}

.btn--submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--blue);
  color: var(--white);
  border: 2px solid var(--blue);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 72px;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 0.08em;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
}

.btn--submit:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.btn--submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn--submit.is-loading::after {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* 送信完了メッセージ */
.form-success {
  text-align: center;
  padding: 64px 32px;
}

.form-success__icon {
  width: 64px;
  height: 64px;
  background: #28a745;
  color: var(--white);
  border-radius: 50%;
  font-size: 30px;
  line-height: 64px;
  margin: 0 auto 24px;
}

.form-success__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.form-success__text {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 36px;
}

/* 送信エラーバナー */
.form-send-error {
  background: #fff0f0;
  border: 1px solid #f5c6c6;
  border-radius: 4px;
  padding: 14px 20px;
  margin-bottom: 24px;
  color: #d9534f;
  font-size: 14px;
  text-align: center;
  display: none;
}

.form-send-error.is-visible {
  display: block;
}

/* SP対応 */
@media (max-width: 767px) {
  .contact-section {
    padding: 48px 0 64px;
  }

  .contact-lead {
    font-size: 14px;
    text-align: left;
  }

  .contact-notice {
    font-size: 12px;
    margin-bottom: 32px;
  }

  .contact-form-wrap {
    padding: 32px 20px;
    border-radius: 0;
    box-shadow: none;
  }

  .form-select-wrap {
    width: 100%;
  }

  .btn--submit {
    width: 100%;
    padding: 16px 24px;
  }

  .form-success__title {
    font-size: 20px;
  }
}
