/**
 * Approach Page CSS
 * 取り組みページ専用スタイル（安全・環境）
 * 高橋運輸興業 Webサイトリニューアル
 *
 * このファイルは company/safety.html と company/environment.html で共用されます。
 * アルコール検知器の記録表示グリッドのみを定義します。
 */

/* ===================================
   検証記録グリッド
   安全点検の画像と説明
   =================================== */

.inspection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
  position: relative;
}

.inspection-item {
  text-align: center;
  position: relative;
}

/* 矢印（2つ目と3つ目のアイテムの前に表示） */
.inspection-item:nth-child(2)::before,
.inspection-item:nth-child(3)::before {
  content: '→';
  position: absolute;
  left: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: bold;
}

/* 検証項目タイトル */
.inspection-item h5 {
  color: var(--heading-secondary);
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}

/* 検証画像 */
.inspection-item img {
  width: 180px;
  height: 135px;
  border-radius: var(--border-radius);
  margin: 0 auto 0.5rem;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

/* 検証説明文 */
.inspection-item p {
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.4;
  color: var(--text-secondary);
}

/* ===================================
   画像キャプション
   =================================== */

.img-with-caption {
  margin: 0;
  text-align: center;
}

.img-caption {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-align: center;
}

/* ===================================
   レスポンシブ対応
   =================================== */

@media (max-width: 768px) {
  .inspection-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
  }

  .inspection-item img {
    width: 150px;
    height: 112px;
  }

  .inspection-item:nth-child(2)::before,
  .inspection-item:nth-child(3)::before {
    left: -1.5rem;
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .inspection-grid {
    grid-template-columns: 1fr;
  }

  .inspection-item img {
    width: 100%;
    max-width: 200px;
    height: auto;
  }

  /* モバイルでは矢印を下向きに変更 */
  .inspection-item:nth-child(2)::before,
  .inspection-item:nth-child(3)::before {
    content: '↓';
    left: 50%;
    top: -1.5rem;
    transform: translateX(-50%);
    font-size: 1.5rem;
  }
}