/* =============================
   HERO セクション（共通）
   ※ 既存のまま
============================= */
.hero-section {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  width: 40%;
  background: rgba(255,255,255,0.75);
  z-index: 2;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
  z-index: 3;
  max-width: 540px;
}

.hero-logo {
  width: 120px;
  margin-bottom: 35px;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.3;
  color: #333;
  margin-bottom: 25px;
}

.hero-content p {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  line-height: 1.8;
}

.highlight { color:#f15a24; }


/* =============================
   COLUMN ARCHIVE レイアウト調整
   ※ 背景は変更しない
============================= */

/* 外枠：左右余白を均等に見せる */
.column-archive {
  padding-left: 0;
  padding-right: 0;
}

/* 中央コンテナを明確に中央寄せ */
.column-archive-inner {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* =============================
   タイトル中央寄せ
============================= */

.column-archive-title {
  text-align: center;
  margin-bottom: 48px;
}

.column-archive-title span {
  display: block;
  font-size: 64px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #ff5a00;
  margin-bottom: 6px;
}

.column-archive-title small {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #444;
}

/* =============================
   LIST STYLE（完成形）
============================= */

.column-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.column-item {
  border-bottom: 1px dotted #999;
}

.column-item a {
  display: grid;
  grid-template-columns: 160px 100px 1fr 180px;
  align-items: center;
  gap: 20px;
  padding: 22px 10px;
  color: #333;
  text-decoration: none;
}

.column-date {
  font-size: 16px;
  color: #333;
}

.column-cat {
  font-size: 16px;
  font-weight: 800;
  color: #f15a24;
  letter-spacing: 0.05em;
}

.column-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.column-more {
  text-align: right;
}

.column-more img {
  width: 160px;
  transition: transform .25s ease;
}

.column-item a:hover .column-more img {
  transform: translateX(6px);
}

/* =============================
   ページネーション（MEGA BOXデザイン統一）
============================= */
.case-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 80px auto 100px;
  text-align: center;
}

.case-pagination .page-link a,
.case-pagination .page-link span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #0b2b57;
  background: #fff;
  color: #0b2b57;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.case-pagination .page-link a:hover {
  background-color: #0b2b57;
  color: #fff;
  transform: translateY(-2px);
}

.case-pagination .page-link .current {
  background-color: #0b2b57;
  color: #fff;
  border-color: #0b2b57;
}

/* 矢印（prev / next） */
.case-pagination .prev.page-numbers,
.case-pagination .next.page-numbers {
  font-size: 24px;
  color: #0b2b57;
  border: none;
  width: auto;
  height: auto;
  padding: 0 10px;
  text-decoration: none;
  transition: color 0.25s ease;
}

.case-pagination .prev.page-numbers:hover,
.case-pagination .next.page-numbers:hover {
  color: #0b2b57;
  transform: translateY(-1px);
}
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 768px) {

  .hero-section { height: 60vh; }

  .hero-overlay {
    width: 100%;
    background: rgba(255,255,255,0.85);
  }

  .hero-content {
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    text-align: center;
  }

  .hero-content h1 { font-size: 36px; }
  .hero-content p { font-size: 16px; }

  .column-archive-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .column-archive-title span {
    font-size: 42px;
  }

  .column-archive-title small {
    font-size: 16px;
  }

  /* LIST */
  .column-item a {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 6px;
  }

  .column-date {
    font-size: 13px;
  }

  .column-title {
    font-size: 15px;
    white-space: normal;
  }

  .column-more {
    text-align: left;
  }

  .column-more img {
    width: 110px;
    margin-top: 6px;
  }


  /* pagination */
  .case-pagination .page-link a,
  .case-pagination .page-link span {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}