@charset "UTF-8";

.checked {
  position: relative;
  width: 15px;
  height: 15px;
  display: inline-block;
  background: #4ac021;
  margin-right: 5px;
}
.checked::after {
  content: "";
  width: 4px;
  height: 6px;
  border-bottom: #fff 2px solid;
  border-right: #fff 2px solid;
  transform: rotate(45deg);
  position: absolute;
  left: 5px;
  top: 2px;
}

.about-log {
  margin-top: 2em;
  background: #dadbde;
  padding: 1em 1.5em;
}
.about-log dl {
  display: flex;
  font-size: 80%;
  color: #000;
}
.about-log dl + dl { margin-top: 0.3em;}
.about-log dt {
  font-weight: bold;
  min-width: 110px;
  display: flex;
  align-items: center;
}
.about-log dd::before {
  content: ":";
  display: inline-block;
  padding-right: 3px;
}

.repoul {
  margin-top: 1.5em;
}
.repoli {
  list-style: none;
  border-top: #212437 1px solid;
}
.repoli + .repoli {
  border-bottom: #212437 1px solid;
}
.repoli a {
  font-size: 85%;
  color: #fff;
  padding: 10px 10px;
  display: block;
}
@media only screen and (min-width: 783px) {
  .repoli a {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.repoli a:hover {
  background: #212437;
}
.meta {
  padding: 0 0 0px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.meta .date {
  background: #212437;
  padding: 5px 10px;
  border-radius: 8px;
  line-height: 1.2;
  margin-right: 1em;
  white-space: nowrap;
}
.meta h2 {
  margin-right: 1em;
  font-size: 90%;
}
.card {
  display: flex;
  align-items: center;
  margin-top: 2px;
}
.card .vs { margin: 0 3px; font-size: 90%;}
.status {
  display: flex;
  align-items: center;
  padding: 0 0 0px 0;
  justify-content: flex-end;
}
@media only screen and (min-width: 783px) {
}
.status li {
  position: relative;
  padding-left: 25px;
}
.status li::before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 0px;
  background: #555865;
}
.status li.on::before {
  background: #4ac021;
}
.status li.on::after {
  content: "";
  width: 5px;
  height: 8px;
  border-bottom: #fff 3px solid;
  border-right: #fff 3px solid;
  transform: rotate(45deg);
  position: absolute;
  left: 6px;
  top: 3px;
}
.status li + li { margin-left: 10px;}