@charset "UTF-8";
/**** 共通カラー ****/
/* --------------------------------------------------
 NEWS
-------------------------------------------------- */
.page {
  background-color: #f7f7f7;
}
.page .section-mv {
  background-image: url(../image/common/page-cover.webp);
}
@media screen and (max-width: 576px) {
  .page .section-mv {
    background-image: url(../image/common/page-cover-sp.webp);
  }
  .page .section-mv .breadcrumb .breadcrumb-list {
    align-items: flex-start;
    line-height: 1.3;
  }
  .page .section-mv .tit-wrap h1 {
    line-height: 1.3;
  }
}

.section-news {
  padding-top: 100px;
  padding-bottom: 200px;
}
@media screen and (max-width: 768px) {
  .section-news {
    padding-bottom: 100px;
  }
}
.section-news .news-flex {
  justify-content: space-between;
  align-items: self-start;
}
@media screen and (max-width: 768px) {
  .section-news .news-flex {
    flex-direction: column;
  }
}
.section-news .cat-wrap {
  background: #005bbb;
  border-radius: 10px;
  color: #ffffff;
  padding: 15px 20px;
  width: 180px;
}
@media screen and (max-width: 768px) {
  .section-news .cat-wrap {
    padding: 15px 10px;
    margin-bottom: 30px;
  }
}
.section-news .cat-wrap h2 {
  font-size: clamp(1.6rem, 1.8vw, 1.8rem);
}
@media screen and (max-width: 768px) {
  .section-news .cat-wrap h2 {
    font-size: 16px;
  }
}
.section-news .cat-wrap h2 {
  color: #ffffff;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: solid 1px #ffffff;
}
.section-news .list_cat li {
  padding-left: 15px;
  position: relative;
  margin-bottom: 20px;
}
.section-news .list_cat li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .section-news .list_cat li {
    padding-left: 10px;
    margin-bottom: 16px;
  }
}
.section-news .list_cat li:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 5px;
  display: block;
  position: absolute;
  background-color: #ffffff;
  left: 0;
  top: 50%;
  margin-top: -5px;
}
@media screen and (max-width: 768px) {
  .section-news .list_cat li:before {
    width: 8px;
    height: 8px;
  }
}
.section-news .list_cat li + li {
  margin-top: 7px;
}
.section-news .content {
  width: 100%;
}
.section-news .list_news_wrap {
  width: 62.5vw;
  max-width: 900px;
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .section-news .list_news_wrap {
    width: 100%;
  }
}
.section-news .article_news {
  border-top: solid 1px #181919;
}
.section-news .article_news:last-child {
  border-bottom: solid 1px #181919;
}
.section-news .article_news a {
  display: flex;
  align-items: center;
  padding: 30px 15px 30px 15px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .section-news .article_news a {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0;
  }
}
.section-news .article_news a .info {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .section-news .article_news a .info {
    flex-wrap: wrap;
  }
}
.section-news .article_news a .date {
  display: inline-block;
  margin-right: 14px;
}
@media screen and (max-width: 768px) {
  .section-news .article_news a .date {
    font-size: 14px;
    margin-right: 8px;
  }
}
.section-news .article_news a .cat {
  display: inline-block;
  background-color: #005bbb;
  color: #ffffff;
  height: 30px;
  line-height: 30px;
  margin-right: 40px;
  padding: 0 20px;
  border-radius: 15px;
}
@media screen and (max-width: 768px) {
  .section-news .article_news a .cat {
    height: 22px;
    line-height: 22px;
    margin-right: 0;
    padding: 0 15px;
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .section-news .article_news a .title {
    margin-top: 16px;
    font-size: 14px;
  }
}
.section-news .article_news a .arrow_c_b {
  background-color: #005bbb;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  width: 33px;
  aspect-ratio: 1;
  transition: 0.3s;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .section-news .article_news a .arrow_c_b {
    width: 24px;
    right: 0;
  }
}
.section-news .article_news a .arrow_c_b::before {
  content: "";
  position: absolute;
  background-image: url(../image/common/arrow-w.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  aspect-ratio: 1;
  left: 6px;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  z-index: 2;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .section-news .article_news a .arrow_c_b::before {
    width: 10px;
  }
}
.section-news .article_news a .arrow_c_b::after {
  content: "";
  position: absolute;
  background-image: url(../image/common/arrow-w.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  aspect-ratio: 1;
  left: -40px;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  z-index: 2;
  transition: 0.3s;
}
.section-news .article_news a:hover .arrow_c_b::before {
  left: 40px;
}
.section-news .article_news a:hover .arrow_c_b::after {
  left: 6px;
}
.section-news .link_arrow_s {
  width: 236px;
  height: 50px;
  color: #ffffff;
  padding-left: 30px;
  line-height: 50px;
  position: relative;
  background-color: #005bbb;
  border-radius: 10px;
  margin-right: 0;
  margin-left: auto;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .section-news .link_arrow_s {
    margin-top: 40px;
  }
}
.section-news .link_arrow_s .arrow {
  position: absolute;
  width: 25px;
  aspect-ratio: 1;
  background-color: #ffffff;
  border-radius: 50%;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
  overflow: hidden;
}
.section-news .link_arrow_s .arrow::before {
  display: inline-block;
  content: "";
  position: absolute;
  background-image: url(../image/common/arrow-blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 12px;
  aspect-ratio: 1;
  top: 0;
  left: 5px;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: 0.3s;
}
.section-news .link_arrow_s .arrow::after {
  display: inline-block;
  content: "";
  position: absolute;
  background-image: url(../image/common/arrow-blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 12px;
  aspect-ratio: 1;
  top: 0;
  left: 5px;
  right: 0;
  bottom: 0;
  margin: auto;
  transform: translateX(-30px);
  transition: 0.3s;
}
.section-news .link_arrow_s:hover .arrow::before {
  transform: translateX(30px);
}
.section-news .link_arrow_s:hover .arrow::after {
  transform: translateX(0);
}

.wp-pagenavi {
  margin-top: 160px;
  text-align: center;
}
.wp-pagenavi span,
.wp-pagenavi a {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  text-align: center;
  line-height: 48px;
  color: #ffffff;
  display: inline-block;
  margin: 0 3px;
}
@media screen and (max-width: 768px) {
  .wp-pagenavi span,
  .wp-pagenavi a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
  }
}
.wp-pagenavi span {
  background: #005bbb;
}
.wp-pagenavi a {
  background-color: #053467;
  color: #ffffff;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .wp-pagenavi {
    margin-top: 40px;
  }
}

/* ------------------------------
 SINGLE
------------------------------ */
.section-post {
  padding-top: 100px;
  padding-bottom: 200px;
  background-color: #f7f7f7;
}
@media screen and (max-width: 768px) {
  .section-post {
    padding-bottom: 120px;
  }
}
.section-post .inner {
  background-color: #ffffff;
  border-radius: 60px;
  padding-top: 60px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .section-post .inner {
    border-radius: 30px;
    padding-top: 30px;
    padding-bottom: 50px;
  }
}
.section-post .inner-post {
  max-width: 750px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .section-post .inner-post {
    padding: 15px;
  }
}
.section-post .inner-post h1 {
  font-weight: bold;
  font-size: clamp(2rem, 2.3vw, 3rem);
  color: #005bbb;
  max-width: 22em;
  line-height: 1.3;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .section-post .inner-post h1 {
    margin-bottom: 20px;
  }
}
.section-post .inner-post .content {
  line-height: 1.8;
}
.section-post .inner-post .content p {
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  margin-bottom: 40px;
}
.section-post .inner-post h2 {
  font-size: clamp(1.8rem, 2.3vw, 2.4rem);
  font-weight: bold;
  margin-bottom: 40px;
  color: #005bbb;
}
@media screen and (max-width: 768px) {
  .section-post .inner-post h2 {
    margin-bottom: 20px;
  }
}
.section-post .inner-post h3 {
  font-size: clamp(1.6rem, 1.8vw, 1.8rem);
  font-weight: bold;
  color: #005bbb;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .section-post .inner-post h3 {
    margin-bottom: 20px;
  }
}
.section-post .info-flex {
  display: flex;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  margin-bottom: 16px;
}
.section-post .info-flex .cat {
  margin-right: 30px;
}
.section-post .link_arrow_s {
  width: 236px;
  height: 50px;
  color: #ffffff;
  padding-left: 30px;
  line-height: 50px;
  position: relative;
  background-color: #005bbb;
  border-radius: 10px;
  margin: auto;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .section-post .link_arrow_s {
    margin-top: 40px;
  }
}
.section-post .link_arrow_s .arrow {
  position: absolute;
  width: 25px;
  aspect-ratio: 1;
  background-color: #ffffff;
  border-radius: 50%;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
  overflow: hidden;
}
.section-post .link_arrow_s .arrow::before {
  display: inline-block;
  content: "";
  position: absolute;
  background-image: url(../image/common/arrow-blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 12px;
  aspect-ratio: 1;
  top: 0;
  left: 5px;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: 0.3s;
}
.section-post .link_arrow_s .arrow::after {
  display: inline-block;
  content: "";
  position: absolute;
  background-image: url(../image/common/arrow-blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 12px;
  aspect-ratio: 1;
  top: 0;
  left: 5px;
  right: 0;
  bottom: 0;
  margin: auto;
  transform: translateX(-30px);
  transition: 0.3s;
}
.section-post .link_arrow_s:hover .arrow::before {
  transform: translateX(30px);
}
.section-post .link_arrow_s:hover .arrow::after {
  transform: translateX(0);
}
.section-post img {
  max-width: 100%;
  width: 100%;
}/*# sourceMappingURL=news.css.map */