@charset "UTF-8";
/* CSS Document */

/* ヘッダー -----------------------------------------------*/
.header {
  height: 75px;
  padding: 0 80px;
  margin: 0 auto;
}
.header-content-wrapper {
  max-width: 1240px;
  margin: 0 auto;
}
.header__navigation {
  display: block;
  text-align: right;
}
.header nav ul {
  list-style: none;
  padding: 20px;
  font-size: 2.8rem;
  position: absolute;
  right: 10%;
}
.header__navigation ul li {
  display: inline-block;
  margin-left: 40px;
}

.header__navigation ul li a {
  text-decoration: none;
  font-size: 1.6rem;
  color: #333;
  position: relative;
  padding: 0 10px;
  text-align: center;
}
/*<装飾>メニュー横の斜めライン*/
.header__navigation ul li a:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 10%;
  display: inline-block;
  width: 50px;
  height: 1px;
  background-color: #777;
  transform: rotate(-60deg);
  left: -50px;
}
.header__navigation ul li a:before {
  left: 0;
}
.header__navigation ul li a:after {
  right: 0;
}
.logo {
  padding: 12px 0;
  width: 170px;
  position: absolute;
  left: 10%;
}
/*<実装>ハンバーガーメニュー*/
.nav {
  position: fixed;
  top: 0;
  left: 0;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s, visibility .5s;
  background-color: #fff;
  width: 70vW;
  z-index: 1000;
  height: 100vh;
}
ul.nav_menu_ul {
  text-decoration: none;
  position: absolute;
  left: 0%;
}
ul.nav_menu_ul li a {
  padding: 30px;
  text-decoration: none;
  color: #333;
}
.nav.show {
  opacity: 1;
  visibility: visible;
}
/*before*/
.nav_toggle {
  position: relative;
  width: 4rem;
  height: 2.4rem;
  right: -100%;
  top: 36%;
}
.nav_toggle i {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333;
  position: absolute;
  transition: transform .5s, opacity .5s;
}
.nav_toggle i:nth-child(1) {
  top: 0;
}
.nav_toggle i:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}
.nav_toggle i:nth-child(3) {
  bottom: 0;
}
/*after*/
.nav_toggle.show i:nth-child(1) {
  transform: translateY(10px) rotate(-45deg);
}
.nav_toggle.show i:nth-child(2) {
  opacity: 0;
}
.nav_toggle.show i:nth-child(3) {
  transform: translateY(-12px) rotate(45deg);
}
@media(max-width:960px) { 
  .header {
    height: 60px;
  }
  .logo {
    width: 150px;
    position: absolute;
    left: 10%;
    top: -0.5%;
  }
  .nav_toggle__wrapper {
    position: fixed;
    right: 10%;
    top: 2.1%;
    z-index: 10000;
  }
}
/*<実装>スリックスライド------------------------*/
/* リセットCSS */
body, ul, li {
  padding: 0;
  margin: 0;
}
/*スリックスライダー*/
.slider li {
  height: 90vh;
  background-size: cover;
}
.slider li:first-of-type {
  background-image: url("../images/4077995_m-2.jpg");
  background-position: center;
}
.slider li:nth-child(2) {
  background-image: url("../images/AdobeStock_317270392.jpg");
  background-position : right 0px bottom 0px;
}
.slider li:last-of-type {
  background-image: url("../images/24443740_m.jpg");
  background-position: bottom;
}
/* 拡大率調整 */
@keyframes fadezoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.3);
  }
}
/* ズームアニメーション */
.animation {
  animation: fadezoom 15s 0s forwards;
}
@media(max-width: 750px) {
  .slider li {
  height: 50vh;
  }
}
/*<実装>トップに戻るボタン*/
.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 10%;
  bottom: 10%;
  background: #fff;
  border: solid 2px #000;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2;
  cursor: pointer;
}
.pagetop__arrow {
  display: block;
  height: 10px;
  width: 10px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  transform: translateY(20%) rotate(-45deg);
}
/*section①トップイメージ　-------------------------------------------------------*/
.section-top {
  /*max-width: 1240px;*/
  margin: 0 auto;
}
.section-top__image {
  width: 100%;
  height: 100px;
}
.section-top__image-message h2 {
  letter-spacing: 5px;
}
.top-wrapper {
  position: relative;
}
.section-top__image-message {
  text-align: left;
  font-size: 4.4rem;
  line-height: 1.8;
  background-color: #fff;
  opacity: 0.85;
  padding: 3%;
  width: fit-content;
  top: 12%;
  left: 8%;
  position: absolute;
}
@media(max-width:960px) {
  .section-top__image-message h2 {
    font-size: 4vw;
  }
  .section-top__image-message {
    font-size: 5vw;
  }
  .nav_toggle {
    display: block;
    right: 5%;
  }
  .header__navigation {
    display: none;
  }
  li.nav_menu_li {
    margin: 60px;
    border-bottom: dotted 1px #333;
    padding: 20px;
  }
}
@media(max-width:750px) {
  li.nav_menu_li {
    font-size: 4vw;
    margin: 7%;
  }
}
@media(max-width:480px) {
  .section-top__image-message {
    padding: 30px;
	top: 15%;
    left: 0%;
  }
  .slider li {
	height: 75vh;
	}
 .section-top__image-message h2 {
   font-size: 7.5vw;
	}
 .title_br {
   display: none;
	}
}
/* トップリード*/
/*<実装>フワッと表示　２４時間宅配*/
.fadeup {
  /* 最初は非表示 */
  transform: translateY(30px);
  opacity: 0;
  visibility: hidden;
  transition: transform 1s, opacity 1s, visibility 1s;
}
/* フェードイン時に入るクラス */
.is-fadein {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
img.section-top__lead__24h {
  padding-bottom: 50px;
}
.section-top__lead {
  padding: 120px 0 0;
  margin: 0 auto;
}
.section-top__description {
  width: 800px;
  margin: 0 auto;
  font-size: 1.8rem;
  line-height: 4rem;
  padding-bottom: 90px;
}
.green-line {
  width: 100%;
  display: block;
  margin: 0 auto;
  padding-bottom: 50px;
}
.section-top__lead h2 {
  font-size: 3rem;
  padding-bottom: 60px;
  line-height: 1.8;
  margin-top: -7px; /*追加*/
  margin-bottom: -7px; /*追加*/
  letter-spacing: 3px;
}

.TextTyping span {
  display: none;
}
/*<実装>タイピング風演出、文字列後尾の線*/
.TextTyping::after {
  content: "|";
  animation: typinganime .8s ease infinite;
}
@keyframes typinganime{
  from{opacity:0}
  to{opacity:1}
}
.section-top__lead__dot-line {
  margin: 0 auto;
  display: block;
  padding: 60px 0;
}
.trial-button {
  width: 500px;
}
.img_wrap{
  /*border: 1px solid #ddd;*/
  width: 500px;
  height: 68px;
  margin: 20px auto 0;
  transition-duration: 0.5s;
  border-radius: 35px;
}
.img_wrap img{
  width: 100%;
  cursor: pointer;
}
.img_wrap:hover{
  box-shadow: 5px 5px 5px rgba(0,0,0,0.3);
  transform: translateY(-10px);
  transition-duration: 0.5s;
}
@media(max-width: 960px) {
  .section-top__description {
    width: 75%;
  }
  .section-top__title {
    padding: 0 30px 0;
  }
}
@media(max-width: 750px) {
  .section-top__lead__24h {
    width: 250px;
    padding-bottom: 40px;
  }
  .section-top__description {
    padding-bottom: 60px;
    font-size: 1.8rem;
    line-height: 2;
    width: 100%;
  }
  .section-top__lead__dot-line {
    padding: 30px 0;
  }
  .section-top__lead h2 {
    font-size: 2.6rem;
  }
  .img_wrap, .trial-button {
    width: 300px;
    height: 41px;
    margin: 0 auto;
  }
}

@media(max-width:480px) {
  .img_wrap, .trial-button {
    width: 90%;
  }
}
/*section②　３つの理由 ----------------------------------------------------------*/
.reason {
  padding: 90px 80px 40px;
  background-image: url("../images/reason_bg.png");
  position: relative;
}
.section-reason__3 {
  color: #ff7a5f;
  font-size: 7.4rem;
}
.section-reason__title span {
  color: #ff7a5f;
  font-size: 3.4rem;
}
.section-reason__dod-line {
  color: #333;
  border-bottom: dotted 2px #ff7a5f;
  font-size: 1.6rem;
}
.section-reason__number {
  margin-top: -40px;
  transform: translateY(-50%);
}
.reason p {
  padding-top: 30px;
  position: relative;
}
.reason h2 {
  font-size: 4.4rem;
  padding: 0 0 40px 0;
  line-height: 1.5;
  margin-top: -15px; /*追加*/
  margin-bottom: -20px; /*追加*/
}
.section-reason_chonchon {
  position: absolute;
  right: 42%;
  top: 45px;
}
.reason h3 {
  font-size: 2.4rem;
  line-height: 1.5;
  position: relative;
}
/*<実装>その場でフェードイン*/
.fadeIn{
animation-name:fadeInAnime;
animation-duration:3s;
animation-fill-mode:forwards;
opacity:0;
}
@keyframes fadeInAnime{
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.section-reason__wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1240px;
  margin: 0 auto;
}
.section-reason__container {
  margin: 0 15px;
  border-radius: 30px;
  border: solid 2px #ced5a1;
  width: 320px;
  box-shadow: 0 5px 0px 0 #ced5a1;
  padding: 40px 15px;
  margin-bottom: 50px;
}
.section-reason__desaription {
  line-height: 2.2;
  font-size: 1.6rem;
  text-align: left;
}
.green-line {
  width: 100%;
  display: block;
  margin: 0 auto;
  padding-bottom: 9%;
  max-width: 1240px;
}
/*<実装>背景色が伸びて出現*/
.change-color1 {
  position: relative;
  font-size: 30px;
}
span {
  position: relative;
  z-index: 0;
}
.change-color1::before{
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #fff;
  transition: 0.5s;
  z-index: 0;
  border-radius: 30px;
}
.fade::before {
  width: 100%;
}
@media(max-width: 750px) {
  .reason {
    padding: 40px 30px;
  }
  .reason__3 {
    width: 8vw;
  }
  .section-reason__container {
    width: 540px;
    margin-bottom: 80px;
  }
  .section-reason__desaription {
    font-size: 1.8rem;
  }
  .reason h2 {
    font-size: 5.5vw;
    padding-bottom: 30px;
  }
  .reason h3 {
    font-size: 2.2rem;
  }
  .section-reason__title span {
    font-size: 2.4rem;
  }
  .section-reason__dod-line {
    font-size: 1.8rem
  }
}
@media(max-width:480px) {
  .section-reason__container {
    margin: 0 0 80px;
  }
}
/*section③　トライアル-----------------------------------------------------------------*/
.trial {
  background-image: url("../images/stripe_bg_trial.png");
  padding: 90px 80px 90px;
}
.section-trial__image-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 1240px;
  margin: 0 auto;
  justify-content: space-evenly;
}
.section-trial__button {
  display: block;
}
.trial h3 {
  font-size: 4.4rem;
  padding-bottom: 40px;
  line-height: 1.8;
  margin-top: -15px; /*追加*/
  margin-bottom: -15px; /*追加*/
}
.trial h4 {
  font-size: 2.4rem;
  padding-bottom: 40px;
  line-height: 1.5;
  margin-bottom: -40px;
}
.sectioin-trial__button {
  width: 40%;
  padding-bottom: 50px;
  margin: 0 auto;
}
/*<実装>トライアルボタン左右からフェードイン*/
.fadeleft {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: opacity 1s, visibility 1s, transform 1s;
  width: 100%;
}
.faderight {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: opacity 1s, visibility 1s, transform 1s;
  width: 100%;
}
/* フェードイン時に入るクラス */
.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.section-trial__button__link {
  width: 40%;
}
@media(max-width:750px) {
  .trial {
    padding: 40px 30px;
  }
  .trial h3 {
    font-size: 5.5vw;
    padding-bottom: 30px;
  }
  .trial h4 {
    font-size: 1.8rem;
  }
  .green-kakko {
    width: 15px;
  }
  .section-trial__image-wrapper {
    display: block;
        width: 70%;
    margin: 0 auto;
  }
  .fadeleft {
    padding-bottom: 50px;
  }
}
@media(max-width:480px) {
  .section-trial__button {
    width: 100%;
    overflow-x: hidden;
  }
  .trial h4 {
    font-size: 3.5vw;
  }
}
/*section④about us~国内全体の0.5%~----------------------------------------------------*/
#about_us {
  background-image: url("../images/bg.png");
  padding: 90px 80px 20px;
}
.about_us__wrapper {
  display: flex;
  max-width: 1240px;
  margin: 0 auto;
  justify-content: space-around;
  flex-wrap: wrap;
  overflow-x: hidden;
}
.about_us__graph img {
  display: block;
  padding-bottom: 60px;
  width: 100%;
  overflow-x: hidden;
}
.about_us__graph {
  width: 45%;
  overflow-x: hidden;
}
.about_us__description {
  width: 45%;
  overflow-x: hidden;
}
#about_us h3 {
  font-size: 4.4rem;
  padding-bottom: 40px;
  line-height: 1.8;
  margin-top: -15px; /*追加*/
  margin-bottom: -18px; /*追加*/
}
.about_us__description {
  font-size: 1.8rem;
  line-height: 2;
  text-align: left;
  width: 50%;
}
.about_us__description p {
  padding-top: 20px;
  font-size: 2rem;
  font-weight: 500;
}
.about_us__description span {
  background-color: #d8deb2;
}
.section-about_us__bg-bottom {
  width: 100%;
}
.section-about_us__bg-bottom img {
  display: block;
}
@media(max-width: 960px) {
  .about_us__wrapper {
    display: block;
  }
  .about_us__graph {
    width: 65%;
    margin: 0 auto;
  }
  .about_us__description {
    width: 100%;
    overflow-x: hidden;
  }
.faderight.about_us__description.is-fadein {
    margin-right: 0px;
}
}
@media(max-width: 750px) {
  #about_us {
    padding: 40px 30px 20px;
  }
  #about_us h3 {
    font-size: 5.5vw;
  }
  .about_us__description {
    font-size: 1.6rem
  }
  #about_us h4 {
    font-size: 1.8rem;
  }
  .green-kakko {
    width: 15px;
  }
}
@media(max-width: 480px) {
   .about_us__graph {
    width: 100%;
  }
}
/*section⑤cultivation-method　栽培方法５種　----------------------------------------------------*/
.cultivation-method {
  padding: 90px 80px 40px;
}
.cultivation-method h3 {
  font-size: 4.4rem;
  padding: 0 0 40px 0;
  line-height: 1.8;
  margin-top: -15px; /*追加*/
  margin-bottom: -15px; /*追加*/
}
.cultivation-method__wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  justify-content: space-around;
  max-width: 1240px;
  margin: 0 auto;
  list-style: none;
}

