@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@500;900&display=swap');

/*Reset*/
*,*::before,*::after{box-sizing:border-box}html{-moz-text-size-adjust:none;-webkit-text-size-adjust:none;text-size-adjust:none}body,h1,h2,h3,h4,p,figure,blockquote,dl,dd{margin:0}ul[role='list'],ol[role='list']{list-style:none}body{min-height:100vh;line-height:1.5}h1,h2,h3,h4,button,input,label{line-height:1.1}a:not([class]){color:currentColor}img,picture{max-width:100%;display:block}input,button,textarea,select{font:inherit}textarea:not([rows]){min-height:10em}:target{scroll-margin-block:5ex}ul{margin: 0;padding: 0}li{list-style:none}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

html,
button,
input,
select,
textarea { font-family:"Zen Kaku Gothic New", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif ;
}

body {
	margin: 0;
    padding: 0;
    font-size: 1.6rem;
    line-height: 1.7;
	position:relative;
	background: #f7f6f5;
	color: #333;
}

a:focus,a {
    outline: none;
}

a:active,
a:hover {
    outline: none;
}

h1 {
    font-size: 2em;
}

h2{
    font-size: 3.6rem;
	line-height: 1.4;
}
h3{
    font-size: 3.2rem;
	line-height: 1.3;
}
h3 span{
    font-size: 2rem;
}
h4{
    font-size: 2.4rem;
}

b,
strong {
    font-weight: bold;
}
small {
    font-size: 80%;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}
a{
	text-decoration:none;
	color:#333;
	transition: .2s;
}
a:hover{
}

p{
	margin:24px 0;
}

/*　ハンバーガーボタン　*/
.hamburger {
	display: none;
    position: fixed;
    z-index: 10;
    right: 8px;
    top: 8px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    text-align: center;
	background: #e51616;
    border-radius: 50%;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 1px ;
  left    : 0;
  right:0;
  margin:auto;
  background : #fffaf6;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 20px;
}
.hamburger span:nth-child(2) {
  top: 30px;
}
.hamburger span:nth-child(3) {
  top: 40px;
}

.hamburger.active{
	color:#fff;
}
.hamburger.active span:nth-child(2){
  width: 0px;
}
.hamburger.active span:nth-child(1),
.hamburger.active span:nth-child(3){
  background :#fff;
  transition-delay: 0.3s;
}
.hamburger.active span:nth-child(1){
  transform: translateY(10px) rotate(45deg);
}

.hamburger.active span:nth-child(3){
  transform: translateY(-10px) rotate(-45deg);
}


nav.globalMenuSp {
	position: fixed;
	z-index : 2;
	top  : 0;
	left : 0;
	background:#e51616;
	text-align: center;
	width: 100%;
	height: 100vh;
	display: none;
	align-items: center;
}


nav.globalMenuSp  div{
	height:100%;
	width: 80%;
	margin: 64px auto;
}
nav.globalMenuSp .spnav01{
	width: 100%;
}
nav.globalMenuSp .spnav01 li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: .4s all;
}
nav.globalMenuSp .spnav01 li:last-child {
  padding-bottom: 0;
}
nav.globalMenuSp .spnav01 li a {
	display: block;
	color: #fffaf6;
	padding: 1em 0;
	text-decoration :none;
	font-size: 1.8rem;
	text-align:left;
	border-bottom: 1px solid #fffaf6;
}
nav.globalMenuSp .spnav01 li{
	opacity: 0;
}
nav.globalMenuSp.active ul li:nth-child(1) {
  animation: tatata 0.5s ease .1s forwards;
}
nav.globalMenuSp.active ul li:nth-child(2) {
  animation: tatata 0.5s ease .2s forwards;
}
nav.globalMenuSp.active ul li:nth-child(3) {
  animation: tatata 0.5s ease .3s forwards;
}
nav.globalMenuSp.active ul li:nth-child(4) {
  animation: tatata 0.5s ease .4s forwards;
}
nav.globalMenuSp.active ul li:nth-child(5) {
  animation: tatata 0.5s ease .5s forwards;
}
nav.globalMenuSp.active ul li:nth-child(6) {
  animation: tatata 0.5s ease .6s forwards;
}
nav.globalMenuSp.active ul li:nth-child(7) {
  animation: tatata 0.5s ease .7s forwards;
}
nav.globalMenuSp.active ul li:nth-child(8) {
  animation: tatata 0.5s ease .8s forwards;
}
nav.globalMenuSp.active ul li:nth-child(9) {
  animation: tatata 0.5s ease .9s forwards;
}
@keyframes tatata {
	0% {
	  opacity:0;
	  transform:translateX(5%)
	}
	
	100% {
	  opacity: 1;
	}
}
nav .spm_btn{
	background: #410dff;
	display: block;
	margin: 0 auto;
	padding: 15px 10px;
	color: #fff;
	border-radius: 50px;
	margin-top: 80px;
}
nav.globalMenuSp .spnav02{
	display:flex;
}

