@charset "UTF-8";
/* CSS Document */
@font-face {
  font-family: "Zen Maru Gothic Black";
  src: url("font/ZenMaruGothic-Black.ttf") format('truetype');
  font-weight: 900;
  font-style: Heavy;
}
@font-face {
  font-family: "Zen Maru Gothic Bold";
  src: url("font/ZenMaruGothic-Bold.ttf")format('truetype');
  font-weight: 700;
  font-style: Bold;
}
@font-face {
  font-family: "Zen Maru Gothic Light";
  src: url("font/ZenMaruGothic-Light.ttf")format('truetype');
  font-weight: 300;
  font-style: Light;
}
@font-face {
  font-family: "Zen Maru Gothic Medium";
  src: url("font/ZenMaruGothic-Medium.ttf") format('truetype');
  font-weight: 500;
  font-style: Medium;
}
@font-face {
  font-family: "Zen Maru Gothic Regular";
  src: url("font/ZenMaruGothic-Regular.ttf") format('truetype');
  font-weight: 400;
  font-style: Regular;
}
@font-face {
  font-family: "はれのそら明朝";
  src: url("font/Harenosora.otf") format('opentype');
  font-weight: 400;
  font-style: Regular;
}
.main {
  background-color: #f5f5f5;
}
.header {
  background-color: #FFF;
  width: 100%;
  height: 85px;
  position: fixed;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  padding: 0 10vw;
  box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.4);
}
h1 img {
  width: 150px;
  margin-top: 5px;
}
.header a {
  text-decoration: none;
  color: #333;
}
.header_nav ul {
  display: flex;
  justify-content: center;
}
.header_nav li {
  font-size: 1.6rem;
  margin-right: 4vw;
}
.header_nav li:last-child {
  margin-right: 0;
}
.open-button, .close-button {
  display: none;
}
@media(max-width:1160px) {
  .header {
    height: 7vh;
  }
  .open-button {
    display: block;
    position: absolute;
    right: 10px;
    top: 20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
  }
  .open-button span, .open-button span:before, .open-button span:after {
    position: absolute;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #777;
    display: block;
    content: "";
  }
  .open-button span:before {
    bottom: -8px;
  }
  .open-button span:after {
    bottom: -16px;
  }
  .close-button {
    font-family: 'Zen Maru Gothic Medium';
    font-weight: 500;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    color: #FFF;
    font-size: 20px;
    padding: 20px;
  }
  .header_nav {
    display: none;
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #e4af9b;
    width: 70%;
    height: 100%;
    padding-top: 67px;
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.4);
  }
  .header_nav ul {
    flex-direction: column;
    align-items: center;
    margin: 0;
  }
  .header_nav ul li {
    margin-right: 0;
  }
  .header_nav ul li a {
    font-family: 'Zen Maru Gothic Medium';
    font-weight: 500;
    text-decoration: none;
    color: #FFF;
    vertical-align: middle;
    line-height: 40px;
  }
}
@media(min-width:1160px) {
  .header {
    height: 83px;
  }
  .header-content-wrapper {
    max-width: 1160px;
    margin-left: auto;
    position: relative;
  }
  .header h1 {
    width: 100%;
    padding-top: 20px;
    position: absolute;
    right: 60vw;
  }
  .header_nav {
    display: block;
    text-align: right;
  }
  .header_nav li a {
    display: block;
    padding: 26px 30px 0;
    color: #333;
    text-decoration: none;
    font-size: 1.6rem;
    height: 8vh;
  }
}
.section_top {
  margin-bottom: 5vw;
}
.section_top_img {
  margin-top: 83px;
}
.section_top_img img {
  width: 100%;
}
@media(max-width:1160px) {
  .section_top_img {
    margin-top: 6vh;
  }
  .section_top_img img {
    width: 100%;
    height: 100%;
  }
}
.section_lead {
  max-width: 1300px;
  margin: 0 auto 4vw;
  padding: 0 5vw 8vw;
  position: relative;
}
.section_lead_img {
  width: 100%;
  margin-bottom: 2vw;
}
.section_lead_img img {
  width: 25%;
}
.section_lead p {
  font-family: 'Zen Maru Gothic Medium';
  font-weight: 500;
  text-align: center;
  line-height: 2.0;
  margin-bottom: 5vw;
  font-size: 1.8rem;
}
.section_lead_induction {
  width: 40%;
  margin: 0 auto;
}
.section_lead_induction img {
  width: 100%;
}
.section_lead_paprika {
  position: absolute;
  right: 15%;
  bottom: 1%;
  width: 13%;
  min-width: 100px;
}
@media(max-width:1160px) {
  .section_lead {
    max-width: 1300px;
    margin: 0 auto 10vw;
    padding: 0 5vw 8vw;
    position: relative;
  }
  .section_lead_img {
    width: 100%;
    margin-bottom: 2vw;
    position: relative;
  }
  .section_lead_img img {
    width: 30%;
  }
  .section_lead p {
    font-size: 1.2rem;
  }
  .section_lead_induction {
    width: 100%;
    margin: 0 auto;
  }
  .section_lead_induction img {
    width: 100%;
  }
  .section_lead_paprika img {
   display: none;
  }
}
.section_cause {
  background-color: #f3eed5;
  padding: 5vw;
  margin-bottom: 5vw;
}
.section_cause_title_img_pc {
  width: 60%;
  margin: 0 auto 4vw;
}
.section_cause_title_img_pc img {
  width: 100%;
}
.section_cause_title_img_mobile {
  display: none;
}
.section_cause_img {
  width: 70%;
  margin: 0 auto 8vw;
}
.section_cause_img:last-child {
  margin: 0 auto 0;
}
.section_cause_img img {
  width: 100%;
}
@media(max-width:1160px) {
  .section_cause {
    background-color: #f3eed5;
    padding: 5vw;
    margin-bottom: 12vw;
  }
  .section_cause_title_img_pc {
    display: none;
  }
  .section_cause_title_img_mobile {
    display: block;
    width: 80%;
    margin: 0 auto 4vw;
  }
  .section_cause_title_img_mobile img {
    width: 100%;
  }
  .section_cause_img {
    width: 100%;
    margin: 0 auto 8vw;
  }
  .section_cause_img:last-child {
    margin: 0 auto 0;
  }
  .section_cause_img img {
    width: 100%;
  }
}
.quality_assurance {
  position: relative;
  padding: 0 5vw 0;
  margin-bottom: 5vw;
}
.quality_assurance_img {
  width: 70%;
  margin: 0 auto;
}
.quality_assurance_img img {
  width: 100%;
}
.quality_assurance_p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.quality_assurance_p p {
  margin-bottom: 2vw;
}
.quality_assurance_p p:last-child {
  margin-bottom: 0;
}
.quality_assurance h2 {
  font-size: 6rem;
  font-family: 'Zen Maru Gothic Bold';
  font-weight: 700;
  margin-bottom: 3vw;
}
.quality_assurance_p_under {
  font-size: 3rem;
  font-family: 'Zen Maru Gothic Medium';
  font-weight: 500;
  background: linear-gradient(transparent 70%, #d4dfbb 50%);
}
.quality_assurance_p_explanation {
  font-size: 2rem;
  font-family: "Zen Maru Gothic Regular";
  font-weight: 400;
  display: block;
  line-height: 165%;
}
@media(max-width:1280px) {
  .quality_assurance {
    position: relative;
    padding: 0 5vw 0;
    margin-bottom: 12vw;
  }
  .quality_assurance_img {
    width: 70%;
    margin: 0 auto;
  }
  .quality_assurance_img img {
    width: 100%;
  }
  .quality_assurance h2 {
    font-size: 4rem;
    margin-bottom: 3vw;
  }
  .quality_assurance_p_under {
    font-size: 2rem;
    background: linear-gradient(transparent 70%, #d4dfbb 50%);
    margin-bottom: 2vw;
  }
  .quality_assurance_p_explanation {
    font-size: 1.5rem;
    display: block;
    line-height: 165%;
  }
}
@media(max-width:980px) {
  .quality_assurance {
    position: relative;
    padding: 0 5vw 0;
    margin-bottom: 12vw;
  }
  .quality_assurance_img {
    width: 70%;
    margin: 0 auto;
  }
  .quality_assurance_img img {
    width: 100%;
  }
  .quality_assurance h2 {
    font-size: 2rem;
    margin-bottom: 3vw;
  }
  .quality_assurance_p_under {
    font-size: 1.5rem;
    background: linear-gradient(transparent 70%, #d4dfbb 50%);
    margin-bottom: 2vw;
  }
  .quality_assurance_p_explanation {
    font-size: 1rem;
    display: block;
    line-height: 165%;
  }
}
@media(max-width:760px) {
  .quality_assurance {
    position: relative;
    padding: 0 5vw 0;
    margin-bottom: 12vw;
  }
  .quality_assurance_img {
    width: 80%;
    margin: 0 auto;
  }
  .quality_assurance_img img {
    width: 100%;
  }
  .quality_assurance h2 {
    font-size: 3rem;
    margin-bottom: 3vw;
  }
  .quality_assurance_p_under {
    font-size: 1.5rem;
    background: linear-gradient(transparent 70%, #d4dfbb 50%);
    margin-bottom: 2vw;
  }
  .quality_assurance_p_explanation {
    font-size: 1rem;
    display: block;
    line-height: 165%;
  }
}
@media(max-width:640px) {
  .quality_assurance {
    position: relative;
    padding: 0 5vw 0;
    margin-bottom: 12vw;
  }
  .quality_assurance_img {
    width: 100%;
    margin: 0 auto;
  }
  .quality_assurance_img img {
    width: 100%;
  }
  .quality_assurance h2 {
    font-size: 2rem;
    margin-bottom: 2vw;
  }
  .quality_assurance_p_under {
    font-size: 1.5rem;
    background: linear-gradient(transparent 70%, #d4dfbb 50%);
    margin-bottom: 2vw;
  }
  .quality_assurance_p_explanation {
    font-size: 1rem;
    display: block;
    line-height: 165%;
  }
}
@media(max-width:580px) {
  .quality_assurance {
    position: relative;
    padding: 0 5vw 0;
    margin-bottom: 12vw;
  }
  .quality_assurance_img {
    width: 90%;
    margin: 0 auto;
  }
  .quality_assurance_img img {
    width: 100%;
    height: 40vh;
  }
  .quality_assurance h2 {
    font-size: 2rem;
    margin-bottom: 2vw;
  }
  .quality_assurance_p_under {
    font-size: 1.3rem;
    background: linear-gradient(transparent 70%, #d4dfbb 50%);
    margin-bottom: 2vw;
  }
  .quality_assurance_p_explanation {
    font-size: 0.8rem;
    display: block;
    line-height: 165%;
  }
}
.section_induction {
  text-align: center;
  background-color: #f3eed5;
  position: relative;
  padding: 5vw 5vw 10vw;
  margin-bottom: 5vw;
}
.section_induction_subtitle_img {
  width: 30%;
  margin: 0 auto 2vw;
}
.section_induction_subtitle_img img {
  width: 100%;
}
.section_induction_title_img {
  width: 50%;
  margin: 0 auto 3vw;
}
.section_induction_title_img img {
  width: 100%;
}
.section_induction ul {
  display: flex;
  justify-content: center;
  max-width: 1300px;
  margin: 0 auto 2vw;
  list-style: none;
}
.section_induction ul li {
  width: 50%;
  margin-right: 2vw;
}
.section_induction ul li:last-child {
  margin-right: 0;
}
.section_induction ul li img {
  width: 100%;
}
.section_induction_induction {
  width: 40%;
  margin: 0 auto;
}
.section_induction_induction img {
  width: 100%;
}
.section_induction_tomato {
  display: inline-block;
  width: 13%;
  position: absolute;
  bottom: 3%;
  left: 15%;
}
.section_induction_tomato img {
  width: 100%;
  animation: tomato 2s ease infinite;
}
@keyframes tomato {
  0% {
    transform: translateX(0);
  }
  5% {
    transform: translateX(0);
  }
  10% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-20px);
  }
  25% {
    transform: translateX(0);
  }
  30% {
    transform: translateX(-20px);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0);
  }
}
@media(max-width:1160px) {
  .section_induction {
    position: relative;
    margin-bottom: 12vw;
  }
  .section_induction_subtitle_img {
    width: 50%;
    margin: 0 auto 2vw;
  }
  .section_induction_subtitle_img img {
    width: 100%;
  }
  .section_induction_title_img {
    width: 80%;
    margin: 0 auto 3vw;
  }
  .section_induction_title_img img {
    width: 100%;
  }
  .section_induction ul {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: 0 auto 2vw;
    list-style: none;
  }
  .section_induction ul li {
    width: 100%;
    margin-right: 0vw;
  }
  .section_induction ul li:first-child {
    margin-bottom: 2vw;
  }
  .section_induction ul li:last-child {
    margin-right: 0vw;
  }
  .section_induction ul li img {
    width: 100%;
  }
  .section_induction_induction {
    width: 100%;
    margin: 0 auto;
  }
  .section_induction_induction img {
    width: 100%;
  }
  .section_induction_tomato {
    display: none;
  }
}
.section_farmars {
  padding: 0 5vw;
  margin-bottom: 5vw;
}
.section_farmars_subtitle {
  width: 30%;
  margin: 0 auto 3vw;
}
.section_farmars_subtitle img {
  width: 100%;
}
.section_farmars_title {
  width: 40%;
  margin: 0 auto 4vw;
}
.section_farmars_title img {
  width: 100%;
}
.section_farmars ul {
  display: flex;
  justify-content: center;
  list-style: none;
  max-width: 1300px;
  margin: 0 auto;
  margin-bottom: 4vw;
}
.section_farmars ul:last-child {
  margin-bottom: 0;
}
.section_farmars ul li {
  width: 50%;
}
.section_farmars_producer_appeal, .section_farmars_producer_img {
  width: 100%;
}
.section_farmars_producer_appeal img, .section_farmars_producer_img img {
  width: 100%;
}
@media(max-width:1160px) {
  .section_farmars {
    padding: 0 5vw;
    margin-bottom: 14vw;
  }
  .section_farmars_subtitle {
    width: 50%;
    margin: 0 auto 1vw;
  }
  .section_farmars_title {
    width: 60%;
    margin: 0 auto 4vw;
  }
  .section_farmars ul {
    display: inline;
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 4vw;
  }
  .section_farmars ul li {
    width: auto;
  }
}
.section_customer_reviews {
  text-align: center;
  background-color: #f3eed5;
  padding: 5vw;
  margin-bottom: 5vw;
}
.section_customer_reviews_subtitle {
  width: 30%;
  margin: 0 auto 3vw;
}
.section_customer_reviews_subtitle img {
  width: 100%;
}
.section_customer_reviews_title {
  width: 50%;
  margin: 0 auto 3vw;
}
.section_customer_reviews_title img {
  width: 100%;
}
.section_customer_reviews ul {
  display: flex;
  justify-content: center;
  text-align: center;
  list-style: none;
  max-width: 1300px;
  margin: 0 auto 2vw;
}
.slick-dots{
  display: flex;
}
.section_customer_reviews ul:last-child {
  margin-bottom: 0;
}
.section_customer_reviews ul li {
  display: inline-block;
  width: 33.3%;
  margin-right: 3vw;
}
.section_customer_reviews ul li:last-child {
  margin-right: 0;
}
.section_customer_reviews_human {
  width: 100%;
  margin-bottom: 1vh;
}
.section_customer_reviews_human img {
  width: 100%;
}
.section_customer_reviews ul p {
  font-family: 'Zen Maru Gothic Medium';
  font-weight: 500;
  font-size: 1.6rem;
  background-color: #FFF;
  border-radius: 10px;
  height: 230px;
  width: 100%;
  padding: 1vw;
  text-align: left;
}
@media(max-width:1160px) {
  .section_customer_reviews {
    margin-bottom: 12vw;
  }
  .section_customer_reviews_subtitle {
    width: 50%;
  }
  .section_customer_reviews_title {
    width: 90%;
  }
   .section_customer_reviews ul {
    display: block;
  }
  .section_customer_reviews ul li {
    width: auto;
  }
  .section_customer_reviews ul p {
    font-family: 'Zen Maru Gothic Medium';
    font-weight: 500;
    font-size: 1.6rem;
    background-color: #FFF;
    border-radius: 10px;
    height: 230px;
    width: 100%;
    padding: 1vw;
    text-align: left;
  }
}
.section_question {
  padding: 0 5vw 0;
  margin-bottom: 5vw;
}
.section_question h2 {
  font-family: 'はれのそら明朝';
  font-weight: 500;
  font-size: 6rem;
  text-shadow: 1px 1px 0 #5b424c;
  letter-spacing: 30px;
  margin-bottom: 6vw;
}
.section_question dl {
  text-align: left;
  max-width: 1140px;
  margin: 0 auto;
  width: 82%;
}
.section_question dl dt {
  padding: 0.5vw 3vw;
  background-color: #d4dfbb;
  font-size: 1.8rem;
  font-weight: bold;
}
.section_question dd {
  padding: 1.5vw 3vw;
  background-color: #FFF;
  margin-bottom: 2vw;
}
.section_question dd:last-child {
  margin-bottom: 0;
}
.section_question_ans {
  font-weight: bold;
}
@media(max-width:1160px) {
  .section_question {
    margin-bottom: 12vw;
  }
  .section_question h2 {
    font-size: 3rem;
    letter-spacing: 20px;
  }
  .section_question dl {
    text-align: left;
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
  }
  .section_question dl dt {
    padding: 3vw;
    font-size: 1.3rem;
    font-weight: bold;
  }
  .section_question dd {
    padding: 3vw;
    font-size: 1.3rem;
    margin-bottom: 6vw;
  }
}
.section_lead_paprika img {
  animation: paprika 2s ease infinite;
}
@keyframes paprika {
  0% {
    transform: translateY(0);
  }
  5% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-20px);
  }
  25% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
.footer {
  color: #f5f5f5;
  padding-bottom: 5vw;
}
.footer__copyright {
  color: #9b9b9b;
}
@media(max-width:1160px){
  .footer {
    padding-bottom: 2vw;
    font-size: 1rem;
}
}