.recipe_sns_container {
    margin-bottom: 20px;
}

.recipe_sns_list {
    display: flex;
    justify-content: flex-end;
}

.recipe_sns_item {
    margin: 0 0.5em;
}

.recipe_sns_link {
    font-size: 1.5em;
}

.recipe_head_image {
    aspect-ratio: 5 / 3;
}

.recipe_head_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recipe_head_text {
    margin-top: 10px;
}

.recipe_ingredient_item {
    display: flex;
    justify-content: space-between;
}

.recipe_ingredient_item span:last-of-type {
    flex-shrink: 0;
    margin-left: 2em;
}

.recipe_related_products_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.recipe_related_products_item {
    width: 48%;
}

@media (max-width: 479px) {
  .recipe_related_products_item {
      width: 100%;
  }
  
  .recipe_related_products_item:nth-of-type(n+2) {
      margin-top: 10px;
  }
}

.recipe_process_timer {
    display: flex;
    align-items: baseline;
    margin-left: 1em;
}

.recipe_process_icon {
    width: 0.9em;
    align-self: center;
    margin-right: 5px;
}

.recipe_process__unit {
    font-size: 60%;
}

.recipe_process_time {
    font-size: 90%;
}

.recipe_process_title {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
  color: #000;
  text-align: center;
}

.recipe_process_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.recipe_process_item {
  width: 48%;
  position: relative;
  counter-increment: process-counter;
  margin-bottom: 30px;
}

.recipe_process_image {
  aspect-ratio: 5 / 3;
}

.recipe_process_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recipe_process_number {
  background-color: #c2ab50;
  color: #fff;
  font-size: clamp(18px, 7.04px + 1.425vw, 24px);
  width: 36px;
  height: 36px;
  display: flex;
  font-weight: bold;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 8px;
}

.recipe_process_number::before {
  content: counter(process-counter);
}

.recipe_process_text {
  margin-top: 10px;
}

.recipe_process_memo {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 40px;
  padding: 0 10px;
}

.recipe_process_memo_image {
  background-color: #fff480;
  padding: 6px;
  width: 96px;
  height: 48px;
}
