/* リセットCSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans', sans-serif;
  line-height: 1.6;
  color: #333;
}

/* ヘッダー */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3000; /* メニューより前面に配置 */
  width: 100%;
}

/* ロゴセクション（白背景） */
.header-logo-section {
  background: white;
  padding: 17px 0;
  border-bottom: 1px solid #e0e0e0;
}

.header-logo-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
  text-align: center;
}

.header-logo {
  height: 60px;
  width: auto;
}

/* ナビゲーションセクション（ダークブルー背景） */
.header-nav-section {
  background: rgba(29, 34, 52, 1);
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.header-nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
  position: relative;
}

.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header-nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.header-nav a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.header-nav a:hover {
  color: #d4af37;
}

.header-icons {
  position: absolute;
  right: 50px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-icons img {
  height: 24px;
  width: auto;
  transition: opacity 0.3s ease;
  margin-top: 5px;
}

.header-icons img:hover {
  opacity: 0.7;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  position: relative;
  z-index: 2001; /* メニューより前面に配置 */
}

.menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background: white;
  margin: 5px 0;
  transition: 0.3s;
}

/* ヒーローセクション */
.hero-section {
  margin-top: 150px; /* ヘッダーの高さ + 余白 */
  position: relative;
  height: calc(100vh - 150px);
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

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

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* デスクトップ版の基本スタイル（最優先） */
.hero-background a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.hero-background a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Swiper矢印 */
.hero-arrow {
  width: 80px !important;
  height: 100% !important;
  background: none !important;
  transition: opacity 0.3s ease;
  top: 0 !important;
  margin-top: 0 !important;
}

.hero-arrow:hover {
  opacity: 0.7;
}

.hero-arrow::after {
  display: none !important;
}

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

.hero-arrow.next img {
  transform: rotate(180deg);
}

/* 左右の矢印の位置調整 */
.swiper-button-prev {
  left: 0 !important;
}

.swiper-button-next {
  right: 0 !important;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .main-header {
    position: fixed; /* モバイル時も固定を維持 */
  }
  .header-logo-section {
    padding: 10px 0 0px 0;
  }
  
  .header-logo-container {
    padding: 0 20px;
  }
  .header-logo {
    height: 35px;
  }
  .header-nav-container {
    padding: 0 20px;
    justify-content: space-between; /* 左右に分散 */
  }
  
  .header-nav {
    display: none;
  }
  .header-nav-section {
    padding: 2px 0;
  }
  
  .header-icons {
    position: static;
    right: auto;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%; /* 幅を100%に設定 */
    justify-content: space-between; /* 左右に分散 */
  }
  
  /* ボタン以外の要素（検索、YouTube、TikTok）を左詰め */
  .header-icons a {
    display: flex;
    justify-content: flex-start; /* 左詰め */
    text-align: left;
  }
  
  .header-icons img {
    height: 20px; /* モバイル用に高さを調整 */
    margin-top: 0;
  }
  
  /* ボタンは右詰めのまま */
  .menu-btn {
    display: block;
    margin-left: auto; /* 右詰めを維持 */
  }
  
  .hero-section {
    margin-top: 95px; /* モバイルヘッダーの高さ + 余白 */
    height: auto; /* 高さを自動に変更 */
    position: relative;
  }
  
  .hero-swiper {
    height: auto; /* 高さを自動に変更 */
  }
  
  .hero-slide {
    height: auto; /* 高さを自動に変更 */
    position: relative;
  }
  
  .hero-background {
    position: relative; /* 絶対位置から相対位置に変更 */
    height: auto; /* 高さを自動に変更 */
  }
  
  .hero-background img {
    width: 100%;
    height: auto; /* 高さを自動に変更 */
    object-fit: contain; /* 画像の比率を保持 */
    display: block; /* 画像下部の余白を削除 */
  }
  
  .hero-arrow {
    width: 30px !important;
    height: 100% !important;
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
  }
  
  .hero-arrow img {
    object-fit: cover;
  }
}

/* スマートフォンメニュー - 上から下に出てくるアニメーション */
.sp-menu {
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(29, 34, 52, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-40px);
  transition: opacity 0.4s cubic-bezier(.4,0,.2,1), transform 0.4s cubic-bezier(.4,0,.2,1);
}

.sp-menu.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sp-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.sp-menu-list li {
  margin: 0;
}

.sp-menu-list a {
  color: #fff;
  font-size: 1.3em;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.2s;
  font-family: 'Noto Serif JP', sans-serif;
}

.sp-menu-list a:hover {
  color: #d4af37;
}

/* メニュー開時body固定 */
body.menu-open {
  overflow: hidden;
  touch-action: none;
}

/* ハンバーガーアイコン変形 */
.menu-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* フッター全体 */
.main-footer {
  background: #1d2234;
  color: white;
  padding: 0;
}

/* フッターのデスクトップ版スタイルを明確化 */
.footer-contact-section {
  background: #1a1a34;
  padding: 40px 0;
  text-align: center;
}

.contact-box {
  max-width: 480px;
  margin: 0 auto;
  padding: 20px;
}

.contact-title {
  border: 1px solid rgba(255,255,255,0.3);
  padding: 18px 0 18px 0;
  margin-bottom: 32px;
  color: #fff;
  font-size: 1.2em;
  font-weight: bold;
  font-family: 'proxima-nova', sans-serif;
  letter-spacing: 0.08em;
  background: transparent;
  max-width: 360px;
  margin: 0 auto 20px auto;
  line-height: 1.2;
}

.contact-title span {
  font-size: 1em;
  font-weight: normal;
  display: block;
  margin-top: 4px;
}

.contact-tel {
  color: #fff;
  font-size: 2em;
  font-weight: 600;
  margin-bottom: 0px;
  font-family: "gravita-geo-variable", "Noto Serif JP", serif, sans-serif;
  letter-spacing: 0.08em;
}

.footer-hours {
  color: #fff;
  font-size: 0.8em;
  text-align: center;
  font-family: 'Noto Sans', sans-serif;
  margin-bottom: 13px;
}

.contact-btn {
  display: inline-block;
  background: #ba9435;
  color: white;
  text-decoration: none;
  padding: 20px 60px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 0;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  min-width: 380px;
  margin-top: 18px;
}

.contact-btn:hover {
  background: #d4af37;
}

/* レスポンシブ対応（デスクトップ版を上書きしないよう調整） */
@media (max-width: 768px) {
  .contact-btn {
    padding: 18px 50px;
    font-size: 16px;
    min-width: 280px;
  }
  
  .footer-hours {
    margin-bottom: 0px;
  }
  
  .contact-title {
    font-size: 1em;
    padding: 12px 0 8px 0;
  }
  
  .contact-tel {
    font-size: 1.6rem;
  }
  
  .footer-logo-section {
    padding: 24px 0 10px 0;
  }
  
  .footer-logo img {
    max-width: 120px;
  }
}

@media (max-width: 480px) {
  .contact-btn {
    padding: 16px 40px;
    font-size: 15px;
    min-width: 240px;
  }
  
  .footer-contact-section {
    padding: 28px 0 20px 0;
  }
  
  .contact-title {
    font-size: 1rem;
    padding: 8px 0 6px 0;
  }
  
  .contact-tel {
    font-size: 1.1rem;
  }
  
  .footer-logo-section {
    padding: 12px 0 6px 0;
  }
  
  .footer-logo img {
    max-width: 90px;
  }
  
  .footer-company {
    font-size: 0.8em;
  }
  
  .footer-copyright-section {
    padding: 10px 0 6px 0;
  }
  
  .footer-copyright {
    font-size: 0.85rem;
  }
}

/* ロゴセクション */
.footer-logo-section {
  background: #fff;
  padding: 36px 0 28px 0;
  text-align: center;
}
.footer-logo-container {
  max-width: 420px;
  margin: 0 auto;
}
.footer-logo img {
  max-width: 240px;
  height: auto;
  margin-bottom: 0px;
}
.footer-company {
  color: #222;
  font-size: 0.8em;
  font-family: 'Noto Sans', sans-serif;
  margin-top: 8px;
}

/* コピーライトセクション */
.footer-copyright-section {
  background: #111;
  padding: 16px 0 10px 0;
  text-align: center;
}
.footer-copyright {
  color: #fff;
  font-size: 0.8em;
  font-family: 'Noto Sans', sans-serif;
  letter-spacing: 0.08em;
}

/* ブランドセクション */
.brand-section {
  padding: 30px 0;
  background: white;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 0px;
}

.brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-decoration: none;
  color: #333;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: white;
  min-height: 120px;
}

.brand-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: #d4af37;
}

.brand-item img {
  max-width: 80px;
  max-height: 60px;
  width: auto;
  height: auto;
  margin-bottom: 10px;
  object-fit: contain;
}

.brand-item span {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
}

.other-text {
  color: #3f569d !important;
  font-size: 16px !important;
  font-weight: 600 !important;
}

/* レスポンシブ対応 */
@media (max-width: 1200px) {
  .brand-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .brand-section {
    padding: 0px 0;
  }
  
  .brand-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 0;
  }
  
  .brand-item {
    padding: 15px;
    min-height: 100px;
    border-radius: 0;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    border-left: none;
    border-top: none;
  }
  
  /* 右端のアイテムは右ボーダーを削除 */
  .brand-item:nth-child(4n) {
    border-right: none;
  }
  
  /* 最後の行のアイテムは下ボーダーを削除 */
  .brand-item:nth-last-child(-n+3) {
    border-bottom: none;
  }
  
  /* レクサス（16番目）には下ボーダーを表示 */
  .brand-item:nth-child(16) {
    border-bottom: 1px solid #e0e0e0;
  }
  
  /* 米国車（17番目）とその他（18番目）にも下ボーダーを表示 */
  .brand-item:nth-child(17),
  .brand-item:nth-child(18) {
    border-bottom: 1px solid #e0e0e0;
  }
  
  .brand-item img {
    max-width: 60px;
    max-height: 45px;
    margin-bottom: 8px;
  }
  
  .brand-item span {
    font-size: 12px;
  }
  
  .other-text {
    font-size: 14px !important;
  }
}

@media (max-width: 480px) {
  .brand-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 0;
  }
  
  .brand-item {
    padding: 12px;
    min-height: 90px;
    border-radius: 0;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    border-left: none;
    border-top: none;
  }
  
  /* 右端のアイテムは右ボーダーを削除 */
  .brand-item:nth-child(4n) {
    border-right: none;
  }
  
  /* 最後の行のアイテムは下ボーダーを削除 */
  .brand-item:nth-last-child(-n+3) {
    border-bottom: none;
  }
  
  /* レクサス（16番目）には下ボーダーを表示 */
  .brand-item:nth-child(16) {
    border-bottom: 1px solid #e0e0e0;
  }
  
  /* 米国車（17番目）とその他（18番目）にも下ボーダーを表示 */
  .brand-item:nth-child(17),
  .brand-item:nth-child(18) {
    border-bottom: 1px solid #e0e0e0;
  }
  
  .brand-item img {
    max-width: 50px;
    max-height: 40px;
    margin-bottom: 6px;
  }
  
  .brand-item span {
    font-size: 11px;
  }
  
  .other-text {
    font-size: 13px !important;
  }
} 

/* 在庫一覧ボタンセクション */
.stock-button-section {
  padding: 60px 0;
  background: white;
}

.stock-button-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
  text-align: center;
}

.stock-button {
  display: inline-block;
  background: #ba9435;
  color: white;
  text-decoration: none;
  padding: 20px 60px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 0;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  min-width: 380px;
}

.stock-button:hover {
  background: #d4af37;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .stock-button-section {
    padding: 40px 0;
  }
  
  .stock-button-container {
    padding: 0 20px;
  }
  
  .stock-button {
    padding: 18px 50px;
    font-size: 16px;
    min-width: 280px;
  }
}

@media (max-width: 480px) {
  .stock-button-section {
    padding: 30px 0;
  }
  
  .stock-button-container {
    padding: 0 15px;
  }
  
  .stock-button {
    padding: 16px 40px;
    font-size: 15px;
    min-width: 240px;
  }
} 

/* NEW VIDEOS セクション */
.videos-section {
  padding: 48px 0 24px 0;
  text-align: center;
  background: white;
}

.videos-carousel {
  width: 100vw;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.videos-carousel-img {
  width: 100%;
  height: auto;
  max-width: 220px;
  max-height: 120px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  background: #fff;
}

h2.new-videos-title {
  display: inline-block;
  font-size: 2em;
  font-family: proxima-nova, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #1a1a34;
  margin-bottom: 1em;
  letter-spacing: 0.02em;
}

.videos-swiper .swiper-slide {
  width: 220px !important;
  padding: 0 10px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .videos-section {
    padding: 40px 0 20px 0;
  }
  
  h2.new-videos-title {
    font-size: 1.5em;
  }
  
  .videos-swiper .swiper-slide {
    width: 180px !important;
    padding: 0 8px;
  }
  
  .videos-carousel-img {
    max-width: 180px;
    max-height: 100px;
  }
}

@media (max-width: 480px) {
  .videos-section {
    padding: 30px 0 15px 0;
  }
  
  h2.new-videos-title {
    font-size: 1.3em;
  }
  
  .videos-swiper .swiper-slide {
    width: 150px !important;
    padding: 0 6px;
  }
  
  .videos-carousel-img {
    max-width: 150px;
    max-height: 80px;
  }
} 

/* Thankyou Cards モバイル表示の高さ調整 */
@media (max-width: 900px) {
  .thankyou-card {
    padding: 18px 14px 14px 14px;
  }
  .thankyou-card img {
    width: 90%;
    height: 90%;
  }
  .thankyou-name {
    font-size: 1rem;
    margin-bottom: 4px;
  }
  .thankyou-msg {
    font-size: 0.85rem;
  }
}

/* Thankyou Cards Swiper 専用スタイル */
.thankyou-cards-swiper .swiper-slide {
  width: 280px;
  margin-right: 20px;
}

@media (max-width: 900px) {
  .thankyou-cards-swiper .swiper-slide {
    width: 260px;
    margin-right: 15px;
  }

  .thankyou-cards-swiper .swiper-slide .thankyou-card {
    width: 100%;
    height: 90%;
  }
}

@media (max-width: 600px) {
  .thankyou-cards-swiper .swiper-slide {
    width: 250px;
    margin-right: 10px;
  }

  .thankyou-cards-swiper .swiper-slide .thankyou-card {
    width: 100%;
    height: 90%;
  }
}

/* THANK YOU セクション */
.section-thankyou {
  background: #1a1a34;
  background-size: auto 15px;
  color: #fff;
  padding: 40px 5vw;
  text-align: center;
  margin-top: 0;
}

.section-thankyou::before {
  content: none !important;
}

/* Thankyou Header レイアウト */
.thankyou-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 40px auto 60px auto;
  gap: 40px;
}