.cultivation-method img {
  padding-bottom: 50px;
}
.cultivation-method__shizen {
  width: 167px;
}
.cultivation-method__yuuki-munouyaku {
  width: 350px;
}
.cultivation-method__tokubetsu-gennnouyaku {
  width: 350px;
}
/*<実装>栽培種類５種、連続表示*/
.box {
  opacity: 0;
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media(max-width:750px) {
    .cultivation-method {
    padding: 40px 30px;
  }
  .cultivation-method h3 {
    font-size: 5.5vw;
    padding-bottom: 30px;
  }
}
@media(max-width:480px) {
  .cultivation-method__shizen {
    width: 39vw;
  }
  .cultivation-method__yuuki-munouyaku, .cultivation-method__tokubetsu-gennnouyaku {
  width: 100%;
}
}
/*section⑥Our Philosophy 〜農家さん紹介〜　----------------------------------------*/
#our_philosophy {
  padding: 90px 80px;
  background-image: url("../images/wood-bg.png");
  position: relative;
}
#our_philosophy h3 {
  font-size: 4.4rem;
  padding: 30px 0 40px 0;
  line-height: 1.8;
  margin-top: -15px; /*追加*/
  margin-bottom: -15px; /*追加*/
}
#our_philosophy h4 {
  font-size: 2.4rem;
  line-height: 1.5;
  margin-bottom: -30px;
}
.section-philosophy__name {
  font-size: 3rem;
  padding-bottom: 30px;
}
.philosophy__container {
  background-color: #fff;
}
.section-philosophy__container1 {
  display: flex;
  padding-bottom: 50px;
  text-align: left;
  border-radius: 60px 0 0 0;
  max-width: 1240px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  margin: 0 auto;
}
.tomato {
  position: absolute;
  top: 0px;
  left: -5%;
  mix-blend-mode: multiply;
}
.aspara {
  position: absolute;
  bottom: -120px;
  z-index: 100;
  right: 0%;
  width: 200px;
}
.poteto {
  position: absolute;
  bottom: 70px;
  left: 0;
  width: 150px;
}
.broccoli {
  position: absolute;
  bottom: -50px;
  right: 0;
  width: 140px;
}
.section-philosophy__photo1 img {
  width: 500px;
  height: 380px;
  border-radius: 0 0 30px 0;
}
.section-philosophy__photo2 img {
  width: 500px;
  height: auto;
  border-radius: 30px 0 0 0;
}
.section-philosophy__container1 span {
  color: #f24724;
}
.section-philosophy__container2 {
  display: flex;
  padding-bottom: 50px;
  text-align: left;
  max-width: 1240px;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: row-reverse;
  position: relative;
  margin: 0 auto;
}
.section-philosophy__container2 span {
  color: #94a141;
}
.section-philosophy__dedscription1 {
  background-color: #fff;
  padding: 30px;
  font-size: 1.8rem;
  line-height: 1.8;
  width: 500px;
  height: auto;
  box-sizing: border-box;
  border-radius: 30px 0 0 0;
}
.section-philosophy__dedscription2 {
  background-color: #fff;
  padding: 30px;
  font-size: 1.8rem;
  line-height: 1.8;
  width: 500px;
  height: auto;
  box-sizing: border-box;
  border-radius: 0 0 30px 0;
}
@media(max-width:1159px) {
  .section-philosophy__dedscription2 {
      border-radius: 30px 0 0 0;
  }
  .section-philosophy__photo2 img {
    border-radius: 0 0 30px 0;
  }
  .section-philosophy__container1 {
    padding-bottom: 90px;
  }
}
@media(max-width:960px) {
  img.aspara {
    right: 10%;
    width: 20%;
    mix-blend-mode: multiply;
  }
    .tomato {
    width: 17%;
  }
  .poteto {
    width: 20%;
  }
  .broccoli {
    width: 18%;
  }
}
@media(max-width:750px) {
  #our_philosophy {
    padding: 40px 30px;
  }
  #our_philosophy h3 {
    font-size: 4.5vw;
    padding-bottom: 30px;
  }
  #our_philosophy h4 {
    font-size: 1.8rem;
  }
  #our_philosophy p {
    font-size: 1.6rem;
    line-height: 2;
  }
  .section-philosophy__dedscription1, .section-philosophy__dedscription2 {
    width: 80%;
  }
  .section-philosophy__dedscription img {
    width: 80%;
  }
  .section-philosophy__photo1 img {
    width: 80%;
    height: auto;
    margin: 0 auto;
    display: block;
  }
  .section-philosophy__photo1 {
    width: 100%;
  }
  .section-philosophy__photo2 {
    width: 80%;
    height: auto;
  }
  .section-philosophy__photo2 img {
    width: 100%;
  }
  .section-philosophy__fukidashi {
    width: 400px;
    display: block;
    margin: 0 auto;
  }
  .section-philosophy__name {
    font-size: 2rem;
  }
  .aspara {
    width: 30%;
  }

}
@media(max-width:600px) {
  .section-philosophy__fukidashi {
    width: 80%;
  }
}
@media(max-width:480px) {
  .section-philosophy__dedscription1, .section-philosophy__dedscription2 {
    width: 100%;
  }
  .section-philosophy__photo1 img,.section-philosophy__photo2 {
    width: 100%;
  }
  #our_philosophy h4 {
    font-size: 3.5vw;
  }
  .broccoli {
    bottom: 0;
  }
  
}
/*section⑦voice -----------------------------------------------------------*/
#voice {
  padding: 90px 80px 0;
  background-image: url("../images/stripe_bg.png");
}
#voice h3 {
  font-size: 4.4rem;
  padding: 30px 0 40px 0;
  line-height: 1.8;
}
#voice h4 {
  font-size: 2.4rem;
  line-height: 1.5;
  margin-bottom: -30px;
}
.section-voice__title {
  color: #ff7a5f;
  font-size: 2.6rem;
  border-bottom: solid 2px #ff7a5f;
  border-left: solid 2px #ff7a5f;
  padding: 0 0 30px 30px;
  border-radius: 0 0 0 30px;
  margin-bottom: 50px;
  line-height: 1.5;
  text-align: left;
}
.slider-x {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1240px;
  margin: 0 auto;
}
.section-voice__container {
  padding: 0 15px;
  width: 295px;
}
.section-voice__description {
  text-align: left;
  padding-bottom: 90px;
  line-height: 2.2;
}
.section-voice__description span {
  background-color: #f4e0cc;
}
.section-voice__image-wrapper {
  display: block;
}
.section-voice__image-wrapper img {
  padding-bottom: 30px;
}
@media(max-width:960px) {
/*<実装>scroll snap*/
.slider-x{
    /* 以下の設定は必須 */
    scroll-snap-type: x mandatory;
    width: 88%;
    overflow-x: scroll;
    display: flex;
    flex-direction: column;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    height: 500px;
    margin: 0 auto;
}
.slider-x > div{
    /* 以下の設定は必須 */
    scroll-snap-align: center;
    height: 100%;
    width: 100%;
    flex: none;
}
  .section-voice__image-wrapper {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}
  .section-voice__container {
    margin: 0 auto;
  }
  .section-voice__description {
    width: 100%;
    padding-bottom: 0;
  }
  .section-voice__container {
    margin: 0 auto;
  }
  .section-voice__image-wrapper img {
    width: 120px;
    height: 120px;
  }
}
@media(max-width:750px) {
  #voice {
    padding: 40px 30px;
  }
  #voice h3 {
    font-size: 5.5vw;
    padding-bottom: 30px;
  }
  #voice h4 {
    font-size: 1.8rem;
  }
}
@media(max-width:600px) {
  .section-voice__image-wrapper img {
    width: 25%;
    height: 25%;
  }
  .section-voice__title {
    font-size: 4vw;
  }
}
@media(max-width:480px) {
  #voice {
    padding: 40px 5px;
  }
  #voice h4 {
    font-size: 3.5vw;
  }
  .section-voice__title {
    padding: 0 0 10px 20px;
  }
}
/*section⑧FAQ ----------------------------------------------------------*/
.FAQ {
  padding: 90px 80px 40px;
  background-color: #f9f6f2;
}
.section-FAQ__wrapper {
  margin: 0 auto;
}
.FAQ h3 {
  font-size: 4.4rem;
  padding: 30px 0 40px 0;
}
.FAQ p {
  font-size: 1.8rem;
  line-height: 2;
  padding-top: 10px;
}
.section-FAQ__wrapper {
  margin-bottom: 50px;
}
.section-FAQ__question {
  background-color: #fff;
  text-align: left;
  border-bottom: solid 2px #bdc875;
  font-size: 3rem;
  line-height: 1.5;
  padding: 12px 40px;
  max-width: 1240px;
  margin: 0 auto;
  box-sizing: border-box;
}
.section-FAQ__question span {
  color: #bdc875;
}
.section-FAQ__answer {
  background-color: #fff;
  padding: 30px 40px;
  text-align: left;
  line-height: 1.5;
  max-width: 1240px;
  margin: 0 auto;
  box-sizing: border-box;
}
.section-FAQ__answer span {
  color: #ff7a5f;
  font-size: 2.4rem;
}
@media(max-width:750px) {
  .FAQ {
    padding: 40px 30px;
  }
  .FAQ h3 {
    font-size: 5.5vw;
    padding: 0 0 30px 0;
    line-height: 1;
  }
  .section-FAQ__question {
    font-size: 2rem;
  }
  .section-voice__container {
    width: 90%;
  }
  .section-FAQ__answer span {
    font-size: 2rem;
  }
  .FAQ p {
    font-size: 1.6rem;
  }
}

