﻿/* ======================
   Oswald フォント
   ====================== */
@font-face {
  font-family: "Oswald";
  src: url("assets/fonts/Oswald/Oswald-VariableFont_wght.ttf")
    format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ======================
   CSS カスタムプロパティ（変数）
   ====================== */
:root {
  --color-navy: #0a2244;
  --color-navy-light: #0d2e5a;
  --color-blue: #1464bb;
  --color-yellow: #f5c200;
  --color-yellow-dark: #e0b100;
  --color-cream: #fffae0;
  --color-white: #ffffff;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-border: #e0e0e0;

  --font-main: "Noto Sans JP", sans-serif;

  --inner-width: 1100px;
  --header-height: 80px;

  --radius: 8px;
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* ======================
   リセット・基本設定
   ====================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--color-text);
  line-height: 1.7;
  background-color: var(--color-white);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.75;
}

ul,
ol {
  list-style: none;
}

/* ======================
   共通レイアウト
   ====================== */
.inner {
  width: 90%;
  max-width: var(--inner-width);
  margin: 0 auto;
}

/* ======================
   共通ボタン
   ====================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition:
    background-color 0.2s,
    transform 0.1s;
}

.btn--yellow {
  background-color: var(--color-yellow);
  color: var(--color-navy);
}

.btn--yellow:hover {
  background-color: var(--color-yellow-dark);
  opacity: 1;
  transform: translateY(-2px);
}

/* ======================
   共通：セクションタイトル
   ====================== */
.section-title {
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
  color: #1f2f6d;
  margin-bottom: 12px;
}

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

.section-lead {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: 48px;
}

.section-lead--white {
  color: rgba(255, 255, 255, 0.85);
}

/* ======================
   メインビジュアル
   ====================== */
.mv {
  position: relative;
}

.mv__img-wrap {
  width: 100%;
  line-height: 0;
}

.mv__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* scrollアニメーション */
.mv__scroll {
  position: absolute;
  top: 86%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 5;
}

.mv__scroll-text {
  font-size: 0.95rem;
  font-weight: 400;
  color: #222222;
  letter-spacing: 0;
  line-height: 1;
  font-family: var(--font-main);
}

.mv__scroll-mouse {
  width: 26px;
  height: 50px;
  background: #f2f2f2;
  border: 1.5px solid #8f8f8f;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.mv__scroll-wheel {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 10px;
  background-color: #8f8f8f;
  border-radius: 999px;
  animation: scroll-wheel 1.6s ease-in-out infinite;
}

@keyframes scroll-wheel {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }

  70% {
    transform: translateX(-50%) translateY(12px);
    opacity: 0.35;
  }

  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

/* ======================
   追従ボタン（右下固定）
   ====================== */
.sticky-btn {
  position: fixed;
  bottom: 20px;
  right: 16px;
  z-index: 200;
  width: 180px;
  display: block;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  text-decoration: none;
}

/* PC：画像のみ表示 */
.sticky-btn__pc-img {
  display: block;
  width: 100%;
  height: auto;
}

.sticky-btn__sp-img {
  display: none;
}

/* SP：横長バナーのみ表示 */
@media screen and (max-width: 768px) {
  .sticky-btn {
    left: 0;
    right: auto;
    bottom: 0;
    width: 100%;
    z-index: 300;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    display: block;
    padding: 0;
    background: none;
  }

  .sticky-btn__pc-img {
    display: none;
  }

  .sticky-btn__sp-img {
    display: block;
    width: 100%;
    height: auto;
  }
}

/* ======================
   ヘッダー（スクロールで出現）
   ====================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  will-change: transform;
}

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

.header__top {
  border-bottom: 1px solid var(--color-border);
  padding: 16px 0;
}

.header__top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__logo-img {
  height: 48px;
  width: auto;
}

.header__logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-navy);
}

.header__contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--color-yellow);
  color: var(--color-navy);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: 8px;
  transition: background-color 0.2s;
}

.header__contact-btn:hover {
  background-color: var(--color-yellow-dark);
  opacity: 1;
}

.header__contact-icon {
  font-size: 1rem;
}

.header__nav {
  padding: 12px 0;
}

.header__nav-list {
  display: flex;
  gap: 0;
  justify-content: center;
}

.header__nav-list a {
  display: block;
  padding: 6px 14px;
  font-size: 0.9rem;
  color: var(--color-text);
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s;
}

.header__nav-list a:hover {
  color: var(--color-navy);
  opacity: 1;
}

/* ======================
   こんなお悩みありませんか？
   ====================== */
.features {
  background-color: var(--color-white);
  padding: 120px 0 80px;
}

.features__heading {
  margin-bottom: 8px;
}

.features__heading::after {
  content: "";
  display: block;
  width: 150px;
  height: 2px;
  background-color: #4a5f96;
  margin: 16px auto 56px;
}

.features__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.features__item {
  flex: 0 1 320px;
  min-width: 0;
}

/* 丸いコンテナ */
.features__circle {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background-color: #d9d9d9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  margin: 0 auto;
}

/* アイコン部分：PNG上部をtrimmingしつつclip-pathで白角をマスク */
.features__icon {
  width: 180px;
  height: 120px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  flex-shrink: 0;
}

.features__icon--1 {
  background-image: url("assets/images/features-icon-1.png");
}

.features__icon--2 {
  background-image: url("assets/images/features-icon-2.png");
}

.features__icon--3 {
  background-image: url("assets/images/features-icon-3.png");
}

/* テキスト（HTMLで記述） */
.features__text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.7;
  text-align: center;
}

/* ======================
   4つの強み
   ====================== */
.strengths {
  background-color: #173b73;
  padding: 100px 0 80px;
  position: relative;
}

/* 上部のV字（白い下向き三角形をclip-pathで表現） */
.strengths::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 72px;
  background-color: var(--color-white);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
  z-index: 2;
}

.strengths::after {
  content: "";
  position: absolute;
  top: 65px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 22px;
  background-color: var(--color-white);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
  z-index: 3;
}

.strengths__inner {
  position: relative;
  z-index: 1;
}

.strengths__heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffee00;
  text-align: center;
  margin-bottom: 0;
}

.strengths__heading.font--small {
  font-size: 2.5rem;
}

.strengths__heading::after {
  content: "";
  display: block;
  width: 94px;
  height: 2px;
  background-color: var(--color-white);
  margin: 16px auto 0;
}

/* 強みの各アイテム */
.strength-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 0 0 64px;
  position: relative;
}

.strength-item__title::after {
  content: none;
}

body .font--small {
  font-size: 1.4rem;
}

/* ======================
   4つの強み 修正版
   ====================== */

.strength-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 0 0 64px;
  position: relative;
}

.strength-item__body {
  flex: 1;
  min-width: 0;
  max-width: 520px;
  padding-left: 0;
}

.strength-item__body--right {
  padding-left: 0;
  padding-right: 0;
}

.strength-item__header {
  position: relative;
  margin-bottom: 24px;
  z-index: 2;
}

.strength-item__heading-group {
  position: relative;
  display: flex;
  /* align-items: flex-end; */
  justify-content: center;
  gap: 14px;
  padding-bottom: 16px;
}

.strength-item__heading-group::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(100%, 1000px);
  height: 5px;
  background-color: #ffee00;
  z-index: 0;
}

