/* =========================================================
   News Archive (page) - /news/
   ※ style.css とは別管理
========================================================= */

/* /news/ でもヘッダーは共通と同じく固定にする */
.l-header{
  position: fixed;   /* style.cssに合わせる */
  inset: 0 0 auto;
  z-index: 1000;     /* style.cssと同じでOK */
}

/* ハンバーガーボタン実体に当てる */
.header-menu{
  position: relative;
  z-index: 1001;
}
.news-hero {
  padding: 64px 0 24px;
}

.news-hero-title {
  margin-top: 6px;
}

/* 一覧 */
.news-archive {
  padding: 24px 0 72px;
}

.news-archive-year {
  margin: 40px 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,.12);
  font-weight: 700;
}

.news-archive-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-archive-item {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.news-archive-date {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.news-archive-text {
  line-height: 1.7;
}

.news-archive-link {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .news-hero { padding: 56px 0 18px; }
  .news-archive-item { grid-template-columns: 1fr; gap: 6px; }
}

.news .news__text a,
.news a.news__link {
  font-size: inherit !important;
  line-height: inherit !important;
}

.news .news-archive-link {
  font-size: 1rem !important; /* or 1rem !important; */
}

/* style.css 側の .news-archive-link(font-size:0.9rem) を /news/ では上書き */
.news-archive-link {
  font-size: 1.1rem !important;
  line-height: inherit;
}
.page-news .news-archive-link {
  font-size: 1.1rem !important;
}

/*news_list*/
.news_box .info time {
  margin-bottom: 0px;
  width: 167px;
  white-space: nowrap;
}

.news_box .info .tags {
  margin-bottom: 0px;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  width: 123px;
}

.news_box .info .tags>li{
  min-width: 103px;
  height: 28px;
  line-height: 28px;
  color: #fff;
  white-space: nowrap;
  background: #D76C25;
  text-align: center;
  font-family: var(--sans);
  font-size: 16px;
}

.news_box .info{
  display: flex;
  gap:0px;
  align-items: center;
}

.section_news .news_list{
  list-style: none;
  padding: 0;
  margin: -20px 0 0;
}

.section_news .news_list>li{
  border-bottom: 1px solid #D0D0D0;
  font-size: 1.2rem;
}

.section_news .news_list>li>a{
 display: flex;
 padding: 20px 0;
 flex-wrap:wrap;
 align-items: flex-start;
}

.section_news .news_list>li>a p{
  margin: 0;
  width: calc(100% - 167px - 123px);
}
@media screen and (max-width: 768px) {
    .section_news .news_list>li{
        font-size:1.0rem;
    }
  .section_news .news_list>li>a p{
    margin: 0;
    margin-top: 10px;
    width: 100%;
  }
}






