/* ============================
   お知らせ single ページ 全体
   ============================ */

/* 全体レイアウト */
.news-layout {
  padding: 60px 0 80px;
}

.news-layout__inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
	display: flex;
	gap: 40px;
}

/* 上部：記事ヘッダー・本文枠 */
.news-header {
  margin-bottom: 40px;
}

/* メインカラム */
.news-main {
  flex: 1;
}

/* サイドバー */
.news-sidebar {
  width: 280px;
}

/* ============================
   記事本体
   ============================ */

.news-single {
  background-color: #fff;
  border-radius: 8px;
  padding: 32px 32px 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

/* ヘッダー（日時・カテゴリ・タイトル） */
.news-single__head {
  margin-bottom: 24px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

/* 日付 */
.news-single__date {
  display: inline-block;
  font-size: 0.85rem;
  color: #888;
  margin-right: 12px;
}

/* カテゴリリスト */
.news-single__cats {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

.news-single__cats-item a {
  display: inline-block;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #ddd;
  color: #555;
  text-decoration: none;
  background-color: #fafafa;
}

.news-single__cats-item a:hover {
  border-color: #ccc;
  background-color: #f3f3f3;
}

/* タイトル */
.news-single__title {
  margin-top: 14px;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 600;
}

/* 本文 */
.news-single__content {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #333;
}

.news-single__content p {
  margin: 0 0 1.4em;
}

.news-single__content h2,
.news-single__content h3,
.news-single__content h4 {
  margin: 2.2em 0 0.8em;
  font-weight: 600;
}

.news-single__content h2 {
  font-size: 1.3rem;
  border-left: 4px solid #d4b06a; /* ゴールド系：サイトカラーに合わせて変更可 */
  padding-left: 10px;
}

.news-single__content h3 {
  font-size: 1.15rem;
}

.news-single__content h4 {
  font-size: 1.05rem;
}

.news-single__content ul,
.news-single__content ol {
  margin: 0 0 1.4em 1.3em;
}

/* 戻るボタン */
.news-single__back {
  margin-top: 32px;
  text-align: right;
}

.news-single__back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  font-size: 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid #d4b06a;
  color: #8b6a2e;
  background-color: #fffaf0;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.news-single__back-link::before {
  content: "‹";
  font-size: 1.1em;
  line-height: 1;
}

.news-single__back-link:hover {
  background-color: #d4b06a;
  color: #fff;
  border-color: #d4b06a;
}

/* ============================
   サイドバー（ウィジェット）
   ============================ */

.news-sidebar .widget {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px 18px 22px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.04);
  margin-bottom: 24px;
}

/* ウィジェットタイトル
   （functions.php の before_title = <div class="widget-title"> に対応） */
.news-sidebar .widget-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 14px;
  padding: 0 0 8px;
  border-bottom: 2px solid #d4b06a;
  color: #333;
}

/* ウィジェット内のリスト共通 */
.news-sidebar .widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-sidebar .widget ul li {
  border-bottom: 1px solid #eee;
}

.news-sidebar .widget ul li:last-child {
  border-bottom: none;
}

.news-sidebar .widget ul li a {
  display: block;
  padding: 8px 2px;
  font-size: 0.9rem;
  color: #444;
  text-decoration: none;
  line-height: 1.6;
}

.news-sidebar .widget ul li a:hover {
  color: #8b6a2e;
}

/* 最近の投稿ウィジェットなどで日付が入る場合 */
.news-sidebar .widget_recent_entries .post-date {
  display: block;
  font-size: 0.75rem;
  color: #999;
}

/* テキストウィジェットなどの段落 */
.news-sidebar .widget p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0 0 0.8em;
}

/* 検索フォーム（あれば） */
.news-sidebar .widget_search .search-form {
  display: flex;
  gap: 6px;
}

.news-sidebar .widget_search .search-field {
  flex: 1;
  padding: 6px 10px;
  font-size: 0.9rem;
  border-radius: 4px;
  border: 1px solid #ddd;
}

.news-sidebar .widget_search .search-submit {
  padding: 6px 10px;
  font-size: 0.85rem;
  border-radius: 4px;
  border: none;
  background-color: #d4b06a;
  color: #fff;
  cursor: pointer;
}

.news-sidebar .widget_search .search-submit:hover {
  opacity: 0.9;
}

