/* ========================================
   Vehicle Sales Page - Custom Styles
   ======================================== */

/* CSS Variables (index.html風のカラーパレット) */
:root {
  /* カラー */
  --vs-primary: #FFD700; /* プライマリ黄 */
  --vs-accent-blue: #04C4F5; /* アクセントブルー */
  --vs-secondary: #000000; /* 黒 */
  --vs-bg-blue: #C8D8E4; /* 水色背景 */
  --vs-bg-footer: #00BCD4; /* フッター */
  --vs-accent: #D4AF37; /* ゴールド */
  --vs-stripe: rgba(212, 175, 55, 0.15); /* ストライプ */
  --vs-white: #FFFFFF;
  --vs-gray-100: #F5F5F5;
  --vs-gray-200: #E0E0E0;
  --vs-gray-300: #BDBDBD;
  --vs-gray-700: #616161;
  --vs-gray-900: #212121;

  /* スペーシング */
  --vs-space-xs: clamp(4px, 0.5vw, 8px);
  --vs-space-sm: clamp(8px, 1vw, 16px);
  --vs-space-md: clamp(16px, 2vw, 32px);
  --vs-space-lg: clamp(24px, 3vw, 48px);
  --vs-space-xl: clamp(32px, 4vw, 64px);
  --vs-space-2xl: clamp(48px, 6vw, 96px);

  /* フォントサイズ */
  --vs-text-xs: clamp(12px, 1.2vw, 14px);
  --vs-text-sm: clamp(14px, 1.4vw, 16px);
  --vs-text-base: clamp(16px, 1.6vw, 18px);
  --vs-text-lg: clamp(18px, 1.8vw, 22px);
  --vs-text-xl: clamp(22px, 2.5vw, 28px);
  --vs-text-2xl: clamp(28px, 3.5vw, 40px);
  --vs-text-3xl: clamp(32px, 4vw, 56px);

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

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

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #FFFFFF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-radius: 0 0 8px 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--vs-transition);
  z-index: 1000;
  list-style: none;
  padding: 8px 0;
  margin: 0;
}

.nav__item--dropdown:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-link {
  display: block;
  padding: 12px 20px;
  color: var(--vs-gray-900);
  text-decoration: none;
  font-size: var(--vs-text-sm);
  transition: all var(--vs-transition);
  border-left: 3px solid transparent;
}

.nav__dropdown-link:hover {
  background: var(--vs-gray-100);
  border-left-color: var(--vs-primary);
  padding-left: 24px;
}

/* モバイル対応 */
@media (max-width: 959px) {
  .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin-top: 8px;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--vs-transition);
  }

  .nav__item--dropdown:hover .nav__dropdown,
  .nav__item--dropdown:focus-within .nav__dropdown {
    max-height: 400px;
  }

  .nav__dropdown-link {
    color: var(--vs-white);
    font-size: var(--vs-text-xs);
    padding: 10px 16px;
  }

  .nav__dropdown-link:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 20px;
  }
}

/* ========================================
   Hero Section (スライドショー)
   ======================================== */
.vs-hero {
  position: relative;
  width: 100%;
  min-height: 50vh;
  overflow: hidden;
}

/* スライドショーコンテナ */
.vs-hero__slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* 各スライド */
.vs-hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.vs-hero__slide--active {
  opacity: 1;
}

.vs-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 12s ease-in-out infinite alternate;
  /* 画像未読み込み時のaltテキストを非表示 */
  color: transparent;
  font-size: 0;
}

/* ヒーローズームアニメーション */
@keyframes heroZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}

/* テキストオーバーレイ */
.vs-hero__overlay {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  background: rgba(0, 0, 0, 0.4);
  padding: var(--vs-space-2xl) var(--vs-space-md);
}

.vs-hero__content {
  text-align: center;
  color: var(--vs-white);
  padding: var(--vs-space-md);
  max-width: 1000px;
}

.vs-hero__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: var(--vs-space-sm);
  color: var(--vs-white);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  /* アニメーション初期状態 */
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1.8s ease-out 0.5s forwards;
}

.vs-hero__subtitle {
  font-size: clamp(16px, 2.5vw, 32px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--vs-white);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  /* アニメーション初期状態 */
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1.8s ease-out 1.2s forwards;
}

