@charset "UTF-8";
/* =========================================================
   内装屋ひづめ - 料金表ページ (price.css)
========================================================= */

.price-intro {
  max-width: 820px; margin: 0 auto clamp(40px, 5vw, 60px); text-align: center;
  color: var(--gray); line-height: 2.1; font-size: clamp(0.94rem, 1.6vw, 1.04rem);
}
.price-intro strong { color: var(--orange-dark); }

.price-block { margin-bottom: clamp(34px, 4vw, 50px); }
.price-block__title {
  display: flex; align-items: center; gap: 14px;
  font-size: clamp(1.2rem, 2.6vw, 1.6rem); font-weight: 900; margin-bottom: 20px;
  font-family: var(--font-mincho);
}
.price-block__title span {
  font-family: "Cormorant Garamond", serif; font-size: 1rem; font-weight: 700; color: #fff;
  background: var(--orange); width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}

.price-table { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.price-table table { width: 100%; border-collapse: collapse; background: #fff; }
.price-table thead th {
  background: var(--ink); color: #fff; font-weight: 700; font-size: 0.88rem; letter-spacing: 0.04em;
  padding: 16px 20px; text-align: left;
}
.price-table thead th:nth-child(2) { width: 110px; text-align: center; }
.price-table thead th:nth-child(3) { width: 200px; text-align: right; }
.price-table tbody td { padding: 16px 20px; border-top: 1px solid var(--border); font-size: 0.94rem; }
.price-table tbody tr:nth-child(even) { background: var(--bg-soft); }
.price-table tbody td:nth-child(2) { text-align: center; color: var(--gray); }
.price-table tbody td:nth-child(3) {
  text-align: right; font-weight: 700; color: var(--orange-dark);
  font-family: "Cormorant Garamond", serif; font-size: 1.15rem;
}

.price-notes {
  max-width: 860px; margin: clamp(34px, 4vw, 48px) auto 0; background: var(--bg-soft);
  border-radius: var(--radius); padding: 28px 32px; border: 1px solid var(--border);
}
.price-notes li { position: relative; padding-left: 22px; color: var(--gray); font-size: 0.88rem; margin-bottom: 10px; }
.price-notes li:last-child { margin-bottom: 0; }
.price-notes li::before { content: "※"; position: absolute; left: 0; color: var(--orange); font-weight: 700; }

@media (max-width: 640px) {
  .price-table thead { display: none; }
  .price-table table, .price-table tbody, .price-table tr, .price-table td { display: block; width: 100%; }
  .price-table tr { border-top: 3px solid var(--orange); padding: 6px 0; }
  .price-table tr:first-child { border-top: none; }
  .price-table tbody td { border-top: none; padding: 8px 18px; display: flex; justify-content: space-between; align-items: center; gap: 14px; }
  .price-table tbody td::before {
    content: attr(data-label); font-size: 0.72rem; font-weight: 700; color: var(--gray-light); letter-spacing: 0.06em;
  }
  .price-table tbody td:nth-child(1) { font-weight: 700; }
  .price-table tbody td:nth-child(1)::before { content: ""; }
  .price-table tbody td:nth-child(2), .price-table tbody td:nth-child(3) { text-align: right; }
}
