@charset "utf-8";
/* ===================================================================
//CSS information

// file name  :  top.css
// style info :  スタイル指定
=================================================================== */
.mt130 {
  margin-top: 130px;
}


/* -----------------------------------------------------
	news
----------------------------------------------------- */
.news {
    padding: 60px 0 0;
}
.news h2 {
  font-size: 16px;
  color: #333;
  font-weight: 400;
  line-height: 1;
  padding-bottom: 8px;
  border-bottom: #97887d 1px solid;
}
.news dl {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  padding-top: 20px;
}
.news dl dt.newsDay {
  font-size: 18px;
  width: 115px;
}
.news dl dd.newsTitle {
  font-size: 18px;
  width: calc(100% - 115px);
}
.newsTitle.arrow::before {
  content: "▲";
  color: #333;
  font-size: 8px;
  transform: rotate(90deg) translateX(1px);
  display: inline-block;
  padding-right: 5px;
}
.news dl dd.newsTxt {
  padding-top: 10px;
}
.news dl dd.newsTxt p {
  line-height: 2;
}
@media screen and (max-width: 991px) {
  .news dl dd.newsTxt {
    padding-top: 20px;
  }
}
@media screen and (max-width: 767px) {
.news {
    padding: 30px 0 0;
}
  .news dl {
    flex-flow: column wrap;
    align-items: flex-start;
  }
  .news dl dd.newsTitle {
    width: 100%;
  }
}
.newsLink {
  display: inline-block;
  color: #35a067 !important;
  font-size: 14px;
  padding: 0 25px 5px;
  transition: all .3s;
  position: relative;
}
.newsLink + div {
    display: none;
}
.newsLink::before {
  content: "▼";
  color: #35a067;
  font-size: 8px;
  display: inline-block;
  padding-right: 10px;
  transform: translateY(-2px);
  transition: all .3s;
}
.newsLink::after {
  content: " ";
  display: block;
  width: 100%;
  height: 1px;
  background: #999;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all .3s;
}
.newsLink:hover {
  color: #999 !important;
}
.newsLink:hover::before {
  color: #999 !important;
}
.newsLink:hover::after {
  width: 0%;
}
@media screen and (max-width: 420px) {
  .newsLink {
    padding: 0 10px 5px;
  }
}

