/* ============================================================
   Honda Cars 博多レンタカー LP - style.css
   ============================================================ */

/* ──────────────────────────────────────
   CSS カスタムプロパティ（設計変数）
────────────────────────────────────── */
:root {
  /* Colors */
  --color-primary:       #CC0000;
  --color-bg-low:        #F3F5F7;
  --color-bg-high:       #24292F;
  --color-text-mid:      #424A53;
  --color-text-low:      #6E7781;
  --color-divider:       #D0D6DE;
  --color-table-hd-dark: #6E7781;
  --color-table-hd-thin: #E4E8ED;
  --color-white:         #FFFFFF;
  --color-black:         #000000;

  /* Fonts */
  --font-jp:     'M PLUS Rounded 1c', sans-serif;
  --font-jp2:    'M PLUS Rounded 1c', sans-serif;
  --font-en:     'M PLUS Rounded 1c', sans-serif;
  --font-round:  'M PLUS Rounded 1c', sans-serif;

  /* Sizes */
  --container-max: 1200px;
  --header-h:       72px;
  --mv-menu-h:      80px;

  /* Transition */
  --transition: 0.3s ease;
}

/* ──────────────────────────────────────
   Base
────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-jp);
  color: var(--color-text-mid);
  background: var(--color-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition);
}

a:hover {
  opacity: 0.8;
}

/* ──────────────────────────────────────
   Container
────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

/* ──────────────────────────────────────
   Section 共通
────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-sub {
  font-family: var(--font-jp2);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-sub--white {
  color: rgba(255,255,255,0.8);
}

.section-title {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.3;
  color: var(--color-bg-high);
  text-align: center;
}

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

section {
  padding: 100px 0;
}

/* ──────────────────────────────────────
   Fade-up アニメーション（JS連動）
────────────────────────────────────── */
.js-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* intro-item 個別スタガー：CSS transition-delay で滑らかな順次表示 */
.intro-item.js-fade-up:nth-child(1) { transition-delay: 0ms; }
.intro-item.js-fade-up:nth-child(2) { transition-delay: 120ms; }
.intro-item.js-fade-up:nth-child(3) { transition-delay: 240ms; }
.intro-item.js-fade-up:nth-child(4) { transition-delay: 360ms; }

/* ──────────────────────────────────────
   HEADER
────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--color-primary);
  border-bottom: 1px solid rgba(255,255,255,0.4);
}

.header-inner {
  display: flex;
  align-items: stretch;
  max-width: 100%;
  margin: 0;
  padding: 0;
  height: var(--header-h);
}

/* ロゴエリア */
.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: stretch;
  padding: 0;
}

.header-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 0 20px 0 0;
}

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

/* ナビ */
.header-nav {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-left: 48px;
}

.header-nav-list {
  display: flex;
  gap: 0;
  align-items: center;
  flex-wrap: nowrap;
}

.header-nav-list li a {
  font-family: var(--font-jp2);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
  padding: 6px 14px;
  display: block;
  white-space: nowrap;
  color: var(--color-white);
  border-radius: 50px;
  border: 2px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}

.header-nav-list li a:hover {
  border-color: var(--color-white);
  background: rgba(255,255,255,0.1);
}

/* SP専用：ヘッダー上段ラベル（PC時は非表示） */
.header-sp-label {
  display: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* MENU テキストラベル（PC時は非表示） */
.hamburger-label {
  display: none;
}

.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* SP Nav */
.sp-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity var(--transition);
}

.sp-nav-overlay.is-active { opacity: 1; }

.sp-nav {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: var(--color-white);
  z-index: 1001;
  padding: 80px 24px 40px;
  overflow-y: auto;
  transition: right 0.35s ease;
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
}

.sp-nav.is-open { right: 0; }

.sp-nav-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-low);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  color: var(--color-text-mid);
}

.sp-nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sp-nav-list li a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-jp2);
  font-weight: 700;
  font-size: 15px;
  color: var(--color-text-mid);
  border-bottom: 1px solid var(--color-divider);
  transition: color var(--transition), padding-left var(--transition);
}

.sp-nav-list li a:hover {
  color: var(--color-primary);
  padding-left: 8px;
  opacity: 1;
}

.btn-contact-sp {
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-white) !important;
  border-radius: 4px;
  margin-top: 12px;
  padding: 14px !important;
  border-bottom: none !important;
}

.sp-tel {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--color-primary) !important;
  font-size: 18px !important;
  border-bottom: none !important;
}

/* ──────────────────────────────────────
   MAIN VISUAL
────────────────────────────────────── */
.section-mainvisual {
  padding: 0;
  margin-top: var(--header-h);
  position: relative;
  overflow: hidden;
}

/* 外包ボックス：背景赤・最大幅1440px・上のみ余白 */
.mv-outer {
  background: var(--color-primary);
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 32px 0;
}

/* スライド画像エリア：最大幅1376px */
.mv-inner {
  width: 100%;
  max-width: 1376px;
  position: relative;
  overflow: hidden;
}

/* MV スライダー（Splide） */

/* スライドコンテナを画像の縦横比（2752:1108）で可変 */
#mv-splide .splide__slide {
  aspect-ratio: 2752 / 1108;
  /* overflow: hidden は外す → アニメーション中の角丸防止 */
}

/* picture要素・画像を親に100%フィット・歪みなし */
#mv-splide .splide__slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.mv-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* splide__track：ギャップが見えるよう overflow: visible に。クリップは mv-inner 側で行う */
#mv-splide .splide__track {
  overflow: visible;
}

