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

/* Top-image section */

.header h1{
  display: none;
}

/*==================================================
スライダーのためのcss
===================================*/
.slider {
  position:relative;
  z-index: 1;
	/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
	height: 100vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}
/*　背景画像設定　*/

.slider-item01 {
    background:url(../images/top_imge.jpg);
}

.slider-item02 {
    background:url("../images/top_imge2.jpg");
}

.slider-item03 {
    background:url(../images/top_imge3.jpg);
}

.slider-item {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height:100vh;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: center;/*背景画像の位置を中央に*/
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}

/*矢印の設定*/

.slick-prev, 
.slick-next {
    position: absolute;
	z-index: 3;
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #fff;/*矢印の色*/
    border-right: 2px solid #fff;/*矢印の色*/
    height: 25px;
    width: 25px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left:2.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right:2.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
    position: relative;
    z-index: 3;
    text-align:center;
    margin:-50px 0 0 0;/*ドットの位置*/
}

.slick-dots li {
   display:inline-block;
   margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#fff;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}
/*==================================================
スライダーのためのcss end
===================================
.section-top__image{
  background-image: url("../images/top_imge.jpg");
  background-position:center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
}*/
.section-top__image-fillter{
 /* position: relative;*/
  display: block;
  height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.20);  
  z-index: 100;
}
.section-top__phrase{
  position: absolute;
  display: block;
  top: 0;
  left: 10%;
  width: 150px;
  height: 100%;
  background-color: rgba(255,255,255, 0.60);
  z-index: 1000;
}
.section-top__phrase h2{
  writing-mode: vertical-rl;
  text-align: start; /* ←←縦書きの上揃え */
  margin: 50px auto;
  font-size: 2.0rem;
  line-height: 2.0;
}
.section-top__phrase h2 span{
  text-indent: -2em; /* ←←インデント */
  padding-top: 2em;
}
.section-top__logo{
  width: 95%;
  margin: 10px 0;
}
@media(min-width:960px){
  .section-top__phrase{
    width: 200px;
  }
  .section-top__phrase h2{
    font-size: 2.3rem;
  }
}
.main {
  background-color: #faf8f6;
  position: relative;
}
/* ==================================================
      Top-lead section 
================================================== */
.top-lead{
  height: 545px;
  padding: 30px 10px 120px 10px;
}
.top-lead__area{
  width: 340px;
  height: 384px;
  margin :0 auto;/*中央寄せ*/
  box-shadow: 1px 1px 5px 1px #999;
  background-color: #FFF;
  position: relative;
}
.top-lead__top{
  padding: 30px;
  position: absolute;
}
.top-lead__top h2{
  text-align: left;
  font-size: 2.0rem;
  line-height: 1.5;
}
.top-lead__top h2 span{
  background-image: url("../images/line.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom;
}
.top-lead__top p{
  font-size: 1.4rem;
}
.top-lead__word1 {
  margin: 25px 0;
  text-align: left;
}
.top-lead__word2{
  margin: 25px 0 60px 0;
  text-align: left;
} 
.top-lead__image img{
  width: 280px;
  height: 210px;
  position: absolute;
  top: 350px;
  left: 65px;
  box-shadow: 1px 1px 5px 1px #999;
}
.top-lead__image-item {
  object-fit: cover;
  width: 100%;
}
@media(min-width: 960px){
  .br-sp{
    display: none;/*　モバイルサイトでは改行しない　*/
  }
  .section-top__image{
  height: 100vh;
  }
  .top-lead{
    margin-bottom: 110px;
  }
  .top-lead__area{
    width: 660px;
    height: 390px;
  }
  .top-lead__top{
    padding: 50px 65px;
  }
  .top-lead__top h2{
    font-size: 2.4rem;
  }
  .top-lead__word1 p, .top-lead__word2 p{
    font-size: 1.8rem;
    width: 500px;  
  }
  .top-lead__image img{
    width: 500px;
    height: 290px;
    top: 300px;
    left: 300px;
  }
}
/* =================================================
   　　　 3つの理由 
================================================= */
.three-reason{
  margin-bottom: 120px;
}
.three-reason h2 {
  font-size: 2.0rem;
}
.three-reason h2 span{
  color: #FFF;
}
.three-reason__tittle{
  width: 350px;
  margin: 0 auto;
  background-image: url("../images/pink_dots.png");
  background-size: 45px;
  background-repeat: no-repeat;  
  background-position: bottom;
  background-position: 211px;
}
.three-reason__list{
  background-image: url("../images/reason.jpg");
  background-position: 80%;
  background-size: cover;
  background-repeat: no-repeat;
  width: 350px;
  height: 815px;
  padding-top: 20px;
  margin: 0 auto;
}
.three-reason__list-area{
  width: 370px;
  height: 230px;
  border-radius: 50px;
  background-color: rgba(255,255,255, 0.70);
/*  border: 1px solid #ae3535; */
  box-sizing: border-box;
  margin: 10px -10px;/*　←←3つの理由　中央寄せ？？　*/
  box-shadow: 1px 1px 5px 1px #999;
}
.three-reason__list ul{
  list-style: none;
}
.three-reason__list ul li{
  margin: 20px 0;
  
}
.three-reason__list h3{
  font-size: 1.8rem;
  padding: 20px 30px 20px 30px;
  text-align: center;
  border-bottom: solid 1px #ae3535;
}
.three-reason__list h3 span{
  color: #ae3535;
  font-size: 2.0rem;
  font-weight: bold;
}
.three-reason__list ul li p{
  font-size: 1.4rem;
  padding: 15px 20px;
  text-align: left;
}
@media(min-width: 960px){
  .three-reason{
    width: 860px;
    margin: 0 auto;
    margin-bottom: 210px;
    position: relative
  }
   .three-reason__tittle{
    width: 50px;
    display: block;
    position: absolute;
    background-image: url("../images/pink_dots_pc.png");
    background-size: 40px;
    background-repeat: no-repeat;  
    background-position: bottom;
    background-position: 0px 230px; 
  }
  .three-reason h2{
    font-size: 2.4rem;
    writing-mode: vertical-rl;
    text-orientation: upright;
    text-align: center;
  }
  .three-reason__list{
    width: 660px;
  }
  .three-reason__list li:nth-of-type(2){    
  }
}

/*　=================================================
　　　　　　食べたもので体は作られる　
=================================================　*/
                              
.make-body{
  padding-bottom: 40px;
  width: 355px;
  margin: 0 auto;
}
.make-body__image {
  width: 280px;/*　←←画像サイズの指定の仕方？？　*/
  height: 310px;
  margin: 0 10px;
}
.make-body__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 35% 50%; /* ←←写真の表示位置　*/
  position: relative;
  box-shadow: 1px 1px 5px 1px #999;
  box-sizing: border-box;
  z-index: 100;
  }
