@charset "utf-8";
/* CSS Document */
/*index*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500&family=Noto+Serif+JP:wght@300&family=Poiret+One&display=swap');
/*header*/
.main_imgBox {
	height: 75vh;
	min-height: 300px;
	overflow: hidden;
	position: relative;
}
.main_img {
	z-index:10;
	opacity: 0;
	width: 100%;
	height:100%;
    object-fit: cover;
	position: absolute;
	left: 0;
	top: 0;
	-webkit-animation: anime 18s 0s infinite;
	animation: anime 18s 0s infinite; 
}
.main_img:nth-of-type(2) {
	-webkit-animation-delay: 6s;
	animation-delay: 6s; 
}
.main_img:nth-of-type(3) {
	-webkit-animation-delay: 12s;
	animation-delay: 12s; 
}
@keyframes anime {
	0% {
		opacity: 0;
	}
	16.6% {
		opacity: 1;
	}
	33.3% {
		opacity: 1;
	}
	49.9% {
		opacity: 0;
		/*transform: scale(1.2) ;*/
		z-index:9;
	}
	100% {
		opacity: 0;
	}
}
/*画像4枚*/
.main_img4 {
	z-index:10;
	opacity: 0;
	width: 100%;
	height:100%;
    object-fit: cover;
	position: absolute;
	left: 0;
	top: 0;
	-webkit-animation: anime4 24s 0s infinite;
	animation: anime4 24s 0s infinite; 
}
.main_img4:nth-of-type(2) {
	-webkit-animation-delay: 6s;
	animation-delay: 6s; 
}
.main_img4:nth-of-type(3) {
	-webkit-animation-delay: 12s;
	animation-delay: 12s; 
}
.main_img4:nth-of-type(4) {
	-webkit-animation-delay: 18s;
	animation-delay: 18s; 
}
@keyframes anime4 {
	0% {
		opacity: 0;
	}
	12.5% {
		opacity: 1;
	}
	25% {
		opacity: 1;
	}
	37.5% {
		opacity: 0;
		/*transform: scale(1.2) ;*/
		z-index:9;
	}
	100% {
		opacity: 0;
	}
}

.main_message {
	z-index:11;
	position: absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	width:75%;
	height:auto;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	font-size: 2.0rem;
	color: #FFFFFF;
	text-shadow: 3px 4px 3px #000000;
	text-align: center;
}
.main_message img{
	width: 25%;
}
@media (min-width:768px){
	.main_message{
		font-size: 3.0rem;
	}
}
@media (max-width:768px){
	.main_imgBox {
		height: 75vw;
	}
	.main_message{
		left: 50%;
	}
	.main_message img{
		width: 50%;
	}
}

/*お知らせ*/
#news{
	margin-bottom: 2.0rem;
}
#news div.container{
	width: 75%;
}
#news div.row{
	margin: 0;
}
.news-list a{
	display: flex;
	flex-wrap: wrap;
	flex-wrap: nowrap;
	text-decoration: none;
	margin-bottom: 0.5rem;
	padding: 20px 20px;
}
.hn-box{}
.hn-thumb{
	width: 200px;
	height: 150px;
	overflow: hidden;
}
.hn-thumb img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hn-con{
	width: 100%;
	padding-left: 1.0rem;
	position: relative;
}
.hn-data{
	font-size: 0.8rem;
	color: #666666;
}
.hn-title{
	font-size: 1.2rem;
}
.hn-text{
	font-size: 0.9rem;
}
.hn-category{
	width: 100%;
	font-size: 0.6rem;
	position: absolute;
	bottom: 0;
}
.hn-category span{
	color: #FFF;
	text-align: center;
	display: inline-block;
	margin-top: 0.5rem;
	margin-right: 0.5rem;
	padding: 5px 15px;
	font-size: 12px;
	line-height: 1;
}
@media screen and (max-width:992px) {
	#news div.container{
		width: 95%;
	}
	.hn-text{
		font-size: 0.8rem;
	}
}
@media screen and (max-width:576px) {
	#news div.container{
		width: 100%;
	}
	.news-list a{
		padding: 20px 10px;
	}
	.hn-thumb{
		width: 150px;
		height: 75px;
	}
	.hn-title{
		width: 13rem;
		font-size: 1.0rem;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.hn-text{
		font-size: 12px;
	}
	.hn-category{
		position: static;
	}
	.hn-category span{
		margin-top: 0.3rem;
	}
	
}
