.ly_aboutRecipe {
  display: none;
  padding-bottom: 100px;
}

.bl_aboutRecipe .bl_aboutDiff_itemHeader {
  padding-inline: 30px;
}

.bl_aboutRecipeSwiper {
  padding-inline: 30px;
  padding-top: 40px;
}

.bl_aboutRecipeSwiper_slide {
  width: fit-content;
  cursor: pointer;
}

.bl_aboutRecipeSwiper_slideImg {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  max-width: 300px;
  box-sizing: border-box;
  border: 5px solid #fff;
}

.bl_aboutRecipeSwiper_slideImg img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.bl_aboutRecipeModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  font-family: 'NotoSansJp', sans-serif;
  z-index: 9999;
}

.bl_aboutRecipeModal_content {
  background-color: #fff;
  padding-inline: 20px;
  padding-block: 48px;
  width: 82vw;
  height: 80vh;
  overflow-y: auto;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}

.bl_aboutRecipeModal_closeBtn {
  background-color: #4d4d4d;
  font-family: 'NotoSansJp', sans-serif;
  padding-inline: 9px;
  padding-block: 2px;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 15px;
  font-size: 16px;
  position: absolute;
  top: 5vh;
  right: 9vw;
}

.bl_aboutRecipeModal_closeBtn:hover {
  background-color: #303030;
}

.bl_aboutRecipeModal_content h3 {
  margin-top: 0;
  font-size: 18px;
  font-weight: 500;
  font-family: 'NotoSansJp', sans-serif;
  color: var(--text_heading);
  margin-bottom: 24px;
}

.bl_aboutRecipeModal_desc {
  padding-bottom: 32px;
  font-size: 14px;
  line-height: 2;
}

.bl_aboutRecipeModal_img {
  aspect-ratio: 14 / 9;
  margin-bottom: 40px;
  border-radius: 10px;
}

.bl_aboutRecipeModal_img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  object-position: center center;
}

.bl_aboutRecipeModal_content p {
  font-size: 16px;
  line-height: 1.5;
  color: #555;
  margin-bottom: 15px;
}

.bl_aboutRecipeModal_products span,
.bl_aboutRecipeModal_process span {
  display: block;
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 16px;
}

.bl_aboutRecipeModal_products ul {
  margin-bottom: 24px;
  font-size: 13px;
}

.bl_aboutRecipeModal_products ul li {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: #dddddd 1px solid;
  margin-bottom: 8px;
}

.bl_aboutRecipeModal_products ul li strong {
  font-weight: 400;
}

.bl_aboutRecipeModal_process ol {
  font-size: 13px;
  counter-reset: list-counter;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bl_aboutRecipeModal_process ol li {
  list-style: none;
  position: relative;
  padding-left: 35px;
  counter-increment: list-counter;
}

.bl_aboutRecipeModal_process ol li::before {
  content: counter(list-counter);
  font-size: 16px;
  display: block;
  font-family: 'NotoSerifJp', serif;
  background: #4d4d4d;
  line-height: 25px;
  color: #fff;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  margin-inline-end: 10px;
}

@media screen and (width > 768px) {
  .bl_aboutRecipe .bl_aboutDiff_itemHeader {
    padding-inline: 0;
  }
  .bl_aboutRecipeSwiper {
    padding-top: 42px;
    padding-inline: 0;
  }

  .ly_aboutRecipe {
    padding-bottom: 14vw;
    position: relative;
  }

  .ly_aboutRecipe .hp_containerWidth {
    max-width: 1630px;
    margin-inline-start: 15vw;
    margin-inline-end: 0;
  }

  .ly_aboutRecipe::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: -moz-linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(250, 245, 241, 1) 100%
    );
    background: -webkit-linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(250, 245, 241, 1) 100%
    );
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(250, 245, 241, 1) 100%
    );
  }

  .bl_aboutRecipeModal_content {
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: 5%;
    overflow: hidden;
  }

  .bl_aboutRecipeModal_img {
    width: 37%;
    flex-shrink: 0;
    aspect-ratio: unset;
    margin-bottom: 0;
    border-radius: 0;
  }

  .bl_aboutRecipeModal_img img {
    border-radius: 0;
  }

  .bl_aboutRecipeModal_scrollable {
    width: 100%;
    padding-block: 5vh;
    padding-inline-end: 5%;
    overflow: scroll;
  }
}
