@charset "UTF-8";
/* CSS Document */

#contents {
	padding-bottom: 70px;
}
.mimg {
	background-image: url(../img/news_mimg.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	font-size: 0;
}
.mimg h1 {
	font-size: 50px;
	line-height: 240px;
	color: #333;
	letter-spacing: 0.06em;
}

.pan_list {
	padding-bottom: 100px;
}

.news_items {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.news_line {
	display: flex;
	flex-wrap: nowrap;
	padding: 20px 30px;
	box-sizing: border-box;
	width: 100%;
	background-color: rgba(255,255,255,0.8);
	border-radius: 10px;
	color: #999;
}
.news_line .date {
	width: 105px;
	font-size: 16px;
	line-height: 1.875;
}
.news_line .title {
	width: calc(100% - 105px);
	font-size: 20px;
	line-height: 1.5;
	text-align: justify;
}
.news_line .title a {
	text-decoration: none;
	color: #666;
}
.news_line .title a:hover {
	opacity: 0.7;
	color: #00cccc;
}

.pager {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	padding-top: 70px;
}
.pager a,.pager span {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	border-right: 1px solid #8edae6;
	border-top: 1px solid #8edae6;
	border-bottom: 1px solid #8edae6;
	font-size: 20px;
	line-height: 1;
}
.pager a.first,.pager span.first {
	border-left: 1px solid #8edae6;
}
.pager a {
	background-color: #FFF;
	text-decoration: none;
	color: #666;
}
.pager a:hover,.pager span {
	background-color: #8edae6;
	color: #FFF;
}
.pager a.prev,.pager a.next {
	border: none;
	background-color: transparent;
	font-size: 35px;
}
.pager a.prev:hover,.pager a.next:hover {
	background-color: transparent;
	color: #666;
}

.news_detail {
	background-color: rgba(255,255,255,0.8);
	border-radius: 10px;
	padding: 65px 20px 80px;
	color: #666;
}
.news_container {
	max-width: 786px;
	margin: 0 auto;
}
.news_container .date {
	font-size: 16px;
	line-height: 1;
}
.news_container .title {
	font-size: 22px;
	line-height: 1.5;
	font-weight: bold;
	padding: 35px 0;
}
.news_container .body {
	font-size: 16px;
	line-height: 2;
	text-align: justify;
}
.news_container .body a {
	text-decoration: underline;
	color: #666;
}
.news_container .body strong {
	font-weight: bold;
}
.news_container .imgset .img {
	margin-top: 40px;
}
.news_container .imgset .img img {
	width: 100%;
	height: auto;
}
.news_container .imgset .img p {
	font-size: 14px;
	line-height: 1.8;
	margin-top: 10px;
	color: #070526;
	text-align: justify;
}
.news_container .btns {
	margin-top: 60px;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	gap: 10px;
}
.news_container .btns a {
	display: inline-block;
	background-color: #666;
	text-decoration: none;
	color: #FFF;
	padding: 5px 10px;
	box-sizing: border-box;
	border-radius: 10px;
	min-width: 176px;
	font-size: 16px;
	line-height: 1.4;
	text-align: center;
}

@media screen and (max-width: 790px) {
	#contents {
		padding-bottom: 40px;
	}
	.mimg {
		background-image: url(../img/news_mimg_sp.jpg);
	}
	.mimg h1 {
		font-size: 25px;
		line-height: 67px;
	}
	.pan_list {
		padding-bottom: 35px;
	}
	.news_items {
		gap: 5px;
	}
	.news_line {
		flex-direction: column;
		padding: 12px 15px;
	}
	.news_line .date {
		width: auto;
		font-size: 12px;
		line-height: 1.8;
	}
	.news_line .title {
		width: auto;
		font-size: 12px;
		line-height: 1.8;
	}
	.pager {
		padding-top: 30px;
	}
	.pager a,.pager span {
		width: 27px;
		height: 27px;
		font-size: 11px;
	}
	.pager a.prev,.pager a.next {
		font-size: 20px;
	}
	.news_detail {
		padding: 30px 20px;
	}
	.news_container .date {
		font-size: 11px;
	}
	.news_container .title {
		font-size: 18px;
		padding: 20px 0;
	}
	.news_container .body {
		font-size: 14px;
		line-height: 1.8;
	}
	.news_container .imgset .img {
		margin-top: 20px;
	}
	.news_container .imgset .img p {
		font-size: 11px;
		line-height: 1.8;
		margin-top: 5px;
	}
	.news_container .btns {
		margin-top: 30px;
		flex-direction: column;
		gap: 20px;
	}
	.news_container .btns a {
		padding: 7px 10px;
		width: 100%;
		font-size: 14px;
		line-height: 1.4;
	}
}