/* ページ全体の背景とフォント */
body.page-id-3 {
  font-family: 'Noto Sans JP', sans-serif;
  background: #f6fff8;
  color: #333;
  line-height: 1.9;
  padding: 2rem 1rem;
}
/* サイドバーの幅調整を無効化して中央に寄せる */
body.page-id-3.-sidebar-on .l-mainContent {
  max-width: 100%;
  display: flex;
  justify-content: center;
}

/* 中のコンテンツを中央寄せで固定幅に */
body.page-id-3 .l-mainContent__inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid #dcedc8;
  box-sizing: border-box;
}


/* メインコンテンツの中央寄せと横幅制御 */
.l-mainContent {
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
}

.l-mainContent__inner {
  width: 100%;
  max-width: 800px;
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid #dcedc8;
  box-sizing: border-box;
}


/* ページタイトル */
.c-pageTitle {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  display: inline-block;
  border-bottom: 4px solid #4caf50;
  padding-bottom: 0.5rem;
  color: #2e7d32;
}

/* h2見出し */
.post_content h2 {
  margin-top: 2.5rem;
  font-size: 1.5rem;
  color: #2e7d32;
  border-left: 6px solid #81c784;
  padding-left: 1rem;
  background: #f6fff8;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  border-radius: 4px;
}

/* 段落 */
.post_content p {
  margin: 1.5rem 0;
  font-size: 1rem;
  color: #333;
}

/* 強調テキスト */
.post_content strong {
  font-weight: bold;
  color: #2e7d32;
}

/* リンク */
.post_content a {
  color: #2e7d32;
  text-decoration: underline;
}

.post_content a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 600px) {
  .l-mainContent__inner {
    padding: 2rem 1.2rem;
  }
  .c-pageTitle {
    font-size: 1.6rem;
  }
  .post_content h2 {
    font-size: 1.2rem;
  }
}