.thankyou-text {
  flex: 2;
  text-align: center;
}

.thankyou-text p {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0;
  font-family: 'Noto Serif JP', serif;
}

.thankyou-text p:first-child {
  margin-bottom: 8px;
}

.thankyou-button {
  flex: 1;
  text-align: center;
}

.thankyou-blog-btn {
  display: inline-block;
  background: #ba9435;
  color: white;
  text-decoration: none;
  padding: 20px 60px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 0;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 380px;
  width: 100%;
}

.thankyou-blog-btn:hover {
  background: #d4af37;
}

@media (max-width: 768px) {
  .thankyou-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    margin: 0 auto 0 auto;
  }
  
  .thankyou-text {
    text-align: center;
  }
  
  .thankyou-button {
    text-align: center;
  }
  
  .thankyou-text p {
    font-size: 1rem;
  }
  
  .thankyou-blog-btn {
    padding: 18px 50px;
    font-size: 16px;
    min-width: 280px;
  }
}

@media (max-width: 480px) {
  .thankyou-blog-btn {
    padding: 16px 40px;
    font-size: 15px;
    min-width: 240px;
  }
}

.section-thankyou h2, .section-thankyou h3 {
  color: #fff;
  padding-top: 20px;
  font-size: 2.5em;
  letter-spacing: 0.05em;
}

.section-thankyou h3 span {
  font-size: 0.4em;
  letter-spacing: 0.05em;
}

/* Thankyou Cards Carousel */
.thankyou-cards-carousel, .voice-cards-carousel {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  position: relative;
  margin: 30px auto 32px auto;
  display: flex;
  align-items: center;
}

.thankyou-cards-list, .voice-cards-list {
  display: flex;
  gap: 24px;
  transition: transform 0.5s;
  will-change: transform;
  width: 100%;
  min-width: fit-content;
}

.thankyou-card {
  background: #fff;
  color: #222;
  border-radius: 4px;
  box-shadow: 0 2px 12px #0002;
  min-width: 260px;
  max-width: 260px;
  width: 90vw;
  padding: 20px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.thankyou-card:hover {
  background: #ecf7ff;
}

.thankyou-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: 12px;
}

.thankyou-name {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.thankyou-msg {
  font-size: 0.95rem;
  color: #1a237e;
}

/* Slider Arrow Styles */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: transparent;
  color: #fff;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.slider-arrow.prev { left: 10px; }
.slider-arrow.next { right: 10px; }
.slider-arrow:hover { 
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow img {
  width: 60px;
  height: 60px;
  filter: none;
}

@media (max-width: 700px) {
  .thankyou-cards-list, .voice-cards-list {
    gap: 8px;
  }
  .thankyou-card, .voice-card {
    min-width: 90vw;
    max-width: 90vw;
    width: 90vw;
    padding: 16px 10vw;
  }
  .carousel-btn {
    width: 36px;
    height: 36px;
  }
  .slider-arrow {
    width: 40px;
    height: 40px;
  }
  .slider-arrow.prev { left: 5px; }
  .slider-arrow.next { right: 5px; }
  .slider-arrow img {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .thankyou-card, .voice-card {
    min-width: 95vw;
    max-width: 95vw;
    width: 95vw;
    padding: 16px 2.5vw;
  }
  .slider-arrow {
    width: 32px;
    height: 32px;
  }
  .slider-arrow.prev { left: 2px; }
  .slider-arrow.next { right: 2px; }
  .slider-arrow img {
    width: 32px;
    height: 32px;
  }
}

/* Swiper用のモバイル表示設定 */
@media (max-width: 900px) {
  .thankyou-cards-swiper .swiper-slide {
    width: 90vw;
    margin-right: 10px;
  }
  .thankyou-cards-swiper .swiper-slide .thankyou-card {
    width: 100%;
    min-width: 90vw;
    max-width: 90vw;
  }
}

@media (max-width: 600px) {
  .thankyou-cards-swiper .swiper-slide {
    width: 95vw;
    margin-right: 5px;
  }
  .thankyou-cards-swiper .swiper-slide .thankyou-card {
    width: 100%;
    min-width: 95vw;
    max-width: 95vw;
  }
}

.en-font {
  font-family: dupincel-variable, sans-serif;
}

/* レスポンシブ改行制御 */
@media (max-width: 700px) {
  br.sp-br {
    display: none;
  }
}

/* PC表示では非表示、モバイル表示でのみ表示されるbr */
br.pc-br {
  display: none;
}

@media (max-width: 700px) {
  br.pc-br {
    display: block;
  }
}

/* スタッフ紹介 & 車両ギャラリー セクション */
.staff-gallery-section {
  background: #fff;
  padding: 80px 0;
}

.staff-gallery-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* 左側：スタッフ写真 */
.staff-photo-section {
  width: 45%;
}

.staff-photo {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* 右側：車両ギャラリー */
.car-gallery-section {
  width: 55%;
  max-height: 80vh;
  overflow-y: auto;
}

.gallery-header {
  margin-bottom: 40px;
  text-align: left;
}

.gallery-title {
  font-size: 3.5em;
  font-weight: 700;
  color: #ba9435;
  margin: 0 0 10px 0;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0.02em;
  text-align: center;
}

.gallery-subtitle {
  font-size: 1.8em;
  color: #1a1a34;
  margin: 0;
  font-weight: 600;
  font-family: 'Noto Serif JP', sans-serif;
  text-align: center;
}

.car-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.car-item {
  background: #FFF;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 0;
}

.car-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.car-image-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.car-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.car-item:hover .car-image {
  transform: scale(1.05);
}



.car-info {
  padding: 10px 20px 20px 20px;
}

.car-date {
  font-size: 0.9em;
  color: #ba9435;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: 'Noto Sans JP', sans-serif;
}

.car-details {
  font-size: 0.8em;
  color: #1a1a34;
  line-height: 1.5;
  font-family: 'Noto Sans JP', sans-serif;
}

/* スクロールバーのカスタマイズ */
.car-gallery-section::-webkit-scrollbar {
  width: 8px;
}

.car-gallery-section::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.car-gallery-section::-webkit-scrollbar-thumb {
  background: #ba9435;
  border-radius: 4px;
}

.car-gallery-section::-webkit-scrollbar-thumb:hover {
  background: #d4af37;
}

/* レスポンシブ対応 */
@media (max-width: 1200px) {
  .staff-gallery-container {
    gap: 40px;
  }
  
  .gallery-title {
    font-size: 3em;
  }
  
  .gallery-subtitle {
    font-size: 1.6em;
  }
}

@media (max-width: 900px) {
  .staff-gallery-section {
    padding: 60px 0;
  }
  
  .staff-gallery-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .staff-photo-section {
    width: 100%;
  }
  
  .car-gallery-section {
    width: 100%;
    max-height: 600px;
    overflow-y: auto;
  }
  
  .gallery-title {
    font-size: 2.5em;
  }
  
  .gallery-subtitle {
    font-size: 1.4em;
  }
  
  .car-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  /* モバイル時は3台まで表示、それ以上はスクロール */
  .car-item:nth-child(n+4) {
    display: none;
  }
  
  /* スクロール可能な状態で3台以降を表示 */
  .car-gallery-section {
    max-height: 600px;
  }
  
  .car-gallery-section .car-item:nth-child(n+4) {
    display: block;
  }
}

@media (max-width: 600px) {
  .staff-gallery-section {
    padding: 40px 20px;
  }
  
  .staff-gallery-container {
    gap: 30px;
  }
  
  .gallery-title {
    font-size: 2em;
  }
  
  .gallery-subtitle {
    font-size: 1.2em;
  }
  
  .car-image-container {
    height: 120px;
  }
  
  .car-image {
    object-fit: cover;
  }
  
  .car-info {
    padding: 15px;
  }
  
} 

/* 新着在庫スライダー */
.new-stocks-section {
  text-align: center;
}

.new-stocks-header {
  background: #1a1a34;
  padding: 45px 0;
  margin-bottom: 0;
}

.new-stocks-subtitle {
  font-size: 1.8em;
  font-weight: 600;
  color: #fff;
  margin: 5px 0 0 0;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.02em;
}

.new-stocks-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  position: relative;
  background: #fff;
  padding: 48px 0 24px 0;
}

a.stock-card, .stock-card {
  max-width: 320px;
  margin: 0;
  text-decoration: none;
  color: inherit;
  list-style: none;
  display: block;
  padding: 0 10px;
}

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

.stock-card-text {
  width: 100%;
  text-align: center;
  margin-top: 10px;
  font-size: 0.95em;
  color: #222;
  line-height: 1.6;
  font-family: 'Noto Sans', sans-serif;
}

.stock-card-text .stock-date {
  font-size: 0.9em;
  font-weight: bold;
  color: #b12f48;
  margin-bottom: 2px;
  display: block;
}

.stock-card-text .stock-title {
  font-size: 1em;
  font-weight: bold;
  color: #222;
  margin-bottom: 8px;
  display: block;
}

.stock-card-text .stock-detail {
  font-size: 0.8em;
  color: #555;
  display: block;
}

h2.new-stocks-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #ba9435;
  margin: 0;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0.02em;
}

/* レスポンシブ対応 */
@media (max-width: 900px) {
  .new-stocks-header {
    padding: 40px 0;
  }
  
  h2.new-stocks-title {
    font-size: 2em;
  }
  
  .new-stocks-subtitle {
    font-size: 1.8em;
  }
}

@media (max-width: 600px) {
  .new-stocks-header {
    padding: 30px 0;
  }
  
  h2.new-stocks-title {
    font-size: 1.8em;
  }
  
  .new-stocks-subtitle {
    font-size: 1.5em;
  }
  
  a.stock-card, .stock-card {
    max-width: 280px;
  }
}

/* サービス工場セクション */
.service-factory-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 0;
}

.service-factory-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.factory-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-factory-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 50px;
  width: 100%;
}

.service-factory-left {
  flex: 1;
  text-align: center;
}

.service-factory-title {
  font-size: 4em;
  font-weight: 700;
  color: #1a1a34;
  margin: 0 auto 30px auto;
  font-family: dupincel-variable, sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-align: center;
  max-width: 380px;
  width: 100%;
}

