@charset "utf-8";

/* ニュース一覧エリア */

.news_list {
	position: relative;
	padding: 0;
	margin: 0 0 70px;
	background: #fff;
	padding-top: 0;
	border-top: 1px solid #DDDDDD;
	display: block;
}

.news_list li {
	position: relative;
	border-bottom: 1px solid #DDDDDD;
	list-style: none;
	margin-bottom: 0;
}

.news_link {
	display: flex;
	flex-wrap: wrap;
	text-decoration: none;
	color: #222;
	padding: 36px 63px 37px 0;
	background: transparent;
	transition: all 0.3s;
	position: relative;
}

.news_link::after {
	content: '';
	display: block;
	position: absolute;
	top: 2px;
	right: 35px;
	bottom: 0;
	margin: auto;
	width: 19px;
	height: 13px;
	background: url(../img/arrow_black.svg) center center / contain no-repeat;
	transition: all 0.3s;
}

.news_date {
	display: block;
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	line-height: 1.6em;
	letter-spacing: 0.05em;
	color: #0057AA;
	width: 100px;
	margin: 0 15px 0 0;
	/* margin-bottom: 8px; */
}

.news_cate {
    display: block;
    font-weight: 500;
    letter-spacing: 0.1em;
    min-width: 99px;
    margin-right: 23px;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 24px;
    padding: 2px 10px 3px;
    font-size: 1.4rem;
    border: 1px solid #333;
    border-radius: 15px;
}


.news_title {
	line-height: 1.6;
	margin: 3px 0 0;
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	width: calc(100% - 115px);
	width: 100%;
}

/* hover */
.news_link:hover {
	opacity: .6;
}

.news_link:hover::after {
	right: 30px;
}

/* pagenaviが無い場合 */
.news_result_area .news_list:last-child {
	margin-bottom: 0;
}

/* archive.php */

/* single.php */

.single .cate_date {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin: 0 0 10px;
}

.single .news_title {
	width: 100%;
	margin: 0 auto 55px;
}

.single .news_title h2 {
	font-size: 3rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	padding: 0;
	margin: 0;
}

.single .news_title h2::before {
	content: none;
}

.single .news_title h2::after {
	content: none;
}

.single .single_content {
	padding: 50px 0 60px;
	margin-bottom: 64px;
	border-top: 1px solid #CCCCCC;
	border-bottom: 1px solid #CCCCCC;
}

.single .single_content h2 {
	padding-left: 20px;
}

.single .single_content h2::before {
	content: '';
	position: absolute;
	top: 11px;
	bottom: 0;
	left: 0;
	width: 4px;
	height: 27px;
	background: #0057AA;
}

.single .single_content h4 {
	padding-left: 12px;
}

.single .single_content h4::before {
	content: '';
	position: absolute;
	top: 2px;
	bottom: 0;
	left: 0;
	width: 6px;
	height: 2px;
	margin: auto;
	background: #0057AA;
}

.single .single_content p {
	line-height: 2;
}

.single .single_content ul {
	list-style: inside;
	list-style-type: disc;
}

.single .single_content ol {
	list-style: inside;
	list-style-type: decimal;
}

.single .single_content>*:first-child {
	margin-top: 0;
}

.single .single_content>*:last-child {
	margin-bottom: 0;
}

.single_link_wrap .link_btn a {
	font-weight: 500;
	margin: auto;
}



@media screen and (max-width: 767px) {

	/* ニュース一覧エリア */
	.news_list {
		margin-bottom: 40px;
	}

	.news_link {
		padding: 12px 28px 12px 0;
		align-items: center;
	}

	.news_link::after {
		top: 0;
		right: 5px;
		width: 16px;
		height: 10px;
	}

	.news_date {
		font-size: 1.3rem;
		line-height: 24px;
		width: auto;
		margin: 0 15px 0 0;
	}

	.news_cate {
        font-size: 1.2rem;
        padding: 1px 10px 2px;
        height: auto;
    }

	.news_title {
		font-size: 1.3rem;
		width: 100%;
		padding-top: 2px;
	}

	/* hover */
	.news_link:hover::after {
		right: 0;
	}

	/* archive.php */

	/* single.php */

	.single .news_title {
		margin: 0 auto 14px;
	}

	.single .news_title h2 {
		font-size: 2.0rem;
	}

	.single .news_date {
		font-size: 1.3rem;
		margin-right: 15px;
		min-width: auto;
	}

	.single .single_content {
		padding: 35px 0;
		margin-bottom: 30px;
	}

	.single .single_content h2 {
		padding-left: 12px;
	}

	.single .single_content h2::before {
		top: 2px;
	}
}