/* =========================================================
   page-support.css : 子育て支援
   page-pill / Support(子育てひろば) / ラベルチップ付きリスト
   施設子サイト（りじょう認定こども園）
   ※ 背景はPC共通背景(body.bg-en)。カード背景なし（白チップは影で見せる）。
   ========================================================= */

/* ===== ページタイトル pill（共通仕様） ===== */
.page-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 500px;
  max-width: calc(100% - 40px);
  height: 70px;
  margin: 40px auto 0;
  background: var(--color-white);
  border: 1px solid var(--color-accent-mid);
  border-radius: 10px;
  font-family: var(--font-gothic);
  font-weight: 900;
  font-size: 28px;
  color: var(--color-accent);
}

/* ===== Support セクション ===== */
.support__inner {
  width: 100%;
  max-width: 778px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.support__head { text-align: center; }
.support__intro {
  max-width: max-content;     /* 要素は中央・テキストは左揃え（PC） */
  margin: 16px auto 0;
  text-align: left;
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 2;
  color: var(--color-text-sub);
}
/* SP専用改行（PCでは無効） */
.support__intro .br-sp { display: none; }

/* ===== 内容リスト（ラベルチップ＋値） ===== */
.sup-list { margin-top: 40px; }
.sup-row {
  display: grid;
  grid-template-columns: 121px 1fr;
  align-items: start;
  column-gap: 34px;
}
.sup-row + .sup-row { margin-top: 16px; }

/* ラベル（白チップ・淡い影）— PC */
.sup-label {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.07);
  font-family: var(--font-base);
  font-size: 16px;
  color: var(--color-text-sub);
  white-space: nowrap;
}
.sup-val {
  padding-top: 5px;
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-sub);
}

/* 開催日：年度＋月予定（PC＝4列） */
.sup-year { padding-top: 0; }
.sup-months {
  display: flex;
  gap: 80px;
  margin-top: 14px;
}
.sup-months__col { line-height: 1.9; }
.sup-months__col li { white-space: nowrap; }

/* =========================================================
   レスポンシブ（SP : max-width 750px）
   ========================================================= */
@media (max-width: 750px) {
  .page-pill { width: 300px; max-width: calc(100% - 40px); height: 40px; font-size: 22px; margin-top: 24px; }

  .support__inner { max-width: none; }
  .support__intro { text-align: center; margin-top: 14px; }
  .support__intro .br-sp { display: inline; } /* SP独自改行を有効化 */

  /* SP：縦1カラム（チップ上・値下） */
  .sup-list { margin-top: 30px; }
  .sup-row { display: block; }
  .sup-row + .sup-row { margin-top: 24px; }
  /* SPチップ：薄緑地＋緑文字（白地ページ上でのコントラスト） */
  .sup-label {
    width: 150px;
    height: 30px;
    border-radius: 15px;
    margin-left: 13px;
    background: var(--color-accent-bg); /* var(--color-accent-bg) */
    box-shadow: none;
    font-size: 15px;
    color: var(--color-accent);
  }
  .sup-val {
    margin-top: 10px;
    margin-left: 26px;
    padding-top: 0;
  }
  /* 月予定：SPは12ヶ月を縦1列 */
  .sup-months { flex-direction: column; gap: 0; margin-top: 0; }
  .sup-months__col { line-height: 1.9; }
  .sup-year { margin-bottom: 1.9em; } /* 年度の後に1行空け */
}