.service-factory-btn {
  display: inline-block;
  background: #ba9435;
  color: white;
  text-decoration: none;
  padding: 20px 60px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 0;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.service-factory-btn:hover {
  background: #d4af37;
}

.service-factory-right {
  flex: 1;
  text-align: center;
}

.service-factory-subtitle {
  font-size: 2.5em;
  font-weight: 700;
  color: #1a1a34;
  margin: 0 0 10px 0;
  font-family: 'Noto Serif JP', sans-serif;
  letter-spacing: 0.02em;
  text-align: center;
}

.service-factory-desc {
  font-size: 0.9em;
  color: #1a1a34;  font-family: 'Noto Serif JP', sans-serif;
  line-height: 1.6;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}
.service-factory-desc2 {
  font-size: 1.6em;
  color: #1a1a34;
  font-family: 'Noto Serif JP', sans-serif;
  line-height: 1.6;
  font-weight: 600;
  text-align: center;
}

/* レスポンシブ対応 */
@media (max-width: 1200px) {
  .service-factory-section {
    padding: 50px 0;
  }
  
  .service-factory-title {
    font-size: 3.5em;
  }
  
  .service-factory-subtitle {
    font-size: 2.2em;
  }
  
  .service-factory-desc {
    font-size: 1.2em;
  }
}

@media (max-width: 900px) {
  .service-factory-content {
    flex-direction: column;
    text-align: center;
    padding: 0 30px;
  }
  
  .service-factory-left {
    margin-bottom: 30px;
  }
  
  .service-factory-right {
    text-align: center;
    padding-left: 0;
  }
  
  .service-factory-title {
    font-size: 3em;
    margin-bottom: 20px;
  }
  
  .service-factory-subtitle {
    font-size: 2em;
    margin-bottom: 15px;
  }
  
  .service-factory-desc {
    font-size: 1.1em;
  }
}

@media (max-width: 600px) {
  .service-factory-content {
    padding: 0 20px;
  }
  
  .service-factory-title {
    font-size: 2.5em;
  }
  
  .service-factory-subtitle {
    font-size: 1.5em;
  }
  
  .service-factory-desc {
    font-size: 0.7em;
  }
  .service-factory-desc2 {
    font-size: 1.2em;
  }
  .service-factory-btn {
    padding: 18px 50px;
    font-size: 16px;
    min-width: 280px;
  }
}

@media (max-width: 480px) {
  .service-factory-btn {
    padding: 16px 40px;
    font-size: 15px;
    min-width: 240px;
  }
} 

/* ACCESSセクション */
.access-section {
  max-width: 1200px;
  margin: 40px auto 0 auto;
  padding: 0 20px 60px 20px;
}
.access-title {
  display: inline-block;
  font-size: 2em;
  font-family: proxima-nova, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #1a1a34;
  margin-bottom: 1em;
  letter-spacing: 0.02em;
  text-align: center;
  width: 100%;
}
.access-container {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
.access-left {
  background: #fff;
  border-radius: 0px;
  padding: 0 0 32px 0;
  max-width: 440px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.shop-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 0;
  display: block;
}
.shop-intro-button {
  width: 100%;
  background: #c3a32c;
  text-align: center;
  padding:  0;
  margin-top: 18px;
  margin-bottom: 18px;
}
.shop-intro-btn {
  display: inline-block;
  background: #ba9435;
  color: white;
  text-decoration: none;
  padding: 20px 60px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 0;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  font-family: 'Noto Sans', sans-serif;
}

.shop-intro-btn:hover {
  background: #d4af37;
}
.shop-info {
  width: 100%;
  margin: 0 auto;
  margin-top: 18px;
  font-family: 'Noto Sans', sans-serif;
  border-left: 1px solid #e0e0e0;
  padding-left: 25px;
}
.shop-name {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 2px;
}
.shop-type {
  font-size: 0.9em;
  font-weight: bold;
  margin-bottom: 16px;
}
.shop-address {
  margin-bottom: 8px;
}
.postal-code, .address {
  font-size: 0.9em;
  margin-bottom: 2px;
}
.shop-phone {
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 8px;
}
.access-right {
  flex: 1 1 440px;
  max-width: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-container {
  width: 100%;
  max-width: 500px;
  min-width: 320px;
  background: #e6e6e6;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
  overflow: hidden;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
@media (max-width: 900px) {
  .access-container {
    flex-direction: column;
    gap: 0px;
    align-items: center;
  }
  .access-left, .access-right, .map-container {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  
  /* マップ要素の上下の隙間を半分に縮小 */
  .access-left {
    padding: 0px; 
  }

  .access-section {
    padding-bottom: 0px; /* 60x → 30px */
  }
}
@media (max-width: 480px) {
  .shop-intro-btn {
    padding: 16px 40px;
    font-size: 15px;
    min-width: 240px;
  }
  .map-container {
    height: 300px;
  }  
  } 

/* 会社概要ページ専用ヒーローセクション */
.company-hero-section {
  position: relative;
  width: 100%;
  height: 200px;
  margin-top: 150px;
  overflow: hidden;
}

.company-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.company-hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
.finance-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.finance-hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.company-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 17, 26, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-hero-content {
  text-align: center;
  color: white;
}

.company-hero-title {
  font-size: 2.3em;
  font-weight: 500;
  margin: 0 0 10px 0;
  font-family: 'Noto Serif JP', sans-serif;
  letter-spacing: 0.08em;
}

.company-hero-subtitle {
  font-size: 1.2em;
  font-weight: 400;
  margin: 0;
  font-family: 'proxima-nova', sans-serif;
  letter-spacing: 0.1em;
  opacity: 0.9;
  color: #ba9435;
}

/* 会社概要ページ専用ヒーローセクション - レスポンシブ対応 */
@media (max-width: 768px) {
  .company-hero-section {
    height: 150px;
    margin-top: 95px;
  }
  
  .company-hero-title {
    font-size: 2em;
  }
  
  .company-hero-subtitle {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .company-hero-section {
    height: 120px;
  }
  
  .company-hero-title {
    font-size: 1.8em;
    margin: 0 0 0px 0;
  }
  
  .company-hero-subtitle {
    font-size: 0.9em;
  }
}

/* 会社概要テーブルセクション */
.company-info-section {
  background: white;
  padding: 40px 0;
}

.company-info-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 50px;
}

.company-info-table {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.company-info-row {
  display: flex;
  border-bottom: 1px solid #e0e0e0;
}

.company-info-row:last-child {
  border-bottom: none;
}

.company-info-label {
  width: 200px;
  background: #f8f9fa;
  padding: 15px 25px;
  font-weight: 600;
  color: #1a1a34;
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  display: flex;
  align-items: center;
  border-right: 1px solid #e0e0e0;
}

.company-info-value {
  flex: 1;
  padding: 15px 25px;
  color: #333;
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.6;
  display: flex;
  align-items: center;
}

.company-info-value a {
  color: #ba9435;
  text-decoration: none;
  transition: color 0.3s ease;
}

.company-info-value a:hover {
  color: #d4af37;
  text-decoration: underline;
}

/* 会社概要テーブル - レスポンシブ対応 */
@media (max-width: 768px) {
  .company-info-section {
    padding: 30px 0;
  }
  
  .company-info-container {
    padding: 0 20px;
  }
  
  .company-info-label {
    width: 120px;
    padding: 12px 15px;
    font-size: 0.9em;
  }
  
  .company-info-value {
    padding: 12px 15px;
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .company-info-section {
    padding: 20px 0;
  }
  
  .company-info-container {
    padding: 0 15px;
  }
  
  .company-info-label {
    width: 100px;
    padding: 10px 12px;
    font-size: 0.8em;
  }
  
  .company-info-value {
    padding: 10px 12px;
    font-size: 0.8em;
  }
}

/* 会社画像セクション */
.company-images-section {
  background: white;
  padding: 30px 0 0 0;
}

.company-images-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  gap: 40px;
  align-items: center;
}

.company-image-item {
  flex: 1;
  border-radius: 4px;
  overflow: hidden;
}

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

/* 会社画像セクション - レスポンシブ対応 */
@media (max-width: 768px) {
  .company-images-section {
    padding: 40px 0;
  }
  
  .company-images-container {
    padding: 0 20px;
    flex-direction: column;
    gap: 30px;
  }
  
  .company-image-item {
    width: 100%;
  }
  
  .company-image-item img {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .company-images-section {
    padding: 30px 0;
  }
  
  .company-images-container {
    padding: 0 15px;
    gap: 20px;
  }
  
  .company-image-item img {
    height: 200px;
  }
}

/* 店舗紹介セクション */
.store-intro-section {
  background: white;
  padding: 0px 0;
}

.store-intro-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}

.store-intro-title {
  text-align: center;
  font-size: 2em;
  font-weight: 700;
  color: #1a1a34;
  margin: 0 0 50px 0;
  font-family: 'proxima-nova', sans-serif;
  letter-spacing: 0.02em;
}

.store-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.store-intro-item {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-intro-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.store-intro-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.store-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.store-intro-item:hover .store-intro-image img {
  transform: scale(1.05);
}

.store-intro-text {
  padding: 20px;
}

.store-intro-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  font-family: 'Noto Sans JP', sans-serif;
}

/* 店舗紹介セクション - レスポンシブ対応 */
@media (max-width: 900px) {
  .store-intro-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .store-intro-section {
    padding: 0px 0;
  }
  
  .store-intro-container {
    padding: 0 20px;
  }
  
  .store-intro-title {
    font-size: 1.5em;
    margin: 0 0 40px 0;
  }
  
  .store-intro-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .store-intro-image {
    height: 160px;
  }
  
  .store-intro-text {
    padding: 15px;
  }
  
  .store-intro-text p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .store-intro-section {
    padding: 0px 0;
  }
  
  .store-intro-container {
    padding: 0 15px;
  }
  
  .store-intro-title {
    font-size: 1.5em;
    margin: 0 0 30px 0;
  }
  
  .store-intro-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .store-intro-image {
    height: 180px;
  }
  
  .store-intro-text {
    padding: 15px;
  }
  
  .store-intro-text p {
    font-size: 12px;
  }
}

/* ボトムバナーセクション */
.bottom-banner-section {
  background: #1a1a34;
  padding: 40px 0 0 0;
  margin-top: 0px;
}

.bottom-carousel {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.bottom-banner-swiper {
  width: 100%;
}

.bottom-banner-swiper .swiper-slide {
  width: auto;
  height: auto;
}

.bottom-carousel-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 0;
  transition: opacity 0.3s ease;
}

.bottom-carousel-img:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .bottom-banner-section {
    padding: 30px 0 0 0;
    margin-top: 0px;
  }
  
  .bottom-carousel {
    padding: 0;
  }
  
  .bottom-carousel-img {
    max-width: 240px;
  }
}

@media (max-width: 480px) {
  .bottom-banner-section {
    padding: 20px 0 0 0;
    margin-top: 0px;
  }
  
  .bottom-carousel-img {
    max-width: 200px;
  }
} 

/* ファイナンスセクション */
.finance-main-section {
  padding: 40px 0;
  background: #f8f9fa;
}

.finance-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.finance-title {
  text-align: center;
  margin-bottom: 30px;
}

.finance-title h2 {
  font-size: 2em;
  font-weight: 700;
  color: #1d2234;
  font-family: 'Noto Sans', sans-serif;
}

.finance-hero {
  margin-bottom: 60px;
  text-align: center;
}

.finance-hero img {
  max-width: 700px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.finance-details {
  padding: 0px 0px 0px 0px;
  max-width: 800px;
  margin: 0 auto;
}

.finance-description {
  margin-bottom: 30px;
}

.finance-description p {
  font-size: 1em;
  line-height: 1.8;
  color: #333;
  margin-bottom: 10px;
  font-family: 'Noto Sans', sans-serif;
}

.finance-description p:last-child {
  margin-bottom: 0;
}

.finance-plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.finance-plan-item {
  background: linear-gradient(135deg, #1d2234 0%, #2a3147 100%);
  border-radius: 6px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(29, 34, 52, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.finance-plan-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(29, 34, 52, 0.3);
}

.finance-plan-title {
  font-size: 1em;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 15px;
  font-family: 'Noto Sans', sans-serif;
}

.finance-plan-value {
  font-size: 1em;
  font-weight: 700;
  color: white;
  font-family: 'Noto Sans', sans-serif;
}

/* 詳細コンテンツセクション */
.finance-content-sections {
  margin-top: 60px;
}

.finance-content-section {
  display: block;
  background: white;
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.finance-content-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #d4af37;
}

.finance-content-header h3 {
  font-size: 1.8em;
  font-weight: 700;
  color: #1d2234;
  margin-bottom: 5px;
  font-family: 'Noto Sans', sans-serif;
}

.finance-content-body {
  line-height: 1.8;
}

.finance-content-body img {
  max-width: 580px;
  width: 100%;
  height: auto;
  margin: 0px auto 20px auto;
  display: block;
}

.finance-content-body p {
  font-size: 1em;
  color: #333;
  margin-bottom: 20px;
  font-family: 'Noto Sans', sans-serif;
}

/* バジェットローンセクション */
.budget-loan-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.budget-method {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px 20px 0 20px;
  text-align: center;
  border: 1px solid #d4af37;
  transition: border-color 0.3s ease;
}
.method-number {
  background: #d4af37;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8em;
  margin: 0 auto 5px auto;
  font-family: 'Noto Sans', sans-serif;
}

.budget-method h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1d2234;
  margin-bottom: 10px;
  font-family: 'Noto Sans', sans-serif;
}

.budget-method p {
  font-size: 0.8em;
  color: #666;
  margin-bottom: 15px;
  font-family: 'Noto Sans', sans-serif;
}

.budget-method img {
  max-width: 160px;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.budget-loan-notes {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 30px;
}

.budget-loan-notes h4 {
  font-size: 1.3em;
  font-weight: 700;
  color: #1d2234;
  margin-bottom: 20px;
  font-family: 'Noto Sans', sans-serif;
}

.budget-loan-notes ul {
  list-style: none;
  padding: 0;
}

.budget-loan-notes li {
  font-size: 0.8em;
  color: #333;
  margin-bottom: 2px;
  padding-left: 20px;
  position: relative;
  font-family: 'Noto Sans', sans-serif;
}

.budget-loan-notes li::before {
  content: "•";
  color: #d4af37;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* オートリースセクション */
.lease-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.lease-benefit {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px 20px 0 20px;
  border: 1px solid #d4af37;
  transition: border-color 0.3s ease;
}

.benefit-number {
  background: #d4af37;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
  font-family: 'Noto Sans', sans-serif;
}

.lease-benefit h4 {
  font-size: 1em;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 5px;
  font-family: 'Noto Sans', sans-serif;
}

.lease-benefit p {
  font-size: 0.8em;
  color: #666;
  font-family: 'Noto Sans', sans-serif;
}

.lease-notes {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 30px;
}

.lease-notes h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1d2234;
  margin-bottom: 20px;
  font-family: 'Noto Sans', sans-serif;
}

.lease-notes ul {
  list-style: none;
  padding: 0;
}

.lease-notes li {
  font-size: 0.8em;
  color: #333;
  margin-bottom: 2px;
  padding-left: 20px;
  position: relative;
  font-family: 'Noto Sans', sans-serif;
}

.lease-notes li::before {
  content: "•";
  color: #d4af37;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* 比較セクション */
.finance-comparison-text {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 30px;
  margin-top: 20px;
}

.finance-comparison-text h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1d2234;
  margin-bottom: 15px;
  font-family: 'Noto Sans', sans-serif;
}

.finance-comparison-text p {
  font-size: 14px;
  color: #666;
  font-family: 'Noto Sans', sans-serif;
} 

/* レスポンシブ対応 */
@media (max-width: 900px) {
  .finance-main-section {
    padding: 60px 0;
  }
  
  .finance-plans {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .finance-title h2 {
    font-size: 1.5em;
  }
  

  .finance-details {
    padding: 0px 0px;
  }
  
  .budget-loan-methods {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .lease-benefits {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .finance-main-section {
    padding: 20px 0;
  }
  
  .finance-plans {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
  
  .finance-details {
    padding: 0px 0px;
  }
  .finance-description p {
    font-size: 0.9em;
  }
  
  .finance-plan-item {
    padding: 15px 0px 15px 0px;
  }
  
  .finance-plan-title {
    font-size: 0.7em;
    margin-bottom: 5px;
  }
  
  .finance-plan-value {
    font-size: 0.6em;
  }
  .finance-content-sections {
    margin-top: 20px;
  }
  
  .finance-content-section {
    padding: 20px 0px;
    background: none;
    box-shadow: none;
    margin-bottom: 0px;
  }
  
  .finance-content-header {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  .finance-content-header h3 {
    font-size: 1.5em;
  }
  .finance-content-body p {
    font-size: 0.8em;
  }
  
  .budget-loan-methods {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .budget-method {
    background-color: #fff;
  }
  .lease-benefit h4 {
    font-size: 0.9em;
  }
  
  
}

@media (max-width: 480px) {
  .finance-hero {
    margin-bottom: 20px;
  }

  .finance-title h2 {
    font-size: 1em;
  }
  
  .finance-content-header h3 {
    font-size: 1em;
  }
  
  .finance-content-header p {
    font-size: 0.8em;
  }
  
  .budget-loan-notes,
  .lease-notes {
    padding: 0px;
  }
  .budget-loan-notes h4,
  .lease-notes h4 {
    font-size: 1em;
  }
}

/* 比較表セクション */
.finance-comparison-table-section {
  padding: 40px 0;
  background: white;
}

.comparison-table-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0px;
}

.comparison-table-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #1d2234;
  margin-bottom: 40px;
  font-family: 'Noto Sans', sans-serif;
}

.comparison-table {
  background: white;
  border-radius: 10px;
  padding: 0px;
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Noto Sans', sans-serif;
}

.comparison-table th {
  background: #1d2234;
  color: white;
  padding: 15px 10px;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  font-family: 'Noto Sans', sans-serif;
}

.comparison-table th:first-child {
  background: #d4af37;
  color: white;
}

.comparison-table td {
  padding: 15px 10px;
  border: 1px solid #e9ecef;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.5;
  font-family: 'Noto Sans', sans-serif;
}

.comparison-category {
  background: #f8f9fa;
  font-weight: 700;
  color: #1d2234;
  text-align: center;
  font-size: 16px;
}

.comparison-table ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-table li {
  margin-bottom: 6px;
  padding-left: 12px;
  position: relative;
  font-family: 'Noto Sans', sans-serif;
}

.comparison-table li::before {
  content: "•";
  color: #d4af37;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.comparison-table .note {
  font-size: 12px;
  color: #666;
  margin-top: 8px;
  font-style: italic;
  font-family: 'Noto Sans', sans-serif;
}

/* 比較表のレスポンシブ対応 */
@media (max-width: 900px) {
  .finance-comparison-table-section {
    padding: 40px 0;
  }
  
  .comparison-table-wrapper {
    padding: 0 15px;
  }
  
  .comparison-table {
    padding: 0px;
  }
  
  .comparison-table-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 12px 8px;
    font-size: 13px;
  }
  
  .comparison-category {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .finance-comparison-table-section {
    padding: 30px 0;
  }
  
  .comparison-table-wrapper {
    padding: 0 10px;
  }
  
  .comparison-table {
    padding: 0px;
  }
  
  .comparison-table-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 10px 6px;
    font-size: 12px;
  }
  
  .comparison-category {
    font-size: 13px;
  }
  
  .comparison-table .note {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .finance-comparison-table-section {
    padding: 20px 0;
  }
  
  .comparison-table-wrapper {
    padding: 0 5px;
  }
  
  .comparison-table {
    padding: 0px;
  }
  
  .comparison-table-title {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 8px 4px;
    font-size: 11px;
  }
  
  .comparison-category {
    font-size: 12px;
  }
  
  .comparison-table li {
    margin-bottom: 4px;
    padding-left: 8px;
  }
  
  .comparison-table .note {
    font-size: 10px;
  }
}

/* サービスページ */
.service-main-section {
  padding: 60px 0;
  background: white;
}

.service-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.service-title {
  text-align: center;
  margin-bottom: 30px;
}

.service-title h2 {
  font-size: 1.6em;
  font-weight: 700;
  color: #1d2234;
  line-height: 1.4;
  font-family: 'Noto Sans', sans-serif;
  margin: 0;
}

.service-details {
  max-width: 900px;
  margin: 0 auto;
}

.service-description {
  text-align: center;
}

.service-description p {
  font-size: 1em;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
  font-family: 'Noto Sans', sans-serif;
}

.service-description p:last-child {
  margin-bottom: 0;
}

/* サービスページのレスポンシブ対応 */
@media (max-width: 900px) {
  .service-main-section {
    padding: 60px 0;
  }
  
  .service-container {
    padding: 0 15px;
  }
  
  .service-title {
    margin-bottom: 40px;
  }
  
  .service-title h2 {
    font-size: 1.6em;
  }
  
  .service-description p {
    font-size: 1em;
  }
}

@media (max-width: 600px) {
  .service-main-section {
    padding: 40px 0;
  }
  
  .service-container {
    padding: 0 10px;
  }
  
  .service-title {
    margin-bottom: 30px;
  }
  
  .service-title h2 {
    font-size: 1em;
  }
  
  .service-description p {
    font-size: 0.9em;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .service-main-section {
    padding: 30px 0;
  }
  
  .service-container {
    padding: 0 5px;
  }
  
  .service-title {
    margin-bottom: 20px;
  }
  .service-description p {
    font-size: 0.8em;
    margin-bottom: 12px;
  }
}

/* サービス詳細セクション */
.service-details-section {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.service-detail-item {
  width: 100%;
  padding: 80px 0;
  background-color: #f8f9fa;
}

/* デスクトップ版（900px以上）での背景色制御 */
@media (min-width: 901px) {
  .service-detail-item:nth-child(1) {
    background-color: #f8f9fa; /* 全国納車 - グレー */
  }
  
  .service-detail-item:nth-child(2) {
    background-color: #ffffff; /* オンライン商談・WEB注文 - 白 */
  }
  
  .service-detail-item:nth-child(3) {
    background-color: #ffffff; /* 有償保証も充実 - 白 */
  }
  
  .service-detail-item:nth-child(4) {
    background-color: #f8f9fa; /* 自動車保険 - グレー */
  }
}

.service-detail-item-alt {
  background-color: #ffffff;
}

.service-detail-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
  height: 100%;
}

.service-detail-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  height: 100%;
  text-align: center;
}

.service-detail-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-detail-text h3 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #1d2234;
  margin-bottom: 20px;
  line-height: 1.4;
}

.service-detail-text p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 15px;
}

.service-detail-text p:last-child {
  margin-bottom: 0;
}

.service-detail-image {
  flex: 1;
  max-width: 300px;
  width: 100%;
}

.service-detail-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* レスポンシブ対応 */
@media (max-width: 1200px) {
  .service-detail-container {
    padding: 0 30px;
  }
  
  .service-detail-text h3 {
    font-size: 24px;
  }
  
  .service-detail-text p {
    font-size: 13px;
  }
}

@media (max-width: 900px) {
  .service-details-section {
    display: block;
  }
  
  .service-detail-item {
    padding: 60px 0;
  }
  
  .service-detail-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .service-detail-text {
    order: 1;
  }
  
  .service-detail-image {
    order: 2;
    max-width: 100%;
  }
  
  .service-detail-text h3 {
    font-size: 24px;
    text-align: center;
  }
  
  .service-detail-text p {
    text-align: center;
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .service-detail-item {
    padding: 40px 0;
  }
  
  .service-detail-container {
    padding: 0 20px;
  }
  
  .service-detail-content {
    gap: 25px;
  }
  
  .service-detail-text h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .service-detail-text p {
    font-size: 14px;
    margin-bottom: 12px;
  }
}

@media (max-width: 480px) {
  .service-detail-item {
    padding: 30px 0;
  }
  
  .service-detail-container {
    padding: 0 15px;
  }
  
  .service-detail-content {
    gap: 20px;
  }
  
  .service-detail-text h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .service-detail-text p {
    font-size: 13px;
    margin-bottom: 10px;
  }
  
  .service-detail-image img {
    border-radius: 6px;
  }
}

/* サービスプロセスセクション */
.service-process-section {
  width: 100%;
  background-color: #1d2234;
  padding: 80px 0;
}

.service-process-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
}

.service-process-title {
  text-align: center;
  margin-bottom: 60px;
}

.service-process-title h2 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  position: relative;
  display: inline-block;
}

.service-process-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #ffd700;
}

.service-process-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-process-step {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 40px;
  position: relative;
}

.step-number {
  font-family: 'Noto Sans', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1;
  min-width: 60px;
  text-align: center;
}

.step-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex: 1;
}

.step-text {
  flex: 1;
}

.step-text h3 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 15px;
  line-height: 1.4;
}

.step-text p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #ffffff;
  margin: 0;
}

.step-image {
  flex: 1;
  max-width: 400px;
}

.step-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* デスクトップ版（900px以上）での横並びレイアウト */
@media (min-width: 901px) {
  .service-process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }
  
  .service-process-step {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 25px 20px;
    text-align: center;
  }
  
  .step-number {
    font-size: 32px;
    min-width: auto;
    margin-bottom: 10px;
  }
  
  .step-content {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  
  .step-text h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .step-text p {
    font-size: 13px;
    line-height: 1.6;
  }
  
  .step-image {
    max-width: 100%;
  }
  
  .step-image img {
    border-radius: 6px;
  }
}

/* レスポンシブ対応 */
@media (max-width: 1200px) {
  .service-process-container {
    padding: 0 30px;
  }
  
  .service-process-title h2 {
    font-size: 28px;
  }
  
  .step-content {
    gap: 30px;
  }
  
  .step-text h3 {
    font-size: 22px;
  }
  
  .step-text p {
    font-size: 15px;
  }
}

@media (max-width: 900px) and (min-width: 601px) {
  .service-process-section {
    padding: 60px 0;
  }
  
  .service-process-title {
    margin-bottom: 40px;
  }
  
  .service-process-title h2 {
    font-size: 24px;
  }
  
  .service-process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .service-process-step {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 25px 20px;
    text-align: center;
  }
  
  .step-number {
    font-size: 28px;
    min-width: auto;
    margin-bottom: 8px;
  }
  
  .step-content {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  
  .step-text h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .step-text p {
    font-size: 12px;
    line-height: 1.5;
  }
  
  .step-image {
    max-width: 100%;
  }
  
  .step-image img {
    border-radius: 6px;
  }
}

@media (max-width: 600px) {
  .service-process-section {
    padding: 40px 0;
  }
  
  .service-process-container {
    padding: 0 20px;
  }
  
  .service-process-title {
    margin-bottom: 30px;
  }
  
  .service-process-title h2 {
    font-size: 20px;
  }
  
  .service-process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  
  .service-process-step {
    flex-direction: column;
    gap: 20px;
    padding: 30px;
  }
  
  .step-number {
    font-size: 36px;
    min-width: 50px;
  }
  
  .step-content {
    flex-direction: column;
    gap: 25px;
  }
  
  .step-text {
    text-align: center;
  }
  
  .step-text h3 {
    font-size: 20px;
    text-align: center;
  }
  
  .step-text p {
    text-align: center;
    font-size: 14px;
  }
  
  .step-image {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .service-process-section {
    padding: 30px 0;
  }
  
  .service-process-container {
    padding: 0 15px;
  }
  
  .service-process-title {
    margin-bottom: 25px;
  }
  
  .service-process-title h2 {
    font-size: 18px;
  }
  
  .service-process-step {
    padding: 20px;
    gap: 12px;
  }
  
  .step-number {
    font-size: 28px;
    min-width: 35px;
  }
  
  .step-content {
    gap: 15px;
  }
  
  .step-text h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .step-text p {
    font-size: 12px;
  }
  
  .step-image img {
    border-radius: 6px;
  }
}

/* 仕入れの力セクション */
.service-procurement-section {
  position: relative;
  width: 100%;
  height: 260px;
  margin-top: 0;
  overflow: hidden;
}

.service-procurement-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.service-procurement-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-procurement-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 17, 26, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-procurement-content {
  text-align: center;
  color: white;
}

.service-procurement-title {
  font-size: 2.3em;
  font-weight: 500;
  margin: 0 0 10px 0;
  font-family: 'Noto Serif JP', sans-serif;
  letter-spacing: 0.08em;
}

.service-procurement-button {
  margin-top: 10px;
}

.procurement-btn {
  display: inline-block;
  background: #ba9435;
  color: white;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.procurement-btn:hover {
  background: #d4af37;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .service-procurement-section {
    height: 180px;
  }
  
  .service-procurement-title {
    font-size: 2em;
  }
  
  .procurement-btn {
    font-size: 14px;
    padding: 10px 25px;
  }
}

@media (max-width: 480px) {
  .service-procurement-section {
    height: 160px;
  }
  
  .service-procurement-title {
    font-size: 1.8em;
    margin: 0 0 0px 0;
  }
  
  .procurement-btn {
    font-size: 13px;
    padding: 8px 20px;
  }
}

/* 仕入れの力ページ専用スタイル */
.purchase-main-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.purchase-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 50px;
}

.purchase-title {
  text-align: center;
  margin-bottom: 60px;
}

.purchase-title h2 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #1d2234;
  line-height: 1.4;
}

.purchase-content {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.purchase-content-reverse {
  flex-direction: row-reverse;
}

.purchase-text {
  flex: 1;
}

.purchase-text p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.purchase-text p:last-child {
  margin-bottom: 0;
}

.purchase-image {
  flex: 1;
  max-width: 280px;
}

.purchase-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* 在庫前作業セクション */
.purchase-inspection-section {
  padding: 80px 0;
  background: white;
}

.purchase-section-title {
  text-align: center;
  margin-bottom: 50px;
}

.purchase-section-title h3 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #1d2234;
  line-height: 1.4;
}

.purchase-inspection-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.purchase-inspection-text p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.purchase-inspection-text p:last-child {
  margin-bottom: 0;
}

.purchase-inspection-images {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.purchase-inspection-images img {
  width: 45%;
  max-width: 280px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* 撮影セクション */
.purchase-photo-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.purchase-photo-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.purchase-photo-text {
  flex: 1;
}

.purchase-photo-text p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.purchase-photo-text p:last-child {
  margin-bottom: 0;
}

.purchase-photo-image {
  flex: 1;
  max-width: 280px;
}

.purchase-photo-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* 販売開始セクション */
.purchase-sales-section {
  padding: 80px 0;
  background: white;
}

.purchase-sales-content {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-direction: row-reverse;
}

.purchase-sales-text {
  flex: 1;
}

.purchase-sales-text p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.purchase-sales-text p:last-child {
  margin-bottom: 0;
}

.purchase-sales-image {
  flex: 1;
  max-width: 280px;
}

.purchase-sales-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* 購入アドバイスセクション */
.purchase-advice-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.purchase-advice-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.purchase-advice-text {
  flex: 1;
}

.purchase-advice-text p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.purchase-advice-text p:last-child {
  margin-bottom: 0;
}

.purchase-advice-image {
  flex: 1;
  max-width: 280px;
}

.purchase-advice-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* 納車前作業セクション */
.purchase-delivery-section {
  padding: 80px 0;
  background: white;
}

.purchase-delivery-content {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-direction: row-reverse;
}

.purchase-delivery-text {
  flex: 1;
}

.purchase-delivery-text p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.purchase-delivery-text p:last-child {
  margin-bottom: 0;
}

.purchase-delivery-image {
  flex: 1;
  max-width: 280px;
}

.purchase-delivery-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* アフターサービスセクション */
.purchase-after-service-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.purchase-after-service-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.purchase-after-service-text {
  flex: 1;
}

.purchase-after-service-text p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.purchase-after-service-text p:last-child {
  margin-bottom: 0;
}

.purchase-after-service-image {
  flex: 1;
  max-width: 280px;
}

.purchase-after-service-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* レスポンシブ対応 */
@media (max-width: 1200px) {
  .purchase-container {
    padding: 0 30px;
  }
  
  .purchase-title h2 {
    font-size: 32px;
  }
  
  .purchase-section-title h3 {
    font-size: 24px;
  }
  
  .purchase-content,
  .purchase-photo-content,
  .purchase-sales-content,
  .purchase-advice-content,
  .purchase-delivery-content,
  .purchase-after-service-content {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .purchase-main-section,
  .purchase-inspection-section,
  .purchase-photo-section,
  .purchase-sales-section,
  .purchase-advice-section,
  .purchase-delivery-section,
  .purchase-after-service-section {
    padding: 60px 0;
  }
  
  .purchase-title {
    margin-bottom: 40px;
  }
  
  .purchase-title h2 {
    font-size: 28px;
  }
  
  .purchase-section-title {
    margin-bottom: 30px;
  }
  
  .purchase-section-title h3 {
    font-size: 22px;
  }
  
  .purchase-content,
  .purchase-photo-content,
  .purchase-sales-content,
  .purchase-advice-content,
  .purchase-delivery-content,
  .purchase-after-service-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .purchase-content-reverse {
    flex-direction: column;
  }
  
  .purchase-text p,
  .purchase-inspection-text p,
  .purchase-photo-text p,
  .purchase-sales-text p,
  .purchase-advice-text p,
  .purchase-delivery-text p,
  .purchase-after-service-text p {
    font-size: 15px;
    text-align: center;
  }
  
  .purchase-inspection-images {
    flex-direction: row;
    align-items: center;
  }
  
  .purchase-inspection-images img {
    width: 45%;
    max-width: 200px;
  }
  
  .purchase-inspection-images {
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .purchase-main-section,
  .purchase-inspection-section,
  .purchase-photo-section,
  .purchase-sales-section,
  .purchase-advice-section,
  .purchase-delivery-section,
  .purchase-after-service-section {
    padding: 40px 0;
  }
  
  .purchase-container {
    padding: 0 20px;
  }
  
  .purchase-title h2 {
    font-size: 24px;
  }
  
  .purchase-section-title h3 {
    font-size: 20px;
  }
  
  .purchase-text p,
  .purchase-inspection-text p,
  .purchase-photo-text p,
  .purchase-sales-text p,
  .purchase-advice-text p,
  .purchase-delivery-text p,
  .purchase-after-service-text p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .purchase-main-section,
  .purchase-inspection-section,
  .purchase-photo-section,
  .purchase-sales-section,
  .purchase-advice-section,
  .purchase-delivery-section,
  .purchase-after-service-section {
    padding: 30px 0;
  }
  
  .purchase-container {
    padding: 0 15px;
  }
  
  .purchase-title h2 {
    font-size: 20px;
  }
  
  .purchase-section-title h3 {
    font-size: 18px;
  }
  
  .purchase-text p,
  .purchase-inspection-text p,
  .purchase-photo-text p,
  .purchase-sales-text p,
  .purchase-advice-text p,
  .purchase-delivery-text p,
  .purchase-after-service-text p {
    font-size: 13px;
  }
  
  .purchase-image img,
  .purchase-photo-image img,
  .purchase-sales-image img,
  .purchase-advice-image img,
  .purchase-delivery-image img,
  .purchase-after-service-image img,
  .purchase-inspection-images img {
    border-radius: 6px;
  }
}

/* 仕入に賭ける3つのチカラセクション */
.purchase-powers-section {
  padding: 100px 0;
  background: linear-gradient(rgba(26, 26, 52, 0.9), rgba(26, 26, 52, 0.9)), url('../img/purchase_back_01.jpg');
  background-attachment: fixed;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
}

.purchase-powers-title {
  text-align: center;
  margin-bottom: 60px;
}

.purchase-powers-title h2 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: white;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.purchase-powers-intro {
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.purchase-powers-intro p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: #e8f4fd;
  margin-bottom: 20px;
}

.purchase-powers-intro p:last-child {
  margin-bottom: 0;
}

.purchase-powers-rules {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.purchase-rule {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
}

.purchase-rule-icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}

.purchase-rule-icon::before,
.purchase-rule-icon::after {
  content: '';
  position: absolute;
  background: #d4af37;
  top: 50%;
  left: 50%;
}

.purchase-rule-icon::before {
  width: 20px;
  height: 2px;
  transform: translate(-50%, -50%) rotate(45deg);
}

.purchase-rule-icon::after {
  width: 2px;
  height: 20px;
  transform: translate(-50%, -50%) rotate(45deg);
}

.purchase-rule p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin: 0;
}

.purchase-powers-philosophy {
  text-align: center;
  margin-bottom: 80px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.purchase-powers-philosophy p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: #e8f4fd;
  margin-bottom: 20px;
}

.purchase-powers-philosophy p:last-child {
  margin-bottom: 0;
}

.purchase-powers-cards {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.purchase-power-card {
  padding: 50px;
  position: relative;
  overflow: hidden;
}

.purchase-power-header {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 40px;
}

.purchase-power-number {
  color: white;
  font-family: 'Noto Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
}

.purchase-power-header h3 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: white;
  line-height: 1.4;
  margin: 0;
}

.purchase-power-content {
  margin-bottom: 40px;
}

.purchase-power-content p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #e8f4fd;
  margin-bottom: 20px;
}

.purchase-power-content p:last-child {
  margin-bottom: 0;
}

.purchase-power-examples {
  padding: 25px;
  margin: 25px 0;
}

.purchase-power-examples li {
  font-family: 'Noto Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #e8f4fd;
  margin-bottom: 10px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}

.purchase-power-examples li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #d4af37;
  border-radius: 50%;
}

.purchase-power-examples li:last-child {
  margin-bottom: 0;
}

.purchase-power-quote {
  color: white;
  padding: 30px;
  margin: 30px 0;
  text-align: center;
}

.purchase-power-quote p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  color: white;
  margin-bottom: 15px;
}

.purchase-power-quote p:last-child {
  margin-bottom: 0;
}

.purchase-power-story {
  padding: 25px;
  margin: 25px 0;
}

.purchase-power-story p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #e8f4fd;
  margin-bottom: 15px;
}

.purchase-power-story p:last-child {
  margin-bottom: 0;
}

.purchase-power-image {
  text-align: center;
}

.purchase-power-image img {
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: 4px;
}

/* レスポンシブ対応 */
@media (max-width: 1200px) {
  .purchase-powers-title h2 {
    font-size: 36px;
  }
  
  .purchase-powers-intro p {
    font-size: 17px;
  }
  
  .purchase-powers-philosophy p {
    font-size: 16px;
  }
  
  .purchase-power-card {
    padding: 40px;
  }
  
  .purchase-power-header h3 {
    font-size: 22px;
  }
}

@media (max-width: 900px) {
  .purchase-powers-section {
    padding: 80px 0;
  }
  
  .purchase-powers-title h2 {
    font-size: 32px;
  }
  
  .purchase-powers-intro {
    margin-bottom: 40px;
  }
  
  .purchase-powers-intro p {
    font-size: 16px;
  }
  
  .purchase-powers-rules {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .purchase-rule {
    width: 100%;
    max-width: 500px;
  }
  
  .purchase-powers-philosophy {
    margin-bottom: 60px;
  }
  
  .purchase-powers-philosophy p {
    font-size: 15px;
  }
  
  .purchase-powers-cards {
    gap: 50px;
  }
  
  .purchase-power-card {
    padding: 30px;
  }
  
  .purchase-power-header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .purchase-power-header h3 {
    font-size: 20px;
  }
  
  .purchase-power-content p {
    font-size: 15px;
  }
  
  .purchase-power-quote p {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .purchase-powers-section {
    padding: 60px 0;
  }
  
  .purchase-powers-title h2 {
    font-size: 28px;
  }
  
  .purchase-powers-intro p {
    font-size: 15px;
  }
  
  .purchase-powers-philosophy p {
    font-size: 14px;
  }
  
  .purchase-rule {
    padding: 15px 20px;
  }
  
  .purchase-rule p {
    font-size: 14px;
  }
  
  .purchase-power-card {
    padding: 25px;
  }
  
  .purchase-power-number {
    font-size: 20px;
  }
  
  .purchase-power-header h3 {
    font-size: 18px;
  }
  
  .purchase-power-content p {
    font-size: 14px;
  }
  
  .purchase-power-quote {
    padding: 20px;
  }
  
  .purchase-power-quote p {
    font-size: 15px;
  }
  
  .purchase-power-examples,
  .purchase-power-story {
    padding: 20px;
  }
  
  .purchase-power-examples li,
  .purchase-power-story p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .purchase-powers-title h2 {
    font-size: 24px;
  }
  
  .purchase-powers-intro p {
    font-size: 14px;
  }
  
  .purchase-powers-philosophy p {
    font-size: 13px;
  }
  
  .purchase-rule p {
    font-size: 13px;
  }
  
  .purchase-power-card {
    padding: 20px;
  }
  
  .purchase-power-header h3 {
    font-size: 16px;
  }
  
  .purchase-power-content p {
    font-size: 13px;
  }
  
  .purchase-power-quote p {
    font-size: 14px;
  }
  
  .purchase-power-examples li,
  .purchase-power-story p {
    font-size: 12px;
  }
}

/* 保証概要セクション */
.warranty-overview-section {
  padding: 40px 0;
}

.warranty-overview-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.warranty-overview-image {
  margin-bottom: 5px;
}

.warranty-overview-image img {
  max-width: 600px;
  width: 100%;
  height: auto;
}

.warranty-overview-text {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 10px;
}
.warranty-overview-text h2 {
  font-size: 2em;
   font-weight: 700;
  color: #ad7600;
  margin-bottom: 18px;
}

.warranty-overview-text p {
  font-size: 1em;
  line-height: 2.2;
  color: #333;
  margin: 10px 0;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 500;
  text-align: left;
}


.warranty-overview-additional-images {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.warranty-image-item {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.warranty-image-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* カスタム保証レイアウト */
.warranty-custom-layout {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  font-family: 'Noto Sans', sans-serif;
  margin-bottom: 50px;
}

.warranty-catch-section {
  width: 100%;
}

.warranty-catch-image {
  width: 100%;
  max-width: 680px;
  height: auto;
  display: block;
  padding: 40px 20px 0 20px;
  margin: 0 auto;
}

.warranty-exclusion-content {
  padding: 30px;
  color: #333;
}

.exclusion-main-title {
  font-size: 1em;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
  border-bottom: 1px solid #d4af37;
  border-top: 1px solid #d4af37;
  padding: 10px 0;
}

.exclusion-categories {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.exclusion-category {
  background: #f8f8f8;
  border-radius: 6px;
  padding: 20px;
}

.exclusion-category-title {
  font-size: 1em;
  font-weight: bold;
  color: #d4af37;
  margin-bottom: 10px;
}

.exclusion-category-list {
  font-size: 0.8em;
  line-height: 1.6;
  color: #333;
}

/* 保証画像セクション */
.warranty-images-section {
  padding: 100px 0;
  background: linear-gradient(rgba(15, 17, 26, 0.8), rgba(15, 17, 26, 0.8)), url('../img/warranty_back_02.png');
  background-attachment: fixed;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
}

.warranty-images-container {
  max-width: 890px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.warranty-images-container .warranty-image-item {
  width: 100%;
}

.warranty-images-container .warranty-image-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .warranty-overview-section {
    padding: 60px 0;
  }
  
  .warranty-overview-content {
    padding: 0 15px;
  }
  
  .warranty-overview-text p {
    font-size: 16px;
  }
  
  .warranty-overview-additional-images {
    margin-top: 30px;
    gap: 20px;
  }
  
  .warranty-image-item {
    max-width: 500px;
  }
  
  .warranty-images-section {
    padding: 60px 0;
  }
  
  .warranty-images-container {
    padding: 0 15px;
    gap: 15px;
  }
  
  .warranty-exclusion-content {
    padding: 20px;
  }
  .exclusion-category {
    padding: 15px;
  }
  .warranty-catch-image {
    padding: 20px 20px 0 20px;
  }
    
}

@media (max-width: 480px) {
  .warranty-overview-section {
    padding: 40px 0;
  }
  
  .warranty-overview-content {
    padding: 0 10px;
  }
  
  .warranty-overview-image {
    margin-bottom: 5px;
  }
  
  .warranty-overview-text p {
    font-size: 15px;
  }
  
  .warranty-overview-additional-images {
    margin-top: 25px;
    gap: 15px;
  }
  
  .warranty-image-item {
    max-width: 100%;
  }
  
  .warranty-images-section {
    padding: 40px 0;
  }
  
  .warranty-images-container {
    padding: 0 10px;
    gap: 10px;
  }
  
  .warranty-exclusion-content {
    padding: 15px;
  }
  
  .exclusion-category {
    padding: 12px;
  }
  .warranty-overview-text h2 {
    font-size: 1.5em;
  }
  .warranty-overview-text p {
    font-size: 0.9em;
  }
  
}

/* 保証プラン選択セクション */
.warranty-step2 {
  padding: 50px 0;
  background: #fff;
}

.warranty-step2-note {
  font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 1.3em;
  color: #1a1552;
  text-align: center;
  margin-bottom: 1.2em;
  letter-spacing: 0.02em;
}

.warranty-step2-badge {
  display: inline-block;
  background: #1a1552;
  color: #fff;
  font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 0.8em;
  border-radius: 0px;
  padding: 0.1em 0.5em;
  margin-right: 0.5em;
  letter-spacing: 0.04em;
  vertical-align: middle;
}

.warranty-step-title {
  text-align: center;
  margin-bottom: 30px;
  padding: 0 10px;
}

.warranty-step-label {
  display: inline-block;
  margin-bottom: 10px;
}

.warranty-step-label span {
  background: #1a1552;
  color: #fff;
  font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 0.9em;
  border-radius: 0px;
  padding: 0.3em 0.8em;
  letter-spacing: 0.04em;
}

.warranty-step-text {
  font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 1.8em;
  color: #1a1552;
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: 0.3em;
}

.warranty-step-subtitle {
  font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 1.3em;
  color: #1a1552;
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: 0.5em;
}

.warranty-step-description {
  font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 1.1em;
  color: #ad7600;
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: 0.5em;
}

.warranty-plan-table-wrap {
  max-width: 860px;
  margin: 0 auto 40px auto;
  padding: 0 20px;
}

.warranty-plan-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
  font-size: 0.9em;
  color: #222;
}

.warranty-plan-table th,
.warranty-plan-table td {
  border: 1px solid #ddd;
  padding: 12px 8px;
  text-align: center;
  vertical-align: middle;
}

.warranty-plan-table th {
  background: #f8f9fa;
  font-weight: 700;
  color: #1a1552;
}

.warranty-plan-table th.plan-bronze {
  background: #b97a3a;
  color: #fff;
}

.warranty-plan-table th.plan-silver {
  background: #bdbdbd;
  color: #222;
}

.warranty-plan-table th.plan-gold {
  background: #c9a13a;
  color: #fff;
}

.warranty-plan-table th.plan-platinum {
  background: #3f6be4;
  color: #fff;
}

.warranty-plan-table th.plan-free {
  background: #fff;
  color: #ad7600;
  font-weight: 700;
  font-size: 1em;
  padding: 8px 4px;
  border-bottom: 1px solid #ddd;
}

.warranty-plan-table th.plan-paid {
  background: #fff;
  color: #c99400;
  font-weight: 700;
  font-size: 1em;
  padding: 8px 4px;
  border-bottom: 1px solid #ddd;
}

.warranty-plan-table td {
  background: #fff;
}

.plan-num {
  font-size: 1.5em;
  font-weight: 700;
  color: #1a1552;
}

.plan-label {
  background: #f8f9fa !important;
  font-weight: 700;
  color: #1a1552;
  text-align: left;
}

.plan-bold {
  font-weight: 700;
  color: #1a1552;
}

.plan-strong {
  font-weight: 900;
  color: #d4af37;
}

.plan-note {
  font-size: 0.8em;
  color: #666;
  font-weight: 400;
}

.warranty-parts-btn-wrap {
  text-align: center;
  margin-bottom: 40px;
}

.warranty-parts-btn {
  display: inline-block;
  background: #ba9435;
  color: white;
  text-decoration: none;
  padding: 20px 60px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 0;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  min-width: 380px;
  font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
}

.warranty-parts-btn:hover {
  background: #d4af37;
}

.warranty-parts-btn-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  transition: transform 0.3s;
}

.warranty-parts-btn:hover .warranty-parts-btn-icon,
.warranty-parts-btn:focus .warranty-parts-btn-icon {
  transform: scale(1.1);
}

.warranty-bottom-info {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 860px;
  padding: 0 0em 2.5em 0em;
  margin: 0em auto 0 auto;
  font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
}

.warranty-bottom-info-left {
  text-align: center;
  font-size: 0.8em;
  color: #181940;
  line-height: 2.1;
  letter-spacing: 0.02em;
  max-width: 600px;
}



/* ご利用に際しての主なご注意事項 */
.warranty-caution-section {
  background: #fff;
  border-radius: 8px;
  max-width: 860px;
  width: calc(100% - 48px);
  margin: 48px auto 28px auto;
  padding: 32px 24px 28px 24px;
  font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
  font-size: 0.8em;
  border: 1.5px solid #e1e1e1;
}

.warranty-caution-title {
  font-size: 1.3em;
  font-weight: 900;
  color: #18125c;
  display: flex;
  align-items: center;
  margin-bottom: 1.2em;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #18125c;
  padding-bottom: 0.3em;
}

.caution-title-icon {
  display: inline-block;
  width: 0.5em;
  height: 1.1em;
  background: #18125c;
  border-radius: 0px;
  margin-right: 0.6em;
}

.warranty-caution-main {
  width: 100%;
}

.warranty-caution-list {
  margin-bottom: 2.2em;
  padding-left: 0;
  font-size: 1em;
  color: #222;
  line-height: 2.1;
  letter-spacing: 0.01em;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.2em 2.5em;
}

.warranty-caution-list li {
  margin-bottom: 0.2em;
  position: relative;
  padding-left: 1.2em;
  list-style: none;
}

.caution-note {
  font-size: 1em;
  color: #18125c;
  font-weight: 400;
  margin-left: 0.2em;
  padding-left: 1.2em;
  display: block;
  line-height: 2.1;
  position: relative;
}

.warranty-caution-columns {
  display: flex;
  gap: 18px;
  width: 100%;
}

.warranty-caution-col {
  background: #f7f7fb;
  border-radius: 8px;
  border: 1.5px solid #e1e1e1;
  flex: 1 1 0;
  padding: 18px 14px 14px 14px;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.caution-col-title {
  background: #e9e9f3;
  color: #18125c;
  font-size: 1em;
  font-weight: 700;
  border-radius: 6px;
  padding: 0.5em 1em;
  margin-bottom: 1em;
  letter-spacing: 0.02em;
}

.caution-col-list {
  font-size: 1em;
  color: #222;
  line-height: 2.0;
  padding-left: 0.8em;
}

.caution-col-list li {
  margin-bottom: 0.2em;
  list-style: disc inside;
  padding-left: 0.2em;
  list-style: none;
  padding-left: 0;
}

.caution-col-list li:before {
  display: none;
}

.caution-col-list-head {
  font-weight: bold;
}

/* アコーディオン */
.accordion-toggle {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center;
  font-size: 1.3em;
  font-weight: 900;
  color: #18125c;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #18125c;
  padding-bottom: 0.5em;
  padding-left: 10px;
  padding-right: 0;
  position: relative;
  transition: background 0.2s;
}

.accordion-arrow {
  margin-left: auto;
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.3s;
}

.accordion-arrow:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #18125c;
  transform: translate(-50%, -50%);
  transition: transform 0.3s;
}

.accordion-toggle[aria-expanded="true"] .accordion-arrow:after {
  transform: translate(-50%, -50%) rotate(180deg);
}

.accordion-content {
  overflow: hidden;
  transition: max-height 0.3s ease;
}

/* ロードサービス */
.warranty-roadservice {
  padding: 48px 0 40px 0;
  text-align: center;
  font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
  margin-top: 0;
  background: #f7f7fb;
}

.warranty-roadservice-labels {
  display: flex;
  justify-content: center;
  gap: 0.5em;
  margin-bottom: 1.5em;
}

.road-label {
  background: #18125c;
  color: #fff;
  font-weight: 700;
  font-size: 1.2em;
  border-radius: 20px 0 0 20px;
  padding: 0.3em 1.5em 0.25em 1.5em;
  letter-spacing: 0.04em;
  display: inline-block;
  white-space: nowrap;
}

.road-label-free {
  background: #6ea6d7;
  color: #fff;
  border-radius: 0 20px 20px 0;
  font-size: 1.2em;
  font-weight: 700;
  padding: 0.3em 1.5em 0.25em 1.5em;
  margin-left: -4px;
  white-space: nowrap;
}

.warranty-roadservice-desc-main {
  font-size: 1.1em;
  font-weight: 700;
  color: #18125c;
  margin-bottom: 0.7em;
  letter-spacing: 0.01em;
}

.roadservice-24h {
  font-size: 0.9em;
  font-weight: 900;
  color: #18125c;
  letter-spacing: 0.04em;
}

.warranty-roadservice-title-main {
  font-size: 2.2em;
  font-weight: 900;
  color: #18125c;
  margin-bottom: 1.2em;
  letter-spacing: 0.04em;
}

.warranty-roadservice-list {
  display: flex;
  justify-content: center;
  gap:  20px;
  margin: 0 auto 2.2em auto;
  max-width: 1200px;
  flex-wrap: wrap;
}

.roadservice-item {
  background: #fff;
  border: 2px solid #cbe2f7;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 18px 18px 10px 18px;
  min-width: 150px;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.5em;
}

.roadservice-icon img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin-bottom: 0.7em;
}

.roadservice-item-title {
  font-size: 0.9em;
  font-weight: 700;
  color: #18125c;
  margin-bottom: 0.2em;
  line-height: 1.2;
}

.roadservice-item-desc {
  font-size: 0.6em;
  color: #222;
  font-weight: 600;
  margin-top: 0.1em;
}

.warranty-roadservice-tel-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0em auto 1.2em auto;
  font-size: 2.3em;
  font-weight: 900;
  color: #18125c;
  letter-spacing: 0.04em;
}

.road-tel-label {
  background: #18125c;
  color: #fff;
  font-size: 0.8em;
  font-weight: 500;
  border-radius: 0px;
  padding: 0.1em 0.7em 0.3em 0.7em;
  margin-right: 0.2em;
  margin-top: 0.6em;
  line-height: 1.2;
  display: inline-block;
  font-family: "gravita-geo-variable", "Noto Serif JP", serif, sans-serif;
}

.road-tel-num {
  font-size: 1.6em;
  font-weight: 500;
  color: #18125c;
  margin-left: 0.1em;
  font-family: "gravita-geo-variable", "Noto Serif JP", serif, sans-serif;
}

.warranty-roadservice-notes {
  margin: 1.5em auto 0 auto;
  max-width: 700px;
  font-size: 0.8em;
  color: #222;
  text-align: left;
  line-height: 2.1;
  letter-spacing: 0.01em;
  border-top: 1px solid #E1E1E1;
  border-bottom: 1px solid #E1E1E1;
  padding: 1.5em 1em;
}

.warranty-roadservice-notes div {
  margin-bottom: 0.2em;
}

/* レスポンシブ対応 */
@media (max-width: 900px) {
  .warranty-plan-table-wrap {
    padding: 0 10px;
  }
  
  .warranty-plan-table th, .warranty-plan-table td {
    padding: 8px 4px;
    font-size: 0.8em;
  }
  
  .plan-num {
    font-size: 1.2em;
  }
  
  .warranty-caution-section {
    padding: 12px 2vw 12px 2vw;
    max-width: 99vw;
  }
  
  .warranty-caution-columns {
    flex-direction: column;
    gap: 12px;
  }
  
  .warranty-roadservice-list {
    gap: 12px;
  }
  
  .roadservice-item {
    min-width: 90px;
    max-width: 120px;
    padding: 10px 6px 8px 6px;
  }
  
  .roadservice-icon img {
    width: 38px;
    height: 38px;
  }
  
  .warranty-roadservice-tel-wrap {
    font-size: 1.3em;
  }
  
  .warranty-roadservice-title-main {
    font-size: 1.3em;
  }
}

@media (max-width: 768px) {
  .warranty-parts-btn {
    padding: 18px 50px;
    font-size: 16px;
    min-width: 280px;
  }
  .warranty-step-text {
    font-size: 1.1em;
  }
  
  .warranty-step-subtitle {
    font-size: 1.3em;
  }
  
  .warranty-step-description {
    font-size: 0.8em;
  }
  
}

@media (max-width: 700px) {
  .warranty-bottom-info {
    max-width: 98vw;
    padding: 0 2vw;
  }
  
  .warranty-bottom-info-left {
    max-width: 100%;
  }
  
  .warranty-caution-list {
    display: block;
  }
}

@media (max-width: 480px) {
  .warranty-parts-btn {
    padding: 16px 40px;
    font-size: 15px;
    min-width: 240px;
  }
}

@media (max-width: 480px) {
  .road-label {
    font-size: 1em;
  }
}

.warranty-parts-list {
  padding: 30px 30px;
  text-align: left;
}

.warranty-parts-title {
  font-size: 1em;
  font-weight: bold;
  color: #fff;
  margin-bottom: 18px;
  text-align: center;
  border-bottom: 1px solid #d4af37;
  border-top: 1px solid #d4af37;
  padding: 10px 0;
}

.warranty-parts-section {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 32px;
  justify-content: center;
}

.warranty-parts-section-title {
  font-size: 1em;
  font-weight: bold;
  color: #d4af37;
  margin-top: 18px;
  margin-bottom: 8px;
  border-left: 3px solid #d4af37;
  padding-left: 8px;
  background: none;
  list-style: none;
}

.warranty-parts-section-title::before {
  content: none;
}



/* アコーディオン用スタイル */
.warranty-parts-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.warranty-parts-accordion-item {
  border: 1px solid #d4af37;
  border-radius: 6px;
  overflow: hidden;
}

.warranty-parts-accordion-toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #fff;
  font-family: 'Noto Sans', sans-serif;
  transition: background-color 0.3s ease;
}

.warranty-parts-accordion-toggle:hover {
  background-color: rgba(212, 175, 55, 0.1);
}

.warranty-parts-accordion-toggle .warranty-parts-section-title {
  font-size: 1em;
  font-weight: bold;
  color: #333;
  margin: 0;
  border: none;
  padding: 0;
  background: none;
}

.warranty-parts-accordion-content {
  padding: 0 20px 20px 20px;
  background-color: rgba(255, 255, 255, 0.05);
}

.warranty-parts-accordion-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.warranty-parts-accordion-content ul li {
  font-size: 0.8em;
  color: #333;
  margin-bottom: 4px;
  padding-left: 16px;
  position: relative;
}

.warranty-parts-accordion-content ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #d4af37;
  font-size: 1em;
}

/* スマホでは縦並び */
@media (max-width: 768px) {
  .warranty-parts-section {
    flex-direction: column;
    gap: 18px;
  }
  .warranty-parts-col {
    max-width: 100%;
    min-width: 0;
  }
}

/* --- お問い合わせフォーム（company.htmlカラー準拠）--- */
.contact-main {
  max-width: 740px;
  margin: 0 auto 48px auto;
  padding: 12px 0 40px 0;
  background: #fff;
}
.contact-form-title {
  background: #1b144c;
  color: #fff;
  padding: 10px 0 10px 0;
  margin: 0 auto 32px auto;
  text-align: center;
  letter-spacing: 0.04em;
  font-size: 1em;
  font-weight: 700;
  border-radius: 0;
  max-width: 300px;
}
.contact-form {
  width: 100%;
  padding: 20px 20px 0 20px;
}
.form-group {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
  font-size: 1.em;
  letter-spacing: 0.01em;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #dadada;
  font-size: 1em;
  background: #fafafa;
  color: #222;
  font-family: 'Noto Sans', 'Meiryo', 'メイリオ', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'Osaka', 'MS PGothic', 'MS Pゴシック', sans-serif;
  transition: border 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group select:focus,
.form-group textarea:focus {
  border: 1.5px solid #1b144c;
  outline: none;
  background: #fff;
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.form-group.form-confirm {
  flex-direction: row;
  align-items: center;
  margin-bottom: 28px;
}
.form-group.form-confirm label {
  font-weight: 500;
  color: #222;
  margin-bottom: 0;
  font-size: 1em;
}
.contact-submit-btn {
  display: block;
  width: auto;
  max-width: 680px;
  margin: 10px auto 0 auto;
  background: #ba9435;
  color: #fff;
  padding: 14px 30px 16px 30px;
  border-radius: 4px;
  font-size: 0.9em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  letter-spacing: 0.04em;
  box-shadow: none;
  cursor: pointer;
}
.contact-submit-btn:hover,
.contact-submit-btn:focus {
  background: #d4af37;
  color: #fff;
}
.contact-access-link {
  text-align: center;
  margin-top: 36px;
}
.contact-access-link .access-link-btn {
  background: #ba9c35;
  color: #fff;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 24px;
  text-decoration: none;
  font-size: 1em;
  box-shadow: 0 2px 8px rgba(186,156,53,0.13);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.contact-access-link .access-link-btn:hover,
.contact-access-link .access-link-btn:focus {
  background: #3f6be4;
  color: #fff;
  box-shadow: 0 4px 16px rgba(63,107,228,0.13);
}
.form-group label .required-badge {
  display: inline-block;
  background: #e53935;
  color: #fff;
  font-size: 0.7em;
  font-weight: 700;
  border-radius: 4px;
  padding: 1px 8px;
  margin-right: 6px;
  vertical-align: middle;
  letter-spacing: 0.08em;
}
@media (max-width: 700px) {
  .contact-main {
    max-width: 98vw;
    padding: 12px 0 24px 0;
  }
  .contact-form-title {
    font-size: 1.1em;
    margin-bottom: 18px;
  }
  .form-group label {
    font-size: 0.98em;
  }
  .contact-access-link {
    margin-top: 18px;
  }
}

/* 在庫一覧ページ完全再現用（PC版） */
.stock-main {
  max-width: 1200px;
  margin: 40px auto 60px auto;
  padding: 0;
  font-family: "Noto Sans", "Meiryo", "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Osaka", "MS PGothic", "MS Pゴシック", sans-serif !important;
}
.stock-title {
  text-align: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 32px;
  letter-spacing: 0.04em;
  font-family: "Noto Sans", "Meiryo", "メイリオ", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "MS PGothic", "MS Pゴシック", sans-serif;
}
.stock-header-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 32px;
  margin-bottom: 18px;
  font-size: 1.08em;
  font-family: "Noto Sans", "Meiryo", "メイリオ", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "MS PGothic", "MS Pゴシック", sans-serif;
}
.stock-count {
  color: #222;
}
.stock-toggle {
  color: #2836d7;
  font-weight: normal;
}
.stock-toggle-link {
  color: #2836d7;
  text-decoration: underline;
  font-weight: normal;
  font-size: 1em;
}
.stock-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.stock-item {
  display: flex;
  background: #fff;
  border-radius: 0px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  min-height: 210px;
}
.stock-img-wrap {
  flex: 0 0 320px;
  max-width: 320px;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #e0e0e0;
}
.stock-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
}
.stock-detail-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 32px 18px 32px;
}
.stock-row {
  display: block;
  width: 100%;
}
.stock-name-row {
  width: 100%;
  font-size: 1em;
  font-weight: bold;
  color: #353fb3;
  margin-bottom: 2px;
  letter-spacing: 0.01em;
  line-height: 1.4;
  font-family: "Noto Sans", "Meiryo", "メイリオ", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "MS PGothic", "MS Pゴシック", sans-serif;
}
.stock-desc-row {
  width: 100%;
  color: #222;
  font-size: 0.9em;
  margin-bottom: 8px;
  line-height: 1.6;
  font-family: "Noto Sans", "Meiryo", "メイリオ", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "MS PGothic", "MS Pゴシック", sans-serif;
}
.stock-info-row {
  margin-top: 8px;
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
.stock-price-col {
  min-width: 140px;
  margin-right: 32px;
}
.stock-price-label {
  color: #222;
  font-size: 0.98em;
  margin-bottom: 2px;
  font-family: "Noto Sans", "Meiryo", "メイリオ", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "MS PGothic", "MS Pゴシック", sans-serif;
}
.stock-price-num {
  font-size: 2em;
  font-weight: bold;
  color: #222;
  letter-spacing: 0.04em;
  font-family: "Noto Sans", "Meiryo", "メイリオ", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "MS PGothic", "MS Pゴシック", sans-serif;
}
.stock-plan-col {
  min-width: 140px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-right: 32px;
  width: 180px;
}
.stock-plan {
  background: #2f365d;
  color: #fff;
  font-size: 1em;
  border-radius: 2px;
  padding: 2px 0;
  font-weight: normal;
  width: 100%;
  text-align: center;
  margin-bottom: 2px;
  box-sizing: border-box;
  font-family: "Noto Sans", "Meiryo", "メイリオ", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "MS PGothic", "MS Pゴシック", sans-serif;
}
.stock-table-col {
  min-width: 220px;
  text-align: right;
}
.stock-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.98em;
  font-family: "Noto Sans", "Meiryo", "メイリオ", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "MS PGothic", "MS Pゴシック", sans-serif;
}
.stock-table th, .stock-table td {
  border: 1px solid #e0e0e0;
  padding: 4px 12px;
  text-align: left;
  font-weight: normal;
  background: #f7f7f7;
  font-size: 0.8em;
  font-family: "Noto Sans", "Meiryo", "メイリオ", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "MS PGothic", "MS Pゴシック", sans-serif;
}
.stock-table th {
  color: #222;
  font-weight: normal;
}
.stock-table td {
  background: #fff;
  color: #222;
}
.stock-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: 48px 0 0 0;
  background: #f7f7f7;
  border-radius: 6px;
  padding: 32px 0 32px 0;
  border: 1px solid #e0e0e0;
}
.stock-page {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  font-size: 0.8em;
  color: #2a3faa;
  background: #fff;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  border: 1px solid #bcbcbc;
  font-weight: normal;
  margin: 0 2px;
  transition: background 0.2s, color 0.2s, border 0.2s;
  box-sizing: border-box;
  font-family: "Noto Sans", "Meiryo", "メイリオ", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "MS PGothic", "MS Pゴシック", sans-serif;
}
.stock-page.current {
  background: #e6eaf6;
  color: #2a3faa;
  border-color: #2a3faa;
}
.stock-page:hover:not(.current) {
  background: #e6eaf6;
  color: #2a3faa;
  border-color: #2a3faa;
}
.stock-page.next {
  font-weight: bold;
  font-size: 1em;
}
.stock-page:visited {
  color: #2a3faa;
}
.stock-pagination .stock-page {
  min-width: 36px;
  min-height: 36px;
}
.stock-pagination .stock-page:last-child {
  margin-right: 0;
}
.stock-pagination .stock-page:first-child {
  margin-left: 0;
}
.stock-pagination .stock-page:not(.current):not(:hover) {
  background: #fff;
  color: #2a3faa;
  border-color: #bcbcbc;
}
.stock-pagination .stock-page span, .stock-pagination .stock-page {
  font-family: inherit;
}
.stock-pagination .stock-page:not([href]) {
  background: #f7f7f7;
  color: #bcbcbc;
  border: none;
  cursor: default;
  pointer-events: none;
}

@media (max-width: 700px) {
  .stock-main {
    max-width: 100vw;
    padding: 0 20px;
  }
  .stock-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 16px;
    padding-left: 16px;
  }
  .stock-list {
    gap: 20px;
    padding: 0 0;
  }
  .stock-item {
    flex-direction: column;
    min-height: unset;
    margin: 0 6px;
    box-shadow: none;
  }
  .stock-img-wrap {
    max-width: 100%;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 0;
  }
  .stock-img {
    width: 100%;
    height: auto;
    border-radius: 0;
  }
  .stock-detail-box {
    padding: 18px 8px 18px 8px;
  }
  .stock-name-row {
    font-size: 1.05em;
    margin-bottom: 4px;
    word-break: break-all;
    line-height: 1.5;
  }
  .stock-desc-row {
    font-size: 0.97em;
    margin-bottom: 10px;
    line-height: 1.7;
  }
  .stock-info-row {
    flex-direction: column;
    gap: 0;
    margin-top: 10px;
  }
  .stock-price-col {
    min-width: unset;
    margin-right: 0;
    margin-bottom: 8px;
  }
  .stock-price-label {
    font-size: 0.97em;
    margin-bottom: 2px;
  }
  .stock-price-num {
    font-size: 2em;
    font-weight: bold;
    color: #222;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
  }
  .stock-plan-col {
    min-width: unset;
    margin-right: 0;
    margin-bottom: 8px;
    width: 100%;
  }
  .stock-plan {
    text-align: left;
    padding: 8px 0 8px 12px;
    border-radius: 0;
    font-size: 1em;
    margin-bottom: 2px;
  }
  .stock-table-col {
    min-width: unset;
    width: 100%;
    margin-top: 0;
  }
  .stock-table {
    width: 100%;
    overflow: hidden;
    margin-top: 0;
  }
  .stock-table th {
    background: #f7f7f7;
    color: #222;
    font-weight: normal;
    width: 80px;
    padding: 8px 8px;
    border-radius: 0;
    text-align: left;
  }
  .stock-table td {
    background: #fff;
    color: #222;
    padding: 8px 8px;
    border-radius: 0;
    text-align: left;
  }
}

/* ブランドヘッダー */
.car-brand-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.car-title-section {
  margin: 60px 0 ; 
}

.brand-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.brand-name {
  font-size: 2em;
  font-weight: bold;
  color: #222;
  margin: 0;
  font-family: "Noto Sans", "Meiryo", "メイリオ", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "MS PGothic", "MS Pゴシック", sans-serif;
}
.car-details-text {
  font-size: 1em;
  line-height: 1.5;
}


@media (max-width: 700px) {
  /* ブランドヘッダー（モバイル） */
  .car-brand-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
  }

  .car-title-section {
    margin: 30px 0 ; 
  }
  
  .brand-logo {
    height: 35px;
  }
  
  .brand-name {
    font-size: 1.3em;
  }
  
  .car-details-text {
    font-size: 0.9em;
    line-height: 1.5;
  }
  
  /* 画像・スペック並列エリア（モバイル） */
  .car-content-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  
  .car-images-section {
    flex: none;
    margin-bottom: 0;
  }
  
  .car-specs-section {
    flex: none;
    margin-bottom: 0;
  }
}