.strength-item__num {
  position: static;
  font-size: 3.5rem;
  font-weight: 900;
  color: #ffee00;
  line-height: 1;
  font-family: "Oswald", sans-serif;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.strength-item__title {
  width: auto;
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
  color: #ffee00;
  line-height: 1.2;
  text-align: center;
  position: relative;
  z-index: 1;
}

.strength-item__text {
  color: var(--color-white);
  font-size: 0.9375rem;
  line-height: 2.2;
  max-width: 34em;
  position: relative;
  z-index: 2;
  margin-top: 24px;
}

.strength-item__cars {
  flex: 1;
  position: relative;
  height: 520px;
  z-index: 1;
}

.strength-item__photo {
  flex: 0 0 320px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  align-self: center;
  position: relative;
  z-index: 1;
}

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

/* 車画像エリアはバーより前面 */
.strength-item__cars {
  position: relative;
  z-index: 1;
}

/* テキストボディもバーより前面 */
.strength-item__header,
.strength-item__body {
  position: relative;
  z-index: 1;
}

.strength-item__text {
  color: var(--color-white);
  font-size: 0.9375rem;
  line-height: 2.5;
  max-width: 20em;
  position: relative;
  z-index: 2;
  margin-top: 24px;
}

/* 車画像の斜め積み重ね */
.strength-item__cars {
  flex: 1;
  position: relative;
  height: 520px;
}

.strength-car {
  position: absolute;
}

.strength-car--1 {
  width: 185px;
  top: 110px;
  left: 20px;
  z-index: 1;
  transform: scaleX(-1);
  /* 車1のみ左向きに反転 */
}

.strength-car--2 {
  width: 245px;
  top: 150px;
  left: 60px;
  z-index: 2;
}

.strength-car--3 {
  width: 285px;
  top: 250px;
  left: 90px;
  z-index: 3;
}

.strength-car--4 {
  width: 325px;
  top: 370px;
  left: 50px;
  z-index: 4;
}

/* 02以降：写真左・テキスト右レイアウト */
.strength-item--reverse {
  flex-direction: row;
}

.strength-item__photo {
  flex: 0 0 320px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  align-self: center;
  position: relative;
  z-index: 2;
}

.strength-item__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 2;
}

.strength-item__body--right {
  padding-right: 0;
  padding-left: 0;
}

/* ======================
   ラインナップ
   ====================== */
.lineup {
  background-color: #d4e5f5;
  padding: 80px 0 100px;
}

.lineup__heading {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--color-navy);
  text-align: center;
  margin-bottom: 12px;
}

.lineup__heading-line {
  width: 80px;
  height: 3px;
  background-color: var(--color-navy);
  margin: 0 auto 50px;
}

/* テーブルラッパー */
.lineup__table-wrap {
  overflow-x: auto;
}

.lineup__table {
  width: 100%;
  min-width: 580px;
  border-collapse: collapse;
  background-color: var(--color-white);
}

/* ヘッダー行 */
.lineup__th {
  background-color: #173b73;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  padding: 18px 20px;
}

.lineup__th--car {
  width: 30%;
}

/* 車種セル */
.lineup__car-cell {
  padding: 16px 20px;
  border-bottom: 1px solid #d0d8e8;
  vertical-align: middle;
  text-align: center;
}

.lineup__car-name {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  text-decoration: underline;
  margin-bottom: 10px;
  text-align: center;
}

.lineup__car-name small {
  font-size: 0.8rem;
  font-weight: 400;
  text-decoration: none;
  margin-left: 6px;
}

/* ラインナップ共通 */
.lineup__car-imgs {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
  margin-top: 8px;
}

.lineup__car-imgs img {
  flex: 0 0 auto;
  height: 95px;
  /* ←ここが基準 */
  width: auto;
  object-fit: contain;
}

/* 1行目：軽自動車 */
.lineup__table tbody tr:nth-of-type(1) .lineup__car-imgs img:nth-child(1) {
  width: 170px;
}

.lineup__table tbody tr:nth-of-type(1) .lineup__car-imgs img:nth-child(2) {
  width: 155px;
  margin-left: -60px;
}

/* 2行目：コンパクトカー */
.lineup__table tbody tr:nth-of-type(2) .lineup__car-imgs img:nth-child(1) {
  width: 165px;
}

.lineup__table tbody tr:nth-of-type(2) .lineup__car-imgs img:nth-child(2) {
  width: 155px;
  margin-left: -70px;
}

/* 3行目：ステーションワゴン */
.lineup__table tbody tr:nth-of-type(3) .lineup__car-imgs img:nth-child(1) {
  width: 150px;
}

.lineup__table tbody tr:nth-of-type(3) .lineup__car-imgs img:nth-child(2) {
  width: 155px;
  margin-left: -60px;
}

/* 4行目：ミニバン */
.lineup__table tbody tr:nth-of-type(4) .lineup__car-imgs img:nth-child(1) {
  width: 178px;
}

.lineup__table tbody tr:nth-of-type(4) .lineup__car-imgs img:nth-child(2) {
  width: 178px;
  margin-left: -70px;
}

/* 5行目：軽トラック */
.lineup__table tbody tr:nth-of-type(5) .lineup__car-imgs img:nth-child(1) {
  width: 145px;
}

.lineup__table tbody tr:nth-of-type(5) .lineup__car-imgs img:nth-child(2) {
  width: 145px;
  margin-left: -50px;
}

/* 料金セル（当日・1週間） */
.lineup__price-cell {
  text-align: center;
  vertical-align: middle;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-navy);
  border-bottom: 1px solid #d0d8e8;
  border-left: 1px solid #d0d8e8;
  padding: 20px 16px;
  white-space: nowrap;
}

/* 1ヶ月セル */
.lineup__monthly-cell {
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #d0d8e8;
  border-left: 1px solid #d0d8e8;
  padding: 20px 16px;
  position: relative;
}

.lineup__badge {
  display: inline-block;
  background-color: #ffee00;
  color: var(--color-navy);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 6px;
}

.lineup__monthly-price {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 6px;
}

.lineup__sub-note {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text);
  line-height: 1.6;
  text-align: left;
}

/* 脚注 */
/* 注釈・お問い合わせ 白枠ボックス */
.lineup__bottom-box {
  background-color: var(--color-white);
  border: 1px solid #c0cedf;
  padding: 28px 32px;
  margin-top: 0;
}

.lineup__footnote-wrap {
  text-align: center;
  margin-bottom: 16px;
}

.lineup__footnote {
  display: inline-block;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.8;
}

.lineup__contact-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  margin-top: 12px;
  margin-bottom: 14px;
}

.lineup__contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.lineup__contact-btn {
  display: inline-block;
  background-color: #3a7d1e;
  color: #ffee00;
  font-size: 1rem;
  font-weight: 700;
  padding: 13px 32px;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.05em;
}

.lineup__tel-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--color-navy);
}

.lineup__tel-icon {
  display: inline-flex;
  align-items: center;
}

.lineup__tel-icon svg {
  width: 1.8rem;
  height: 1.8rem;
  stroke-width: 1;
}

.lineup__tel-number {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* 損害保険・整備工場向けバナー */
.lineup__banner {
  position: relative;
  background-image: url("assets/images/strength-maintenance.jpg");
  background-size: cover;
  background-position: center;
  border: 2px solid #3a7d1e;
  padding: 28px 32px;
  margin-top: 16px;
  text-align: center;
  overflow: hidden;
}

.lineup__banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
}

.lineup__banner-text {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 16px;
}

.lineup__banner-btn {
  position: relative;
  z-index: 1;
  display: inline-block;
  background-color: #3a7d1e;
  color: #ffee00;
  font-size: 1rem;
  font-weight: 700;
  padding: 13px 48px;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.05em;
}

/* ======================
   衛生管理に関する取り組み
   ====================== */
.hygiene {
  background-color: var(--color-white);
  padding: 80px 0 100px;
}

.hygiene__heading {
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-navy);
  margin-bottom: 16px;
}

.hygiene__heading-line {
  width: 60px;
  height: 3px;
  background-color: var(--color-navy);
  margin: 0 auto 48px;
}

.hygiene__icons {
  display: flex;
  justify-content: center;
  gap: 48px;
  list-style: none;
  margin-bottom: 48px;
}

.hygiene__circle {
  width: 207px;
  height: 207px;
  object-fit: contain;
}

.hygiene__text {
  text-align: center;
  line-height: 2.4;
  font-size: 0.95rem;
  color: var(--color-text);
}

/* ======================
   店舗紹介
   ====================== */
.store {
  background-color: var(--color-white);
  padding: 80px 0;
}

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

.store__img-wrap {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.store__content {
  flex: 1;
}

.store__title {
  text-align: left;
  margin-bottom: 28px;
}

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

.store__info-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}

.store__info-row:first-child {
  border-top: 1px solid var(--color-border);
}

