@font-face {
  font-family: "head_font";
  src: url(../../common/font/WDXLLubrifontJPN-Regular.ttf) format("truetype");
}
body {
  overflow-x: hidden;
}

.head_area {
  display: flex;
  gap: 40px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .head_area {
    display: block;
    position: relative;
  }
}
.head_area .left_wrap {
  width: 570px;
  display: flex;
  gap: 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .head_area .left_wrap {
    width: auto;
    display: block;
  }
}
.head_area .left_wrap .text_wrap {
  width: 410px;
}
@media screen and (max-width: 768px) {
  .head_area .left_wrap .text_wrap {
    width: auto;
  }
}
.head_area .left_wrap .text_wrap .category_title {
  font-size: 80px;
  font-family: head_font;
  color: #C87CDB;
}
@media screen and (max-width: 768px) {
  .head_area .left_wrap .text_wrap .category_title {
    font-size: 50px;
  }
}
.head_area .left_wrap .text_wrap .text_area h1 {
  font-weight: normal;
  font-size: 26px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .head_area .left_wrap .text_wrap .text_area h1 {
    font-size: 18px;
  }
}
.head_area .left_wrap .illust {
  top: 0;
  position: absolute;
  right: 0;
}
@media screen and (max-width: 768px) {
  .head_area .left_wrap .illust {
    width: 60px;
  }
}
.head_area .main_photo {
  width: 560px;
}
@media screen and (max-width: 768px) {
  .head_area .main_photo {
    width: auto;
    margin-top: 20px;
  }
}
.head_area .main_photo img {
  border-radius: 10px;
}

.chefs_photo {
  margin: 40px calc(50% - 50vw) 0;
  width: 100vw;
}
.chefs_photo ul {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .chefs_photo ul {
    gap: 20px;
  }
}
.chefs_photo .chefs_scroll {
  animation: scroll 30s linear infinite;
}
@media screen and (max-width: 768px) {
  .chefs_photo .chefs_scroll {
    animation: scroll 10s linear infinite;
  }
}
.chefs_photo .chefs_scroll:hover {
  animation-play-state: paused;
}
.chefs_photo .chefs_scroll li {
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}
.chefs_photo .chefs_scroll li img {
  width: 130px;
  height: 130px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .chefs_photo .chefs_scroll li img {
    width: 90px;
    height: 90px;
  }
}
.chefs_photo .chefs_scroll li .chef_label {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(200, 124, 219, 0.95);
  color: #fff;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
  z-index: 10;
}
.chefs_photo .chefs_scroll li:hover img {
  transform: scale(1.1);
}
@media screen and (max-width: 768px) {
  .chefs_photo .chefs_scroll li:hover img {
    transform: scale(1);
  }
}
.chefs_photo .chefs_scroll li:hover .chef_label {
  opacity: 1;
  border-radius: 5px;
  visibility: visible;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.list_wrap {
  margin: 20px calc(50% - 50vw) 0;
  width: 100vw;
  padding: 40px 0;
  background: url(../img/bg_dot.svg) 0 0;
}

.all_recipe {
  margin-top: 40px;
}
.all_recipe ul.chef_name {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.all_recipe ul.chef_name a {
  display: block;
  color: #C87CDB;
  border: solid 1px #C87CDB;
  border-radius: 5px;
  line-height: 1;
  padding: 10px 15px;
}
@media screen and (max-width: 768px) {
  .all_recipe ul.chef_name a {
    padding: 10px;
    font-size: 12px;
  }
}
.all_recipe ul.chef_name a:hover, .all_recipe ul.chef_name a.active {
  background: #C87CDB;
  color: #fff;
}
.all_recipe ul.recipe_list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 20px auto;
}
@media screen and (max-width: 768px) {
  .all_recipe ul.recipe_list {
    gap: 20px;
    padding: 0 20px;
    justify-content: space-between;
  }
}
.all_recipe ul.recipe_list li {
  width: 366px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .all_recipe ul.recipe_list li {
    width: 47%;
  }
}
.all_recipe ul.recipe_list li figure {
  height: 100%;
}
.all_recipe ul.recipe_list li figure a {
  height: 100%;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  background: #FBFBFB;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.15);
  border: solid 1px #fff;
}
.all_recipe ul.recipe_list li figure a .img_wrap {
  height: 250px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .all_recipe ul.recipe_list li figure a .img_wrap {
    height: 120px;
  }
}
.all_recipe ul.recipe_list li figure a .img_wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.all_recipe ul.recipe_list li figure a figcaption {
  color: #000;
  font-weight: bold;
  padding: 20px;
  line-height: 1.5;
}
.all_recipe ul.recipe_list li figure a figcaption .chef_name {
  background: #C87CDB;
  border-radius: 3px;
  color: #fff;
  font-size: 12px;
  width: 35%;
  text-align: center;
  padding: 7px 10px;
  line-height: 1;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .all_recipe ul.recipe_list li figure a figcaption .chef_name {
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .all_recipe ul.recipe_list li figure a figcaption {
    padding: 10px;
    font-size: 12px;
  }
}
.all_recipe ul.recipe_list li figure a:hover {
  border: solid 1px #C87CDB;
  background: #fff;
}
.all_recipe ul.recipe_list li figure a:hover img {
  transform: scale(1.1);
}
.all_recipe ul.recipe_list li figure a:hover figcaption {
  color: #C87CDB;
}/*# sourceMappingURL=top.css.map */