/* 画像・スペック並列エリア */
.car-content-wrapper {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
}

/* メイン画像・サブ画像 */
.car-images-section {
  flex: 1;
  margin-bottom: 0;
}

/* 主要スペック */
.car-specs-section {
  flex: 0 0 400px;
  margin-bottom: 0;
}

/* 車両スペックテーブル1列表示 */
.car-specs-section .car-specs-table {
  width: 100% !important;
  border-collapse: collapse !important;
  background: #fff !important;
  border: 1px solid #999 !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  margin-top: 0 !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
}

.car-specs-section .car-specs-table th,
.car-specs-section .car-specs-table td {
  padding: 8px 20px !important;
  text-align: left !important;
  border: 1px solid #ddd !important;
  vertical-align: top !important;
}

.car-specs-section .car-specs-table th {
  background: #f8f8f8 !important;
  font-weight: bold !important;
  color: #333 !important;
  width: 30% !important;
  min-width: 120px !important;
  font-size: 0.9em !important;
  font-family: "Noto Sans", "Meiryo", "メイリオ", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "MS PGothic", "MS Pゴシック", sans-serif !important;
}

.car-specs-section .car-specs-table td {
  color: #555 !important;
  width: 70% !important;
  font-size: 0.9em !important;
  font-family: "Noto Sans", "Meiryo", "メイリオ", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "MS PGothic", "MS Pゴシック", sans-serif !important;
}

