@charset "UTF-8";

.lead {
  margin-bottom: 70px;
}

.p_recipe_search_form {
  background: #fcf0de;
  padding: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 116px;
  border-radius: 8px;
  background-image: url(../../../../pic-labo/llimg/cmn-img02.png);
}

.p_recipe_search_form .form_input_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 77.3%;
  max-width: 668px;
}

.p_recipe_search_form .form_input_wrap .input {
  width: 45.9%;
}

.p_recipe_search_form .form_input_wrap .input:not(:last-child) {
  margin-right: 8.2%;
  position: relative;
}

.p_recipe_search_form .form_input_wrap .input:not(:last-child)::before {
  position: absolute;
  top: 50%;
  left: 106%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "×";
  font-size: clamp(16px, 2vw, 26px);
}

.p_recipe_search_form .form_input_wrap .input select {
  width: 100%;
  height: 50px;
  border-radius: 8px;
  border-color: #9b9b9b;
  background: url(../img/common/icon_arrow_orange.png) no-repeat right 6.5% center/11px auto, #ffffff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 16px;
  padding: 0 15% 0 5.5%;
  color: #9b9b9b;
}

.p_recipe_search_form .form_submit_wrap {
  width: 19.1%;
  min-width: 120px;
}

.p_recipe_search_form .form_submit_wrap .search_btn {
  background: url(../img/recipe/icon_arrow_white.png) no-repeat right 9% center/9px auto, #db6557;
  color: #ffffff;
  border-radius: 4px;
  border: 1px solid #db6557;
  width: 100%;
  height: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  padding: 0 18%;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.p_recipe_search_form .form_submit_wrap .search_btn:hover {
  background: url(../img/recipe/icon_arrow_pink.png) no-repeat right 9% center/9px auto, #ffffff;
  color: #db6557;
}

.recipe-list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 63px;
  margin-bottom: 13px;
}

.recipe-list:before {
  content: "";
  display: block;
  width: 251px;
  height: 182px;
  background: url(../img/recipe/img_wave.png) no-repeat center/contain;
  position: absolute;
  top: -75px;
  right: -125px;
}

.recipe-list__item {
  display: block;
  width: 31.3%;
  margin-bottom: 60px;
  position: relative;
}

.recipe-list__item > a {
  position: relative;
}

.recipe-list__item--movie .recipe-list__image::after {
  position: absolute;
  bottom: 20px;
  right: 20px;
  content: "";
  width: 82px;
  height: 57px;
  display: block;
  background: url(../img/recipe/icon_movie.png) no-repeat center/contain;
}

.recipe-list__image {
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}

.recipe-list__image::before {
  content: "";
  width: 100%;
  display: block;
  padding-top: 80.3%;
}

.recipe-list__image img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.recipe-list__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2;
}

.recipe-list__text {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.75;
  margin-top: -3px;

  /* 2行で省略するための設定 */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 表示する行数を2に指定 */
  overflow: hidden;
  text-overflow: ellipsis;

  /* 以下はレイアウトを整えるためのサンプルです。状況に応じて調整してください。*/
  line-height: 1.6; /* 行の高さを指定 */
  height: 3.2em; /* line-height × 2行分の高さを指定 */
}

.recipe-list__cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 15px;
  margin-right: -10px;
  margin-bottom: -5px;
}

.recipe-list__cat__item {
  font-size: 16px;
  background: #f6d8d5;
  border-radius: 15px;
  padding: 5px 19px;
  margin-right: 10px;
  margin-bottom: 5px;
}

.recipe-list__link {
  font-size: 16px;
  font-weight: 700;
  color: #db6557;
  display: block;
  text-align: right;
  margin-top: 25px;
}

.recipe-list__link::after {
  content: "";
  width: 9px;
  height: 13px;
  display: inline-block;
  background: url(../img/recipe/icon_arrow_pink.png) no-repeat center/contain;
  margin-left: 0.4em;
}

.recipes {
  background-image: -o-linear-gradient(bottom, transparent calc(100% - 1px), #f2f2f2 calc(100% - 1px)), -o-linear-gradient(left, transparent calc(100% - 1px), #f2f2f2 calc(100% - 1px));
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f2f2f2 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f2f2f2 calc(100% - 1px));
  background-size: 8px 8px;
  background-repeat: repeat;
  background-position: center center;
  padding: 108px 0 120px;
  margin-top: 115px;
}