/* レスポンシブ対応 */
@media (min-width: 600px) {
  .vs-hero {
    min-height: 70vh;
  }

  .vs-hero__overlay {
    min-height: 70vh;
  }
}

@media (min-width: 960px) {
  .vs-hero {
    min-height: 100vh;
  }

  .vs-hero__overlay {
    min-height: 100vh;
  }

  .vs-hero__content {
    padding: var(--vs-space-lg);
  }
}

/* ========================================
   Section Layout
   ======================================== */
.vs-section {
  padding: var(--vs-space-2xl) var(--vs-space-md);
  position: relative;
  overflow: hidden;
}

/* 交互の背景色 */
.vs-section:nth-child(odd) {
  background: var(--vs-white);
}

.vs-section:nth-child(even) {
  background: var(--vs-gray-100);
}

.vs-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* ========================================
   Section Header
   ======================================== */
.vs-section__header {
  display: flex;
  align-items: center;
  gap: var(--vs-space-lg);
  margin-bottom: var(--vs-space-xl);
  position: relative;
  animation: fadeInUp 0.6s ease;
}

.vs-section__number {
  flex-shrink: 0;
  font-size: clamp(60px, 8vw, 120px);
  font-weight: 800;
  color: #000000;
  line-height: 1;
  opacity: 0.15;
}

.vs-section__text {
  flex: 1;
}

.vs-section__title {
  font-size: var(--vs-text-2xl);
  font-weight: 800;
  color: var(--vs-gray-900);
  margin-bottom: var(--vs-space-xs);
  line-height: 1.3;
}

.vs-section__subtitle {
  font-size: var(--vs-text-sm);
  color: var(--vs-gray-700);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* モバイル対応 */
@media (max-width: 599px) {
  .vs-section__header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--vs-space-sm);
  }

  .vs-section__number {
    font-size: clamp(48px, 12vw, 80px);
  }
}

/* ========================================
   Content Layout
   ======================================== */
.vs-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vs-space-lg);
  margin-bottom: var(--vs-space-xl);
}

@media (min-width: 960px) {
  .vs-content {
    grid-template-columns: 35% 65%;
    align-items: center;
  }

  .vs-content--reverse {
    direction: rtl;
  }

  .vs-content--reverse > * {
    direction: ltr;
  }
}

.vs-content__text {
  animation: slideInLeft 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.vs-content__lead {
  font-size: var(--vs-text-xl);
  font-weight: 700;
  color: var(--vs-gray-900);
  margin-bottom: var(--vs-space-md);
  line-height: 1.4;
}

.vs-content__description {
  font-size: var(--vs-text-base);
  color: var(--vs-gray-700);
  line-height: 1.8;
  margin-bottom: var(--vs-space-lg);
}

.vs-content__subtitle-small {
  font-size: var(--vs-text-lg);
  font-weight: 700;
  color: var(--vs-gray-900);
  margin-top: var(--vs-space-xl);
  margin-bottom: var(--vs-space-md);
  padding-bottom: var(--vs-space-xs);
  border-bottom: 2px solid var(--vs-primary);
  display: inline-block;
}

/* ========================================
   Image Card (ストライプ装飾付き)
   ======================================== */
.vs-content__image {
  position: relative;
  animation: slideInRight 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.vs-image-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vs-space-lg);
}

.vs-image-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform var(--vs-transition), box-shadow var(--vs-transition);
}

.vs-image-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.vs-image-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ストライプ装飾（index.html風） */
.vs-image-stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: repeating-linear-gradient(
    45deg,
    var(--vs-stripe),
    var(--vs-stripe) 10px,
    transparent 10px,
    transparent 20px
  );
  pointer-events: none;
}

/* ========================================
   Features
   ======================================== */
.vs-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vs-space-sm);
  margin-bottom: var(--vs-space-lg);
}

@media (min-width: 600px) {
  .vs-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.vs-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 8px;
  border-left: 3px solid var(--vs-primary);
  transition: all var(--vs-transition);
  animation: fadeInUp 0.6s ease;
  animation-fill-mode: both;
}

.vs-feature:nth-child(1) { animation-delay: 0.1s; }
.vs-feature:nth-child(2) { animation-delay: 0.2s; }
.vs-feature:nth-child(3) { animation-delay: 0.3s; }
.vs-feature:nth-child(4) { animation-delay: 0.4s; }

.vs-feature:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateX(4px);
}

