/*========================
メインビジュアル
========================*/
#mv {
	margin-bottom: 0.60rem;
	position: relative;
	z-index: 0;
}

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

/* 写真 */
#mv .mv_photo {
	position: relative;
	z-index: 0;
	width: 100%;
	margin-left: auto;
	height: 91.6vw;
	max-height: 5rem;
	/*
	background-image: url(../img/top/mv.jpg);
	background-size: cover;
	background-position: center center;
*/
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
}

@media screen and (max-width: 499px) {
	#mv .mv_photo {
		/*		width: calc(100% - 0.20rem);*/
		height: 80vw;
		max-height: 3rem;
	}
}

#mv .mv_photo::after {
	content: "";
	width: 100%;
	height: 0.10rem;
	background-color: #005B37;
	position: absolute;
	bottom: -0.10rem;
	right: 0;
}

@media screen and (max-width: 499px) {
	#mv .mv_photo::after {
		height: 0.10rem;
		bottom: -0.10rem;
	}
}

/* キャッチ */
#mv .mv_in {
	position: absolute;
	top: 56%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	text-align: center;
	width: 100%;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 499px) {
	#mv .mv_in {
		padding-left: 0.2rem;
		padding-right: 0.2rem;
		width: 80%;
		top: 50%;
	}
}

#mv .mv_in .title {
	color: #FFF;
	font-size: 0.30rem;
	font-weight: 900;
	margin-bottom: 0.10rem;
}

@media screen and (max-width: 499px) {
	#mv .mv_in .title {
		font-size: 0.24rem;
		margin-bottom: 0.10rem;
		line-height: 1.54;
		padding-top: 0.1rem;
		/*		background-color: #FFF;*/
		border-top-right-radius: 3px;
	}
}

#mv .mv_in .text {
	color: #FFF;
	font-size: 0.18rem;
	font-weight: 600;
	line-height: 1.2;
}

@media screen and (max-width: 499px) {
	#mv .mv_in .text {
		font-size: 0.15rem;
		line-height: 1.73;
		text-align: justify;
		text-justify: inter-ideograph;
	}
}

#mv .mv_in span {
	display: inline-block;
	/*	background-color: #FFF;*/
	padding: 0.1rem;
}

@media screen and (max-width: 499px) {
	#mv .mv_in span {
		display: inline;
		/*		background-color: transparent;*/
		padding: 0;
	}
}



/*========================
MVスライドショー
========================*/
#mv .slide_wrapper {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: relative;
	overflow: hidden;
}

#mv .slide_wrapper .slide {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	animation: slide-animation 24s linear infinite 0s;
}

/*2枚目の開始時間*/
#mv .slide_wrapper .slide:nth-of-type(2) {
	animation-delay: 8s;
}

/*3枚目の開始時間*/
#mv .slide_wrapper .slide:nth-of-type(3) {
	animation-delay: 16s;
}

/*4枚目の開始時間*/
#mv .slide_wrapper .slide:nth-of-type(4) {
	animation-delay: 24s;
}

/*5枚目の開始時間*/
#mv .slide_wrapper .slide:nth-of-type(5) {
	animation-delay: 32s;
}

#mv .slide_wrapper #slide01.slide {
	background-image: url(../img/top/mv01.jpg);
	background-position: center center;
	background-size: cover;
}

#mv .slide_wrapper #slide02.slide {
	background-image: url(../img/top/mv02.jpg);
	background-position: center center;
	background-size: cover;
}

#mv .slide_wrapper #slide03.slide {
	background-image: url(../img/top/mv03.jpg);
	background-position: center center;
	background-size: cover;
}

#mv .slide_wrapper #slide04.slide {
	background-image: url(../img/top/mv04.jpg);
	background-position: center center;
	background-size: cover;
}

#mv .slide_wrapper #slide05.slide {
	background-image: url(../img/top/mv05.jpg);
	background-position: center center;
	background-size: cover;
}


@keyframes slide-animation {
	0% {
		animation-timing-function: ease-in;
		/*ゆっくり表示される*/
		opacity: 0;
		transform: scale(1.1);
	}

	6% {
		animation-timing-function: ease-out;
		/*表示された*/
		opacity: 1;
	}

	30% {
		opacity: 1;
		/*＊表示期間*/
	}

	50% {
		opacity: 0;
		/*次の画像で消えている*/
		transform: scale(1.2);
	}

	100% {
		opacity: 0;
		/*表示されていない時間*/
		transform: scale(1.1);
	}
}


/*========================
お知らせ
========================*/
.news_list {
	margin-bottom: 0.30rem;
}

.news_list dt {
	width: 1.00rem;
	font-size: 0.16rem;
}

@media screen and (max-width: 499px) {
	.news_list dt {
		width: 100%;
		font-size: 0.15rem;
		padding-bottom: 0.06rem;
	}
}

.news_list dd {
	width: 5.55rem;
}

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

.news_list dd .title a {
	font-size: 0.16rem;
	color: #009245;
	font-weight: 700;
	text-decoration: underline;
}

.news_list dd .title {
	margin-bottom: 0.1rem;
	line-height: 1.5;
}

@media screen and (max-width: 499px) {
	.news_list dd .title {
		margin-bottom: 0;
	}
}

.news_list dd .text {
	font-size: 0.14rem;
	line-height: 1.75;
}

@media screen and (max-width: 499px) {
	.news_list dd .text {
		display: none;
	}
}

#top_news .more_btn {
	max-width: 230px;
	margin: auto;
	padding-top: 0.2rem;
	margin-bottom: 0.5rem;
}

@media screen and (max-width: 499px) {
	#top_news .more_btn {
		padding-top: 0;
	}
}

#top_news .more_btn a {
	background-color: #F15A24;
	box-shadow: 0 2px 0 rgba(241, 90, 36, 0.3);
}

/* トップに固定表示 */
.important_news_box {
	margin-bottom: 0.5rem;
}

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

.important_news_box a {
	display: block;
	padding: 0.18rem;
	text-align: center;
	background-color: #FEFBD0;
	border: 2px solid #C1272D;
	color: #C1272D;
	font-size: 0.18rem;
	font-weight: 700;
	text-decoration: none;
}

@media screen and (max-width: 499px) {
	.important_news_box a {
		padding: 0.15rem;
		line-height: 1.5;
		font-size: 0.16rem;
	}
}

.important_news_box a:hover {
	opacity: 0.7;
}

.important_news_box a span {
	display: inline-block;
	background-image: url(../img/common/important_news_icon.png);
	background-position: left center;
	padding-left: 0.24rem;
	background-repeat: no-repeat;
	background-size: contain;
}

@media screen and (max-width: 499px) {
	.important_news_box a span {
		background-image: none;
		padding-left: 0;
	}
}