/*section⑨hinshitsu　品質---------------------------------------------------------*/
.hinshitsu {
  padding: 90px 60px 100px;
  background-image: url("../images/vegitable_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.hinshitsu h3 {
  font-size: 4.4rem;
  padding: 0 0 40px 0;
}
.section-hinshitsu__henkin span {
  color: #fff08e;
  border-bottom: solid 2px #fff08e;
}
.hinshitsu__backmoney {
 /* background-color: #ff7a5f;*/
  color: #fff;
   font-size: 3rem;
  line-height: 1.5;
  padding: 30px;
  margin: 0 auto 40px;
  width: 80%;
  box-sizing: border-box;
  z-index: 100;
}
.hinshitsu__message {
  font-size: 3.6rem;
  line-height: 1.5;
  color: #839052;
  padding-bottom: 30px;
  z-index: 100;
}
.hinshitsu__description {
  color: #839052;
  font-size: 1.8rem;
  padding-top: 30px;
  border-top: solid 6px #edf0db;
  line-height: 2.2;
  text-align: left;
}
.hinshitsu__container {
  background-color: #fff;
  padding: 40px;
  width: 80%;
  margin: 0 auto;
  border: solid 2px #edf0db;
  border-radius: 30px;
  box-shadow: 0 15px 0px 0 #edf0db;
  box-sizing: border-box;
}
/*<実装>背景色が伸びて出現*/
.change-color2 {
  position: relative;
  font-size: 2.5vw;
}
span {
  position: relative;
}
.change-color2::before{
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #ff7a5f;
  transition: 0.8s;
  z-index: -2;
}
.fade::before {
  width: 100%;
}
@media(max-width:960px) {
  .hinshitsu__backmoney {
    width: 100%;
    font-size: 3vw;
    padding: 3%;
  }
  .section-hinshitsu__henkin {
    width: 100%;
    font-size: 3rem;
  }
  .hinshitsu__container {
    width: 100%;
    padding: 20px;
  }
  .hinshitsu__description {
  color: #839052;
  font-size: 1.8rem;
  padding-top: 30px;
  border-top: solid 6px #edf0db;
  line-height: 2.2;
  text-align: left;
}
  .hinshitsu__message {
    font-size: 3.5vw;
  }
  .hinshitsu__message img {
    width: 5vw;
  }
}
@media(max-width:750px) {
   .hinshitsu {
    padding: 40px 30px;
  }
  .hinshitsu h3 {
    font-size: 5.5vw;
    padding-bottom: 30px;
  }
}
@media(max-width:480px) {
  .section-hinshitsu__henkin {
    font-size: 2.4rem;
  }
  .hinshitsu__message {
    font-size: 2rem;
    line-height: 2;
  }
  .hinshitsu__description {
    font-size: 1.6rem;
  }
  .hinshitsu__backmoney {
    font-size: 5vw;
    padding: 15px;
  }
}
/* フッター ------------------------------------------------*/
.footer {
  display: flex;
  padding: 20px 0px;
  justify-content: space-around;
}
.footer small {
  font-size: 1.8rem;
}
@media(max-width:960px) {
  .footer__logo {
    width: 150px;
  }
  .footer small {
    font-size: 1.6rem;
  }
}
@media(max-width:480px) {
  .footer {
    display: block;
  }
  .footer__logo {
    display: block;
    margin: 0 auto; 
    padding-bottom: 20px;
  }
  .footer small {
    width: 100%;
  }
}