@charset "utf-8";

/*******************************************

-------------------------------------------
共通パーツ
********************************************/

/* 見出し
========================================== */

/* ---------------------------
ページ見出し
----------------------------- */

.tit_page {
	width: 100%;
	min-height: 200px;
	padding: 30px 15px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	align-content: center;
	font-size: 40px;
	font-weight: bold;
	text-align: center;
	background-color: rgba(167,211,152,0.4);
	color: #6eaf1e;
	line-height: 1.4;
}
.tit_page span {
	display: block;
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	color: #717171;
	width: 100%;
	text-transform: capitalize;
}
@media all and (max-width: 767px) {
	.tit_page {
		min-height: 150px;
		font-size: 30px;
	}
	.tit_page span {
		font-size: 16px;
	}
}
@media all and (max-width: 640px) {
	.tit_page {
		min-height: 110px;
		font-size: 24px;
	}
	.tit_page span {
		font-size: 14px;
	}
}

/* ---------------------------
セクション見出し
----------------------------- */

.tit_sec {
	font-size: 24px;
	font-weight: bold;
	position: relative;
	margin-top: 70px;
	padding: 2px 0 2px 25px;
}
.tit_sec::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 3px;
	height: 100%;
	background-color: #6db91e;
}
@media all and (max-width: 767px) {
	.tit_sec {
		font-size: 20px;
		margin-top: 50px;
		padding-bottom: 10px;
	}
}

/* ボタン
========================================== */

/* ---------------------------
四角ボタン
----------------------------- */

.btn_square {
	display: inline-block;
	border: 1px solid #e2e2e2;
	font-size: 18px;
	font-weight: 700;
	min-width: 350px;
	padding: 10px;
	text-align: center;
}
.btn_square::after {
	content: "";
	display: inline-block;
	position: relative;
	top: -1px;
	margin-left: 30px;
	transform: rotate(45deg);
	width: 8px;
	height: 8px;
	border-top: solid 2px #6db91e;
	border-right: solid 2px #6db91e;
}
@media all and (max-width: 767px) {
	.btn_square {
		min-width: 0;
		width: 100%;
		max-width: 350px;
	}
}

/* ---------------------------
戻るボタン
----------------------------- */

.btn_back {
	display: inline-block;
	line-height: 1;
	padding: 15px 15px 15px 20px;
	background-color: #898989;
	color: #fff!important;
	font-weight: 700;
	text-decoration: none!important;
	letter-spacing: .05em;
}
.btn_back::after {
	content: "";
	display: inline-block;
	position: relative;
	top: -1px;
	margin-left: 10px;
	transform: rotate(45deg);
	width: 8px;
	height: 8px;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
}

/* table
========================================== */

table.tbl_basic {
	width: 100%;
	border-top: 1px solid #c9c9c9;
}
table.tbl_basic th,
table.tbl_basic td {
	border-bottom: 1px solid #c9c9c9;
	padding: 15px 20px;
	vertical-align: middle;
}
table.tbl_basic th {
	font-weight: bold;
	width: 220px;
}
table.tbl_basic td {
}
@media all and (max-width: 767px) {
	table.tbl_basic th,
	table.tbl_basic td {
		display: block;
		width: 100%;
	}
	table.tbl_basic th {
		padding: 10px 15px;
		background-color: #c9c9c9;
	}
	table.tbl_basic td {
		padding: 20px 10px;
	}
}

/* List
========================================== */

ul.list_basic {
}
ul.list_basic li + li {
	margin-top: 10px;
}

/*******************************************

-------------------------------------------
HOME
********************************************/

body.home {
}
body.home main #mv {
	background: url("../img/home/mv.jpg") center / cover no-repeat;
	width: 100%;
	height: 400px;
	position: relative;
}
body.home main #mv h1 {
	padding-left: 40px;
	padding-right: 40px;
	width: 100%;
	max-width: 1000px;
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(50%,-50%);
	text-align: right;
}
body.home main ul.conts {
	margin-top: 80px;
}
body.home main ul.conts li {
	text-align: center;
}
@media all and (max-width: 1080px) {
	body.home main #mv h1 {
		left: 0;
		right: 0;
		transform: translateY(-50%);
	}
}
@media all and (max-width: 767px) {
	body.home main #mv {
		height: 300px;
	}
	body.home main #mv h1 img {
		width: 85%;
	}
	body.home main ul.conts {
		margin-top: 40px;
	}
}
@media all and (max-width: 640px) {
	body.home main #mv {
		height: 200px;
	}
}

/*******************************************

-------------------------------------------
お知らせ
********************************************/

main #news {
}

/* 一覧
========================================== */

main #news ul.news_list {
	margin-top: 50px;
	border-top: 1px solid #c9c9c9;
}
main #news ul.news_list li {
	border-bottom: 1px solid #c9c9c9;
}
main #news ul.news_list li a {
	display: block;
	position: relative;
}
main #news ul.news_list li a:hover {
	opacity: 1;
}
main #news ul.news_list li a::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%) rotate(45deg);
	width: 8px;
	height: 8px;
	border-top: solid 2px #6db91e;
	border-right: solid 2px #6db91e;
}
main #news ul.news_list li p {
	padding: 15px 10px;
	display: flex;
	align-items: center;
}
main #news ul.news_list li a p {
	padding: 15px 25px 15px 10px;
}
main #news ul.news_list li p .news_day {
	font-size: 12px;
	font-weight: bold;
	color: #a0a0a0;
	display: inline-block;
	padding: 0 15px 0 10px;
	flex-shrink: 0;
}
main #news ul.news_list li p .news_topic {
}
@media all and (max-width: 767px) {
	main #news ul.news_list {
		margin-top: 30px;
	}
	main #news ul.news_list li p {
		display: block;
	}
	main #news ul.news_list li p .news_day {
		display: block;
		width: 100%;
		padding: 0;
	}
	main #news ul.news_list li p .news_topic {
		display: block;
		width: 100%;
		margin-top: 5px;
	}
}

/* 詳細
========================================== */

main.detail .article {
	margin-top: 40px;
	padding: 30px 20px;
	border-top: 1px solid #cfcfcf;
	line-height: 2;
}
@media all and (max-width: 767px) {
	main.detail .article {
		padding: 30px 10px;
	}
}
main.detail .article a {
	color: #6db91e;
}