@charset "utf-8";
.texta{
  color: #efac60;
  text-decoration: underline;
}
.texta:hover{
  text-decoration: none;
}
.subhead {
  background: #efd860;
  color: #3c3c3c;
  text-align: center;
  position: relative;
  height: 150px;
}
.subhead h2{
  font-size: 40px;
  font-weight: 500;
  line-height: 1.5;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  white-space: nowrap;
}
.head3{
  font-size: 30px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}
.head3::before {
  content: "";
  background-color: #3c3c3c;
  width: 15px;
  height: 1px;
  transform: translateX(-100%);
  position: absolute;
  left: 35%;
  top: 50%;
}
.head3::after {
  content: "";
  background-color: #3c3c3c;
  width: 15px;
  height: 1px;
  position: absolute;
  transform: translateX(100%);
  right: 35%;
  top: 50%;
}
.con_box {
    margin-top: 80px;
    padding: 0 20px;
    font-weight: 400;
    font-size: 14px;
}
.br500{
  display: none;
}
.news_item{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.img_area{
    border: solid 1px #ececec;
    order: 1;
    width: 48%;
}
.text_area{
    order: 2;
    width: 48%;
}
.news_item:nth-child(even) .img_area{
    order: 2;
}
.news_item:nth-child(even) .text_area{
    order: 1;
}
.news_item{
    margin-bottom: 100px;
}
.date{
    font-size: 13px;
    margin-bottom: 2%;
    letter-spacing: 0.1em;
}
.news_ttl{
    font-size: min(2.5vw, 20px);
    line-height: 1.4;
    margin-bottom: 5%;
    font-weight: 500;
    text-align: justify;
}
.news_lead{
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.1em;
    text-align: justify;
}
.to_top{
    max-width: 250px;
    height: 50px;
    border: solid 1px #3c3c3c;
    margin: 80px auto 0;
}
.to_top a{
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  color: #3c3c3c;
  transition-duration: 0.3s;
}
.to_top a:hover{
  background: #3c3c3c;
  color: #fff;
}

.pagination{
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination_num{
  display: flex;
}
.pagination_num li{
  margin: 0 5px;
  /* border: solid 1px #3c3c3c; */
  width: 30px;
  height: 30px;
  /* border-radius: 100px; */
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination_num li.current{
  /* background: #3c3c3c; */
  /* color: #fff; */
  opacity: 0.3;
}
.pagination_num li a{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prev-page, .next-page{
  /* padding: 0 20px; */
  background: #3c3c3c;
  color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}
.prev-page.disabled{
  opacity: 0;
  pointer-events: none;
}
.next-page.disabled{
  opacity: 0;
  pointer-events: none;
}
.end-page.disabled{
  opacity: 0;
  pointer-events: none;
}
.first-page.disabled{
  opacity: 0;
  pointer-events: none;
}

@media (max-width:650px){
  .subhead {
    height: 100px;
  }
  .subhead h2{
    font-size: 28px;
  }
  .head3{
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    margin: 0 0 40px 0;
    position: relative;
  }
  .head3::before {
    content: "";
    background-color: #3c3c3c;
    width: 15px;
    height: 1px;
    position: absolute;
    left: 35%;
    top: 50%;
  }
  .con_box {
    max-width: 100%;
    margin: 40px auto 0;
    padding: 0 20px;
    font-weight: 400;
    font-size: 14px;
  }
    .news_item{
        flex-wrap: wrap;
    }
    .text_area{
        width: 100%;
        order: 2!important;
    }
    .img_area{
        width: 100%;
        order: 1!important;
        margin-bottom: 4%;
    }
    .news_ttl {
        font-size: min(4.5vw, 20px);
    }
    .date{
        font-size: 12px;
    }
    .news_lead {
        font-size: 13px;
    }
    .news_item:not(:last-child) {
        margin-bottom: 60px;
    }
    .to_top{
      max-width: 200px;
      height: 40px;
    }
    .to_top a{
      font-size: 13px;
    }
}

@media (max-width:500px){
  .br500{
    display: initial;
  }
  .con_box{
    margin: 30px auto 0;
}
  .head3{
    font-size: 24px;
    margin: 0 0 30px 0;
  }
  .head3::before {
    width: 10px;
    left: 30%;
  }
  .head3::after {
    width: 10px;
    right: 30%;
  }
}



.next-page button, .prev-page button{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}