@charset "UTF-8";

img {
  display: block;
  margin: 0 auto;
  width: fit-content;
  max-width: 100%;
  height: auto;
}
.pickup {
  position: relative;
  width: fit-content;
  padding: 8px 32px;
  background: #fae599;
  border-radius: 8px;
  font-weight: bold;
  color: #333;
  text-align: center;
  &::after {
    content: "";
    position: absolute;
    display: block;
    top: 95%;
    left: 50%;
    translate: -50%;
    background-color: #fae599;
    width: 20px;
    height: 20px;
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
  }
}
.bg-light-yellow {
  padding: 8px;
  background: #f9f0d0;
}