/* Splide 矢印：赤背景・正円・左右端から半分はみ出す */
#mv-splide .splide__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: 1;
  top: 50%;
  transition: background var(--transition);
}

#mv-splide .splide__arrow:hover {
  background: #a50000;
  opacity: 1;
}

/* Splideデフォルトsvgを非表示にして img を使う */
#mv-splide .splide__arrow svg {
  display: none;
}

#mv-splide .splide__arrow img {
  width: 16px;
  height: 16px;
  display: block;
  flex-shrink: 0;
}

/* prev：左を向く（SVGはもともと左向き） */
#mv-splide .splide__arrow--prev {
  left: -24px;
  transform: translateY(-50%);
}

/* next：右を向く（左向きSVGを180度回転） */
#mv-splide .splide__arrow--next {
  right: -24px;
  transform: translateY(-50%) rotate(180deg);
}

/* ページネーション非表示 */
#mv-splide .splide__pagination { display: none; }

/* MV下CTA：スライド直下インライン表示 */
.mv-cta-bar {
  background: var(--color-primary);
  padding: 32px 40px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* 追従CTAバー：初期は非表示・スクロールで画面下部に表示 */
.cta-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--color-primary);
  padding: 16px 40px;
  display: flex;
  justify-content: center;
  gap: 16px;
  z-index: 900;
  box-shadow: 0 -2px 0 rgba(255,255,255,0.25);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cta-fixed.is-visible {
  transform: translateY(0);
}

.mv-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--color-white);
  color: var(--color-primary);
  font-family: var(--font-jp2);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: normal;
  padding: 16px 40px;
  border-radius: 40px;
  border: 2px solid var(--color-white);
  transition: background var(--transition), color var(--transition), opacity var(--transition);
  white-space: nowrap;
}

.mv-cta-btn:hover {
  background: transparent;
  color: var(--color-white);
  opacity: 1;
}

.mv-cta-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  /* SVG自体が #CC0000 なのでフィルター不要 */
  filter: none;
}

.mv-cta-btn:hover .mv-cta-icon {
  /* ホバー時：白く変換 */
  filter: brightness(0) invert(1);
}

/* ──────────────────────────────────────
   INTRODUCTION
────────────────────────────────────── */
.section-introduction {
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}

.section-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 200px;
  line-height: 1;
  color: rgba(0,0,0,0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* INTRODUCTIONセクション */
.section-introduction {
  position: relative;
}

.section-introduction .section-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  margin-bottom: 48px;
}

/* WORRY背景テキスト：セクション全体にかかる */
.intro-bg-text-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  padding-top: 20px;
  gap: 0.15em;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.intro-bg-text {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 200px;
  line-height: 1;
  color: rgba(0,0,0,0.05);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

/* タイトル・グリッドは背景テキストの前面に */
.section-introduction .section-header .section-title {
  position: relative;
  z-index: 1;
}

.section-introduction .container,
.section-melit .container {
  position: relative;
  z-index: 1;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.intro-item { text-align: left; }

.intro-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 14px;
}

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

/* チェックマーク付きテキスト */
.intro-text {
  font-family: var(--font-jp2);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-bg-high);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* チェックアイコン（SVG画像） */
.intro-check {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: block;
}

/* ソリューションエリア */
.intro-solution {
  text-align: center;
  padding: 32px 0 0;
  position: relative;
}

/* 下向き矢印：ボックスの上端に半分かぶるよう絶対配置 */
.intro-solution-arrow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  line-height: 0;
}

.intro-solution-arrow img {
  width: 64px;
  height: 40px;
  display: block;
}

/* 丸角ボーダーのボックス（斜線ストライプ背景）：矢印が上端に重なる */
.intro-solution-box {
  display: inline-block;
  border: 2px solid var(--color-divider);
  border-radius: 40px;
  padding: 40px 56px 28px;   /* 上padding多めで矢印の重なり分を吸収 */
  text-align: center;
  background-color: var(--color-white);
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.04) 3px,
    rgba(0,0,0,0.04) 6px
  );
  position: relative;
  z-index: 1;
}

/* 「そのお悩み、法人レンタカーが最適です」（1行） */
.intro-solution-main {
  font-family: var(--font-jp2);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3;
  color: var(--color-bg-high);
  white-space: nowrap;
}

/* 「法人レンタカー」インライン強調 */
.intro-solution-brand {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 36px;
  line-height: inherit;
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 8px;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--color-primary);
  vertical-align: baseline;
}

/* ──────────────────────────────────────
   MELIT
────────────────────────────────────── */
.section-melit {
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
}

.melit-bg-text-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  padding-top: 20px;
  gap: 0.2em;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.melit-bg-text {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 200px;
  line-height: 1;
  color: rgba(255,255,255,0.1);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.1em;
}

.section-melit .container {
  position: relative;
  z-index: 1;
}

.melit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.melit-card {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 12px;
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.melit-card-num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 12px;
}

.melit-card-label {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.15em;
}

.melit-card-num {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 52px;
  line-height: 1;
  color: var(--color-white);
}

.melit-card-ttl {
  font-family: var(--font-jp2);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-white);
  margin-bottom: 20px;
  flex: 1;
}

.melit-card-img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
}

.melit-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ──────────────────────────────────────
   PRICE