.vs-feature i {
  color: var(--vs-primary);
  font-size: 18px;
  flex-shrink: 0;
}

.vs-feature span {
  font-size: var(--vs-text-sm);
  color: var(--vs-gray-900);
  font-weight: 500;
}

/* ========================================
   Brands
   ======================================== */
.vs-brands {
  margin-top: var(--vs-space-lg);
  margin-bottom: var(--vs-space-lg);
}

.vs-brands__title {
  font-size: var(--vs-text-sm);
  font-weight: 700;
  color: var(--vs-gray-900);
  margin-bottom: var(--vs-space-sm);
}

.vs-brands__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vs-brand-tag {
  display: inline-block;
  padding: 8px 16px;
  background: var(--vs-white);
  border: 2px solid var(--vs-primary);
  border-radius: 20px;
  font-size: var(--vs-text-xs);
  font-weight: 600;
  color: var(--vs-gray-900);
  transition: all var(--vs-transition);
}

.vs-brand-tag:hover {
  background: var(--vs-primary);
  color: var(--vs-white);
  transform: scale(1.05);
}

/* ロゴ表示用スタイル */
.vs-brands__logos {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vs-space-md);
  align-items: center;
}

@media (min-width: 600px) {
  .vs-brands__logos {
    grid-template-columns: repeat(2, 1fr);
  }
}

.vs-brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background: var(--vs-white);
  border: 2px solid var(--vs-gray-200);
  border-radius: 8px;
  transition: all var(--vs-transition);
  text-decoration: none;
  min-height: 100px;
  width: 100%;
}

.vs-brand-logo:hover {
  border-color: var(--vs-primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.vs-brand-logo img {
  max-width: 160px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter var(--vs-transition);
}

.vs-brand-logo:hover img {
  filter: grayscale(0%);
}

.vs-brand-text {
  font-size: var(--vs-text-sm);
  font-weight: 600;
  color: var(--vs-gray-900);
  white-space: nowrap;
}

/* メーカーロゴ（大きめ表示） */
.vs-brands--large {
  margin-top: var(--vs-space-md);
}

.vs-manufacturer-logos {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.vs-manufacturer-logo {
  padding: 16px 24px;
  background: var(--vs-white);
  border: 2px solid var(--vs-gray-200);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all var(--vs-transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vs-manufacturer-logo img {
  max-width: 160px;
  max-height: 80px;
  min-height: 60px;
  object-fit: contain;
  filter: grayscale(0%);
  transition: filter var(--vs-transition);
}

.vs-manufacturer-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-color: var(--vs-gold);
}

.vs-manufacturer-logo:hover img {
  filter: grayscale(0%) brightness(1.1);
}

/* ========================================
   Highlight Box
   ======================================== */
.vs-highlight-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
  border: 2px solid var(--vs-primary);
  border-radius: 8px;
  margin-top: var(--vs-space-md);
}

.vs-highlight-box i {
  color: var(--vs-primary);
  font-size: 24px;
  flex-shrink: 0;
}

.vs-highlight-box p {
  font-size: var(--vs-text-sm);
  color: var(--vs-gray-900);
  font-weight: 600;
  margin: 0;
}

.vs-highlight-box--accent {
  background: linear-gradient(135deg, rgba(4, 196, 245, 0.1) 0%, rgba(0, 188, 212, 0.1) 100%);
  border-color: var(--vs-accent-blue);
}

.vs-highlight-box--accent i {
  color: var(--vs-accent-blue);
}

/* ========================================
   Service Box
   ======================================== */
.vs-service-box {
  padding: var(--vs-space-md);
  background: var(--vs-white);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-top: var(--vs-space-md);
}

.vs-service-box h3 {
  font-size: var(--vs-text-lg);
  font-weight: 700;
  color: var(--vs-gray-900);
  margin-bottom: var(--vs-space-sm);
}

.vs-service-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vs-service-box li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-size: var(--vs-text-sm);
  color: var(--vs-gray-700);
}

.vs-service-box li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--vs-primary);
  font-weight: 700;
}

/* ========================================
   Process Steps (買取セクション用)
   ======================================== */
.vs-process {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vs-space-md);
  margin-top: var(--vs-space-lg);
}

