.access-counter {
  box-sizing: border-box;
  width: 100%;
  margin: 0 0 20px;
  overflow: hidden;
  border: 1px solid #c9cfe6;
  border-radius: 4px;
  background: #fff;
  color: #000;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  line-height: 1.5;
}

.access-counter *,
.access-counter *::before,
.access-counter *::after {
  box-sizing: border-box;
}

.access-counter__title {
  margin: 0 !important;
  padding: 9px 12px !important;
  background: linear-gradient(#0e28ac, #091a71);
  color: #fff !important;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-align: center;
}

.access-counter__list {
  margin: 0;
  padding: 6px 12px 4px;
}

.access-counter__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid #e4e7f2;
}

.access-counter__row:last-child {
  border-bottom: 0;
}

.access-counter__row dt,
.access-counter__row dd {
  margin: 0;
  padding: 0;
}

.access-counter__row dt {
  color: #333;
  font-size: 13px;
}

.access-counter__row dd {
  color: #0e28ac;
  font-size: 18px;
  font-weight: bold;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.03em;
}

.access-counter__row--total dd {
  font-size: 21px;
}

.access-counter__note {
  margin: 0 !important;
  padding: 7px 10px 9px !important;
  background: #f5f6fb;
  color: #555 !important;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.access-counter__note--error {
  color: #9d1c1c !important;
}

@media screen and (max-width: 800px) {
  .access-counter {
    width: 50%;
  }
}

@media screen and (max-width: 480px) {
  .access-counter {
    width: 100%;
  }
}

