body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  padding: 20px;
}

#searchBox {
  padding: 8px;
  width: 250px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 20px;
}

#wordList,
#wordList li,
#wordList li * {
  list-style: none;
  padding: 0;
  margin: 0;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

#wordList li {
  padding: 10px 12px;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
  transition: background-color 0.2s ease;
}

#wordList li:hover {
  background-color: #f0f0f0;
}

#wordList li strong {
  font-size: 16px;
  color: #333;
}

#wordList li span {
  font-size: 14px;
  color: #666;
  margin-left: 8px;
}

.title-with-icon {
  display: flex;
  align-items: center;
  gap: 8px; /* アイコンとの間隔 */
  font-size: 24px;
}

.title-with-icon .icon {
  width: 40px;
  height: 40px;
}

.credit {
  font-size: 0.75rem; /* 小さめの文字サイズ */
  color: #666;         /* 控えめなグレー色 */
  font-style: italic;  /* 斜体で控えめな印象に */
}

.site-footer {
  background-color: #f0f0f0;
  padding: 2em 1em;
  font-family: "Segoe UI", sans-serif;
  color: #333;
}

/*
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f5f5f5;
  padding: 20px;
}

#searchBox {
  padding: 8px;
  width: 250px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 20px;
}
*/