@charset "UTF-8";
/*----------------------------------------------------
	LAYOUT
----------------------------------------------------*/
.column_blog {
  padding: 100px 0;
  @media screen and (max-width: 767px) {
    padding: 65px 0 70px;
  }
}
.column_blog .lower_inner {
  margin: 0 auto 50px;
}
@media screen and (max-width: 767px) {
  .column_blog .lower_inner {
    margin: 0 auto;
  }
}

/*------ページング------------------------------*/
.paging {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 37px;
}
@media screen and (max-width: 767px) {
  .paging {
    flex-wrap: wrap;
    margin: 20px 0;
    gap: 5px;
  }
}
.paging div {
  min-width: 160px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .paging div {
    width: calc(50% - 10px);
  }
  .paging div.prev {
    order: 2;
    margin-left: auto;
  }
  .paging div.listback {
    order: 3;
    width: 100%;
  }
}
.paging div a {
  display: block;
  padding: 10px 20px;
  background: var(--bgcolor-darkblue);
  color: #fff;
  border: 1px solid var(--bgcolor-darkblue);
}
.paging div.listback a {
  position: relative;
  background: #fff;
  color: var(--bgcolor-darkblue);
}
@media screen and (max-width: 767px) {
  .paging div.listback a {
    width: 100%;
  }
}
.paging a {
  color: var(--bgcolor-darkblue);
  font-weight: 500;
}

/*------ページネーション------------------------------*/
@media screen and (max-width: 820px) {
  .pagination {
    margin-bottom: 30px;
  }
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 70px auto 0;
}

.page_numbers {
  width: 51px;
  height: 51px;
  border-radius: 50%;
  color: var(--fontcolor-darkblue);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  background: transparent;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.page_numbers.current {
  background: var(--fontcolor-darkblue);
  color: #fff;
  pointer-events: none;
}

/* 矢印だけ少し大きめ */
.page_numbers.next,
.page_numbers.prev {
  font-size: 1.7rem;
  font-weight: 300;
}

/* SP */
@media screen and (max-width: 767px) {
  .pagination {
    gap: 8px;
    margin-top: 50px;
  }
  .page_numbers {
    width: 46px;
    height: 46px;
    font-size: 14px;
  }
  .page_numbers.next,
  .page_numbers.prev {
    font-size: 18px;
  }
}
.archive_content {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 23px;
  text-decoration: none;
  border-top: 1px solid #d3d3d3;
}
.archive_content:last-of-type {
  border-bottom: 1px solid #d3d3d3;
}
@media screen and (max-width: 767px) {
  .archive_content {
    padding: 0;
  }
}
.archive_content a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 15px;
  padding: 30px 20px;
}
@media screen and (max-width: 767px) {
  .archive_content a {
    flex-wrap: wrap;
    gap: 5px;
    padding: 25px 13px;
  }
}
.archive_content a .news-item__date {
  color: #55aae1;
}
.archive_content a .news-item__badge {
  background-color: #55aae1;
  color: #fff;
  padding: 4px 12px;
  font-size: 1.4rem;
  border-radius: 30px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .archive_content a .news-item__badge {
    font-size: 1.3rem;
  }
}
.archive_content a .news-item__title {
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .archive_content a .news-item__title {
    width: 100%;
    display: -webkit-box; /* 必須 */
    -webkit-box-orient: vertical; /* 必須 */
    -webkit-line-clamp: 2; /* 行数を制限 */
    overflow: hidden; /* はみ出た部分を非表示 */
  }
}

.news_single_box .news_single_tag {
  display: flex;
  align-items: center;
  gap: 10px;
}
.news_single_box .news_single_tag .news-item__badge {
  background: var(--fontcolor-darkblue);
  color: #fff;
  padding: 3px 15px;
}
.news_single_box .news_single_tag .date {
  padding-bottom: 0;
}
.news_single_box .single_tit {
  font-size: 2.7rem;
  font-weight: bold;
  margin: 25px 0 50px;
}
@media screen and (max-width: 767px) {
  .news_single_box .single_tit {
    margin: 20px 0 30px;
  }
}
.news_single_box h2 {
  font-size: 2rem;
  font-weight: bold;
  border-bottom: solid 3px #ccc;
  position: relative;
  margin-bottom: 17px;
}
.news_single_box h2::after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px var(--fontcolor-darkblue);
  bottom: -3px;
  width: 15%;
}
.news_single_box h3 {
  font-size: 1.8rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  margin-bottom: 17px;
}
.news_single_box h3::before {
  content: "";
  width: 5px;
  height: 42px;
  background: var(--fontcolor-darkblue);
  border-radius: 5px;
  display: block;
  margin-right: 15px;
}
.news_single_box h4 {
  font-size: 1.7rem;
  font-weight: bold;
  color: var(--fontcolor-darkblue);
  margin-bottom: 17px;
}
.news_single_box p {
  padding-bottom: 30px;
}

/* アーカイブ */
.news_list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.news_list__body {
  flex: 1;
  min-width: 0;
  transition: 0.3s ease;
}
.news_list__date {
  display: block;
  margin-bottom: 9px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #A6AFB5;
}
@media (max-width: 767px) {
  .news_list__date {
    font-size: 1.3rem;
  }
}
.news_list__title {
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: #393939;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 767px) {
  .news_list__title {
    font-size: 1.7rem;
  }
}
            .news_list__arrow {
            position: relative;
            flex: 0 0 auto;
            display: inline-flex;
            align-items: center;
            justify-content: center;

            background-image: url("../img/news/news-arrow.png");
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;

            transition: background-image .3s ease;

            width: 24px;
            height: 20px;

            @media (max-width: 820px) {
                width: 20px;
                height: 16px;
            }

            @media (max-width: 767px) {
                width: 15px;
                height: 10px;
            }

            img {
                width: 100%;
                height: 100%;
                display: block;
                transition: opacity .3s ease;
            }

            &::before {
                content: "";
                position: absolute;
                inset: 0;

                background: url("../img/news/news-arrow_blue.svg") center / contain no-repeat;

                opacity: 0;
                transition: opacity .3s ease;
            }
            }
@media (max-width: 767px) {
  .news_list__arrow img {
    width: 15px;
    height: 10px;
  }
}
@media (max-width: 767px) {
  .news_list {
    padding: 17px 14px;
    gap: 16px;
  }
}

.lower_inner > .archive_content:nth-last-of-type(2) {
  border-bottom: 1px solid #d3d3d3;
}/*# sourceMappingURL=style-blog.css.map */