@charset "UTF-8";
/* Scss Document */
/* -------------------------------------------------- */
/* file   : top.css                                  */
/* update : 2023                                      */
/* -------------------------------------------------- */
/* -------------------------------------------------- */
/* pc向け */
/* --------------------------------------------------- */
.news-archives {
  padding-bottom: 80px;
}

.news-list {
  max-width: 686px;
  margin: 65px auto 0;
}

.news-item {
  margin-top: 17px;
}
.news-item:first-child {
  margin-top: 0;
}
.news-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news-item a:hover .news-item_ttl {
  color: #ff0000;
}

.news-item_header {
  width: 228px;
  padding-right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-item_day {
  font-feature-settings: normal;
}

.news-item_cat {
  width: 90px;
  padding: 3px 0;
  font-size: 12px;
  text-align: center;
  display: block;
  border: 1px solid;
}

.news-item_ttl {
  width: calc(100% - 228px);
  text-decoration: underline;
  font-feature-settings: normal;
  transition: 0.3s;
}

.news-navi {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}
.news-navi a {
  width: 40px;
  height: 40px;
  font-size: 16px;
  font-weight: 700;
  color: #666666;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.news-navi a:hover {
  color: #FFF;
  background: #0c538f;
}
.news-navi .active {
  color: #FFF;
  background: #d22d23;
  pointer-events: none;
}
.news-view_content-inner {
  max-width: 765px;
  margin: 0 auto;
}

.news-view_header {
  margin-top: 65px;
  padding: 0 40px 14px;
  border-bottom: 1px solid #8f8f8f;
  display: flex;
  align-items: center;
  gap: 0 33px;
}

.news-view_cat {
  padding: 3px 14px;
  font-size: 13px;
  letter-spacing: 0.2em;
  display: inline-block;
  border: 1px solid;
}

.news-view_cat--etc {
  color: #39ac4a;
  border: 1px solid #39ac4a;
}

.news-view_ttl {
  padding: 15px 40px;
  font-weight: 700;
  line-height: 1.6;
  border-bottom: 1px solid #8f8f8f;
}

.news-view_content {
  padding: 35px 40px 45px;
  line-height: 1.73;
  border-bottom: 1px solid #8f8f8f;
}
.news-view_content a {
  text-decoration: underline;
}

.news-view_navi {
  margin: 34px 0 190px;
  padding: 0 48px;
  position: relative;
}

.news-view_navi-item {
  margin: 0 auto;
  text-align: center;
}
.news-view_navi-item a {
  font-size: 14px;
  display: inline-block;
  position: relative;
}
.news-view_navi-item a::after {
  content: "";
  width: 0;
  height: 2px;
  display: block;
  background: #ff0000;
  position: absolute;
  bottom: -5px;
  left: 0;
  transition: 0.3s;
}
.news-view_navi-item a:hover::after {
  width: 100%;
}

.news-view_navi-item--prev {
  position: absolute;
  top: 0;
  left: 48px;
}
.news-view_navi-item--prev a {
  padding-right: 18px;
}
.news-view_navi-item--prev a::before {
  content: "";
  width: 11px;
  height: 13px;
  display: block;
  background: url(../../news/img/arrow.svg) no-repeat center/100% auto;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}

.news-view_navi-item--next {
  position: absolute;
  top: 0;
  right: 48px;
}
.news-view_navi-item--next a {
  padding-left: 18px;
}
.news-view_navi-item--next a::before {
  content: "";
  width: 11px;
  height: 13px;
  display: block;
  background: url(../../news/img/arrow.svg) no-repeat center/100% auto;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%) rotate(180deg);
}

/* -------------------pc END------------------------------- */
/* -------------------------------------------------- */
/* tablet向け */
/* --------------------------------------------------- */
/* ---------------------tablet END----------------------------- */
/* -------------------------------------------------- */
/* sp向け */
/* --------------------------------------------------- */
@media screen and (max-width: 750px) {
  .news-archives {
    padding-bottom: 25px;
  }
  .news-list {
    max-width: 100%;
    margin: 20px auto 0;
  }
  .news-item {
    margin-top: 9px;
  }
  .news-item:first-child {
    margin-top: 0;
  }
  .news-item a {
    display: block;
  }
  .news-item a:hover .news-item_ttl {
    color: #000;
  }
  .news-item_header {
    width: 100%;
    gap: 0 6px;
    justify-content: flex-start;
  }
  .news-item_cat {
    padding: 3px 0;
    font-size: 10px;
    letter-spacing: 0.2em;
  }
  .news-item_ttl {
    width: 100%;
    margin-top: -1px;
    line-height: 1.86;
    transition: 0s;
  }
  .news-navi {
    margin-top: 30px;
  }
  .news-navi a {
    width: 25px;
    height: 25px;
    font-size: 9px;
    transition: 0s;
  }
  .news-navi a:hover {
    color: #000;
    background: none;
  }
  .news-view_content-inner {
    max-width: 100%;
    margin: 0;
  }
  .news-view_header {
    margin-top: 17px;
    padding: 0 8px 11px;
    gap: 0 12px;
  }
  .news-view_cat {
    padding: 3px 10px;
    font-size: 13px;
    letter-spacing: 0.2em;
    display: inline-block;
    border: 1px solid;
  }
  .news-view_ttl {
    padding: 12px 8px 15px;
    font-size: 15px;
  }
  .news-view_content {
    padding: 25px 8px 30px;
  }
  .news-view_navi {
    margin: 25px 0 110px;
    padding: 0 20px;
  }
  .news-view_navi-item a::after {
    display: none;
  }
  .news-view_navi-item--prev {
    left: 20px;
  }
  .news-view_navi-item--prev a {
    padding-right: 18px;
  }
  .news-view_navi-item--next {
    right: 20px;
  }
  .news-view_navi-item--next a {
    padding-left: 18px;
  }
}
/* -------------------sp END------------------------------- *//*# sourceMappingURL=news.css.map */