@media (min-width: 600px) {
  .vs-process {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .vs-process {
    grid-template-columns: repeat(4, 1fr);
  }
}

.vs-process-step {
  position: relative;
  padding: var(--vs-space-md);
  background: var(--vs-white);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all var(--vs-transition);
  animation: fadeInUp 0.6s ease;
  animation-fill-mode: both;
}

.vs-process-step:nth-child(1) { animation-delay: 0.1s; }
.vs-process-step:nth-child(2) { animation-delay: 0.2s; }
.vs-process-step:nth-child(3) { animation-delay: 0.3s; }
.vs-process-step:nth-child(4) { animation-delay: 0.4s; }

.vs-process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.vs-process-step__number {
  display: inline-block;
  padding: 8px 16px;
  background: var(--vs-primary);
  color: var(--vs-white);
  font-size: var(--vs-text-xs);
  font-weight: 800;
  border-radius: 20px;
  margin-bottom: var(--vs-space-sm);
}

.vs-process-step__content h3 {
  font-size: var(--vs-text-base);
  font-weight: 700;
  color: var(--vs-gray-900);
  margin-bottom: 8px;
}

.vs-process-step__content p {
  font-size: var(--vs-text-sm);
  color: var(--vs-gray-700);
  margin: 0;
}

/* ========================================
   Color Options (電動キックボード用)
   ======================================== */
.vs-color-options {
  margin-top: var(--vs-space-md);
}

.vs-color-options__title {
  font-size: var(--vs-text-sm);
  font-weight: 700;
  color: var(--vs-gray-900);
  margin-bottom: var(--vs-space-sm);
}

.vs-color-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.vs-color-tag {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: var(--vs-text-xs);
  font-weight: 600;
  transition: all var(--vs-transition);
}

.vs-color-tag--black {
  background: #2C2C2C;
  color: var(--vs-white);
}

.vs-color-tag--orange {
  background: #FF6B35;
  color: var(--vs-white);
}

.vs-color-tag--purple {
  background: #6A0572;
  color: var(--vs-white);
}

.vs-color-tag:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ========================================
   CTA Buttons
   ======================================== */
.vs-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: var(--vs-space-xl);
  animation: fadeInUp 0.8s ease 0.4s;
  animation-fill-mode: both;
}

.vs-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: var(--vs-text-base);
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all var(--vs-transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.vs-button--primary {
  background: linear-gradient(135deg, var(--vs-primary) 0%, var(--vs-accent) 100%);
  color: var(--vs-gray-900);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.vs-button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.vs-button--outline {
  background: transparent;
  color: var(--vs-gray-900);
  border-color: var(--vs-gray-900);
}

.vs-button--outline:hover {
  background: var(--vs-gray-900);
  color: var(--vs-white);
  transform: translateY(-2px);
}

.vs-button--line {
  background: #06C755;
  color: var(--vs-white);
  box-shadow: 0 4px 12px rgba(6, 199, 85, 0.3);
  border: none;
}

.vs-button--line:hover {
  background: #05B04C;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(6, 199, 85, 0.4);
}

.vs-button--line .fab.fa-line {
  font-size: 24px;
}

.vs-button--line .fas.fa-arrow-right {
  margin-left: auto;
  font-size: 16px;
}

/* ========================================
   LINE CTA Premium
   ======================================== */
.line-cta-premium {
  background: linear-gradient(135deg, #06C755 0%, #05A847 100%);
  padding: var(--vs-space-2xl) var(--vs-space-md);
  position: relative;
  overflow: hidden;
}

.line-cta-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.05) 10px,
    rgba(255, 255, 255, 0.05) 20px
  );
  pointer-events: none;
}

.line-cta-premium__container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.line-cta-premium__header {
  text-align: center;
  margin-bottom: var(--vs-space-xl);
}

.line-cta-premium__icon {
  font-size: 60px;
  color: var(--vs-white);
  margin-bottom: var(--vs-space-md);
  animation: pulse 2s infinite;
}

.line-cta-premium__title {
  font-size: var(--vs-text-2xl);
  font-weight: 800;
  color: var(--vs-white);
  margin-bottom: var(--vs-space-sm);
}

.line-cta-premium__subtitle {
  font-size: var(--vs-text-base);
  color: rgba(255, 255, 255, 0.9);
}

.line-cta-premium__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vs-space-md);
  margin-bottom: var(--vs-space-xl);
}

@media (min-width: 600px) {
  .line-cta-premium__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .line-cta-premium__cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

.line-cta-premium__card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: var(--vs-space-lg);
  border-radius: 12px;
  text-align: center;
  transition: all var(--vs-transition);
  animation: fadeInUp 0.6s ease;
  animation-fill-mode: both;
}

