@charset "UTF-8";

#news_block a:hover ,
#news_detail_block a:hover {
	opacity: 0.7;
}
/*-----------------------------------

	news_block

-----------------------------------*/
#news_block {
	margin: 78px 0 84px;
}
#news_block ul {
    margin-top: 30px;
}
#news_block ul li {
    border-bottom: 1px solid #F5F5F5;
}
#news_block ul li a {
    margin: 37px 0;
    display: flex;
    flex-direction: row;
}

#news_block ul li a time {
    padding: 0 9px;
    margin-right: 28px;
}
#news_block .btn img {
    width: 12px;
    height: 10px;
}
#news_block .btn {
    background: #EBEBEB;
    width: 200px;
    height: 50px;
    color: #28AB45;
    margin-left: auto;
    margin-top: 22px;
    padding-right: 22px;
    gap: 23px;
    justify-content: flex-end;
}


@media screen and (max-width: 640px){
	#news_block {
		margin: 40px 0;
	}
	#news_block ul {
        margin-top: 17px;
    }
    #news_block ul li a {
        flex-direction: column;
        font-size: 14px;
        margin: 25px 0;
        gap: 8px;
    }
    #news_block ul li a p {
        letter-spacing: 0;
		line-height: 1.8;
    }
    #news_block ul li a time {
        padding: 0;
        margin-right: unset;
        font-size: 11px;
    }
}

/*-----------------------------------

	news_detail_block - 詳細ページ

-----------------------------------*/
#news_detail_block {
	margin: 78px 0 84px;
}

#news_detail_block .ttl_box time {
	font-size: 18px;
	margin-bottom: 12px;
}
#news_detail_block .ttl_box h1 {
	font-size: 30px;
	line-height: 1.8;
	font-family: "Zen Maru Gothic", serif;
}
#news_detail_block .ttl_box .btmline {
	display: flex;
	height: 2px;
	width: 100%;
	background: #C9EAD0;
	border-radius: 5px;
	margin-top: 14px;
}
#news_detail_block .ttl_box {
	margin-bottom: 30px;
}
#news_detail_block .contents h2 {
	background: #C9EAD0;
    font-size: 24px;
	line-height: 1.8;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 22px 0 12px;
}
#news_detail_block .contents h3 {
	position: relative;
	padding-left: 20px;
	line-height: 1.8;
	font-size: 22px;
	margin: 22px 0 12px;
}
#news_detail_block .contents h3::before {
    content: "";
    position: absolute;
    display: flex;
    width: 5px;
    height: 100%;
    background: #28AB45;
    border-radius: 10px;
    left: 0;
	top:50%;
	transform: translateY(-50%);
}

#news_detail_block .contents h4 {
	position: relative;
	padding-left: 16px;
	line-height: 1.8;
	font-size: 20px;
	margin: 22px 0 12px;
}
#news_detail_block .contents h4::after {
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	background: #28AB45;
	border-radius: 100%;
	left: 0;
	top: 13px;

}
#news_detail_block .contents h5 {
	color: #28AB45;
	font-size: 18px;
	line-height: 1.8;
    margin: 22px 0 12px;
}
#news_detail_block .contents h6 {
	font-size: 16px;
	line-height: 1.8;
    margin: 22px 0 12px;
}
#news_detail_block .contents table {
	margin: 40px 0;
	width: 100%;
}
#news_detail_block .contents tbody tr {
	border: 1px solid #E8E8E8;
	border-bottom: none;
	display: flex;
	width: 100%;
}
#news_detail_block .contents tbody tr:last-child {
	border-bottom: 1px solid #E8E8E8;
}
#news_detail_block .contents tbody tr th {
	background: #F2F2F2;
	padding: 12px 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30%;
}

#news_detail_block .contents tbody tr td {
	padding: 12px 10px;
	margin: auto;
	width: 70%;
}

