/* CSS Document */

/*============================================================================

	magazineトップページを本体サイト(t-times.love)のデザインに揃えるCSS
	- ヒーロー(#mag_mainvisual)は本体の下層MV(#mainvisual)と同デザイン
	- 配色: 赤 #901d22 / ゴールド #e1a231(本体のデザイントークン)

============================================================================*/

#body_wrap.home {
	font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic";
	letter-spacing: 0.03em;
}



/*------------------------------ ヒーロー ------------------------------*/
#mag_mainvisual {
	position: relative;
	height: 400px;
	background: url("../images/mv02.jpg") center center / cover no-repeat;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
#mag_mainvisual::before {
	position: absolute;
	content: "";
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
}
#mag_mainvisual h1 {
	position: relative;
	margin: 80px 0 0;
	text-align: center;
	z-index: 1;
}
#mag_mainvisual h1 span {
	display: block;
	font-family: "Oswald", sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: #cc4444;
	margin-bottom: 5px;
	letter-spacing: 1.4px;
}
#mag_mainvisual h1 em {
	display: inline-block;
	padding-bottom: 8px;
	border-bottom: 3px solid #e1a231;
	font-size: 40px;
	font-weight: 600;
	letter-spacing: 4px;
	color: #fff;
	font-style: normal;
}
#mag_mainvisual .sp_only {
	display: none;
}
@media (max-width: 640px) {
	#mag_mainvisual .sp_only {
		display: inline;
	}
}
#mag_mainvisual .mag_mv_lead {
	position: relative;
	z-index: 1;
	margin: 20px 0 0;
	color: #fff;
	font-size: 15px;
	letter-spacing: 1px;
	text-align: center;
	line-height: 1.8;
}
@media (max-width: 640px) {
	#mag_mainvisual {
		height: 260px;
	}
	#mag_mainvisual h1 {
		margin-top: 70px;
	}
	#mag_mainvisual h1 em {
		font-size: 26px;
		letter-spacing: 2px;
	}
	#mag_mainvisual .mag_mv_lead {
		font-size: 12px;
		margin-top: 12px;
		padding: 0 8%;
	}
}



/*------------------------------ カテゴリバッジ ------------------------------*/
.home .c-postThumb__cat {
	background: #e1a231;
	color: #fff;
}



/*------------------------------ 記事タイトルのホバー ------------------------------*/
.home .p-postList__link:hover .p-postList__title {
	color: #901d22;
}



/*------------------------------ サイドバーの見出し ------------------------------*/
.home .c-widget h2.wp-block-heading {
	font-size: 18px;
	font-weight: 700;
	padding-bottom: 8px;
	border-bottom: 3px solid #e1a231;
}



/*------------------------------ 検索ボタン ------------------------------*/
.home .wp-block-search__button {
	background: #901d22;
	color: #fff;
	border: none;
	transition: background .2s;
}
.home .wp-block-search__button:hover {
	background: #b02229;
}



/*------------------------------ ページネーション ------------------------------*/
.home .c-pagination a:hover,
.home .c-pagination .-current,
.home .c-pagination__btn a {
	background: #901d22;
	color: #fff;
	border-color: #901d22;
}


/* カテゴリ導線(ヒーロー直下) */
#mag_cat_nav {
	background: #fff;
	border-bottom: 1px solid #eee;
}
#mag_cat_nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
	width: 90%;
	max-width: 1280px;
	margin: auto;
	padding: 22px 0;
	list-style: none;
}
#mag_cat_nav a {
	display: inline-block;
	padding: 8px 22px;
	border: 1px solid #901d22;
	border-radius: 999px;
	color: #901d22;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
}
#mag_cat_nav a span {
	margin-left: 8px;
	font-size: 12px;
	font-weight: 400;
	opacity: 0.75;
}
#mag_cat_nav a:hover {
	background: #901d22;
	color: #fff;
}
@media (max-width: 640px) {
	#mag_cat_nav ul {
		gap: 8px;
		padding: 16px 0;
	}
	#mag_cat_nav a {
		padding: 6px 14px;
		font-size: 13px;
	}
}