.line-cta-premium__card:nth-child(1) { animation-delay: 0.1s; }
.line-cta-premium__card:nth-child(2) { animation-delay: 0.2s; }
.line-cta-premium__card:nth-child(3) { animation-delay: 0.3s; }
.line-cta-premium__card:nth-child(4) { animation-delay: 0.4s; }

.line-cta-premium__card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-8px);
}

.line-cta-premium__card i {
  font-size: 40px;
  color: var(--vs-white);
  margin-bottom: var(--vs-space-sm);
}

.line-cta-premium__card h3 {
  font-size: var(--vs-text-lg);
  font-weight: 700;
  color: var(--vs-white);
  margin-bottom: var(--vs-space-xs);
}

.line-cta-premium__card p {
  font-size: var(--vs-text-sm);
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.line-cta-premium__button-wrapper {
  text-align: center;
}

.line-cta-premium__button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 48px;
  background: var(--vs-white);
  color: #06C755;
  font-size: var(--vs-text-lg);
  font-weight: 800;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: all var(--vs-transition);
}

.line-cta-premium__button:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.line-cta-premium__button i {
  font-size: 28px;
}

/* ========================================
   Panasonic mu Section
   ======================================== */
.vs-section--panasonic-mu {
  background: linear-gradient(160deg, #f0f9f0 0%, #e8f5e9 50%, #f5f9ff 100%);
  position: relative;
}

/* 売れ筋バッジ */
.vs-mu-bestseller-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
  color: #1a1a1a;
  padding: 10px 32px 10px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 12px 50%);
  z-index: 2;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.5);
}

.vs-mu-badge__icon {
  font-size: 20px;
  animation: pulse 2s ease-in-out infinite;
}

.vs-mu-badge__text {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

@media (max-width: 599px) {
  .vs-mu-bestseller-badge {
    padding: 8px 20px 8px 16px;
  }
  .vs-mu-badge__icon { font-size: 16px; }
  .vs-mu-badge__text { font-size: 13px; }
}

/* 2枚横並びビジュアル */
.vs-mu-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vs-space-md);
  margin-bottom: var(--vs-space-xl);
}

@media (min-width: 600px) {
  .vs-mu-visual {
    grid-template-columns: 1fr 1fr;
  }
}

.vs-mu-visual__img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.vs-mu-visual__img:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
}

.vs-mu-visual__img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

@media (min-width: 960px) {
  .vs-mu-visual__img img {
    height: 400px;
  }
}

.vs-mu-visual__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  padding: 32px 20px 16px;
  letter-spacing: 0.05em;
}

/* 本文エリア */
.vs-mu-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vs-space-xl);
  align-items: start;
}

@media (min-width: 960px) {
  .vs-mu-body {
    grid-template-columns: 1fr 360px;
  }
}

/* スペックグリッド */
.vs-mu-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: var(--vs-space-lg) 0;
}

@media (max-width: 599px) {
  .vs-mu-specs {
    grid-template-columns: 1fr;
  }
}

.vs-mu-spec {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 10px;
  border-left: 3px solid #2e7d32;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.vs-mu-spec:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.vs-mu-spec i {
  color: #2e7d32;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.vs-mu-spec__label {
  display: block;
  font-size: 12px;
  color: #555;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.vs-mu-spec__value {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 2px;
}

/* CTAカード */
.vs-mu-cta-card {
  background: #ffffff;
  border-radius: 16px;
  padding: var(--vs-space-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  position: sticky;
  top: 100px;
  text-align: center;
  border-top: 4px solid #FFD700;
}

.vs-mu-cta-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff3e0;
  color: #e65100;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.vs-mu-cta-card__eyebrow i {
  color: #ff5722;
  animation: pulse 1.5s ease-in-out infinite;
}

.vs-mu-cta-card__title {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: 12px;
}

.vs-mu-cta-card__desc {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.vs-mu-cta-card__line-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: #06C755;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(6, 199, 85, 0.4);
  transition: all 0.3s ease;
  margin-bottom: 12px;
}

.vs-mu-cta-card__line-btn:hover {
  background: #05b04c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 199, 85, 0.5);
}

.vs-mu-cta-card__line-btn i {
  font-size: 22px;
}

