a {text-decoration: none; color: inherit; display: block;}
ul, li {list-style: none; }


td img
{
display: block;
width: 100%;
}

.wrap {
  max-width: 970px;
  width: 100%;
}



 .time_top {
  background: #2a2a2a;
  font-family: 'SUIT-Regular';
  width: 100%;
  padding: 8% 0 11%;
}


#timer {
  display: flex;
  justify-content: center;
  font-size: 7vw;
  font-weight: 700;
  color: #000;
  width: 90%;
  margin: 0 auto;
}

#timer div {
  display: flex;
  flex-flow: column;
  justify-content: center;
  width: 35vw;
  height: 12vw;
  background: #fff;
  border-radius: 7px;
  border: 1px solid #fff;
  margin: 0 4%;
  position: relative;
}

#timer div::after {
  position: absolute;
  top: 30%;
  right: -35%;
  content: '';
  width: 1vw;
  height: 1vw;
  border-radius: 100%;
  background: #fff;
}

#timer div::before {
  position: absolute;
  bottom: 30%;
  right: -35%;
  content: '';
  width: 1vw;
  height: 1vw;
  border-radius: 100%;
  background: #fff;
}

#timer div:last-child::after {
  display: none;
}
#timer div:last-child::before {
  display: none;
}

#timer div span {
  color: #fff;
  display: block;
  font-size:  3vw;
  font-weight: 200;
  position: absolute;
  bottom: -65%;
  left: 50%;
  transform: translate(-50%, -50%);
}