────────────────────────────────────── */
.section-price {
  background: var(--color-bg-low);
  position: relative;
  overflow: hidden;
}

.price-bg-text-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  gap: 0.2em;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.price-bg-text {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 200px;
  line-height: 1;
  color: rgba(0,0,0,0.06);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.1em;
}

.section-price .container { position: relative; z-index: 1; }

/* フィルタータブ */
.price-filter {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.price-filter-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 16px 12px;
  background: var(--color-white);
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  min-width: 110px;
  transition: border-color var(--transition), color var(--transition);
  font-family: var(--font-jp2);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-text-mid);
}

.price-filter-btn:hover,
.price-filter-btn.is-active {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.price-filter-icon {
  width: 80px;
  height: 52px;
  overflow: hidden;
  border-radius: 4px;
  display: block;
}

.price-filter-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.price-filter-arrow {
  width: 16px;
  height: 16px;
  display: block;
  opacity: 0.4;
}

.price-filter-btn.is-active .price-filter-arrow,
.price-filter-btn:hover .price-filter-arrow {
  opacity: 1;
}

/* 車種リスト */
.price-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.price-item {
  padding: 28px 0;
}

/* クラス名・車種タグ（画像の上） */
.price-item-head {
  margin-bottom: 12px;
}

.price-item-class {
  font-family: var(--font-jp2);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-bg-high);
  margin-bottom: 6px;
}

.price-item-type {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text-mid);
}

.price-item-tag {
  font-family: var(--font-jp2);
  font-weight: 700;
  font-size: 12px;
  color: var(--color-text-mid);
  border: 1px solid var(--color-divider);
  border-radius: 3px;
  padding: 1px 6px;
  flex-shrink: 0;
}

.price-item-models {
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-text-mid);
}

/* 画像＋プランの横並びエリア */
.price-item-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* 画像エリア：白背景・角丸なし */
.price-item-img {
  background: var(--color-white);
  border-radius: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-item-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* プラン縦２段：背景はグレー（右側金額エリアの色） */
.price-item-plans {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--color-bg-low);
  overflow: hidden;
  /* ウィークリー上・マンスリー下を囲む線 */
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
}

/* 各プラン行：左にプラン名（白背景）、右に金額エリア（グレー） */
.price-item-plan {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: stretch;
  flex: 1;
}

/* ウィークリー（1行目）とマンスリー（2行目）の間の区切り線 */
.price-item-plan:first-child {
  border-bottom: 1px solid var(--color-divider);
}

/* プラン名セル：白背景 */
.price-item-plan-name {
  font-family: var(--font-jp2);
  font-weight: 700;
  font-size: 15px;
  color: var(--color-text-mid);
  background: var(--color-white);
  display: flex;
  align-items: center;
  padding: 20px 20px 20px 32px;
}

/* 右エリア：縦並び（金額 → 1日あたり → ボタン）・グレー背景 */
.price-item-plan-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 20px 24px;
  background: var(--color-bg-low);
}

.price-item-amount {
  display: flex;
  align-items: baseline;
  gap: 2px;
  flex-shrink: 0;
}

.price-num {
  font-family: var(--font-jp);
  font-weight: 800;
  font-size: 36px;
  line-height: 1;
  color: var(--color-primary);
}

.price-unit {
  font-family: var(--font-jp2);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-text-mid);
}

.price-period {
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 13px;
  color: var(--color-text-low);
  margin-left: 2px;
}

.price-item-per {
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 13px;
  color: var(--color-text-low);
}

/* 角丸ピル型ボタン：グレー背景・ホバーで反転 */
.btn-price-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-table-hd-dark);
  color: var(--color-white);
  font-family: var(--font-jp2);
  font-weight: 700;
  font-size: 13px;
  padding: 5px 18px;
  border-radius: 40px;
  border: 2px solid var(--color-table-hd-dark);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition);
}

.btn-price-contact:hover {
  background: transparent;
  color: var(--color-table-hd-dark);
  opacity: 1;
}

/* 格安車バナー */
.price-budget-banner {
  margin-top: 40px;
  padding: 20px 40px;
  background: var(--color-white);
  border-radius: 40px;
  text-align: center;
  font-family: var(--font-jp2);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-bg-high);
  border: none;
}

.price-option {
  margin-top: 40px;
  padding: 40px;
  background: var(--color-bg-low);
  border-radius: 12px;
}

.price-option-title {
  font-family: var(--font-jp2);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-bg-high);
  margin-bottom: 24px;
}

.price-option-table-wrap { overflow-x: auto; }

.price-option-table {
  width: 100%;
  border-collapse: collapse;
}

/* ヘッダー行（thead th） */
.price-option-table thead th.price-option-name {
  background: var(--color-table-hd-dark);
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-white);
  padding: 12px 20px;
  text-align: center;
  border-bottom: 1px solid var(--color-divider);
}

/* 項目名セル：#E4E8ED背景・中央揃え・Medium */
.price-option-table td.price-option-name {
  background: var(--color-table-hd-thin);
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  color: var(--color-text-mid);
  padding: 14px 20px;
  text-align: center;
  white-space: nowrap;
  border-bottom: 1px solid var(--color-divider);
  width: 40%;
}

/* 料金セル：白背景・中央揃え */
.price-option-table td.price-option-val {
  background: var(--color-white);
  font-family: var(--font-jp);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  color: var(--color-text-mid);
  padding: 14px 24px;
  text-align: center;
  border-bottom: 1px solid var(--color-divider);
}

