/* ベーススタイル */
/* body {
  font-family: 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 40px 20px;
  color: #333;
  line-height: 1.6;
} */

.shutter-price-section {
  max-width: 1000px;
  margin: 0 auto 100px;
}

.price-tax-note {
  text-align: right;
  font-size: 0.8rem;
  color: #666;
  margin-top: 10px;
}

.shutter-section-title {
  text-align: center;
  font-size: 2.6rem;
  color: #003399;
  margin-bottom: 50px;
  font-weight: bold;
  position: relative;
}
.shutter-section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #e60012;
  margin: 10px auto 0;
}

.shutter-price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.price-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 25px;
  border-top: 5px solid #003399;
}

.price-card h3 {
  font-size: 1.2rem;
  margin: 0 0 15px 0;
  color: #003399;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.price-card h3 i {
  margin-right: 8px;
  color: #003399;
}
.price-card.emergency h3 i {
  color: #e60012;
}

/* 緊急カード */
.price-card.emergency {
  border-top-color: #e60012;
  background-color: #fffbfb;
}
.price-card.emergency h3 {
  color: #e60012;
}

/* テーブルデザイン */
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.price-table th,
.price-table td {
  padding: 12px 8px;
  border-bottom: 1px dashed #ddd;
  vertical-align: middle;
}
.price-table th {
  text-align: left;
  font-weight: normal;
  color: #666;
}
.price-table td.price {
  text-align: right;
  font-weight: bold;
  font-size: 1.1rem;
  color: #333;
  white-space: nowrap;
}

/* ▼▼▼ 画像表示用スタイル ▼▼▼ */
.img-col {
  width: 100px; /* 画像セルの幅 */
  text-align: center !important;
  padding: 5px !important;
}
.sample-img {
  width: 90px;
  height: 65px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid #ddd;
  display: block;
  margin: 0 auto;
  background-color: #eee; /* 画像がない時の背景色 */
}
.req-tag {
  display: inline-block;
  font-size: 0.75rem;
  background: #f0f4f8;
  color: #555;
  padding: 3px 6px;
  border-radius: 4px;
  margin-top: 4px;
}

.full-width {
  grid-column: 1 / -1;
}

.price-note {
  margin-top: 15px;
  font-size: 0.85rem;
  color: #777;
  background: #f9f9f9;
  padding: 10px;
  border-radius: 4px;
}

/* スマホ対応 */
@media (max-width: 600px) {
  .shutter-price-grid {
    display: block;
  }
  .price-card {
    margin-bottom: 20px;
  }

  /* 画像付きテーブルのスマホ表示 */
  .price-table.with-img thead {
    display: none;
  }
  .price-table.with-img tr {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .price-table.with-img td {
    border: none;
    padding: 5px 0;
  }
  /* 項目名 */
  .price-table.with-img td:nth-child(1) {
    width: 100%;
    font-weight: bold;
    color: #003399;
    font-size: 1.1rem;
    margin-bottom: 5px;
  }
  /* 画像 */
  .price-table.with-img td.img-col {
    width: 100px;
    text-align: left;
    margin-right: 15px;
  }
  /* 詳細・料金 */
  .price-table.with-img td:nth-child(2),
  .price-table.with-img td.price {
    width: calc(100% - 120px); /* 画像分を引く */
    text-align: left;
  }
  .price-table.with-img td.price {
    font-size: 1.2rem;
    align-self: flex-end; /* 下揃え */
  }
}