/* ============================
   レスポンシブ
   ============================ */

@media (max-width: 959px) {
	.news-layout__inner {
    flex-direction: column;
  }

  .news-sidebar {
    width: 100%;
  }

  .news-single {
    padding: 24px 20px 32px;
  }
}

@media (max-width: 599px) {
  .news-layout {
    padding: 40px 0 60px;
  }

  .news-single__title {
    font-size: 1.35rem;
  }

  .news-single__head {
    padding-bottom: 16px;
  }

  .news-single__content {
    font-size: 0.9rem;
  }
}
/* ============================
   お知らせアーカイブ全体レイアウト
   ============================ */

.news-archive-layout {
  padding: 60px 0 80px;
  background-color: #f7f7f7;
}

.news-archive-layout__inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
}

/* メインカラム */
.news-archive-main {
  flex: 1;
}

/* サイドバー */
.news-archive-sidebar {
  width: 280px;
}

/* リード文 */
.news-archive__lead {
  width: 90%;
  max-width: 1200px;
  margin: 30px auto 20px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #444;
  padding: 16px 20px;
  background: #fff;
  border-radius: 6px;
}

/* ============================
   お知らせカード一覧
   ============================ */

.news-archive-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* 1件分のカード */
.news-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 18px 20px 20px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.04);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.news-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.news-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

/* カード上部：日付＋カテゴリ */
.news-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-bottom: 8px;
}

/* 日付 */
.news-card__date {
  font-size: 0.85rem;
  color: #888;
}

/* カテゴリ */
.news-card__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-card__cat {
  font-size: 0.8rem;
  padding: 3px 9px;
  border-radius: 999px;
  background-color: #fffaf0;
  border: 1px solid #d4b06a;
  color: #8b6a2e;
}

/* タイトル */
.news-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 6px 0 6px;
  line-height: 1.6;
}

/* 抜粋テキスト */
.news-card__excerpt {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #555;
  margin: 0 0 10px;
}

/* 「詳しく見る」 */
.news-card__more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  color: #8b6a2e;
  font-weight: 500;
}

.news-card__more::after {
  content: "›";
  font-size: 1.1em;
  line-height: 1;
}

/* ============================
   ページネーション
   ============================ */

.news-archive__pagination {
  margin-top: 24px;
  text-align: center;
}

/* デフォルトの the_posts_pagination に軽くスタイルを当てる */
.news-archive__pagination .navigation.pagination {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

.news-archive__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 6px;
  border-radius: 999px;
  font-size: 0.85rem;
  text-decoration: none;
  border: 1px solid transparent;
  color: #555;
}

.news-archive__pagination .page-numbers.current {
  background-color: #d4b06a;
  color: #fff;
  border-color: #d4b06a;
}

.news-archive__pagination .page-numbers:not(.current):hover {
  border-color: #d4b06a;
  color: #8b6a2e;
}

/* ============================
   サイドバー（共通ウィジェット）
   ============================ */

.news-archive-sidebar .widget {
  background-color: #fff;
  border-radius: 8px;
  padding: 18px 16px 20px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.04);
  margin-bottom: 20px;
}

/* functions.php の before_title = <div class="widget-title"> に対応 */
.news-archive-sidebar .widget-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 12px;
  padding: 0 0 8px;
  border-bottom: 2px solid #d4b06a;
  color: #333;
}

/* リスト */
.news-archive-sidebar .widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-archive-sidebar .widget ul li {
  border-bottom: 1px solid #eee;
}

.news-archive-sidebar .widget ul li:last-child {
  border-bottom: none;
}

.news-archive-sidebar .widget ul li a {
  display: block;
  padding: 7px 2px;
  font-size: 0.9rem;
  color: #444;
  text-decoration: none;
  line-height: 1.6;
}

.news-archive-sidebar .widget ul li a:hover {
  color: #8b6a2e;
}

/* ============================
   レスポンシブ
   ============================ */

@media (max-width: 959px) {
  .news-archive-layout__inner {
    flex-direction: column;
  }

  .news-archive-sidebar {
    width: 100%;
  }
}

