.wrap-news {
  /*max-width: 1000px;*/
  margin: 0 auto;
}

.news-list {
  border: solid 1px #e2e0e0;
  border-radius: 6px 6px 6px 6px;
  transition: all 0.2s;
  margin-bottom: 30px;
}
.news-list a {
  color: #000;
}
.news-list figure {
  position: relative;
  overflow: hidden;
  padding-bottom: 54%;
}
.news-list figure .img-center a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.news-list figure img {
  max-height: 100%;
  border-radius: 6px 6px 0px 0px;
}
.news-list .news-info {
  padding: 15px;
  position: relative; z-index: 20;
}
.news-list .news-info .news-icon {
  position: absolute;
  top: -43px;
  left: calc(50% - 40px);
  padding: 15px;
  border-radius: 100%;
  text-align: center;
  background: #27597e;
  font-size: 26px;
  color: #fff;
  font-weight: 700;
  transition: all 0.5s;
}
.news-list .news-info .news-icon:before {
  content: url("icons/news.svg");
  display: block;
  width: 50px;
  height: 50px;
}
.news-list .news-info .news-title {
  margin-top: 27px;
  color: #27597e;
  font-weight: 600;
}
.news-list .news-info .news-title a:hover {
  color: #92C25C;
}
.news-list .news-info .news-text {
  margin: 10px 0;
  font-weight: 200;
  color: #333;
}
.news-list:hover {
  transform: scale(0.98);
  box-shadow: 0px 5px 6px 0px rgba(0, 0, 0, 0.1);
}
.news-list:hover .news-info .news-icon {
  background: #92C25C;
}
.news-list:hover figure img {
  opacity: 0.7;
}

.news-btnbox {
  text-align: center;
  margin-top: 16px;
}

.news-btn {
  display: inline-block;
  padding: 5px 25px;
  font-size: 0.9rem;
  color: #000;
  background-color: #fff;
  border: solid 1px #000;
  transition: all 0.5s;
}
.news-btn:hover {
  background: #332C2B;
  color: #fff;
  border: solid 1px #332C2B;
}

/* News Detail ============================================================== */
.wrap-news-detail {
  margin: 0 auto;
  max-width: 1230px;
  word-break: break-all;
}
.wrap-news-detail a:hover {
  color: #332C2B;
}
.news-detail-title {padding: 0 0 20px 0;}
.news-detail-title h1 {
  font-size: 1.7rem;
  font-weight: 600;
}
@media (max-width: 460px) {
  .news-detail-title h1 {
    font-size: 1.2rem;
  }  
}


.new-list-box:first-child .news-list-item{
	 border-top: 1px solid #dadada;
}

.news-list-item {
    border-bottom: 1px solid #dadada;
    padding: 20px 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}

.news-list-item:after {
    transition: all 0.4s ease-out 0s;
    position: absolute;
    content: "";
    top: 0;
    height: 100%;
    right: 0;
    width: 0;
    background: #f7f7f7;
}

.news-list-item:hover:after {
    left: 0;
    width: 100%;
}

.news-list-item > div {
    z-index: 3;
    position: relative;
}

.news-list-item .date {
    background: #27597e;
	color: #fff;
    font-size: 18px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	padding: 8px 14px;
	line-height: 1;
}

.news-list-item .tit {
    width: 100%;
    font-weight: bold;
	font-size: 24px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
	margin: 20px 0 15px 0;
	z-index: 3;
}

.news-list-item .tit:hover {
    color: #27597e;
}

.news-list-item .txt {
    width: 100%;
	color: #6e6e6e;
	font-size: 18px;
}

.news-list-item .link-more{
	display: block;
	border: 1px solid #000000;
	margin: 0 0 0 auto;
	z-index: 3;
	font-size: 16px;
	font-weight: bold;
	padding: 7px 24px;
	margin-top: 25px;
}

.news-list-item .link-more:hover{
	background: #000;
    color: #fff;
    transform: scale(0.95);
}

.news-list-item .link-float{position: absolute;top: 0;left: 0;width: 100%;height: 100%;display: block;z-index: 4;}

@media only screen and (max-width: 768px) {
	
	
}
