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


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

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

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

/* mv */
.mv {
	background-image: linear-gradient(rgba(0,0,0,.3), rgba(0,0,0,.3)),url("/img/news/mv.jpg");
}



/* main */
.post__box {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin-top: 50px;
	margin-bottom: 50px;
}

.post__item {
	width: 23.5%;
	border: 1px solid #DDD;
	overflow: hidden;
	margin-right: 2%;
	margin-bottom: 30px;
	position: relative;
}

.post__item:nth-of-type(4n) {
	margin-right: 0;
}

.post__thumbnail {
	border-bottom: 1px solid #EEE;
	width: 100%;
	position: relative;
	display: block;
	transition: .2s;
	overflow: hidden;
}

.post__thumbnail::before {
	display: block;
	content: "";
	padding-top: 60%;
}

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

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

.post__content {
	padding: 20px;
	text-align: left;
}

.post__h3 {
	font-size: 18px;
	font-weight: 600;
}

.post__h3 a {
	transition: .2s;
}

.post__h3 a:hover {
	color: #912023;
}

.post__date {
	font-size: 14px;
	color: #AAA;
}

.post__category {
	font-size: 14px;
	color: #AAA;
}

.post__new {
	position: absolute;
	top: 0;
	left: 0;
	background-color: #D90000;
	color: #FFF;
	font-weight: 600;
	padding: 3px 10px;
	font-size: 15px;
}

.wp-pagenavi {
	text-align: center;
	font-size: 15px;
	}

.wp-pagenavi .current {
	background: #24a33b;
	border: 1px solid #24a33b;
	color: #FFF;
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	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 #DDD;
	margin: 0 5px;
	transition: .2s;
	-webkit-transition: .2s;
	}

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

.search {
    width: 100%;
    height: 400px;
    padding: 100px 0;
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url("/img/privacypolicy/mv.jpg");
	background-position: center center;
	background-size: cover;
}

.search__ttl {
    width: 100%;
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #FFF;
    text-shadow: 0 0 5px #000, 0 0 5px #000, 0 0 5px #000;
}

.widgettitle{
    display: none;
}

.search__box {
	display: flex;
	justify-content: space-between;
	width: 95%;
	max-width: 700px;
	margin: 50px auto 0 auto;
}

.search__box > li {
	width: 45%;
}

.search__box label {
	display: none;
}

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


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

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

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

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

/* main */
.post__content {
	padding: 15px;
}

	
	
	
}



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

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

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

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

 /* main */
.post__content {
	padding: 10px;
}
	
	
}


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

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

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

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

/* main */
.post__box {
	margin-top: 20px;
	margin-bottom: 30px;
	border-top: 1px solid #EEE;
}

.post__item {
	width: 100%;
	border-radius: 0;
	margin-right: 0;
	margin-bottom: 0;
	display: flex;
	border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: 1px solid #EEE;
	padding: 15px 0;
}

.post__thumbnail {
	border-bottom: none;
	width: 45%;
	height: auto;
	overflow: hidden;
}

.post__thumbnail a {
	height: auto;
}

.post__content {
	width: 50%;
	padding: 0 10px 0 0;
	margin-left: 5%;
}

.post__h3 {
	font-size: 16px;
	margin-bottom: 10px;
}

.post__date {
	font-size: 12px;
}

.post__category {
	font-size: 12px;
}

.post__new {
	top: 15px;
	left: 0;
	font-size: 14px;
}

.wp-pagenavi .current {
	margin: 0 3px;
	}
	
.wp-pagenavi .page, .last {
	margin: 0 3px;
	}

.search {
    height: auto;
    padding: 60px 0;
}

.search__ttl {
    font-size: 20px;
    text-shadow: 0 0 3px #000, 0 0 3px #000, 0 0 3px #000;
}

.search__box {
	display: block;
	width: calc(100% - 40px);
	max-width: calc(100% - 40px);
	max-width: 400px;
	margin-top: 20px;
}

.search__box > li {
	width: 100%;
	margin-bottom: 20px;
}

.search__box select {
	display: inline-block;
	font-size: 14px;
	width: 100%;
}	

	
	
	
}