/****************************************
  ./nakahara_css/archive.css
  created 2026.4.3   updated 2026.4.3
****************************************/

/* --- アーカイブ区切り線 --- */
.bridge-archive-hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 60px 0 40px 0;
}

/* --- タイトル --- */
.bridge-archive-title {
  color: #666;
  font-size: 1.1em;
  text-align: center;
  border-top: none !important;
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* --- サブタイトル --- */
.bridge-archive-sub {
  text-align: center;
  color: #888;
  font-size: 0.85em;
  margin-bottom: 20px;
}

/* --- アーカイブ一覧 --- */
.bridge-archive-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 60px;
}

/* --- アーカイブボタン --- */
.bridge-archive-item {
  padding: 8px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #666;
  text-decoration: none;
  font-size: 0.85em;
  background: #fff;
  transition: 0.3s;
}

/* ホバー時 */
.bridge-archive-item:hover {
  background: rgba(39,154,200,0.08);
  border-color: rgba(39,154,200,1);
  color: rgba(39,154,200,1);
}