.vs-mu-cta-card__link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  background: transparent;
  color: #1a73e8;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid #1a73e8;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.vs-mu-cta-card__link-btn:hover {
  background: #1a73e8;
  color: #ffffff;
  transform: translateY(-2px);
}

/* 価格表示 */
.vs-mu-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: var(--vs-space-lg);
  padding: 16px 20px;
  background: #ffffff;
  border-radius: 10px;
  border-left: 4px solid #2e7d32;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.vs-mu-price__label {
  font-size: 12px;
  font-weight: 700;
  color: #666;
  letter-spacing: 0.05em;
}

.vs-mu-price__value {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1;
  font-family: 'Anton', sans-serif;
}

.vs-mu-price__note {
  font-size: 13px;
  color: #888;
  font-weight: 500;
}

/* スペック表 */
.vs-mu-spec-table {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  background: #ffffff;
  margin-bottom: var(--vs-space-lg);
}

.vs-mu-spec-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s ease;
}

.vs-mu-spec-row:last-child {
  border-bottom: none;
}

.vs-mu-spec-row:hover {
  background: #f9fbe7;
}

.vs-mu-spec-row__label {
  padding: 12px 16px;
  background: #f5f5f5;
  font-size: 13px;
  font-weight: 700;
  color: #444;
  display: flex;
  align-items: center;
  gap: 8px;
  border-right: 1px solid #e0e0e0;
}

.vs-mu-spec-row__label i {
  color: #2e7d32;
  font-size: 14px;
  width: 16px;
  flex-shrink: 0;
}

.vs-mu-spec-row__value {
  padding: 12px 16px;
  font-size: 13px;
  color: #1a1a1a;
  font-weight: 500;
  display: flex;
  align-items: center;
}

@media (max-width: 599px) {
  .vs-mu-spec-row {
    grid-template-columns: 140px 1fr;
  }
  .vs-mu-spec-row__label,
  .vs-mu-spec-row__value {
    font-size: 12px;
    padding: 10px 12px;
  }
}

/* カラーバリエーション */
.vs-mu-colors {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: var(--vs-space-lg);
}

.vs-mu-color {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: default;
  transition: transform 0.2s ease;
}

.vs-mu-color:hover {
  transform: translateY(-4px);
}

.vs-mu-color__swatch {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid #e0e0e0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transition: box-shadow 0.2s ease;
}

.vs-mu-color:hover .vs-mu-color__swatch {
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  border-color: #2e7d32;
}

