/* バイト戦士イエロー — index.css */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: Helvetica, Verdana, "Hiragino Sans", "Meiryo", sans-serif;
  background: #fffde8;
  color: #1a1400;
  font-size: 14px;
  line-height: 1.7;
}
.site-header {
  background: #f5c800;
  border-bottom: 3px solid #f5c800;
  padding: 14px 20px;
}
.site-header h1 { font-size: 22px; font-weight: bold; color: #1a1400; }
.site-header h1 a { color: inherit; text-decoration: none; }
.site-header p  { font-size: 12px; color: #5c4d00; margin-top: 2px; }
.container { max-width: 900px; margin: 0 auto; padding: 14px 10px; }
.updated { text-align: right; font-size: 0.78rem; color: #877a30; padding: 4px 0 8px; }
.thread-list { list-style: none; background: #ffffff; border: 1px solid #e8d050; border-radius: 2px; }
.thread-item { border-bottom: 1px solid #fff9cc; }
.thread-item:last-child { border-bottom: none; }
.thread-item > a {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 20px 22px; text-decoration: none; color: #1a1400;
}
.thread-item > a:hover { background: #fffbee; }
.thread-title {
  width: 100%; font-size: 16px; font-weight: bold; line-height: 1.9;
  border-left: 4px solid #f5c800; padding-left: 8px;
}
.thread-date { font-size: 10.5px; color: #877a30; white-space: nowrap; align-self: flex-end; margin-top: 4px; }
.no-articles { padding: 24px; text-align: center; color: #877a30; }
.pagination {
  display: flex; justify-content: space-between; align-items: stretch;
  padding: 16px 0; margin-top: 12px; gap: 10px;
}
.page-card {
  display: flex; flex-direction: column; justify-content: center;
  flex: 1; padding: 10px 16px; border: 1px solid #e8d050;
  border-radius: 6px; background: #fff9cc; text-decoration: none; color: #1a1400;
}
.page-card:hover { background: #f5c800; color: #1a1400; }
.page-empty { flex: 1; }
.page-direction { font-size: 0.85rem; font-weight: bold; }
.page-label { font-size: 0.72rem; color: #877a30; margin-top: 3px; }
.page-next { text-align: right; }
.page-info { flex: 0 0 auto; align-self: center; color: #877a30; font-size: 0.82rem; white-space: nowrap; }
.site-footer { text-align: center; padding: 16px; color: #877a30; font-size: 0.8rem; }

/* モバイルバナー（なんjバイト戦士） */
@media (max-width: 600px) {
  .site-header {
    padding: 0;
    background: #f5c800;
    text-align: center;
  }
  .site-header h1 {
    background: url(../images/banner.png) no-repeat center / contain;
    height: 90px;
    margin: 0 auto;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
  .site-header p { display: none; }
  .container { padding: 10px 6px; }
  .thread-item > a { padding: 14px 12px; }
  .thread-title { font-size: 14.5px; }
  .pagination { gap: 6px; }
  .page-card { padding: 8px 10px; }
}