@charset 'UTF-8';


.news {
  padding: 100px 0;
}

.news_title {
  color: #333;
}

.news_title_jp {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.5;
  padding: 0 0 20px 0;
}

span.news_title_en {
  color: #006532;
  position: relative;
  font-size: 16px;
  font-weight: bold;
  padding: 0 0 20px 0;
}

span.news_title_en::before {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  content: "";
  background-color: #333;
  height: 2px;
  width: 60px;
}



.detail_btn {
  position: relative;
  width: 160px;
  margin: 0 auto;
}

.detail_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 187px;
  margin: 0 auto;
  height: 50px;
  color: #00572e;
  border: 2px solid #00572e;
}

.detail_btn::after {
  position: absolute;
  content: "";
  background-color: #00572e;
  height: 1px;
  width: 40px;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transition: 0.3s;
}

ul.news_menu {
  margin: 80px 0;
}

li.news_menu_list {
  border-bottom: 1px solid #e2e2e2;
}

li.news_menu_list:first-child {
  border-top: 1px solid #e2e2e2;
}

li.news_menu_list a {
  display: flex;
  padding: 22px 0;
}

.news_flex {
  display: flex;
}

time.news_list_date {
  color: #737373;
  margin: 0 30px 0 0;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.08em;
}

p.news_list_category {
  background-color: #006532;
  color: #fff;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 36px 0 0;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.08em;
  white-space: nowrap;
  padding: 0 5px;
}

p.news_list_text {
  color: #333;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.detail_btn:hover::after{
  right: -57px;
  transition: 0.3s;
}
.detail_btn a:hover {
    background: #046432;
    transition: 0.3s;
    color: #fff;
}



@media (max-width: 650px) {

  .news_menu_list a {
    flex-direction: column;
  }

  .news_flex {
    margin: 0 0 10px 0;
  }

  time.news_list_date {
    margin: 0 20px 0 0;
  }

  p.news_list_category {
    margin: 0;
  }

}