/* ------------------------------
   BASE
------------------------------ */
:root{
  --max-w:1000px;
  --accent:#0077cc;
  --black:#000;
  --muted:#777;
  --bg:#f4f4f4;
  --card:#fff;
}
html,body{
  height:100%;
  margin:0;
  background:var(--bg);
  font-family:"Noto Sans JP",sans-serif;
  color:#222;
  -webkit-font-smoothing:antialiased;
}
.container{
  max-width:var(--max-w);
  margin:32px auto;
  padding:0 16px;
  box-sizing:border-box;
}




/* ★ SNS 横並び */
.header-sns{
 display:flex;
 gap:10px;
}
.header-sns img{
 width:32px;
 height:32px;
 display:block;
}

/* tab menu */
.tab-row{
  max-width:var(--max-w);
  margin:8px auto 0;
  padding:0 16px;
  overflow-x:auto;
  white-space:nowrap;
}
.tab-row::-webkit-scrollbar{display:none}
.tab{
  display:inline-block;
  background:#000;
  color:#fff;
  font-size:11px;
  padding:6px 10px;
  border-radius:6px;
  margin-right:8px;
  text-decoration:none;
}

/* ------------------------------
   BREADCRUMB（パンくず）
------------------------------ */
.breadcrumb {
    font-size: 13px;
    margin-bottom: 20px;
}
.breadcrumb a {
    color: #0077cc;
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}
.breadcrumb span {
    color: #444;
}

/* ------------------------------
   MAIN
------------------------------ */
.main-wrap {
    max-width: 1000px;
    margin: 30px auto 60px;
    padding: 0 15px;
}

.page-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-left: 5px;
}

/* ------------------------------
   INFO LIST
------------------------------ */
.info-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    text-decoration: none;
    color: #222;
    display: block;
}
.info-item {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}
.info-item:last-child {
    border-bottom: none;
}
.info-date {
    font-size: 12px;
    color: #666;
}
.info-text {
    font-size: 14px;
    margin-top: 4px;
}

/* ------------------------------
   PAGINATION
------------------------------ */
.pagination {
    text-align: center;
    margin: 35px 0;
}
.pagination a {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 4px;
    background: #fff;
    color: #000;
    border-radius: 6px;
    border: 1px solid #ddd;
    text-decoration: none;
    font-size: 14px;
}
.pagination a.active {
    background: #000;
    color: #fff;
    border-color: #000;
}
.pagination a:hover {
    background: #000;
    color: #fff;
    border-color: #0077cc;
}