@charset "UTF-8";
/*=======================================
	responsive
=======================================*/
:root {
  --main_color: #006DD9;
}

/*=======================================
　パンくずリスト
=======================================*/
.tab_pankuzu .content {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

/*=======================================
　news_sec
=======================================*/
.news_sec .content {
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .news_sec .content {
    margin-top: 80px;
  }
}
.news_sec .news_area {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .news_sec .news_area {
    margin-bottom: 50px;
  }
}
.news_sec .news_area ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.news_sec .news_area ul li {
  padding-bottom: 45px;
  border-bottom: 1px dotted var(--main_color);
}
@media screen and (max-width: 768px) {
  .news_sec .news_area ul li {
    padding-bottom: 30px;
  }
}
.news_sec .news_area ul li .day {
  letter-spacing: 0.1em;
  padding-left: 16px;
  position: relative;
  margin-bottom: 7px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .news_sec .news_area ul li .day {
    padding-left: 10px;
  }
}
.news_sec .news_area ul li .day::before {
  content: "";
  position: absolute;
  top: calc(50% + 1px);
  left: 0;
  width: 5px;
  height: 5px;
  background-color: var(--main_color);
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.news_sec .news_area ul li .ttl {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--main_color);
  margin-bottom: 22px;
}
@media screen and (max-width: 768px) {
  .news_sec .news_area ul li .ttl {
    font-size: 16px;
    margin-bottom: 12px;
  }
}
.news_sec .news_area ul li .plain {
  letter-spacing: 0.08em;
}
.news_sec .pager {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 80px;
  position: relative;
  margin: 0 auto 150px;
}
@media screen and (max-width: 768px) {
  .news_sec .pager {
    width: 100%;
    padding: 0;
    margin-bottom: 100px;
    gap: 10px;
  }
}
.news_sec .pager li {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.news_sec .pager li a {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  color: #939393;
}
@media screen and (max-width: 768px) {
  .news_sec .pager li a {
    width: 20px;
    height: 20px;
    font-size: 16px;
  }
}
.news_sec .pager li a.active {
  color: var(--main_color);
  font-weight: 700;
}
.news_sec .pager .page_arrow {
  content: "";
  position: absolute;
  top: 50%;
  width: 70px;
  height: 40px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .news_sec .pager .page_arrow {
    width: 60px;
    height: 30px;
    border-radius: 2px;
  }
}
.news_sec .pager .page_arrow a {
  width: auto;
  height: auto;
  font-size: 15px;
  font-weight: 700;
  color: var(--main_color);
  letter-spacing: 0.1em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .news_sec .pager .page_arrow a {
    font-size: 12px;
  }
}
.news_sec .pager .page_arrow.prev {
  left: 0;
}
.news_sec .pager .page_arrow.prev a {
  padding-left: 10px;
}
.news_sec .pager .page_arrow.prev a::before {
  content: "";
  position: absolute;
  left: 2px;
  width: 5px;
  height: 5px;
  border-top: 1px solid var(--main_color);
  border-right: 1px solid var(--main_color);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.news_sec .pager .page_arrow.next {
  right: 0;
}
.news_sec .pager .page_arrow.next a {
  padding-right: 10px;
}
.news_sec .pager .page_arrow.next a::after {
  content: "";
  position: absolute;
  right: 2px;
  width: 5px;
  height: 5px;
  border-top: 1px solid var(--main_color);
  border-right: 1px solid var(--main_color);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*=======================================
　btn_area
=======================================*/
.news_btn_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 100px;
  margin-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .news_btn_area {
    margin-bottom: 80px;
    gap: 50px;
  }
}
.news_btn_area .arrow_group {
  width: 210px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.news_btn_area .arrow_group .pager {
  content: "";
  position: absolute;
  top: 50%;
  width: 72px;
  height: 42px;
  color: var(--main_color);
  font-weight: 700;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.news_btn_area .arrow_group .pager.prev {
  left: 0;
  padding-left: 10px;
}
.news_btn_area .arrow_group .pager.prev::before {
  content: "";
  position: absolute;
  left: 7px;
  width: 5px;
  height: 5px;
  border-top: 1px solid var(--main_color);
  border-right: 1px solid var(--main_color);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.news_btn_area .arrow_group .pager.next {
  right: 0;
  padding-right: 10px;
}
.news_btn_area .arrow_group .pager.next::after {
  content: "";
  position: absolute;
  right: 7px;
  width: 5px;
  height: 5px;
  border-top: 1px solid var(--main_color);
  border-right: 1px solid var(--main_color);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.news_btn_area .btn {
  width: 335px;
}
@media screen and (max-width: 768px) {
  .news_btn_area .btn {
    width: 250px;
  }
}
.news_btn_area .btn a {
  width: 100%;
  display: block;
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  border-radius: 200px;
  font-size: 17px;
  letter-spacing: 0.1em;
  font-weight: 700;
  position: relative;
}
.news_btn_area .btn a:hover {
  opacity: 1;
}
.news_btn_area .btn a:hover::before {
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .news_btn_area .btn a {
    font-size: 14px;
    padding: 15px 0;
  }
}
.news_btn_area .btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(20, 42, 152);
  background: linear-gradient(63deg, rgb(20, 42, 152) 0%, rgb(42, 71, 217) 60%, rgb(0, 109, 217) 100%);
  border: 3px solid rgba(255, 255, 255, 0.7);
  border-radius: 200px;
  z-index: -1;
  opacity: 1;
  -webkit-transition: opacity 0.8s;
  transition: opacity 0.8s;
}
.news_btn_area .btn a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 109, 217);
  background: linear-gradient(129deg, rgb(0, 109, 217) 0%, rgb(42, 71, 217) 40%, rgb(20, 42, 152) 100%);
  border: 3px solid rgba(255, 255, 255, 0.7);
  border-radius: 200px;
  z-index: -2;
}

/*=======================================
　ニュース詳細
=======================================*/
.news_detail > .content {
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .news_detail > .content {
    margin-top: 80px;
  }
}
.news_detail .day {
  font-size: 15px;
  letter-spacing: 0.1em;
  padding-left: 15px;
  position: relative;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .news_detail .day {
    font-size: 12px;
    margin-bottom: 8px;
  }
}
.news_detail .day::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--main_color);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.news_detail .main_ttl {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--main_color);
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 1024px) {
  .news_detail .main_ttl {
    font-size: 2.9296875vw;
  }
}
@media screen and (max-width: 768px) {
  .news_detail .main_ttl {
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
}/*# sourceMappingURL=news.css.map */
