/* ================================================================
   equipment.css — 販売・レンタル・リースページ専用スタイル
================================================================ */

/* ----------------------------------------------------------------
   利用シーン 見出し
---------------------------------------------------------------- */
.rental-scene-head {
  margin-top: 56px;
  margin-bottom: 8px;
}

.rental-scene-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-family: 'Noto Serif JP', serif;
  color: #003d3b;
  font-weight: 700;
  margin: 4px 0 8px;
  letter-spacing: .05em;
}

.rental-scene-sub {
  font-size: .95rem;
  color: #555;
  margin-bottom: 0;
}

/* ----------------------------------------------------------------
   利用シーン画像グリッド
---------------------------------------------------------------- */
.rental-scene-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.rental-scene-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

.rental-scene-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.rental-scene-item:hover img {
  transform: scale(1.04);
}

@media (max-width: 640px) {
  .rental-scene-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .rental-scene-item img {
    height: 200px;
  }
}

/* ----------------------------------------------------------------
   レンタルセット内容カード
---------------------------------------------------------------- */
.rental-set-wrap {
  margin-top: 40px;
}

.rental-set-card {
  background: #fff;
  border: 2px solid #003d3b;
  border-radius: 12px;
  padding: 32px;
  overflow: hidden;
}

/* 左右2カラムレイアウト */
.rental-set-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: start;
}

/* カード見出し */
.rental-set-header {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d0e6e4;
}

.rental-set-title {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  color: #003d3b;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.rental-set-title i {
  font-size: 1rem;
  opacity: .7;
}

.rental-set-caption {
  font-size: .9rem;
  color: #666;
  padding-left: 2px;
}

/* ラベル共通 */
.rental-set-label {
  font-size: 1rem;
  font-weight: 700;
  color: #003d3b;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* 左：メイン機器画像 */
.rental-set-main-img {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #e8f0ef;
  margin-bottom: 16px;
  aspect-ratio: 4 / 3;
}

.rental-set-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* セット内容テーブル */
.rental-set-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}

.rental-set-table tbody tr {
  border-bottom: 1px solid #e0eded;
}

.rental-set-table tbody tr:last-child {
  border-bottom: none;
}

.rental-set-table td {
  padding: 8px 10px;
  color: #333;
}

.rental-set-table td:first-child {
  font-weight: 500;
}

.rental-set-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: #003d3b;
  font-size: 1rem;
  white-space: nowrap;
}

/* 右：その他備品画像グリッド */
.rental-set-img-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.rental-set-img-item {
  text-align: center;
}

.rental-set-img-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  background: #e8f0ef;
  display: block;
}

.rental-set-img-item p {
  font-size: .82rem;
  color: #444;
  font-weight: 500;
  margin-top: 7px;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .rental-set-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .rental-set-card {
    padding: 24px 18px;
  }
  .rental-set-img-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .rental-set-img-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
