@charset "UTF-8";
/*-- globalフォルダ内の_scssを記述--*/
/*-- --*/
.l-main#news {
  background-color: #FAFAFA;
}
.l-main#news .news__container {
  padding-top: 63px;
  padding-bottom: 200px;
}
@media screen and (max-width: 750px) {
  .l-main#news .news__container {
    padding-top: 45px;
    padding-bottom: 100px;
  }
}
.l-main#news .c-title .c-title__small {
  margin-top: 1.5em;
}
@media screen and (max-width: 750px) {
  .l-main#news .c-title .c-title__small {
    margin-top: 0.8em;
  }
}
.l-main#news .news-area {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 80px;
  column-gap: 80px;
  margin-top: 64px;
}
@media screen and (max-width: 1000px) {
  .l-main#news .news-area {
    flex-direction: column;
    row-gap: 39px;
    margin-top: 68px;
  }
}
.l-main#news .choice {
  width: 100%;
  max-width: 240px;
}
@media screen and (max-width: 750px) {
  .l-main#news .choice {
    max-width: none;
  }
}
.l-main#news .choice .choice__head {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #002D62;
}
@media screen and (max-width: 750px) {
  .l-main#news .choice .choice__head {
    font-size: 16px;
  }
}
.l-main#news .choice .choice-top {
  display: none;
}
@media screen and (max-width: 750px) {
  .l-main#news .choice .choice-top {
    display: flex;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
    -moz-column-gap: 10px;
    column-gap: 10px;
  }
}
.l-main#news .choice .choice-top .choice-top__head {
  display: inline-block;
}
.l-main#news .choice .choice-top .choice-top__icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  position: relative;
}
.l-main#news .choice .choice-top .choice-top__icon::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: #002D62;
  -webkit-mask-image: url("/assets/image/icon/icon-select.svg");
  mask-image: url("/assets/image/icon/icon-select.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.l-main#news .choice .choice-top.is-open .choice-top__icon::before, .l-main#news .choice .choice-top.is-open .choice-top__icon::after {
  width: 17px;
  height: 2.5px;
  border-radius: 5px;
  position: absolute;
  top: 55%;
  left: 50%;
}
.l-main#news .choice .choice-top.is-open .choice-top__icon::before {
  -webkit-mask-image: none;
  mask-image: none;
  transform: translate(-50%, -50%) rotate(45deg);
}
.l-main#news .choice .choice-top.is-open .choice-top__icon::after {
  content: "";
  display: inline-block;
  transform: translate(-50%, -50%) rotate(-45deg);
  background-color: #002D62;
}
@media screen and (max-width: 750px) {
  .l-main#news .choice .choice-content {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .l-main#news .choice .choice-content .choice-content-cat {
    margin-top: 34px;
    padding-top: 21px;
    border-top: 1px solid #D9D9D9;
  }
}
.l-main#news .choice .choice-content .choice-content-cat .choice-content-cat__area {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 16px;
  margin-left: 4px;
}
@media screen and (max-width: 750px) {
  .l-main#news .choice .choice-content .choice-content-cat .choice-content-cat__area {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: auto;
    margin-top: 19px;
    margin-left: 0px;
    row-gap: 20px;
  }
}
.l-main#news .choice .choice-content .choice-content-cat .radio-box {
  display: flex;
  align-items: center;
  -moz-column-gap: 13px;
  column-gap: 13px;
  margin-top: 22px;
}
@media screen and (max-width: 750px) {
  .l-main#news .choice .choice-content .choice-content-cat .radio-box {
    width: 50%;
    margin-top: 0;
  }
}
.l-main#news .choice .choice-content .choice-content-cat .radio-box:first-child {
  margin-top: 0;
}
.l-main#news .choice .choice-content .choice-content-cat .radio-box .radio-box__input {
  display: inline-block;
  width: 20px;
  height: 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  cursor: pointer;
}
.l-main#news .choice .choice-content .choice-content-cat .radio-box .radio-box__input::before, .l-main#news .choice .choice-content .choice-content-cat .radio-box .radio-box__input::after {
  content: "";
  display: inline-block;
  border-radius: 50%;
  position: absolute;
}
.l-main#news .choice .choice-content .choice-content-cat .radio-box .radio-box__input::before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 1px solid #D9D9D9;
  background-color: #ffffff;
}
.l-main#news .choice .choice-content .choice-content-cat .radio-box .radio-box__input:checked::after {
  width: 12px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #002D62;
}
.l-main#news .choice .choice-content .choice-content-cat .radio-box .radio-box__text {
  display: inline-block;
  font-size: 16px;
  line-height: 1.5;
  color: #002D62;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .l-main#news .choice .choice-content .choice-content-cat .radio-box .radio-box__text {
    font-size: 14px;
  }
}
.l-main#news .choice .choice-content .choice-content-cat .radio-box .radio-box__text.radio-box__text--indent {
  text-indent: -0.6em;
}
.l-main#news .choice .choice-content .choice-content-select {
  margin-top: 32px;
}
.l-main#news .choice .choice-content .choice-content-select .select-box {
  width: 100%;
  margin-top: 22px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .l-main#news .choice .choice-content .choice-content-select .select-box {
    margin-top: 10px;
  }
}
.l-main#news .choice .choice-content .choice-content-select .select-box::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 16px;
  background-color: #fff;
  -webkit-mask-image: url("/assets/image/icon/icon-arrow.svg");
  mask-image: url("/assets/image/icon/icon-arrow.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%) rotate(90deg);
  background-color: #002D62;
  pointer-events: none;
}
@media screen and (max-width: 750px) {
  .l-main#news .choice .choice-content .choice-content-select .select-box::before {
    right: 24px;
  }
}
.l-main#news .choice .choice-content .choice-content-select .select-box .select-box__input {
  display: block;
  font-size: 16px;
  line-height: 1.5;
  width: 100%;
  padding: 0.75em 1.8em 0.75em 1em;
  color: #002D62;
  background-color: #ffffff;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .l-main#news .choice .choice-content .choice-content-select .select-box .select-box__input {
    font-size: 14px;
    padding: 1.1em 2em 1em 1.5em;
  }
}
.l-main#news .article {
  width: 100%;
}
.l-main#news .article .l-news-box .l-news-box__list {
  max-width: 816px;
}
.l-main#news .article .article-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 7px;
  column-gap: 7px;
  padding-top: 20px;
  padding-bottom: 100px;
  background-color: #ffffff;
}
@media screen and (max-width: 750px) {
  .l-main#news .article .article-pagination {
    -moz-column-gap: 2px;
    column-gap: 2px;
    padding-top: 40px;
    padding-bottom: 0;
    background-color: transparent;
  }
}
.l-main#news .article .article-pagination .article-pagination-item__link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 2;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  color: #002D62;
  transition: 0.3s ease;
  position: relative;
}
@media screen and (max-width: 750px) {
  .l-main#news .article .article-pagination .article-pagination-item__link {
    font-size: 14px;
  }
}
.l-main#news .article .article-pagination .article-pagination-item__link.article-pagination-item__link--active {
  background-color: #002D62;
  color: #ffffff;
  border: 1px solid #002D62;
}
.l-main#news .article .article-pagination .article-pagination-item__link.article-pagination-item__link--no {
  pointer-events: none;
}
.l-main#news .article .article-pagination .arrow::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 16px;
  background-color: #fff;
  -webkit-mask-image: url("/assets/image/icon/icon-arrow.svg");
  mask-image: url("/assets/image/icon/icon-arrow.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: #002D62;
}
.l-main#news .article .article-pagination .arrow.arrow--prev {
  margin-right: 30px;
}
@media screen and (max-width: 750px) {
  .l-main#news .article .article-pagination .arrow.arrow--prev {
    margin-right: 0;
    justify-content: flex-start;
  }
}
.l-main#news .article .article-pagination .arrow.arrow--prev::before {
  transform: scale(-1, 1);
}
.l-main#news .article .article-pagination .arrow.arrow--next {
  margin-left: 30px;
}
@media screen and (max-width: 750px) {
  .l-main#news .article .article-pagination .arrow.arrow--next {
    margin-left: 0;
    justify-content: flex-end;
  }
}
.l-main#news .article .article-pagination .arrow.arrow--active {
  pointer-events: none;
}
.l-main#news .article .article-pagination .arrow.arrow--active::before {
  background-color: rgba(0, 45, 98, 0.25);
}