.recipes__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 52px;
}

.recipes__inner a {
  color: #ffffff;
}

.recipes__link {
  display: block;
  position: relative;
  width: 48.5%;
  height: 180px;
  background: url(../img/recipe/bg_recipes_link.jpg) no-repeat center/cover;
  margin-right: 5%;
  border-radius: 8px;
  overflow: hidden;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #ffffff;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.recipes__link:hover {
  opacity: 0.6;
}

.recipes__link::before {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  width: 40px;
  height: 40px;
  display: block;
  background: url(../img/recipe/icon_link.png) no-repeat center/contain;
}

.recipes__link__text {
  position: absolute;
  top: 45%;
  left: 30px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.recipes__link__text__jp {
  display: block;
  font: 600 30px "Noto Serif JP", serif;
  letter-spacing: 0.1em;
  margin-bottom: 7px;
}

.recipes__link__text__en {
  display: block;
  font: 400 16px "Noto Serif JP", serif;
  letter-spacing: 0.1em;
}

.recipes__main {
  margin-bottom: 7px;
}

.recipes__main__text {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 2.25;
  text-align: justify;
}

.recipes__main__text span {
  font-size: 18px;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .recipe-list__item {
    /* pc */
  }

  .recipe-list__item:not(:nth-child(3n)) {
    margin-right: 3.05%;
  }
}

@media screen and (max-width: 767px) {
  .lead {
    /* sp */
    margin-bottom: 53px;
  }

  .p_recipe_search_form {
    /* sp */
    display: block;
    padding: 25px 15px;
    border-radius: 4px;
    margin-bottom: 58px;
  }

  .p_recipe_search_form .form_input_wrap {
    /* sp */
    display: block;
    width: 100%;
  }

  .p_recipe_search_form .form_input_wrap .input {
    /* sp */
    width: 100%;
  }

  .p_recipe_search_form .form_input_wrap .input:not(:last-child) {
    /* sp */
    margin-right: 0;
    margin-bottom: 33px;
  }

  .p_recipe_search_form .form_input_wrap .input:not(:last-child)::before {
    /* sp */
    top: calc(100% + 7px);
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 25px;
  }

  .p_recipe_search_form .form_input_wrap .input select {
    /* sp */
    height: 44px;
    font-size: 13px;
    border-radius: 4px;
    background-size: 6px auto;
    background-position: right 5% center;
    padding: 0 10% 0 3%;
  }

  .p_recipe_search_form .form_submit_wrap {
    /* sp */
    width: 100%;
  }

  .p_recipe_search_form .form_submit_wrap .search_btn {
    /* sp */
    height: 44px;
    background-size: 7px auto;
    background-position: right 5% center;
    font-size: 13px;
  }

  .recipe-list {
    /* sp */
    margin-top: 35px;
    margin-bottom: 35px;
  }

  .recipe-list:before {
    /* sp */
    content: none;
  }

  .recipe-list__item {
    /* sp */
    width: 100%;
    margin-bottom: 35px;
  }

  .recipe-list__item--movie .recipe-list__image::after {
    /* sp */
    bottom: 7px;
    right: 5px;
    width: 50px;
    height: 35px;
  }

  .recipe-list__image {
    /* sp */
    border-radius: 4px;
    margin-bottom: 10px;
  }

  .recipe-list__image::before {
    /* sp */
    padding-top: 100%;
  }

  .recipe-list__title {
    /* sp */
    font-size: 14px;
    line-height: 1.5;
  }

  .recipe-list__text {
    /* sp */
    font-size: 13px;
    margin-top: 6px;
    text-align: justify;
  }

  .recipe-list__cat {
    /* sp */
    margin-top: 5px;
  }

  .recipe-list__cat__item {
    /* sp */
    font-size: 13px;
    padding: 3px 11px;
  }

  .recipe-list__link {
    /* sp */
    font-size: 13px;
    margin-top: 10px;
  }

  .recipe-list__link::after {
    /* sp */
    width: 7px;
    height: 11px;
  }

  .recipes {
    /* sp */
    padding: 50px 0 65px;
    margin-top: 55px;
  }

  .recipes__inner {
    /* sp */
    display: block;
    margin-top: -13px;
  }

  .recipes__link {
    /* sp */
    width: 100%;
    margin-right: 0;
    border-radius: 4px;
    height: 106px;
  }

  .recipes__link::before {
    /* sp */
    right: 15px;
    width: 20px;
    height: 20px;
  }

  .recipes__link__text {
    /* sp */
    top: 47%;
    left: 15px;
  }

  .recipes__link__text__jp {
    /* sp */
    font-size: 20px;
    margin-bottom: 0;
  }

  .recipes__link__text__en {
    /* sp */
    font-size: 13px;
  }

  .recipes__main {
    /* sp */
    margin-top: 10px;
  }

  .recipes__main__text {
    /* sp */
    font-size: 13px;
    line-height: 1.75;
  }

  .recipes__main__text span {
    /* sp */
    font-size: 14px;
  }
}

.forum-postnum {
  color: #333333;
  font-size: 3.46666vw;
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: 400;
}
@media screen and (min-width: 768px) and (max-width: 899px) {
  .forum-postnum {
    font-size: 14.4px;
    letter-spacing: 0.08em;
    line-height: 1;
    font-weight: 400;
  }
}
@media screen and (min-width: 900px) {
  .forum-postnum {
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: 1;
    font-weight: 400;
  }
}
@media screen and (max-width: 767px) {
  .forum-postnum {
    margin-top: 3.2vw;
    text-align: center;
  }
}

.recipe-bnr {
  margin-top: 40px;
  max-width: 582px;
  margin-left: auto;
  margin-right: auto;
}

.read-more-link {
  position: absolute;
  right: 0;
  bottom: 0em;
  display: block; /* または block */
  color: #db6557 !important; /* リンクの色をお好みに合わせて調整 */
  text-decoration: none;
  font-weight: bold;
  background: #fff;
  padding-left: 0.2em;
  line-height: 1.6;
  text-decoration: underline !important;
}

.recipe-list__batch {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  justify-content: left;
}

.recipe-list__batch .recipe-list__batch__item {
  border-radius: 300px 999px 999px 300px;
}

.recipe-list__batch .recipe-list__batch__item a {
  display: block;
  height: 100%;
  padding: 0.4em 0.8em;
}

.recipe-list__genre {
  margin-top: 1.5em;
}

.recipe-list__genre .recipe-list__batch__item {
  background-color: rgb(246, 216, 213);
}

.recipe-list__tag {
  margin-top: 0.8em;
}
.recipe-list__tag .recipe-list__batch__item {
  background: #fff;
  border: 2px solid rgb(246, 216, 213);
}

.recipe-ranking .recipe-list__item:before {
  content: "";
  display: inline-block;
  position: absolute;
  z-index: 1;
  width: 10.4vw;
  height: 13vw;
  top: -2px;
  left: 0;
}
@media screen and (min-width: 768px) and (max-width: 899px) {
  .recipe-ranking .recipe-list__item:before {
    width: 32px;
    height: 40px;
  }
}
@media screen and (min-width: 900px) {
  .recipe-ranking .recipe-list__item:before {
    width: 40px;
    height: 50px;
  }
}
@media screen and (min-width: 768px) {
  .recipe-ranking .recipe-list__item:before {
    top: -1px;
  }
}
.recipe-ranking .recipe-list__item:nth-of-type(1):before {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC0AAAA4CAYAAABpAXGyAAACJklEQVRoge3aPWgUQRiA4WcviUUKf4soSEQ0oEgkgpUQTSFBC0EEQTvRThtRRAtbCyFqp6QRTSFaaRmxCxLsAkZEJdWBGiVFxEAgSs5ic0nuyCX3szcSmBeOnfnu5vteZmd2l+WSwlDLaXJtkhxyJC3S9sJxMZ5boZ+Uxhf7SWnM8nh5u/h9hb6ExFKMfCueYJP1w7Pc/zaohygdiigdiigdiigdinUp3Zp5xg3b6ehn8362HWRylImBTEtkJ721j55bbNxVGp8czaxEkeykZz7zcZA/v5ge4dR4ZqnLyU567js/Xi17HG0e63IjRulQROlQROlQROlQROlQROlFthxdarfvoK0j0/TZPeV136XzOG3tpfGdfekHfucZPdtwqeykx2/yocq3pg0S13QoonQoonQoonQoonQoonQomiWdxyPMNiN51tLTuIF9uLxwfIr5LItkJT2HB+jCgKUZzuMCDuNNRrUali7gBQ7gGqYq/G4M/TiJhl9cNyL9FkdwDhNVjhlGDy7hW72F65H+gjPoxbs6xs/jMfbiNmZqTVCL9BSuSJfCy1oLrcAs7mAPHuJvtQOrkS4m311r8ir5KZ2MblVOxmrSxdPYpc7TWCOfpMvumDWWXSXpYRySbpivmaqtzYh0g59XYYOXS4/hhPTS9L6paqtTwHPp/rmu7FJalM7jovQm8Dqk3RrM4b50id6zcNNKCkMtV8kNSnKz6+Avbp3o/Qf5l11d8s5Y+gAAAABJRU5ErkJggg==) no-repeat center top/100% auto;
}
@media screen and (max-width: 767px) {
  .recipe-ranking .recipe-list__item {
    width: 100%;
    margin-right: 0 !important;
  }
}
@media screen and (min-width: 768px) {
  .recipe-ranking .recipe-list__item:nth-of-type(1) {
    margin-right: 3%;
  }
}
.recipe-ranking .recipe-list__item:nth-of-type(2):before {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC4AAAA4CAYAAACCNsqxAAADL0lEQVRoge2YT0iTYRzHP+874XWiO3trNudaYywoSacwvYx2kRihR6OORfcg6BR0j9bN6CAeLIasQ2Gi8zDmSZuYCGbkZmL+IRUcs7AOz5wTTef2vK8I7wde3oe9L8/v877v9/2x91G6u7tVRVHsiqKgKAqqqh7Zn7RZLJYj48JeVVEtlpP3+XHh/KJNUVXUfZf8OO+5VQXUAV+5WLxSz9ugXExxozHFjcYUNxpT3GhMcaOpkj2h2+2mubmZ+vp6bDYbuVyOTCZDKpXi28KCtDpSxXt6evD5fIyPjzMwMEBdbS03W1poa2vD4XAQHxtjcmpKSi1pUQkEAvh8PgBSqRQAOzs7xONxEokEAC2trVitVin1pIl7PB4ANjc3WV1dPXTsy8wMAJqm4Xa7pdSTFpXl5WWqq6sLd7eY9fX1wljTNCn1pIlHo9FDX0B6Y0g79Hq9hfHc3JyUOQ0Rv2S3AzA7O8vGxoaUOXUXb2pqwuPxsL29zdjoqLR5dRWvqakhGAySy+WIxWJks1lpc+sq3tXVhc1m4+3gIEtLS1Ln1k08HA7T6HQyMjJCJpORPr8u4n6/H6/Xy6fhYSYmJvQoIf9PVnt7Ox0dHQwNDTGdSqHq1NOlitvtdjo7O+nv7yedTmNR9XuFpIk3NDTQ29tLMpnEarXicrkO1gEV5WDtT1X5ubJCbne3onrSxEOhEJqmEQgETj33fSzG98XFiuqZX0CRSOTMy8yVcGHvuCluNKa40ZjiRmOKG40pbjR6imeBz3pNrof4HtAHNALXgDAwL7uIbPEPCNn7wI/8b1HgKvAAWJNVSJb4JBAEQsD0Mcd/AxHAATxDxKgiKhVfBO4CN4DhEs7fAp4ALkSc9sotXK74L+AxcAV4U4ZAGhGn64h4nZmziu8CLwAn8JzKH/kUIl63EHErmVLF/wLvAA/wCIkvWZ6PiLjdQ8TvVEoRTwB+4A46tLUi9oDXiPg9QcTxv5wkPo/owW1AUpZdCWQRnccJvETE8wjHia8heq4b0YPPizXgISKeUURcCxSL71+pA9Fz/xgkeBr7T95P0ZOvQlxJH/AUkL8eLI8kQv42cPkf9ifDFkC5ue0AAAAASUVORK5CYII=) no-repeat center top/100% auto;
}
@media screen and (max-width: 767px) {
  .recipe-ranking .recipe-list__item:nth-of-type(2) {
    margin-right: 4.4% !important;
  }
  /*
  .recipe-ranking .recipe-list__item:nth-of-type(2) .recipe-ranking .recipe-list__item__image {
    height: 44.2vw;
  }
*/
}
@media screen and (min-width: 768px) {
  .recipe-ranking .recipe-list__item:nth-of-type(2) {
    margin-right: 3%;
  }
}
.recipe-ranking .recipe-list__item:nth-of-type(3):before {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC0AAAA3CAYAAACYV8NnAAADeklEQVRoge2ZW0gUURjHf2dJFKUbrW4peclWV9awy3aTsoiIzALfQrOoHiuRIIregoKg6KmXIMIKyl7qIYIMi+4qFemDeClJnTRJN1uLVtpg62FO42oXV+fsUDD/l9lz+/4/Zs755pxZcX7f9O8CBwgH4EAIIa+RdQ4QAhFRLyL6j9aNjjXGjKkXRj99vBhTN1rWvRAg0MtGG+DgP5QNbZVsaKtkQ1slG9oq2dBWaZrKYDNSvLgLy3BlLWKWKwOAwIBGX1sDnQ3XCAX9SnyUQTuz1rJh9yniEhK5cWILoaAfZ1Yheesq8K7bTlreah5WVxEKDpn2UjY91pQdIy4hkd6O53z9MgCAv7uBJ5crCQ77mZWSTkHxQSVeSqBnuPJJmukE4G3Lw1/aezueAZCW61Nhp2Z6fHrfwp1zBxBC4O96KvfKo/o28hmAuPhEFXbq5rS/67Gx2R+vpNlzARge0JR4xTzlTU/xkJa7HICO+htKYipNeZGKT0ohY2kpnsJSAJpqL9Dz8ro8wpmTcuhUbwnrdx43ysFhP43XT9PfVmec8cxKxPJgm+rdQvbyraTl+BjU2qmvOUooOPRvH2zftd7myeVK3r16QXK6h8Kyk0riWrL3aHt0FYDkdA9zMlaYjmcJ9IeeRuO3a6F5aCUL0bmgiMzFmxnqa6freY2KkH+VkjudWbCZ3FXb8JXs/237nIxVxu+Pfe2m/ZRA97/WH39cQiKp3pJf2vOKygH9jdjffte0nxLovpabvGm+D8A890qj3pm5mjW7zpKa4yMwoPGgukqFndo8vWBFBfPz1+PK9Bqbo0Gtjd7WerTmW/ohQMEHyJi+XOyvphGyoa2SDW2VbGirZENbJRvaKsUSujNWgWMB3QRsAtzy2qTaQCW0BlQAPqBO1tXJ8g7ZrkQqoIeAQ+h39goQHtceBq7K9kOyvymZgR4BTgPZwBkgNEH/kOyXLceNTNV4KtBh4BLgAQ4DgUmOD8hxHhln/JOZUJOFrgWWAbsxP0c1GWeZjBu1ooVuAjYCxUDzZAyiULOMu5EoM81E0N1AOXoGuGeGLArdkz7lQM/fOv4J2o++0nOBGqYw76aosPTLkf6//Q9vPPQIcAo9PUWTEWKln5nGLXnGZJqf0GGgGn1FH2HyGSFWCqDzeICLyCfuQF+5S4C9KHxrKZYG7EHnrP0Bbcrc8YrW3WoAAAAASUVORK5CYII=) no-repeat center top/100% auto;
}
@media screen and (max-width: 767px) {
  .recipe-ranking .recipe-list__item:nth-of-type(3) {
    margin-right: 0 !important;
  }
  /*
  .recipe-ranking .recipe-list__item:nth-of-type(3) .recipe-ranking .recipe-list__item__image {
    height: 44.2vw;
  }
*/
}
@media screen and (min-width: 768px) {
  .recipe-ranking .recipe-list__item:nth-of-type(3) {
    margin-right: 0%;
  }
}

.recipe-search-form {
}

.recipe-search-form .recipe-list__batch__item {
  padding: 0.4em 1em;
  font-size: 100%;
}

.recipe-search-form .search-items {
  margin-top: 1em !important;
}

.search-button {
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.search-button.selected {
  /* 内側に影を落として押し込んだように見せる */
  box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.15);
  transform: scale(0.98); /* 少しだけ小さくして、より押した感を出す */
  background-color: #fceae5; /* 背景色を少し暗くする */
}

.recipe-search-form .search-title {
  font-size: 20px;
}

.recipe-search-form-list {
  display: flex;
  gap: 2em;
}

@media screen and (min-width: 768px) {
  .recipe-search-form-list > * {
    width: 100%;
  }

  .recipe-search-form .submit-section {
    position: relative;
  }

  .recipe-search-form .submit-section button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
  }
}

@media screen and (max-width: 767px) {
  .recipe-search-form .search-title {
    font-size: 16px;
  }

  .recipe-search-form-list {
    flex-direction: column;
    gap: 3em;
  }
}