.price-option-table tbody tr:last-child td { border-bottom: none; }

/* 価格数字：JP ExtraBold 18px */
.option-price {
  font-family: var(--font-jp);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.3;
  color: var(--color-text-mid);
}

/* 単位テキスト：JP Regular 12px */
.option-unit {
  font-family: var(--font-jp);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3;
  color: var(--color-text-low);
  margin-left: 2px;
}

/* ──────────────────────────────────────
   FLOW
────────────────────────────────────── */
.section-flow { background: var(--color-primary); position: relative; overflow: hidden; }

.section-flow .section-sub  { color: rgba(255,255,255,0.7); }
.section-flow .section-title { color: var(--color-white); }

/* FLOW 背景テキスト */
.flow-bg-text-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}
.flow-bg-text {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 200px;
  line-height: 1;
  color: rgba(255,255,255,0.08);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.section-flow .container { position: relative; z-index: 1; }

/* サブタイトル（リード文）：白・下線付き */
.flow-lead {
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-white);
  text-align: center;
  margin-top: 8px;
  text-decoration: underline;
  text-decoration-color: var(--color-white);
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.flow-lead-accent {
  font-family: var(--font-jp2);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-white);
  position: relative;
  display: inline-block;
  text-decoration: underline;
  text-decoration-color: var(--color-white);
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.flow-lead-accent::before {
  content: '・・・・';
  position: absolute;
  top: -0.9em;
  left: 0;
  width: 100%;
  font-size: 0.8em;
  color: var(--color-white);
  letter-spacing: 0.35em;
  text-align: justify;
  text-align-last: justify;
  pointer-events: none;
}

.flow-title-accent {
  font-family: var(--font-jp2);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.6;
  text-align: center;
}

.flow-list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.flow-item {
  flex: 1;
  text-align: center;
  max-width: 220px;
}

.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 24px;
  padding-top: 60px;
  flex-shrink: 0;
  width: 40px;
}

.flow-step-wrap {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}

.flow-step-label {
  font-family: var(--font-jp2);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  color: var(--color-white);
}

.flow-step-num {
  font-family: var(--font-jp2);
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  color: var(--color-white);
}

.flow-img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 16px;
  max-width: 140px;
  border: none;
  box-shadow: none;
}

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

.flow-ttl {
  font-family: var(--font-jp2);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.flow-desc {
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-white);
  line-height: 1.5;
}

/* ──────────────────────────────────────
   NOTICE
────────────────────────────────────── */
.section-notice { background: var(--color-bg-low); position: relative; overflow: hidden; }

/* NOTICE 背景テキスト */
.notice-bg-text-wrap {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(0);
  width: 100%;
  display: flex;
  align-items: center;
  gap: 60px;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
  height: 220px;
}
.notice-bg-text {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 180px;
  line-height: 1;
  color: rgba(0,0,0,0.035);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.section-notice .container { position: relative; z-index: 1; }

/* NOTICE コンテンツ全体 */
.notice-content {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* NOTICE ブロック（見出し＋本文のセット） */
.notice-block {
  border-top: none;
  padding: 28px 0;
}
.notice-block:last-child { border-bottom: none; }

.notice-block-ttl {
  font-family: var(--font-jp2);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-primary);
  margin-bottom: 12px;
  padding-left: 0;
  border-left: none;
}

.notice-block-text {
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text-mid);
  margin-bottom: 12px;
}
.notice-block-text:last-child { margin-bottom: 0; }

.notice-block-text--accent {
  color: var(--color-primary);
  font-weight: 700;
}

/* NOTICE カード */
.notice-card {
  background: var(--color-white);
  border-radius: 0;
  border-top: 1px solid var(--color-divider);
  padding: 16px 20px;
  margin-top: 12px;
}

.notice-card-ttl {
  font-family: var(--font-jp2);
  font-weight: 700;
  font-size: 15px;
  color: var(--color-bg-high);
  margin-bottom: 8px;
}

.notice-card-text {
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-text-mid);
  margin-bottom: 6px;
}

.notice-card-sub {
  font-family: var(--font-jp);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.7;
  color: var(--color-text-low);
  margin-bottom: 6px;
}

.notice-card-note {
  font-family: var(--font-jp);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
  color: var(--color-text-low);
}

/* お支払い方法 ロゴ画像 */
.notice-pay-logos {
  background: var(--color-white);
  border-top: 1px solid var(--color-divider);
  padding: 16px 20px;
  margin-top: 12px;
}

.notice-pay-img {
  display: block;
  max-width: 800px;
  width: 100%;
  height: auto;
}

/* キャンセル注記 */
.cancel-note {
  font-family: var(--font-jp);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.7;
  color: var(--color-text-low);
  margin-top: 12px;
}

.cancel-table-wrap {
  margin-top: 16px;
  border: 1px solid var(--color-divider);
}

.cancel-table {
  width: 100%;
  border-collapse: collapse;
}

/* ヘッダー：薄グレー背景・ダークテキスト・中央 */
.cancel-table thead tr { background: var(--color-table-hd-thin); }

.cancel-table thead th.cancel-th {
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-text-mid);
  padding: 12px 20px;
  text-align: center;
  border-bottom: 1px solid var(--color-divider);
}

/* 左列：グレー背景・中央揃え */
.cancel-table td.cancel-td-name {
  background: var(--color-table-hd-thin);
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-text-mid);
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid var(--color-divider);
  border-right: 1px solid var(--color-divider);
  width: 40%;
}

