@charset "UTF-8";
.page-news {
  padding: 3rem 0 8rem;
}

.c-heading-secondry {
  font-size: 40px;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-heading-secondry {
    font-size: 50px;
  }
}

.section-news__inner {
  --padding-horizontal-global: 2rem;
  gap: 3rem;
}
@media screen and (min-width: 768px) {
  .section-news__inner {
    width: min(90%, 1200px);
    margin-inline: auto;
    padding: 0;
    max-width: none;
    grid-template-columns: 30rem auto;
    gap: 3rem;
  }
}

.section-title__sticky {
  position: sticky;
  top: 9rem;
  z-index: 10;
}

/* 一覧 */
.news-list__search-area .section-news__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.news-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.news-tabs .c-button-news-tab {
  border-color: var(--color-tab);
  padding: 6px 25px;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: background-color var(--transition-default), color var(--transition-default);
  transition: background-color var(--transition-default), color var(--transition-default);
  text-transform: uppercase;
  color: var(--color-text-default);
  font-size: 14px;
}
.news-tabs .c-button-news-tab.active {
  border-color: var(--color-text-default);
  background-color: var(--color-text-default);
  color: #fff;
  pointer-events: none;
}

.news-search__content-list .news-content-panel {
  display: none;
}
.news-search__content-list .news-content-panel.active {
  display: block;
}

.news-content-panel {
  width: 100%;
  display: grid;
  gap: 2rem;
}

.news-list {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .news-list .news-item:first-of-type {
    border-top: 1px solid var(--color-border-default);
  }
}
.news-list .news-item .news-item__inner {
  padding-block: 1.8rem;
}
@media screen and (min-width: 768px) {
  .news-list .news-item .news-item__inner {
    padding-block: 2.5rem;
  }
}
.news-list .news-item .news-item__date {
  color: var(--color-text-gray-07);
  font-size: 14px;
}
.news-list .news-item .news-item__title {
  margin-top: 1rem;
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .news-list .news-item .news-item__title {
    font-size: 16px;
  }
}

.pager-numeric {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.pager-numeric .pager-numeric {
  max-width: 68%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 2rem 0.9rem;
}

/* 詳細 */
.section-news__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .section-news__text {
    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-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 2rem;
  }
}

.text-link__news {
  font-size: 14px;
  letter-spacing: 0.06em;
  text-decoration-line: underline;
  text-underline-offset: 2px;
}

@media screen and (min-width: 768px) {
  .news-article {
    margin-top: 25px;
  }
}

.news-article__intro .news-article__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
.news-article__intro .news-article__date {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--color-text-gray-07);
  line-height: 1;
}

.news-article__category--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.news-article__category--list .news-article__category--item {
  color: var(--color-text-gray-07);
  padding: 3px 10px;
  border: 1px solid #aaa;
  line-height: 1;
  font-size: 11px;
  letter-spacing: 0.06em;
  border-radius: 2px;
}

.news-article__title {
  margin: 2.2rem 0 4rem;
  font-size: 22px;
  letter-spacing: 0.06em;
  font-weight: var(--fw-medium);
}
@media screen and (min-width: 768px) {
  .news-article__title {
    margin: 2rem 0 3rem;
    font-size: 24px;
  }
}

.news-article__content {
  line-height: 1.8;
  font-size: 14px;
  letter-spacing: 0.06em;
}
.news-article__content p a {
  text-decoration-line: underline;
  text-underline-offset: 2px;
}
.news-article__content p + p {
  margin-top: 3rem;
}