@media (max-width: 599px) {
  .news-archive-layout {
    padding: 40px 0 60px;
  }

  .news-archive__lead {
    padding: 12px 14px;
    font-size: 0.9rem;
  }

  .news-card {
    padding: 14px 14px 16px;
  }

  .news-card__title {
    font-size: 1rem;
  }

  .news-card__excerpt {
    font-size: 0.88rem;
  }
}
/* ============================
   中絶コラム single ページ
   ============================ */

/* 全体レイアウト */
.column-layout {
  padding: 60px 0 80px;
  background-color: #f7f7f7;
}

.column-layout__inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
}

/* メインカラム */
.column-main {
  flex: 1;
}

/* サイドバー */
.column-sidebar {
  width: 280px;
}

/* ============================
   記事本体
   ============================ */

.column-single {
  background-color: #fff;
  border-radius: 8px;
  padding: 32px 32px 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

/* ヘッダー（日時・カテゴリ・タイトル） */
.column-single__head {
  margin-bottom: 24px;
  border-bottom: 1px solid #eee;
  padding-bottom: 18px;
}

/* 日付＋カテゴリ行 */
.column-single__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  margin-bottom: 8px;
}

/* 日付 */
.column-single__date {
  font-size: 0.85rem;
  color: #888;
}

/* カテゴリ */
.column-single__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.column-single__cats-item a {
  display: inline-block;
  font-size: 0.8rem;
  padding: 3px 10px;
  border-radius: 999px;
  background-color: #fffaf0;
  border: 1px solid #d4b06a;
  color: #8b6a2e;
  text-decoration: none;
}

.column-single__cats-item a:hover {
  background-color: #d4b06a;
  color: #fff;
}

/* タイトル */
.column-single__title {
  margin-top: 10px;
  font-size: 1.7rem;
  line-height: 1.5;
  font-weight: 600;
}

/* ============================
   本文（タイポグラフィ）
   ============================ */

.column-single__content {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #333;
}

.column-single__content p {
  margin: 0 0 1.5em;
}

/* aタグ */
.column-single__content a {
  color: #8b6a2e;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.column-single__content a:hover {
  color: #b08a44;
}

/* ============================
   見出し（h2, h3, h4）
   ============================ */

/* セクション見出し h2 */
.column-single__content h2,
.news-single__content h2 {
  position: relative;
  margin: 2.4em 0 1.2em;
  padding: 0.4em 0.8em 0.4em 0.8em;
  font-size: 1.25rem;
  font-weight: 600;
  border-left: 4px solid #d4b06a;
  background: linear-gradient(to right, #fff8e6 0%, #ffffff 60%);
}

/* 小見出し h3 */
.column-single__content h3,
.news-single__content h3.wp-block-heading {
  position: relative;
  margin: 2em 0 0.9em;
  padding-left: 1.1em;
  font-size: 1.1rem;
  font-weight: 600;
}

.column-single__content h3::before,
.news-single__content h3.wp-block-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55em;
  height: 0.55em;
  border-radius: 50%;
  background-color: #d4b06a;
}

/* 小見出し h4 */
.column-single__content h4,
.news-single__content h4.wp-block-heading {
  margin: 1.6em 0 0.6em;
  padding-left: 0.9em;
  font-size: 1rem;
  font-weight: 600;
  border-left: 2px solid #e0cf9d;
}

/* ============================
   リスト（ul / ol）
   ============================ */

/* ベース */
.column-single__content ul,
.column-single__content ol,
.news-single__content ul,
.news-single__content ol {
  margin: 0 0 1.5em 1.4em;
  padding: 0;
}

/* 箇条書き（ul） */
.column-single__content ul,
.news-single__content ul {
  list-style: none;
}

.column-single__content ul > li,
.news-single__content ul > li {
  position: relative;
  padding-left: 1.2em;
  margin: 0 0 0.4em;
  line-height: 1.8;
}

.column-single__content ul > li::before,
.news-single__content  ul > li::before{
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: #d4b06a;
  font-weight: 700;
}

/* 番号付き（ol） */
.column-single__content ol,
.news-single__content ol {
  list-style: none;
  counter-reset: num;
}

.column-single__content ol > li,
.news-single__content  ol > li{
  position: relative;
  padding-left: 1.6em;
  margin: 0 0 0.4em;
  line-height: 1.8;
  counter-increment: num;
}

