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

.greeting-profile {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 3px solid #ffb3b3;
  margin-bottom: 20px;

  object-fit: contain;
  background-color: #fff;
}

.profile-name {
  font-weight: bold;
  font-size: 1rem;
  color: #ff7b7b;
}
/* 「ごあいさつ」セクション */
#greeting {
  position: relative;
}

#greeting p {
  text-indent: 1em;
  margin-bottom: 1.5em;
  font-size: 1.1rem;
  font-family: 'Zen Maru Gothic', sans-serif !important;
}

/* スマホ向け */
@media screen and (max-width: 767px) {
  #greeting p {
    text-indent: 0.8em;
    font-size: 1rem;
    font-family: 'Zen Maru Gothic', sans-serif !important;
  }
}
/* ごあいさつセクション内のcontainer */
#greeting .container {
  text-align: left;
}

/* 教育理念 */
.philosophy-lead {
  text-align: center;
  font-size: clamp(1.4rem, 5vw, 1.9em);
  white-space: nowrap;
  font-weight: 700;
  color: #6b4a4a;
  letter-spacing: 0.08em;
  margin: 1.2em 0 1.4em;
  font-family: 'Zen Maru Gothic', sans-serif;
}
/* 教育目標 */
.goals-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  max-width: 600px;
}

/* 各項目 */
.goals-list li {
  position: relative;
  padding-left: 2em;
  margin-bottom: 0.8em;
  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;
}

/* PC表示用 */
@media screen and (min-width: 768px) {
  .goals-list {
    margin-left: auto;
    margin-right: auto;
  }
}
/* PC中央寄せ */
.evaluation-text {
  text-align: center;      /* PCでは中央寄せ */
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* スマホ左寄せ） */
@media screen and (max-width: 767px) {
  .evaluation-text {
    text-align: left;
  }
}