header{
	position: fixed;
	top: 0;
	left: 0;
	width:100%;
	display:flex;
	align-items: center;
	justify-content:space-between;
	padding: 12px 24px;
    z-index: 5;
	transition: background 0.3s ease;
}
.scrolled {
	background: #f7f6f5;
	border-bottom: 1px solid #b3afab;
}
header h1 a{
	display:flex;
	align-items:center;
	justify-content:center;
	height: 48px;
	width: 180px;
}
header a{
}
header .pcnav{
	display:flex;
	justify-content:center;
	align-items: center;
	height: 100%;
}
header .pcnav li a{
	padding:0 8px;
}
header .pcnav .os_btn{
	background:#e51616;
	color: #fff;
	padding: 10px 22px 10px 50px;
	margin-left: 15px;
	border-radius:50px;
	border: 1px solid #e51616;
	position: relative;
	display: inline-block;
}
header .pcnav .os_btn:before{
	content:"";
	position: absolute;
	left: 22px;
	top: 12px;
	width:24px;
	height: 24px;
	background: url("img/common/icon-shop.svg") center no-repeat;
	background-size: contain;
}

header .pcnav .os_btn:hover{
	background: #f7f6f5;
	color: #e51616;
}
header .pcnav .os_btn:hover:before{
	background: url("img/common/icon-shop-hov.svg") center no-repeat;
}

nav.globalMenuSp .spcm{
	height: auto;
	flex-flow:column;
	margin:24px 0;
}
nav.globalMenuSp .spcm li{
	height:70px;
	border:none;
	margin:5px auto;
}
nav.globalMenuSp .spcm li a{
	text-align:center;
	color:#fff;
}

@media screen and (max-width:1100px){
	header{
		padding: 14px 16px;
	}
	.scrolled {
	  background:none;
		border:none;
	}
	header h1 a{
	}
	header .pcnav{
		display:none;
	}
	header .inner{
		width:100%;
	}
	.hamburger{
		display:block;
	}
}


.spos_btn{
	position: relative;
    width: 250px;
    padding: 16px 0 16px 24px;
    background: #fffaf6;
    border: 1px solid #fffaf6;
    color: #e51616;
    border-radius: 50px;
    display: inline-block;
    text-align: center;
	margin: 40px 0 0 0;
}
.spos_btn:before{
	content:"";
	position: absolute;
	top: 18px;
	left: 30px;
	width: 24px;
	height: 24px;
	background: url("img/common/icon-shop-hov.svg") center no-repeat;
	background-size: contain;
}
.spos_btn:hover{
	background:none;
	color: #fffaf6;
}
.inner{
	max-width: 1140px;
	padding: 0 24px;
	margin: 0 auto;
}
.fadein {
  position: relative;
  overflow: hidden;
}

.fadein .bg {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%; /* 動かす分だけ大きく */
  background-size: cover;
  background-position: center;
  will-change: transform;
  transform: translateY(0);
  z-index: 0;
}

.fadein .content {
  position: relative;
  z-index: 1;
}

