@charset "utf-8";

/* ====== 共通のページ骨格 ====== */
.page-hero{
  padding: 56px 0 28px;
  background: #f6f7fb;
}
.page-hero-en{
  letter-spacing: .18em;
  font-weight: 700;
  font-size: 12px;
  opacity: .7;
  margin: 0 0 6px;
}
.page-hero-title{
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 800;
}
.page-hero-lead{
  margin: 0;
  opacity: .85;
  max-width: 54em;
}

.page-toolbar{
  padding: 18px 0;
  border-bottom: 1px solid rgba(15, 23, 42, .08);
  background: #fff;
}
.toolbar-inner{
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.toolbar-left{
  display: flex;
  align-items: center;
  gap: 10px;
}
.toolbar-label{
  font-size: 13px;
  opacity: .8;
}
.toolbar-select{
  height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, .18);
  background: #fff;
}
.toolbar-search{
  display: flex;
  align-items: center;
  gap: 8px;
}
.toolbar-input{
  width: min(360px, 72vw);
  height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, .18);
}
.toolbar-btn{
  width: 44px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, .18);
  background: #fff;
  cursor: pointer;
}

.page-section{
  padding: 44px 0 64px;
}
.list-head{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.section-title{
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}
.section-note{
  margin: 0;
  font-size: 13px;
  opacity: .75;
}

/* ====== NEWS LIST ====== */
.news-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.news-item{
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}
.news-link{
  display: block;
  padding: 16px 16px 14px;
  color: inherit;
  text-decoration: none;
  transition: .18s ease;
}
.news-link:hover{
  transform: translateY(-1px);
}
.news-meta{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.news-date{
  font-size: 13px;
  opacity: .75;
}
.news-tag{
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, .06);
}
.news-tag.is-important{ background: rgba(220, 38, 38, .10); }
.news-tag.is-event{ background: rgba(2, 132, 199, .10); }
.news-tag.is-campaign{ background: rgba(16, 185, 129, .12); }
.news-tag.is-close{ background: rgba(99, 102, 241, .10); }

.news-title{
  margin: 0 0 6px;
  font-weight: 800;
  line-height: 1.45;
}
.news-excerpt{
  margin: 0;
  opacity: .8;
  line-height: 1.7;
  font-size: 14px;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ====== Pagination ====== */
.pagination{
  margin-top: 26px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.page-btn,
.page-num{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  min-width: 40px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, .14);
  background: #fff;
  color: inherit;
  text-decoration: none;
}
.page-num.is-current{
  border-color: rgba(15, 23, 42, .42);
  font-weight: 800;
}
.page-btn.is-disabled{
  opacity: .45;
  pointer-events: none;
}
.page-dots{
  opacity: .6;
}

/* ====== SR only ====== */
.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ====== SP ====== */
@media (max-width: 768px){
  .page-hero-title{ font-size: 24px; }
  .news-link{ padding: 14px; }
  .toolbar-input{ width: min(520px, 70vw); }
}