/* =========================
   ショートステイ料金表（short-ryoukin.css）
   ========================= */

.page-short-price{
  --toukouen-green: #009999; /* 他ページの“緑”に合わせたい場合はここだけ変更 */
}

/* タイトル（h1） */
.page-short-price .page-title{
  margin: 0 0 12px;
  padding: 12px 16px;
  text-align: center;
  font-weight: 900;
  color: #fff;
  background: var(--toukouen-green);
  border: 1px solid #000;
  box-sizing: border-box;
  width: 100%;
}

/* サブ情報 */
.page-short-price .price-sub{
  margin: 0 0 14px;
  text-align: center;
  font-weight: 700;
  line-height: 1.7;
}
.page-short-price .price-rev{
  display: inline-block;
  margin-top: 4px;
  padding: 2px 10px;
  border: 1px solid #000;
  background: #ffffcc;
}

/* PDFリンク一覧 */
.page-short-price .pdf-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.page-short-price .pdf-btn{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  padding: 12px 14px;
  border: 1px solid #000;
  background: #fff;
  text-decoration: none;
  font-weight: 800;
}

.page-short-price .pdf-btn:hover,
.page-short-price .pdf-btn:focus-visible{
  outline: none;
  filter: brightness(0.98);
  box-shadow: 0 0 0 2px rgba(0,0,0,0.15);
}

.page-short-price .pdf-badge{
  flex: 0 0 auto;
  padding: 2px 8px;
  border: 1px solid #000;
  background: #ffffcc;
  font-weight: 900;
}

/* 注意書き */
.page-short-price .price-note{
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid #000;
  background: #fff;
  text-align: center;
  line-height: 1.8;
  font-weight: 700;
}

/* スマホ */
@media (max-width: 980px){
  .page-short-price .pdf-btn{
    flex-direction: column;
    align-items: flex-start;
  }
  .page-short-price .pdf-badge{
    align-self: flex-end;
  }
}