/* ナビゲーションバー */
.navbar {
  display: flex;
  justify-content: space-between; /* 左右にスペースを配置 */
  background-color: red;
  padding: 15px 0;
  font-family: "Helvetica", "Helvetica Neue", Arial, sans-serif;
}

.navbar .left {
  display: flex;
  justify-content: flex-start;
  flex-grow: 1;
}

.navbar .right {
  display: flex; /* PC用のみ */
  justify-content: flex-end;
  flex-grow: 1;
}

@media (max-width: 768px) {
  .navbar .right {
    display: none !important;
    /* ...その他 */
  }
  .navbar .right.active {
    display: flex !important;
    /* ...その他 */
  }
}

.navbar a {
  background-color: white;
  color: black;
  text-decoration: none;
  padding: 10px 20px;
  font-size: 1em;
  font-weight: 300;
  transition: color 0.3s ease;
  margin: 0 10px;
}

.navbar a:hover {
  color: red;
}

/* o8o ロゴのスタイル */
.navbar .left a {
  font-size: 1.2em;
  font-weight: 300;
  color: black;
  text-decoration: none;
  position: relative;
}

/* "o8o" の各文字に対してスタイルを調整 */
.navbar .left a span.o {
  position: relative;
  top: -0.1em; /* 少し持ち上げる */
  font-size: 0.9em; /* 少し小さくして調整 */
}