@charset "UTF-8";

/* =========================================
   News page (Node ID: EzWx5) specific styles
   - 共通(ヘッダー / フッター / サブページタイトル等) は common.css
   ========================================= */


/* =========================================
   News section wrapper
   - 内側コンテンツ幅は .l-inner-sub (common.css) を使用
   ========================================= */
.news {
  background: #FFFFFF;
  padding: 40px 0 80px;
}


/* =========================================
   News list
   ========================================= */
.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.news-item {
  border-bottom: 1px solid #E0E0E0;
}
.news-item__link {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  color: inherit;
  text-decoration: none;
}
.news-item__date {
  flex-shrink: 0;
  font-family: var(--font-en-num);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-meta);
  line-height: 1;
  letter-spacing: 0.02em;
}
.news-item__title {
  margin: 0;
  font-family: var(--font-jp-sans);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.5;
}


/* =========================================
   Pager
   ========================================= */
.pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}
.pager__nav,
.pager__page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #CCCCCC;
  background: transparent;
  color: var(--color-heading);
  font-family: var(--font-en-num);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  line-height: 1;
}
/* アクティブページ */
.pager__page--active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #FFFFFF;
}
/* 矢印 */
.pager__nav svg {
  width: 10px;
  height: 12px;
  color: #666666;
}


/* =========================================
   Hover (PC のみ)
   ========================================= */
@media (hover: hover) {
  .news-item__link,
  .pager__nav,
  .pager__page {
    transition: opacity .4s ease;
  }
  .news-item__link:hover,
  .pager__nav:hover,
  .pager__page:hover {
    opacity: 0.6;
  }
}


/* =========================================
   Responsive
   ========================================= */

/* Tab (820 - 1080) */
@media (max-width: 1080px) {
  .news {
    padding: 32px 0 64px;
  }
  .news-item__link {
    padding: 24px 0;
  }
}

/* narrow Tab (768 - 819) */
@media (max-width: 819px) {
  .news {
    padding: 24px 0 56px;
  }
}

/* SP (〜 767) */
@media (max-width: 767px) {
  .news {
    padding: 16px 0 48px;
  }
  .news-item__link {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 20px 0;
  }
  .news-item__date {
    font-size: 14px;
  }
  .news-item__title {
    font-size: 15px;
    line-height: 1.6;
  }
  .pager {
    margin-top: 28px;
  }
  .pager__nav,
  .pager__page {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
}
