﻿@charset "utf-8";
/** moreBtn **/
.moreBtn {
    position: relative;
}
.moreBtn a {
	display: flex;
	align-items: center;
	color:#000;
	padding:1px 0px 1px 6px;
}
.moreBtn span {
	position:relative;
	display:block;
	width:16px;
	height:16px;
	display:flex;
	flex-wrap:wrap;
	align-items:center;
	justify-content:center;
}
.moreBtn span:before {
	content: "";
	display: block;
	top: 10px;
	width: 0;
	height: 0;
	border-left: 5px solid #fe8a23;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
}
.moreBtn a:hover,
.moreBtn a:focus{
	background-color:#D60000;
	color:#fff;
	border-radius:3px;
}
.moreBtn a:hover span:before,
.moreBtn a:focus span:before{
	border-left: 5px solid #fff;
}
@media screen and (max-width: 480px) {	
	.moreBtn span { width:26px; height:26px; }
	.moreBtn span:before { top: 16px; left: 9px; }
	.moreBtn span:after  { top: 9px; left: 16px; }
}
/** newsFocus **/
.newsFocus {width:100%;}
.newsFocus ul{
	list-style: none;
    display:flex;
	flex-wrap:wrap;
}
.newsFocus ul li{width:50%;}
.newsFocus a {
	width:100%;		
	display:flex;
	align-items:center;
	line-height:1.5;
	padding:10px;
	box-sizing:border-box;
	border-radius:3px;		
}
.newsFocus .photo {
	width:80px;
	border:1px solid #ddd;
}
.newsFocus .photo .img{
	width:100%;
	padding-bottom:100%;
	background-color:#fff;
	background-image:url(../images/noimg.jpg);
	background-repeat:no-repeat;
	background-position:50% 50%;
	background-size: contain;
}
.newsFocus .txt {
	width:calc(100% - 80px - 20px);
	margin-left:20px;	
	text-align:left;
}
.newsFocus .txt strong {
	width: 100%;
	font-size: 1.5em;
	font-weight: bold;
	color: #1d7723;
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box !important;
	-webkit-box-orient: vertical !important;
	-webkit-line-clamp: 2 !important;	
}
.newsFocus a:hover .txt strong,
.newsFocus a:focus .txt strong {
	color:#D60000;
}
.newsFocus .txt span {
	display:block;
	width:100%;
	color:#666;	
	font-size:1.3em;
	margin-bottom:5px;
}
@media screen and (max-width:480px) {
	.newsFocus ul li{width:100%;}	
}
@media screen and (min-width:991px) {
	.newsFocus .photo {width:100px;}
	.newsFocus .txt {width:calc(100% - 100px - 20px);}
}
/** newsList **/
.newsList{
	width:100%;
	margin-top:2px;
}
.newsList ul {
	list-style:none;
	padding-left:0;	
}
.newsList li {
	width:100%;
	text-align:left;
}
.newsList li a {
	width:100%;		
	display:flex;
	align-items:center;		
	padding: 5px 10px 5px 15px;
	box-sizing:border-box;
	position:relative;	
}
.newsList li a::before,
.newsList li a::after{
	content:"";
	display:block;
	width:8px;
	height:2px;
	background-color:#d08c50;
	position:absolute;
	left:0;top:12px;
}
.newsList li a::after{
	transform: rotate(90deg);
}
.newsList li:last-child {
	border-bottom:none;	
}
.newsList li a:hover,
.newsList li a:focus {
}
.newsList time {
	width:85px;	
	color:#AA8264;
	font-size:1.3em;
}
.newsList strong {
	width:calc(100% - 85px);	
	color:#000;
	font-size:1.5em;	
	overflow:hidden;
	white-space: nowrap;
	text-overflow: ellipsis;	
}
.newsList a:hover strong,
.newsList a:focus strong {
	color:#D60000;
	text-decoration:underline;
}
.infoBox a:hover .txt,
.infoBox a:focus .txt{
	text-decoration:underline;
}

@media print {

}