.vs-mu-color__swatch--white {
  background: linear-gradient(135deg, #f5f5f0 50%, #222222 50%);
}

.vs-mu-color__swatch--green {
  background: linear-gradient(135deg, #a8d5a2 50%, #333333 50%);
}

.vs-mu-color__swatch--beige {
  background: linear-gradient(135deg, #c9a97a 50%, #1a1a1a 50%);
}

.vs-mu-color__name {
  font-size: 11px;
  color: #555;
  text-align: center;
  line-height: 1.4;
  font-weight: 600;
}

/* 認定バッジ */
.vs-mu-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: var(--vs-space-lg);
}

.vs-mu-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #ffffff;
  border: 1.5px solid #2e7d32;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: #2e7d32;
  box-shadow: 0 2px 8px rgba(46, 125, 50, 0.1);
  transition: all 0.2s ease;
}

.vs-mu-badge-item:hover {
  background: #2e7d32;
  color: #ffffff;
  transform: translateY(-2px);
}

.vs-mu-badge-item i {
  font-size: 13px;
}

/* 注意事項 */
.vs-mu-notice {
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: var(--vs-space-md);
}

.vs-mu-notice__title {
  font-size: 13px;
  font-weight: 700;
  color: #f57f17;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.vs-mu-notice__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}

@media (min-width: 600px) {
  .vs-mu-notice__list {
    grid-template-columns: 1fr 1fr;
  }
}

.vs-mu-notice__list li {
  font-size: 12px;
  color: #795548;
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.vs-mu-notice__list li::before {
  content: '!';
  position: absolute;
  left: 0;
  color: #f57f17;
  font-weight: 900;
  font-size: 11px;
}

/* CTAカード内の価格 */
.vs-mu-cta-card__price-inline {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 12px;
  font-family: 'Anton', sans-serif;
}

.vs-mu-cta-card__price-inline small {
  font-size: 11px;
  font-weight: 500;
  color: #888;
  font-family: 'Noto Sans JP', sans-serif;
}

/* 電話ボタン */
.vs-mu-cta-card__tel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  background: transparent;
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid #1a1a1a;
  border-radius: 50px;
  transition: all 0.3s ease;
  margin-bottom: 12px;
}

.vs-mu-cta-card__tel-btn:hover {
  background: #1a1a1a;
  color: #ffffff;
  transform: translateY(-2px);
}

.vs-mu-cta-card__tel-btn i {
  font-size: 16px;
}

.sp-only {
  display: none;
}

@media (max-width: 599px) {
  .sp-only {
    display: block;
  }
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* ========================================
   Scroll Fade In (JS制御)
   ======================================== */
.scroll-fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   CTA Section (ご購入・お問い合わせ)
   ======================================== */
.vs-cta-section {
  position: relative;
  background:
    linear-gradient(45deg, #0d0d0d 25%, transparent 25%),
    linear-gradient(-45deg, #0d0d0d 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #0d0d0d 75%),
    linear-gradient(-45deg, transparent 75%, #0d0d0d 75%),
    linear-gradient(to bottom, #1a1a1a, #000000);
  background-size: 20px 20px, 20px 20px, 20px 20px, 20px 20px, 100% 100%;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px, 0 0;
  padding: var(--vs-space-2xl) var(--vs-space-md);
  overflow: hidden;
  text-align: center;
}

/* 背景テキスト */
.vs-cta-section__bg-text {
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(80px, 20vw, 280px);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.1em;
}

.vs-cta-section__container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.vs-cta-section__title {
  font-size: var(--vs-text-3xl);
  font-weight: 800;
  color: var(--vs-white);
  margin-bottom: var(--vs-space-md);
  line-height: 1.3;
}

.vs-cta-section__subtitle {
  font-size: var(--vs-text-base);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--vs-space-xl);
  line-height: 1.8;
}

.vs-cta-section__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: var(--vs-space-lg);
  flex-wrap: wrap;
}

.vs-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  font-size: var(--vs-text-lg);
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all var(--vs-transition);
  cursor: pointer;
}

.vs-cta-btn--line {
  background: #06C755;
  color: var(--vs-white);
  box-shadow: 0 4px 12px rgba(6, 199, 85, 0.3);
  border: none;
}

.vs-cta-btn--line:hover {
  background: #05B04C;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(6, 199, 85, 0.5);
}

.vs-cta-btn--line .fab.fa-line {
  font-size: 28px;
}

.vs-cta-btn--line .fas.fa-arrow-right {
  margin-left: auto;
  font-size: 18px;
}

.vs-cta-section__hours {
  font-size: var(--vs-text-sm);
  color: rgba(255, 255, 255, 0.6);
  margin-top: var(--vs-space-md);
}

/* TOPへ戻るボタン */
.vs-back-to-top {
  position: absolute;
  left: 20px;
  bottom: 40px;
  z-index: 3;
}

.vs-back-to-top__link {
  color: #ffffff;
  text-decoration: none;
  font-family: 'Noto Sans JP', sans-serif;
  transition: transform 0.3s ease;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
}

.vs-back-to-top__arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  transition: transform 0.3s ease;
}

.vs-back-to-top__chevron {
  width: 20px;
  height: 20px;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  transform: rotate(-45deg);
  display: block;
}

.vs-back-to-top__chevron:last-child {
  margin-top: -8px;
}

.vs-back-to-top__text {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  display: block;
}

.vs-back-to-top__link:hover {
  transform: translateY(-3px);
}

.vs-back-to-top__link:hover .vs-back-to-top__arrow {
  transform: translateY(-2px);
}

/* レスポンシブ対応 */
@media (min-width: 600px) {
  .vs-cta-section {
    padding: clamp(64px, 8vw, 120px) var(--vs-space-md);
  }
}

@media (max-width: 768px) {
  .vs-back-to-top {
    left: 15px;
    bottom: 20px;
  }

  .vs-back-to-top__chevron {
    width: 16px;
    height: 16px;
    border-width: 2px;
  }

  .vs-back-to-top__chevron:last-child {
    margin-top: -6px;
  }

  .vs-back-to-top__text {
    font-size: 12px;
  }
}

/* ========================================
   Floating LINE Button
   ======================================== */
.floating-line-wrapper {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.floating-line-wrapper.hidden {
  display: none;
}

.floating-line-close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  padding: 0;
}

.floating-line-close i {
  color: #ffffff;
  font-size: 14px;
}

.floating-line-close:hover {
  background: rgba(255, 0, 0, 0.8);
  border-color: #ffffff;
  transform: rotate(90deg) scale(1.1);
}

.floating-line-text {
  color: #000000;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  transition: color 0.3s ease;
}

.floating-line-text__line1,
.floating-line-text__line2 {
  display: block;
  white-space: nowrap;
}

.floating-line-button {
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, #00C300 0%, #00B900 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow:
    0 4px 20px rgba(0, 195, 0, 0.5),
    0 2px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  animation: pulseFloat 3s ease-in-out infinite;
}

.floating-line-button:hover {
  transform: scale(1.1);
  box-shadow:
    0 6px 25px rgba(0, 195, 0, 0.6),
    0 3px 12px rgba(0, 0, 0, 0.4);
}

.floating-line-button i {
  font-size: 70px;
  color: #ffffff;
}

@keyframes pulseFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

@media (max-width: 768px) {
  .floating-line-wrapper {
    bottom: 20px;
    right: 20px;
  }

  .floating-line-close {
    width: 24px;
    height: 24px;
    top: -6px;
    right: -6px;
  }

  .floating-line-close i {
    font-size: 12px;
  }

  .floating-line-text {
    font-size: 11px;
  }

  .floating-line-button {
    width: 90px;
    height: 90px;
  }

  .floating-line-button i {
    font-size: 55px;
  }
}

/* ========================================
   在庫車両一覧
   ======================================== */
.vs-inventory {
  padding: var(--space-xl, 3rem) 0;
  background: #f5f5f5;
}

.vs-inventory__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.vs-inventory__empty {
  text-align: center;
  color: #666;
  padding: 2rem;
  grid-column: 1 / -1;
}

.vs-vehicle-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}

/* スライダー */
.vs-vehicle-card__slider {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #111;
}

.vs-vehicle-card__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.vs-vehicle-card__slide--active {
  opacity: 1;
}

.vs-vehicle-card__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vs-vehicle-card__prev,
.vs-vehicle-card__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  color: #fff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  font-size: 0.8rem;
}

.vs-vehicle-card__prev { left: 8px; }
.vs-vehicle-card__next { right: 8px; }

.vs-vehicle-card__dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 2;
}

