/* 本文リンク用（グローバルメニュー除外） */
main a, .content a {
  text-decoration: none;
  color: #6b8f71;
  font-family: 'Zen Maru Gothic', sans-serif;
  transition: color 0.3s, text-decoration 0.3s;
}

/* メッセージ画像 */
.message-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  margin: 0 auto; /* ← これが中央寄せの決定打 */
}


.goals-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  max-width: 600px;
}

.goals-list li {
  position: relative;
  padding-left: 2em;
  margin-bottom: 1.6em;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: left;
}

.goals-list li::before {
  content: "✿";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #e6a3b4;
  font-size: 1.1em;
}
/* スマホのときだけ ul の上に余白を追加 */
@media (max-width: 768px) {
  #childcare ul.goals-list {
    margin-top: 40px;
  }
}
.evaluation-text {
  text-align: center;
  font-family: 'Zen Maru Gothic', sans-serif !important;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}


/* 園の特色テーブル */
.feature-table {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0 10px;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.feature-table th, .feature-table td {
  padding: 12px 16px;
  border-radius: 12px;
  vertical-align: top;
  font-size: 1rem;
}

/* 園の特色セル */
.feature-table th {
  background-color: #ff7f7f;
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  text-align: left;
  width: 180px;
  font-weight: bold;
}

/* 園の特色セル */
.feature-table td {
  background-color: #fff0f0;
  color: #333;
}

/* 行ごとのホバー効果 */
.feature-table tr:hover td {
  background-color: #ffe6e6;
  transition: background-color 0.3s;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .feature-table th, .feature-table td {
    display: block;
    width: 100%;
    padding: 10px 12px;
  }
  .feature-table th {
    margin-bottom: 4px;
    border-radius: 8px 8px 0 0;
  }
  .feature-table td {
    border-radius: 0 0 8px 8px;
    margin-bottom: 12px;
  }
}

/* 園の特色 コンテンツ調整 */
.feature-content {
  max-width: 900px;
  margin: 0 auto;
}

.feature-content .goals-list {
  list-style: none;
  padding-left: 0;
  margin: 0 auto;
  max-width: 660px;
  text-align: left;
}
/* PC表示：中央寄せ */
#childcare .goals-list {
  list-style: none;
  padding-left: 0;
  margin: 0 auto;
  max-width: 320px;
  text-align: left;
}

/* スマホ表示：左寄せ */
@media (max-width: 768px) {
  #childcare .container {
    display: block;
  }
  #childcare .goals-list {
    margin: 0;
    max-width: 100%;
    text-align: left;
  }
}
/* 預かり保育文章下余白 */
#childcare .evaluation-text {
  font-family: inherit;
  margin-bottom: 1.5rem;
}

/* スマホ表示のとき少し余白を狭める */
@media screen and (max-width: 768px) {
  #childcare .evaluation-text {
    margin-bottom: 1.2rem;
  }
}
/* PCだけ th を縦中央に */
@media screen and (min-width: 769px) {
  #lesson .feature-table th {
    vertical-align: middle;
  }
}