/* 右列：白背景・中央揃え */
.cancel-table td.cancel-td-val {
  background: var(--color-white);
  font-family: var(--font-jp);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-text-mid);
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid var(--color-divider);
}

.cancel-table tbody tr:last-child td { border-bottom: none; }

/* 数字部分：太字・大きめ */
.cancel-percent {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-text-mid);
}

/* ──────────────────────────────────────
   INSURANCE
────────────────────────────────────── */
.section-insurance { background: var(--color-white); position: relative; overflow: hidden; }

/* INSURANCE は notice-bg-text-wrap / notice-bg-text を共用（HTML側でクラス流用） */

.section-insurance .container { position: relative; z-index: 1; }

/* INSURANCEセクション内のタイトルは黒 */
.section-insurance .notice-block-ttl { color: var(--color-bg-high); }

/* insurance-content：notice-block をベースに縦並びレイアウト */
.insurance-content {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* notice-block / notice-block-ttl / notice-block-text は NOTICE と共通 */

.insurance-table-wrap { overflow-x: auto; margin-top: 12px; }

.insurance-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 8px;
  font-size: 14px;
}

.insurance-table thead tr th {
  padding: 10px 14px;
  font-family: var(--font-jp2);
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  border: 1px solid var(--color-divider);
}

.ins-th-dark {
  background: var(--color-table-hd-dark);
  color: var(--color-white);
}

/* 左列（項目名）：グレー背景 */
.insurance-table tbody td.ins-td-name {
  background: var(--color-table-hd-thin);
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 13px;
  color: var(--color-text-mid);
  padding: 10px 14px;
  text-align: center;
  border: 1px solid var(--color-divider);
}

/* 右列（値）：白背景 */
.insurance-table tbody td.ins-td-val {
  background: var(--color-white);
  font-family: var(--font-jp);
  font-weight: 400;
  font-size: 13px;
  color: var(--color-text-mid);
  padding: 10px 14px;
  text-align: center;
  border: 1px solid var(--color-divider);
}

/* 太字部分 */
.insurance-table tbody td strong {
  font-weight: 700;
}

/* accidentテーブル：2段ヘッダー・列幅調整 */
.insurance-table--accident th[colspan],
.insurance-table--accident th[rowspan] { vertical-align: middle; }
.insurance-table--accident col.col-category { width: 10%; }
.insurance-table--accident col.col-content  { width: 46%; }
.insurance-table--accident col.col-cost     { width: 15%; }
.insurance-table--accident tbody td { text-align: center; }

/* HCHテーブル：加入料列の数字を大きく */
.insurance-table--hch tbody td:last-child strong { font-size: 16px; }

/* NOCテーブル：左右列を50%ずつ */
.insurance-table--noc th,
.insurance-table--noc td { width: 50%; }

.insurance-notes-text {
  font-family: var(--font-jp);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.8;
  color: var(--color-text-low);
  margin-top: 8px;
}

.insurance-notes {
  margin-top: 8px;
}

.insurance-notes p {
  font-family: var(--font-jp);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0;
  color: var(--color-text-low);
}

/* HCH補償パックの箇条書き */
.insurance-list {
  margin-top: 12px;
  margin-bottom: 12px;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.insurance-list li {
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-text-mid);
}

.insurance-list li::before {
  content: none;
}

/* 適用外ケース：中点付きリスト */
.insurance-list--disc li {
  padding-left: 1em;
  text-indent: -1em;
}
.insurance-list--disc li::before {
  content: '・';
  color: var(--color-text-mid);
}

/* 緊急連絡先テーブル */
.insurance-table--emergency { min-width: 480px; }

.insurance-table--emergency .emergency-cell {
  vertical-align: top;
  padding: 16px 20px;
  text-align: center;
}

.insurance-emergency-name {
  font-family: var(--font-jp2);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-bg-high);
  margin-bottom: 4px;
}

.insurance-emergency-tel {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 22px;
  color: var(--color-primary);
  margin-bottom: 2px;
  display: block;
}

.insurance-emergency-note {
  font-family: var(--font-jp);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
  color: var(--color-text-low);
}

/* 違法駐車テーブル */
.insurance-table--parking col.col-parking-item { width: 55%; }
.insurance-table--parking col.col-parking-val  { width: 45%; }
.insurance-table--parking tbody td.ins-td-name { text-align: left; }
.insurance-table--parking tbody td.ins-td-val  { text-align: center; }

/* ──────────────────────────────────────
   SHOP
────────────────────────────────────── */
.section-shop { background: var(--color-primary); position: relative; overflow: hidden; }

/* SHOP 背景テキスト */
.shop-bg-text-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 60px;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}
.shop-bg-text {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 180px;
  line-height: 1;
  color: rgba(255,255,255,0.08);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.section-shop .container { position: relative; z-index: 1; }

.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 32px;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.shop-card {
  background: transparent;
}

.shop-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
}

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

/* 画像プレースホルダー（写真未確定の場合） */
.shop-img--placeholder {
  background: #aaa;
}

.shop-body { padding: 14px 0 0; }

.shop-name {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--color-white);
  margin-bottom: 8px;
}

.shop-info-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 0;
  list-style: none;
  padding: 0;
}

