.news__wrapper {
  width: 1200px;
  margin: 0 auto 80px;
  display: flex;
  -moz-column-gap: 85px;
       column-gap: 85px;
}
@media screen and (max-width: 1280px) {
  .news__wrapper {
    width: 100%;
    padding: 0 40px;
    -moz-column-gap: max(6.640625vw, 40px);
         column-gap: max(6.640625vw, 40px);
  }
}
@media screen and (max-width: 850px) {
  .news__wrapper {
    flex-direction: column;
    row-gap: 24px;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 500px) {
  .news__wrapper {
    padding: 0 20px;
    row-gap: 16px;
    margin-bottom: 16px;
  }
}
.news__filter {
  width: 222px;
}
@media screen and (max-width: 850px) {
  .news__filter {
    width: 100%;
    margin-bottom: 40px;
  }
}
.news__filter-section {
  margin-bottom: 32px;
}
.news__filter-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #0B7BEC;
  margin-bottom: 20px;
}
@media screen and (max-width: 850px) {
  .news__filter-title {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 500px) {
  .news__filter-title {
    font-size: 14px;
    margin-bottom: 8px;
  }
}
.news__filter-btn {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: 8px;
  justify-content: flex-start;
}
@media screen and (max-width: 850px) {
  .news__filter-btn {
    flex-direction: row;
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
@media screen and (max-width: 500px) {
  .news__filter-btn {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
.news__filter-btn input {
  display: none;
}
.news__filter-btn input:checked + label {
  background: linear-gradient(90deg, rgba(0, 79, 200, 0.1019607843), rgba(0, 163, 236, 0.1019607843));
  color: #0B7BEC;
}
.news__filter-btn input:checked + label::before {
  opacity: 1;
}
.news__filter-btn label {
  padding: 11px 0 11px 38px;
  border-radius: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #10181D;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 850px) {
  .news__filter-btn label {
    padding: 8px 16px;
    background: #fff;
    border: solid 1px #DBEBFC;
  }
}
.news__filter-btn label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0B7BEC;
  opacity: 0.4;
  position: absolute;
  top: 18px;
  left: 16px;
}
@media screen and (max-width: 850px) {
  .news__filter-btn label::before {
    width: 0;
  }
}
.news__filter-btn label:hover {
  background: linear-gradient(90deg, rgba(0, 79, 200, 0.1019607843), rgba(0, 163, 236, 0.1019607843));
  color: #0B7BEC;
}
.news__filter-btn label:hover label::before {
  opacity: 1;
}
.news__interview-apply a {
  background: #fff;
  border: solid 1px #0B7BEC;
  border-radius: 8px;
  height: 41px;
  padding: 14px 11px 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #0B7BEC;
  transition: 0.3s;
}
@media screen and (max-width: 850px) {
  .news__interview-apply a {
    width: 220px;
  }
}
.news__interview-apply a .btn-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(90deg, #004FC8, #00A3EC);
  margin: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.news__interview-apply a .btn-icon img {
  width: 12px;
  filter: invert(100%) sepia(0%) saturate(7463%) hue-rotate(125deg) brightness(106%) contrast(100%);
}
.news__interview-apply a:hover {
  background: linear-gradient(90deg, #004FC8, #00A3EC);
  color: #FFF;
  transition: 0.3s;
}
.news__interview-apply a:hover .btn-icon {
  width: 24px;
  height: 24px;
  margin: 0;
  background: #FFF;
  transition: 0.3s;
}
.news__interview-apply a:hover .btn-icon img {
  filter: invert(46%) sepia(79%) saturate(4669%) hue-rotate(198deg) brightness(92%) contrast(103%);
}
.news__links {
  flex: 1;
}
.news__link {
  width: 100%;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: solid 2px rgba(11, 123, 236, 0.2);
  position: relative;
}
@media screen and (max-width: 850px) {
  .news__link {
    margin-bottom: 40px;
  }
}
.news__link::before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  bottom: -2px;
  left: 0;
  background: linear-gradient(90deg, #004FC8, #00A3EC);
  transition: 0.3s;
}
.news__link:hover::before {
  width: 100%;
  transition: 0.3s;
}
.news__link a {
  color: #10181D;
  display: flex;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
@media screen and (max-width: 850px) {
  .news__link a {
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
@media screen and (max-width: 500px) {
  .news__link a {
    flex-direction: column;
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
.news__link-img {
  border: solid 1px #E6EAED;
  position: relative;
  width: 160px;
  height: 108px;
  border-radius: 4px;
  overflow: hidden;
}
@media screen and (max-width: 850px) {
  .news__link-img {
    width: 140px;
    height: 94px;
  }
}
@media screen and (max-width: 500px) {
  .news__link-img {
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
    margin: 0 auto 24px;
  }
}
.news__link-img img {
  display: block;
  width: 100%;
  max-height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  transition: 0.3s;
}
.news__link-img::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #10181D;
  opacity: 0;
  transition: 0.3s;
}
.news__link-text {
  flex: 1;
}
.news__link-info {
  display: flex;
  -moz-column-gap: 16px;
       column-gap: 16px;
  margin-bottom: 16px;
}
.news__link-date {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  display: flex;
  align-items: center;
  font-size: 15px;
  opacity: 0.8;
  width: 90px;
}
@media screen and (max-width: 850px) {
  .news__link-date {
    width: 110px;
  }
}
.news__link-categoli {
  background: rgba(16, 24, 29, 0.07);
  padding: 4px 16px 5px;
  border-radius: 2px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: rgba(16, 24, 29, 0.9);
  font-size: 12px;
}
.news__link-title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.8;
}
.news__link:hover {
  color: #0B7BEC;
}
.news__link:hover .news__link-img img {
  transform: scale(1.05);
  transition: 0.3s;
}
.news__link:hover .news__link-img::before {
  opacity: 0.1;
  transition: 0.3s;
}
.news__link:hover .news__link-date {
  color: rgba(11, 123, 236, 0.8);
}
.news__link:hover .news__link-categoli {
  color: rgba(11, 123, 236, 0.9);
}
.news__link:hover .news__link-title {
  color: #0B7BEC;
}

.pagenation {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 120px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  -moz-column-gap: 12px;
       column-gap: 12px;
  row-gap: 16px;
}
@media screen and (max-width: 850px) {
  .pagenation {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 420px) {
  .pagenation {
    width: 300px;
    padding: 0 20px;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
.pagenation__btn {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  width: 56px;
  height: 56px;
  background: #fff;
  border: solid 1px #fff;
  border-radius: 4px;
  color: #0B7BEC;
  transition: 0.3s;
}
@media screen and (max-width: 850px) {
  .pagenation__btn {
    width: 36px;
    height: 36px;
  }
}
.pagenation__btn:hover {
  border: solid 1px #0B7BEC;
  transition: 0.3s;
}
.pagenation__btn.clicked {
  background: linear-gradient(90deg, #004FC8, #00A3EC);
  color: #fff;
}
.pagenation__btn.prev-btn {
  position: relative;
}
.pagenation__btn.prev-btn::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
  transform: rotate(90deg);
  background-image: url(../img/icon_chevron.svg);
  filter: invert(46%) sepia(79%) saturate(4669%) hue-rotate(198deg) brightness(92%) contrast(103%);
  background-size: contain;
}
@media screen and (max-width: 850px) {
  .pagenation__btn.prev-btn::before {
    top: 9px;
    right: 9px;
    width: 18px;
    height: 18px;
  }
}
.pagenation__btn.next-btn {
  position: relative;
}
.pagenation__btn.next-btn::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 16px;
  width: 24px;
  height: 24px;
  transform: rotate(-90deg);
  background-image: url(../img/icon_chevron.svg);
  filter: invert(46%) sepia(79%) saturate(4669%) hue-rotate(198deg) brightness(92%) contrast(103%);
  background-size: contain;
}
@media screen and (max-width: 850px) {
  .pagenation__btn.next-btn::before {
    top: 9px;
    left: 9px;
    width: 18px;
    height: 18px;
  }
}/*# sourceMappingURL=news.css.map */