/* フェードイン用（既存なら不要） */
.fadein {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.fadein.show {
  opacity: 1;
}

.pc{
	display:block;
}
.sp{
	display:none;
}
@media screen and (max-width:840px){
	.pc{
		display:none;
	}
	.sp{
		display:block;
	}
	.inner{
		width:100%;
	}
}

#Mv{
	position: fixed;
    z-index: -1;
    top: 0;
    width: 100%;
}
#Mv .slider_mv{
	position:relative;
	overflow:visible;
	width:100%;
}
#Mv .slider_mv .swiper-container{
}
#Mv .slider_mv .swiper-slide{
	height:95vh;
	overflow:hidden;
}

#Mv .slider_mv .swiper-slide p{
	height:95vh;
	width:100%;
	margin: 0;
	padding: 0;
	background-size:cover !important;
	background-position:center !important;
}
#Mv .swiper-slide-active p,
#Mv .swiper-slide-duplicate-active p,
#Mv .swiper-slide-prev p{
  animation: zoomUp 5.5s linear forwards;  
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}


@media screen and (max-width:840px){
	#Mv .slider_mv .swiper-slide,
	#Mv .slider_mv .swiper-slide p{
		height:90vh;
	}
}


.top_h3{
	font-size: 4rem;
	line-height: .8;
}
.top_h3 span{
	font-size: 1.6rem;
}

#Message{
	position: relative;
	padding: 160px 0;
	margin-top: 95vh;
	background: #f7f6f5;
	height:80vh;
	display:flex;
	align-items:center
}
.mvtxt{
	position: absolute;
	top: -320px;
	left: 0;
	z-index: 2;
	padding: 24px 60px;
}
.mvtxt h2{
	font-size: 3.8rem;
	font-weight: 900;
}
.mvtxt p{
	font-size: 4rem;
	font-weight: 900;
}

#Message .inner{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
#Message .top_h3{
	margin:24px 0;
}
.title_box{
	width: 320px;
}
.txt_box{
	width: calc(100% - 320px);
}

@media screen and (max-width:840px){
	.mvtxt{
		padding:0 20px;
		top: -224px;
	}
	.mvtxt h2{
		font-size: 3rem
	}
	.mvtxt p{
		font-size: 3.5rem;
		margin: 0;
	}
	#Message{
		margin-top: 90vh;
		height: auto;
	}
	#Message .inner{
	}
	#Message .inner .title_box{
		width: 100%;
	}
	#Message .inner .txt_box{
		width:100%;
	}
}

#Story{
	background: #f7f6f5;
	display: flex;
	flex-wrap: wrap;
	justify-content:space-between;
	align-items:flex-start;
	padding: 0 0 160px 0;
}
.story_img{
  position: relative;
  overflow: hidden;
	width: calc(50% - 24px);
    height: 100vh;
	margin: 0 24px 0 0;
}
.story_img .bg{
	background: url("img/top/img01.jpg") center no-repeat;
	background-size: cover;
}
.story_txt{
	width: 50%;
	padding: 40px 40px 0 24px;
}
.story_txt h3{
	padding: 32px 0;
}
.story_txt h4{
	margin: 60px 0 32px;
}

@media screen and (max-width:840px){
	#Story{
		padding:0 0 80px 0;
	}
	.story_img{
		height: 60vh;
		width: 100%;
		margin: 0;
	}
	.story_txt{
		width: 100%;
		padding: 80px 24px 0;
	}
	.story_txt h3{
		font-size:3rem;
	}
	.story_txt h4{
		font-size: 2rem;
	}
}


#Farming{
	background: #f7f6f5;
	display: flex;
	flex-flow: row-reverse;
	justify-content:space-between;
	align-items:center;
	padding: 80px 0 160px 0;
	margin-top: -80px;
}