.make-body__text-container{
  width: 330px;
  height: 500px;
  margin: 0 25px;
  position: relative;
  top: -50px;
  box-shadow: 1px 1px 5px 1px #999;
  box-sizing: border-box;
  z-index: 10;
  background-color: #FFF;
}
.make-body__text1{
  padding: 90px 10px 10px 10px;
}
.make-body__text1 h2{
  font-size: 2.0rem;
  background-image: url("../images/line.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom;  
}
.make-body__text2{
  margin: 0 20px;
}
.make-body__text2 ul{
  list-style: none;
  font-size: 1.4rem;
  text-align: left;
  line-height: 2.0;
}
.make-body__text3{
  margin: 20px;
}
.make-body__text3 span{
  font-size: 2.0rem;
}
.make-body__text3 p{
  text-align: left;
  line-height: 2.0;
  font-size: 1.6rem;
}
.make-body__try-set-button{
  margin: 0 -25px;
}
.make-body__try-set-button input{
  width: 95%;
  height: 90%;
}
@media(min-width: 960px){
  .make-body{
    width: 960px;
    height: 700px;
    padding: 100px 0;
    position: relative;
  }
  .make-body__image{
    width: 600px;
    height: 450px;
 /*   left: 50%;*/
    position: absolute;
    z-index: 100;
  }
  .make-body__text-container{
    width: 640px;
    height: 500px;
    left: 50%;
    position: absolute;
    transform: translate(0, 50%);
    z-index: 10;
  }
  .make-body__text1 h2{
    font-size: 2.4rem;
    background-image: url("../images/line.png");
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: bottom;  
 }
  .make-body__text1{
    text-align: center;
  }
  .make-body__text2{
    margin-left: 120px;
    margin-bottom: 50px;
  }
  .make-body__text3{
    margin-left: 130px;
  }
  .make-body__try-set-button{
    padding: 60px 400px 0 0;
  }
  .make-body__try-set-button input{
    width: 250%;
    height: 250%;
  }
}

/* =================================================
　　　　　　　　国内オーガニック農家 
=================================================*/

.organic-farmer{
  padding: 0 10px 50px 10px;
}
.organic-farmer__container-image{
  background-image: url("../images/e0065_0.svg");
  background-repeat: no-repeat;
  width: 200px;
  height: 60px;
  padding: 20px 30px;
  margin: 0 auto;
  position: relative;
}
.organic-farmer__container-text h2 span{
  background-image: url("../images/line.png");
  background-size: 200%;
  background-repeat: no-repeat;
  background-position: bottom;  
}
.organic-farmer__container-image p{/*　←←ふきだしのセリフ 位置合わせ？？　*/
  position: absolute;
  color: #333;
  text-align: left;
}
.organic-farmer__container-text{
  padding: 30px 10px;
  width: 330px;
  height: 350px;
  margin :0 auto;
  box-shadow: 1px 1px 5px 1px #999;
  position: relative;
  background-color: #FFF;
}
.organic-farmer__container-text h2{
  font-size: 2.0rem;
  line-height: 1.5
}
.organic_farmer__container-text-item{
  padding-top: 20px;
  margin: 0 10px;
}
.organic_farmer__container-text-item p{
  font-size: 1.4rem;
  text-align: left;
  line-height: 2.0
}
@media(min-width:960px){
  .organic-farmer__container-text{
    padding: 30px 10px;
    width: 660px;
    height: 300px;
  }
  .organic-farmer__container-text h2{
    font-size: 2.4rem;
    line-height: 1.5
  }
  .organic_farmer__container-text-item{
    padding-top: 30px;
    margin: 0 50px;
}
  .organic_farmer__container-text-item p{
    font-size: 1.6rem;
    text-align: left;
    line-height: 2.5;
 }  
}

/* =================================================
　　　　　　　　　農家紹介        
=================================================*/

.organic-farmer-profile{
  padding: 50px 10px 100px 10px;
  margin: 0 auto;
  width: 335px;
  position: relative;
}
.organic-farmer-profile__tittle{
  display: block;
  writing-mode: vertical-rl;
  text-align: start;
  position: absolute;
  right: 0;
  width: 65px;
}
.organic-farmer-profile__tittle p{
  font-size: 1.4rem;
  border-right: solid 1px #333;
}
.organic-farmer-profile__tittle h2{
  font-size: 2.0rem;
  padding-left: 5px;
  border-left: solid 1px #333;
}
.organic-famer-profile__list {
  width: 275px;
}
/*.organic-famer-profile__list ul{
  flsex-wrap:wrap; 
}*/
.organic-famer-profile__list li{
  list-style: none;
}
.organic-farmer-profile__list-text img{
  width: 90%;
  height: 90%;
  margin-top: 40px;
  margin-bottom: 20px;
}
.organic-farmer-profile__list-text img:nth-child(2){
  margin-top: 40px;
}
.organic-famer-profile__list h3{
  font-size: 1.6rem;
}
.organic-famer-profile__list p{
  font-size: 1.4rem;
  text-align: left;
}
@media(min-width:960px){
  .organic-farmer-profile{
    width: 1000px;
    height: 700px;
    padding: 100px 0 100px 0;
  }
  .organic-farmer-profile__tittle{
    width: 90px;
  }
  .organic-farmer-profile__tittle p{
    font-size: 1.6rem;
    padding: 0 10px 0 10px;
    border-right: solid 1px #333;
  }
  .organic-farmer-profile__tittle h2{
    font-size: 2.4rem;
    padding-left: 10px;
    border-left: solid 1px #333;
  }
  .organic-famer-profile__list ul {
    display: flex;
    flex-direction: row-reverse;
    width: 900px;
    align-items: center;
  }
   .organic-famer-profile__list li{
    width: 100%;
  }
  .organic-farmer-profile__list img{
    margin-bottom: 40px;
  }
  .organic-famer-profile__list h3{
    font-size: 1.8rem;
}
  .organic-famer-profile__list p{
    margin: 15px;
    font-size: 1.6rem;
    text-align: left;
  }  
}
/*　=================================================　
       お試しセット　　　
 ================================================= */
.try-set{
  padding-bottom: 120px;
  width: 355px;
  margin: 0 auto;
}
.try-set__tittle{
  background-image: url("../images/fukidashi.png");
  background-repeat: no-repeat; 
  background-size: 75%;
  background-position: 50% 0%;
}
.try-set__tittle p{
  font-size: 1.4rem;
  margin-bottom: 5px;
}
.try-set__tittle h2{
  font-size: 2.0rem;
  margin-bottom: 100px;
  background-image: url("../images/line.png");
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: bottom;  
}
.try-set__container{
  width: 355px;
  height: 710px;
  margin :0 auto;
  box-shadow: 1px 1px 5px 1px #999;
  position: relative;
  background-color: #FFF;
}
.try-set__container ul{
  list-style: none;
}
.try-set__container-list{
  padding-bottom: 90px;
  background-image: url("../images/back_dot.png");
  background-repeat: no-repeat;
  background-size: 65%;
  background-position: 50px 70px
}
.try-set__container-list img{
  width: 100%;
  height: 100%;
  margin-top: -80px;
}
.try-set__container-list h3{
  font-size: 1.8rem;
  color: #7f2828;
  line-height: 1.5
}
.try-set__container-list p{
  font-size: 2.0rem;
  line-height: 1.5
}
.try-set__container-list span{
  font-size: 1.2rem;
}
.try-set-button input{
  width: 80%;
  height: 80%;    
}
@media(min-width:960px){
  .try-set{
    width: 900px;
    /*margin-bottom: 100px;　ページ下部のmargin-bottom 消したい　*/
  }
  .try-set__tittle{
    background-size: 50%;
  }
  .try-set__tittle P{
    font-size: 1.6rem; 
    margin-bottom: 10px;
  }
  .try-set__tittle h2{
    font-size: 2.4rem;
    background-size: 50%;
  }
  .try-set__container{
    width: 900px;
    height: 450px;
  }
   .try-set__container ul{
    display: flex;
    width: 900px;
    align-items: center;
    justify-content: space-evenly;
  }
  .try-set__container img{
    width: 400px;
    height: 300px;
    object-fit: cover;
  }
  .try-set__container h3{
    font-size: 2.0rem;
  }
  .try-set__container p{
    font-size: 2.4rem;
  }
  .try-set__container span{
    font-size: 1.4rem;
  }
  .try-set__container-list{
    padding-bottom: 50px;
  }
  .try-set-button input{
    width: 50%;
    height: 50%;
    
  }
}
/*　=================================================　
       お客様の声　　　
 ================================================= */
.users-voice{
  padding-bottom: 100px;
  width: 355px;
  margin: 0 auto;
}
.users-voice__tittle{
  background-image: url("../images/fukidashi.png");
  background-repeat: no-repeat; 
  background-size: 75%;
  background-position: 50% 0%;
}
.users-voice__tittle p{
  font-size: 1.4rem;
  margin-bottom: 5px;
}
.users-voice__tittle h2{
  font-size: 2.0rem;
  margin-bottom: 20px;
  background-image: url("../images/line.png");
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: bottom;  
}
.users-voice__list{
  width: 355px;
  list-style: none;
  box-shadow: 1px 1px 5px 1px #999;
}
.users-voice__list img{
  width: 355px;
  height: 100%;
  vertical-align: bottom;/* ←←画像の下の隙間を無くす　*/
}
.users-voice__list-container{
  height: 350px;
  background-color: #FFF;
  background-image: url("../images/back_dot.png");
  background-repeat: no-repeat;
  background-size: 75%;
  background-position: 100px 0px;
  margin-bottom: 20px;
}
.users-voice__list-container h3{
  font-size: 2.0rem;
  text-align: left;
  padding: 20px 10px;
}
.users-voice__list-container p{
  padding: 0 10px 20px 10px;
  margin-bottom: 20px;
  font-size: 1.6rem;
  line-height: 2.0;
  text-align: left;
}
@media(min-width:960px){
  .users-voice{
    width: 1200px;
    margin-top: 100px;
  }
  .users-voice__tittle{
    background-size: 40%;
  }
  .users-voice__tittle p{
    font-size: 1.6rem;
  }
  .users-voice__tittle h2{
    font-size: 2.4rem;
    background-size: 50%;
    margin-bottom: 20px;
  }
  .users-voice__item ul{
    display: flex;
    width: 1200px;
    align-items: flex-start;
    justify-content: space-evenly;
  }
  .users-voice__list-container{
    margin-bottom: 0px;
  }
  .users-voice__list-container p{
    margin-bottom: 0px;
  }
}
/*　=================================================　
       よくあるご質問
=================================================  */
.question__area{
  padding: 0 10px 50px 10px;
  margin: 0 auto;
  width: 355px;
}
.question__area h2{
  margin-bottom: 20px;
  font-size: 2.0rem;
  background-image: url("../images/line.png");
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: bottom;  
}
.question__container{
  padding: 20px 10px;
  box-shadow: 1px 1px 5px 1px #999;
  position: relative;
  background-color: #FFF;
}
.question__container-list{
  width: 320px;
  list-style: none;
  margin: 20px 10px;
}
.question__container-list h3::before{
  content: "";
  display: inline-block;
  width: 35px;
  height: 35px;
  background: url("../images/Q.png") no-repeat;
  background-size: contain;
  background-position: bottom;
  margin-right:  10px;
}
.question__container-list h3{
  font-size: 1.8rem;
  text-align: left;
  margin-bottom: 15px;
}
.question__container-list P::before{
  content: "";
  display: inline-block;
  width: 35px;
  height: 35px;
  background: url("../images/A.png") no-repeat;
  background-size: contain;
  background-position: bottom;
  margin-right:  10px;
}
.question__container-list span{
  font-size: 1.8rem;
}
.question__container-list p{
  margin-bottom: 40px;
  font-size: 1.4rem;
  text-align: left;
  line-height: 2.0;
}
@media(min-width:960px){
  .question__area{
    width: 900px;
    margin: 100px auto 100px;
  }
  .question__area h2{
    font-size: 2.4rem;
    background-size: 40%;
  }
  .question__container ul{
    display: flex;
    width: 900px;
    align-items: flex-start;
    justify-content: space-evenly;
  }
}
/*　=================================================　
       footer
 =================================================  */
.footer{
  background-color: #802a2a;
  height: 50px;
}
.footer small{
  margin-top: 40px;
  font-size: 1.2rem;
  color: #FFF;
}