/* ==========================================================================
施術メニューの料金表（7ページ共通）

現行サイトのページ内 <style> をそのまま引き継いだものです。
サイト本体とは配色も書き方も違いますが、見た目を変えないためこのままにしています。

★ ここを直すと、料金表を持つ7ページすべてに効きます。
1ページだけ変えたいときは pages/<ページ名>.css へ書いてください
（そちらがあとに読み込まれるので優先されます）。
========================================================================== */

.pricing-container {
  max-width: 1000px;
  margin: 0 auto;
  font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
  line-height: 1.6;
  color: #333;
}

.pricing-section {
  margin-bottom: 50px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  border: 1px solid #e9ecef;
}

.section-header {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 25px 30px;
  text-align: center;
}

.section-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.section-description {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 300;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

.pricing-table th {
  background: #f8f9fa;
  padding: 18px 15px;
  font-weight: 600;
  color: #495057;
  border-bottom: 2px solid #dee2e6;
  font-size: 0.9rem;
  text-align: center;
}

.pricing-table td {
  padding: 18px 15px;
  border-bottom: 1px solid #dee2e6;
  text-align: center;
  vertical-align: middle;
}

.menu-note {
  font-size: 0.8rem;
  color: #6c757d;
  font-weight: 400;
  margin-top: 5px;
}

.notes-section {
  padding: 30px;
  border-radius: 12px;
  border-left: 5px solid #2c3e50;
  margin-top: 50px;
  border: 1px solid #e9ecef;
}

.notes-title {
  color: #2c3e50;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.notes-title:before {
  content: "ℹ️";
  margin-right: 10px;
  font-size: 1.2rem;
}

.notes-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.notes-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
  color: #495057;
  font-size: 0.9rem;
  list-style-type: none;
}

.notes-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #2c3e50;
  font-weight: bold;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .pricing-container {
    padding: 0 15px;
  }

  .pricing-table th, .pricing-table td {
    padding: 12px 8px;
    font-size: 0.8rem;
  }

  .section-header {
    padding: 20px 20px;
  }
}