/* Stock Detail Page Complete Styles */
.stock-detail-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 20px 0px 20px;
  font-family: Meiryo, "メイリオ", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "MS PGothic", "MS Pゴシック", sans-serif;
}

.car-title {
  font-size: 1em;
  font-weight: bold;
  color: #222;
  margin: 0 0 20px 0;
  line-height: 1.4;
}

/* ブランドヘッダー */
.car-brand-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.brand-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}


/* 画像・スペック並列エリア */
.car-content-wrapper {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
}

/* メイン画像・サブ画像 */
.car-images-section {
  flex: 1;
  margin-bottom: 0;
}

/* 右側のスペック・装備エリア */
.car-specs-section {
  flex: 0 0 500px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 0;
}

.car-main-image {
  margin-bottom: 20px;
}

.main-image-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 800px;
}

.main-car-img {
  width: 100%;
  height: auto;
  border-radius: 0px;
  display: block;
}

.car-images-section .gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.2);
  color: #fff !important;
  border: none;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  z-index: 15;
}



.car-images-section .gallery-prev {
  left: 3px;
}

.car-images-section .gallery-next {
  right: 3px;
}

.car-sub-images {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 0px;
}

.sub-image-item {
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.sub-image-item:hover {
  transform: scale(1.05);
}

.sub-image-item.active {
}

.sub-car-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0px;
}

