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

/*とりあえずcopyright削*/
.pkoboC {
    display: none !important;
}

#newsList{
    margin-top: 3em;
    font-size: 16px;
}
#newsList li{
	border-bottom:1px solid #555;
}
#newsList li a {
    padding: 1.5em 0;
    display: flex;
    justify-content: space-between;
}

.n-thumb {
    width: 20%;
}
.n-text {
    width: 78%;
}

.n-time {
    padding-bottom: 10px;
}

.n-title {
    padding-bottom: 0;
    line-height: 1.4em;
}

.catName{
	display:inline-block;
    width: 140px;
	padding: 6px;
	border-radius: 20px;
    box-sizing: border-box;
	line-height: 1;
	margin:0 2px;
    color: #FFF;
    text-align: center;
    font-weight: bold;
}

.cat-0 .catName {
    background: #187fc4;
}
.cat-1 .catName {
    background: #7ebf41;
}
.cat-2 .catName {
    background: #f6ac19;
}

.newMark{
	display:inline-block;
	padding:1px 4px;
    font-weight: bold;
	line-height:100%;
	color:#ed1c24;
}
.comment{
	display: none;
}
.thumbNailWrap{
	display:block;
	width:100%;
}
.thumbNailWrap img {
    width: 100%;
}

/* Pager style（外部化可） */
.pager{
	text-align: center;
	padding: 2em 1em;
	clear:both;
}
/*ページャーボタン*/
.pager a{
    color: #333;
    padding: 10px 12px;
    text-decoration: none;
	margin:0 2px;
    background: #e6e6e6;
    line-height: 1;
}
/*現在のページのボタン*/
.pager a.current{
    background: #187fc4;
    color: #fff;
    pointer-events: none;
}
.pager a:hover{
    background:#999;
    color: #fff;
}

.overPagerPattern{
	padding:0 2px ;	
}
/* /Pager style */

/*カテゴリーメニュー*/
.category_menu {
    display: flex;
    justify-content: space-between;
    max-width: 750px;
    margin: 0 auto;
    font-size: 20px;
}

.category_menu p {
    width: calc((100% - 21px) / 4);
}
.category_menu p a {
    text-decoration: none;
    padding: 5px;
    display: block;
    text-align: center;
}
.category_menu .all {
    color: #4d4d4d;
    border-bottom: 3px solid #888;
}
.category_menu .cat-0 {
    color: #187fc4;
    border-bottom: 3px solid #187fc4;
}
.category_menu .cat-1 {
    color: #7ebf41;
    border-bottom: 3px solid #7ebf41;
}
.category_menu .cat-2 {
    color: #f6ac19;
    border-bottom: 3px solid #f6ac19;
}


@media screen and (max-width: 639px) {
    #newsList {
        margin-top: 1em;
    }
    .catName{
        width: 100px;
        font-size: 90%;
    }
    .category_menu {
        flex-wrap: wrap;
    }
    .category_menu p {
        width: calc((100% - 7px) / 2);
        margin-bottom: 10px;
    }
}