/* 自動<p>タグの非表示 */
p:empty {
	display: none;
}
/* 自動<p>タグの非表示 */


/* 執筆者情報 */
.writer {
	width: 90%;
	margin: 0 auto;
	padding: 2% 5%;
	background-color: var(--ivory);
	border: 2px solid var(--orange);
	
}
.writer_title {
	width: 100%;
}
.writer_title p, .writer_title h5 {
	margin-bottom: 0!important;
	font-family: '游ゴシック体',  'Hiragino Kaku Gothic Pro', 'メイリオ',sans-serif!important;
}
.writer_flex_box {
	width: 100%;
}
.img_float {
	float: left;
	width: 40%;
	margin: 0 3% 10px 0;
	max-width: 170px;
}
.writer_text {
	width: 100%;
	font-size: 15px;
}
.writer_text p {
	font-family: '游ゴシック体',  'Hiragino Kaku Gothic Pro', 'メイリオ',sans-serif!important;
	line-height: 1.8;
}
.writer_link {
	text-align: right;
}
.writer_link a {
	text-decoration: none;
	color: var(--dark-orange);
	font-family: '游ゴシック体',  'Hiragino Kaku Gothic Pro', 'メイリオ',sans-serif!important;
}
@media screen and (max-width: 1024px) {
	.img_float {
		width: 35%;
		margin: 0 3% 10px 0;
	}
	.writer_text p {
		width: 100%;
		font-size: 14px;
		line-height: 25px;
	}
}
/* 執筆者情報 */


/*H1出力*/
.top-h1 {
	background: #5a544b;
	color: #fff!important;
}
.top-h1-write {
	max-width: 1200px;
	margin: 0 auto;
	padding: 3px 10px 1px;
}
.top-h1-write h1 {
	font-weight: 400;
	font-size: 90%;
	color: white!important;
}
.keni-header_wrap {
	background-image: none !important;
	padding-top: 0 !important;
}
.archive_title_wrap {
	font-size: 20px;
	padding: 25px 0 0 15px;
}
@media (max-width: 768px) {
	.top-h1-write h1 {
		font-size: 70%;
	}
	.archive_title_wrap {
		font-size: 16px;
		padding: 0 0 0 5%;
		line-height: 22px;
	}
}


/* pcとspの表示非表示切り替え
「pc」で表示させたい場合は「pc」
「sp」で表示させたい場合は「sp」
をそれぞれクラス名に記載してください。*/
.pc{
	display: block;
}
.sp{
	display: none;
}
@media (max-width: 768px) {
	.pc{
		display: none;
	}
	.sp{
		display: block;
	}
}


/* androidのダークモード対策 */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #ffffff;
        color: #050505;
    }
}
/* androidのダークモード対策 */

/* ブログ記事コメントエリア非表示 */
.comments-area {
    display: none;
}
/* ブログ記事コメントエリア非表示 */

/* youtubeの埋め込み */
.iframe-wrapper {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}
.iframe-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/* youtubeの埋め込み */