/* 主要スペック */
.car-specs-section {
  margin-bottom: 50px;
}

.specs-title {
  font-size: 0.8em;
  font-weight: bold;
  color: #222;
  margin: 0 0 25px 0;
  padding-bottom: 10px;
  border-bottom: 3px solid #ba9c35;
}

.specs-table {
  overflow-x: auto;
}

/* 主要装備 */
.car-equipment-section {
  margin-bottom: 0;
}

.equipment-title {
  font-size: 0.8em;
  font-weight: bold;
  color: #222;
  margin: 0 0 25px 0;
  padding-bottom: 10px;
  border-bottom: 3px solid #ba9c35;
}

.equipment-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.equipment-item {
  display: flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 4px;
  font-size: 0.9em;
}

.equipment-item.active {
  background-color: rgba(255, 182, 193, 0.3); /* 薄い赤色 */
  color: #9e1616;
}

.equipment-item.inactive {
  background-color: #f0f0f0; /* 灰色 */
  color: #6c757d;
}

.equipment-label {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 500;
  font-size: 0.9em;
}

/* 在庫コメント */
.car-comment-section {
  background: #f5f5f5;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 60px 0;
  margin-bottom: 50px;
}

.comment-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.comment-header {
  text-align: center;
  margin-bottom: 40px;
}