.l-main#news-detail {
  background-color: #FAFAFA;
}
.l-main#news-detail .news-detail__container {
  padding-top: 69px;
  padding-bottom: 200px;
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 800px) {
  .l-main#news-detail .news-detail__container {
    margin-right: 80px;
    margin-left: 80px;
  }
}
@media screen and (max-width: 1000px) {
  .l-main#news-detail .news-detail__container {
    margin-right: 45px;
    margin-left: 45px;
  }
}
@media screen and (max-width: 750px) {
  .l-main#news-detail .news-detail__container {
    margin-right: 30px;
    margin-left: 30px;
  }
}
@media screen and (max-width: 750px) {
  .l-main#news-detail .news-detail__container {
    padding-top: 45px;
    padding-bottom: 100px;
  }
}
.l-main#news-detail .head .head__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #002D62;
}
@media screen and (max-width: 750px) {
  .l-main#news-detail .head .head__title {
    font-size: 16px;
    line-height: 2;
  }
}
.l-main#news-detail .head .head-info {
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
  column-gap: 20px;
  margin-top: 22px;
}
@media screen and (max-width: 750px) {
  .l-main#news-detail .head .head-info {
    -moz-column-gap: 16px;
    column-gap: 16px;
    margin-top: 11px;
  }
}
.l-main#news-detail .head .head-info .head-info__date {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 750px) {
  .l-main#news-detail .head .head-info .head-info__date {
    font-size: 12px;
  }
}
.l-main#news-detail .head .head__thumb {
  margin-top: 50px;
}
@media screen and (max-width: 750px) {
  .l-main#news-detail .head .head__thumb {
    margin-top: 40px;
  }
}
.l-main#news-detail .news-detail-pdf {
  margin-top: 40px;
}
@media screen and (max-width: 750px) {
  .l-main#news-detail .news-detail-pdf {
    margin-top: 30px;
  }
}
.l-main#news-detail .news-detail-pdf .news-detail-pdf__link {
  display: inline-block;
  font-size: 16px;
  line-height: 3;
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media screen and (max-width: 750px) {
  .l-main#news-detail .news-detail-pdf .news-detail-pdf__link {
    font-size: 14px;
  }
}
.l-main#news-detail .content {
  margin-top: 10px;
}
.l-main#news-detail .content img,
.l-main#news-detail .content p,
.l-main#news-detail .content a {
  margin-top: 40px;
}
@media screen and (max-width: 750px) {
  .l-main#news-detail .content img,
  .l-main#news-detail .content p,
  .l-main#news-detail .content a {
    margin-top: 30px;
  }
}
.l-main#news-detail .content p {
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 750px) {
  .l-main#news-detail .content p {
    font-size: 14px;
  }
}
.l-main#news-detail .content a {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  padding: 0.2em 3.3em 0.35em 1.5em;
  border: 2px solid currentColor;
  border-radius: 2em;
  position: relative;
  transition: color 0.3s ease, background-color 0.3s ease;
  color: #002D62;
  border-color: #002D62;
  background-color: transparent;
}
.l-main#news-detail .content a::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 16px;
  background-color: #fff;
  -webkit-mask-image: url("/assets/image/icon/icon-arrow.svg");
  mask-image: url("/assets/image/icon/icon-arrow.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: currentColor;
  position: absolute;
  position: absolute;
  top: 50%;
  right: 1.3em;
  transform: translateY(-50%);
}
@media (hover: hover) and (pointer: fine) {
  .l-main#news-detail .content a:hover {
    color: #FAFAFA;
    background-color: #002D62;
  }
}
.l-main#news-detail .bottom {
  padding-top: 60px;
  margin-top: 60px;
  border-top: 1px solid #D9D9D9;
}
@media screen and (max-width: 750px) {
  .l-main#news-detail .bottom {
    padding-top: 80px;
    margin-top: 80px;
  }
}
.l-main#news-detail .bottom .c-btn01 {
  margin-inline: auto;
}
/*# sourceMappingURL=news.css.map */
