@charset "UTF-8";
/* blog_all.css */

#lower_mv:before {
	background-image: url(../../img/blog/mv_pc.jpg);
}
@media screen and (max-width:768px) {
	#lower_mv:before {
		background-image: url(../../img/blog/mv_sp.jpg);
	}
}


/* 記事は準備中です */
.notready_text {
	text-align: center;
}


/* ===== アーカイブリンクを白背景BOXで囲む ===== */
.blog_white_box {
	padding: 30px 40px;
	border-radius: 10px;
	background-color: #fff;
}
.blog_white_box h2 {
	font-size: 18px;
	text-align: center;
	margin-bottom: 15px;
	color: #ff5d00;
}
.blog_year_box {
	margin-bottom: 20px;
}
.blog_cat_box {
	margin-bottom: 60px;
}


/* ===== タグアーカイブ ===== */
.archive_taglist {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: flex-start;
	margin: auto;
}
.archive_taglist li {
	line-height: 1;
	margin-right: 2em;
	margin-bottom: 1.5em;
}
.archive_taglist li:last-of-type {
	margin-right: 0;
}
.archive_taglist li a {
	font-weight: 500;
	line-height: 1;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
}
.archive_taglist li a:before {
	content: "";
	min-width:  1.1em;
	min-height: 1.1em;
	display: block;
	background-color: #fff;
	border: 1px solid #ff5d00;
	border-radius: 50px;
	margin-right: .5em;
}
/* active */
.archive_taglist li.active a:before {
	background-color: #ff5d00;
}


/* ===== 年別アーカイブ ===== */
.archive_yearlist {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.archive_yearlist li,
.archive_yearlist li a {
	font-family: din-2014, "Barlow", sans-serif !important;
	font-weight: 500;
}
.archive_yearlist li:after {
	content: "/";
	margin-left:  .75em;
	margin-right: .75em;
}
.archive_yearlist li:last-of-type:after {
	content: none;
}
/* active */
.archive_yearlist li.active a {
	font-weight: bold;
	color: #ff5d00;
}


/* ===== ページネーション ===== */
.custom_pagination {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
}
.custom_pagination .prev,
.custom_pagination .next {
	width:  35px;
	height: 35px;
	min-width:  35px;
	min-height: 35px;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 40%;
	background-color: #000;
	border-radius: 50px;
}
.custom_pagination .prev {
	background-image: url(../../img/common/btn_arrow_mirror.svg);
}
.custom_pagination .next {
	background-image: url(../../img/common/btn_arrow.svg);
}
.custom_pagination a.prev svg,
.custom_pagination a.next svg {
	width:  50px;
	height: 50px;
	min-width:  50px;
	min-height: 50px;
	position: absolute;
	fill: none;
	stroke-width: 1.25px;
	stroke: #000;
}
.page_info {
	font-size: 16px;
	font-weight: 700;
	font-family: din-2014, "Barlow", sans-serif !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 30px;
}
.page_info span {
	font-size: 20px;
	font-weight: 700;
	font-family: din-2014, "Barlow", sans-serif !important;
	line-height: 1;
}
.page_info span:first-of-type {
	margin-right: .15em;
}
.page_info span:nth-of-type(2) {
	margin-left: .15em;
}





@media screen and (max-width:768px) {
	/* ===== アーカイブリンクを白背景BOXで囲む ===== */
	.blog_white_box {
		padding: 25px;
	}
	.blog_white_box h2 {
		margin-bottom: 15px;
	}
	.archive_yearlist li,
	.archive_yearlist li a {
		font-size: 16px;
	}

	/* ===== ブログ一覧 ===== */
	.blog_card {
		width: 100%;
	}
	.blog_card:last-of-type {
		margin-bottom: 0;
	}
	.blog_cat_box {
		margin-bottom:  40px;
		padding-bottom: 15px;
	}
	.blog_cat_box h2 {
		margin-bottom: 20px;
	}
	/* 文字回り */
	.blog_date {
		font-size: 12px;
		margin-bottom: .75em;
		padding-top: 20px;
	}
	.blog_title {
		font-size: 16px;
	}
	.blog_cont {
		font-size: 12px;
	}
	.blog_card > a > *,
	.blog_tagmore {
		padding-left:  20px;
		padding-right: 20px;
	}
	.blog_tagmore li,
	.blog_tagmore li a {
		font-size: 13px;
	}
	.blog_more_orange {
		width:  30px;
		height: 30px;
		min-width:  30px;
		min-height: 30px;
	}


	/* ===== ページネーション ===== */
	.custom_pagination {
		margin-top: 40px;
	}


	/* ===== ブログ一覧レイアウト変更 ===== */
	.blog_card {
		width: 100%;
		display: flex;
		flex-wrap: nowrap;
		align-items: stretch;
		justify-content: flex-start;
		flex-direction: row;
		margin-bottom: 20px;
	}
	.blog_card > a {
		width: 45%;
	}
	.blog_tagmore {
		width: 55%;
	}
	.blog_img,
	.blog_img img {
		height: 100%;
		object-fit: cover;
	}
	.blog_card a,
	.blog_tagmore {
		flex-wrap: wrap;
		flex-direction: column;
	}
	.blog_tagmore {
		align-items: stretch;
		margin-top: 0;
		padding: 0;
	}
	.blog_tagmore a.sp_blk {
		width:  100%;
		height: calc(100% - 3em);
		padding: clamp(15px,4vw,20px);
	}
	.blog_tagmore ul {
		margin-bottom: 0;
		padding-left:   15px;
		padding-bottom: 20px;
		padding-left:   clamp(15px,4vw,20px);
	}
	.blog_date {
		padding-top: 0;
	}
	.blog_title {
		font-size: 14px;
		margin-bottom: 0;
	}

	/* オレンジ三角 非表示 */
	.blog_more_orange {
		display: none;
	}
}