.comment-title {
  font-size: 2em;
  font-weight: bold;
  color: #222;
  margin: 0 0 10px 0;
  font-family: 'Noto Sans', sans-serif;
}

.comment-subtitle {
  font-size: 1.2em;
  font-weight: 600;
  color: #ba9c35;
  margin: 0;
  font-family: 'Noto Sans', sans-serif;
  letter-spacing: 0.1em;
}

.comment-content-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.comment-image {
  flex: 1;
}

.comment-car-img {
  width: 100%;
  height: auto;
}

.comment-content {
  flex: 1;
  line-height: 1.8;
  position: relative;
}

.comment-text {
  max-height: 450px;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.comment-text.expanded {
  max-height: none;
}

.comment-content p {
  margin: 0 0 20px 0;
  color: #333;
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.9em;
}

.read-more-btn {
  display: block;
  background: #ba9435;
  color: #fff;
  border: none;
  padding: 14px 75px 16px 75px;
  border-radius: 4px;
  font-size: 0.9em;
  font-weight: bold;
  font-family: 'Noto Sans', sans-serif;
  cursor: pointer;
  margin: 20px auto 0 auto;
  transition: all 0.3s ease;
  text-decoration: none;
}

.read-more-btn:hover {
  background: #d4af37;
  transform: scale(1.02);
}

.read-more-btn.hidden {
  display: none;
}

.comment-content p:last-child {
  margin-bottom: 0;
}

.comment-content strong {
  color: #ba9c35;
  font-weight: bold;
}

/* 料金プラン */
.price-plan-section {
  margin-bottom: 50px;
}

.price-plan-header {
  text-align: center;
  margin-bottom: 40px;
}

.price-plan-title {
  font-size: 2em;
  font-weight: bold;
  color: #222;
  margin: 0 0 10px 0;
  font-family: 'Noto Sans', sans-serif;
}

.price-plan-subtitle {
  font-size: 1.2em;
  font-weight: 600;
  color: #ba9c35;
  margin: 0;
  font-family: 'Noto Sans', sans-serif;
  letter-spacing: 0.1em;
}

.price-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}