.store__info-row dt {
  font-weight: 700;
  color: var(--color-navy);
}

.store__info-row dd {
  color: var(--color-text);
}

/* ======================
   各店舗お問い合わせ
   ====================== */
.contact-stores {
  background-color: #fffbc4;
  padding: 80px 0 100px;
}

.contact-stores__heading {
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-navy);
  margin-bottom: 16px;
}

.contact-stores__heading-line {
  width: 60px;
  height: 3px;
  background-color: var(--color-navy);
  margin: 0 auto 40px;
}

.contact-stores__lead {
  text-align: center;
  line-height: 2.4;
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: 48px;
}

.contact-stores__store {
  margin-bottom: 48px;
}

.contact-stores__store-header {
  background-color: var(--color-navy);
  padding: 20px 32px;
  border-radius: 12px 12px 0 0;
}

.contact-stores__store-name {
  color: var(--color-white);
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
}

.contact-stores__store-body {
  background-color: var(--color-white);
  border-radius: 0 0 8px 8px;
  padding: 32px;
}

.contact-stores__store-catch {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 20px;
}

.contact-stores__store-columns {
  display: flex;
  gap: 40px;
}

.contact-stores__store-left {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-stores__store-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.contact-stores__store-map {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}

.contact-stores__store-right {
  flex: 1;
  min-width: 0;
}

.contact-stores__info {
  width: 100%;
  margin-bottom: 24px;
}

.contact-stores__info-row {
  display: flex;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid #e0e8f0;
  gap: 20px;
  font-size: 0.9rem;
}

.contact-stores__info-row dt {
  flex: 0 0 72px;
  font-weight: 700;
  color: var(--color-navy);
}

.contact-stores__info-row dd {
  flex: 1;
  line-height: 1.7;
  color: var(--color-text);
}

.contact-stores__store-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-stores__btn {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.contact-stores__btn--hp {
  background-color: #ffcc00;
  color: var(--color-navy);
}

.contact-stores__btn--reserve {
  background-color: #3a7d1e;
  color: #ffffff;
}

/* ======================
   ご利用の流れ
   ====================== */
.flow {
  background-color: var(--color-white);
  padding: 190px 0 100px;
  position: relative;
  margin-top: -1px;
}

/* strengths下部のネイビーV字：flowの::beforeで実現 */
.flow::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 105px;
  background-color: #173b73;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
}

.flow__heading {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-navy);
  text-align: center;
  margin-bottom: 12px;
}

.flow__heading-line {
  width: 80px;
  height: 3px;
  background-color: var(--color-navy);
  margin: 0 auto 60px;
}

/* 各行のラッパー */
.flow__row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 40px;
}

.flow__row--center {
  justify-content: center;
}

/* 各ステップ */
.flow__row--center .flow__item {
  flex: 0 0 255px;
  max-width: 255px;
}

/* 2行目（04・05）はmax-widthを1行目の各カラム幅に合わせる */
.flow__item {
  flex: 0 0 255px;
  max-width: 255px;
  text-align: center;
}

/* 矢印 */
.flow__arrow {
  font-size: 0;
  flex: 0 0 42px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--color-navy);
  margin-top: 150px;
  display: block;
  margin-left: 6px;
  margin-right: 6px;
}

/* 画像ラッパー：番号バッジ付き */
.flow__img-wrap {
  position: relative;
  margin-bottom: 16px;
}

.flow__img-wrap img {
  width: 230px;
  height: 200px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

/* 番号バッジ */
.flow__num {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: #173b73;
  color: var(--color-white);
  font-size: 2rem;
  font-weight: 900;
  font-family: "Oswald", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.flow__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 10px;
  text-align: center;
}

.flow__text {
  font-size: 0.875rem;
  color: var(--color-text);
  line-height: 1.8;
  text-align: left;
}

/* ======================
   よくある質問
   ====================== */
.faq {
  background-color: var(--color-white);
  padding: 80px 0 100px;
}

.faq__heading {
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-navy);
  margin-bottom: 16px;
}

.faq__heading-line {
  width: 60px;
  height: 3px;
  background-color: var(--color-navy);
  margin: 0 auto 48px;
}

.faq__list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  background-color: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.faq__item {
  padding: 28px 32px;
  border-bottom: 1px solid #e8edf5;
}

.faq__item:last-child {
  border-bottom: none;
}

.faq__q {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.faq__q-label {
  flex: 0 0 auto;
  color: var(--color-navy);
  font-size: 2rem;
  font-weight: 900;
  font-family: "Oswald", sans-serif;
  line-height: 1;
}

.faq__q-text {
  flex: 1;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.6;
  padding-top: 6px;
}

.faq__a {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.faq__a-label {
  flex: 0 0 auto;
  color: #e87722;
  font-size: 2rem;
  font-weight: 900;
  font-family: "Oswald", sans-serif;
  line-height: 1;
}

.faq__a-body {
  flex: 1;
  padding-top: 4px;
}

.faq__a-summary {
  font-size: 1rem;
  font-weight: 700;
  color: #e87722;
  margin-bottom: 8px;
}

.faq__a-text {
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.8;
}

/* ======================
   お問い合わせフォーム
   ====================== */
.contact-form {
  background-color: #fffbc4;
  padding: 80px 0 100px;
}

.contact-form__heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--color-navy);
  text-align: center;
  margin-bottom: 12px;
}

.contact-form__heading-line {
  width: 60px;
  height: 4px;
  background-color: var(--color-navy);
  margin: 0 auto 56px;
}

.contact-form__form {
  max-width: 600px;
  margin: 0 auto;
}

/* 各フィールドブロック：ラベルが上、入力欄が下 */
.contact-form__row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.contact-form__label,
.contact-form__row > div.contact-form__label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* 必須・任意バッジ */
.contact-form__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  white-space: nowrap;
}

.contact-form__badge--required {
  background-color: #d9534f;
  color: #fff;
}
.confirm .contact-form__badge {
  display: none;
}
.contact-form__badge--optional {
  background-color: #999;
  color: #fff;
}

/* 入力欄共通 */
.contact-form__input,
.contact-form__textarea,
.contact-form__select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  background-color: #fff;
  color: #333;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
  box-sizing: border-box;
}

.contact-form__input:focus,
.contact-form__textarea:focus,
.contact-form__select:focus {
  border-color: var(--color-navy);
}

.contact-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.contact-form__textarea {
  height: 180px;
  resize: vertical;
}

/* ご住所：複数フィールドのまとまり */
.contact-form__address-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form__zip-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-form__input--zip {
  width: 180px;
  flex: 0 0 180px;
}

