/* --- 施設一覧セクション全体 --- */
.info-items__block {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.facility-card {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
}

.facility-card:last-child {
  border-bottom: none;
}

/* --- サムネイル --- */
.page-title__text span {
    color: #004B9E!important;
}

.card-thumbnail__items {
  width: 100%;
}

.thumbnail-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* --- テキスト内容 --- */
.card-body {
  flex: 1;
}

.sub-title {
  font-size: 14px;
  color: #004B9E;
  font-weight: bold;
  margin-bottom: 5px;
}

.card-body h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: bold;
}

.desc {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #444;
}

/* --- ボタンレイアウト [cite: 4, 23, 30, 31, 32] --- */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-item {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #004B9E;
  color: #004B9E;
  text-decoration: none;
  font-size: 14px;
  border-radius: 4px;
  transition: 0.3s;
  background: #fff;
}

.btn-item:hover {
  background: #004B9E;
  color: #fff;
}

/* --- レスポンシブ切り替え --- */

/* PC (942px以上) */
@media screen and (min-width: 942px) {
  .facility-card {
    flex-direction: row;
    align-items: flex-start;
  }
  .card-thumbnail__items {
    flex: 0 0 300px; /* PC時の画像幅 */
    margin-right: 40px;
  }
}

/* SP (941px以下) */
@media screen and (max-width: 941px) {
  .facility-card {
    flex-direction: column;
  }
  .card-thumbnail__items {
    max-width: 100px; /* 指定のブレイクポイント設定 */
    margin-bottom: 20px;
  }
  .card-body h3 {
    font-size: 20px;
  }
  .btn-item {
    width: 100%; /* スマホでは押しやすいよう全幅に */
    text-align: center;
  }
}