@charset "UTF-8";
/* CSS Document */
/**/
/* ここからヘッダー */
.header {
  width: 100%;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.75);
  box-shadow: 0 4px 5px rgba(3, 3, 3, 0.3);
  z-index: 999;
  position: fixed;
}
.section-top_lead_contain {
  max-width: 1440px;
  margin: 0 auto;
}
.header-wrapper {
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}
.header-wrapper_logo {
  text-align: left;
  padding-top: 22px;
  margin-right: auto;
}
.header-wrapper_navigation {
  padding-top: 37px;
}
.header-wrapper_navigation ul li {
  display: inline-block;
  font-size: 2.4rem;
  margin-left: 65px;
}
.header-wrapper_navigation ul li a {
  text-decoration: none;
  color: #333;
}
.header-wrapper_navigation ul li a:hover {
  opacity: 0.7;
}
.menu-checkbox {
  display: none;
}
/* ここからヘッダーのレスポンシブ対応 */
@media (max-width: 1024px) {
  .header-wrapper_logo {
    padding-left: 24px;
  }
  .header-wrapper_navigation {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%; /* ハンバーガーメニューの幅 */
    height: 100%;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out 0s;
    background-color: #d0e3bf;
    padding: 150px 50px 100px;
    z-index: 20;
    box-shadow: 5px 5px 7px rgba(0, 0, 0, 0.3);
  }
  .header-wrapper_navigation ul li {
    display: block;
    padding-bottom: 30px;
    border-bottom: 2px dashed rgba(255, 255, 255, 1.00);
    margin: 0 0 30px 0;
  }
  .menu-checkbox:checked ~ .header-wrapper_navigation {
    transform: translateX(0);
  }
  .drawer-icon {
    cursor: pointer;
    position: fixed;
    top: 30px;
    right: 24px;
    justify-content: center;
    align-items: center;
    z-index: 30;
    width: 50px;
    height: 50px;
  }
  .drawer-icon span, .drawer-icon span:before, .drawer-icon span:after {
    content: '';
    display: block;
    height: 3px;
    width: 45px;
    border-radius: 3px;
    background-color: #8D8D8D;
    position: absolute;
    transition: all 0.5s ease-in-out 0s;
  }
  .drawer-icon span::before {
    bottom: -15px;
  }
  .drawer-icon span::after {
    bottom: -30px;
  }
  .menu-checkbox:checked ~ .drawer-icon {
    background-color: #d0e3bf;
  }
  /* 閉じるボタン */
  .menu-checkbox:checked ~ .drawer-icon span {
    background-color: rgba(255, 255, 255, 0);
    position: relative;
    top: 30px;
  }
  .menu-checkbox:checked ~ .drawer-icon span::before {
    bottom: 0;
    transform: rotate(-45deg);
    background-color: #fff;
  }
  .menu-checkbox:checked ~ .drawer-icon span::after {
    top: 0;
    transform: rotate(45deg);
    background-color: #fff;
  }
  /* ハンバーガーメニューの裏 */
  .menu-background {
    display: none;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    transition: all 0.5s ease-in-out 0s;
  }
  .menu-checkbox:checked ~ .menu-background {
    display: block;
    opacity: 0.3;
  }
}
@media (max-width: 650px) {
  .header {
    height: 60px;
  }
  .header-wrapper_logo {
    padding-top: 13px;
  }
  .header-wrapper_logo img {
    width: 110px;
  }
  .header-wrapper_navigation {
    padding: 100px 24px 70px;
    box-shadow: 5px 5px 7px rgba(0, 0, 0, 0.3);
  }
  .header-wrapper_navigation ul li {
    font-size: 1.8rem;
    padding-bottom: 15px;
  }
  .drawer-icon {
    top: 15px;
    right: 24px;
    width: 30px;
    height: 30px;
  }
  .drawer-icon span, .drawer-icon span:before, .drawer-icon span:after {
    width: 30px;
    position: absolute;
  }
  .drawer-icon span::before {
    bottom: -10px;
  }
  .drawer-icon span::after {
    bottom: -20px;
  }
}
/**/
/* ここからトップ */
.section-top_image {
  background-image: url("../images/top/top_photo.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 650px;
  padding: 140px 0 0 112px;
}
.section-top_image_contain {
  max-width: 1440px;
  margin: 0 auto;
}
.section-top_catchcopy {
  font-family: maru-maru-gothic-clr-stdn, sans-serif;
  font-weight: 400;
  font-size: 3.6rem;
  color: #67a33b;
  writing-mode: vertical-rl; /* 縦書き */
  text-align: justify; /* 上揃え */
}
.section-top_catchcopy h1 {
  background-color: #fff;
  padding: 20px 15px;
  margin-right: 36px;
  display: inline-block;
}
/* ここからトップのレスポンシブ対応 */
@media (max-width: 650px) {
  .section-top_image {
    background-position: 25% 30%;
    height: 600px;
    padding: 390px 24px 0 24px;
  }
  .section-top_catchcopy {
    font-size: 2.4rem;
    writing-mode: horizontal-tb; /* 横書き */
  }
  .section-top_catchcopy_mobile {
    display: block; /* 要素を縦並び */
  }
  .section-top_catchcopy h1 {
    padding: 10px;
    margin-right: 0; /* PC版のmargin打ち消し */
    margin-bottom: 20px;
  }
}
/**/
/* ここからリード */
.section-top_lead {
  padding: 45px 120px 90px;
}
.section-top_lead_contain {
  display: flex; /* 鉤括弧と文章を横並び */
}
/* 鉤括弧 */
.section-top_lead_kakko1, .section-top_lead_kakko2 {
  position: relative;
  bottom: 0px;
  display: inline-block;
}
.section-top_lead_kakko1 {
  margin-right: 75px;
}
.section-top_lead_kakko2 {
  margin-left: 75px;
}
.section-top_lead_kakko1 img {
  position: absolute;
  left: 0px;
  top: 0px;
}
.section-top_lead_kakko2 img {
  position: absolute;
  right: 0px;
  bottom: 40px;
}
/* 文章 */
.section-top_lead_description {
  display: inline-block;
  padding-top: 50px;
  font-size: 2.4rem;
  line-height: 3.6rem;
  margin: 0 auto 95px;
}
.section-top .underbar1 {
  display: inline-block;
  height: 3.5rem;
  background-image: url("../images/lead/under-line_lead1.png");
  background-repeat: no-repeat;
  background-position: bottom;
}
.section-top .underbar2 {
  display: inline;
  height: 3.5rem;
  background-image: url("../images/lead/under-line_lead2.png");
  background-repeat: no-repeat;
  background-position: bottom;
}
/* ボタン */
.section-top_lead_button button {
  background-color: #f9695f;
  border-radius: 20px;
  padding: 10px 20px 10px 10px;
  font-size: 3.0rem;
  vertical-align: middle;
  box-shadow: 4px 4px 5px rgba(200, 84, 76, 0.40);
  border: none;
  outline: none;
  text-decoration: none;
  color: #fff;
  font-family: fot-tsukuardgothic-std, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
.section-top_lead_button button:hover {
  opacity: 0.9;
}
.section-top_lead_button button:active {
  transform: translate3d(4px, 4px, 0);
  box-shadow: none;
}
.section-top_lead-first_pc {
  vertical-align: middle;
  margin-right: 20px;
}
.section-top_lead-first_mobile {
  display: none;
}
.section-top_lead-arrow {
  margin: 0 0 3px 20px;
}
/* ここからリードのレスポンシブ対応 */
@media (max-width: 1024px) {
  .section-top_lead {
    padding: 45px 24px 90px;
  }
  .section-top_lead_description {
    text-align: left;
  }
  .section-top_lead_description .sp {
    display: none;
  }
}
@media (max-width: 650px) {
  .section-top_lead {
    padding: 30px 24px 60px;
  }
  /* 鉤括弧 */
  .section-top_lead_kakko1 {
    margin-right: 40px;
  }
  .section-top_lead_kakko2 {
    margin-left: 40px;
  }
  .section-top_lead_kakko1 img, .section-top_lead_kakko2 img {
    width: 13vw;
    max-width: 90px;
  }
  /* 文章 */
  .section-top_lead_description {
    font-size: 1.6rem;
    line-height: 2.4rem;
    padding-top: 35px;
    margin-bottom: 70px;
  }
  .section-top .underbar1 {
    height: 2.5rem;
    background-size: 100% 35%;
  }
  .section-top .underbar2 {
    height: 2.5rem;
    background-size: 100% 35%;
  }
  /* ボタン */
  .section-top_lead_button button {
    max-width: 327px;
    padding: 10px;
    font-size: 2.0rem;
  }
  .section-top_lead-first_pc {
    display: none;
  }
  .section-top_lead-first_mobile {
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
  }
  .section-top_lead-arrow {
    margin: 0 10px;
  }
}
@media (max-width: 372px) {
  .section-top_lead_button button {
    font-size: 1.6rem;
    padding: 10px;
  }
  .section-top_lead-first_mobile {
    width: 30px;
    margin-right: 5px;
  }
  .section-top_lead-arrow {
    width: 9px;
    margin-left: 5px;
  }
}
@media (max-width: 291px) {
  .section-top_lead_button button {
    font-size: 1.4rem;
  }
}
/**/
/* ここからオススメ */
.section-recomend {
  background-color: #f0e6d8;
}
.section-recomend .sp {
  display: none;
}
.section-recomend_filter {
  background-image: url("../images/recomend/moya-spyral.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}
.section-recomend_wrapper {
  padding-top: 35px;
  margin: 0 auto;
}
/* タイトル */
.section-recomend_check {
  display: inline-block;
  margin-right: 23px;
  vertical-align: -15px;
}
.section-recomend_title {
  color: #6d604e;
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 65px;
}
.section-recomend_title_01, .section-recomend_title_02 {
  display: inline-block;
}
.section-recomend_title_02 {
  text-indent: -10px;
}
/* 内容 */
.section-recomend_wrapper ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}
.section-recomend_wrapper ul li {
  margin: 0 30px;
}
.section-recomend_speech {
  position: relative;
  height: 260px;
  width: 390px;
  margin-bottom: 10px;
}
.section-recomend_speech img {
  width: 100%;
}
.speech_mobile {
  display: none;
}
.section-recomend_speech p {
  font-size: 2.4rem;
  line-height: 3.6rem;
  position: absolute;
  width: 100%;
  top: 25%;
}
/* ここからオススメのレスポンシブ対応 */
@media (max-width: 1024px) {
  .section-recomend .sp {
    display: block;
  }
  .section-recomend h2 {
    line-height: 7.2rem;
  }
  .section-recomend_check {
    margin: 0;
    vertical-align: -15px;
  }
  .section-recomend_title_02 {
    margin-bottom: 65px;
    display: block;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 650px) {
  .section-recomend h2 {
    font-size: 3.0rem;
    line-height: 4.5rem;
  }
  .section-recomend_title {
    margin-bottom: 35px;
  }
  .section-recomend_title_01 {
    margin: 0;
  }
  .section-recomend_title_02 {
    margin-bottom: 0;
  }
  .section-recomend_check {
    width: 40px;
    vertical-align: -5px;
  }
  /* 内容 */
  .section-recomend_wrapper ul {
    display: block;
  }
  .section-recomend_wrapper ul li {
    margin: 0;
  }
  .section-recomend_speech {
    width: 100%;
    max-width: 390px;
    margin: 0 auto 10px;
    height: auto;
  }
  .section-recomend_wrapper p {
    font-size: 1.6rem;
    line-height: 2.4rem;
    top: 33%;
  }
  /* 悩み1、2つ目 */
  .speech_pc {
    display: none;
  }
  .speech_mobile {
    display: block;
    width: 100%;
    height: 145px;
  }
  .section-recomend_speech_image_pc {
    display: none; /* 主婦のイラスト */
  }
  /* 悩み3つ目 */
  .section-recomend_worry03 .section-recomend_speech {
    height: 175px;
  }
  .section-recomend_worry03 .section-recomend_speech img {
    height: 100%;
  }
  .section-recomend_worry03 p {
    top: 27%;
  }
}
/**/
/* ここから3つの理由 */
.section-reason {
  padding: 70px 0;
  /* ヘッダー分＋余白100px */
  padding-top: 200px;
  margin-top: -100px;
}
.section-reason h2 {
  font-size: 4.8rem;
  line-height: 7.2rem;
  color: #485042;
  display: inline-block;
}
.section-reason_gliter {
  vertical-align: -10px;
}
.section-reason_title {
  margin-bottom: 55px;
}
.section-reason_title .sp {
  display: none;
}
.section-reason_gliter_tablet {
  display: none;
}
.section-reason_gliter_mobile {
  display: none;
}
.section-reason_title_01 {
  margin-left: 30px;
}
.section-reason_title_02 {
  margin-right: 30px;
}
.section-reason ol {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  max-width: 1280px;
  margin: 0 auto;
}
.section-reason ol li {
  margin: 0 70px 30px;
  max-width: 285px
}
.circle {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 270px;
  height: 270px;
  color: #485042;
  padding-top: 38px;
  margin: 0 auto 30px;
}
.section-reason_circle01 {
  background-image: url("../images/reason/01_bg.png");
}
.section-reason_circle02 {
  background-image: url("../images/reason/02_bg.png");
}
.section-reason_circle03 {
  background-image: url("../images/reason/03_bg.png");
}
.section-reason_number {
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.circle h3 {
  font-size: 2.4rem;
  line-height: 3.6rem;
  padding-top: 20px;
}
.section-reason ol li p {
  text-align: left;
}
/* ここから3つの理由のレスポンシブ対応 */
@media (max-width: 1024px) {
  .section-reason_title .sp {
    display: block;
  }
  .section-reason_gliter.pc {
    display: none;
  }
  .section-reason_gliter_mobile {
    display: none;
  }
  .section-reason_gliter_tablet {
    display: inline-block;
    vertical-align: -10px;
  }
  .section-reason_title_01 {
    margin-left: 0;
  }
  .section-reason_title_02 {
    margin-left: 30px;
  }
}
@media (max-width: 650px) {
  .section-reason {
    /* ヘッダー分＋余白100px */
    padding-top: 120px;
    margin-top: -60px;
  }
  .section-reason_title {
    margin-bottom: 35px;
  }
  .section-reason h2 {
    font-size: 3.0rem;
    line-height: 4.5rem;
  }
  .section-reason_gliter {
    display: none;
  }
  .section-reason_gliter_tablet {
    display: none;
  }
  .section-reason_gliter_mobile {
    display: inline-block;
    vertical-align: -30px;
  }
  .section-reason ol li {
    display: block;
  }
}
@media (max-width: 307px) {
  .section-reason_gliter_mobile {
    display: none;
  }
}
/* ここから商品販売 */
.section-product {
  background-image: url("../images/product/corkbord.jpeg");
  padding: 60px 120px;
}
.section-product_wrapper {
  background-image: url("../images/product/paper.jpeg");
  padding: 35px 30px 60px;
  max-width: 1440px;
  margin: 0 auto;
  box-shadow: 3px 3px 20px 5px #967143;
}
.section-product_pin {
  display: flex;
  justify-content: flex-start;
}
.section-product_pin img:last-child {
  margin-left: auto;
}
.section-product_title {
  margin-bottom: 25px;
}
.section-product_title_mobile {
  display: none;
}
.section-product_subtitle {
  margin-bottom: 55px;
}
.section-product_subtitle h3 {
  font-family: ta-koigokoro, sans-serif;
  font-size: 2.4rem;
  display: inline-block;
  text-align: left;
  position: relative;
  z-index: 2;
  text-indent: -15px;
}
.section-product_subtitle h3::after {
  content: url("../images/product/sun_illust.png");
  padding-left: 10px;
  position: absolute;
  bottom: -10px;
  right: -55px;
}
.section-product_subtitle .sp {
  display: none;
}
.section-product ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto 30px;
  list-style: none;
  text-align: left;
}
.section-product ul li {
  margin: 0 50px 30px;
}
.section-product_product-photo {
  width: 400px;
  height: 250px;
  border-radius: 20px 20px 0 0;
  vertical-align: top;
}
.section-product_description {
  background-color: #ccdd8b;
  padding: 30px;
  border-radius: 0 0 20px 20px;
}
.section-product_description h4 {
  font-size: 2.4rem;
  line-height: 3.6rem;
  font-weight: 700;
  text-indent: -1.0rem;
  margin-bottom: 10px;
}
.section-product_description p span {
  font-size: 2.4rem;
  font-weight: 700;
}
/* ボタン */
.section-product_button button {
  background-color: #f9695f;
  border-radius: 20px;
  padding: 10px 20px 10px 10px;
  font-size: 3.0rem;
  vertical-align: middle;
  box-shadow: 4px 4px 5px rgba(200, 84, 76, 0.40);
  border: none;
  outline: none;
  text-decoration: none;
  color: #fff;
  font-family: fot-tsukuardgothic-std, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
.section-product_button button:hover {
  opacity: 0.9;
}
.section-product_button button:active {
  transform: translate3d(4px, 4px, 0);
  box-shadow: none;
}
.section-product-first_pc {
  vertical-align: middle;
  margin-right: 20px;
}
.section-product-first_mobile {
  display: none;
}
.section-product-arrow {
  margin: 0 0 3px 20px;
}
/* ここから商品販売のレスポンシブ対応 */
@media (max-width: 1024px) {
  .section-product_title_pc {
    display: none;
  }
  .section-product_title_mobile {
    display: block;
    width: 90%;
    margin: 0 auto;
  }
}
@media (max-width: 800px) {
  .section-product_subtitle h3 {
    font-size: 1.6rem;
    margin-right: 10px;
    text-indent: -20px;
  }
  .section-product_subtitle h3::after {
    right: -55px;
  }
  /* ボタン */
  .section-product_button button {
    max-width: 327px;
    padding: 10px;
    font-size: 2.0rem;
  }
  .section-product-first_pc {
    display: none;
  }
  .section-product-first_mobile {
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
  }
  .section-product-arrow {
    margin: 0 10px;
  }
}
@media (max-width: 650px) {
  .section-product {
    padding: 60px 0;
  }
  .section-product_pin {
    margin-bottom: 30px;
  }
  .section-product_pin img {
    width: 20px;
  }
  .section-product_wrapper {
    padding: 15px 24px 60px;
  }
  .section-product_subtitle {
    margin-bottom: 30px;
  }
  .section-product ul li {
    margin: 0 0 30px;
  }
  .section-product_product-photo {
    width: 100%;
    height: auto;
  }
  .section-product_description {
    padding: 25px;
  }
  .section-product_description h4 {
    font-size: 2.0rem;
    line-height: 3.0rem;
  }
  .section-product_description p span {
    font-size: 2.0rem;
  }
}
@media (max-width: 372px) {
  .section-product_title_mobile {
    margin-bottom: 10px;
  }
  .section-product_subtitle .sp {
    display: inline-block;
  }
  .section-product_button button {
    font-size: 1.6rem;
    padding: 10px;
  }
  .section-product-first_mobile {
    width: 30px;
    margin-right: 5px;
  }
  .section-product-arrow {
    width: 9px;
    margin-left: 5px;
  }
}
@media (max-width: 291px) {
  .section-product_button button {
    font-size: 1.4rem;
  }
}
/**/
/* ここから品質保証 */
.section-quality {
  padding: 55px 90px 0;
}
.section-quality_wrapper {
  background-image: url("../images/quality/bg_left.png"), url("../images/quality/bg_right.png");
  background-repeat: no-repeat;
  background-position: left 0% top 0%, right 10% bottom 5%;
  background-size: 30% auto, 30% auto;
  margin: 0 auto 20px;
  text-align: left;
  max-width: 1440px;
}
.section-quality_title {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.section-quality_title h2 {
  display: inline-block;
  font-size: 4.8rem;
  line-height: 7.2rem;
  color: #6d604e;
  text-align: center;
  margin: 55px 50px 55px 200px;
}
.section-quality_title img {
  padding-bottom: 10px;
  width: 15%;
}
.section-quality_description {
  max-width: 880px;
  margin: 0 auto;
  text-align: left;
  line-height: 4.0rem;
}
.section-quality_description_01, .section-quality_description_02, .section-quality_description_03 {
  padding-bottom: 40px;
}
.section-quality_description_01 span {
  display: inline;
  font-size: 3.0rem;
  background-image: url("../images/quality/underline1.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 150px 10px;
}
.section-quality_description_02 span {
  display: inline;
  background-image: url("../images/quality/underline2.png");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 820px 10px;
  font-size: 2.4rem;
}
.section-quality_description_03 span {
  display: inline;
  background-image: url("../images/quality/underline3.png");
  background-repeat: no-repeat;
  background-position: right 5px bottom;
  background-size: 183px 10px;
  font-size: 2.4rem;
}
.section-quality_indent {
  text-indent: -0.5rem;
}
.section-quality_line-down {
  padding: 15px 0 60px;
  max-width: 1080px;
  margin: 0 auto;
}
.section-quality_line-down img {
  width: 15%;
}
/* ここから品質保証のレスポンシブ対応 */
@media (max-width: 1024px) {
  .section-quality_title h2 {
    margin: 55px 0;
    width: 100%;
  }
  .section-quality_title img {
    display: none;
  }
  .section-quality_line-down img {
    width: 25%;
  }
}
@media (max-width: 650px) {
  .section-quality {
    padding: 40px 24px 0;
  }
  .section-quality_wrapper {
    background-position: left 0% top 0%, right 10% bottom 0%;
    background-size: 30% auto, 30% auto;
    margin-bottom: 15px;
  }
  .section-quality_title h2 {
    font-size: 3.0rem;
    line-height: 4.5rem;
    margin: 30px 0 30px;
  }
  .section-quality_description_01, .section-quality_description_02, .section-quality_description_03 {
    padding-bottom: 30px;
  }
  .section-quality_line-down {
    display: none;
  }
}
/**/
/* ここから農家 */
.section-farmer {
  background-color: #e9e2c7;
  padding: 60px 0;
}
.section-farmer_subtitle {
  font-family: ta-koigokoro, sans-serif;
  font-size: 2.4rem;
  color: #5c594e;
}
.section-farmer_title {
  margin: 30px 0 60px;
}
.section-farmer_title .sp {
  display: none;
}
.section-farmer_title h2 {
  display: inline-block;
  font-size: 4.8rem;
  line-height: 7.2rem;
  color: #5c594e;
  padding: 0 20px;
}
.section-farmer_title img {
  width: 12%;
  padding-bottom: 5px;
}
.section-farmer_line {
  position: relative;
  top: 10px;
}
.section-farmer ul li {}
.section-farmer_yamada {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 30px;
  margin-right: 80px;
}
.section-famer_image {
  width: 50%;
  background-color: #f5f4ef;
  /*max-width: 720px;*/
}
.section-farmer_description {
  background-color: #f5f4ef;
  width: 50%;
  padding: 95px 90px 95px 80px;
}
.section-famer_image img {
  object-fit: cover;
  object-position: 50% 20%;
  vertical-align: bottom;
  width: 100%;
  height: 100%;
}
.section-farmer_oota {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  margin: 0 0 0 80px;
}
.section-farmer_description_wrapper {
  text-align: left;
  margin: 0 auto;
}
.section-farmer_description_wrapper h3 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.section-farmer_description_wrapper .name {
  margin-bottom: 35px;
}
.section-farmer_description_wrapper p {
  line-height: 3.6rem;
  text-indent: -8px;
}
.description_yamada {
  border-radius: 0px 40px 40px 0;
}
.description_oota {
  border-radius: 40px 0 0 40px;
}
/* ここから農家のレスポンシブ対応 */
@media (max-width:1024px) {
  .section-farmer_title .sp {
    display: block;
  }
  .section-famer_image {
    width: 100%;
    max-width: initial;
  }
  .section-farmer_yamada {
    display: block;
    margin: 0 24px 30px 0;
  }
  .section-farmer_yamada > .section-famer_image {
    border-radius: 0 40px 0 0;
  }
  .section-farmer_yamada > .section-famer_image img {
    width: 100%;
    height: 100%;
    border-radius: 0 40px 0 0;
    object-fit: cover;
  }
  .description_yamada {
    border-radius: 0px 0px 40px 0;
  }
  .section-farmer_description {
    width: 100%;
  }
  .section-farmer_oota {
    display: block;
    margin: 0 0 0 24px;
  }
  .section-farmer_oota > .section-famer_image {
    border-radius: 40px 0 0 0;
  }
  .section-farmer_oota > .section-famer_image img {
    width: 100%;
    border-radius: 40px 0 0 0;
  }
  .description_oota {
    border-radius: 0 0 0 40px;
  }
}
@media (max-width: 650px) {
  .section-farmer {
    padding: 35px 0 40px;
  }
  .section-farmer_subtitle {
    font-size: 1.6rem;
  }
  .section-farmer_line {
    display: none;
  }
  .section-farmer_title {
    margin: 15px 0 35px;
  }
  .section-farmer_title h2 {
    font-size: 3.0rem;
    line-height: 4.5rem;
    padding: 0;
  }
  .section-farmer_description {
    padding: 30px 24px;
  }
  .section-farmer_description_wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  .section-farmer_description_wrapper .name {
    margin-bottom: 20px;
  }
}
/**/
/* ここからお客さまの声 */
.section-customer {
  padding-bottom: 150px;
  width: 100%;
  /* ヘッダー分 */
  padding-top: 100px;
  margin-top: -100px;
}
.section-customer_title .sp {
  display: none;
}
.section-customer_title_pc {
  display: inline-block;
  font-size: 4.8rem;
  line-height: 7.2rem;
  color: #6d604e;
  margin: 50px 0 60px;
  position: relative;
  padding-top: 50px;
}
.section-customer_title .mobile02 span {
  position: relative;
  z-index: 2;
}
.mobile02::after {
  content: url("../images/customer/decoration.png");
  position: absolute;
  top: 0px;
  right: -50px;
}
.section-customer_contain {
  margin: 0 auto;
  max-width: 1280px;
}
.slider_wrap {
  padding: 0 50px 40px;
  margin: 0 70px;
}
.slick-items {
  background-color: #f0e6d8;
  border-radius: 20px;
  padding: 40px 50px;
  max-width: 1000px;
  margin: 20px;
  box-shadow: 4px 4px 10px rgba(186, 175, 159, 0.50);
  text-align: left;
}
.slick-items_contain {
  display: flex !important;
}
.slick-items img {
  width: 260px;
  height: 240px;
  object-fit: cover;
  border-radius: 20px;
}
.section-customer_description {
  margin-left: 75px;
  width: 100%;
}
.section-customer_description h3 {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 30px 0 25px;
}
.section-customer_description .name {
  margin-bottom: 20px;
}
.slick-next {
  right: -110px !important;
}
.slick-prev {
  left: -110px !important;
}
.slick-next:before {
  background: url("../images/customer/arrow-right.png") !important;
  background-size: contain !important;
}
.slick-prev:before {
  background: url("../images/customer/arrow-left.png") !important;
  background-size: contain !important;
}
.slick-arrow {
  z-index: 2 !important;
  width: 90px !important;
  height: 90px !important;
}
.slick-arrow:before {
  content: "" !important;
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1 !important;
}
/* ここからお客さまの声のレスポンシブ対応 */
@media (max-width: 1024px) {
  .section-customer {
    padding-bottom: 120px;
  }
  .section-customer_title .mobile01 span {
    position: relative;
    z-index: 2;
  }
  .mobile01::after {
    content: url("../images/customer/decoration.png");
    position: absolute;
    top: 0px;
    right: -50px;
  }
  .mobile02::after {
    content: "";
  }
  .mobile01 {
    margin-bottom: 0;
    margin-top: 40px;
  }
  .mobile02 {
    margin-top: 0;
    padding-top: 0;
    display: block;
  }
  .slider_wrap {
    margin: 0 20px;
  }
  .slick-next {
    display: none !important;
  }
  .slick-prev {
    display: none !important;
  }
}
@media (max-width: 650px) {
  .section-customer {
    padding: 60px 24px 90px;
    margin-top: -60px;
  }
  .section-customer_title {
    margin: 40px 0;
  }
  .section-customer_title_pc {
    font-size: 3.0rem;
    line-height: 4.5rem;
    margin: 0;
  }
  .section-customer_description {
    margin-left: 0;
  }
  .slider_wrap {
    padding: 0;
    margin: 0;
  }
  .slick-items_contain {
    display: block !important;
  }
  .slick-items {
    padding: 30px 20px;
  }
  .slick-items_image {
    display: block;
  }
  .slick-items img {
    width: 100%;
    height: 70%;
    margin: 0 auto;
  }
  .section-customer_description h3 {
    font-size: 2.0rem;
    margin: 25px 0 10px;
  }
}
@media (max-width: 374px) {
  .mobile01::after {
    content: "";
  }
  .section-customer_title .sp {
    display: block;
  }
}
/**/
/* ここからよくある質問 */
.section-question {
  padding: 100px 80px 100px;
  margin-top: -100px;
}
.section-question_wrapper {
  background-color: #e9e2c7;
  padding: 60px 0 20px;
}
.section-question_title {
  margin-bottom: 60px;
}
.section-question_title h2 {
  display: inline-block;
  font-size: 4.8rem;
  line-height: 7.2rem;
  margin: 0 30px;
}
.section-question_title {
  position: relative;
  top: -10px;
}
.section-question_title img {
  width: 25%;
}
.section-question_title .mobile {
  display: none;
}
.section-question_contain ul {
  padding: 0 120px;
}
.section-question_contain ul li {
  list-style: none;
  text-align: left;
  background-color: #fff;
  border-radius: 20px;
  padding: 40px 90px;
  margin: 0 auto 40px;
  max-width: 1040px;
}
.section-question_contain ul li h3 {
  font-size: 2.4rem;
  line-height: 3.6rem;
  padding: 0 25px 15px;
  border-bottom: 2px solid #bcbcbc;
  margin-bottom: 15px;
}
.section-question_contain ul li h3 span {
  color: #488dff;
}
.section-question_contain ul li h4 {
  font-size: 2.4rem;
  line-height: 3.6rem;
  padding: 0 25px;
  margin-bottom: 10px;
}
.section-question_contain ul li h4 span {
  color: #ff5353;
}
.section-question_contain ul li p {
  padding: 0 25px;
}
.section-question_contain_01 {
  margin-bottom: 40px;
}
/* ここからよくある質問のレスポンシブ対応 */
@media (max-width: 1024px) {
  .section-question {
    padding: 100px 0;
  }
  .section-question_contain ul {
    padding: 0 24px;
  }
  .section-question_contain ul li {
    padding: 40px 20px;
  }
}
@media (max-width: 650px) {
  .section-question {
    padding-bottom: 0px;
    padding-top: 60px;
    margin-top: -60px;
  }
  .section-question_wrapper {
    padding-bottom: 25px;
  }
  .section-question_title {
    margin-bottom: 40px;
  }
  .section-question_title h2 {
    font-size: 3.0rem;
    line-height: 4.5rem;
    margin: 0;
  }
  .section-question_title .pc {
    display: none;
  }
  .section-question_title .mobile {
    display: inline-block;
    position: relative;
    bottom: -5px;
    width: 20%;
  }
  .section-question_title .mobile img {
    width: 100%;
  }
  .section-question_contain ul li {
    padding: 20px 15px;
    margin: 0 auto 20px;
  }
  .section-question_contain ul li h3 {
    font-size: 1.8rem;
    line-height: 2.7rem;
    padding: 0 10px 15px;
  }
  .section-question_contain ul li h4 {
    font-size: 1.8rem;
    line-height: 2.7rem;
    padding: 0 10px;
  }
  .section-question_contain ul li p {
    padding: 0 15px;
  }
}
@media(max-width: 315px) {
  .section-question_title .mobile {
    display: none;
  }
}
/**/
/* ここからフッター */
.footer {
  background-color: #af854f;
  height: 150px;
  padding: 35px 80px 20px;
}
.footer-wrapper_contain {
  display: flex;
  justify-content: space-between;
}
.footer_logo {
  padding-top: 15px;
}
.footer_button {
  cursor: pointer;
  background-color: #dfceb9;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  padding: 20px 0;
}
.footer_button:hover {
  background-color: #dfd6cb;
}
.footer_button a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.footer small {
  font-size: 1.2rem;
}
/* ここからフッターのレスポンシブ対応 */
@media (max-width: 650px) {
  .footer {
    padding: 30px 24px 20px;
  }
  .footer_logo img {
    width: 110px;
  }
  .footer_button {
    width: 60px;
    height: 60px;
  }
  .button_contain {
    width: 40px;
  }
}