/* --------------------
   main
-------------------- */
#main {
  background: url("../images/news/back.jpg") no-repeat center bottom;
  background-size: cover;}

#news { padding: 100px 0 160px;}
#news .contents { max-width: 820px;}
#news h1 { margin: 60px 0 0;}
#news p { margin-top: 2em; color: #1B2431;}
#news img { margin-top: 2em;}
#news .item {
  padding-bottom: 60px;
  border-bottom: 1px solid #DCE2EB;}
@media screen and (max-width: 768px){
  #main {
    background: url("../images/news/back-sp.jpg") no-repeat center bottom;
    background-size: cover;}
  #news { padding: 5vw 0 15vw;}}
.pagenation {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625em;
  margin-top: 40px;
}
.pagenation li {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 2em;
  height: 2em;
  border-radius: 4px;
  background-color: #1D4494;
  position: relative;
}
.pagenation li a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  color: #fff;
  position: relative;
}
.pagenation .prev a:before, .pagenation .next a:before {
  content: "";
  transform: rotate(-45deg);
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
}
.pagenation .next a:before {
  border-right: solid 1px #fff;
  border-bottom: solid 1px #fff;
}
.pagenation .prev a:before {
  border-left: solid 1px #fff;
  border-top: solid 1px #fff;
}
.pagenation li.current {
  background-color: #E2EDF4;
  color: #1D4494;
}
.pagenation li.none {
  border: none;
  background: none;
}
@media screen and (min-width: 768px) {
  .pagenation {
    margin-top: 100px;
  }
  .pagenation li {
    width: 2.5em;
    height: 2.5em;
  }
  .pagenation li a:hover {
    background-color: #008FDA;
  }
}