/* =========================
   tokuyou-ryoukin.css
   特養：利用料金表（基本負担額）
   ========================= */

.page-tokuyou-price{
  --h1-green: #009999; /* 指定：h1のみどり */
}

/* h1：背景#009999 + はみ出し防止 */
.page-tokuyou-price .page-title{
  margin: 0 0 12px;
  padding: 12px 16px;

  width: 100%;
  box-sizing: border-box;

  text-align: center;
  font-weight: 900;
  color: #fff;
  background: var(--h1-green);
  border: 1px solid #000;
}

/* サブ情報 */
.page-tokuyou-price .price-sub{
  margin: 0 0 14px;
  padding: 10px 12px;
  border: 1px solid #000;
  background: #fff;
  line-height: 1.9;
  font-weight: 700;
  text-align: center;
}

.page-tokuyou-price .price-sub .unit{
  font-weight: 900;
}

.page-tokuyou-price .price-sub .small{
  font-size: 0.95em;
  font-weight: 700;
  margin-left: 4px;
}

.page-tokuyou-price .price-sub .rev{
  display: inline-block;
  margin-top: 6px;
  font-weight: 900;
}

/* PDFボタン（参考ページの雰囲気に寄せる） */
.page-tokuyou-price .pdf-list{
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: grid;
  gap: 10px;
}

.page-tokuyou-price .pdf-btn{
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 12px;
  padding: 12px 14px;

  border: 1px solid #000;
  background: #fff;
  text-decoration: none;
  color: inherit;
  font-weight: 800;
}

.page-tokuyou-price .pdf-btn:hover,
.page-tokuyou-price .pdf-btn:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 153, 153, 0.25);
}

.page-tokuyou-price .pdf-badge{
  flex: 0 0 auto;
  font-size: 0.85em;
  font-weight: 900;
  padding: 4px 10px;
  border: 1px solid #000;
  background: #ffffcc; /* 旧サイトのトーンも少し残す */
}

/* 注記 */
.page-tokuyou-price .price-note{
  padding: 10px 12px;
  border: 1px solid #000;
  background: #fff;
  line-height: 1.8;
  font-weight: 700;
}

/* スマホ：文字サイズ調整 */
@media (max-width: 480px){
  .page-tokuyou-price .page-title{
    font-size: 1.1rem;
  }
  .page-tokuyou-price .pdf-btn{
    font-size: 0.95rem;
  }
}