#news_detail_block .contents tbody tr td ,
#news_detail_block .contents tbody tr th {
	min-height: 60px;
	display: flex;
	align-items: center;
}
#news_detail_block .contents a {
	color: #28AB45;
	text-decoration: underline;
	display: flex;
	margin: 8px 0;
	position: relative;
	padding-left: 16px;
	width: fit-content;
}
#news_detail_block .contents a::after {
	position: absolute;
	content: "▶";
	color:#28AB45;
	font-size: 12px;
	left: 0;
	top: 0;
}
#news_detail_block .contents img {
	margin: 40px auto;
	border-radius: 0;
	width: fit-content;
}
@media screen and (max-width: 640px){
	#news_detail_block {
		margin: 40px 0;
	}
	#news_detail_block .ttl_box {
		margin-bottom: 20px;
	}
	#news_detail_block .ttl_box time {
		font-size: 14px;
	}
	#news_detail_block .ttl_box h1 {
		font-size: 18px;
		line-height: 1.5;
	}
	#news_detail_block .contents h2 {
		font-size: 17px;
		line-height: 1.5;
		padding: 4px 8px;
		margin: 16px 0 8px;
	}
	#news_detail_block .contents h3 {
		font-size: 16px;
		line-height: 1.5;
        padding-left: 12px;
		margin: 16px 0 8px;
	}
	#news_detail_block .contents h4 {
		padding-left: 15px;
		line-height: 1.5;
		font-size: 15px;
		margin: 16px 0 8px;
	}
	#news_detail_block .contents h4::after {
		width: 8px;
		height: 8px;
		top: 7px;
	}
	#news_detail_block .contents h5 {
		font-size: 14px;
		line-height: 1.5;
		margin: 16px 0 8px;
	}
	#news_detail_block .contents h6 {
		font-size: 13px;
		line-height: 1.5;
		margin: 16px 0 8px;
	}
	#news_detail_block .contents tbody tr {
		flex-direction: column;
	}
	#news_detail_block .contents tbody tr th ,
	#news_detail_block .contents tbody tr td {
		width: 100%;
	}
	#news_detail_block .contents tbody tr td, 
	#news_detail_block .contents tbody tr th {
		min-height: 46px;
		padding: 8px 6px;
	}
	#news_detail_block .contents img {
		margin: 28px auto;
	}
	#news_detail_block .contents table {
		margin: 28px 0;
	}
}
/*-----------------------------------

	共通パーツ - ページネーション

-----------------------------------*/
#news_block ul.page-numbers,
#news_detail_block .Pagination  {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 45px;
}
#news_detail_block .Pagination  {
	margin-top: 100px;
	gap: 28px;
}
#news_block ul.page-numbers li {
	border-bottom: none;
}
#news_block ul.page-numbers .page-numbers img,
#news_detail_block .Pagination .Pagination-Item-Link img,
#news_detail_block .Pagination .none {
	width: 40px;
	height: 40px;
}
#news_block ul.page-numbers li:first-child .page-numbers img,
#news_detail_block .Pagination li:first-child .Pagination-Item-Link img {
	transform: rotate(180deg);
}
#news_block ul.page-numbers li .page-numbers,
#news_detail_block .Pagination li .Pagination-Item-Link span {
	font-size: 20px;
}
#news_block ul.page-numbers li .current,
#news_block ul.page-numbers li.selected .Pagination-Item-Link span {
	color: #28AB45;
}
#news_detail_block .Pagination li .back_btn {
	color: #28AB45;
    background: #DBDBDB;
    display: flex;
    height: 40px;
    width: 160px;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width: 640px){
	#news_block ul.page-numbers li .page-numbers,
	#news_detail_block .Pagination li .Pagination-Item-Link span {
		font-size: 13px;
	}
	#news_block ul.page-numbers,
	#news_detail_block .Pagination {
		gap: 25px;
	}
	#news_block ul.page-numbers .page-numbers img,
	#news_detail_block .Pagination .Pagination-Item-Link img,
	#news_detail_block .Pagination .none {
		width: 26px;
		height: 26px;
	}
	#news_detail_block .Pagination li .back_btn {
		height: 36px;
		width: 140px;
	}
	#news_detail_block .Pagination {
		margin-top: 60px;
        gap: 16px;
    }
}