@charset "UTF-8";

/* コンテナ全体 */
.blog_inner {
  max-width: 800px;
  margin: 40px auto;
  padding: 24px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-family: "Hiragino Kaku Gothic Pro","メイリオ",sans-serif;
  color: #333;
}

/* タイトル部分 */
.blog_ttl_all {
  text-align: center;
  margin-bottom: 24px;
}

.blog_ttl {
  font-size: 1.8rem;
  font-weight: bold;
  color: #4A7D4E;
  margin: 0;
}

/* サブセクション（お知らせ） */
.blog_text_all {
  /* 既存のスタイルは残しつつ、中央寄せを追加 */
  border-top: 2px solid #e0e0e0;
  padding-top: 20px;

  /* テキスト中心配置＆フレックスレイアウトで子要素を縦方向に中央寄せ */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.blog_sbttl {
  font-size: 1.4rem;
  font-weight: 600;
  color: #e65c41;
  margin-bottom: 12px;
}

/* 本文テキスト */
.blog_text {
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 20px;
}

/* ボタン */
.blog_btn {
  display: inline-block;       /* 幅は内容に合わせる */
  margin-top: 20px;            /* 上に余白を確保 */
  padding: 12px 24px;
  background-color: #4A7D4E;   /* 落ち着いたグリーン */
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.blog_btn:hover {
  background-color: #3E6A41;
  transform: translateY(-2px);
}

.blog_btn:active {
  background-color: #324D36;
  transform: translateY(0);
}
