/* news/index.html */

.newslist{
	max-width: 780px;
	margin: auto;
}
.newslist li{
	padding: 40px 0;
	border-bottom: solid 1px #dcdcdc;
}
.newslist li a{
	display: block;
}
.newslist li a .info{
	display: flex;
	align-items: center;
}
.newslist li .date{
	font-size: 1.4rem;
	margin-right: 10px;
}
.newslist li .category{
    height: 28px;
    line-height: 28px;
    text-align: center;
    color: #fff;
    width: 90px;
    background: #9c8254;
    margin-right: 20px;
    display: inline-block;
}
.newslist li .category.news {
    background: #132860;
}
.newslist li .ttl{
	font-size: 2rem;
	color: #132860;
	margin-top: 3px;
}
.newslist li .detail{
	font-size: 1.6rem;
	margin-top: 12px;
}
.newslist li a:hover .detail{
	text-decoration: underline;
}
.pager{
	margin: 45px auto 0;
	max-width: 780px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.pager li.prev{
	margin-right: 10px;
}
.pager li.next{
	margin-left: 10px;
}
.pager li a{
	font-size: 1.6rem;
	line-height: 1.05;
	padding: 0 10px;
	display: block;
	position: relative;
}
.pager li a:hover{
	text-decoration: underline;
}
.pager li:not(.prev):not(.next) a::before,
.pager li.first a::after{
	content: '';
	height: 100%;
	width: 1px;
	background: #000;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.pager li:not(.prev):not(.next) a::before{
	right: 0;
}
.pager li.first a::after{
	left: 0;
}

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

	.newslist li{
		padding: 25px 0;
	}
	.newslist li a .date{
		margin-right: 5px;
	}
	.newslist li .category{
	    margin-right: 0;
		margin-left: 10px;
		width: 70px;
		height: 20px;
		line-height: 20px;
		font-size: 1.2rem;
	}
	.newslist li .ttl{
		font-size: 2rem;
	}
	.pager{
		margin-top: 35px;
	}
	.pager li.prev{
		margin-right: 5px;
	}
	.pager li.next{
		margin-left: 5px;
	}
	.pager li a{
		font-size: 1.4rem;
		padding: 0 8px;
	}
	.pager li.prev a{
		padding-left: 0;
	}
	.pager li.next a{
		padding-right: 0;
	}
	.pager li.prev a,
	.pager li.next a{
		font-size: 1.2rem;
	}

}

/***** お知らせ詳細ページ *****/

.newsdetail{
	max-width: 780px;
	margin: auto;
	padding: 44px 0 95px;
	border-bottom: solid 1px #dcdcdc;
}
.newsdetail .detail_head .info{
	display: flex;
	align-items: center;
}
.newsdetail .detail_head .date{
	font-size: 1.4rem;
	margin-right: 10px;
}
.newsdetail .detail_head .category{
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #fff;
    width: 90px;
    background: #9c8254;
    margin-right: 20px;
}
.newsdetail .detail_head .category.news {
    background: #132860;
}
.newsdetail .detail_head .ttl{
	font-size: 2.2rem;
	color: #132860;
	margin-top: 20px;
}
.newsdetail .detail_inner p{
	font-size: 1.6rem;
	line-height: 1.8;
	margin-top: 35px;
}
.newsdetail .detail_inner a{
	text-decoration: underline;
}
.newsdetail .detail_inner table.newsTable_a {
    width: 100%;
    margin-top: 20px;
}

.newsdetail .detail_inner table.newsTable_a th,
.newsdetail .detail_inner table.newsTable_a td {
    padding: 6px 0 4px;
    font-size: 1.6rem;
    line-height: 1.6em;
    vertical-align: top;
}
.newsdetail .detail_inner table.one_nine th {
	width: 10%;
}
.newsdetail .detail_inner table.one_nine td {
	width: 90%;
}

.newsdetail .detail_inner table.newsTable_b {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}
.newsdetail .detail_inner table.newsTable_b th,
.newsdetail .detail_inner table.newsTable_b td {
    padding: 8px 8px;
    font-size: 1.4rem;
    line-height: 1.4em;
    border: 1px solid #b1bcda;
}
.newsdetail .detail_inner table.newsTable_b th {
	font-weight: bold;
}

.newsdetail h2 {
	font-size: 2rem;
	margin-top: 40px;
	font-weight: bold;
}
.newsdetail h3 {
	font-size: 1.8rem;
	margin-top: 35px;
	font-weight: bold;
}
.newsdetail h4 {
	font-size: 1.6rem;
	margin-top: 30px;
	font-weight: bold;
}
.newsdetail .imgLeft {
	float: left;
	margin-right: 20px;
	margin-bottom: 20px;
}
.newsdetail .imgRight {
	float: right;
	margin-left: 20px;
	margin-bottom: 20px;
}
.colBox {
	margin-top: 30px;
}
.newsdetail .detail_inner .colBox p {
	margin-top: 0;
	margin-bottom: 20px;
	display: block;
}
.newsdetail .detail_inner .colBox .h_left {
	width: 49%;
	float: left;
}
.newsdetail .detail_inner .colBox .h_right {
	width: 49%;
	float: right;
}
.newsdetail .detail_inner .colBox .left_six {
	width: 59%;
	float: left;
}
.newsdetail .detail_inner .colBox .right_four {
	width: 39%;
	float: right;
}
.pagenav{
	display: flex;
	justify-content: center;
	margin: 45px auto 0;
	max-width: 780px;
}
.pagenav li a{
	font-size: 1.6rem;
	display: inline-block;
	position: relative;
	padding: 0 20px;
	line-height: 1.05;
}
.pagenav li a:hover{
	text-decoration: underline;
}
/* .pagenav li.back a::before,
.pagenav li.back a::after{
	content: '';
	height: 100%;
	width: 1px;
	background: #000;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.pagenav li.back a::before{
	left: 0;
}
.pagenav li.back a::after{
	right: 0;
} */

iframe {
	max-width: 100%;
}
.tx_center {
	text-align: center;
}
.tx_right {
	text-align: right;
}
.tx_left {
	text-align: left;
}

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

	.newsdetail{
		padding: 25px 0 45px;
	}
	.newsdetail .detail_head .date{
		margin-right: 5px;
	}
	.newsdetail .detail_head .category{
	    margin-right: 0;
		margin-left: 10px;
		width: 70px;
		height: 20px;
		line-height: 20px;
		font-size: 1.2rem;
	}
	.newsdetail .detail_head .ttl{
		font-size: 2rem;
		margin-top: 10px;
	}
	.newsdetail .detail_inner p{
		margin-top: 20px;
	}
	.sp_f_none {
		float: none !important;
	}
	.newsdetail .detail_inner .colBox .h_left {
		width: 100%;
		float: none;
	}
	.newsdetail .detail_inner .colBox .h_right {
		width: 100%;
		float: none;
	}
	.newsdetail .detail_inner table.newsTable_a th {
		display: block;
        width: 100%;
        border-bottom: 0;
        padding-bottom: 0;
    }
	.newsdetail .detail_inner table.newsTable_a td {
		display: block;
        padding-top: 10px;
        font-size: 1.6rem;
        padding-left: 1em;
    }
	.sp_center {
		text-align: center;
	}
	.pagenav{
		margin: 35px auto 0;
	}
	.pagenav li a{
		font-size: 1.4rem;
		padding: 0 10px;
	}
	.pagenav li.prev a{
		padding-left: 0;
	}
	.pagenav li.next a{
		padding-right: 0;
	}
}

.mt20 {
	margin-top: 20px !important;
}