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

#lower_mv:before {
	background-image: url(../../img/blog/mv_pc.jpg);
}
.white_box {
	margin-bottom: 40px;
}
.fs_mini_sp {
	text-align: center;
}


/* ===== News ===== */
.news_box {
	padding-top: 30px;
	padding-bottom: 50px;
}
.news_box + .btn_kuro {
	margin-top: -30px;
}
.news_list a  {
	width: 100%;
	display: inline-block;
	transition: background-color .1s;
}
.news_list a:hover {
	background-color: #f6f6f6;
}

.news_list dl {
	font-size: 16px;
	font-size: clamp(13px,1.6vw,16px);
	position: relative;
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	padding: 1em 0;
	border-bottom: 1px solid #ccc;
}
.news_list dt,
.news_list dd {
	line-height: 1.5;
	font-weight: normal;
}
.news_list dt {
	min-width: 7.5em;
	text-align: center;
	letter-spacing: .05em;
	margin-right: 1em;
}
.news_list dt:before {
	content: "";
	min-width: 7.5em;
	height: 1px;
	display: block;
	position: absolute;
	left: 0;
	bottom: -1px;
	background-color: #000;
}


/* ===== ページネーション ===== */
.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) {
	.fs_mini_sp {
		text-align: left;
	}

	/* ===== News ===== */
	.news_box {
		padding-top: 15px;
		padding-bottom: 40px;
	}
	.news_list dl,
	.news_list dt,
	.news_list dd {
		font-size: 12px;
	}
	.news_list dl {
		flex-wrap: wrap;
	}
	.news_list dt,
	.news_list dd {
		width: 100%;
		text-align: left;
		margin-right: 0;
	}
	.news_list dt {
		margin-bottom: .25em;
	}
	.news_list dt:before {
		min-width: 6em;
	}
}