/* =========================
   ショートステイ 利用方法（short-riyou.css）
   ========================= */

.page-short-guide{
  --toukouen-green: #009999; /* h1の緑（必要ならここだけ変更） */
  --accent-red: #cc0000;     /* 旧ページの赤見出しを踏襲 */
}

/* h1（背景がはみ出ないように固定） */
.page-short-guide .page-title{
  margin: 0 0 14px;
  padding: 12px 16px;
  width: 100%;
  box-sizing: border-box;

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

/* 2つの説明ブロック */
.page-short-guide .info-block{
  border: 1px solid #000;
  background: #fff;
  padding: 14px 16px;
  margin: 0 0 12px;
}

/* 見出し（旧ページの赤を踏襲） */
.page-short-guide .info-title{
  margin: 0 0 10px;
  font-weight: 900;
  color: var(--accent-red);
  line-height: 1.4;
}

/* 見出し右側の補足 */
.page-short-guide .cap{
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  font-size: 0.9em;
  color: #000;
  background: #ffffcc;
  border: 1px solid #000;
  font-weight: 800;
}

/* 本文 */
.page-short-guide .info-text{
  margin: 0;
  line-height: 1.9;
  font-weight: 700;
}

/* 問い合わせ誘導 */
.page-short-guide .contact-box{
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid #000;
  background: #ffffcc;
  text-align: center;
  line-height: 1.8;
  font-weight: 800;
}

.page-short-guide .contact-link{
  display: inline-block;
  margin-top: 6px;
  padding: 8px 12px;
  border: 1px solid #000;
  background: #fff;
  text-decoration: none;
  font-weight: 900;
}

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