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


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

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

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

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



/* main */
.main__wrapper {
	max-width: 1400px;
	display: flex;
	justify-content: space-between;
}

.main__left {
	width: calc(100% - 330px);
}

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

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

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

.main__item {
	width: 31%;
	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: 65%;
}

.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: 13px;
	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-size: 18px;
	font-weight: 600;
	margin-bottom: 5px;
	transition: .2s;
}

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

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

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

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

.main__category .top {
	background-color: #ba1515;
	border: 1px solid #ba1515;
}

.main__category .second {
	background-color: #2A3053;
	border: 1px solid #2A3053;
}

.main__category .classic {
	background-color: #FF9900;
	border: 1px solid #FF9900;
}

.main__category .masters {
	background-color: #005410;
	border: 1px solid #005410;
}

.main__category .officialmatch {
	background-color: #b2a370;
	border: 1px solid #b2a370;
}

.main__category .trainingmatch {
	background-color: #c6c6c6;
	border: 1px solid #c6c6c6;
}

.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: #ba1515;
	border: 1px solid #ba1515;
	color: #FFF;
	}

.main__right {
	width: 250px;
}

.widget_categories .widgettitle,
.widget_archive .widgettitle,
.widget label {
	display: none;
}

.main__right li {
	list-style-type: none;
}

.side__h3,
.widgettitle {
	width: 100%;
	background-color: #000;
	color: #FFF;
	padding: 10px;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;
	border-radius: 5px!important;
}

.side__h3::before {
	display: inline-block;
	content: "";
	width: 20px;
	height: 20px;
	background-image: url("/img/news/icon_search.png");
	background-size: cover;
	margin-right: 7px;
	vertical-align: -3px;
}

.widgettitle::before {
	display: inline-block;
	content: "";
	width: 20px;
	height: 20px;
	background-image: url("/img/news/icon_newsword.png");
	background-size: cover;
	margin-right: 7px;
	vertical-align: -3px;
}

.widget_archive {
	margin-bottom: 50px;
}

.main__right select {
	width: 100%;
	display: block;
	height: 40px;
	font-size: 15px;
	margin-bottom: 15px;
}

.tagcloud a {
	font-size: 12px!important;
	border: 1px solid #222;
	border-radius: 50px;
	padding: 0 10px;
	line-height: 2;
	display: inline-block;
	margin-bottom: 5px;
	transition: .3s;
}

.tagcloud a:hover {
	background-color: #ba1515;
	border: 1px solid #ba1515;
	color: #FFF;
}

.tagcloud a::before {
	content: "#";
}




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

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

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

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


/* main */	
.main__left {
	width: calc(100% - 250px);
}
	
.main__right {
	width: 200px;
}
	
	
}



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

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

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

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

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


	
	

}



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

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

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

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

/* main */
.main__wrapper {
	display: block;
}

.main__left {
	width: 100%;
	margin-bottom: 70px;
}

.main__item {
	width: 48%;
	margin-bottom: 40px;
}

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

.main__mark {
	font-size: 12px;
	padding: 2px 10px;
}

.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-size: 14px;
	margin-bottom: 3px;
}
	
.main__date {
	font-size: 12px;
	margin-bottom: 5px;
}

.main__category p {
	margin-right: 3px;
	margin-bottom: 2px;
	font-size: 10px;
	padding: 0 3px;
}
	
.wp-pagenavi {
	margin-top: 20px;
	}

.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;
	}

.main__right {
	width: 100%;
}

.side__h3,
.widgettitle {
	padding: 7px 10px;
	font-size: 16px;
	margin-bottom: 15px;
	border-radius: 3px!important;
}

.side__h3::before {
	width: 15px;
	height: 15px;
	margin-right: 7px;
	vertical-align: -1px;
}

.widgettitle::before {
	width: 15px;
	height: 15px;
	margin-right: 7px;
	vertical-align: -2px;
}

.widget_archive {
	margin-bottom: 40px;
}

.main__right select {
	width: 100%;
	display: block;
	height: 40px;
	font-size: 15px;
	margin-bottom: 10px;
}

.tagcloud a {
	font-size: 12px!important;
	border: 1px solid #222;
	border-radius: 50px;
	padding: 0 10px;
	line-height: 2;
	display: inline-block;
	margin-bottom: 5px;
	transition: .3s;
}

.tagcloud a:hover {
	background-color: #ba1515;
	border: 1px solid #ba1515;
	color: #FFF;
}

.tagcloud a::before {
	content: "#";
}
	
	
	
}