.shop-info-address,
.shop-info-hours {
  font-family: var(--font-jp);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

.shop-info-tel { margin: 2px 0; }

.shop-tel {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.3;
  color: var(--color-white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity var(--transition);
}

.shop-tel-icon {
  display: block;
  flex-shrink: 0;
}

.shop-tel:hover { opacity: 0.7; }

.shop-map {
  border-radius: 8px;
  overflow: hidden;
  margin-top: 16px;
}

/* 両店舗配車可能バナー */
.shop-both-notice {
  background: var(--color-white);
  border-radius: 50px;
  padding: 18px 24px;
  text-align: center;
}

.shop-both-notice p {
  font-family: var(--font-jp2);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-primary);
  letter-spacing: 0.05em;
}

/* ──────────────────────────────────────
   FAQ
────────────────────────────────────── */
.section-faq {
  background-color: var(--color-bg-low);
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.04) 3px,
    rgba(0,0,0,0.04) 6px
  );
  position: relative;
  overflow: hidden;
}

/* FAQ 背景テキスト */
.faq-bg-text-wrap {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}
.faq-bg-text {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 200px;
  line-height: 1;
  color: rgba(0,0,0,0.03);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.section-faq .container { position: relative; z-index: 1; }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--color-white);
  border-radius: 4px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-q-label {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 36px;
  line-height: 1;
  color: var(--color-primary);
  flex-shrink: 0;
  width: 36px;
  text-align: center;
}

.faq-q-text {
  flex: 1;
  font-family: var(--font-jp2);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-bg-high);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.35s ease;
  line-height: 0;
}

.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }

.faq-answer {
  display: flex;
  align-items: baseline;
  gap: 12px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 20px;
}

.faq-answer.is-open {
  max-height: 400px;
  padding: 0 20px 20px;
}

.faq-a-label {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 36px;
  line-height: 1;
  color: var(--color-table-hd-dark);
  flex-shrink: 0;
  width: 36px;
  text-align: center;
}

.faq-a-text { flex: 1; }

.faq-a-text p {
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-low);
}

/* ──────────────────────────────────────
   TRUSTED
────────────────────────────────────── */
.section-trusted { background: var(--color-white); position: relative; overflow: hidden; }

/* TRUSTED 背景テキスト */
.trusted-bg-text-wrap {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  align-items: center;
  gap: 60px;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}
.trusted-bg-text {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 160px;
  line-height: 1;
  color: rgba(0,0,0,0.03);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.section-trusted .container { position: relative; z-index: 1; }

.trusted-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.trusted-card {
  background: transparent;
}

.trusted-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 10px;
}

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

/* ラベルテキスト（写真下） */
.trusted-label {
  font-family: var(--font-jp2);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-text-mid);
  text-align: center;
  padding: 12px 4px 0;
  line-height: 1.4;
}

/* ──────────────────────────────────────
   CONTACT
────────────────────────────────────── */
.section-contact { background: var(--color-primary); position: relative; overflow: hidden; }

/* CONTACT 背景テキスト */
.contact-bg-text-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}
.contact-bg-text {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 160px;
  line-height: 1;
  color: rgba(255,255,255,0.07);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.section-contact .container { position: relative; z-index: 1; }

/* 3ボタン横並び */
.contact-cta-wrap {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* 法人専用ダイヤル情報 */
.contact-info {
  text-align: center;
}

.contact-info-text {
  font-family: var(--font-jp2);
  font-weight: 700;
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-tel-wrap {
  text-align: center;
  color: var(--color-white);
}

.contact-tel-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-jp2);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.8);
}

.contact-tel-icon { width: 22px; height: 22px; }

.contact-tel-num {
  display: block;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 40px;
  color: var(--color-white);
  margin-bottom: 8px;
  transition: opacity var(--transition);
}

.contact-tel-num:hover { opacity: 0.8; }

.contact-tel-hours {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}

.btn-contact-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #06C755;
  color: var(--color-white);
  font-family: var(--font-jp2);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 4px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-contact-line:hover {
  background: #05a847;
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6,199,85,0.4);
}

.btn-contact-line img { width: 24px; height: 24px; }

.contact-form-wrap {
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 40px;
}

.contact-form-lead {
  font-family: var(--font-jp2);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-white);
  margin-bottom: 24px;
}

.contact-form-row { margin-bottom: 18px; }

.contact-label {
  display: block;
  font-family: var(--font-jp2);
  font-weight: 700;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 6px;
}

.required {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  color: var(--color-white);
  font-size: 15px;
  transition: border-color var(--transition), background var(--transition);
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: rgba(255,255,255,0.35);
}

.contact-input:focus,
.contact-textarea:focus {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.15);
  outline: none;
}

.contact-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form-submit {
  text-align: right;
  margin-top: 8px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-jp2);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 40px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-submit:hover {
  background: #a50000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(204,0,0,0.4);
}

/* ──────────────────────────────────────
   FOOTER
────────────────────────────────────── */
.site-footer {
  background: var(--color-bg-high);
  color: var(--color-white);
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 60px 40px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: start;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer-logo { height: 44px; width: auto; }

.footer-address { font-style: normal; }

.footer-address p {
  font-family: var(--font-jp);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
}

.footer-address a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.footer-address a:hover {
  color: var(--color-white);
  opacity: 1;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
  justify-content: flex-end;
}

.footer-nav ul li a {
  font-family: var(--font-jp);
  font-weight: 400;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.footer-nav ul li a:hover {
  color: var(--color-white);
  opacity: 1;
}

.footer-copy {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 40px;
  text-align: left;
}

.footer-copy p {
  font-family: var(--font-jp);
  font-weight: 400;
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255,255,255,0.4);
}

/* ──────────────────────────────────────
   ページトップへ戻るボタン
────────────────────────────────────── */
.btn-page-top {
  position: fixed;
  bottom: 104px;
  right: 24px;
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  color: var(--color-white);
  border: 1px solid var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 980;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition), color var(--transition);
}