.column-single__content ol > li::before,
.news-single__content ol > li::before {
  content: counter(num) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: #d4b06a;
  font-weight: 600;
  font-size: 0.95rem;
}

/* 入れ子リストの軽い調整 */
.column-single__content ul ul,
.column-single__content ol ol,
.column-single__content ul ol,
.column-single__content ol ul {
  margin-top: 0.3em;
  margin-bottom: 0.8em;
}

/* 引用（あれば） */
.column-single__content blockquote,
.news-single__content blockquote{
  margin: 1.8em 0;
  padding: 1em 1.2em;
  border-left: 4px solid #e0cf9d;
  background-color: #fffdf5;
  font-size: 0.92rem;
}

/* ============================
   戻るボタン
   ============================ */

.column-single__back {
  margin-top: 32px;
  text-align: right;
}

.column-single__back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  font-size: 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid #d4b06a;
  color: #8b6a2e;
  background-color: #fffaf0;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.column-single__back-link::before {
  content: "‹";
  font-size: 1.1em;
  line-height: 1;
}

.column-single__back-link:hover {
  background-color: #d4b06a;
  color: #fff;
}

/* ============================
   サイドバー（中絶コラムページ用）
   ============================ */

.column-sidebar .widget {
  background-color: #fff;
  border-radius: 8px;
  padding: 18px 16px 20px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.04);
  margin-bottom: 20px;
}

/* functions.php の before_title = <div class="widget-title"> に対応 */
.column-sidebar .widget-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 12px;
  padding: 0 0 8px;
  border-bottom: 2px solid #d4b06a;
  color: #333;
}

/* リスト */
.column-sidebar .widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.column-sidebar .widget ul li {
  border-bottom: 1px solid #eee;
}

.column-sidebar .widget ul li:last-child {
  border-bottom: none;
}

.column-sidebar .widget ul li a {
  display: block;
  padding: 7px 2px;
  font-size: 0.9rem;
  color: #444;
  text-decoration: none;
  line-height: 1.6;
}

.column-sidebar .widget ul li a:hover {
  color: #8b6a2e;
}

/* ============================
   レスポンシブ
   ============================ */

@media (max-width: 959px) {
  .column-layout__inner {
    flex-direction: column;
  }

  .column-sidebar {
    width: 100%;
  }

  .column-single {
    padding: 24px 20px 32px;
  }
}

@media (max-width: 599px) {
  .column-layout {
    padding: 40px 0 60px;
  }

  .column-single__title {
    font-size: 1.4rem;
  }

  .column-single__content {
    font-size: 0.9rem;
  }
}
/* ============================
   中絶手術コラム アーカイブ全体
   ============================ */

.column-archive-layout {
  padding: 60px 0 80px;
  background-color: #f7f7f7;
}

.column-archive-layout__inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
}

/* メインカラム */
.column-archive-main {
  flex: 1;
}

/* サイドバー */
.column-archive-sidebar {
  width: 280px;
}

/* リード文 */
.column-archive__lead {
  width: 90%;
  max-width: 1200px;
  margin: 30px auto 20px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #444;
  padding: 16px 20px;
  background: #fff;
  border-radius: 6px;
}

/* ============================
   コラムカード一覧
   ============================ */

.column-archive-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* 1件分のカード */
.column-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 18px 20px 20px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.04);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.column-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.column-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

/* カード上部：日付＋カテゴリ */
.column-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-bottom: 8px;
}

/* 日付 */
.column-card__date {
  font-size: 0.85rem;
  color: #888;
}

/* カテゴリ */
.column-card__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.column-card__cat {
  font-size: 0.8rem;
  padding: 3px 9px;
  border-radius: 999px;
  background-color: #fffaf0;
  border: 1px solid #d4b06a;
  color: #8b6a2e;
}

/* タイトル */
.column-card__title {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 6px 0 6px;
  line-height: 1.6;
}

/* 抜粋テキスト */
.column-card__excerpt {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #555;
  margin: 0 0 10px;
}

/* 「詳しく読む」 */
.column-card__more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  color: #8b6a2e;
  font-weight: 500;
}

.column-card__more::after {
  content: "›";
  font-size: 1.1em;
  line-height: 1;
}

/* ============================
   ページネーション
   ============================ */

.column-archive__pagination {
  margin-top: 24px;
  text-align: center;
}

