@charset "UTF-8";
.news_wrap {
  font-size: 16px;
  line-height: 32px;
  text-align: left;
  font-weight: bold;
}
.news_listbox {
  max-width: 1200px;
  margin: 0 auto 80px;
  border-top: 1px solid #eee;
}
.news_list {
  display: flex;
  padding: 40px;
  border-bottom: 1px solid #eee;
}
.news_date {
  display: block;
  min-width: 140px;
}
a.news_link {
  position: relative;
  color: #4b83b9;
  display: inline-block;
  align-items: center;
  text-decoration: underline;
}
a.news_link:hover {
  opacity: 0.7;
}
a.news_link i {
    display: inline-block;
    height: 16px;
    width: 15px;
    margin: 5px 0 0 8px;
    background-image: url(/s-gok/img/cmn/link_icon_blue.png);
    background-repeat: no-repeat;
}
.pagenation {
  display: flex;
  justify-content: center;
  font-size: 18px;
  font-family: Arial;
  padding: 70px;
}
.pagenation a {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  align-content: center;
  width: 50px;
  height: 50px;
  color: #4b83b9;
  border: 1px solid #4b83b9;
  border-radius: 50px;
  margin: 0 10px;
}
.pagenation a:hover {
  opacity: 0.7;
  text-decoration: none;
}
.pagenation a.page_prev,
.pagenation a.page_next {
  position: relative;
  border: 0;
}
.pagenation a.page_prev:before,
.pagenation a.page_next:before {
  content: "";
  display: inline-block;
  height: 10px;
  width: 10px;
  border-top: 2px solid #4b83b9;
  border-right: 2px solid #4b83b9;
}
.pagenation a.page_prev:before {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
}
.pagenation a.page_next:before {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}
.pagenation a.page_cur {
  color: #fff;
  background: linear-gradient(to bottom right, #96c8da 0%, #4e8eca 50%, #014d8e);
}
.pagenation a.page_dot {
  border: 0;
}
.pagenation a.page_cur:hover,
.pagenation a.page_dot:hover {
  opacity: 1;
  cursor: default;
}
/* SP ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
@media only screen and (max-width: 767px){
  .news_wrap {
    font-size: 14px;
    line-height: 28px;
    padding: 20px;
  }
  .news_list {
    display: block;
    padding: 25px 0;
  }
  .news_date {
    width: 100%;
  }
  .pagenation {
    padding: 30px 0;
  }
  .pagenation a {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    margin: 0 5px;
  }
}