/* CHECK */
.hukidashi1{
  position: relative;
  padding: 20px;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.2em;
  font-size: 14px;
  background-color: #ff9800;
}
.hukidashi1::before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 2px;
  bottom: 2px;
  border-right: 20px solid #ff9800;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  transform: rotate(-45deg);
}


/* POINT */
.hukidashi2{
  position: relative;
  padding: 20px;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.2em;
  font-size: 14px;
  background-color: #ff9800;
}
.hukidashi2::before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  right: 2px;
  bottom: 2px;
  border-left: 20px solid #ff9800;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  transform: rotate(45deg);
}


/* LOOK */
.hukidashi3{
  position: relative;
  padding: 20px;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.2em;
  font-size: 14px;
  background-color: #ff9800;
}
.hukidashi3::before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 2px;
  top: 2px;
  border-right: 20px solid #ff9800;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  transform: rotate(45deg);
}


/* GOOD */
.hukidashi4{
  position: absolute;
  padding: 20px 0px 0px 10px;
  width: 180px;
  height: 80px;
  border-radius: 20%;
  text-align: left;
  vertical-align: middle;
  color: #ffffff;
  letter-spacing: 0.2em;
  font-size: 14px;
  background-color: #ff9800;
  z-index: 99;
  box-shadow: 0 0px 15px 0 rgba(0, 0, 0, 0.9);
  text-shadow: 1px 2px 3px #404040;
  animation: fadeOut 2.0s ease 3.0s 1 forwards;
}
.hukidashi4::before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  right: -2px;
  top: 2px;
  border-left: 10px solid #ff9800;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  transform: rotate(-50deg);
}


@keyframes fadeIn { /*animetion-nameで設定した値を書く*/
  0% {opacity: 0} /*アニメーション開始時は不透明度0%*/
  100% {opacity: 1} /*アニメーション終了時は不透明度100%*/
}
@keyframes fadeOut { /*animetion-nameで設定した値を書く*/
  0% {opacity: 1} /*アニメーション開始時は不透明度0%*/
  100% {opacity: 0} /*アニメーション終了時は不透明度100%*/
}

.animation-fade-in {
    opacity: 1;
    animation-name: fadeIn;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 0.5s;
}
