@charset "utf-8";

/*歯科料金一覧ページ*/ 

/* ヒーローセクション */
.menu-hero {
  position: relative;
  margin-top: 60px; /* 固定ヘッダー分の余白 */
}
.menu-hero-bg {
  display: block;
  width: 100%;
  height: auto;
}
.menu-hero-inner {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 20px;
  box-sizing: border-box;
}
.menu-title {
  font-family: var(--font-catch);
  font-size: var(--font-size-xxl);
  color: var(--color-bg-dark);
  margin: 0;
}

/* ボタン群 */
.menu-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}
.menu-btn {
  display: inline-block;
  background-color: #fff;
  padding: 12px 24px;
  border-radius: 24px;
  font-family: var(--font-body);
  font-size: var(--font-size-m);
  color: var(--color-bg-dark);
  text-decoration: none;
  transition: background-color 0.3s;
}
.menu-btn:hover {
  background-color: var(--color-bg-mid);
}

/* モバイル：背景画像を消して縦はみ出しを回避 */
@media (max-width: 767px) {
  .menu-hero-bg {
    display: none;
  }
  .menu-hero-inner {
    position: static;
  }
  .menu-buttons{
    gap:10px;
  }
  .menu-btn{
    background-color: var(--color-bg-base);
  }
}

/* 見出し（歯科料金ページ共通） */
.section-heading_dental{
  font-family: var(--font-catch);
  font-size: var(--font-size-xxl);
  text-align: center;
  margin-bottom: 32px;
}

/* セクション共通枠 */
.price-section { padding: 80px 20px 40px; }

/* 「施術内容」ボタン（共通） */
.btn-center { text-align: center; margin-bottom: 24px; }
.btn-procedure{
  display: inline-block;
  padding: 6px 12px;
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  color: #000;
  background: var(--color-bg-deep-key); 
  text-decoration: none;
  border-radius: 4px;
  transition: opacity .2s;
}
.btn-procedure:hover{ opacity: .8; }

/* 料金リスト（共通） */
.price-list{
  margin: 0;
  padding: 0;
  list-style: none;
}
.price-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid #ddd; /* 下線 */
}
.price-item{
  font-family: var(--font-body);
  font-size: var(--font-size-m);
  line-height: var(--lh-normal);
  flex: 1 1 auto;
}
.price-val{
  white-space: nowrap;
  font-family: var(--font-body);
  color: #000;
}
.price-val em{
  font-style: normal;
  font-size: var(--font-size-lg);
}

/* スマホ最適化 */
@media (max-width: 767px){
  .price-row{ gap: 12px; }
  .price-item{ font-size: var(--font-size-m); }
  .price-val em{ font-size: var(--font-size-m); }
}

/* ─── セクション共通 ─── */
.price-section {
  padding: 80px 20px;
}
.price-inner {
  max-width: 800px;
  margin: 0 auto;
}
.section-heading_dental {
  font-family: var(--font-catch);
  font-size: var(--font-size-xxl);
  text-align: center;
  margin-bottom: 32px;
}

/* 施術内容ボタン（共通） */
.btn-center { text-align: center; margin-bottom: 24px; }
.btn-procedure{
  display: inline-block;
  padding: 6px 12px;
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  color: #000;
  background: var(--color-bg-deep-key);
  text-decoration: none;
  border-radius: 4px;
  transition: opacity .2s;
}
.btn-procedure:hover{ opacity:.8; }

/* 価格テーブル（全部 実線） */
.price-block { margin-top: 28px; }
.price-subtitle {
  font-family: var(--font-catch);
  font-size: var(--font-size-lg);
  margin: 0 0 6px;
}
.price-table {
  border-top: 1px solid #ddd;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #ddd;   /* ← 実線に統一 */
}
.price-name {
  font-family: var(--font-body);
  font-size: var(--font-size-m);
}
.price-cost {
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: var(--font-size-m);
}
.price-cost small { font-size: 12px; }

/* モバイル */
@media (max-width: 767px) {
  .price-row { padding: 12px 0; }
}


/* モバイル */
@media (max-width: 767px){
  .price-row{
    padding:14px 0;
  }
  .price-row .price{
    font-size: var(--font-size-m);
  }
}

/* 注意書き（最小） */
.price-note{
  font-family: var(--font-body);
  font-size: var(--font-size-sm); /* 13px */
  color:#666;
  margin: 8px 0 24px;
}

/* 行内に置く小さめの施術ボタン */
.btn-procedure--inline{
  margin-left: 12px;
  vertical-align: middle;
}

