/* =========================================
   ブログアーカイブページ レイアウト
   ========================================= */

/* 外枠のラッパー */

.blog_page_wrapper {
	width: 100%;
	padding: 40px 0;
	background-color: #F7F7F7;
	/* 背景色が必要なら変更 */
}

/* 2カラム Flexboxコンテナ */

.blog_flex_container {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	/* メインとサイドの間隔 */
	align-items: flex-start;
	/* 上揃え */
}

/* --- 左側：メインエリア --- */

.blog_main_area {
	flex: 1;
	/* 残りの幅を全部使う */
	min-width: 0;
	/* Flexboxのはみ出し防止 */
	background-color: #fff;
	padding: 20px;
}

/* ニュースリストの微調整（アーカイブページ用） */

.blog_news_list_custom {
	border-top: 1px solid #ddd;
}

/* 既存クラスの再定義（もし効いていない場合用） */

.products_single_section_title_gold {
	margin: 0 auto 20px;
	font-size: 18px;
}

.top_c02-news {
	display: flex;
	align-items: baseline;
	padding: 20px 0;
	border-bottom: 1px solid #ddd;
	text-decoration: none;
	color: #333;
	transition: opacity 0.3s;
}

.top_c02-news:hover {
	opacity: 0.7;
}

.top_c02-news-day {
	font-family: 'Times New Roman', serif;
	margin-right: 20px;
	font-size: 14px;
	color: #777;
	white-space: nowrap;
	/* 日付を折り返さない */
}

.top_c02-news-ttl {
	font-size: 16px;
	line-height: 1.6;
}

/* --- 右側：サイドバーエリア --- */

.blog_sidebar_area {
	width: 300px;
	/* サイドバーの幅固定 */
	flex-shrink: 0;
	/* 縮ませない */
}

.sub_main_blog_side {
	background-color: #fff;
	/* 少し背景色をつける場合 */
	padding: 20px;
	border-radius: 4px;
}

/* サイドバーの各ブロック */

.sub_main_blog_side_links {
	margin-bottom: 40px;
}

/* サイドバータイトル */

.sub_main_blog_side_links_title {
	font-size: 18px;
	font-weight: bold;
	color: #333;
	border-bottom: 2px solid #B4A483;
	/* Make.a.wish ゴールド */
	padding-bottom: 10px;
	margin-bottom: 20px;
	letter-spacing: 0.05em;
}

/* リストスタイル */

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

.sub_main_blog_side_links_lists a {
	color: #333;
	text-decoration: none;
	transition: color 0.3s;
	line-height: 1.6;
}

.sub_main_blog_side_links_lists_item {
	margin-bottom: 10px;
	font-size: 14px;
	border-bottom: 1px dashed #ddd;
	/* 破線で区切る */
	padding-bottom: 10px;
}

.sub_main_blog_side_links_lists_item:last-child {
	border-bottom: none;
}

.sub_main_blog_side_links_lists_item a {
	display: block;
	color: #333;
	text-decoration: none;
	transition: color 0.3s;
	line-height: 1.6;
}

.sub_main_blog_side_links_lists_item a:hover {
	color: #B4A483;
	/* ホバー時にゴールド */
}

.nav-prev a {
	color: #333;
	text-decoration: underline;
}

.nav-next a {
	color: #333;
	text-decoration: underline;
}

.single_category_list a {
	display: inline-block;
	background-color: #333;
	color: #fff !important;
	font-size: 12px;
	padding: 5px 12px;
	text-decoration: none !important;
	transition: background-color 0.3s;
	white-space: nowrap;
	margin-right: 4px;
}

.single_category_list a:hover {
	background-color: #B4A483;
	opacity: 1;
}

/* --- スマホ対応（レスポンシブ） --- */

@media (max-width: 768px) {
	.blog_flex_container {
		flex-direction: column;
		/* 縦並びにする */
		gap: 20px;
	}
	.blog_sidebar_area {
		width: 100%;
		/* サイドバーを幅いっぱいに */
	}
	.top_c02-news {
		flex-direction: column;
		/* ニュースの日付とタイトルを縦に */
		align-items: flex-start;
	}
	.top_c02-news-day {
		margin-bottom: 5px;
	}
}