@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: #cfebff;
	color: #1e96be;
	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: #1e96be;
}
@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 #1e96be;
	border-right: solid 2px #1e96be;
}
@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;
}
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: left;
}
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 #1e96be;
	border-right: solid 2px #1e96be;
}
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 #news {
}
main.detail #news .txt_article {
	margin-top: 60px;
	line-height: 1.8;
	font-size: 16px;
}
main.detail #news .txt_article strong {
	font-weight:bold;
}
main.detail #news .txt_article h2 {
	font-size: 24px;
	font-weight: bold;
	border-bottom: 1px solid #ccc;
	padding-bottom: 20px;
	margin-bottom: 30px;
}
main.detail #news .txt_article h3 {
	font-size:22px;
	padding:0 18px 15px 8px;
	border-bottom:4px solid #ccc;
	position:relative;
	font-weight:700;
	line-height:1.6;
	color:#000;
	margin:60px 0 36px;
}
main.detail #news .txt_article h3:after {
	display:block;
	width:25%;
	height:4px;
	content:"";
	position:absolute;
	left:0;
	bottom:-4px;
	background:#1e96be;
}
main.detail #news .txt_article .news_day {
	display: block;
	text-align: right;
}
main.detail #news .txt_article a {
    text-decoration: underline;
    color: #007FAC;
}

/* ---------------------------
テーブル
----------------------------- */

main.detail #news .txt_article table tr th,
main.detail #news .txt_article table tr td {
    padding: 10px 16px;
    border: 1px solid #e0e0e0;
}
main.detail #news .txt_article table tr td:first-of-type {
    background-color: #f9f9f9
}

/* ---------------------------
リスト
----------------------------- */

main.detail #news .txt_article ul,
main.detail #news .txt_article ol {
	line-height:180%;
	margin-bottom:1.1em;
	-ms-word-wrap:break-word;
	word-wrap:break-word;
}
main.detail #news .txt_article li:empty {
    list-style:none;
    height:1em;
}
main.detail #news .txt_article ul {
	list-style:disc;
	margin-left:1.5em;
}
main.detail #news .txt_article ul ul { list-style:circle; }
main.detail #news .txt_article ul ul ul { list-style:square; }

main.detail #news .txt_article ol {
	list-style:decimal;
	margin-left:1.5em;
}
main.detail #news .txt_article ol ol { list-style:lower-alpha; }
main.detail #news .txt_article ol ol ol {
	list-style:lower-roman;
}
main.detail #news .txt_article ul ul,
main.detail #news .txt_article ul ol,
main.detail #news .txt_article ol ul,
main.detail #news .txt_article ol ol {
	margin-bottom:0;
}
main.detail #news .txt_article li {

	margin-top:0.5em;
	line-height:170%;
}
main.detail #news .txt_article ol > li:last-child,
main.detail #news .txt_article ul > li:last-child {
	margin-bottom:0;
}

@media all and (max-width: 767px) {
	main.detail #news .txt_article {
		margin-top: 40px;
	}
	main.detail #news .txt_article h2 {
		font-size: 20px;
	}
	main.detail #news .txt_article h3 {
		font-size:21px;
		padding:40px 18px 8px 0;
		border-bottom:3px solid #ccc;
		margin:40px 0 22px
	}
	main.detail #news .txt_article ul,
	main.detail #news .txt_article ol {
		line-height:160%;
		margin-bottom:1em;
	}
}