footer .copySection p:nth-child(2) {
    display:none !important;
}

/* ロゴ右側のブロック */
.logo-after {
    display: block;
		width: 300px;
    float: right;
}
 
.logo-after img {
		max-height: 60px;
}
 
/* ヘッダー幅を100%に */
.navbar-header {
    width: 100%;
}
 
@media (max-width: 991px) {
    .logo-after {
        width: 100%;
        margin-top: 10px;
        margin-bottom: 10px;
        text-align: center;
    }
}

/* 連絡先のスタイル */
.logo-after .message {
		font-size: 19px;
}

.logo-after .tel {
		font-size: 28px;
		font-weight: bold;
}
 
/*PC表示の時にはリンクを無効にする*/
@media (min-width: 992px){
.tel {
pointer-events: none;
 }
}




/* ページ送り */
.pagination {
	clear: both;
	padding: 20px 0;
	position: relative;
	font-size: 14px;
	line-height: 14px;
        text-align: center;
}
.pagination-box {
	display: inline-block;
}
.pagination span, .pagination a {
	display: block;
	float: left;
	margin: 2px 2px 2px 0;
	padding: 10px 15px 10px 15px;
	text-decoration: none;
	width: auto;
	color: #fff; /* 通常の文字色 */
	background: #8ebff5; /* 通常の背景色 */
}
.pagination a:hover{
	color: #8ebff5; /* マウスホバー時の文字色 */
	background: #F9D635; /* マウスホバー時の背景色 */
}
.pagination .current{
	padding: 10px 15px 10px 15px;
	color: #47BEA0; /* 現在のページの文字色 */
        background: #F9D635; /* 現在のページの背景色 */
}
@media only screen and (max-width: 413px) {
.pagination {
	font-size: 12px;
	line-height: 12px;
}
.pagination span, .pagination a {
	padding: 8px 10px 8px 10px;
}
.pagination .current{
	padding: 8px 10px 8px 10px;
}
}


/*ロゴ画像を元画像どおりのサイズで表示*/
.navbar-brand img {
max-height: none !important;
}

#npcatch{
	margin:0px;
}


/*Newpost catchのCSS*/
#npcatch li{
	font-size:14px;
	overflow:hidden;
	clear:both;
	margin:10px -20px 20px;
	vertical-align:top;
}

#npcatch img{
/*サムネイルのスタイル*/
	float:left;
	padding:0px;
	box-shadow:0px 0px 7px #bbb;
}

#npcatch .title{
/*記事タイトルのスタイル*/
	
	float:right;
	padding: 0px;
}


/*テーブルの横スクロールのためのCSS*/
 table{ 
    width:100%;
}
.scroll{
    overflow: auto;
    white-space:nowrap;
}
.scroll::-webkit-scrollbar{
    height: 15px;
}
.scroll::-webkit-scrollbar-track{
    background: #f1f1f1;
}
.scroll::-webkit-scrollbar-thumb{
    background: #bbb;
}
 /*テーブルの横スクロールのためのCSSはここまで*/