.vs-vehicle-card__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: background 0.2s;
}

.vs-vehicle-card__dot--active {
  background: #fff;
}

/* 画像なし */
.vs-vehicle-card__no-image {
  aspect-ratio: 4 / 3;
  background: #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #aaa;
}

/* カード本文 */
.vs-vehicle-card__body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* 在庫バッジ */
.vs-vehicle-card__stock {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  align-self: flex-start;
}

.vs-vehicle-card__stock--available {
  background: #e6f4ea;
  color: #2e7d32;
}

.vs-vehicle-card__stock--soldout {
  background: #fce8e6;
  color: #c62828;
}

.vs-vehicle-card__stock--inquiry {
  background: #fff3e0;
  color: #e65100;
}

/* タイトル */
.vs-vehicle-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

/* スペック */
.vs-vehicle-card__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 0.5rem;
  margin: 0;
}

.vs-vehicle-card__spec {
  display: flex;
  flex-direction: column;
}

.vs-vehicle-card__spec dt {
  font-size: 0.7rem;
  color: #999;
}

.vs-vehicle-card__spec dd {
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0;
}

/* 価格 */
.vs-vehicle-card__price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--vs-gold, #D4AF37);
  margin: 0;
}

/* LINEボタン */
.vs-vehicle-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: #06c755;
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  margin-top: auto;
}

.vs-vehicle-card__btn:hover {
  background: #05a847;
  color: #fff;
}

@media (min-width: 600px) {
  .vs-inventory__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .vs-inventory__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ページネーション */
.vs-inventory__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.vs-inventory__pager {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: #111;
  color: #fff;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.vs-inventory__pager:hover:not(:disabled) {
  background: var(--vs-gold, #D4AF37);
  color: #000;
}

.vs-inventory__pager:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.vs-inventory__page-info {
  font-size: 0.9rem;
  font-weight: 700;
  color: #444;
  min-width: 4em;
  text-align: center;
}
