/* ========================================
   📚 tea-dictionary.css ver.1.1 2025.07.20
   辞典ページ固有のスタイル
   ======================================== */

/* 辞典ナビゲーションボタン */
.dictionary-buttons {
  display: flex;
  justify-content: center;
  gap: 1em;
  margin: 1.5em auto;
}

.dictionary-btn {
  text-decoration: none;
  padding: 0.6em 1.2em;
  border-radius: 8px;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.dictionary-btn:hover {
  background-color: #e0e0e0;
}

/* ことば辞典サイドバーの位置 */
.content-area {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.site-main {
  flex: 1 1 70%;
  min-width: 0;
}

.site-sidebar {
  flex: 0 0 28%;
  min-width: 250px;
}

/*ことば辞典アーカイブCard形式*/
.card {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: #fff;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/*タグ一覧の装飾等*/
body.tax-dictionary_tag .archive-header {
  display: none;
}