/* =========================
   特養 平面図ページ専用
   tokuyou-heimenzu.css
   ========================= */

.page-tokuyou-plan{
  --toukouen-green: #009999; /* “みどり” */
}

/* h1：背景みどり＋はみ出し防止 */
.page-tokuyou-plan .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(--toukouen-green);
  border: 1px solid #000;
}

/* リード文 */
.page-tokuyou-plan .plan-lead{
  margin: 0 0 14px;
  line-height: 1.8;
  font-weight: 700;
  text-align: center;
}

/* リストの「・」を消す */
.page-tokuyou-plan .plan-list{
  list-style: none;
  padding: 0;
  margin: 0;

  display: grid;
  gap: 14px;
}

/* 2カラム（広い画面） */
@media (min-width: 900px){
  .page-tokuyou-plan .plan-list{
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.page-tokuyou-plan .plan-item{
  border: 1px solid #000;
  background: #fff;
  padding: 12px;
  box-sizing: border-box;
}

.page-tokuyou-plan .plan-title{
  margin: 0 0 10px;
  padding: 8px 10px;

  font-size: 1.05rem;
  font-weight: 900;
  text-align: center;

  border: 1px solid #000;
  background: #f6f6f6;
}

/* 画像 */
.page-tokuyou-plan .plan-link{
  display: block;
  border: 1px solid #000;
  background: #fff;
}

.page-tokuyou-plan .plan-img{
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* ボタン */
.page-tokuyou-plan .plan-actions{
  margin-top: 10px;
  text-align: center;
}

.page-tokuyou-plan .plan-btn{
  display: inline-block;
  padding: 10px 14px;
  border: 1px solid #000;
  background: #fff;
  text-decoration: none;
  font-weight: 900;
}

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