.price-plan-item {
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 0px;
  padding: 25px;
}

.light-plan {
  border-color: #808080;
}

.basic-plan {
  border-color: #26265c;
}

.warranty-plan {
  border-color: #d4af37;
}

.plan-name {
  font-size: 1.3em;
  font-weight: bold;
  color: #222;
  margin: 0 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #eee;
}

.light-plan .plan-name {
  color: #5e5d5d;
}

.basic-plan .plan-name {
  color: #354567;
}

.warranty-plan .plan-name {
  color: #d0a518;
}

.plan-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.plan-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.plan-label {
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  padding: 12px 16px;
  text-align: center;
  font-size: 0.9em;
  font-weight: 500;
  color: #333;
  font-family: 'Noto Sans', sans-serif;
}

.plan-label-red {
  background: #fce3e7 !important;
  border-color: #f8bbd9 !important;
  color: #c62828 !important;
}

.plan-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-top: 2px solid #eee;
  border-bottom: 2px solid #eee;
}

.total-label {
  font-weight: bold;
  color: #333;
  font-size: 1em;
}

.total-price {
  font-weight: bold;
  color: #333;
  font-size: 1.2em;
}

.plan-base-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 0;
  margin-top: 20px;
}

.base-price-label {
  font-weight: bold;
  color: #333;
  font-size: 0.9em;
  font-family: 'Noto Sans', sans-serif;
}

.base-price {
  color: #333;
  font-weight: bold;
  font-size: 0.9em;
  font-family: 'Noto Sans', sans-serif;
}

.plan-description {
  color: #333;
  line-height: 1.6;
  font-size: 0.9em;
  font-weight: normal;
  font-family: 'Noto Sans', sans-serif;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 6px;
}

.plan-description a {
  color: #ba9c35;
  text-decoration: underline;
}

.plan-description a:hover {
  color: #d4af37;
}

.warranty-plan .plan-description {
  color: #333 !important;
  line-height: 1.6 !important;
  font-size: 0.9em !important;
  font-weight: normal !important;
  font-family: 'Noto Sans', sans-serif !important;
  padding: 15px !important;
  background: #f9f9f9 !important;
  border-radius: 6px !important;
}

.plan-description-note {
  color: #d63349 !important;
}

.price-note {
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 20px;
  color: #333;
}

.price-note p {
  margin: 0 0 10px 0;
  line-height: 1.6;
  font-size: 0.9em;
}

/* お問い合わせセクション */
.inquiry-section {
  background: #e8e8e8 !important;
  background-color: #e8e8e8 !important;
  padding: 60px 0 !important;
  margin: 50px 0 0 0 !important;
  width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  box-sizing: border-box !important;
  min-height: 400px !important;
}

.inquiry-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: row-reverse;
  gap: 90px;
  align-items: center;
}

.inquiry-slider {
  flex: 1;
  max-width: 470px;
}

.inquiry-swiper {
  overflow: hidden;
}

/* inquiry-swiperのナビゲーション白色スタイル */
.inquiry-swiper .swiper-button-prev,
.inquiry-swiper .swiper-button-next {
  color: #fff !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
}


.inquiry-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5) !important;
  opacity: 1 !important;
}

.inquiry-swiper .swiper-pagination-bullet-active {
  background: #fff !important;
}

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

.inquiry-content {
  flex: 1;
  max-width: 600px;
}

.inquiry-text {
  margin-bottom: 50px;
}

.inquiry-text p {
  margin: 0 10px 15px 10px;
  font-size: 1em;
  line-height: 1.8;
  color: #333;
  font-family: 'Noto Sans', sans-serif;
}

.inquiry-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-phone {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.phone-icon {
  max-height: 20px;
  width: auto;
  margin-right: 8px;
  vertical-align: middle;
}

.phone-info {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
}

.phone-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.phone-number {
  font-size: 1.4em;
  font-weight: bold;
  color: #333;
  font-family: 'Noto Sans', sans-serif;
  display: flex;
  align-items: center;
}

.phone-hours {
  font-size: 0.7em;
  color: #666;
  font-family: 'Noto Sans', sans-serif;
}

.contact-line {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

.line-icon {
  max-height: 60px;
  width: auto;
  flex-shrink: 0;
}

.contact-button {
  text-align: center;
}

.inquiry-btn {
  display: inline-block;
  background: #ba9435;
  color: #fff;
  text-decoration: none;
  padding: 16px 80px;
  border-radius: 4px;
  font-size: 1.1em;
  font-weight: bold;
  font-family: 'Noto Sans', sans-serif;
  transition: all 0.3s ease;
}

.inquiry-btn:hover {
  background: #d4af37;
  transform: scale(1.02);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .inquiry-section {
    padding: 40px 0 !important;
    background: #f5f5f5 !important;
  }
  
  .inquiry-container {
    flex-direction: column;
    gap: 40px;
    padding: 0 15px;
  }
  
  .inquiry-slider {
    max-width: 100%;
  }
  
  
  .inquiry-content {
    max-width: 100%;
  }
  
  .inquiry-text p {
    font-size: 0.9em;
  }
  
  .contact-phone {
    padding: 15px;
  }
  
  .phone-info {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  
  .phone-content {
    text-align: center;
  }
  
  .line-icon {
    align-self: center;
    margin: 0 auto;
    display: block;
    max-height: 60px;
  }
  
  .phone-number {
    font-size: 1.2em;
    justify-content: center;
  }
  
  .phone-hours {
    font-size: 0.7em;
    text-align: center;
  }
  
  .inquiry-btn {
    padding: 14px 60px;
    font-size: 1em;
  }
  
  .car-content-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  
  .car-specs-section {
    flex: none;
  }
}

.price-note p:last-child {
  margin-bottom: 0;
}

/* レスポンシブ対応 */
@media (max-width: 900px) {
  .stock-detail-main {
    padding: 100px 15px 0px 15px;
  }
  
  .car-title {
    font-size: 1em;
  }
  
  .car-sub-images {
    gap: 10px;
  }
  
  .car-sub-images {
    grid-template-columns: repeat(6, 1fr);
    gap: 0px;
  }
  
  .car-images-section .gallery-nav {
    color: #fff !important;
    border-radius: 50% !important;
    width: 35px !important;
    height: 35px !important;
    font-size: 18px;
  }
  
  .equipment-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  
  .price-plans {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 700px) {
  .specs-title,
  .equipment-title {
    font-size: 0.8em;
  }
  
  .comment-title,
  .price-plan-title {
    font-size: 1.3em;
  }
  
  .comment-content {
    padding: 20px;
  }
  
  .price-plan-item {
    padding: 20px;
  }
  
  .plan-name {
    font-size: 1.2em;
  }
  
  .plan-items-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  
  .plan-label {
    padding: 10px 12px;
    font-size: 0.85em;
  }
  
  .total-price {
    font-size: 1.2em;
  }
  
  .car-specs-table {
    font-size: 0.8em;
  }
  
  .car-specs-table th,
  .car-specs-table td {
    padding: 4px 12px;
  }
  
  .comment-content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  
  .comment-image {
    flex: none;
    max-width: 100%;
  }
  
  .comment-content {
    padding: 0;
  }
}