.contact-form__zip-link {
  font-size: 0.9rem;
  color: #1a6fc4;
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.contact-form__zip-link:hover {
  text-decoration: underline;
}
.confirm .contact-form__zip-link {
  display: none;
}

.contact-form__zip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background-color: #333;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

/* 送信ボタン */
.contact-form__submit-wrap {
  text-align: center;
  margin-top: 48px;
}

.contact-form__submit {
  display: inline-block;
  background-color: #222;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 64px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s;
  letter-spacing: 0.05em;
}

.contact-form__submit:hover {
  opacity: 0.75;
}
.contact-form__submit.color02 {
  color: #222;
  background-color: #fff;
}
.contact-form__submit {
  width: 330px;
}
.confirm__btn-box {
  display: flex;
}
.modoru-wrap {
  margin-right: 20px;
}
.contact-complete-wrap {
  margin-bottom: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 200px;
  margin-bottom: 200px;
  text-align: center;
}
/* SP対応 */
@media (max-width: 768px) {
  .contact-form__submit {
    width: 100%;
    padding: 16px 24px;
  }

  .contact-form__input--zip {
    width: 140px;
    flex: 0 0 140px;
  }
  .contact-complete-wrap {
    margin-bottom: 40px;
    margin-top: 60px;
    line-height: 1.5;
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
  }

  .finish-modoru {
    margin-top: 1em;
  }
}

/* ======================
   ザ・空港パーキング
   ====================== */

/* 012.pngをセクション全体の背景として使用。
   第1レイヤー：012.png（アーチ画像、80px下から表示）
   第2レイヤー：グラデーション（上80pxは白、以降は黄色）
   → 画像より下のコンテンツも黄色背景が続く */
.parking {
  background-image:
    url("assets/images/parking-bg.png"),
    linear-gradient(to bottom, #fff 80px, #f5cc32 80px);
  background-size:
    100% auto,
    auto;
  background-position:
    center 80px,
    0 0;
  background-repeat: no-repeat, no-repeat;
  margin-top: 60px;
}

/* コンテンツ全体 */
.parking__body {
  padding-top: 200px;
  padding-bottom: 60px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .confirm__btn-box {
    display: flex;
    flex-flow: column nowrap;
  }
  .modoru-wrap {
    order: 2;
  }
  .soushin-wrap {
    order: 1;
    margin-bottom: 20px;
  }
  .parking__body {
    padding-top: 120px;
  }

  .parking__heading {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .parking__heading-line {
    width: 140px;
    margin: 0 auto 20px;
  }

  .parking__strength-badge {
    width: calc(100% - 48px);
    max-width: none;
    margin: 0 auto 24px;
    font-size: 1.05rem;
    padding: 12px 16px;
    border-radius: 999px;
  }
}

/* 見出し */
.parking__heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--color-navy);
  text-align: center;
  margin-bottom: 12px;
}

.parking__heading-line {
  width: 40px;
  height: 3px;
  background-color: var(--color-navy);
  margin: 0 auto 36px;
}

/* 強みバッジ */
.parking__strength-badge {
  display: block;
  background-color: var(--color-navy);
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  padding: 10px 80px;
  border-radius: 40px;
  margin: 0 auto 40px;
  text-align: center;
  max-width: 700px;
}

/* 3カラムカード */
.parking__cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.parking__card {
  width: 280px;
  max-width: 90%;
  background-color: #fff;
  border-radius: 8px;
  padding: 44px 20px 28px;
  position: relative;
  margin-top: 28px;
  flex: 0 0 auto;
}

.parking__card-num {
  width: 68px;
  height: 68px;
  background-color: var(--color-navy);
  color: #fff;
  font-size: 2.2rem;
  font-weight: 900;
  font-family: "Oswald", sans-serif;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* カード上端の中央に絶対配置 */
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.parking__card-title {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--color-navy);
  text-align: center;
  margin-bottom: 6px;
}

.parking__card-price {
  font-size: 1.2rem;
  font-weight: 900;
  color: #d9534f;
  text-align: center;
  margin-bottom: 8px;
}

.parking__card-text {
  font-size: 0.875rem;
  color: #333;
  line-height: 1.7;
  text-align: left;
}

/* 料金表・アクセス */
.parking__info {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.parking__info-block {
  flex: 0 0 auto;
}

/* 料金表ブロック */
.parking__info-block:nth-child(1) {
  flex: 0 0 280px;
}

/* アクセスブロック */
.parking__info-block:nth-child(2) {
  flex: 0 0 460px;
}

.parking__info-heading {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-navy);
  text-align: center;
  margin-bottom: 16px;
}

/* 料金表 */
.parking__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background-color: #fff;
  border-radius: 6px;
  overflow: hidden;
}

.parking__table th,
.parking__table td {
  padding: 10px 16px;
  border-bottom: 1px solid #ddd;
}

.parking__table th {
  background-color: var(--color-navy);
  color: #fff;
  font-weight: 700;
  text-align: left;
}

.parking__table td {
  text-align: left;
}

/* 価格列は右揃え */
.parking__table-price {
  text-align: right !important;
  font-weight: 700;
  white-space: nowrap;
}

.parking__table tr:last-child td {
  border-bottom: none;
}

.parking__table-note {
  font-size: 0.8rem;
  color: #555;
  margin-top: 8px;
}

/* アクセス地図 */
.parking__map {
  width: 100%;
  height: 270px;
  border-radius: 6px;
  border: none;
  display: block;
}

/* 電話・問い合わせバー */
.parking__contact-bar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 56px;
  margin: 0 auto 60px;
  max-width: 788px;
}

/* 左側の白枠ボックス */
.parking__contact-box {
  background-color: #fff;
  border-radius: 10px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
}

/* 左列：事前予約制 ＋ 営業時間 */
.parking__contact-col-reserve {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.parking__contact-reserve {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--color-navy);
  line-height: 1.2;
  white-space: nowrap;
}

.parking__contact-hours {
  font-size: 0.72rem;
  color: #555;
  line-height: 1.3;
  white-space: nowrap;
}

/* 右列：電話番号 ＋ 事業部名 */
.parking__contact-col-tel {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.parking__contact-tel-row {
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 2px solid #222;
  padding-bottom: 3px;
}

.parking__contact-tel-icon {
  color: var(--color-navy);
  display: flex;
  align-items: center;
}

.parking__contact-tel-icon svg {
  width: 28px;
  height: 28px;
}

.parking__contact-tel-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-navy);
  letter-spacing: 0.02em;
  white-space: nowrap;
  line-height: 1;
}

.parking__contact-dept {
  font-size: 0.68rem;
  color: #555;
  line-height: 1.2;
  white-space: nowrap;
}

/* 右側テキスト：白枠なし・黄色背景上 */
.parking__contact-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.4;
  white-space: nowrap;
  margin-left: 0px;
  /* ←ここ変更 */
}

.parking__contact-link {
  color: #e87722;
  font-weight: 900;
  text-decoration: none;
}

.parking__contact-link:hover {
  text-decoration: underline;
}

/* SP対応 */
@media (max-width: 768px) {
  .parking__cards {
    flex-direction: column;
  }

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

  .parking__contact-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .parking__contact-text {
    white-space: normal;
    margin-left: 0;
  }
}

/* ======================
   フッター
   ====================== */
.footer {
  background-color: var(--color-navy);
  padding: 48px 0 80px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__logo img {
  height: 36px;
  width: auto;
}

.footer__logo-text {
  color: var(--color-white);
  font-size: 1.1rem;
  font-weight: 700;
}

.footer__nav-list {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__nav-list a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer__nav-list a:hover {
  color: var(--color-white);
  opacity: 1;
}

.footer__contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-yellow);
  color: var(--color-navy);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 6px;
  text-decoration: none;
  margin-bottom: 8px;
  transition: opacity 0.2s;
}

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

.footer__sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  color: var(--color-navy);
  transition: opacity 0.2s;
}

.footer__sns-link:hover {
  opacity: 0.75;
}

.footer__copy {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

/* ======================
   ハンバーガーボタン
   ====================== */
.hamburger {
  display: none;
  /* PC では非表示 */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger__line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-navy);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

/* ドロワー開時：× に変形 */
.hamburger.is-open .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ======================
   ドロワーメニュー（SP用）
   ====================== */
.drawer {
  display: none;
  /* PC では非表示 */
  position: fixed;
  inset: 0;
  background-color: #fff;
  z-index: 1200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #333;
  line-height: 1;
  padding: 8px;
}

.drawer__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}

.drawer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  width: 100%;
  text-align: center;
}

.drawer__nav-list li {
  border-bottom: 1px solid #eee;
}

.drawer__nav-link {
  display: block;
  padding: 18px 20px;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  text-decoration: none;
}

.drawer__nav-link:hover {
  background-color: #f9f9f9;
}

.drawer__contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-yellow);
  color: var(--color-navy);
  font-size: 1rem;
  font-weight: 700;
  padding: 12px 40px;
  border-radius: 6px;
  text-decoration: none;
}

.drawer__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1100;
}

.drawer__overlay.is-open {
  display: block;
}

/* ======================
   レスポンシブ：タブレット（768px以下）
   ====================== */