.btn-page-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.btn-page-top:hover {
  background: var(--color-white);
  color: var(--color-primary);
  opacity: 1;
  transform: translateY(0);
}


/* ──────────────────────────────────────
   RESPONSIVE — 中間サイズ (≤ 1280px)
   ボタンが3つ並んで窮屈にならないよう縮小
────────────────────────────────────── */
@media (max-width: 1280px) {
  .mv-cta-btn {
    font-size: 16px;
    padding: 14px 24px;
    gap: 8px;
  }
  .mv-cta-icon {
    width: 18px;
    height: 18px;
  }
  .mv-cta-bar,
  .cta-fixed {
    gap: 12px;
    padding: 24px 24px;
  }
}

/* ──────────────────────────────────────
   RESPONSIVE — Tablet (≤ 1024px)
────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --header-h: 64px; }

  .container { padding: 0 24px; }
  .section-title { font-size: 32px; }

  .header-nav { display: none; }
  .hamburger { display: flex; margin-right: 20px; }
  .sp-nav-overlay { display: block; pointer-events: none; }
  .sp-nav-overlay.is-active { pointer-events: auto; }
  .header-contact .btn-contact-header { display: none; }

  .mv-slide-content { left: 40px; }
  .mv-title { font-size: 36px; }

  .intro-grid { grid-template-columns: repeat(2, 1fr); }

  .melit-grid { grid-template-columns: repeat(2, 1fr); }

  .price-filter { flex-wrap: wrap; }

  .flow-list { flex-wrap: wrap; gap: 20px; }
  .flow-arrow { display: none; }
  .flow-item { max-width: calc(50% - 10px); flex: none; width: calc(50% - 10px); }

  .notice-content { max-width: 100%; }
  .insurance-content { max-width: 100%; }
  .shop-grid { grid-template-columns: 1fr; max-width: 100%; }
  .trusted-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cta-wrap { gap: 12px; }

  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-nav ul { justify-content: flex-start; }

  .flow-bg-text { font-size: 120px; }
  .notice-bg-text { font-size: 120px; }
  .shop-bg-text { font-size: 120px; }
  .faq-bg-text { font-size: 120px; }
  .trusted-bg-text { font-size: 100px; }
  .contact-bg-text { font-size: 100px; }
}

/* ──────────────────────────────────────
   RESPONSIVE — SP (≤ 768px)
────────────────────────────────────── */
@media (max-width: 768px) {
  /* SP時：ヘッダー高さ（ロゴ＋ハンバーガーのみの1段構成） */
  :root { --header-h: 68px; }

  html { font-size: 14px; }
  section { padding: 64px 0; }
  .container { padding: 0 16px; }
  .section-title { font-size: 24px; }
  .section-header { margin-bottom: 36px; }

  /* ─── SP ヘッダー（ロゴ＋ハンバーガー） ─── */
  .header-inner {
    height: 68px;
    justify-content: space-between;
  }

  /* ─── ロゴエリア：SP用（高さはヘッダーにフィット） ─── */
  .header-logo a {
    padding: 0 12px 0 0;
  }

  /* ─── ハンバーガー：白丸・≡ + MENU テキスト ─── */
  .hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 60px;
    height: 60px;
    padding: 0;
    background: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    margin-left: auto;
    margin-right: 16px;
  }

  .hamburger span {
    width: 22px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
  }

  .hamburger-label {
    display: block;
    font-family: var(--font-jp2);
    font-weight: 700;
    font-size: 9px;
    letter-spacing: 0.08em;
    color: var(--color-primary);
    line-height: 1;
  }

  .hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .hamburger.is-open span:nth-child(2) { opacity: 0; }
  .hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  /* MV：SP画像（縦長）に合わせてアスペクト比を切り替え */
  #mv-splide .splide__slide {
    aspect-ratio: 1014 / 1662;
  }

  /* picture・img を親に100%フィット */
  #mv-splide .splide__slide picture {
    display: block;
    width: 100%;
    height: 100%;
  }

  /* mv-outer：SP時は左右5%余白・赤背景を全幅に */
  .mv-outer {
    padding: 5% 5% 0;
    background: var(--color-primary);
  }

  /* section-mainvisual 自体にも赤背景を明示（白抜けを防止） */
  .section-mainvisual {
    background: var(--color-primary);
  }

  /* 矢印ボタン：SP時は非表示（スワイプ操作で対応） */
  #mv-splide .splide__arrow {
    display: none;
  }

  /* 追従CTAバー：SP時は非表示 */
  .cta-fixed {
    display: none !important;
  }

  /* インラインCTAバーを縦並びに */
  .mv-cta-bar {
    flex-direction: column;
    align-items: center;
    padding: 16px 24px;
    gap: 10px;
  }

  .mv-cta-btn {
    flex: none;
    width: 100%;
    max-width: 360px;
    font-size: 16px;
    padding: 14px 24px;
  }

  /* ─── price：SP時は縦積み ─── */
  .price-item-main {
    grid-template-columns: 1fr;
  }
  .price-item-img {
    width: 100%;
    border-radius: 0;
    padding: 20px 40px;
    justify-content: center;
  }
  .price-item-img img {
    width: 100%;
    max-width: 280px;
    height: auto;
    object-fit: contain;
  }
  .price-item-plans {
    border-top: none;
    border-bottom: none;
  }
  .price-item-plan {
    grid-template-columns: 90px 1fr;
    padding: 0;
  }
  .price-item-plan-name {
    padding: 14px 12px 14px 16px;
    font-size: 13px;
  }
  .price-item-plan-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 14px 16px;
  }
  .price-item-amount { flex-shrink: 0; }
  .price-item-per { width: auto; margin-top: 0; }
  .btn-price-contact { width: auto; }
  .price-filter { gap: 8px; }
  .price-filter-btn {
    font-size: 12px;
    padding: 8px 12px;
    flex: 1 1 calc(33.333% - 8px);
    max-width: calc(33.333% - 8px);
    min-width: unset;
  }
  .price-num { font-size: 28px; }

  .intro-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .intro-text { font-size: 13px; }
  .intro-check { width: 20px; height: 20px; }
  .intro-solution-box { padding: 32px 20px 20px; border-radius: 28px; }
  .intro-solution-main { font-size: 16px; white-space: normal; }
  .intro-solution-brand { font-size: 22px; }
  .intro-solution-arrow img { width: 40px; height: 25px; }
  .intro-bg-text { font-size: 80px; }
  .section-introduction .section-header { min-height: 120px; margin-bottom: 36px; }

  /* MELIT SP */
  .melit-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .melit-card { padding: 16px 12px; }
  .melit-card-ttl { font-size: 14px; }
  .melit-card-num { font-size: 36px; }

  /* PRICE SP */
  .price-option { padding: 20px 16px; }
  /* オプションテーブル：SP時 */
  .price-option-table td.price-option-name,
  .price-option-table td.price-option-val {
    padding: 10px 12px;
    font-size: 13px;
  }
  .option-price { font-size: 15px; }

  /* FLOW SP */
  .flow-item { max-width: 100%; width: 100%; }
  .flow-img { max-width: 200px; }
  .flow-ttl { font-size: 15px; }
  .flow-lead { font-size: 14px; }
  .flow-lead-accent { font-size: 17px; }

  /* NOTICE SP */
  .notice-block { padding: 20px 0; }
  .notice-block-ttl { font-size: 15px; }
  .notice-block-text { font-size: 13px; }
  .notice-card { padding: 12px 14px; }
  .notice-card-ttl { font-size: 13px; }
  .notice-card-text, .notice-card-sub, .notice-card-note { font-size: 12px; }
  .cancel-table-wrap { padding: 20px 14px; }

  /* INSURANCE SP */
  .insurance-emergency-tel { font-size: 18px; }
  .insurance-table--accident { min-width: 560px; }

  /* 緊急連絡先：SP縦並び */
  .insurance-table--emergency,
  .insurance-table--emergency thead,
  .insurance-table--emergency tbody,
  .insurance-table--emergency tr,
  .insurance-table--emergency th,
  .insurance-table--emergency td { display: block; width: 100%; box-sizing: border-box; }
  .insurance-table--emergency thead { display: none; }
  .insurance-table--emergency tbody td.emergency-cell {
    border: none;
    border-top: 1px solid var(--color-divider);
    padding-top: 0;
  }
  .insurance-table--emergency tbody td.emergency-cell::before {
    content: attr(data-label);
    display: block;
    background: var(--color-table-hd-dark);
    color: var(--color-white);
    font-family: var(--font-jp2);
    font-weight: 700;
    font-size: 13px;
    text-align: center;
    padding: 8px 14px;
    margin-bottom: 14px;
  }

  /* 違法駐車テーブル：SP横スクロール */
  .insurance-table--parking { min-width: 480px; }

  /* FAQ SP */
  .faq-q-label, .faq-a-label { font-size: 28px; width: 28px; }
  .faq-q-text { font-size: 14px; }
  .faq-question { padding: 16px; }
  .faq-answer { padding: 0 16px; }
  .faq-answer.is-open { padding: 0 16px 16px; }

  /* TRUSTED SP */
  .trusted-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .trusted-label { font-size: 12px; padding: 8px 6px; }

  /* CONTACT SP */
  .contact-cta-wrap { flex-direction: column; align-items: center; gap: 12px; }
  .contact-info-text { font-size: 14px; }

  /* SHOP SP */
  .shop-grid { gap: 28px; }
  .shop-name { font-size: 16px; }
  .shop-tel { font-size: 22px; }
  .shop-both-notice p { font-size: 15px; }

  /* BG テキスト SP サイズ */
  .flow-bg-text { font-size: 80px; }
  .notice-bg-text { font-size: 80px; }
  .shop-bg-text { font-size: 80px; }
  .faq-bg-text { font-size: 80px; }
  .trusted-bg-text { font-size: 72px; }
  .contact-bg-text { font-size: 72px; }
  .intro-bg-text { font-size: 80px; }
  .intro-bg-text-wrap { padding-top: 20px; }

  .footer-inner { padding: 40px 16px 24px; grid-template-columns: 1fr; gap: 28px; }
  .footer-nav ul { flex-direction: column; gap: 6px; }
  .footer-copy { padding: 16px; }

  .btn-page-top {
    bottom: 72px;
    right: 12px;
    width: 42px;
    height: 42px;
    font-size: 15px;
  }
}
