/*=========================
下層MV
=========================*/
#mv {
	padding-top: 1.35rem;
	box-sizing: border-box;
}

#mv.gaiyou {
	background-image: url(../img/under_common/under_mv_gaiyou.jpg);
	background-position: center center;
	background-size: cover;
}

#mv.jigyou {
	background-image: url(../img/under_common/under_mv_jigyou.jpg);
	background-position: center center;
	background-size: cover;
}

#mv.katsudou {
	background-image: url(../img/under_common/under_mv_katsudou.jpg);
	background-position: center center;
	background-size: cover;
}

#mv.dayori {
	background-image: url(../img/under_common/under_mv_dayori.jpg);
	background-position: center center;
	background-size: cover;
}

#mv.koukai {
	background-image: url(../img/under_common/under_mv_koukai.jpg);
	background-position: center center;
	background-size: cover;
}

#mv.contact {
	background-image: url(../img/under_common/under_mv_contact.jpg);
	background-position: center center;
	background-size: cover;
}

#mv.news {
	background-image: url(../img/under_common/under_mv_news.jpg);
	background-position: center center;
	background-size: cover;
}

#mv.event {
	background-image: url(../img/under_common/under_mv_event.jpg);
	background-position: center center;
	background-size: cover;
}

@media screen and (max-width: 499px) {
	#mv {
		margin-top: 0.7rem;
		padding-top: 1.00rem;
	}
}

/* ページタイトル */
#mv .title {
	width: 3.50rem;
	background-color: #FFF;
	border-top: 5px solid #164979;
	padding: 0.30rem;
	padding-bottom: 0.10rem;
	box-sizing: border-box;
	color: #164979;
	font-size: 0.34rem;
	font-weight: 700;
}

@media screen and (max-width: 499px) {
	#mv .in1000 {
		padding-left: 0;
	}

	#mv .title {
		width: 2.80rem;
		padding: 0.20rem;
		font-size: 0.26rem;
		padding-bottom: 0;
	}
}

#mv .title span {
	font-size: 0.14rem;
	display: block;
	padding-bottom: 0.2rem;
}

@media screen and (max-width: 499px) {
	#mv .title span {
		font-size: 0.12rem;
		padding-bottom: 0.1rem;
	}
}


/*=========================
パンくず
=========================*/
#page_navi {
	padding-top: 0.3rem;
	padding-bottom: 0.3rem;
	text-align: right;
	font-size: 0.14rem;
	color: #164979;
}

@media screen and (max-width: 499px) {
	#page_navi {
		font-size: 0.12rem;
	}
}

#page_navi a {
	color: #164979;
}

#page_navi i {
	width: 6px;
	height: 8px;
	background-image: url(../img/common/pagenavi_triangle.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	display: inline-block;
	margin-left: 0.06rem;
	margin-right: 0.06rem;
}


/*=========================
大見出し
=========================*/
.page_title_box {
	margin-bottom: 0.3rem;
}

.page_title {
	background-color: #164979;
	padding: 0.14rem;
	color: #FFF;
	font-size: 0.22rem;
	font-weight: 700;
}

@media screen and (max-width: 499px) {
	.page_title {
		padding: 0.1rem;
		font-size: 0.2rem;
	}
}

/*=========================
コンテンツボックス
=========================*/
.detail {
	margin-bottom: 0.6rem;
}

@media screen and (max-width: 499px) {
	.detail {
		margin-bottom: 0.4rem;
	}
}

.detail .sec_title_box {
	margin-bottom: 0.2rem;
}

.detail .sub_title {
	font-size: 0.20rem;
	line-height: 1.75;
	font-weight: 700;
}

.detail .text {
	font-size: 0.16rem;
	line-height: 2;
}

@media screen and (max-width: 499px) {
	.detail .text {
		font-size: 0.16rem;
	}
}

.detail .text a {
	color: #0071BC;
	font-weight: 700;
}

.detail ol {
	counter-reset: item;
	list-style-type: none;
	padding-left: 0;
	font-size: 0.16rem;
	line-height: 1.65;
}

@media screen and (max-width: 499px) {
	.detail ol {
		font-size: 0.15rem;
	}
}

