@charset "UTF-8";
/* Scss Document */
/*******************************
 
ITEM TOP Css
 
*******************************/
.news-block .wrap-common{
    max-width: 820px;
}

/*-----------------------------
Mainimg
-----------------------------*/
.page .mainimg {
    padding: 20px 0;
}

.page .mainimg h2 .inner {
    color: #2f2f2f;
}

/*-----------------------------
Tab
-----------------------------*/
.tab {
	justify-content: center;
	align-items: center;
    margin-bottom: 80px;
    border-bottom: solid 1px #bfbfbf;
}
.tab li {
	width: 20%;
}
.tab li a{
    display: block;
    height: 100%;
    padding: 10px .5em;
    color: #bfbfbf;
	font-weight: bold;
    letter-spacing: 2px;
	white-space: nowrap;
	text-align: center;
    position: relative;
}
.tab li a:after {
    content: '';
    width: 100%;
    height: 1px;
    background: #bfbfbf;
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    margin: auto;
}
/* アクティブなタブ */
.tab li.active a,
.tab li a:hover{
	color: #2f2f2f;
}

.tab li.active a:after{
	height: 3px;
	background-color: #2f2f2f;
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px) {
    .tab {
        margin-bottom: 40px;
    }
    .tab li {
        width: auto;
    }
    .tab li a{
        letter-spacing: .1em;
    }
}
/*-----------------------------
List
-----------------------------*/
.news-list li a{
	justify-content: flex-start;
    align-items: center;
    font-size: 93%;
    border-bottom: solid 1px #bfbfbf;
    padding: 15px 10px;
}
.news-list li a:hover{
	background-color: rgba(0,0,0,0.2);
}
.news-list li .date{
	margin-right: 20px;
    font-weight: bold;
}
.news-list li .tag{
    width: 100px;
	font-size: 75%;
	color: #fff;
	background-color: #2f2f2f;
    margin-right: 20px;
	padding: 2px 0;
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px) {
}