/* ==============================
   News List
============================== */
.news-article {
  max-width: 760px;
}

.news-page .page-hero {
  padding: 62px 0 86px;
}

.news-page .page-hero h1 {
  font-size: clamp(1.7rem, 5.2vw, 2.2rem);
  line-height: 1.2;
}

.news-page .page-content {
  padding-bottom: 64px;
}


.news-item {
  display: grid;
  grid-template-columns: 1fr 92px;
  gap: 14px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}

.news-item:first-child {
  padding-top: 0;
}

.news-item[target="_blank"] {
  position: relative;
  padding-right: 44px;
}

.news-item[target="_blank"] .news-title::after {
  content: "↗";

  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);

  font-size: 1.35em;
  line-height: 1;

  color: var(--accent);
}

.news-title {
  margin: 0;
  color: var(--text);
  font-size: 0.86rem;
  line-height: 1.65;
  font-weight: 700;
}

.news-item[target="_blank"] .news-title {
  margin-right: 4px;
}

.news-date {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 800;
}

.news-thumb {
  order: 0;
  margin: 0;
}

.news-thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.news-item--no-thumb {
  grid-template-columns: 1fr;
}

.news-item--no-thumb .news-thumb {
  display: none;
}

/* more */
.news-more {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.is-hidden {
  display: none;
}



/* ==============================
   News Detail
============================== */
.news-detail h2 {
  font-size: clamp(1.12rem, 4.8vw, 1.45rem);
  line-height: 1.5;
}

.news-detail .page-actions {
  justify-content: center;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-bottom: 10px;
}

.news-category {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--bg-pale);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
}

.news-excerpt {
  margin-top: 8px;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--subtext);
}

.news-history {
  margin: 28px 0 40px;
  color: var(--subtext);
  font-size: 0.9rem;
  line-height: 1.8;
}

.news-body-block {
  margin: 32px 0;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.75;
  overflow-wrap: break-word;
}

.news-body-block b {
  display: block;
  margin-top: 32px;
  margin-bottom: 6px;
  font-weight: 800;
}

.news-body-block b:first-child {
  margin-top: 0;
  margin-bottom: 0;
}

.news-alert {
  color: var(--text);
  font-weight: 800;
}

.page-list-block {
  margin-top: 36px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.page-list-block h3 {
  color: var(--text);
  margin: 0 0 20px;
  /* font-size: 1rem; */
  /* font-weight: 800; */
  /* line-height: 1.5; */
}

.page-accent-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-accent-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.6;
}

.page-accent-list li::before {
  content: "";
  position: absolute;
  left: 0;
  background: var(--accent);

  /* border-radius: 999px;
  width: 4px;
  height: 1.25em;
  top: 0.18em; */

  border-radius: 50%;
  width: 8px;
  height: 8px;
  top: 0.55em;
}

/* ==============================
   News Table
============================== */

.page-table.news-table {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
  table-layout: fixed;
}

.page-table.news-table tr {
  display: table-row;
  padding: 0;
  border: 0;
}

.page-table.news-table th,
.page-table.news-table td {
  display: table-cell;
  width: auto;
  padding: 14px 6px;
  border-bottom: 1px solid var(--line);

  font-size: 0.88rem;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}

.page-table.news-table th {
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 800;
}

.page-table.news-table td {
  color: var(--subtext);
}

.page-table.news-table .news-alert {
  display: block;
  padding: 8px 0;

  color: var(--text);
  font-size: 0.96rem;
  font-weight: 800;
  text-align: center;
}



/* Tablet */
@media (min-width: 768px) {
  .news-item {
    grid-template-columns: 1fr 120px;
    gap: 20px;
    align-items: center;
    padding: 24px 0;
  }

  .news-title {
    font-size: 1rem;
  }

  .news-thumb {
    order: 0;
  }
}



/* PC */
@media (min-width: 1024px) {}