/* ダメUIのWEBサイト */
img {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: #333;
}

.guide {
  position: relative;
  border: dashed 3px orange;
  border-radius: 0.5rem;
  animation: breathing-border 3s ease-in 0s infinite;
}

.comment {
  position: absolute;
  font-size: 1rem;
  padding: 0.2rem;
  text-align: center;
  font-weight: bolder;
  background-color: white;
  border: solid 3px orange;
  border-radius: 0.5rem;
  box-shadow: 0.25rem 0.3rem rgba(0, 0, 0, 0.2);
  z-index: 1;

  width: 12rem;
  top: 1rem;
  right: 1rem;
}

.c01 {
  top: -1rem;
  left: 3.5rem;
}

.fa-reply:before{
  content:url(../images/return1.svg);
}

@keyframes breathing-border {
  0% {
    border-color: transparent;
  }
  50% {
    border-color: orange;
  }
  100% {
    border-color: transparent;
  }
}
