@charset "UTF-8";
/* CSS Document */


/******************************************************

PC設定 1200px以上の場合に適用 

*******************************************************/

/* mv */
.mv__bg {
	background-image: url("/img/news/mv.jpg");
}



/* main */
.main__box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.main__box::before{
	content: "";
	display: block;
	width: 22%;
	order: 1;
}

.main__box::after{
	content: "";
	display: block;
	width: 22%;
}

.main__item {
	width: 22%;
	transition: .2s;
	margin-bottom: 60px;
}

.main__thumbnail {
	position: relative;
	display: block;
	transition: .2s;
	overflow: hidden;
	border-radius: 5px;
	margin-bottom: 15px;
}

.main__thumbnail::before {
	display: block;
	content: "";
	padding-top: 66%;
}

.main__thumbnail img {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	max-width: none;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .2s;
}

.main__mark {
	position: absolute;
	left: 0;
	top: 0;
	background-color: #D90000;
	color: #FFF;
	font-weight: 600;
	font-size: 16px;
	padding: 3px 12px;
	border-radius: 0 0 3px 0;
}

.main__link:hover .main__thumbnail img {
	-webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.main__h3 {
	font-weight: 600;
	margin-bottom: 5px;
	transition: .2s;
}

.main__link:hover .main__h3 {
	color: #034791;
}

.main__date {
	font-size: 16px;
	color: #AAA;
	margin-bottom: 10px;
}

.main__category p {
	margin-right: 3px;
	display: inline-block;
	font-size: 14px;
	color: #FFF;
	padding: 0 5px;
	border-radius: 3px;
}

.main__category .result {
	background-color: #034791;
	border: 1px solid #034791;
}

.main__category .information {
	background-color: #000;
	border: 1px solid #000;
}

.main__category .others {
	background-color: #FFF;
	border: 1px solid #222;
	color: #222;
}

.wp-pagenavi {
	text-align: center;
	margin-top: 70px;
	}

.wp-pagenavi .current {
	background: #000;
	border: 1px solid #000;
	color: #FFF;
	display: inline-block;
	width: 45px;
	height: 45px;
	line-height: 45px;
	margin: 0 5px;
	}

.wp-pagenavi .pages {
	display: none;
	transition: .2s;
	-webkit-transition: .2s;
	}

.wp-pagenavi .page, .last, .first {
	display: inline-block;
	width: 45px;
	height: 45px;
	line-height: 45px;
	border: 1px solid #EEE;
	margin: 0 5px;
	transition: .2s;
	-webkit-transition: .2s;
	}

.wp-pagenavi .page:hover, .last:hover, .first:hover {
	background: #034791;
	border: 1px solid #034791;
	color: #FFF;
	}



/* search */
.search {
	width: 100%;
	height: 400px;
	padding: 100px 0;
	background-color: #034791;
	background-size: cover;
}

.search__h2 {
	color: #FFF;
	margin-bottom: 30px;
}

.search__h2 span {
	color: #FFF;
}

.search > ul {
	width: 650px;
	margin: 0 auto;
	}

.search > ul > li {
	width: 300px;
	float: left;
	}

.search > ul > li:first-child {
	margin-right: 50px;
	}

.widgettitle, .search label {
	display: none;
	}

.search select {
	width: 100%;
	display: block;
	height: 45px;
	font-size: 16px;
	}




/******************************************************

タブレットの設定 960px~1199pxの場合に適用 

*******************************************************/

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


	
}



/******************************************************

タブレットの設定 768px~959pxの場合に適用 

*******************************************************/

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

/* main */
.main__item {
	width: 30%;
}

	

}



/******************************************************

SPの設定 767px以下の場合に適用 

*******************************************************/

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

/* main */
.main__item {
	width: 48%;
	margin-bottom: 30px;
}

.main__thumbnail {
	border-radius: 3px;
	margin-bottom: 10px;
}

.main__mark {
	font-size: 14px;
	padding: 1px 5px;
}

.main__h3 {
	font-size: 16px;
}

.main__date {
	font-size: 14px;
	margin-bottom: 5px;
}

.main__category p {
	margin-right: 2px;
	font-size: 12px;
	padding: 0 3px;
}

.wp-pagenavi {
	margin-top: 50px;
	}

.wp-pagenavi .current {
	width: 35px;
	height: 35px;
	line-height: 35px;
	margin: 0 3px;
	}

.wp-pagenavi .page, .last, .first {
	width: 35px;
	height: 35px;
	line-height: 35px;
	margin: 0 3px;
	}
	
	
	
/* search */
.search {
	height: auto;
	padding: 40px 0 50px 0;
	}

.search > ul {
	width: 70%;
	}

.search > ul > li {
	width: 100%;
	margin-bottom: 0;
	float: none;
	}

.search > ul > li:first-child {
	margin-right: 0;
	margin-bottom: 15px;
	}

.search select {
	height: 50px;
	opacity: 1;
	font-size: 14px;
	}
	
	
	
}