/* ダメUIのWEBサイト */
.title {
  font-size: 1.3rem;
  padding: 0.3rem 1rem;
  color: #fff;
  background-color: darkorange;
}

img {
  width: 100%;
  height: auto;
}

.item {
  width: 40vw;
}

.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: 11rem;
  top: 1rem;
  right: 1rem;
}

@keyframes breathing-border {
  0% {
    border-color: transparent;
  }
  50% {
    border-color: orange;
  }
  100% {
    border-color: transparent;
  }
}