.detail ol li:before {
	counter-increment: item;
	content: '('counter(item)')';
	padding-right: .05rem;
	padding-left: 0.1rem;
	width: 0.2rem;
	display: inline-block;
	text-align: right;
}

.detail ol li {
	text-indent: -0.28rem;
	padding-left: 0.28rem;
	padding-top: 0.06rem;
}

@media screen and (max-width: 499px) {
	.detail ol li {
		text-indent: -0.35rem;
		padding-left: 0.35rem;
		padding-top: 0.06rem;
	}
}

/* 地図 */
.map_box {
	padding-top: 0.2rem;
}

/*=========================
アコーディオン
=========================*/
.acc_box {
	margin-bottom: 0.3rem;
}

.acc_title {
	background-color: #CCECF7;
	padding: 0.12rem;
	font-size: 0.2rem;
	font-weight: 700;
	position: relative;
	cursor: pointer;
	transition: all 0.3s ease;
}

.acc_title.active {
	background-color: #99D9F0;
}

.acc_title::after {
	content: "";
	position: absolute;
	right: 0.14rem;
	top: 50%;
	transform: translateY(-50%) rotate(0);
	width: 0.12rem;
	height: 0.08rem;
	background-image: url(../img/common/acc_arrow.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	transition: all 0.3s ease;
}

.acc_title.active::after {
	transform: translateY(-50%) rotate(-180deg);
}

.acc_contents {
	display: none;
}

.acc_contents.open {
	display: block;
}

.acc_contents dl,
.koukai_contents dl {
	padding: 0.14rem;
	display: flex;
	align-items: center;
	border-bottom: 1px solid #CCC;
}

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

	.acc_contents dl,
	.koukai_contents dl {
		display: block;
	}
}

.acc_contents ul {
	padding-top: 0.14rem;
	padding-bottom: 0.14rem;
	display: flex;
	flex-wrap: wrap;
	line-height: 2.4;
}

@media screen and (max-width: 499px) {
	.acc_contents ul {
		padding-left: 0.14rem;
		line-height: 3;
	}
}

.acc_contents li {
	width: 50%;
	padding-bottom: 0.1rem;
}

.acc_contents li.full {
	width: 100%;
}

@media screen and (max-width: 499px) {
	.acc_contents li {
		width: 100%;
	}
}

.acc_contents dt,
.koukai_contents dt {
	font-size: 0.13rem;
	width: 27%;
}

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

	.acc_contents dt,
	.koukai_contents dt {
		font-size: 0.14rem;
		width: 100%;
		padding-bottom: 0.1rem;
	}
}

.acc_contents dd,
.koukai_contents dd {
	width: 73%;
}

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

	.acc_contents dd,
	.koukai_contents dd {
		width: 100%;
	}
}

.acc_contents dd a,
.koukai_contents dd a,
.acc_contents li a {
	font-size: 0.16rem;
	color: #222;
	font-weight: 700;
	line-height: 1.6;
}

.acc_contents li a:hover {
	text-decoration: none;
}

.acc_contents a.pdf::before,
.koukai_contents a.pdf::before {
	content: "PDF";
	display: inline-block;
	background-color: #F15A24;
	font-size: 0.10rem;
	color: #FFF;
	font-weight: 700;
	padding: 0.03rem;
	padding-left: 0.10rem;
	padding-right: 0.10rem;
	border-radius: 3px;
	margin-right: 0.06rem;
	position: relative;
	top: -0.02rem;
	line-height: 1.1;
	text-decoration: none;
}


/*=========================
PDF注意書き
=========================*/
.pdf_caption_wrapper {
	background-color: #F2F2F2;
	padding: 0.14rem;
	border: 1px solid #CCC;
}

.pdf_caption_wrapper .title {
	font-size: 0.16rem;
	line-height: 1.5;
	border-bottom: 1px solid #222;
	padding-bottom: 0.1rem;
	margin-bottom: .1rem;
	font-weight: 700;
}

.pdf_caption_wrapper .text {
	font-size: 0.13rem;
	line-height: 1.75;
}

.pdf_caption_wrapper .pdf_link {
	padding-top: 0.1rem;
}
