/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
header .header-nav > li.nav04 a:before {
  display: block;
}

.sec-banner {
  background-image: url(../img/news/banner.jpg);
}

.sec-news {
  padding-bottom: 155px;
}
.sec-news.article {
  padding-bottom: 63px;
}
.sec-news .wrapper {
  width: 870px;
}
.sec-news .ul-menu {
  margin: 83px auto 0;
  text-align: center;
}
.sec-news .ul-menu > li {
  float: left;
  width: 280px;
  margin: 0 0 0 15px;
  font-weight: bold;
  position: relative;
}
.sec-news .ul-menu > li:before {
  content: ' ';
  height: 28px;
  width: 1px;
  background: #99624D;
  left: -8px;
  top: 50%;
  margin-top: -14px;
  position: absolute;
}
.sec-news .ul-menu > li:first-child {
  margin-left: 0;
}
.sec-news .ul-menu > li:first-child:before {
  display: none;
}
.sec-news .ul-menu > li a {
  display: table;
  height: 40px;
  width: 100%;
  background: #DBCCCA;
  color: #fff;
  font-size: 14px;
  line-height: 1.2em;
}
.sec-news .ul-menu > li a span {
  display: table-cell;
  vertical-align: middle;
}
.sec-news .ul-menu > li a.current {
  background: #B7675B;
}
.sec-news .ul-news {
  margin: 40px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.sec-news .ul-news > li {
  float: left;
  width: 270px;
  margin: 0 0 16px 30px;
}
.sec-news .ul-news > li:nth-child(3n+1) {
  margin-left: 0;
}
.sec-news .ul-news > li a {
  display: block;
}
.sec-news .ul-news > li a .image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.sec-news .ul-news > li a .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sec-news .ul-news .info {
  margin-top: 15px;
}
.sec-news .gr .tag {
  float: left;
  min-width: 70px;
  text-align: center;
  padding: 4px 5px;
  line-height: 1em;
  background: #B7675B;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
}
.sec-news .gr .date {
  float: right;
  font-size: 12px;
  font-style: italic;
  line-height: 1em;
  margin-top: 4px;
}
.sec-news .ttl {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.7em;
  margin: 5px 0 0;
  text-align: center;
}
.sec-news .more {
  margin-top: 81px;
  text-align: center;
}
.sec-news .more > a {
  display: inline-block;
  background: url(../img/news/arrow01.png) no-repeat center bottom;
  font-size: 14px;
  line-height: 1em;
  padding: 0 0 22px;
}
.sec-news .article-news {
  margin: 40px 0 0;
}
.sec-news .article-news .img-large {
  margin-bottom: 25px;
}
.sec-news .article-news .ttl {
  font-size: 16px;
  text-align: left;
}
.sec-news .article-news .desc {
  font-size: 14px;
  line-height: 1.7em;
  margin-top: 14px;
}
.sec-news .article-news .info {
  padding: 5px 30px 0 15px;
}
.sec-news .pttl-news {
  margin: 57px -55px -4px;
  border-bottom: 1px solid #CAA495;
  font-size: 16px;
  line-height: 1em;
  padding-bottom: 11px;
  color: #6E4637;
  text-align: center;
}

@media only screen and (max-width: 750px) {
  .sec-banner {
    background-image: url(../img/news/sm/banner.jpg);
  }

  .sec-news {
    padding: 0.73rem 0.35rem 0.8rem;
  }
  .sec-news .wrapper {
    width: auto;
  }
  .sec-news .select {
    position: relative;
    margin-top: 0.8rem;
  }
  .sec-news .select:before {
    content: " ";
    width: 0.85rem;
    background: url(../img/common/sm/select.png) no-repeat center center;
    background-size: 0.3rem auto;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
  }
  .sec-news .select select {
    background: transparent;
    background-image: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    width: 100%;
    outline: none;
    border: 1px solid #4E1F0D;
    height: 0.8rem;
    padding: 0 0 0 0.1rem;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    font-size: 0.22rem;
    text-align: center;
  }
  .sec-news .select select::-ms-expand {
    display: none;
  }
  .sec-news .ul-news {
    margin: 0.3rem auto 0;
    width: auto;
  }
  .sec-news .ul-news > li {
    float: none;
    width: auto;
    margin: 0;
    padding: 0.3rem 0;
    border-bottom: 1px solid #ccc;
    width: 100%;
  }
  .sec-news .ul-news > li a .image {
    width: 39.70588235294118%;
    float: left;
    height: 90px;
    overflow: hidden;
  }
  .sec-news .ul-news .info {
    margin-top: 0.12rem;
    width: 60.29411764705882%;
    float: right;
    padding-left: 0.3rem;
  }
  .sec-news .gr .tag {
    min-width: 1.13rem;
    padding: 0.04rem 0.1rem;
    font-size: 0.2rem;
    font-weight: bold;
  }
  .sec-news .gr .date {
    font-size: 0.2rem;
    margin-top: 0.04rem;
  }
  .sec-news .ttl {
    font-size: 0.22rem;
    line-height: 1.7em;
    margin: 0.12rem 0 0;
    text-align: left;
  }
  .sec-news .more {
    margin: 0;
    padding: 1.4rem 0 0.32rem;
    background: url(../img/news/sm/dot.png) no-repeat center 0.42rem;
    background-size: 0.15rem auto;
  }
  .sec-news .more > a {
    background-image: url(../img/news/sm/arrow01.png);
    background-size: 0.5rem auto;
    font-size: 0.22rem;
    padding: 0 0 0.38rem;
  }
  .sec-news .article-news {
    margin: 0.4rem 0 0;
  }
  .sec-news .article-news .img-large {
    margin-bottom: 0.44rem;
  }
  .sec-news .article-news .ttl {
	font-size: 0.24rem;
	margin-bottom: 20;
  }
  .sec-news .article-news .desc {
    font-size: 0.22rem;
    line-height: 1.7em;
    margin-top: 0.15rem;
  }
  .sec-news .article-news .info {
    padding: 0.1rem 0 0 0.05rem;
  }
  .sec-news .pttl-news {
    margin: 0.83rem 0 0;
    border-bottom: none;
    font-size: 0.28rem;
    line-height: 1em;
    padding-bottom: 0.21rem;
    color: #6E4637;
    text-align: center;
  }
  .sec-news.article {
    padding-bottom: 1.08rem;
  }
  .sec-news.article .ul-news {
    margin-top: 0;
  }
  .sec-news.article .ul-news > li {
    border-top: 1px solid #ccc;
    border-bottom: none;
    width: 100%;
  }
  .sec-news .ul-news > li a .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

/*# sourceMappingURL=news.css.map */
.ttl {
	margin-bottom: 20px;
}
