/* 🌍 都道府県ページ全体ラッパー */
.prefecture-archive {
  padding: 2rem;
  max-width: 100%;
  box-sizing: border-box;
  background: #fefefe;
  font-family: 'DotGothic16', sans-serif !important; /* ✅ ドット風フォントに強制適用 */
}

/* 🏷️ ページタイトル */
.archive-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 700;
  text-align: center;
  color: #333;
  border-bottom: 2px dashed #ff7f50;
  padding-bottom: 0.5rem;
  font-family: 'DotGothic16', sans-serif !important; /* ✅ 明示的に指定 */
}

/* 🏙️ 市町村ブロック */
.city-section {
  margin-bottom: 2.5rem;
  background-color: #fff;
  padding: 1.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-left: 6px solid #ff7f50;
  transition: box-shadow 0.3s ease;
  font-family: 'DotGothic16', sans-serif !important; /* ✅ セクション内全体にも適用 */
}

.city-section:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* 🏷️ 市町村名 */
.city-heading {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid #ff7f50;
  text-align: left;
  color: #222;
  font-family: 'DotGothic16', sans-serif !important;
}

/* 📦 各市の投稿リスト */
.city-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1rem;
}

/* 🧾 カード1枚 */
.post-card {
  width: calc(33.333% - 1rem);
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border: 1px solid #ddd;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  font-family: 'DotGothic16', sans-serif !important; /* ✅ カード内にもフォント指定 */
}

.post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* 📝 カードタイトル */
.post-card h3 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  line-height: 1.5;
  color: #333;
  font-family: 'DotGothic16', sans-serif !important;
}

.post-card h3 a {
  text-decoration: none;
  color: #007acc;
  font-weight: 600;
  font-family: 'DotGothic16', sans-serif !important;
}

.post-card h3 a:hover {
  text-decoration: underline;
  color: #005f99;
}

/* ℹ️ カード内のメタ情報 */
.post-card .post-meta {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.6;
  background: #fff;
  border-top: 1px dashed #ddd;
  margin-top: 0.75rem;
  padding-top: 0.5rem;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  font-family: 'DotGothic16', sans-serif !important;
}

/* 📱 スマホ対応 */
@media screen and (max-width: 768px) {
  .post-card {
    width: 100% !important;
  }
  .city-section {
    padding: 1rem;
  }
}
