@charset "UTF-8";

/*******************************
 
れすぽんCss
 
*******************************/
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
@media only screen and (min-width: 750px) {
.pc { display: block !important; }
.sp { display: none !important; }
}
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
.pc { display: none !important; }
.sp { display: block !important; }
}

/* br_pc　pc時改行 */
/* br_sp　sp時改行 */
@media screen and (min-width: 750px){	
  .br-pc { display:block; }
  .br-sp { display:none; }
}
@media screen and (max-width: 750px){	
  .br-pc { display:none; }
  .br-sp { display:block; }
}

/*******************************
 
下層ヘッダー
 
*******************************/

.mainttl{
	background: url(../images/under_hbg.jpg) no-repeat center;
	background-size: cover;
	position: relative;
	height:200px;
	margin-bottom: 50px;
}
/*.mainttl::before{
	background-color: rgba(0,0,0,0.5);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: ' ';
}*/
.mainttl .txt{
    width: 100%;
    max-width: 988px;
    position: absolute;
    top:40%;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    
}
.mainttl h1{
	color: #fff;
	font-size: 24pt;
	letter-spacing: 4px;
}

@media only screen and (max-width: 750px) {
	.mainttl{
		height:100px;
	}
	.mainttl h1{
	  font-size: 18pt;
	}
}

/*******************************
 
newsCss
 
*******************************/

.con_wrap{
	width: 820px;
	margin: 0 auto;
	display: flex;
}
.news_list{
	margin-top: 50px;
}
.news_list li{
	padding: 15px;
}
.news_list li a{
	color:#2e4840;
}


/* ページャー */
.pager{
	overflow: hidden;
	margin-top: 70px;
    margin-bottom: 180px;
	text-align: center;
}
.pager ul {
    list-style: none;
	display: block;
    margin: 0 auto;
}
.pager ul li {
    margin: 0 3px;
    display: inline-block;
}
.pager ul li a {
	display: block;
    font-size: 20px;
    font-weight: 600;
    color: #545454;
    text-decoration: none;
    border: solid 1px #a0a0a0;
	width: 40px;
    height: 40px;
    line-height: 2;
}
.pager ul li a.active {
	border: solid 1px #d4d4d4;
    background-color: #d4d4d4;
}

@media only screen and (max-width: 750px) {
	.con_wrap{
		width: 100%;
		margin: 0 auto;
	}
	.news_list{
		margin-top: 0;
		padding-bottom: 0;
	}
	.news_list li{
		padding: 0;
	}
	.news_list time{
		display: block;
		padding-top: 15px;
		padding-bottom: 5px;
	}
	.news_list span.ttl{
		display: block;
    	padding-bottom: 15px;
	}
	
	/* ページャー */
	.pager {
		margin-top: 50px;
		margin-bottom: 50px;
	}
}


/*******************************
 
news-detailCss
 
*******************************/
.news-detail{
	margin-top: 60px;
    margin-bottom: 250px;
}
.news-detail p{
	font-size: 15px;
	color: #000;
}
.news-detail time{
	font-size: 18px;
	color: #686868;
}
.news-detail .ttl{
	font-size: 24px;
	font-weight: 600;
	padding-bottom: 20px;
	border-bottom: dotted 1px #a0a0a0;
	margin-bottom: 20px;
}
.news-detail img{
	margin-bottom: 20px;
}
.news-detail .txt{
	letter-spacing: 2px;
	line-height: 2.3em;
}

@media only screen and (max-width: 750px) {
	.news-detail{
		margin-top: 0;
		margin-bottom: 50px;
	}
	.news-detail time{
		font-size: 15px;
	}
	.news-detail .ttl{
		font-size: 18px;
	}
}