@media screen and (max-width: 768px) {
  main {
    width: 100%;
    overflow-x: hidden;
  }

  :root {
    --header-height: 64px;
  }

  /* ヘッダー：ナビ・お問い合わせボタンを非表示 */
  .header__nav,
  .header__contact-btn {
    display: none;
  }

  /* ハンバーガー・ドロワーをSPで表示 */
  .hamburger {
    display: flex;
  }

  .drawer {
    display: flex;
  }

  /* MV */
  .mv__btn {
    font-size: 1rem;
    padding: 16px 40px;
  }

  /* 店舗 */
  .store__inner {
    flex-direction: column;
  }

  .store__title {
    text-align: center;
  }

  /* 特徴 */
  .features__list {
    gap: 40px;
  }

  .features__item {
    flex: 0 1 360px;
    display: flex;
    justify-content: center;
  }

  .features__circle {
    width: 360px;
    height: auto;
    aspect-ratio: 1/1;
  }

  .features__icon {
    width: 300px;
    height: 150px;
    background-size: contain;
    background-position: center;
  }

  .flow__item:not(:last-child)::after {
    display: none;
  }

  /* セクションタイトル */
  .section-title {
    font-size: 1.6rem;
  }

  /* 4つの強み（SP） */
  .strengths {
    padding: 70px 0 40px;
  }

  .strengths__heading {
    font-size: 1.7rem;
    line-height: 1.4;
    margin-bottom: 0;
  }

  .strengths__heading::after {
    width: 210px;
    margin: 14px auto 24px;
  }

  .strength-item,
  .strength-item--reverse {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 0 48px;
  }

  .strength-item__body,
  .strength-item__body--right {
    max-width: none;
    width: 100%;
    /* padding-left: 24px;
    padding-right: 24px; */
  }

  .strength-item__header {
    text-align: center;
    margin-bottom: 20px;
  }

  .strength-item__heading-group {
    display: inline-flex;
    align-items: flex-end;
    gap: 8px;
    position: relative;
    padding-bottom: 14px;
  }

  .strength-item__heading-group::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background-color: #ffee00;
  }

  .strength-item__num {
    position: static;
    font-size: 2.35rem;
    line-height: 1;
    margin: 0 0 4px;
    flex-shrink: 0;
  }

  .strength-item__title {
    width: auto;
    margin: 0;
    font-size: 1.7rem;
    line-height: 1.1;
    text-align: left;
    padding-bottom: 0;
  }

  .strength-item__title::after {
    content: none;
  }

  .strength-item__text {
    max-width: none;
    font-size: 1rem;
    line-height: 2.2;
  }

  .strength-item__photo {
    flex: 0 0 260px;
    /* flexで潰れないよう固定 */
    width: 260px;
    height: 260px;
    margin: 0 auto 20px;
  }

  .strengths__inner > .strength-item:nth-of-type(1) .strength-item__cars {
    order: 1;
    width: 100%;
    height: 500px;
    position: relative;
    margin: 0 auto 20px;
    flex: none;
  }

  .strengths__inner > .strength-item:nth-of-type(1) .strength-item__body {
    order: 2;
    margin-top: 0;
  }

  .strengths__inner > .strength-item:nth-of-type(1) .strength-car--1 {
    width: 220px;
    top: 0;
    left: 20px;
  }

  .strengths__inner > .strength-item:nth-of-type(1) .strength-car--2 {
    width: 250px;
    top: 70px;
    left: 70px;
  }

  .strengths__inner > .strength-item:nth-of-type(1) .strength-car--3 {
    width: 280px;
    top: 180px;
    left: 100px;
  }

  .strengths__inner > .strength-item:nth-of-type(1) .strength-car--4 {
    width: 270px;
    top: 320px;
    left: 70px;
  }

  /* 縦並び */
  .strength-item,
  .strength-item--reverse {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 0 48px;
  }

  /* 01だけ：車→本文 */
  .strengths__inner > .strength-item:nth-of-type(1) .strength-item__cars {
    order: 1;
    width: 100%;
    height: 560px;
    position: relative;
    margin: 0 auto 20px;
  }

  .strengths__inner > .strength-item:nth-of-type(1) .strength-item__body {
    order: 2;
    padding-left: 24px;
    padding-right: 24px;
    margin-top: 20px;
  }

  .strength-item__line {
    display: none;
  }

  /* 車位置 */
  .strengths__inner > .strength-item:nth-of-type(1) .strength-car--1 {
    width: 270px;
    top: 0;
    left: 5px;
  }

  .strengths__inner > .strength-item:nth-of-type(1) .strength-car--2 {
    width: 300px;
    top: 72px;
    left: 70px;
  }

  .strengths__inner > .strength-item:nth-of-type(1) .strength-car--3 {
    width: 330px;
    top: 190px;
    left: 110px;
  }

  .strengths__inner > .strength-item:nth-of-type(1) .strength-car--4 {
    width: 320px;
    top: 330px;
    left: 70px;
  }
}

/* ======================
   レスポンシブ：スマートフォン（480px以下）
   ====================== */
