.f12 {
	font-size: 12px;
	line-height: 140%;
}
.f14 {
	font-size: 14px;
	text-transform: uppercase;
}

/* =========================================================
   素材のチカラシリーズ メニュー（テキスト版）
   ========================================================= */
/* メニューのコンテナ（半透明のざぶとん部分） */
ul.navi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 15px;
  background-color: rgba(255, 255, 255, 0.85); /* 白の半透明 */
  border-radius: 30px; /* カプセル型に丸める */
  padding: 10px 20px;
  margin: 0 auto 30px auto;
  list-style: none;
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 10;
  left: -30px; /* 右のロゴを避けるため全体を左へ移動 */
}

/* メニューのテキストリンク部分（デフォルトは濃い緑） */
ul.navi li a {
  text-decoration: none;
  color: #3b5f2b; /* 画像に近い濃い緑色 */
  font-size: 13px; /* プラントベースが収まるように調整 */
  font-weight: bold;
  white-space: nowrap;
  transition: color 0.2s ease; /* ホバー時の色の変化をフワッとさせる */
  position: relative;
  top: -3px; /* 文字だけを上に移動 */
}

/* マウスホバー時と、現在いるページ（カレント）の色（オレンジ） */
ul.navi li a:hover,
ul.navi li a.current {
  color: #e65c24;
}

/* =========================================================
   見出し（葉っぱアイコン ＋ テキスト）
   ========================================================= */
.intro h2 {
  display: flex; /* アイコンとテキストを横並びにする */
  align-items: center; /* 縦の真ん中で揃える */
  gap: 10px; /* アイコンとテキストの隙間 */
  margin-bottom: 15px; /* 下の文章との余白 */
}

.intro h2 .title-text {
  font-family: 'Noto Serif JP', serif; /* Googleフォントの明朝体を指定 */
  color: #3b5f2b; /* メニューと同じ濃い緑色 */
  font-size: 22px; /* 文字の大きさ（元画像に合わせて調整） */
  font-weight: 600; /* 少し太字にして存在感を出す */
  letter-spacing: 0.1em; /* 文字と文字の間隔を少し開けて上品に */
}