@charset "UTF-8";

/*-----------------------------------

	news_block

-----------------------------------*/
#news_block{
	padding: 4.1vw 0 13.4vw;
}
#news_block .list {
	max-width: 840px;
	width: 100%;
	background: var(--sClr3);
	border-top: 1px solid var(--sClr4);
	margin: 4.1vw auto 0;
}
#news_block .list article {
	border-bottom: 1px solid var(--sClr4);
	padding: 20px 0;
	display: flex;
	align-items: center;
}
#news_block .list article time {
	width: 120px;
	padding: 30px 0;
	text-align: center;
	border-right: 1px solid var(--sClr4);
}
#news_block .list article time span {
	display: block;
	font-size: 15px;
	line-height: 1.6;
	color: var(--mClr3);
}
#news_block .list article p {
	width: calc(100% - 120px);
	padding: 0 100px 0 40px;
	font-family: var(--fGothic);
	line-height: 1.6;
	background: url(../img/index/icon_arrow01.svg) no-repeat calc(100% - 50px) center/33px;
}

@media screen and (max-width: 840px){
	#news_block .list {
		width: calc(100% - 135px);
	}
	#news_block .list article time {
		width: 100px;
		padding: 20px 0;
	}
	#news_block .list article p {
		width: calc(100% - 100px);
		padding: 0 30px;
		padding: 0 70px 0 30px;
		background: url(../img/index/icon_arrow01.svg) no-repeat calc(100% - 30px) center/24px;
	}
}
@media screen and (max-width: 640px){
	#news_block .list {
		width: 100%;
	}
	#news_block .list article {
		padding: 0;
		flex-direction: column;
	}
	#news_block .list article time {
		width: 100%;
		padding: 0 10px;
		margin-top: 15px;
		text-align: left;
		border-right: none;
	}
	#news_block .list article time span {
		display: inline-block;
		font-size: 12px;
		line-height: 1;
		margin-right: 10px;
	}
	#news_block .list article p {
		width: 100%;
		padding: 0 50px 0 10px;
		margin-bottom: 15px;
		background: url(../img/index/icon_arrow01.svg) no-repeat calc(100% - 15px) center/20px;
	}
}

/*---- pagenation ----*/
.pagenation {
	margin-top: 3.1vw;
}
#news_block.detail .pagenation,
.nav-links{
	margin-top: 2.5vw;
}
.page-numbers {
	gap: 10px 5px;
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.page-numbers a,
.page-numbers span {
	display: block;
	font-size: 20px;
	font-weight: 500;
	align-content: center;
	text-align: center;
	color: var(--sClr2);
	width: 40px;
	height: 40px;
}
.page-numbers a:hover {
	opacity: 0.7;
}
.page-numbers .current {
	color: var(--sClr3);
	background: var(--mClr1); 
}

@media screen and (max-width: 640px) {
	.pagenation {
		margin-top: 2.5vw;
	}
	.page-numbers {
		gap: 20px 10px;
	}
	.page-numbers a,
	.page-numbers span {
		font-size: 13px;
		width: 36px;
		height: 36px;
	}
}

/*detail*/
#news_block.detail .arrow_btn{
	max-width: 274px;
	width: 100%;
    background: var(--mClr1);
    color: var(--sClr3);
    border-radius: 3px;
    padding: 25px 0;
    font-size: 16px;
    text-align: center;
    position: relative;
	margin: 50px auto 0;
}

#news_block.detail .date{
	color: var(--mClr3);
	font-size: 15px;
	margin: 0 0 5px;
}
#news_block.detail .h3_ttl{
	text-align: left;
}
#news_block.detail .contents{
	padding: 30px 0 0;
}
#news_block.detail .contents h4{
	color: var(--mClr1);
	font-size: 25px;
	margin: 20px 0 0;
	font-weight: 700;
	line-height: 1.5;
}
#news_block.detail .contents h5{
	font-size: 20px;
	font-weight: 700;
	margin: 20px 0 0;
	padding: 10px;
	background: var(--mClr1);
	color: var(--sClr3);
	line-height: 1.5;
}
#news_block.detail .contents ol{
	margin: 20px 0 0;
}
#news_block.detail .contents ol li{
	margin: 20px 0 0;
	font-size: 18px;
	font-weight: 700;
	list-style: auto;
	margin-left: 1em;
}
#news_block.detail .contents p{
	margin: 15px 0 0;
	font-size: 16px;
	line-height: 2;
	font-weight: 500;
}
#news_block.detail .contents img{
	display: block;
	margin-top: 15px;
	max-width: 640px;
	width: 100%;
}

#news_block.detail .contents .img_wrap{
	gap: 10px;
	justify-content: center;
}
#news_block.detail .contents .img_box{
	width: calc((100% - 10px) / 2);
}

#news_block.detail .contents a{
	margin: 20px 0;
	display: inline-block;
	text-decoration: underline;
	color: var(--mClr1);
	margin-right: 10px;
}

@media screen and (max-width: 640px){
	#news_block.detail .arrow_btn{
        padding: 20px 0;
		margin: 30px auto 0;
	}
	
	#news_block.detail .contents{
		padding: 10px 0 0;
	}
	#news_block.detail .contents h4{
		font-size: 18px;
	}
	#news_block.detail .contents h5{
		font-size: 18px;
		padding: 5px;
	}
	#news_block.detail .contents ol li{
		font-size: 16px;
	}
	#news_block.detail .date,
	#news_block.detail .contents p{
		font-size: 14px;
	}
	#news_block.detail .contents .img_box{
		width: 100%;
	}
}