@media screen and (max-width: 480px) {
  .mv__heading {
    font-size: 1.8rem;
  }

  .footer__nav-list {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

@media screen and (max-width: 768px) {
  .strengths__heading {
    margin-top: 40px;
  }
}

/* ===== SPだけ：01.豊富な車種 をひとかたまり + 横いっぱいバー ===== */
@media screen and (max-width: 768px) {
  .strength-item__header {
    text-align: center;
    margin-bottom: 20px;
  }

  .strength-item__heading-group {
    display: inline-flex;
    align-items: flex-end;
    gap: 8px;
    position: relative;
    padding-bottom: 14px;
    align-items: center;
  }

  .strength-item__heading-group::after {
    content: "";
    position: absolute;
    width: 100vw;
    left: 50%;
    bottom: 0;
    height: 3px;
    background-color: #ffee00;
    transform: translateX(-50%);
  }

  .strength-item__num {
    position: static;
    font-size: 2.35rem;
    line-height: 1;
    margin: 0 0 4px;
    flex-shrink: 0;
  }

  .strength-item__title {
    width: auto;
    margin: 0;
    font-size: 1.7rem;
    line-height: 1.1;
    text-align: left;
    padding-bottom: 0;
  }

  .strength-item__title::after {
    content: none;
  }
}

/* ===== PCだけ：元の見た目に戻す ===== */
@media screen and (min-width: 769px) {
  .strength-item__header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    z-index: 2;
  }

  .strength-item__heading-group {
    display: flex;
    align-items: baseline;
    gap: 12px;
    position: static;
    padding-bottom: 0;
  }

  .strength-item__num {
    position: static;
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffee00;
    line-height: 1;
    margin: 0;
    flex-shrink: 0;
  }

  .strength-item__title {
    width: auto;
    margin: 0;
    font-size: 2rem;
    font-weight: 600;
    color: #ffee00;
    line-height: 1.2;
    text-align: left;
    padding-bottom: 0;
    white-space: nowrap;
    /* 改行を防ぐ */
  }

  .strength-item__title::after {
    content: none;
  }
}

@media screen and (max-width: 768px) {
  .strengths__inner > .strength-item:nth-of-type(3) {
    flex-direction: column-reverse;
  }
}

/* ===== SP：レンタルの流れを縦並びにする ===== */
@media screen and (max-width: 768px) {
  .flow {
    padding: 140px 0 80px;
  }

  .flow::before {
    height: 70px;
  }

  .flow__heading {
    font-size: 2rem;
    margin-bottom: 12px;
  }

  .flow__heading-line {
    margin: 0 auto 40px;
  }

  /* 行を横並びから解除 */
  .flow__row,
  .flow__row--center {
    display: block;
    margin-bottom: 0;
  }

  /* 各STEPを縦並び */
  .flow__item,
  .flow__row--center .flow__item {
    display: block;
    width: 100%;
    max-width: none;
    flex: none;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
  }

  .flow__img-wrap {
    margin-bottom: 16px;
  }

  .flow__img-wrap img {
    width: 100%;
    max-width: 320px;
    height: auto;
    margin: 0 auto;
  }

  .flow__num {
    top: 0;
    left: 0;
    width: 72px;
    height: 72px;
    font-size: 1.9rem;
    border-width: 4px;
    transform: translateX(-50%) translateY(-50%);
  }

  .flow__title {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .flow__text {
    font-size: 1rem;
    line-height: 1.9;
    text-align: left;
    max-width: 320px;
    margin: 0 auto;
  }

  /* 矢印を下向き三角形に変更 */
  .flow__arrow {
    font-size: 0;
    display: block;
    width: 0;
    height: 0;
    margin: 28px auto 32px;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 20px solid var(--color-navy);
    border-bottom: 0;
  }
}

/* ===== SP：ラインナップを縦並びカード化 ===== */
@media screen and (max-width: 768px) {
  .lineup {
    padding: 70px 0 80px;
  }

  .lineup__heading {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .lineup__heading-line {
    width: 80px;
    margin: 0 auto 32px;
  }

  .lineup__table-wrap {
    overflow: visible;
  }

  .lineup__table {
    width: 100%;
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0 24px;
    background: transparent;
  }

  /* ヘッダー行はSPでは非表示 */
  .lineup__table thead {
    display: none;
  }

  /* 1車種を1カード化 */
  .lineup__table tbody,
  .lineup__table tr,
  .lineup__table td {
    display: block;
    width: 100%;
  }

  .lineup__table tbody tr {
    background-color: #fff;
    border: 1px solid #cfd8e6;
    margin-bottom: 24px;
  }

  /* 車種名帯 */
  .lineup__car-cell {
    border: none;
    padding: 0;
    text-align: center;
  }

  .lineup__car-name {
    display: block;
    background-color: #173b73;
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 16px 16px 14px;
    margin-bottom: 0;
  }

  .lineup__car-name small {
    color: #fff;
    font-size: 1rem;
    margin-left: 8px;
  }

  /* 車画像 */
  /* まず全画像のベースをそろえる */
  .lineup__car-imgs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    height: 175px;
    /* ← 箱の高さを固定 */
    padding: 0 8px;
    /* ← 上下paddingを消す */
    margin-top: 0;
  }

  .lineup__car-imgs img {
    display: block;
    height: auto;
    max-height: 125px;
    /* ← 画像自体の高さは一定に */
    width: auto !important;
    object-fit: contain;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    transform: none !important;
    position: static !important;
  }

  /* ---------- 1行目：軽自動車 ---------- */
  .lineup__table tbody tr:nth-of-type(1) .lineup__car-imgs img:nth-child(1) {
    width: 45% !important;
    max-width: none !important;
    margin-right: -50px !important;
    margin-left: 0 !important;
  }

  .lineup__table tbody tr:nth-of-type(1) .lineup__car-imgs img:nth-child(2) {
    width: 52% !important;
    max-width: none !important;
    margin-left: -14px !important;
    margin-right: 0 !important;
  }

  /* ---------- 2行目：コンパクトカー ---------- */
  .lineup__table tbody tr:nth-of-type(2) .lineup__car-imgs img:nth-child(1) {
    width: 55% !important;
    max-width: none !important;
    margin-right: -50px !important;
    margin-left: 0 !important;
  }

  .lineup__table tbody tr:nth-of-type(2) .lineup__car-imgs img:nth-child(2) {
    width: 42% !important;
    max-width: none !important;
    margin-left: -16px !important;
    margin-right: 0 !important;
  }

  /* ---------- 3行目：ステーションワゴン ---------- */
  .lineup__table tbody tr:nth-of-type(3) .lineup__car-imgs img:nth-child(1) {
    width: 55% !important;
    max-width: none !important;
    margin-right: -60px !important;
    margin-left: 0 !important;
  }

  .lineup__table tbody tr:nth-of-type(3) .lineup__car-imgs img:nth-child(2) {
    width: 55% !important;
    max-width: none !important;
    margin-left: -12px !important;
    margin-right: 0 !important;
  }

  /* ---------- 4行目：ミニバン ---------- */
  .lineup__table tbody tr:nth-of-type(4) .lineup__car-imgs img:nth-child(1) {
    width: 58% !important;
    max-width: none !important;
    margin-right: -55px !important;
    margin-left: 0 !important;
  }

  .lineup__table tbody tr:nth-of-type(4) .lineup__car-imgs img:nth-child(2) {
    width: 52% !important;
    max-width: none !important;
    margin-left: -18px !important;
    margin-right: 0 !important;
  }

  /* ---------- 5行目：軽トラック ---------- */
  .lineup__table tbody tr:nth-of-type(5) .lineup__car-imgs img:nth-child(1) {
    width: 55% !important;
    max-width: none !important;
    margin-right: -42px !important;
    margin-left: 0 !important;
  }

  .lineup__table tbody tr:nth-of-type(5) .lineup__car-imgs img:nth-child(2) {
    width: 45% !important;
    max-width: none !important;
    margin-left: -10px !important;
    margin-right: 0 !important;
  }

  /* 料金欄共通 */
  .lineup__price-cell,
  .lineup__monthly-cell {
    border: none;
    border-top: 1px solid #cfd8e6;
    padding: 22px 20px;
    text-align: center;
  }

  /* 擬似見出しを追加 */
  .lineup__table tbody tr td:nth-child(2)::before {
    content: "当日";
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #173b73;
    margin-bottom: 10px;
  }

  .lineup__table tbody tr td:nth-child(3)::before {
    content: "1週間";
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #173b73;
    margin-bottom: 10px;
  }

  .lineup__table tbody tr td:nth-child(4)::before {
    content: "1ヶ月";
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #173b73;
    margin-bottom: 10px;
  }

  .lineup__price-cell {
    font-size: 1.1rem;
    color: #173b73;
  }

  .lineup__price-cell br {
    display: none;
  }

  .lineup__price-cell {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
  }

  .lineup__monthly-cell {
    padding-bottom: 24px;
  }

  .lineup__badge {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }

  .lineup__monthly-price {
    font-size: 3rem;
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .lineup__sub-note {
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.7;
  }

  /* 下の注釈ボックス */
  .lineup__bottom-box {
    padding: 24px 20px;
    margin-top: 8px;
  }

  .lineup__footnote {
    font-size: 0.85rem;
    line-height: 1.8;
  }

  .lineup__contact-text {
    line-height: 1.8;
  }

  .lineup__contact-row {
    flex-direction: column;
    gap: 14px;
    display: block;
    text-align: center;
  }

  .lineup__contact-btn {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 15px;
  }

  .lineup__tel-number {
    font-size: 1.8rem;
  }

  .lineup__banner {
    padding: 22px 18px;
  }

  .lineup__banner-text {
    line-height: 1.8;
  }

  .lineup__banner-btn {
    width: 100%;
    max-width: 320px;
    padding: 13px 24px;
  }
}

.yen {
  font-size: 0.6em;
  margin-left: 2px;
}

.lineup__footnote-wrap {
  text-align: center;
}

.lineup__footnote {
  display: inline-block;
  text-align: left;
  font-size: 0.85rem;
  line-height: 1.8;
}

.lineup__contact-text {
  text-align: left;
  line-height: 1.8;
  margin-bottom: 16px;
}

.lineup__contact-row {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.lineup__contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 260px;
  min-height: 54px;
  padding: 0 24px;
  text-align: center;
}

.lineup__tel-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--color-navy);
}

.lineup__tel-icon {
  font-size: 1.9rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lineup__tel-number {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .lineup__contact-row .lineup__tel-number {
    font-size: 1.4rem;
  }

  .hygiene {
    padding: 56px 0 64px;
  }

  .hygiene__heading {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .hygiene__heading-line {
    width: 140px;
    margin: 0 auto 28px;
  }

  .hygiene__icons {
    gap: 16px;
    margin-bottom: 24px;
  }

  .hygiene__circle {
    width: 150px;
    height: 150px;
  }

  .hygiene__text {
    font-size: 0.95rem;
    line-height: 1.9;
    text-align: left;
  }

  .contact-stores__heading {
    font-size: 1.5rem;
  }

  .contact-stores__store-catch {
    padding: 20px 50px 0;
    text-align: center;
    margin-bottom: 0;
    line-height: 1.2;
  }
}

@media screen and (max-width: 768px) {
  .contact-stores__heading-line {
    width: 140px;
    margin: 0 auto 24px;
  }

  .contact-stores__lead {
    text-align: left;
    line-height: 2;
  }
}

@media screen and (max-width: 768px) {
  /* 店舗カード全体 */
  .contact-stores__store-body {
    padding: 0 0 24px;
  }

  /* 店舗名の帯：上だけ角丸 */
  .contact-stores__store-header {
    border-radius: 18px 18px 0 0;
    padding: 18px 20px;
  }

  .contact-stores__store-name {
    font-size: 1.05rem;
    line-height: 1.5;
  }

  /* 中身を縦並びにする */
  .contact-stores__store-columns {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 12px 16px 0;
  }

  .contact-stores__store-left,
  .contact-stores__store-right {
    flex: none;
    width: 100%;
  }

  /* 店舗画像と地図を横幅いっぱいにしすぎない */
  .contact-stores__store-photo,
  .contact-stores__store-map {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    overflow: hidden;
    display: block;
  }

  /* 右側情報 */
  .contact-stores__info {
    margin-bottom: 16px;
  }

  .contact-stores__info-row {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 12px;
    padding: 14px 0;
    align-items: start;
  }

  .contact-stores__info-row dt {
    flex: none;
  }

  /* ボタンも内側幅でそろえる */
  .contact-stores__store-btns {
    gap: 12px;
  }

  .contact-stores__btn {
    width: 100%;
    max-width: none;
    padding: 14px 16px;
    border-radius: 4px;
  }
}

@media screen and (max-width: 768px) {
  .faq__heading-line {
    width: 180px;
    margin: 30 auto 24px;
  }
}

@media screen and (max-width: 768px) {
  .contact-form__heading-line {
    width: 160px;
    margin: 0 auto 24px;
  }
}

@media screen and (max-width: 768px) {
  .parking__heading-line {
    width: 140px;
    margin: 0 auto 24px;
  }
}

@media screen and (max-width: 768px) {
  /* セクション全体 */
  .parking {
    background-color: #fff;
  }

  .parking__arch-area {
    position: relative;
    height: auto;
    overflow: hidden;
    background-color: #ffffff;
    padding-top: 38px;
    padding-bottom: 24px;
  }

  .parking__arch-area::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 34px;
    transform: translateX(-50%);
    width: 140vw;
    height: 140vw;
    min-width: 520px;
    min-height: 520px;
    max-width: 760px;
    max-height: 760px;
    border-radius: 50%;
    background-color: #f5cc32;
    z-index: 0;
  }

  .parking__arch-img {
    display: none;
  }

  .parking__over-arch {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 108px 0 0;
    margin-top: 0;
    text-align: center;
  }

  .parking__lower {
    background-color: #f5cc32;
    padding: 0 0 72px;
    margin-top: -1px;
  }

  /* 見出し */
  .parking__heading {
    font-size: 1.7rem;
    line-height: 1.4;
    margin-top: 45px;
    margin-bottom: 12px;
  }

  .parking__heading-line {
    width: 120px;
    margin: 0 auto 50px;
  }

  /* 強みバッジ */
  .parking__strength-badge {
    max-width: 420px;
    width: 100%;
    font-size: 1.2rem;
    padding: 12px 20px;
    margin: 0 auto 56px;
    border-radius: 999px;
  }

  /* 3つの強みカード */
  .parking__cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 28px;
  }

  .parking__card {
    width: calc(100% - 48px);
    max-width: none;
    margin: 28px auto 0;
    padding: 46px 22px 24px;
    border-radius: 10px;
  }

  .parking__card-num {
    width: 84px;
    height: 84px;
    font-size: 2.8rem;
    top: 0;
  }

  .parking__card-title {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 6px;
  }

  .parking__card-price {
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 8px;
  }

  .parking__card-text {
    font-size: 0.875rem;
    line-height: 1.7;
    text-align: left;
  }

  /* 料金表・アクセスを縦並び */
  .parking__info {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 24px;
  }

  .parking__info-block,
  .parking__info-block:nth-child(1),
  .parking__info-block:nth-child(2) {
    flex: none;
    width: calc(100% - 48px);
    max-width: none;
    margin: 0 auto;
  }

  .parking__info-heading {
    font-size: 1.25rem;
    margin-bottom: 12px;
    text-align: center;
  }

  /* 料金表 */
  .parking__table {
    font-size: 1rem;
    border-radius: 8px;
    overflow: hidden;
  }

  .parking__table th,
  .parking__table td {
    padding: 12px 14px;
  }

  .parking__table-note {
    font-size: 0.75rem;
    line-height: 1.7;
    margin-top: 8px;
    text-align: center;
  }

  /* 地図 */
  .parking__map {
    width: calc(100% - 8px);
    height: 220px;
    margin: 0 auto 12px;
    border-radius: 8px;
    display: block;
  }

  /* 事前予約制の白い板 */
  .parking__contact-bar {
    display: block;
    max-width: none;
    margin: 0 auto 24px;
  }

  .parking__contact-box {
    width: calc(100% - 48px);
    margin: 0 auto;
    padding: 20px 18px;
    border-radius: 10px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }

  .parking__contact-col-reserve {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }

  .parking__contact-col-tel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 100%;
  }

  .parking__contact-reserve {
    font-size: 1.2rem;
  }

  .parking__contact-hours {
    font-size: 0.8rem;
  }

  .parking__contact-tel-row {
    gap: 6px;
    padding-bottom: 4px;
    justify-content: center;
  }

  .parking__contact-tel-num {
    font-size: 1.5rem;
  }

  .parking__contact-dept {
    font-size: 0.75rem;
  }

  /* 下の案内文 */
  .parking__contact-text {
    width: calc(100% - 48px);
    margin: 24px auto 0;
    font-size: 1.4rem;
    line-height: 1.3;
    white-space: normal;
    text-align: center;
  }
}

