    @import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&display=swap");

    :root {
      --bg: #ffffff;
      --surface: #ffffff;
      --text: #333333;
      --muted: #333333;
      --line: #e5e5e5;
      --primary: #0b3b75;
      --primary-strong: #082a54;
      --accent: #0b3b75;
      --sales-badge-red: #c53030;
      --sales-btn-blue: #3b82f6;
      --navy: #0b3b75;
      --color-bg-product-primary: #0b3b75;
      --color-bg-product-dark: #082a54;
      --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      --radius: 6px;
      --container: 1200px;
      --font-family-base: "Noto Sans JP", "Yu Gothic", sans-serif;
      --font-family-en: "DIN Next LT Pro", "DIN Next", "Noto Sans JP", "Yu Gothic", sans-serif;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html,
    body {
      overflow-x: hidden;
    }

    body {
      font-family: var(--font-family-base);
      color: var(--text);
      background: var(--bg);
      font-size: 20px;
      line-height: 1.75;
    }

    /* 価格セクションを全ページで非表示 */
    #price {
      display: none !important;
    }

    h1 {
      font-size: 52px;
      line-height: 1.3;
    }

    h2 {
      font-size: 36px;
      line-height: 1.3;
    }

    h3 {
      font-size: 24px;
      line-height: 1.3;
    }

    p {
      font-size: 20px;
      line-height: 1.75;
    }

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

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 24px;
    }

    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      z-index: 1000;
      background: #FFFFFF;
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(8px);
    }

    /* 固定ヘッダー分の余白（PC） */
    body {
      padding-top: 64px;
    }

    /* ヘッダーはナビを収めるためコンテナを広めに */
    header .container {
      max-width: 1400px;
      padding-left: 20px;
      padding-right: 20px;
    }

    .header-inner {
      display: flex;
      flex-wrap: nowrap;
      align-items: center;
      justify-content: space-between;
      padding: 14px 0;
      gap: 12px;
    }

    .logo {
      flex-shrink: 0;
      font-weight: 700;
      font-size: 20px;
      letter-spacing: 0.04em;
      margin-right: 40px;
    }

    header .nav-menu {
      flex: 1 1 auto;
      min-width: 0;
    }

    nav ul {
      display: flex;
      flex-wrap: nowrap;
      gap: clamp(10px, 1.2vw, 20px);
      list-style: none;
      font-size: clamp(14px, 1.1vw, 20px);
      font-weight: 500;
      letter-spacing: 0.06em;
    }

    nav ul li {
      flex-shrink: 0;
      position: relative;
    }

    nav ul a {
      white-space: nowrap;
    }

    /* サブメニュー */
    nav ul li.has-submenu {
      position: relative;
    }

    nav ul li.has-submenu > a {
      position: relative;
      padding-right: 16px;
    }

    nav ul li.has-submenu > a::after {
      content: "▼";
      font-size: 10px;
      margin-left: 4px;
      display: inline-block;
      transition: transform 0.2s ease;
    }

    nav ul li.has-submenu:hover > a::after {
      transform: rotate(180deg);
    }

    nav ul .submenu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: #ffffff;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      border-radius: 10px;
      padding: 8px 0;
      margin-top: 0;
      min-width: 200px;
      z-index: 1000;
      flex-direction: column;
      gap: 0;
    }

    /* 親要素全体にホバーしたとき */
    nav ul li.has-submenu:hover .submenu {
      display: flex;
    }

    /* サブメニュー自体にホバーしたときも開いたまま */
    nav ul li.has-submenu .submenu:hover {
      display: flex;
    }

    nav ul .submenu li {
      width: 100%;
    }

    nav ul .submenu a {
      display: block;
      padding: 10px 20px;
      color: #333333;
      text-decoration: none;
      transition: background-color 0.2s ease;
      white-space: nowrap;
    }

    nav ul .submenu a:hover {
      background-color: #f5f5f5;
    }

    .header-cta {
      display: flex;
      flex-shrink: 0;
      align-items: center;
      gap: 12px;
      margin-left: 8px;
    }

    .tel {
      font-weight: 700;
      font-size: 20px;
    }

    .header-cta .btn {
      font-size: 20px;
      padding: 10px 18px;
    }

    /* Figma: ヘッダーお問い合わせボタン（黄緑 #DFFF80・角丸20px・白線） */
    .btn-header-cta {
      background: #DFFF80;
      color: #333333;
      border-radius: 10px !important;
      border: 2px solid #ffffff;
      box-shadow: none;
    }

    .btn-header-cta:hover {
      background: #d4f066 !important;
      color: #333333 !important;
      border-color: #ffffff;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 22px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 600;
      font-size: 20px;
      transition: 0.2s ease;
      gap: 8px;
    }

    .btn-primary {
      background: var(--primary);
      color: #ffffff;
      box-shadow: var(--shadow);
    }

    /* グローバルナビを一行に収める（中サイズデスクトップ） */
    @media (min-width: 901px) and (max-width: 1300px) {
      .header-inner {
        gap: 8px;
      }
      header .container {
        padding-left: 16px;
        padding-right: 16px;
      }
      nav ul {
        gap: 10px;
        font-size: 15px;
      }
      .header-cta .btn {
        font-size: 15px;
        padding: 8px 14px;
      }
      .tel {
        font-size: 15px;
      }
    }

    @media (max-width: 900px) {
      body {
        font-size: 20px;
      }

      h1 {
        font-size: 36px;
      }

      h2 {
        font-size: 28px;
      }

      h3 {
        font-size: 20px;
      }

      p {
        font-size: 20px;
      }

      .btn {
        font-size: 20px;
        padding: 10px 18px;
      }

      .header-inner {
        padding: 14px 0;
      }

      .logo {
        font-size: 20px;
      }
    }

    .btn-neutral {
      background: var(--text);
      color: #ffffff;
      box-shadow: var(--shadow);
    }

    .btn-primary:hover {
      background: var(--primary-strong);
    }

    .btn-ghost {
      border-color: var(--line);
      background: #ffffff;
      color: var(--primary);
    }

    .btn-ghost:hover {
      border-color: var(--primary);
    }

    .recruit-banner {
      background: linear-gradient(135deg, var(--primary), var(--primary-strong));
      color: #fff;
      padding: 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .recruit-banner h2 {
      margin-bottom: 8px;
      font-size: 28px;
    }

    /* 採用情報ボタン：Figma 12-1411 */
    .recruit-btn {
      background: #ffffff;
      color: #2F3642;
      border: 1px solid #2F3642;
      border-radius: 10px;
      box-shadow: none;
      font-weight: 500;
      padding: 12px 28px;
      transition: opacity 0.2s ease;
    }

    .recruit-btn:hover {
      opacity: 0.85;
    }

    .staff-card {
      text-align: center;
      background: transparent;
      border-radius: 0;
      box-shadow: none;
      padding: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }

    .staff-card img {
      border-radius: 10px;
      width: 120px;
      height: 120px;
      object-fit: cover;
      border: 2px solid var(--line);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    }

    .staff-card h3 {
      font-size: 20px;
      letter-spacing: 0.06em;
      margin-top: 6px;
    }

    .staff-card p {
      font-size: 14px;
      letter-spacing: 0.08em;
      color: var(--muted);
    }

    .service-card-img {
      width: 100%;
      border-radius: 4px;
      margin-bottom: 12px;
    }

    .detail-btn {
      padding: 8px 16px;
      font-size: 14px;
    }

    .cta-line-btn {
      background: #06c755;
      color: #fff;
      border-color: #06c755;
    }

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

    .voice-card-img {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      object-fit: cover;
    }

    .fan-header {
      margin-bottom: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
    }

    .services-block-title {
      margin-bottom: 16px;
      color: var(--text);
    }

    .services-block-title+.grid-3 {
      margin-bottom: 40px;
    }

    .services-block {
      margin-bottom: 32px;
    }

    .service-var-2 {
      background: #ffffff;
      padding-bottom: 80px;
    }

    /* サービス一覧見出し：背景外（白エリア）に表示 */
    .service-var-2 .section-title {
      margin-bottom: 0;
      padding-bottom: 32px;
    }

    .category-row {
      margin-bottom: 20px;
    }

    .category-row:last-child {
      margin-bottom: 0;
    }

    .category-row.no-category-copy {
      display: block;
    }

    /* 各カテゴリ内：角枠＋50px余白 */
    .service-var-2 .category-row-inner {
      padding: 30px;
      box-sizing: border-box;
    }

    /* サービス一覧：Figma 12-1156 整備・修理 */
    .service-var-2 .category-row:nth-child(2) {
      background: #86A6EA;
      width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-top: 0;
      margin-bottom: 24px;
      padding: 0 calc(50vw - 50%) 0;
      box-sizing: border-box;
  }
  

    .service-var-2 .category-row:nth-child(2) .category-header {
      margin-bottom: 24px;
    }

    .service-var-2 .category-row:nth-child(2) .category-header h3 {
      color: #ffffff;
      font-size: 28px;
      font-weight: 700;
      letter-spacing: 0.05em;
      margin-bottom: 0;
    }

    .service-var-2 .category-row:nth-child(2) .category-header p {
      color: #ffffff;
    }

    .service-var-2 .category-row:nth-child(2) .card-v2 {
      background-color: #ffffff;
      color: #333333;
      border: none;
      border-radius: 10px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
      padding: 30px;
      overflow: hidden;
      min-width: 0;
      min-height: 400px;
      display: flex;
      flex-direction: column;
  }

    .service-var-2 .category-row:nth-child(2) .card-v2 img {
      width: 294px;
      height: 294px;
      object-fit: cover;
      border-radius: 5px;
      margin-bottom: 0;
      display: block;
  }

    .service-var-2 .category-row:nth-child(2) .card-v2 h4 {
      color: #333333;
      font-size: 30px;
      font-weight: 700;
      line-height: 1.35;
      padding: 20px 24px 0;
      margin-bottom: 0;
    }

    .service-var-2 .category-row:nth-child(2) .card-v2 span {
      color: #666666;
      font-size: 20px;
      line-height: 1.6;
      padding: 8px 24px 16px;
      display: block;
      flex-grow: 1;
    }

    /* サービス一覧パネル「詳しく見る」ボタン */
    .service-var-2 .card-v2 .btn-card-detail {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 20px;
      background: var(--primary);
      color: #ffffff;
      border-radius: 10px;
      text-decoration: none;
      font-weight: 600;
      font-size: 18px;
      transition: opacity 0.2s ease, transform 0.2s ease;
      white-space: nowrap;
      margin-top: auto;
      margin-left: auto;
      margin-right: 0;
      width: fit-content;
    }

    .service-var-2 .card-v2 .btn-card-detail:hover {
      opacity: 0.9;
      transform: translateY(-2px);
    }

    .service-var-2 .category-row:nth-child(2) .service-grid-v2 {
      gap: 24px;
      grid-template-columns: repeat(3, minmax(280px, 1fr));
    }

    /* サービス一覧：外装 */
    .service-var-2 .category-row:nth-child(3) {
      background: #3B65BD;
      width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-bottom: 24px;
      padding: 0 calc(50vw - 50%) 0px;
      box-sizing: border-box;
  }
  

    .service-var-2 .category-row:nth-child(3) .category-header {
      margin-bottom: 24px;
    }

    .service-var-2 .category-row:nth-child(3) .category-header h3 {
      color: #ffffff;
      font-size: 28px;
      font-weight: 700;
      letter-spacing: 0.05em;
      margin-bottom: 0;
    }

    .service-var-2 .category-row:nth-child(3) .category-header p {
      color: #ffffff;
    }

    .service-var-2 .category-row:nth-child(3) .card-v2 {
      background-color: #ffffff;
      color: #333333;
      border: none;
      border-radius: 10px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
      padding: 30px;
      overflow: hidden;
      min-width: 0;
      min-height: 400px;
      display: flex;
      flex-direction: column;
    }

    .service-var-2 .category-row:nth-child(3) .card-v2 img {
      width: 294px;
      height: 294px;
      object-fit: cover;
      border-radius: 5px;
      margin-bottom: 0;
      display: block;
    }

    .service-var-2 .category-row:nth-child(3) .card-v2 h4 {
      color: #333333;
      font-size: 30px;
      font-weight: 700;
      line-height: 1.35;
      padding: 20px 24px 0;
      margin-bottom: 0;
    }

    .service-var-2 .category-row:nth-child(3) .card-v2 span {
      color: #666666;
      font-size: 20px;
      line-height: 1.6;
      padding: 8px 24px 16px;
      display: block;
      flex-grow: 1;
    }

    .service-var-2 .category-row:nth-child(3) .service-grid-v2 {
      gap: 24px;
      grid-template-columns: repeat(3, minmax(280px, 1fr));
    }

    /* サービス一覧：販売 */
    .service-var-2 .category-row:nth-child(4) {
      background: #1F3885;
      width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-bottom: 0;
      padding: 0 calc(50vw - 50%) 0;
      box-sizing: border-box;
    }

    .service-var-2 .category-row:nth-child(4) .category-header {
      margin-bottom: 24px;
    }

    .service-var-2 .category-row:nth-child(4) .category-header h3 {
      color: #ffffff;
      font-size: 28px;
      font-weight: 700;
      letter-spacing: 0.05em;
      margin-bottom: 0;
    }

    .service-var-2 .category-row:nth-child(4) .category-header p {
      color: #ffffff;
    }

    .service-var-2 .category-row:nth-child(4) .card-v2 {
      background-color: #ffffff;
      color: #333333;
      border: none;
      border-radius: 10px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
      padding: 30px;
      overflow: hidden;
      min-width: 0;
      min-height: 400px;
      display: flex;
      flex-direction: column;
    }

    .service-var-2 .category-row:nth-child(4) .card-v2 img {
      width: 294px;
      height: 294px;
      object-fit: cover;
      border-radius: 5px;
      margin-bottom: 0;
      display: block;
    }

    .service-var-2 .category-row:nth-child(4) .card-v2 h4 {
      color: #333333;
      font-size: 30px;
      font-weight: 700;
      line-height: 1.35;
      padding: 20px 24px 0;
      margin-bottom: 0;
    }

    .service-var-2 .category-row:nth-child(4) .card-v2 span {
      color: #666666;
      font-size: 20px;
      line-height: 1.6;
      padding: 8px 24px 16px;
      display: block;
      flex-grow: 1;
    }

    .service-var-2 .category-row:nth-child(4) .service-grid-v2 {
      gap: 24px;
      grid-template-columns: repeat(3, minmax(280px, 1fr));
    }

    .category-header {
      text-align: left;
      margin-bottom: 12px;
    }

    .category-header h3 {
      font-size: 24px;
      margin-bottom: 16px;
      letter-spacing: 0.05em;
    }

    .category-header p {
      font-size: 20px;
      color: var(--muted);
      line-height: 1.8;
    }

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

    .card-v2 {
      display: block;
      text-decoration: none;
      color: inherit;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: var(--surface);
      box-shadow: 0 6px 20px rgba(11, 59, 117, 0.08);
      padding: 15px;
    }

    .card-v2 img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 12px;
    }

    .card-v2 h4 {
      font-size: 20px;
      margin-bottom: 4px;
      font-weight: 700;
      line-height: 1.35;
    }

    .card-v2 span {
      font-size: 20px;
      color: #333333;
      display: block;
      line-height: 1.6;
    }

    .banner-var-4 {
      padding: 80px 0;
      background: #fff;
    }

    .banner-var-4 .container {
      max-width: 1360px;
    }

    .banner-v4-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
    }

    .banner-item-v4 {
      display: flex;
      text-decoration: none;
      border-radius: 12px;
      overflow: hidden;
      background: linear-gradient(135deg, #eee 0%, #ccc 100%);
      color: #fff;
      min-height: 360px;
      align-items: stretch;
      padding: 24px;
      gap: 24px;
    }

    .banner-item-v4 .v4-left {
      padding: 0 !important;
    }

    .banner-item-v4 .v4-right {
      flex: 0 0 300px;
      width: 300px;
      height: 300px;
      padding: 0;
      align-self: center;
    }

    .banner-item-v4 .v4-right img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* 中古車両販売上の横並びバナー（アドブルー・DPF洗浄） */
    .sales-top-banners {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      padding-bottom: 24px;
    }

    .sales-banner {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 120px;
      border-radius: 10px;
      text-decoration: none;
      color: #333;
      font-weight: 700;
      font-size: 20px;
      transition: opacity 0.2s ease;
      position: relative;
      overflow: hidden;
    }

    .sales-banner:hover {
      opacity: 0.9;
    }

    /* 差し替え時どちらか判るように背景色で区別（画像差し替え後は削除可） */
    .sales-banner-adblue {
      background: #E8F4FD;
      border: 2px dashed #3B65BD;
    }

    .sales-banner-dpf {
      background: #FFF8E8;
      border: 2px dashed #1F3885;
    }

    .sales-banner-label {
      position: relative;
      z-index: 1;
    }

    /* バナーに画像を入れる場合：.sales-banner 内に img を置き、以下で全面表示 */
    .sales-banner img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .sales-banner img + .sales-banner-label {
      background: rgba(255, 255, 255, 0.9);
      padding: 4px 12px;
      border-radius: 4px;
    }

    @media (max-width: 767px) {
      .sales-top-banners {
        grid-template-columns: 1fr;
      }
    }

    .sales-scroll-section {
      padding: 60px 0;
      background: var(--bg, #fff);
    }

    /* 縦幅の狭いノートPCでセクション全体が1画面に収まるように */
    @media (max-height: 900px) {
      .sales-scroll-section {
        padding: 32px 0;
      }

      .sales-scroll-section .sales-header {
        margin-bottom: 20px;
      }

      .sales-scroll-section .sales-header h2 {
        font-size: clamp(24px, 3.5vw, 28px);
      }

      .sales-scroll-section .horizontal-scroll-wrapper {
        padding: 4px 4px 16px;
      }

      .sales-scroll-section .vehicle-card .image-wrap {
        aspect-ratio: 16 / 9;
        margin-bottom: 8px;
      }

      .sales-scroll-section .vehicle-card {
        padding: 0 15px 12px;
      }

      .sales-scroll-section .vehicle-card h3 {
        font-size: 20px;
        margin-bottom: 2px;
      }

      .sales-scroll-section .vehicle-card .divider {
        margin: 8px 0;
      }

      .sales-scroll-section .vehicle-card .spec-grid {
        gap: 6px 10px;
        font-size: 14px;
      }

      .sales-scroll-section .vehicle-card .price-line {
        font-size: 18px;
      }

      .sales-scroll-section .vehicle-card .price-line .price-strong {
        font-size: 20px;
      }

      .sales-scroll-section .voice-navs {
        margin-top: 12px;
      }

      .sales-scroll-section .bottom-btn-area {
        margin-top: 8px;
      }
    }

    @media (max-height: 768px) {
      .sales-scroll-section {
        padding: 24px 0;
      }

      .sales-scroll-section .sales-header {
        margin-bottom: 16px;
      }

      .sales-scroll-section .vehicle-card .image-wrap {
        aspect-ratio: 2 / 1;
        margin-bottom: 6px;
      }

      .sales-scroll-section .vehicle-card h3 {
        font-size: 20px;
      }

      .sales-scroll-section .vehicle-card .spec-grid {
        font-size: 13px;
      }
    }

    .sales-header {
      text-align: center;
      margin-bottom: 32px;
    }

    .sales-header h2 {
      font-size: 28px;
      font-weight: 700;
      color: #333333;
      display: inline-block;
      position: relative;
      font-family: var(--font-family-base, "Noto Sans JP", sans-serif);
    }

    /* 中古車両販売見出し：Figma 12-1211 */
    #sales-vehicles .sales-header h2 {
      color: var(--primary);
      font-size: clamp(28px, 4vw, 36px);
      font-weight: 700;
      text-align: center;
    }

    .horizontal-scroll-wrapper {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      padding: 4px 4px 24px;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
    }

    .horizontal-scroll-wrapper::-webkit-scrollbar {
      height: 8px;
    }

    .horizontal-scroll-wrapper::-webkit-scrollbar-thumb {
      background: #cbd5e1;
      border-radius: 4px;
    }

    /* 車両カード：Figma 12-1214 */
    .vehicle-card {
      flex: 0 0 320px;
      scroll-snap-align: start;
      padding: 0px 15px 15px;
      background: var(--, #FFFFFF);
      box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.20);
      border-radius: 10px;
      display: flex;
      flex-direction: column;
      color: var(--text);
      font-family: var(--font-family-base, "Noto Sans JP", sans-serif);
    }

    /* 中古車両販売・備品販売：2枚フル表示＋3枚目を1/3表示、以降は横スクロール */
    .sales-scroll-section .vehicle-card {
      flex: 0 0 calc((100% - 32px) * 3 / 7);
      min-width: 280px;
    }

    /* 中古車両販売：NEW・仕様ラベル角丸20px、画像横幅一杯 */
    #sales-vehicles .vehicle-card .image-wrap {
      margin-left: -15px;
      margin-right: -15px;
      width: calc(100% + 30px);
      border-radius: 10px 10px 0 0;
      aspect-ratio: 16 / 10;
    }

    #sales-vehicles .badge-new {
      border-radius: 10px;
    }

    #sales-vehicles .vehicle-card .spec-label {
      border-radius: 10px;
    }

    /* 備品販売：中古車両販売と同じパネル高さ（画像エリアを同一レイアウトに） */
    #sales-supplies .vehicle-card .image-wrap {
      margin-left: -15px;
      margin-right: -15px;
      width: calc(100% + 30px);
      border-radius: 10px 10px 0 0;
      aspect-ratio: 16 / 10;
    }

    #sales-supplies .vehicle-card .image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
    }

    #sales-supplies .badge-new {
      border-radius: 10px;
    }

    #sales-supplies .vehicle-card .spec-label {
      border-radius: 10px;
    }

    .vehicle-card .image-wrap {
      position: relative;
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 12px;
      aspect-ratio: 16 / 10;
    }

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

    /* 車両カード NEW バッジ：Figma 12-1214 / 12-1236 */
    .badge-new {
      position: absolute;
      top: 10px;
      left: 10px;
      background: var(--main, #3B65BD);
      color: #fff;
      font-size: 20px;
      padding: 2px 6px;
      letter-spacing: 0.02em;
  }

    .vehicle-card h3 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 4px;
      color: #111827;
      padding:0px 20px;
    }

    .vehicle-card .divider {
      border-top: 1px solid #e5e5e5;
      margin: 12px 0;
    }

    .vehicle-card .price-line {
      display: flex;
      align-items: baseline;
      gap: 6px;
      font-size: 20px;
      padding:0px 20px;
    }

    .vehicle-card .price-line .price-strong {
      color: #d32f2f;
      font-weight: 800;
      font-size: 24px;
    }

    .vehicle-card .spec-grid {
      display: grid;
      grid-template-columns: 80px 1fr;
      gap: 8px 12px;
      font-size: 20px;
      margin-top: auto;
    }

    /* 車両カード 仕様ラベル：Figma 12-1214 / 12-1236（ライトブルー・白文字） */
    .vehicle-card .spec-label {
      background: #F5F9FE;
      padding: 6px;
      text-align: center;
      font-weight: 600;
      font-size: 20px;
    }

    .voice-navs {
      display: flex;
      justify-content: flex-end;
      gap: 12px;
      margin-top: 10px;
      margin-bottom: 20px;
    }

    .voice-nav {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: none;
      background: #56b685;
      color: #fff;
      font-size: 22px;
      cursor: pointer;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: opacity 0.3s;
    }

    .voice-nav:hover {
      opacity: 0.8;
    }

    .bottom-btn-area {
      text-align: center;
      margin-top: 10px;
    }

    /* 選ばれる理由ボタン：Figma 12-1264 */
    .btn-view-list {
      display: inline-block;
      background: #3C6EC8;
      color: #ffffff;
      font-weight: 400;
      text-decoration: none;
      padding: 14px 80px;
      border-radius: 10px;
      border: none;
      box-shadow: none;
      transition: opacity 0.2s ease;
      font-family: var(--font-family-base, "Noto Sans JP", sans-serif);
      text-align: center;
    }

    .btn-view-list:hover {
      opacity: 0.9;
    }

    /* 中古車両販売・備品販売スクロールボタン：Figma 12-1261 / 12-1263 */
    .sales-scroll-section .voice-nav {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      border: none;
      background: #E5F56B;
      color: #2D3037;
      font-size: 20px;
      font-weight: 700;
      box-shadow: none;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: opacity 0.2s ease;
    }

    .sales-scroll-section .voice-nav:hover {
      opacity: 0.85;
    }

    .reasons-var-3 {
      background: #fff;
      padding-bottom: 100px;
    }

    /* 選ばれる理由：販売と同じレイアウト（背景色はそのまま） */
    #reasons {
      background: #1F3885;
      padding: 56px 0 80px;
    }

    #reasons .section-title {
      margin-bottom: 40px;
    }

    #reasons .section-title h2 {
      color: #ffffff;
      font-size: 28px;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-align: center;
      margin-bottom: 0;
    }

    #reasons .grid-3 {
      gap: 24px;
      grid-template-columns: repeat(3, minmax(280px, 1fr));
    }

    #reasons .card {
      background: #ffffff;
      border-radius: 10px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
      padding: 30px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      min-height: 400px;
      min-width: 0;
    }

    #reasons .card img.thumb-unified {
      width: 100%;
      height: 294px;
      object-fit: cover;
      object-position: center;
      margin: 0;
      border-radius: 5px;
      display: block;
      flex: 0 0 auto;
    }

    #reasons .card h3 {
      font-size: 20px;
      font-weight: 700;
      line-height: 1.35;
      color: #333333;
      padding: 20px 24px 0;
      margin: 0;
    }

    #reasons .card p {
      font-size: 20px;
      color: #666666;
      line-height: 1.6;
      padding: 8px 24px 24px;
      margin: 0;
    }

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

    .zigzag-item:nth-child(even) {
      flex-direction: row-reverse;
    }

    .zigzag-item:last-child {
      margin-bottom: 0;
    }

    .zigzag-img {
      flex: 1;
      height: 320px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .zigzag-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }

    .zigzag-item:hover .zigzag-img img {
      transform: scale(1.05);
    }

    .zigzag-content {
      flex: 1;
    }

    .zigzag-content h3 {
      font-size: 24px;
      margin-bottom: 24px;
      position: relative;
      padding-bottom: 24px;
    }

    .zigzag-content h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 60px;
      height: 3px;
      background: var(--primary);
    }

    .zigzag-content p {
      font-size: 15px;
      color: #555;
      line-height: 1.8;
      margin-bottom: 24px;
    }

    .zigzag-tag {
      display: inline-block;
      background: #f0f0f0;
      padding: 4px 12px;
      border-radius: 4px;
      font-size: 12px;
      color: #555;
      font-weight: bold;
    }

    .usedcar-meta {
      font-size: 15px;
      color: var(--muted);
      margin-bottom: 4px;
    }

    .centered-block {
      margin-top: 24px;
      text-align: center;
    }

    .simple-list {
      list-style: disc;
      margin-left: 20px;
      color: var(--muted);
      font-size: 14px;
      margin-bottom: 16px;
    }





    .hero-lead {
      font-weight: 700;
      font-size: 20px;
      color: var(--primary);
      margin-top: 0;
    }

    .btn-row {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }


    .about-section {
      background: #f9f9f9;
      padding: 50px 0;
    }

    .about-section .section-title {
      margin-bottom: 32px;
    }

    .about-section .item-text {
      font-family: var(--font-family-en);
      letter-spacing: 0.03em;
    }

    .about-section .logo-img {
      font-family: var(--font-family-en);
      letter-spacing: 0.04em;
    }

    /* About Variation 2 (Clean Grid) */
    .about-var-2 {
      background: #ffffff;
      padding: 100px 0;
    }

    #about {
      background: #ffffff;
    }
    #about .section-title h2,
    #about .section-title p {
      color: #2C4390;
    }

    .about-var-2 .grid-wrapper {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px 24px;
      max-width: 960px;
      margin: 60px auto 0;
    }

    .clean-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .clean-icon-circle {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: #f5f5f5;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }

    .clean-icon-circle svg {
      width: 32px;
      height: 32px;
      fill: var(--text);
    }

    .clean-item h3 {
      font-size: 15px;
      letter-spacing: 0.05em;
      margin-bottom: 8px;
      font-weight: 700;
    }

    .clean-item p {
      font-size: 12px;
      color: var(--muted);
      line-height: 1.5;
    }

    .clean-plus {
      background: #333;
      color: #fff;
      font-size: 24px;
      font-weight: bold;
    }

    .section-alt {
      background: #f9f9f9;
    }

    /* サービス一覧は白背景・黒文字に統一 */
    .service-var-2.section-alt {
      background: #ffffff;
    }


    .hero {
      padding: 72px 0 84px;
    }

    /* Figma 12-968: ヒーロー（青パネル・斜めカット） */
    .hero-visual {
      padding: 0;
      overflow: hidden;
    }

    .hero-visual-inner {
      position: relative;
      max-width: 1400px;
      margin: 0 auto;
    }

    .hero-visual-left {
      position: relative;
      z-index: 1;
      background: #2C4390;
      padding: 56px 42% 56px max(24px, (100vw - 1400px) / 2 + 24px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);
      min-height: 380px;
    }

    .hero-visual-badge {
      display: inline-block;
      background: #4A70C2;
      color: #ffffff;
      padding: 8px 14px;
      font-size: 20px;
      font-weight: 500;
      margin-bottom: 20px;
      width: fit-content;
      border-radius: 10px;
    }

    .hero-visual-title {
      color: #ffffff;
      font-size: 38px;
      line-height: 1.25;
      letter-spacing: 0.02em;
      margin-bottom: 16px;
      font-weight: 700;
    }

    .hero-visual-lead {
      color: rgba(255, 255, 255, 0.95);
      font-size: 20px;
      line-height: 1.75;
      max-width: 520px;
      margin-bottom: 28px;
    }

    .hero-visual-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .btn-hero-dl {
      background: #D9F16E !important;
      color: #1a1a1a !important;
      border: none;
      border-radius: 10px !important;
      padding: 12px 24px;
      font-weight: 600;
      font-size: 20px;
    }

    .btn-hero-dl:hover {
      background: #cde85a !important;
      color: #1a1a1a !important;
    }

    .btn-hero-contact {
      background: transparent !important;
      color: #ffffff !important;
      border: 2px solid rgba(255, 255, 255, 0.9);
      border-radius: 10px !important;
      padding: 10px 22px;
      font-weight: 600;
      font-size: 20px;
    }

    .btn-hero-contact:hover {
      background: rgba(255, 255, 255, 0.1) !important;
      color: #ffffff !important;
      border-color: #ffffff;
    }

    /* 画像を左パネルに重ねて右側に配置 */
    .hero-visual-right {
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      width: 40%;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: stretch;
      justify-content: center;
      padding: 60px 0;
      pointer-events: none;
    }

    .hero-visual-img-wrap {
      width: 100%;
      height: 100%;
      max-height: 280px;
      margin: auto 0;
      overflow: hidden;
      flex-shrink: 0;
    }

    .hero-visual-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: right top;
      display: block;
    }

    .hero-pattern-3 {
      background: linear-gradient(135deg, #f3f7fc 60%, #e2ebf7 60%);
      padding: 80px 0 100px;
      overflow: hidden;
    }

    .hero-pattern-3 .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 40px;
      align-items: center;
    }

    .hero-pattern-3 h1 {
      font-size: 42px;
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: 0.02em;
      color: #1a1a1a;
      margin-bottom: 24px;
    }

    .hero-pattern-3 h1 span {
      color: var(--primary);
    }

    .hero-pattern-3 .lead-box {
      background: rgba(255, 255, 255, 0.8);
      padding: 24px;
      border-left: 4px solid var(--primary);
      border-radius: 0 8px 8px 0;
      margin-bottom: 32px;
    }

    .hero-lead-strong {
      font-size: 20px;
      font-family: "Montserrat", var(--font-family-en);
      font-weight: 600;
      color: #1f1f1f;
      letter-spacing: 0.03em;
      margin-bottom: 8px;
    }

    .hero-lead-sub {
      font-size: 14px;
      font-family: "Montserrat", var(--font-family-en);
      font-weight: 500;
      color: #666666;
      letter-spacing: 0.02em;
      line-height: 1.7;
    }

    .hero-pattern-3 .hero-card {
      transform: scale(1.3);
      transform-origin: center right;
      margin-left: 20px;
    }

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

    .hero h1 {
      font-size: 41px;
      line-height: 1.2;
      letter-spacing: 0.02em;
      margin-bottom: 18px;
    }

    .hero p {
      font-size: 20px;
      line-height: 1.75;
      max-width: 620px;
      margin-bottom: 40px;
    }

    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--muted);
      padding: 6px 10px;
      border: 1px solid var(--line);
      border-radius: 999px;
      margin-bottom: 16px;
    }

    .hero-highlight {
      font-size: 20px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 12px;
    }

    .hero-chips {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .hero-chip {
      border: 1px solid var(--line);
      border-radius: 999px;
      padding: 6px 12px;
      font-size: 12px;
      font-weight: 600;
      color: var(--text);
      background: #fff;
    }

    .hero-inline {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      margin-bottom: 16px;
    }

    .hero-inline-text {
      font-size: 15px;
      line-height: 1.6;
      color: var(--muted);
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .hero-card {
      background: var(--surface);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 16px;
    }

    .hero-card img {
      width: 100%;
      aspect-ratio: 640 / 420;
      object-fit: cover;
      border-radius: 8px;
    }


    section {
      padding: 80px 0;
    }

    .section-title {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 32px;
      gap: 20px;
    }

    .section-title h2 {
      font-size: 34px;
      font-family: "Montserrat", var(--font-family-en);
      letter-spacing: 0.04em;
    }

    .section-title p {
      color: var(--muted);
      max-width: 520px;
      font-size: 20px;
      line-height: 1.8;
      letter-spacing: 0.02em;
    }

    /* About Section Centered Title */
    .section-title.centered {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding-bottom:30px;
    }

    .section-title.centered h2 {
      margin-bottom: 8px;
    }

    .section-title.centered p {
      max-width: 600px;
    }


    /* Fan Component CSS */
    :root {
      /* Merging with existing root */
      --circle-bg: #FFFFFF;
      --circle-size: 100px;
      --fan-radius: 280px;
      /* Renamed radius to avoid conflict if any, though local scope is fine */
    }

    .fan-component-container {
      position: relative;
      width: 100%;
      max-width: 800px;
      height: 420px;
      display: flex;
      justify-content: center;
      align-items: flex-end;
      margin: 0 auto;
      margin-top: -40px;
    }

    .header-content {
      position: absolute;
      top: -30px;
      width: 100%;
      text-align: center;
      z-index: 10;
      color: #1a202c;
      display: none;
      /* Hiding duplicated header content as it is already in section-title */
    }

    .fan-origin {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 0;
    }

    .central-logo {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 20;
      box-sizing: border-box;
      background: white;
      padding: 10px 30px;
      width: 360px;
      height: 180px;
      display: flex;
      justify-content: center;
      align-items: center;
      border-top-left-radius: 180px;
      border-top-right-radius: 180px;
      background: linear-gradient(to bottom, #ffffff 0%, #ffffff 100%);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

    .logo-img {
      font-size: 2rem;
      font-weight: 900;
      font-style: italic;
      color: var(--primary);
      /* Using existing primary color */
      text-align: center;
      margin-top: 20px;
    }

    .fan-item {
      position: absolute;
      width: var(--circle-size);
      height: var(--circle-size);
      background: var(--circle-bg);
      border-radius: 50%;
      border: 1px solid var(--line);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
      left: calc(var(--circle-size) / -2);
      top: calc(var(--circle-size) / -2);
      transform: rotate(var(--angle)) translate(var(--fan-radius)) rotate(calc(-1 * var(--angle)));
    }


    .item-icon {
      font-size: 24px;
      margin-bottom: 2px;
      color: var(--primary);
      height: 32px;
      width: 32px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .item-icon svg {
      width: 100%;
      height: 100%;
      fill: var(--primary);
    }

    .item-text {
      font-size: 13px;
      /* Adjusted for visibility */
      font-weight: bold;
      line-height: 1.1;
      color: var(--primary);
      letter-spacing: 0.03em;
    }

    /* Kmワークスとは：半円アーチで「Kmワークス」を囲む（間隔30deg） */
    .about-figma {
      position: relative;
      width: 100%;
      max-width: 900px;
      margin:20px auto;
      padding-bottom: 20px;
      min-height: calc(var(--arc-area-top) + var(--arc-height) + 100px);
      --arc-radius: 160px;
      --arc-height: 260px;
      --arc-offset-top: 14px;
      --arc-area-top: calc(var(--arc-offset-top) - 24px);
    }
    /* 薄いブルーのアーチ状の帯（太い半円リング）SVG・背面配置・基準は --arc-area-top と left:50%+translateX(-50%) */
    .about-figma-arch-svg {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      width: 120%;
      height: calc(var(--arc-height) + 150px);
      top: var(--arc-area-top);
      z-index: 0;
      pointer-events: none;
    }
    .about-figma-arch-svg path.about-figma-arch-path {
      fill: #EAF2FF;
      fill-opacity: 0.72;
      filter: blur(0.5px);
    }
    /* アイコン配置コンテナ：SVGと同じ基準（--arc-area-top で上端、left:50%+translateX(-50%)で中央） */
    .about-figma-items {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      height: var(--arc-height);
      top: var(--arc-area-top);
      z-index: 1;
    }
    .about-figma-item {
      --x: 0;
      --y: 0;
      position: absolute;
      left: 50%;
      bottom: 0;
      width: 100px;
      margin-left: -50px;
      transform-origin: 50% 100%;
      transform: translate(var(--x), var(--y)) rotate(var(--angle)) translateY(calc(-1 * var(--arc-radius)));
    }
    .about-figma-item-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      text-align: center;
      transform: rotate(calc(-1 * var(--angle)));
    }
    .about-figma-icon {
      width: 120px;
      height:120px;
      border-radius: 50%;
      border: 1px solid rgba(0, 0, 0, 0.08);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
      background: #ffffff;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
      padding: 10px 6px;
      box-sizing: border-box;
    }
    .about-figma-icon img {
      width: 50px;
      height: 50px;
      object-fit: contain;
      flex-shrink: 0;
    }
    .about-figma-label {
      font-size: 11px;
      font-weight: 700;
      color: #2C4390;
      line-height: 1.25;
      text-align: center;
    }
    .about-figma-brand {
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      text-align: center;
      font-size: clamp(1.75rem, 4vw, 3.5rem);
      font-weight: 900;
      font-style: italic;
      color: #2C4390;
      margin: 0;
      z-index: 2;
  }

    /* SP差し替え画像（デフォルトは非表示） */
    .about-figma-mobile-visual {
      display: none;
      position: relative;
      z-index: 1;
      width: 100%;
    }

    .about-figma-mobile-visual img {
      display: block;
      width: 100%;
      height: auto;
    }

    /*
     * ブレークポイント 768px 以下：
     * - SPでは差し替え画像のみ表示
     * - 既存のアーチSVG / 半円アイコン / ブランド文字は非表示
     * PC（769px以上）は従来どおりアーチ+半円アイコンを表示
     */
    @media (max-width: 768px) {
      .about-figma {
        position: relative;
        min-height: 0;
        margin-bottom: 24px;
        padding-top: 0;
        padding-bottom: 0;
      }

      /* SP：差し替え画像のみ表示 */
      .about-figma-mobile-visual {
        display: block;
      }

      /* SP：既存アーチ・半円アイコン群・ブランド文字を非表示 */
      .about-figma-arch-svg,
      .about-figma-items,
      .about-figma-brand {
        display: none;
      }
    }

    @media (max-width: 768px) {
      .fan-component-container {
        height: 350px;
        transform: scale(0.8);
        /* Slight scale down for mobile fitting if needed */
        transform-origin: bottom center;
      }

      :root {
        --fan-radius: 200px;
        --circle-size: 70px;
      }

      .central-logo {
        width: 280px;
        height: 140px;
        border-top-left-radius: 140px;
        border-top-right-radius: 140px;
      }

      .logo-img {
        margin-top: 20px;
        font-size: 1.5rem;
      }

      .item-text {
        font-size: 10px;
      }
    }

    .service-banners {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 24px;
    }

    .service-banner {
      background: var(--primary);
      color: #fff;
      padding: 16px;
      text-align: center;
      border-radius: 4px;
      font-weight: 700;
      font-size: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .sales-split-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }

    .sales-col h3 {
      font-size: 24px;
      margin-bottom: 24px;
      padding-bottom: 12px;
      border-bottom: 2px solid var(--line);
      color: var(--text);
    }

    .sales-section .price {
      color: var(--text);
    }

    .sales-section .badge {
      background: #f1f1f1;
      color: var(--text);
    }

    .sales-section .btn-primary {
      background: var(--text);
    }

    .sales-section .btn-primary:hover {
      background: #111111;
    }

    .supplies-box {
      background: var(--surface);
      border-radius: var(--radius);
      padding: 32px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      height: fit-content;
      box-shadow: var(--shadow);
    }

    .product-list-vertical {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .product-card-row {
      display: flex;
      gap: 16px;
      background: var(--surface);
      border-radius: var(--radius);
      padding: 12px;
      box-shadow: var(--shadow);
      align-items: center;
    }

    .product-card-row img {
      width: 100px;
      height: 70px;
      object-fit: cover;
      border-radius: 4px;
    }

    .product-card-row-content {
      flex: 1;
    }

    .product-card-row h4 {
      font-size: 20px;
      margin-bottom: 4px;
    }

    .product-card-row .price {
      font-size: 20px;
    }

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

    .card {
      background: var(--surface);
      border-radius: 10px;
      box-shadow: var(--shadow);
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      min-height: 100%;
    }

    .card h3 {
      font-size: 22px;
      line-height: 1.35;
    }

    .card p {
      color: var(--muted);
      font-size: 20px;
      line-height: 1.75;
    }

    /* サポートメンバーの画像：角丸10px */
    #staff .card img {
      border-radius: 10px;
      width: 100%;
      height: auto;
      object-fit: cover;
    }

    .service-sub {
      font-size: 13px;
      color: var(--muted);
      margin-top: -8px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(255, 140, 0, 0.12);
      color: var(--accent);
      font-size: 12px;
      font-weight: 600;
    }

    .price {
      font-size: 20px;
      font-weight: 700;
      color: var(--primary);
      font-family: var(--font-family-en);
    }

    .voice-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 20px;
      color: var(--muted);
    }

    #voice {
      position: relative;
      margin-bottom: 72px;
    }

    #voice .voice-wrapper {
      position: relative;
      overflow: visible;
    }

    #voice .voice-grid {
      display: flex;
      gap: 24px;
      overflow-x: auto;
      padding: 8px 4px 18px;
    }

    #voice .voice-grid::-webkit-scrollbar {
      height: 6px;
    }

    #voice .voice-grid::-webkit-scrollbar-thumb {
      background: rgba(0, 0, 0, 0.2);
      border-radius: 999px;
    }

    #voice .card {
      background: var(--surface);
      border-radius: 10px;
      box-shadow: var(--shadow);
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      min-height: 540px;
      min-width: 280px;
      flex: 0 0 calc((100% - 48px) / 3);
    }

    #voice .card h3 {
      font-size: 22px;
    }

    #voice .card p {
      color: var(--muted);
      font-size: 20px;
    }

    .thumb-unified {
      width: 350px;
      height: 350px;
      object-fit: cover;
      object-position: center;
      flex: 0 0 350px;
      display: block;
      margin: 0 auto;
      border-radius: 10px;
    }

    #voice .voice-navs {
      display: flex;
      justify-content: flex-end;
      gap: 12px;
      margin-top: 18px;
    }

    /* お客様の声スクロールボタン：Figma 12-1261 / 12-1263（中古車両・備品と同じ） */
    #voice .voice-nav {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      border: none;
      background: #E5F56B;
      color: #2D3037;
      font-size: 20px;
      font-weight: 700;
      cursor: pointer;
      box-shadow: none;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: opacity 0.2s ease;
    }

    #voice .voice-nav:hover {
      opacity: 0.85;
    }

    .cta-section {
      background: linear-gradient(120deg, rgba(31, 95, 169, 0.1), rgba(255, 140, 0, 0.08));
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      padding: 72px 0 32px;
    }

    .cta-box {
      background: var(--surface);
      box-shadow: var(--shadow);
      padding: 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    .cta-box h2 {
      font-size: 32px;
      margin-bottom: 8px;
      line-height: 1.3;
    }

    .cta-box p {
      font-size: 20px;
      line-height: 1.75;
      color: var(--muted);
    }

    /* CTAボタン：Figma 12-1419 お問い合わせはこちら */
    .cta-section .btn-primary {
      background: #3366CC;
      color: #ffffff;
      border: none;
      border-radius: 10px;
      box-shadow: none;
      padding: 14px 32px;
      transition: opacity 0.2s ease;
    }

    .cta-section .btn-primary:hover {
      opacity: 0.9;
    }

    /* CTAボタン：Figma 12-1421 LINEで相談 */
    .cta-section .btn-line {
      background: #3DCC4B;
      color: #ffffff;
      border: none;
      border-radius: 10px;
      box-shadow: none;
      padding: 14px 32px;
      font-weight: 700;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: opacity 0.2s ease;
    }

    .cta-section .btn-line:hover {
      opacity: 0.9;
    }

    footer {
      background: #0b3b75;
      color: #fff;
      padding: 20px 24px;
      margin-top: 0;
      font-size: 20px;
    }

    /* スマホメニュー用スタイル */
    .menu-checkbox {
      display: none;
    }

    .menu-icon {
      display: none;
      cursor: pointer;
      width: 30px;
      height: 24px;
      position: relative;
      z-index: 20;
    }

    .menu-icon span {
      display: block;
      width: 100%;
      height: 2px;
      background: var(--text);
      position: absolute;
      transition: 0.3s;
    }

    .menu-icon span:nth-child(1) {
      top: 0;
    }

    .menu-icon span:nth-child(2) {
      top: 11px;
    }

    .menu-icon span:nth-child(3) {
      bottom: 0;
    }

    /* メニューオープン時のアイコン変化 */
    .menu-checkbox:checked+.menu-icon span:nth-child(1) {
      transform: rotate(45deg);
      top: 11px;
    }

    .menu-checkbox:checked+.menu-icon span:nth-child(2) {
      opacity: 0;
    }

    .menu-checkbox:checked+.menu-icon span:nth-child(3) {
      transform: rotate(-45deg);
      bottom: 11px;
    }

    /* バクラクLP風スマホレイアウト */
    @media (max-width: 900px) {
      .container {
        padding-left: 20px;
        padding-right: 20px;
      }

      header .container {
        padding-left: 16px;
        padding-right: 16px;
      }

      h1 {
        font-size: 28px;
      }

      h2 {
        font-size: 24px;
      }

      h3 {
        font-size: 20px;
      }

      p {
        font-size: 20px;
        line-height: 1.75;
      }

      .hero-grid {
        grid-template-columns: 1fr;
      }

      /* ヒーロー：縦並び・テキスト上・画像下（バクラクLP風） */
      .hero-visual-inner {
        display: flex;
        flex-direction: column;
      }

      .hero-visual-left {
        clip-path: none;
        padding: 40px 20px 32px;
        text-align: center;
        min-height: 0;
      }

      .hero-visual-left .hero-visual-badge {
        margin-left: auto;
        margin-right: auto;
      }

      .hero-visual-badge {
        font-size: 14px;
        padding: 6px 12px;
      }

      .hero-visual-title {
        font-size: 26px;
        line-height: 1.35;
        margin-bottom: 12px;
      }

      .hero-visual-lead {
        font-size: 18px;
        margin-bottom: 24px;
      }

      .hero-visual-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
      }

      .hero-visual-actions .btn {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
      }

      .hero-visual-right {
        position: relative;
        width: 100%;
        padding: 0 20px 40px;
        min-height: 0;
      }

      .hero-visual-img-wrap {
        max-height: none;
        height: auto;
        min-height: 200px;
        border-radius: 0;
      }

      .hero-visual-img-wrap img {
        width: 100%;
        height: auto;
        max-height: 280px;
        object-fit: cover;
        object-position: right top;
      }

      .hero h1 {
        font-size: 28px;
      }

      .hero p {
        font-size: 20px;
        max-width: none;
      }

      /* セクション間の余白（バクラクLP風） */
      main > section,
      main > .news-ticker,
      main .logo-scroll-section {
        padding-top: 40px;
        padding-bottom: 40px;
      }

      main > section:first-of-type {
        padding-top: 0;
      }

      /* grid-3 は 767px 以下で1列に（タブレットは3列のためここでは指定しない） */
      .about-grid,
      .product-grid,
      .voice-grid {
        grid-template-columns: 1fr;
      }

      .section-title {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .section-title h2 {
        margin-bottom: 8px;
      }

      /* スマホメニュー（バクラク風：画面幅の85%でスライド） */
      .menu-icon {
        display: block;
      }

      /* スマホ版ヘッダーの高さを63pxに設定・固定追従 */
      header .header-inner {
        height: 63px;
        padding: 0 16px;
        min-height: 63px;
      }

      body {
        padding-top: 63px;
      }

      .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: #fff;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.12);
        padding: 72px 24px 32px;
        transition: 0.3s ease;
        z-index: 15;
      }

      .menu-checkbox:checked~.nav-menu {
        right: 0;
      }

      /* 閉じるためのオーバーレイ（簡易版） */
      .menu-checkbox:checked~.nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: -1;
        pointer-events: none;
        /* JSなしだとクリックで閉じれないため見た目だけ */
      }

      /* スマホメニュー内のリストスタイル */
      .nav-menu ul {
        display: flex;
        flex-direction: column;
        gap: 24px;
        font-size: 20px;
        font-weight: 700;
      }

      /* スマホ用サブメニュー（常に表示） */
      .nav-menu ul li.has-submenu {
        position: relative;
      }

      .nav-menu ul li.has-submenu > a::after {
        display: none; /* スマホでは矢印を非表示 */
      }

      .nav-menu ul .submenu {
        display: flex; /* 常に表示 */
        position: static;
        background: transparent;
        box-shadow: none;
        padding: 12px 0 0 20px;
        margin-top: 0;
        min-width: auto;
        flex-direction: column;
        gap: 16px;
      }

      .nav-menu ul .submenu li {
        width: 100%;
      }

      .nav-menu ul .submenu a {
        display: block;
        padding: 0;
        color: #666666;
        font-size: 20px;
        font-weight: 500;
        text-decoration: none;
        transition: color 0.2s ease;
      }

      .nav-menu ul .submenu a:hover {
        background-color: transparent;
        color: #333333;
      }

      .category-row {
        margin-bottom: 14px;
      }

      /* サービス一覧・選ばれる理由・サポートメンバーは 767px 以下で1列（タブレット768px〜は3列のまま） */
      .banner-v4-grid {
        grid-template-columns: 1fr;
      }

      .banner-item-v4 {
        flex-direction: column-reverse;
      }

      .v4-right {
        padding: 0 !important;
      }

      .v4-right img {
        width: 100% !important;
        border-radius: 0 !important;
        aspect-ratio: 16/9 !important;
      }

      .vehicle-card {
        flex: 0 0 280px;
      }

      .card-v2 h4,
      .vehicle-card h3,
      .product-card-row h4,
      .card h3,
      #voice .card h3 {
        font-size: 20px;
      }

      .card-v2 span,
      .usedcar-meta,
      .card p,
      #voice .card p {
        font-size: 14px;
        line-height: 1.7;
      }

      .zigzag-item {
        flex-direction: column !important;
        gap: 30px;
      }

      .zigzag-img {
        height: 240px;
        width: 100%;
      }

      .header-cta {
        display: none;
        /* メニュー内に移動すべきだが、初稿なので非表示対応でスッキリさせる */
      }

      .cta-box {
        padding: 28px 20px;
      }

      .cta-box h2 {
        font-size: 24px;
      }

      .cta-box p {
        font-size: 18px;
      }
    }

    @media (max-width: 600px) {
      .container {
        padding-left: 16px;
        padding-right: 16px;
      }

      header .container {
        padding-left: 12px;
        padding-right: 12px;
      }

      .hero-visual-left {
        padding: 32px 16px 24px;
      }

      .hero-visual-right {
        padding: 0 16px 32px;
      }

      .hero-visual-title {
        font-size: 22px;
      }

      .hero-visual-badge {
        font-size: 13px;
      }

      .hero-visual-lead {
        font-size: 15px;
      }

      .hero h1 {
        font-size: 22px;
      }

      h2 {
        font-size: 20px;
      }

      h3 {
        font-size: 20px;
      }

      p {
        font-size: 18px;
      }

      .btn {
        font-size: 15px;
        padding: 12px 16px;
      }

      main > section,
      main .logo-scroll-section {
        padding-top: 32px;
        padding-bottom: 32px;
      }

      .cta-box {
        padding: 24px 16px;
      }

      .cta-box h2 {
        font-size: 20px;
      }

      .cta-box p {
        font-size: 15px;
      }
    }

    /*
     * スマホ（767px以下）：1カラム
     * タブレット・PC（768px以上）：3カラム（ベースの指定が効く）
     */
    @media (max-width: 767px) {
      /* サービス一覧：ベースの :nth-child 付きセレクタより後に書いて確実に上書き */
      .service-var-2 .category-row:nth-child(2) .service-grid-v2,
      .service-var-2 .category-row:nth-child(3) .service-grid-v2,
      .service-var-2 .category-row:nth-child(4) .service-grid-v2 {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .service-var-2 .category-row:nth-child(2) .card-v2,
      .service-var-2 .category-row:nth-child(3) .card-v2,
      .service-var-2 .category-row:nth-child(4) .card-v2 {
        width: 100%;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
      }

      #reasons .grid-3 {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      #reasons .card {
        width: 100%;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
      }

      #staff .grid-3 {
        grid-template-columns: 1fr;
        gap: 16px;
      }
    }

    /*
     * タブレット（768px〜1024px）：中古車両販売と同様にセクション内で横スクロール
     */
    @media (min-width: 768px) and (max-width: 1024px) {
      /* サービス一覧：各カテゴリのグリッドを横スクロールに */
      .service-var-2 .category-row:nth-child(2) .service-grid-v2,
      .service-var-2 .category-row:nth-child(3) .service-grid-v2,
      .service-var-2 .category-row:nth-child(4) .service-grid-v2 {
        display: flex;
        flex-wrap: nowrap;
        gap: 16px;
        overflow-x: auto;
        padding: 4px 4px 24px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
      }

      .service-var-2 .category-row:nth-child(2) .card-v2,
      .service-var-2 .category-row:nth-child(3) .card-v2,
      .service-var-2 .category-row:nth-child(4) .card-v2 {
        flex: 0 0 min(280px, 85vw);
        min-width: 260px;
        scroll-snap-align: start;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
      }

      .service-var-2 .category-row:nth-child(2) .service-grid-v2::-webkit-scrollbar,
      .service-var-2 .category-row:nth-child(3) .service-grid-v2::-webkit-scrollbar,
      .service-var-2 .category-row:nth-child(4) .service-grid-v2::-webkit-scrollbar {
        height: 8px;
      }

      .service-var-2 .category-row:nth-child(2) .service-grid-v2::-webkit-scrollbar-thumb,
      .service-var-2 .category-row:nth-child(3) .service-grid-v2::-webkit-scrollbar-thumb,
      .service-var-2 .category-row:nth-child(4) .service-grid-v2::-webkit-scrollbar-thumb {
        background: #cbd5e1;
        border-radius: 4px;
      }

      /* 選ばれる理由：横スクロール */
      #reasons .grid-3 {
        display: flex;
        flex-wrap: nowrap;
        gap: 16px;
        overflow-x: auto;
        padding: 4px 4px 24px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
      }

      #reasons .card {
        flex: 0 0 min(280px, 85vw);
        min-width: 260px;
        scroll-snap-align: start;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
      }

      #reasons .grid-3::-webkit-scrollbar {
        height: 8px;
      }

      #reasons .grid-3::-webkit-scrollbar-thumb {
        background: #cbd5e1;
        border-radius: 4px;
      }

      /* サポートメンバー：横スクロール */
      #staff .grid-3 {
        display: flex;
        flex-wrap: nowrap;
        gap: 16px;
        overflow-x: auto;
        padding: 4px 4px 24px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
      }

      #staff .grid-3 .card {
        flex: 0 0 min(280px, 85vw);
        min-width: 260px;
        scroll-snap-align: start;
      }

      #staff .grid-3::-webkit-scrollbar {
        height: 8px;
      }

      #staff .grid-3::-webkit-scrollbar-thumb {
        background: #cbd5e1;
        border-radius: 4px;
      }
    }

      .news-ticker {
        padding: 10px 0;
        font-size: 20px;
      }

      .news-ticker .container {
        display: flex;
        align-items: center;
        gap: 16px;
      }

      .news-label {
        background: #2C4390;
        color:#ffffff;
        padding: 2px 10px;
        font-weight: 700;
        font-size: 14px;
      }

    /* ロゴスクロール */
      .logo-scroll-section {
        padding: 32px 0;
        background: #ffffff;
        overflow: hidden;
      }

      .logo-scroll-title {
        text-align: center;
        font-size: 1rem;
        color: #888;
        margin-bottom: 24px;
      }

      .logo-scroll-wrapper {
        overflow: hidden;
        width: 100%;
      }

      .logo-list {
        display: flex;
        width: max-content;
        animation: scroll-loop 18s linear infinite;
      }

      .logo-group {
        display: flex;
        gap: 24px;
        padding-right: 24px;
      }

      @keyframes scroll-loop {
        0% {
          transform: translateX(0);
        }

        100% {
          transform: translateX(-50%);
        }
      }

      .logo-item {
        flex-shrink: 0;
        width: 150px;
        height: 60px;
        background: transparent;
        border: none;
        border-radius: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px 12px;
      }

      .logo-item img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }

    /* index.html以外：ファーストビュー以外に左右10pxの余白（スマホ） */
    @media (max-width: 767px) {
      body.page-inner main > *:not(.hero),
      body.page-inner main > *:not(.hero).container {
        padding-left: 10px;
        padding-right: 10px;
      }
      body.page-inner main > *:not(.hero) .container {
        padding-left: 10px;
        padding-right: 10px;
      }
    }
