body {
  background-color: #fafafa; /* 柔らかい灰色 */
  color: #333333; /* 目に優しいダークグレーの文字色 */
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.section {
  background-color: #ffffff; /* 白い背景 */
  border-radius: 8px; /* 柔らかさを演出 */
  padding: 1.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* 少しの影 */
}

.hero {
  background-image: url("/images/hero.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero.is-primary .title,
.hero.is-primary .subtitle {
  color: #ffffff;
}

a {
  color: #3273dc;
}

a:hover {
  color: #275a8e; /* 少し落ち着いたブルー */
}

.card {
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.card-content {
  padding: 1.5rem;
}

.card .tags {
  margin-top: 1rem;
}

.navbar {
  background-color: #f8f8f8; /* 背景色を薄いグレーに */
  border-radius: 8px; /* 角を丸くする */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 少し影をつける */
}

.navbar-item {
  font-weight: bold;
  color: #4a4a4a; /* テキスト色を調整 */
}

.navbar-item:hover {
  background-color: #e6e6e6; /* ホバー時に背景色を変更 */
  color: #3273dc; /* ホバー時のテキスト色 */
}
