@charset "utf-8";

/* カウンター（genryu.org風：1桁ボックス） */
.access_counter {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0.5em;
  background: #fff;
}

.access_counter .title {
  font-size: 90%;
  white-space: nowrap;
}

/* 数字の並び */
.access_counter .numbers {
  display: inline-flex;
  gap: 6px;
}

/* 1桁ボックス */
.access_counter .numbers .number {
  display: inline-block;
  width: 32px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  background: #000;
  color: #fff;
  border-radius: 4px;
}

/* もし昔の<img>が残ってても表示されないようにする（保険） */
.access_counter img {
  display: none;
}