.farming_img{
  position: relative;
  overflow: hidden;	
	width: calc(50% - 24px);
    height: 100vh;
	margin: 0;
}
.farming_img .bg{
	background: url("img/top/img02.jpg") center no-repeat;
	background-size: cover;
}
.farming_txt{
	width: 50%;
	padding: 0 24px 0 48px;
}
.farming_txt ul{
}
.farming_txt ul li{
	list-style: disc;
    margin-left: 22px;
}
.farming_txt h3{
	margin-bottom: 60px;
}
.farming_txt h4{
	margin: 60px 0 32px;
}
@media screen and (max-width:840px){
	#Farming{
		flex-flow: column;
        padding: 0 0 100px 0;
		margin-top: 0;
	}
	.farming_img{
		height: 60vh;
		width: 100%;
		margin: 0;
	}
	.farming_txt{
		width: 100%;
		padding: 80px 24px 0;
	}
	.farming_txt h4{
		font-size: 2.1rem;
	}
}

.farm_slide_sec{
	background: #f7f6f5;
}
 .farm-slider {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
  }

.farm-slide {
	position: absolute;
	width: 100%;
	height: 100%;
	background-size:cover !important;
	background-repeat: no-repeat !important;
	background-position: 15% center !important;
	opacity: 0;
	animation: fade 10s infinite;
}

.farm-slide:nth-child(1) {
	animation-delay: 0s;
}

.farm-slide:nth-child(2) {
	animation-delay: 5s;
}
 @keyframes fade {
      0%   { opacity: 0; }
      10%  { opacity: 1; }
      45%  { opacity: 1; }
      55%  { opacity: 0; }
      100% { opacity: 0; }
}
@media screen and (max-width:840px){
	.farm-slider {
		height: 60vh;
	}
}

#Type{
	background: #f7f6f5;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#Type h3{
	font-size: 2.8rem;
	margin: 0 0 40px;
}
#Type h3 span{
	font-size:2rem;
}
.each.t_yumenoka,
.each.t_kotoka{
	width: 50%;
	padding: 160px 60px;
	color: #fffaf6;
	display: flex;
    justify-content: center;
}
.each.t_yumenoka{
	background: #e94330;
}
.each.t_kotoka{
	background: #d13513;
}

@media screen and (max-width:840px){
	.each.t_yumenoka,
	.each.t_kotoka{
		width: 100%;
		padding: 80px 24px;
	}
}

#Selection{
	background: #f7f6f5;
	padding: 80px 0 0 0;
}
#Selection .inner_l{
	padding: 80px 48px 80px;
}
.select_wrap{
	padding:20px 0 0 0; 
}
.select_wrap.varietyseries{
	padding:100px 0 0 0; 
}
.detail{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.sele_txt{
	width: 45%;
	padding: 0 40px;
}
.sele_h3{
	line-height: 0.8;
	margin: 0 0 48px 0;
}
.sele_h3 .rubi{
	font-size:1.6rem;
}
.sele_img{
	height: 85vh;
	width: 55%;
	width: calc(55% - 40px);
    margin: 20px;
}
.selectimg .bg{
	background:url(img/top/se01.jpg) center no-repeat;
	background-size: cover;
}
.varietyimg .bg{
	background:url(img/top/va01.jpg) center no-repeat;
	background-size: cover;
}
.sele_btn_wrap{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#Selection .each{
	width: 50%;
	padding: 20px;
	color: #fffaf6;
}
.each.yumenoka{
	background: #e94330;
}
.each.kotoka{
	background: #d13513;
}
.cvarea{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin: 40px 32px 40px;
}
.cvtxt{
}
.cvtxt h4{
	font-size: 2.8rem;
	line-height: 1;
}
.cvtxt h4 span{
	font-size: 1.6rem;
}
.cvtxt p{
	margin:16px 0;
}
.sele_name{
}
.cvtxt .price{
	font-size: 1.8rem;
}
.cvtxt .price span{
	font-size:1.4rem
}
.cvbtn a{
	position: relative;
	width: 220px;
	padding: 16px 0 16px 24px;
	background: #fffaf6;
	border: 1px solid #fffaf6;
	color: #e51616;
	border-radius: 50px;
	display: inline-block;
	text-align: center;
}
.cvbtn a:before{
	content:"";
	position: absolute;
	top: 18px;
	left: 30px;
	width: 24px;
	height: 24px;
	background: url("img/common/icon-shop-hov.svg") center no-repeat;
	background-size: contain;
}
.cvbtn a:hover{
	background:none;
	color: #fffaf6;
}
.cvbtn a:hover:before{
	background: url("img/common/icon-shop.svg") center no-repeat;
}
.btn_shop{
}

@media screen and (max-width:840px){
	#Selection{
	}
	#Selection .inner_l{
		padding: 0 24px 20px;
	}
	.detail{
		flex-flow:column-reverse;
	}
	.sele_img{
		width: calc(100% - 48px);
		height: 50vh;
		padding: 0 24px;
		margin: 24px 24px 0;
	}
	.sele_txt{
		width: 100%;
		padding: 40px 24px 60px;
	}
	.sele_btn_wrap{
		padding: 0 24px 24px;
	}
	.select_wrap.varietyseries{
		padding:0;
	}
	#Selection .each{
		width: 100%;
		padding: 24px 24px 48px 24px;
	}
	.cvarea{
		margin: 0;
	}
}

