@font-face {
  font-family: "head_font";
  src: url(../common/font/WDXLLubrifontJPN-Regular.ttf) format("truetype");
}
main {
  padding: 120px 20px 0 20px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  main {
    padding: 0 20px 20px;
  }
}
main .fade-in-element {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
main .fade-in-element.visible {
  opacity: 1;
  transform: translateY(0);
}
main .carousel-container {
  position: relative;
}
main .carousel-container::before {
  content: "";
  display: block;
  position: absolute;
  top: -80px;
  left: -50px;
  z-index: -1;
  width: 360px;
  height: 240PX;
  background: rgba(250, 0, 20, 0.4);
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  main .carousel-container::before {
    width: 180px;
    height: 120PX;
  }
}
main .carousel-container::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -40px;
  right: -50px;
  z-index: -1;
  width: 360px;
  height: 240PX;
  background: rgba(0, 66, 188, 0.6);
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  main .carousel-container::after {
    width: 180px;
    height: 120PX;
  }
}
main .slide {
  display: flex;
  gap: 60px;
  position: relative;
  overflow: visible;
}
@media screen and (max-width: 768px) {
  main .slide {
    gap: 20px;
  }
}
main .slide div.block {
  flex-shrink: 0;
  transition: transform 0.5s ease;
}
main .slide div.block a {
  border-radius: 10px;
  position: relative;
  display: flex;
  align-items: end;
  overflow: hidden;
  width: 490px;
  height: 345px;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  main .slide div.block a {
    width: 300px;
    height: 180px;
    padding: 10px;
  }
}
main .slide div.block a > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  transition: transform 0.3s ease;
}
main .slide div.block a:hover > img {
  transform: scale(1.1);
}
main .slide div.block a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(102, 102, 102, 0) 100%);
  border-radius: 10px;
}
main .slide div.block a .text_block {
  position: relative;
  z-index: 3;
}
main .slide div.block a .text_block p.category {
  background: #0042BC;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  border-radius: 5px;
  padding: 8px 10px;
  display: inline-block;
}
main .slide div.block a .text_block p.category.recipe {
  background: #C87CDB;
}
main .slide div.block a .text_block p.category.amamo {
  background: #80B992;
}
main .slide div.block a .text_block p.category.about {
  background: #80A0DD;
}
main .slide div.block a .text_block p.category.mangrove {
  background: #62CDCD;
}
main .slide div.block a .text_block p.category.katsudou {
  background: #D1B169;
}
@media screen and (max-width: 768px) {
  main .slide div.block a .text_block p.category {
    padding: 5px;
    font-size: 10px;
  }
}
main .slide div.block a .text_block span.date {
  display: block;
  color: #fff;
  font-size: 14px;
  margin: 10px 0;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  main .slide div.block a .text_block span.date {
    margin: 5px 0;
    font-size: 10px;
  }
}
main .slide div.block a .text_block h2 {
  font-size: 24px;
  color: #fff;
  text-shadow: 2px 3px 0 rgba(0, 0, 0, 0.7);
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  main .slide div.block a .text_block h2 {
    font-size: 14px;
  }
}
main .slide div.block a .text_block h2 small {
  display: block;
}
@media screen and (max-width: 768px) {
  main .slide div.block a .text_block h2 small {
    font-size: 12px;
  }
}
main .carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  main .carousel-controls {
    margin-top: 20px;
    gap: 20px;
  }
}
main .carousel-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
main .carousel-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 66, 188, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}
main .carousel-dots .dot.active {
  background: #0042BC;
  width: 30px;
  border-radius: 6px;
}
main .carousel-dots .dot:hover {
  background: rgba(0, 66, 188, 0.6);
}
main .carousel-play-pause {
  background: #0042BC;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  main .carousel-play-pause {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}
main .carousel-play-pause:hover {
  background: #0042BC;
  transform: scale(1.05);
}
main .carousel-play-pause:active {
  transform: scale(0.95);
}
main .carousel-play-pause .pause-icon,
main .carousel-play-pause .play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
main .activity {
  background: #EDF5FF;
  margin: 40px calc(50% - 50vw) 0;
  width: 100vw;
}
main .activity .inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 40px 0;
  width: 100vw;
}
main .activity .inner .title_area {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  main .activity .inner .title_area {
    gap: 10px;
  }
}
main .activity .inner .title_area h3 {
  font-family: "head_font";
  font-size: 50px;
  color: #0042BC;
  font-weight: normal;
  text-align: center;
  line-height: 0.7;
}
@media screen and (max-width: 768px) {
  main .activity .inner .title_area h3 {
    font-size: 25px;
  }
}
main .activity .inner .title_area h3 small {
  font-family: sans-serif;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  main .activity .inner .title_area h3 small {
    margin-top: 15px;
    display: block;
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  main .activity .inner .title_area img {
    height: 80px;
  }
}
main .activity .inner p.read_text {
  text-align: center;
  margin-top: 20px;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  main .activity .inner p.read_text {
    margin: 20px 0;
  }
}
main .activity .inner ul {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  main .activity .inner ul {
    margin-top: 20px;
    justify-content: center;
    gap: 15px;
    padding: 0 10px;
  }
}
main .activity .inner ul li.activity_block {
  width: 366px;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  main .activity .inner ul li.activity_block {
    width: 47%;
  }
}
main .activity .inner ul li.activity_block h4 {
  font-family: "head_font";
  font-weight: normal;
  line-height: 1;
  background: #387CF9;
  color: #fff;
  font-size: 25px;
  padding: 15px 10px;
}
@media screen and (max-width: 768px) {
  main .activity .inner ul li.activity_block h4 {
    font-size: 16px;
    padding: 10px;
  }
}
main .activity .inner ul li.activity_block h4.en {
  font-size: 30px;
  padding: 10px 10px 16px;
}
@media screen and (max-width: 768px) {
  main .activity .inner ul li.activity_block h4.en {
    font-size: 22px;
    padding: 8px 10px;
  }
}
main .activity .inner ul li.activity_block p {
  padding: 20px 20px 10px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  main .activity .inner ul li.activity_block p {
    padding: 10px;
    font-size: 12px;
  }
}
main .activity .inner ul li.activity_block ul {
  margin-top: 0;
  padding: 0 20px 20px;
  gap: 0;
}
@media screen and (max-width: 768px) {
  main .activity .inner ul li.activity_block ul {
    padding: 0 10px 10px;
  }
}
main .activity .inner ul li.activity_block ul li {
  font-weight: bold;
  line-height: 1.2;
}
main .activity .inner ul li.activity_block ul li em {
  font-style: normal;
  position: relative;
  z-index: 2;
}
main .activity .inner ul li.activity_block ul li em::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -5px;
  z-index: -1;
  left: 0;
  width: 100%;
  height: 10px;
  background: rgba(204, 204, 204, 0.6);
}
@media screen and (max-width: 768px) {
  main .activity .inner ul li.activity_block ul li em::after {
    height: 5px;
    bottom: -2px;
  }
}
main .activity .inner ul li.activity_block ul li span {
  font-family: "DIN Condensed";
  font-size: 50px;
  font-weight: normal;
  color: #E94956;
  display: inline-block;
  margin: 0 5px;
}
@media screen and (max-width: 768px) {
  main .activity .inner ul li.activity_block ul li span {
    font-size: 20px;
    margin: 0;
  }
}
main .activity .inner ul li.activity_block ul li span.large {
  margin-left: 5px;
  margin-bottom: 20px;
  display: inline-block;
  font-size: 30px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  main .activity .inner ul li.activity_block ul li span.large {
    font-size: 18px;
    margin-bottom: 5px;
  }
}
main .activity .inner ul li.activity_block ul li span.small {
  margin-top: 10px;
  display: block;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  main .activity .inner ul li.activity_block ul li span.small {
    margin-top: 5px;
    font-size: 14px;
  }
}
main .activity .inner ul li.activity_block a {
  display: block;
  background: #0042BC;
  border: solid 1px #0042BC;
  color: #fff;
  width: 50%;
  text-align: center;
  line-height: 1;
  padding: 10px 10px;
  font-weight: bold;
  border-radius: 50px;
  margin: 0 auto 20px;
}
@media screen and (max-width: 768px) {
  main .activity .inner ul li.activity_block a {
    width: 80%;
    font-size: 12px;
    margin-bottom: 10px;
  }
}
main .activity .inner ul li.activity_block a:hover {
  background: #fff;
  color: #0042BC;
}
main .activity_report .inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 40px 0 0;
  width: 100vw;
}
@media screen and (max-width: 768px) {
  main .activity_report .inner {
    width: auto;
    padding: 0;
  }
}
main .activity_report .inner .title_area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  main .activity_report .inner .title_area {
    align-items: start;
    gap: 0;
    padding: 20px 0;
  }
}
main .activity_report .inner .title_area h3 {
  font-family: "head_font";
  font-size: 50px;
  color: #0042BC;
  font-weight: normal;
  text-align: center;
  line-height: 0.7;
}
@media screen and (max-width: 768px) {
  main .activity_report .inner .title_area h3 {
    font-size: 25px;
  }
}
main .activity_report .inner .title_area p {
  margin-top: 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  main .activity_report .inner .title_area p {
    margin-top: 15px;
  }
  main .activity_report .inner .title_area p br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  main .activity_report .inner .title_area img {
    height: 50px;
  }
}
main .activity_report .inner .report_area {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  padding: 40px 0 100px;
  background: url(../img/bg_dot.svg) 0 0;
}
main .activity_report .inner .report_area ul {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  main .activity_report .inner .report_area ul {
    gap: 20px;
    justify-content: center;
  }
}
main .activity_report .inner .report_area ul li {
  max-width: 366px;
  height: auto;
}
@media screen and (max-width: 768px) {
  main .activity_report .inner .report_area ul li {
    width: 45%;
  }
}
main .activity_report .inner .report_area ul li 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;
}
main .activity_report .inner .report_area ul li a .photo {
  overflow: hidden;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  main .activity_report .inner .report_area ul li a .photo {
    height: 100px;
  }
}
main .activity_report .inner .report_area ul li a .category {
  margin: 20px 0 0 20px;
  padding: 5px 10px;
  line-height: 1;
  font-size: 14px;
  background: #666;
  border-radius: 3px;
  display: inline-block;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  main .activity_report .inner .report_area ul li a .category {
    font-size: 10px;
    margin: 10px 0 0 10px;
  }
}
main .activity_report .inner .report_area ul li a .category.recipe {
  background: #C87CDB;
}
main .activity_report .inner .report_area ul li a .category.amamo {
  background: #80B992;
}
main .activity_report .inner .report_area ul li a .category.about {
  background: #80A0DD;
}
main .activity_report .inner .report_area ul li a .category.mangrove {
  background: #62CDCD;
}
main .activity_report .inner .report_area ul li a .category.katsudou {
  background: #D1B169;
}
main .activity_report .inner .report_area ul li a .date {
  font-size: 14px;
  padding: 5px 20px;
}
@media screen and (max-width: 768px) {
  main .activity_report .inner .report_area ul li a .date {
    font-size: 10pxx;
    padding: 5px 10px;
  }
}
main .activity_report .inner .report_area ul li a h4 {
  padding: 0 20px 20px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  main .activity_report .inner .report_area ul li a h4 {
    font-size: 12px;
    line-height: 1.3;
    padding: 0 10px 10px;
  }
  main .activity_report .inner .report_area ul li a h4 br {
    display: none;
  }
}
main .activity_report .inner .report_area ul li a:hover {
  border: solid 1px #0042BC;
}
main .activity_report .inner .report_area ul li a:hover .photo img {
  transform: scale(1.1);
}
main .activity_report .inner .report_area ul li a:hover h4 {
  color: #0042BC;
}
main .head_area .category_title {
  font-family: "head_font";
  font-size: 50px;
  color: #C87CDB;
  line-height: 1;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  main .head_area .category_title {
    font-size: 30px;
  }
}
main .head_area .wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  main .head_area .wrap {
    display: block;
  }
}
main .head_area .wrap .text_area {
  max-width: 570px;
}
main .head_area .wrap .text_area h1 {
  font-size: 26px;
  font-weight: normal;
  line-height: 1.3;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  main .head_area .wrap .text_area h1 {
    font-size: 20px;
  }
}
main .head_area .wrap .text_area h2 {
  font-size: 20px;
  font-weight: normal;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  main .head_area .wrap .text_area h2 {
    font-size: 16px;
  }
}
main .head_area .wrap .text_area .chef_profile {
  background: #F6F6F6;
  padding: 20px;
  display: flex;
  gap: 40px;
  align-items: center;
  border-radius: 10px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  main .head_area .wrap .text_area .chef_profile {
    display: block;
    margin: 20px 0;
  }
  main .head_area .wrap .text_area .chef_profile .photo img {
    margin: 0 auto 10px;
  }
}
main .head_area .wrap .text_area .chef_profile .info {
  max-width: 340px;
}
main .head_area .wrap .text_area .chef_profile .info p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  main .head_area .wrap .text_area .chef_profile .info p {
    font-size: 12px;
  }
}
main .head_area .wrap .text_area .chef_profile .info p.name {
  font-size: 16px;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  main .head_area .wrap .text_area .chef_profile .info p.name {
    text-align: center;
    margin-bottom: 10px;
  }
}
main .head_area .wrap .main_photo {
  max-width: 560px;
  overflow: hidden;
}
main .head_area .wrap .main_photo img {
  border-radius: 10px;
}
main .ingredients_howtomake {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  main .ingredients_howtomake {
    margin-top: 40px;
    display: block;
  }
}
main .ingredients_howtomake .ingredients {
  width: 405px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  main .ingredients_howtomake .ingredients {
    width: auto;
    margin-bottom: 20px;
  }
}
main .ingredients_howtomake .ingredients ul li {
  display: flex;
  justify-content: space-between;
  border-bottom: solid 1px #ccc;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  main .ingredients_howtomake .ingredients ul li {
    padding: 10px 0;
  }
}
main .ingredients_howtomake .ingredients ul li .detail_quantity {
  text-align: right;
}
main .ingredients_howtomake .ingredients ul li .num {
  color: #fff;
  padding: 20px 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 40px;
  background: #C87CDB;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  main .ingredients_howtomake .ingredients ul li .num {
    font-size: 14px;
    height: 30px;
    padding: 10px;
    margin-right: 10px;
  }
}
main .ingredients_howtomake .howtomake {
  width: 720px;
}
@media screen and (max-width: 768px) {
  main .ingredients_howtomake .howtomake {
    width: auto;
  }
}
main .ingredients_howtomake .howtomake ol {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  main .ingredients_howtomake .howtomake ol {
    margin-top: 20px;
  }
}
main .ingredients_howtomake .howtomake ol li {
  display: flex;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  main .ingredients_howtomake .howtomake ol li {
    margin-bottom: 20px;
  }
}
main .ingredients_howtomake .howtomake ol li .num {
  color: #fff;
  padding: 20px;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background: #C87CDB;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  main .ingredients_howtomake .howtomake ol li .num {
    font-size: 14px;
    width: 30px;
    height: 30px;
    padding: 10px;
    margin-right: 10px;
  }
}
main .ingredients_howtomake .howtomake ol li p span {
  display: inline-block;
  color: #fff;
  background: #C87CDB;
  border-radius: 40px;
  width: 20px;
  line-height: 1.6;
  font-weight: bold;
  height: 20px;
  text-align: center;
  font-size: 0.8em;
  margin: 0 5px;
}
main .ingredients_howtomake .howtomake ol li p b {
  color: #C87CDB;
}
main .ingredients_howtomake .howtomake .point ul {
  margin-top: 20px;
}
main .ingredients_howtomake .howtomake .point ul li {
  margin-bottom: 20px;
  padding: 10px 20px;
  background: #F0E6FF;
  border-radius: 10px;
}
main .ingredients_howtomake .howtomake .point ul li span {
  display: inline-block;
  color: #fff;
  background: #C87CDB;
  border-radius: 40px;
  line-height: 1.6;
  font-weight: bold;
  height: 20px;
  padding: 0 5px;
  text-align: center;
  font-size: 0.8em;
}
main .other_recipe {
  margin-top: 60px;
}
main .other_recipe ul {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  main .other_recipe ul {
    gap: 20px;
    justify-content: space-between;
  }
}
main .other_recipe ul li {
  width: 366px;
  height: auto;
}
@media screen and (max-width: 768px) {
  main .other_recipe ul li {
    width: 47%;
  }
}
main .other_recipe ul li figure {
  height: 100%;
}
main .other_recipe ul 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;
}
main .other_recipe ul li figure a figcaption {
  color: #000;
  font-weight: bold;
  padding: 20px;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  main .other_recipe ul li figure a figcaption {
    padding: 10px;
  }
}
main .other_recipe ul li figure a:hover {
  border: solid 1px #C87CDB;
  background: #fff;
}
main .other_recipe ul li figure a:hover img {
  transform: scale(1.3);
}
main .other_recipe ul li figure a:hover figcaption {
  color: #C87CDB;
}
main .introduction {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  main .introduction {
    margin-top: 40px;
  }
}
main .introduction .head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  main .introduction .head {
    gap: 15px;
  }
  main .introduction .head img {
    width: 60px;
  }
}
main .introduction .head .text_area {
  text-align: center;
}
main .introduction .head .text_area h4 {
  font-family: head_font;
  font-weight: normal;
  color: #0042BC;
  font-size: 50px;
}
@media screen and (max-width: 768px) {
  main .introduction .head .text_area h4 {
    font-size: 20px;
  }
}
main .introduction .chef_list {
  margin: 40px calc(50% - 50vw) 0;
  width: 100vw;
  background: #F0E6FF;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  main .introduction .chef_list {
    margin: 20px calc(50% - 50vw) 0;
    padding: 20px 0;
  }
}
main .introduction .chef_list .carousel_container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 90px;
  position: relative;
}
@media screen and (max-width: 768px) {
  main .introduction .chef_list .carousel_container {
    padding: 0 50px;
  }
}
main .introduction .chef_list .carousel_wrapper {
  position: relative;
  overflow: hidden;
}
main .introduction .chef_list ul {
  display: flex;
  gap: 40px;
  transition: transform 0.5s ease;
}
main .introduction .chef_list ul li {
  width: calc(100% - 0px);
  flex-shrink: 0;
}
main .introduction .chef_list ul li .chef_profile {
  height: 100%;
  background: #fff;
  padding: 20px;
  display: flex;
  gap: 40px;
  align-items: center;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  main .introduction .chef_list ul li .chef_profile {
    display: block;
  }
}
main .introduction .chef_list ul li .chef_profile .photo img {
  width: 150px;
}
@media screen and (max-width: 768px) {
  main .introduction .chef_list ul li .chef_profile .photo img {
    margin: auto;
  }
}
main .introduction .chef_list ul li .chef_profile .info {
  width: 80%;
}
@media screen and (max-width: 768px) {
  main .introduction .chef_list ul li .chef_profile .info {
    width: auto;
  }
}
main .introduction .chef_list ul li .chef_profile .info p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  main .introduction .chef_list ul li .chef_profile .info p {
    font-size: 12px;
  }
}
main .introduction .chef_list ul li .chef_profile .info p.name {
  font-size: 16px;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  main .introduction .chef_list ul li .chef_profile .info p.name {
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
  }
}
main .introduction .chef_list ul li .chef_profile .info a {
  padding: 5px 30px;
  margin-top: 20px;
  display: inline-block;
  border-radius: 5px;
  color: #fff;
  background: #0042BC;
  border: solid 1px #0042BC;
}
main .introduction .chef_list ul li .chef_profile .info a:hover {
  background: #fff;
  color: #0042BC;
}
@media screen and (max-width: 768px) {
  main .introduction .chef_list ul li .chef_profile .info a {
    text-align: center;
    display: block;
    margin: 20px auto;
  }
}
main .introduction .chef_list .carousel_arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #C87CDB;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  main .introduction .chef_list .carousel_arrow {
    width: 30px;
    height: 30px;
  }
}
main .introduction .chef_list .carousel_arrow.prev {
  left: 0;
}
@media screen and (max-width: 768px) {
  main .introduction .chef_list .carousel_arrow.prev {
    left: 10px;
  }
}
main .introduction .chef_list .carousel_arrow.prev::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-left: 3px solid #C87CDB;
  border-bottom: 3px solid #C87CDB;
  transform: rotate(45deg);
  margin-left: 4px;
}
main .introduction .chef_list .carousel_arrow.next {
  right: 0;
}
@media screen and (max-width: 768px) {
  main .introduction .chef_list .carousel_arrow.next {
    right: 10px;
  }
}
main .introduction .chef_list .carousel_arrow.next::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-right: 3px solid #C87CDB;
  border-bottom: 3px solid #C87CDB;
  transform: rotate(-45deg);
  margin-right: 4px;
}
main .introduction .chef_list .carousel_arrow:hover {
  background: #C87CDB;
}
main .introduction .chef_list .carousel_arrow:hover::before {
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}
main .introduction .chef_list .carousel_dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  padding-bottom: 20px;
}
main .introduction .chef_list .carousel_dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(200, 124, 219, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
main .introduction .chef_list .carousel_dots .dot.active {
  background: #C87CDB;
  width: 30px;
  border-radius: 6px;
}
main .introduction .chef_list .carousel_dots .dot:hover {
  background: rgba(200, 124, 219, 0.6);
}
main .btn_area {
  padding-top: 60px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  main .btn_area {
    padding-top: 20px;
  }
}
main .btn_area a {
  display: inline-block;
  padding: 10px 30px;
  border-radius: 5px;
  border: solid 1px #666;
}
main .btn_area a:hover {
  background: #666;
  color: #fff;
}/*# sourceMappingURL=style.css.map */