/* the_posts_pagination の装飾 */
.column-archive__pagination .navigation.pagination {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

.column-archive__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 6px;
  border-radius: 999px;
  font-size: 0.85rem;
  text-decoration: none;
  border: 1px solid transparent;
  color: #555;
}

.column-archive__pagination .page-numbers.current {
  background-color: #d4b06a;
  color: #fff;
  border-color: #d4b06a;
}

.column-archive__pagination .page-numbers:not(.current):hover {
  border-color: #d4b06a;
  color: #8b6a2e;
}

/* ============================
   サイドバー（ウィジェット）
   ============================ */

.column-archive-sidebar .widget {
  background-color: #fff;
  border-radius: 8px;
  padding: 18px 16px 20px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.04);
  margin-bottom: 20px;
}

/* functions.php の before_title = <div class="widget-title"> に対応 */
.column-archive-sidebar .widget-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 12px;
  padding: 0 0 8px;
  border-bottom: 2px solid #d4b06a;
  color: #333;
}

/* リスト */
.column-archive-sidebar .widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.column-archive-sidebar .widget ul li {
  border-bottom: 1px solid #eee;
}

.column-archive-sidebar .widget ul li:last-child {
  border-bottom: none;
}

.column-archive-sidebar .widget ul li a {
  display: block;
  padding: 7px 2px;
  font-size: 0.9rem;
  color: #444;
  text-decoration: none;
  line-height: 1.6;
}

.column-archive-sidebar .widget ul li a:hover {
  color: #8b6a2e;
}

/* ============================
   レスポンシブ
   ============================ */

@media (max-width: 959px) {
  .column-archive-layout__inner {
    flex-direction: column;
  }

  .column-archive-sidebar {
    width: 100%;
  }
}

@media (max-width: 599px) {
  .column-archive-layout {
    padding: 40px 0 60px;
  }

  .column-archive__lead {
    padding: 12px 14px;
    font-size: 0.9rem;
  }

  .column-card {
    padding: 14px 14px 16px;
  }

  .column-card__title {
    font-size: 1.02rem;
  }

  .column-card__excerpt {
    font-size: 0.88rem;
  }
}

/* ---------- 全体 ---------- */
.main.page {
  padding: 60px 20px;
  background-color: #f7fafd;
  font-family: 'Noto Sans JP', sans-serif;
}

.wysiwyg-editor {
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- メイン・サイドバー構成 ---------- */
.content-sidebar-wrapper {
	display: flex;
	flex-direction: row;
	gap: 40px;
}

.contentout {
  width: 70%;
}

.sidebar {
  width: 30%;
}

/* ---------- ブログ記事カード ---------- */
.blog-list__list-item {
  margin-bottom: 40px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.blog-list__list-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.blog-item {
	display: flex;
	flex-direction: row;
	color: inherit;
	text-decoration: none;
}

/* アイキャッチ画像 */
.blog-item__thumbnail {
	width: 30%;
	overflow: hidden;
}

.blog-item__thumbnail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* コンテンツ */
.blog-item__content {
	width: 70%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-item__title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  line-height: 1.5;
}

.blog-item__button {
  margin-top: auto;
	text-align: right;
}

.blog-item__button-more {
  display: inline-block;
  color: #5b9fbf;
  font-weight: 600;
  border-bottom: 2px solid #5b9fbf;
  transition: all 0.3s ease;
}

.blog-item__button-more:hover {
  color: #417c9c;
  border-color: #417c9c;
}

/* ---------- サイドバー ---------- */
.sidebar {
  background-color: #ffffff;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.sidebar-section {
  margin-bottom: 40px;
}

.sidebar-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
  padding-left: 12px;
  border-left: 4px solid #5b9fbf;
  color: #333;
}

.sidebar-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.sidebar-list li {
  margin-bottom: 12px;
  font-size: 15px;
}

.sidebar-list a {
  color: #5b9fbf;
  text-decoration: none;
  transition: color 0.3s;
}

.sidebar-list a:hover {
  color: #417c9c;
}

/* ---------- レスポンシブ ---------- */
@media screen and (max-width: 1024px) {
  .content-sidebar-wrapper {
    flex-direction: column;
  }

  .contentout,
  .sidebar {
    width: 100%;
  }

  .sidebar {
    margin-top: 40px;
  }
}
