/* ===============================================
// page-service-taxi.php (福祉タクシーページ)
// =============================================== */

/* ページリード文のスタイル */
.page-lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  text-align: center;
}

.page-lead span {
  color: #e74c3c;
  font-weight: bold;
}

/* ===============================================
// 「対応可能エリア」セクション
// =============================================== */
.service-area {
  padding: 60px 20px 80px;
}

.service-area__content {
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.service-area__description {
  font-size: 1.2rem;
  font-weight: 400;
  color: #333;
  line-height: 1.8;
  margin: 0;
}

/* 下線を引きたい部分の親に使っていたクラスですが、今回は直接 highlight-word に適用するため、特別なスタイルは不要です */
.service-area__underline-target {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.service-area__highlight-word {
  display: inline-block;
  margin: 0 0.1em;
  position: relative;
  /* 疑似要素 ::after の配置基準 */
  padding-bottom: 5px;
  /* 下線分のスペースを確保しつつ、重なり代も考慮 */
}

.service-area__underline-target::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  /* 文字の下端から少しだけ上に重なるように調整 */
  height: 8px;
  /* 下線の太さ */
  background-color: #FBE691;
  /* 下線の色 */
  z-index: -1;
  /* 文字の背面に表示 */
  border-radius: 2px;
  /* 少し角丸に */
  transform: translateZ(0);
  /* GPUアクセラレーションを有効化 */
}

.service-area__char-wrapper {
  position: relative;
  /* ビュレットの配置基準 */
  display: inline-block;
  /* 文字ごとに独立して配置 */
  font-weight: bold;
  /* 文字を太字に */
  font-size: 2.2rem;
  /* 強調テキストのサイズ */
  color: inherit;
  /* 親要素の色を継承（オレンジ色指定を削除） */
  margin: 0 0.05em;
  /* 文字間の微調整 */
}

.service-area__bullet {
  font-size: 1em;
  /* 親の文字サイズを基準にする */
  font-weight: bold;
  color: var(--accent-color);
  /* ビュレットの色 */
  position: absolute;
  top: -0.8em;
  /* 文字の真上に配置 (em単位で調整) */
  left: 50%;
  transform: translateX(-50%);
  /* 水平方向中央揃え */
  line-height: 1;
  user-select: none;
  opacity: 0.9;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .service-area {
    padding: 40px 15px 60px;
  }

  .service-area__char-wrapper {
    font-size: 1.8rem;
    /* スマホでは少し小さく */
  }

  .service-area__description {
    font-size: 1.1rem;
  }

  .service-area__bullet {
    top: -0.7em;
    /* スマホでの位置調整 */
  }

  .service-area__highlight-word::after {
    height: 7px;
    /* スマホでは下線を少し細く */
    bottom: 2px;
  }
}

/* 対応可能なエリアのspanスタイル（料金ページと同じ） */
.payment-methods p span {
  font-weight: bold;
  font-size: 1.5em;
  text-decoration: underline;
  text-decoration-color: #FBE691;
  text-decoration-thickness: 3px;
}

@media (max-width: 480px) {
  .service-area__char-wrapper {
    font-size: 1.6rem;
    /* さらに小さい画面 */
  }

  .service-area__description {
    font-size: 1rem;
  }

  .service-area__bullet {
    top: -0.4em;
    /* さらに小さい画面での位置調整 */
    font-size: 0.9em;
  }

  .service-area__highlight-word::after {
    bottom: 2px;
    height: 6px;
  }
}

/*------------------------------------------------------------------
# 「車両・設備のご紹介」セクション (service-vehicles)
------------------------------------------------------------------*/
.service-vehicles {
  padding: 60px 0;
  background-color: var(--section-background-color);
}

/* 車両・設備のご紹介セクション内の site-inner に最大幅を設定 */
.service-vehicles .site-inner {
  max-width: 1100px;
  /* 1200px から 1100px に変更して余白を広げる */
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  /* 左右の余白を確保 */
  padding-right: 15px;
  /* 左右の余白を確保 */
}

.service-vehicles__layout-wrapper {
  display: flex;
  gap: 40px;
  /* 画像エリアと詳細エリアの間隔 */
  align-items: stretch;
  /* 高さを揃えるためにstretchに変更 */
  margin-top: 40px;
  /* セクションタイトルとの間隔 */
}

.service-vehicles__gallery {
  flex: 1;
  /* 左側の画像エリアの幅（調整可能） */
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* メイン画像とサブ画像間の間隔 */
  height: 100%;
  /* 高さを100%に設定 */
}

.service-vehicles__main-image-wrapper {
  width: 100%;
  height: 100%;
  /* 高さを100%に設定 */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-vehicles__main-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  /* 画像を枠に合わせて調整 */
}

.service-vehicles__sub-images {
  display: flex;
  gap: 20px;
  /* サブ画像間の間隔 */
}

.service-vehicles__sub-image-wrapper {
  flex: 1;
  /* サブ画像が均等に幅を取る */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.service-vehicles__sub-image {
  width: 100%;
  height: auto;
  /* 高さは自動調整 */
  display: block;
  /* aspect-ratio: 16 / 9; を削除 */
  object-fit: contain;
  /* cover から contain に変更して全体表示 */
}

.service-vehicles__details {
  flex: 1;
  /* 右側の詳細エリアの幅（調整可能） */
  background-color: rgba(242, 153, 136, 0.1);
  /* Figma指定の背景色 */
  padding: 20px;
  /* パディングを小さくして全体のサイズを調整 */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* 縦方向の配置を調整 */
  min-height: 100%;
  /* 車の画像の高さに合わせる */
}

.service-vehicles__title {
  font-size: 1.5rem;
  /* フォントサイズを小さく */
  font-weight: bold;
  color: #333;
  margin: 0 0 15px 0;
  /* マージンを小さく */
  line-height: 1.3;
}

/* 乗車定員セクション内の盲導犬アイコン配置 */
.service-vehicles__capacity {
  position: relative;
  flex: 1;
  /* 残りのスペースを占める */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* 内容を上下に分散 */
}

.service-vehicles__guide-dog {
  text-align: right;
  margin-top: auto;
  /* 下部に配置 */
}

.service-vehicles__guide-dog-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.service-vehicles__description {
  font-size: 1rem;
  /* フォントサイズを小さく */
  color: #333;
  /* Figmaに合わせて色を#333に */
  line-height: 1.4;
  /* 行間を小さく */
  margin: 0;
}

.service-vehicles__sub-title {
  font-size: 1rem;
  /* フォントサイズを小さく */
  font-weight: bold;
  color: #333;
  margin: 15px 0 10px;
  /* マージンを少し広げる */
  padding-bottom: 5px;
  /* 下線との間隔を少し広げる */
  border-bottom: 1px solid #e0e0e0;
  /* 薄い区切り線 */
}

.service-vehicles__list {
  list-style: disc;
  font-size: 1.1rem;
  /* フォントサイズを小さく */
  color: #333;
  line-height: 1.5;
  /* 行間を少し広げる */
  padding-left: 20px;
  /* リストマーカーのスペースを小さく */
  margin: 0 0 15px 0;
  /* マージンを少し広げる */
}

.service-vehicles__list li {
  margin-bottom: 8px;
  /* 各リストアイテム間のマージンを少し広げる */
}

.service-vehicles__lead {
  text-align: center;
  font-size: 1.1rem;
  /* Figmaの見た目に合わせて調整 */
  color: #555;
  margin: 20px auto 30px;
  /* 上下と左右autoで中央揃え */
  max-width: 800px;
  /* 最大幅を設定 */
  line-height: 1.7;
}

/* レンタル可能な機材セクションのスタイル */
.service-vehicles__rental-section {
  background-color: rgba(242, 153, 136, 0.1);
  /* Figma指定の背景色 */
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-top: 30px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.service-vehicles__rental-section .service-vehicles__sub-title {
  margin-top: 0;
  /* 最初の要素なので上マージンを削除 */
  text-align: center;
  /* タイトルを中央揃え */
}

/* レンタル機材の2列レイアウト */
.service-vehicles__rental-section .service-vehicles__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* 2列レイアウト */
  margin-top: 20px;
  /* タイトルとの間隔 */
  list-style: none;
  /* デフォルトのリストマーカーを削除 */
  padding-left: 0;
  /* デフォルトのパディングを削除 */
}

.service-vehicles__rental-section .service-vehicles__list li {
  margin-bottom: 10px;
  /* リストアイテム間の間隔 */
  padding-left: 20px;
  /* リストマーカーのスペース */
  position: relative;
}

.service-vehicles__rental-section .service-vehicles__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #333;
  font-weight: bold;
}

/* レスポンシブ対応 */
@media (max-width: 900px) {
  .service-vehicles__layout-wrapper {
    flex-direction: column;
    /* 縦積みに変更 */
    align-items: center;
    /* 中央揃え */
  }

  .service-vehicles__gallery,
  .service-vehicles__details {
    width: 90%;
    /* 幅を90%にして左右に余白 */
    max-width: 600px;
    /* 最大幅を設定（コンテナ幅に合わせるなど） */
  }

  .service-vehicles__gallery {
    order: 1;
    /* 画像を先に表示 */
  }

  .service-vehicles__details {
    order: 2;
    /* テキストを後に表示 */
    margin-top: 30px;
  }

  /* スマホでの盲導犬アイコン調整 */
  .service-vehicles__capacity {
    /* min-heightを削除してflexで調整 */
  }

  .service-vehicles__rental-section {
    padding: 20px;
    margin-top: 20px;
  }

  /* タブレットでは2列を維持 */
  .service-vehicles__rental-section .service-vehicles__list {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
}


@media (max-width: 600px) {
  .service-vehicles {
    padding: 40px 0;
  }

  .service-vehicles__layout-wrapper {
    gap: 30px;
  }

  .service-vehicles__sub-images {
    flex-direction: column;
    /* サブ画像も縦積みに */
    gap: 15px;
  }

  .service-vehicles__details {
    padding: 20px;
  }

  .service-vehicles__title {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .service-vehicles__description {
    font-size: 0.95rem;
  }

  .service-vehicles__capacity {
    /* min-heightを削除してflexで調整 */
  }

  .service-vehicles__rental-section {
    padding: 15px;
    margin-top: 15px;
  }

  /* スマホでは1列に変更 */
  .service-vehicles__rental-section .service-vehicles__list {
    grid-template-columns: 1fr;
    /* 1列レイアウト */
    gap: 10px;
  }
}

/* 追加の画像ギャラリー用のスタイル */
.service-vehicles__additional-gallery {
  display: flex;
  flex-wrap: wrap;
  /* 折り返しを許可 */
  gap: 15px;
  /* 画像間の隙間 */
  max-width: 1100px;
  margin: 20px auto;
  width: 100%;
}

.service-vehicles__additional-image-wrapper {
  flex: 0 0 calc(20% - 12px);
  /* 5列表示 (gap 15px を考慮して調整) */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  /* 画像背景が透過の場合に備えて白背景 */
}

.service-vehicles__additional-image {
  width: 100%;
  height: 200px;
  /* 高さを増やして縦長画像に対応 */
  display: block;
  object-fit: cover;
  /* 画像を枠に合わせてトリミング */
  object-position: center;
  /* 画像の中心を表示 */
}

/* タブレットサイズ（768px以下） */
@media (max-width: 768px) {
  .service-vehicles__additional-gallery {
    max-width: 600px;
    margin: 2rem auto;
  }

  /* 1枚目は横幅いっぱいで画像全体表示 */
  .service-vehicles__additional-image-wrapper--first {
    flex: 0 0 100%;
    margin-bottom: 15px;
  }

  .service-vehicles__additional-image-wrapper--first .service-vehicles__additional-image {
    height: auto;
    object-fit: contain;
  }

  /* 2枚目以降は2枚ずつで画像全体表示 */
  .service-vehicles__additional-image-wrapper:not(.service-vehicles__additional-image-wrapper--first) {
    flex: 0 0 calc(50% - 12px);
  }

}

/* スマホサイズ（480px以下） */
@media (max-width: 480px) {
  .service-vehicles__additional-gallery {
    max-width: 85%;
    margin: 2rem auto;
  }

  /* 1枚目は横幅いっぱいで全体サイズに収める */
  .service-vehicles__additional-image-wrapper--first {
    flex: 0 0 100%;
    margin-bottom: 15px;
  }

  /* 2枚目以降は2枚横並び */
  .service-vehicles__additional-image-wrapper:not(.service-vehicles__additional-image-wrapper--first) {
    flex: 0 0 calc(50% - 12px);
    margin-bottom: 15px;
  }

}


/* ===============================================
// page-service-taxi.php (福祉タクシーページ)
// 「搬送機材のご紹介」セクション
// =============================================== */
.service-equipment {
  padding: 60px 0;
  background-color: #fff;
  /* 背景は白のままにする */
}

.service-equipment .site-inner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.service-equipment__list {
  display: flex;
  gap: 25px;
  /* FigmaのitemSpacingに合わせる */
  margin-top: 40px;
  /* セクションタイトルとの間隔 */
}

.service-equipment__item {
  flex: 1;
  /* 横幅を均等に */
  background-color: var(--section-background-color);
  /* Figma Rectangle 200 の色 */
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 20px;
  display: flex;
  flex-direction: row;
  /* column から row に変更して横並び */
  gap: 20px;
  /* 画像と詳細エリアの間隔 */
  min-height: 300px;
  /* 最小高さを設定してボックスの高さを統一 */
}

.service-equipment__image-wrapper {
  flex: 0 0 45%;
  /* 画像エリアの幅を45%に設定して画像を大きくする */
  /* width: 100%; を削除またはコメントアウト */
  margin-bottom: 0;
  /* 横並びになるので不要なマージンを削除 */
  border-radius: 6px;
  overflow: hidden;
}

.service-equipment__image {
  width: 100%;
  height: auto;
  /* 画像の実際のサイズに合わせる */
  display: block;
  object-fit: contain;
  /* coverからcontainに変更して画像全体を表示 */
  border-radius: 8px;
}

/* ギャラリー画像と同じスタイルを通常画像にも適用 */
.service-equipment__gallery-image {
  width: 100%;
  height: auto;
  /* 画像の実際のサイズに合わせる */
  display: block;
  object-fit: contain;
  /* coverからcontainに変更して画像全体を表示 */
  border-radius: 8px;
}

/* ティルト式車いすの画像ギャラリー */
.service-equipment__image-gallery {
  margin-top: 10px;
}

.service-equipment__gallery-image-wrapper {
  margin-bottom: 10px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-equipment__gallery-image-wrapper:hover {
  transform: scale(1.05);
}

.service-equipment__gallery-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ギャラリーナビゲーション */
.service-equipment__gallery-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}

.service-equipment__gallery-prev,
.service-equipment__gallery-next {
  background: #8CD2BC;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.service-equipment__gallery-prev:hover,
.service-equipment__gallery-next:hover {
  background: #7BC1AB;
}

.service-equipment__gallery-counter {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.service-equipment__details {
  flex: 1;
  /* 残りの幅を詳細エリアが取る */
  min-width: 0;
  /* flexアイテムが親要素を超えないように */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* テキストを上揃えにして下の余白を減らす */
}

.service-equipment__title {
  font-size: 20px;
  font-weight: 500;
  color: #000000;
  margin: 0 0 15px 0;
  /* 下マージンを少し調整 */
  padding-bottom: 0;
  /* 下線を左に移動するため、下のパディングは不要に */
  padding-left: 15px;
  /* 左側に線のスペースを確保 */
  position: relative;
}

.service-equipment__title::after {
  display: block;
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  /* 上下中央揃え */
  transform: translateY(-50%);
  /* 上下中央揃えのための調整 */
  width: 3px;
  /* 線の太さ */
  height: 100%;
  /* タイトルの高さに合わせる */
  background-color: #8CD2BC;
}

.service-equipment__description {
  font-size: 15px;
  /* Figma style_81AJLC のfontSize 24px から調整 */
  line-height: 1.6;
  color: #333;
  /* 黒だと強すぎるため少し調整 */
  margin: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .service-equipment {
    padding: 40px 0;
  }

  .service-equipment__list {
    flex-direction: column;
    gap: 20px;
  }

  .service-equipment__item {
    flex-direction: column;
  }

  .service-equipment__image-wrapper {
    width: 100%;
    margin-bottom: 15px;
  }

  .service-equipment__title {
    font-size: 18px;
  }

  .service-equipment__description {
    font-size: 14px;
  }
}

/* 「搬送機材のご紹介」セクションのタイトル下線のみ非表示にする */
.service-equipment .section-title-line {
  display: none;
}

/* ===============================================
// page-service-taxi.php (福祉タクシーページ)
// 「その他機材」セクション
// =============================================== */
.service-other-equipment {
  padding: 60px 0;
  background-color: #fff;
  /* 背景は白 */
}

.service-other-equipment .site-inner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* 「その他機材」セクションのタイトル下線は表示（デフォルト通り） */
/* .service-other-equipment .section-title-line {} */

.service-other-equipment__list {
  display: flex;
  /* Flexbox を使用 */
  flex-wrap: wrap;
  /* 折り返しあり */
  gap: 25px;
  margin-top: 40px;
  /* セクションタイトルとの間隔 */
}

.service-other-equipment__item {
  background-color: var(--section-background-color);
  /* 背景色 */
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 20px;
  display: flex;
  flex-direction: row;
  /* 画像と詳細を横並び（搬送機材に合わせる） */
  flex: 0 0 calc(50% - 12.5px);
  /* 2列表示 (gapを考慮) */
  box-sizing: border-box;
}

.service-other-equipment__image-wrapper {
  width: 40%;
  /* 搬送機材と合わせる */
  margin-bottom: 0;
  /* 横並びなので不要 */
  margin-right: 20px;
  /* 画像とテキストの間隔 */
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  /* 画像が縮まないように */
}

.service-other-equipment__image {
  width: 100%;
  height: auto;
  /* 高さは自動 */
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  /* 画像の縦横比 */
  border-radius: 6px;
}

.service-other-equipment__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  /* 搬送機材と合わせる */
  font-weight: 500;
  color: #000000;
  margin: 0 0 10px 0;
  /* 下マージン */
  padding-left: 15px;
  /* 左側に線のスペースを確保 */
  position: relative;
}

.service-other-equipment__title::after {
  display: block;
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  /* 上下中央揃え */
  transform: translateY(-50%);
  /* 上下中央揃えのための調整 */
  width: 3px;
  /* 線の太さ */
  height: 100%;
  /* タイトルの高さに合わせる */
  background-color: #8CD2BC;
  /* 緑の線 */
}

.service-other-equipment__description {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  /* 搬送機材と合わせる */
  line-height: 1.6;
  color: #333;
  margin: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .service-other-equipment__list {
    /* gap: 20px; Flexboxなのでgapはそのまま活かせる */
  }

  .service-other-equipment__item {
    flex: 0 0 100%;
    /* スマホでは1列 */
    flex-direction: column;
    /* スマホでは縦積みに戻す */
  }

  .service-other-equipment__image-wrapper {
    width: 100%;
    /* スマホでは画像幅100% */
    margin-right: 0;
    margin-bottom: 15px;
    /* 縦積みなので下のマージンを復活 */
  }

  .service-other-equipment__title {
    font-size: 18px;
  }

  .service-other-equipment__description {
    font-size: 14px;
  }
}

/* 「その他機材」セクションのタイトル下線のみ非表示にする */
.service-other-equipment .section-title-line {
  display: none;
}

/* ===============================================
// page-service-taxi.php (福祉タクシーページ)
// 「車内設備」セクション
// =============================================== */
.service-vehicle-facilities {
  padding: 60px 0;
  background-color: #fff;
  /* 背景は白 */
}

.service-vehicle-facilities .site-inner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* 「車内設備」セクションのタイトル下線は表示（デフォルト通り） */
/* .service-vehicle-facilities .section-title-line {} */

.service-vehicle-facilities__list {
  display: flex;
  /* grid から flex に変更 */
  flex-wrap: wrap;
  /* 追加 */
  gap: 25px;
  margin-top: 40px;
  /* grid-template-columns: repeat(2, 1fr); を削除 */
}

.service-vehicle-facilities__item {
  background-color: var(--section-background-color);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: row;
  /* column から row に変更 */
  flex: 0 0 calc(50% - 12.5px);
  /* 追加 */
  box-sizing: border-box;
  /* 追加 */
  padding: 20px;
}

.service-vehicle-facilities__image-wrapper {
  width: 40%;
  /* 100% から変更 */
  margin-right: 20px;
  /* 追加 */
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  /* row にしたので不要になるかもだが、一旦維持 */
  border-bottom-left-radius: 8px;
  /* row にしたので追加 */
  overflow: hidden;
  flex-shrink: 0;
  /* 追加 */
}

.service-vehicle-facilities__image {
  width: 100%;
  height: auto;
  /* auto に変更して、aspect-ratio を優先させるか、固定高さを指定するか検討 */
  display: block;
  aspect-ratio: 4 / 3;
  /* その他機材に合わせて調整、または削除して高さauto */
  object-fit: cover;
  border-radius: 8px;
}

.service-vehicle-facilities__details {
  flex-grow: 1;
  /* 追加 */
}

.service-vehicle-facilities__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #000000;
  margin: 0 0 10px 0;
  /* 下マージン */
  padding-left: 15px;
  /* 左側に線のスペースを確保 */
  position: relative;
}

.service-vehicle-facilities__title::after {
  display: block;
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  /* 線の太さ */
  height: 100%;
  /* タイトルの高さに合わせる */
  background-color: #8CD2BC;
  /* 緑の線 */
}

.service-vehicle-facilities__description {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {

  .service-vehicle-facilities__item {
    flex: 0 0 100%;
    /* 追加 */
    flex-direction: column;
    /* 追加 */
  }

  .service-vehicle-facilities__image-wrapper {
    width: 100%;
    /* 40% から 100% に変更 */
    margin-right: 0;
    /* 20px から 0 に変更 */
    margin-bottom: 15px;
    /* 追加 */
    border-bottom-left-radius: 0;
    /* 縦積みに戻るので不要 */
  }

  .service-vehicle-facilities__title {
    font-size: 18px;
  }

  .service-vehicle-facilities__description {
    font-size: 14px;
  }
}

/* 「車内設備」セクションのタイトル下線は表示（デフォルト通り） */
/* .service-vehicle-facilities .section-title-line {} */

.service-vehicle-facilities .section-title-line {
  display: none;
  /* ピンクの下線を非表示にする */
}

.service-vehicle-facilities__list {
  display: flex;
  /* grid から flex に変更 */
  flex-wrap: wrap;
  /* 追加 */
  gap: 25px;
  margin-top: 40px;
  /* grid-template-columns: repeat(2, 1fr); を削除 */
}

/* ===============================================
  福祉タクシーページ：搬送機材の料金表示
  - 無料・有料の表示スタイル
=============================================== */
.service-equipment__price {
  margin: 8px 0 16px 0;
}

.service-equipment__price-free,
.service-equipment__price-paid {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  min-width: 60px;
}

.service-equipment__price-free {
  background-color: #6BBF59;
  color: #fff;
}

.service-equipment__price-paid {
  background-color: #f29988;
  color: #fff;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .service-equipment__price {
    margin: 6px 0 12px 0;
  }

  .service-equipment__price-free,
  .service-equipment__price-paid {
    font-size: 0.8rem;
    padding: 3px 10px;
  }
}

/* PCでは右寄せ */
.service-other-equipment__note-text {
  text-align: right;
}

/* スマホでは左寄せ */
@media (max-width: 768px) {
  .service-other-equipment__note-text {
    text-align: left;
  }
}