/* ザ・空港パーキング：下の要素を上に詰める */
.parking__lower {
  margin-top: -240px;
  position: relative;
  z-index: 1;
  padding-top: 0;
}

@media screen and (max-width: 768px) {
  .parking__lower {
    margin-top: -120px;
  }
}

/* ===== ヘッダー中央寄せ調整（PC） ===== */
@media screen and (min-width: 769px) {
  .header__top-inner {
    position: relative;
    justify-content: center;
  }

  .header__logo {
    justify-content: center;
  }

  .header__contact-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* ===== ヘッダー上段の下線を消す ===== */
.header__top {
  border-bottom: none !important;
}

/* ===== 悩みセクション テキスト調整 ===== */
.features__text {
  color: #203e6b;
  font-weight: 800;
}

/* ===== 4つの強み 上余白 ===== */
.strengths {
  padding-top: 160px;
}

/* ===== PC：01だけ、左テキスト＋右画像をセットで中央寄せ ===== */
@media screen and (min-width: 769px) {
  .strengths__inner > .strength-item:nth-of-type(1) {
    display: grid;
    grid-template-columns: 520px 420px;
    column-gap: 80px;
    justify-content: center;
    align-items: center;
    max-width: 1020px;
    margin: 0 auto 64px;
  }

  .strengths__inner > .strength-item:nth-of-type(1) .strength-item__body {
    width: 520px;
    max-width: none;
    margin: 0;
    padding-left: 0;
  }

  .strengths__inner > .strength-item:nth-of-type(1) .strength-item__header {
    display: block;
    text-align: left;
    margin-bottom: 24px;
  }

  .strengths__inner
    > .strength-item:nth-of-type(1)
    .strength-item__heading-group {
    display: inline-flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 14px;
  }

  .strengths__inner > .strength-item:nth-of-type(1) .strength-item__title {
    text-align: left;
  }

  .strengths__inner > .strength-item:nth-of-type(1) .strength-item__text {
    text-align: left;
    margin: 0;
    max-width: none;
  }

  .strengths__inner > .strength-item:nth-of-type(1) .strength-item__cars {
    width: 420px;
    flex: none;
    height: 520px;
    margin: 0;
  }
}

/* ===== PC：01の左側だけ少し細くする ===== */
@media screen and (min-width: 769px) {
  .strengths__inner > .strength-item:nth-of-type(1) {
    grid-template-columns: 370px 370px;
    column-gap: 50px;
    max-width: 920px;
  }

  .strengths__inner > .strength-item:nth-of-type(1) .strength-item__body {
    width: 420px;
    max-width: 310px;
  }

  .strengths__inner > .strength-item:nth-of-type(1) .strength-item__header {
    width: 750px;
  }

  .strengths__inner > .strength-item:nth-of-type(1) .strength-item__text {
    max-width: 420px;
  }
}

/* ===== 01 左テキストを下にずらす ===== */
@media screen and (min-width: 769px) {
  .strengths__inner > .strength-item:nth-of-type(1) {
    align-items: start;
  }

  .strengths__inner > .strength-item:nth-of-type(1) .strength-item__body {
    margin-top: 110px;
  }
}

/* ===== PC：強み全体のタイトルと黄色バーの距離を広げる ===== */
@media screen and (min-width: 769px) {
  .strength-item .strength-item__heading-group {
    padding-bottom: 28px;
  }
}

/* ===== PC：4つの強み 黄色バーの長さ調整 ===== */
@media screen and (min-width: 769px) {
  .strength-item .strength-item__heading-group::after {
    left: 50%;
    transform: translateX(-50%);
    width: min(72vw, 760px);
  }
}

/* ===== PC：4つの強み 文字位置そろえ ===== */
@media screen and (min-width: 769px) {
  /* -------------------------
     まず、タイトルと文章を全部左揃えに統一
  ------------------------- */
  .strength-item .strength-item__header {
    display: block;
    text-align: left;
    margin-bottom: 24px;
  }

  .strength-item .strength-item__heading-group {
    display: inline-flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 14px;
  }

  .strength-item .strength-item__title {
    text-align: left;
    margin: 0;
  }

  .strength-item .strength-item__text {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  /* -------------------------
     01 と 03 を、01基準でそろえる
     （左側に文字、右側に画像）
  ------------------------- */
  .strengths__inner > .strength-item:nth-of-type(1),
  .strengths__inner > .strength-item:nth-of-type(3) {
    display: grid;
    grid-template-columns: 420px 420px;
    column-gap: 80px;
    justify-content: center;
    align-items: start;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
  }

  .strengths__inner > .strength-item:nth-of-type(1) .strength-item__body,
  .strengths__inner > .strength-item:nth-of-type(3) .strength-item__body {
    width: 420px;
    max-width: 420px;
    padding-left: 0;
    margin: 0;
  }

  /* -------------------------
     02 と 04 を、04基準でそろえる
     （左側に写真、右側に文字）
  ------------------------- */
  .strengths__inner > .strength-item:nth-of-type(2),
  .strengths__inner > .strength-item:nth-of-type(4) {
    display: grid;
    grid-template-columns: 320px 420px;
    column-gap: 80px;
    justify-content: center;
    align-items: start;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
  }

  .strengths__inner > .strength-item:nth-of-type(2) .strength-item__body,
  .strengths__inner > .strength-item:nth-of-type(4) .strength-item__body {
    width: 420px;
    max-width: 420px;
    padding-left: 0;
    padding-right: 0;
    margin: 0;
  }
}

/* ===== PC：基準ラインに揃える ===== */
@media screen and (min-width: 769px) {
  /* 01・03 → 02の画像左端に揃える */
  .strengths__inner > .strength-item:nth-of-type(1) .strength-item__body,
  .strengths__inner > .strength-item:nth-of-type(3) .strength-item__body {
    margin-left: 55px;
  }

  /* 02・04 → 03の画像左端に揃える */
  .strengths__inner > .strength-item:nth-of-type(2) .strength-item__body,
  .strengths__inner > .strength-item:nth-of-type(4) .strength-item__body {
    margin-left: 60px;
  }
}

/* ===== 黄色バー：全て中央基準で左右に伸ばす ===== */
@media screen and (min-width: 769px) {
  .strength-item .strength-item__heading-group::after {
    left: 30vw;
    transform: translateX(-50%);
    width: 760px;
  }
}

/* ===== PC：黄色バーを全セクション同じ中央基準に統一 ===== */
@media screen and (min-width: 769px) {
  /* タイトルにくっついていた旧バーは無効化 */
  .strength-item__heading-group::after {
    content: none !important;
  }

  /* 各セクション本体に、同じバーを引く */
  .strength-item::after {
    content: "";
    position: absolute;
    top: 96px;
    /* ← バーの上下位置。必要ならここだけ調整 */
    left: 50%;
    transform: translateX(-50%);
    width: 760px;
    /* ← バーの長さ */
    height: 5px;
    background-color: #ffee00;
    z-index: 0;
  }

  /* 文字と画像をバーより前に出す */
  .strength-item__header,
  .strength-item__body,
  .strength-item__cars,
  .strength-item__photo {
    position: relative;
    z-index: 1;
  }
}

/* =========================
  強みセクション 個別コントロール
========================= */
@media screen and (min-width: 769px) {
  /* ====================================
     01
  ==================================== */
  .strength-item:nth-of-type(1) {
    /* 文字ブロック */
    .strength-item__body {
      width: 310px !important;
      /* ← 文章幅 */
      margin-top: 130px !important;
      /* ← 高さ */
      margin-left: 140px !important;
      /* ← 左右 */
    }

    /* タイトル */
    .strength-item__title {
      transform: translateY(0px) !important;
    }

    /* 本文 */
    .strength-item__text {
      transform: translateY(0px) !important;
    }

    /* 車画像 */
    .strength-item__cars {
      transform: translate(0px, 0px) !important;
      /* ← 左右・上下 */
    }

    /* ===== 01の黄色バー ===== */
    .strength-item:nth-of-type(1) .strength-item__heading-group {
      padding-bottom: 20px !important;
      /* ← 高さ */
    }

    .strength-item:nth-of-type(1) .strength-item__heading-group::after {
      width: 700px !important;
      /* ← 長さ */
    }
  }

  /* ====================================
     02
  ==================================== */
  .strength-item:nth-of-type(2) {
    .strength-item__body {
      width: 420px !important;
      margin-top: 40px !important;
      margin-right: 0px !important;
    }

    .strength-item__title {
      transform: translateY(0px) !important;
    }

    .strength-item__text {
      transform: translateY(0px) !important;
    }

    .strength-item__photo {
      transform: translate(80px, 0px) !important;
    }

    .strength-item__heading-group {
      padding-bottom: 20px !important;
    }

    .strength-item__heading-group::after {
      width: 700px !important;
    }
  }

  /* ====================================
     03
  ==================================== */
  .strength-item:nth-of-type(3) {
    .strength-item__body {
      width: 420px !important;
      margin-top: 80px !important;
      margin-left: 130px !important;
    }

    .strength-item__title {
      transform: translateY(0px) !important;
    }

    .strength-item__text {
      transform: translateY(0px) !important;
    }

    .strength-item__photo {
      transform: translate(10px, 10px) !important;
    }

    .strength-item__heading-group {
      padding-bottom: 20px !important;
    }

    .strength-item__heading-group::after {
      width: 700px !important;
    }
  }

  /* ====================================
     04
  ==================================== */
  .strength-item:nth-of-type(4) {
    .strength-item__body {
      width: 420px !important;
      margin-top: 10px !important;
      margin-right: 0px !important;
    }

    .strength-item__title {
      transform: translateY(0px) !important;
    }

    .strength-item__text {
      transform: translateY(0px) !important;
    }

    .strength-item__photo {
      transform: translate(80px, 0px) !important;
    }

    .strength-item__heading-group {
      padding-bottom: 20px !important;
    }

    .strength-item__heading-group::after {
      width: 700px !important;
    }
  }
}

/* ===== PC：黄色バー 個別top値（XD基準） ===== */
@media screen and (min-width: 769px) {
  .strength-item:nth-of-type(1)::after {
    top: 210px;
  }

  .strength-item:nth-of-type(2)::after {
    top: 120px;
  }

  .strength-item:nth-of-type(3)::after {
    top: 160px;
  }

  .strength-item:nth-of-type(4)::after {
    top: 90px;
  }
}

/* ===== PC：4つの強み 見出し余白 ===== */
@media screen and (min-width: 769px) {
  .strengths {
    padding-top: 140px;
  }

  .strengths__heading {
    margin-bottom: 60px;
  }
}