#Faq{
	background: #f7f6f5;
	padding: 160px 0 120px;
}
#Faq .inner_l{
	padding: 0 48px 0;
	max-width: 1400px;
	margin: 0 auto;
}
#Faq .inner_l h4{
	margin: 80px 0 40px;
}
.faqbox{/* padding: 20px 5% 40px; *//* margin: 20px 0; *//* background: #fff; */border-radius: 12px;}
.faq-wrapper {
  margin: 1em 0;
}

.faq-question {
  cursor: pointer;
  font-weight: bold;
  margin: 16px 0;
  position: relative;
  padding: 16px 35px 16px 24px;
  background: #fff;
  border-radius: 50px;
}

.faq-question::before,
.faq-question::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 14px;
  height: 1px;
  background: #aaa;
  transition: transform 0.3s ease;
}

/* 縦棒 */
.faq-question::after {
  transform: translateY(-50%) rotate(90deg);
}

/* 横棒 */
.faq-question::before {
  transform: translateY(-50%) rotate(0deg);
}

/* アクティブ時に縦棒を回して横棒にする → - 表示 */
.faq-question.active::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq-answer {
  display: none;
    position: relative;
    margin: 0 0 20px 13px;
    padding: 20px 20px;
    border-left: 2px solid #ccc;
}
.faq-answer a{
	color:#d94545;
}

@media screen and (max-width:840px){
	#Faq{
		padding:80px 0;
	}
	#Faq .inner_l{
		padding:0 24px;
	}
}

footer{
	background: #023930;
	padding: 24px 24px 0 24px;
	color: #fffaf6;
}
.f_wrap{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.f_img{
	background-size: cover !important;
	background-repeat: no-repeat !important;
	background-position: center !important;
	height: 90vh;
	width: calc(50% - 24px);	
	margin: 0 24px 0 0;
}
.f_txt{
	width: 50%;
	padding: 40px 40px 0 24px;
}
.f_txt figure{
	width:250px;
	height: auto;
	margin: 0 0 60px 0;
}
.f_company{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.f_c_p{
}
.f_c_p span{
	font-size: 1.4rem;
	padding-left: 24px;
}
.f_btn{
    color: #fffaf6;
    padding: 10px 64px 10px 32px;
	height: 50px;
    border-radius: 50px;
    border: 1px solid #fffaf6;
    position: relative;
    display: inline-block;
}
.f_btn:before{
	content:"";
	position: absolute;
	right: 22px;
	top: 18px;
	width:12px;
	height: 12px;
	background: url("img/common/icon-arrow.svg") center no-repeat;
	background-size: contain;
}
.f_btn:hover{
	background: #fffaf6;
	color:#023930;
}
.f_btn:hover:before{
	background: url("img/common/icon-arrow-hov.svg") center no-repeat;
}
@media screen and (max-width:840px){
	footer{
		padding:24px 24px 56px;
	}
	.f_img{
		height: 60vh;
		width: 100%;
		margin: 0;
	}
	.f_txt{
		width: 100%;
		padding: 60px 0 24px;
	}
	.f_txt figure{
		width:200px;
	}
	.f_company{
		width: 100%;
	}
	.f_c_p span{
		padding:0;
	}
	.f_btn{
	}
}