@charset "utf-8";
/* =====    リセットcss    ===== */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-style:normal;
	font-weight: normal;
	font-size: 100%;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
html{overflow-y: scroll;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,q:before, q:after {content: ''; content: none;}
input, textarea{margin: 0; padding: 0;}
ol, ul{list-style:none;}
table{border-collapse: collapse; border-spacing:0;}
caption, th{text-align: left;}
a:focus {outline:none;}



/* ========================================
    全体設定
========================================= */
html {
	animation: fadein 3s forwards;
}
@keyframes fadein {
	0% {opacity: 0}
	100% {opacity: 1}
}
body {
	font-family: 'BIZ UDPGothic', sans-serif;		
}
h2 {
	font-size: 1.8rem;
	font-weight: bold;
	color: #5F5F5F;
}
a {
	text-decoration: none;
}
/* スクロールバー　*/
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-thumb {
  background: rgba(77,76,76,0.5);
  border-radius: 5px;
}

/* ========================================
    ヘッダー
========================================= */
header {
	width: 100%;
	padding: 0 8%;
	border-bottom: 1px solid rgba(141,141,141,0.2);
	position: fixed;  /* ヘッダーを */
 	z-index: 999;	  /* 透かしてスクロール */
  	top: 0;
  	background: rgba(255,255,255,0.8);
  	box-sizing: border-box; /* 要素サイズ制御 */
}
.top_logo {
	margin-top: 20px;	
}
.top_logo h1 {
	float: left;
}
.top_sns img {
	padding-top: 20px;
}

/* ====================
	ナビゲーション　
======================*/

header a {
	color: #000;
}
.home_top a {         /* ホームのみオレンジ */
	color: #f17222;
	font-size: 1.2rem;
	line-height: 0.8;
}
header nav {
	max-width: 800px;
	right: 15%;
	top: 40px;
	position: fixed;	
}
header nav ul li {
	float: left;
	padding: 0 20px; 
	height: 30px;
	margin-top: 20px;/*セカンド枠も影響あり！*/	
}
header nav ul li a:hover {
	color: #f17222;
	transition: 0.7s;
} 
/* ショップボタン */
.online_shop {
	position: absolute;
	right: 5%;
	top: 40px;
}
.online_shop a {
	color: #fff;
	font-weight: 900;
	background-color: #F9914F;
	display:inline-block;
	border-radius: 5px;
	padding: 0 25px;
	line-height: 40px;
}
.online_shop a:hover {
	transition: 0.7s;
	color: #7C7C7C;
}


/* ===================
	メインイメージ
=====================*/

.main_imagetop {
	width: 100%;
	height: 400px;
	position: relative;
  	overflow: hidden;
	margin-top: 87px;
}
.main_imagetop img {
	object-fit: cover;
	display: block;
	position: absolute;   /* 画像サイズ表示エリアに合せる */      
	width: inherit;
	height: inherit;
}
.main_imagetop h2 {
	width: 100%;
	position: absolute;
	text-align: center;
	font-size: 3rem;
	line-height: 400px;
	color: #FFFFFF;
	font-weight: 400;
	letter-spacing: 0.6rem;
}

/*=== 画像アニメーション開始 ========= */

.main_image {
	width: 890px;
	height: 400px;
	position: relative;
  	overflow: hidden;
	margin: 26px 33px;
}
.main img {
	display: block;
	position: absolute;
	width: inherit;
	height: inherit;
	opacity: 0;
	animation: slideAnime 24s ease infinite;
	object-fit: cover;
}
 
 /*=== スライドのアニメーションを段差で開始する ========= */

.main img:nth-of-type(1) { animation-delay: 0s }
.main img:nth-of-type(2) { animation-delay: 8s }
.main img:nth-of-type(3) { animation-delay: 16s }
 

 /*=== スライドのアニメーション ========================= */

@keyframes slideAnime{
   0% { opacity: 0 }
  25% { opacity: 1 }
  40% { opacity: 1 }
  60% { opacity: 0 }
 100% { opacity: 0 }
}

/* ========================================
    コンセプトバナー
========================================= */
.banner_frame {       /* 3段共通枠 */
	width: 100%;
	height: 170px;
	text-align: center;
	line-height: 85px;
	border-bottom: 1px solid rgba(141,141,141,0.3);
}

/* ========================================
    コンセプト
========================================= */

.main_farst,.main_second {
	height: auto;
	background-color: rgba(252,255,235,0.5);
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.concept_text {
	width: 890px;
	padding: 2rem;
}
.concept_text h3 {
	font-size: 1.8rem;
	margin-bottom: 2rem;
}
.concept_text ul li {
	font-size: 1.2rem;
	line-height: 1.7;
	letter-spacing: 0.04rem;
}

/* ========================================
    農園MAP
========================================= */

.map_farst,.map_second {
	margin: 2rem 2vw 0 2vw;
}
.map_farst img {
	width: 100%;
}
.map_second img {
	width: 100%;
}
/* ========     代表    ========= */
.message {
	margin: 3rem auto 5rem auto;
}
.daihyo {
	max-width: 550px;
	height: 360px;
	object-fit: cover;
	overflow: hidden;
	margin: 5rem 0 3rem 15vw;
}
.daihyo img {
	margin: 0 auto;
}
.message ul {
	max-width: 600px;
	height: auto;
	margin: 4.5rem 0 0 5vw;
}
.message ul li {
	font-size: 1.2rem;
	line-height: 1.2;
	padding-bottom: 25px;
}
.message ul li span01 {
	font-size: 2.2rem;
	font-family:"AR BERKLEY";
}

/* ==========    フッター   =========== */

footer {
	width: 100%;
	height: 85px;
	background-color: #323232;
	color: #FFFFFF;
	text-align: center;
	line-height: 85px;
}

@media screen and (max-width: 1600px) {
	header nav {
		right: 20%;
	}
	header nav ul li {
		padding: 0 8px; 
		height: 30px;
		margin-top: 20px;
	}
}
@media screen and (max-width: 1280px) {
	header {
		padding-left: 3%;
	}	
	header nav {
		right: 3%;	
	}
	.online_shop {
		top: 10px;	
	}
	.concept_text h3 {
		font-size: 1.4rem;
		margin-bottom: 2rem;
		text-align: center;
	}
	.concept_text ul li {
		font-size: 1rem;
		line-height: 1.7;
		letter-spacing: 0.04rem;
	}
	.message ul li {
		font-size: 1rem;
	}
	.main_image {
		height: 330px;
	}
	.main_image img {
		width: 100%;
		object-position:center;
        height: inherit;
		object-fit: cover;
	}
	
}

@media (min-width:1081px) {
	.farm_map,.daihyo,.message {
		display: flex
	}
}
@media screen and (max-width: 1080px) {
	header {
		height: 120px;
	}
	.top_logo {
		margin-top: 30px;
	}
	.top_logo h1 img {
		max-width: 180px;	
	}
	.top_sns img {
		max-width: 36px;
	}
	header nav {
		right: 10px;
		top: 75px;
	}
	.online_shop {
		margin-top: 10px;
	}
	.main_imagetop {
		margin-top: 117px;
	}
	.main_imagetop h2 {
		font-size: 2.6rem;
		line-height: 400px;
		color: #FFFFFF;
		letter-spacing: 0.6rem;
	}
	.main_image {
		margin: 0 ;
	}
	.main_image img {
		width: 1080px;
	}
	h2 {
		font-size: 1.4rem;
		font-weight: 500;
		color: #131313;
	}
	.main_farst {
		flex-direction: column;
	}
	.main_second {
		flex-direction: column-reverse;
		margin-top: 5rem
	}
	.main_image {
		width: 100%;
		margin-bottom: 0;
	}
	.concept_text {
		padding: 2rem;
		width: auto;
	}
	.daihyo {
		height: auto;
		margin: 2rem auto;
	}
	.message ul {
		max-width: 650px;
		height: auto;
		margin: 4.5rem 0 0 5vw;
		margin: 0 auto;
		padding: 0 6vw
	}
	.daihyo_message span {
		display: none;
	}
}

@media screen and (max-width: 900px) {
	.top_logo {
		margin-top: 20px;
	}
	.top_sns {
		margin-top: -5px;
	}
	.main_imagetop {
		height: 280px;
	}
	.main_imagetop h2 {
		line-height: 280px;
	}
}

@media screen and (min-width: 651px) { /*----- 　ナビギミック  ------*/
	
	.init-bottom:after {
		content: '';
		display: inline-block;
		width: 6px;
		height: 6px;
		margin: 0 0 0 15px;
		border-right: 1px solid #000;
		border-bottom: 1px solid #000;
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.menu > li.menu__single {			/* ドロップダウン　基本　*/
		position: relative;
	}
	li.menu__single ul.menu__second-level { /* セカンド位置や時間 */
		position: absolute;
		top: 50px;
		background: rgba(255,255,255,0.7);
		-webkit-transition: all .5s ease;
		transition: all .7s ease;
		border-radius: 3px;
	}
	li.menu__single:hover ul.menu__second-level {
		top: 30px;
		visibility: visible;     	 /* セカンド最終位置 */
		opacity: 1;
	}
	ul.menu__second-level {			/* ドロップダウン　追加　*/
		visibility: hidden;
		opacity: 0;	
	}
	.menu__second-level li {
		width: 150px;
		border-bottom: 1px solid #111;
		border-radius: 3px;
	}
	.menu__second-level li a:hover {
		color: #f17222;
	}
}

@media screen and (max-width: 650px) {
	
	header nav {
		width: 130px;
		border-radius: 5px;
		margin-top: 50px;
		background-color: rgba(239,239,239,0.9);
		display: block;
		left: 1%;
	}
	header nav ul li {
		padding: 5px 10px; 
		height: 20px;
		margin-top: 30px; /*セカンド枠も影響あり！*/
		display: block;
	}
	.online_shop a {
		padding: 0 8px;
		line-height: 35px;
		font-size: 0.8rem;
	}
	.top_logo {
		margin-top: 55px;		
	}
	.top_sns img {
		max-width: 32px;
	}
	.main_imagetop h2 {
		font-size: 2rem;
	}
	.main_text {
		font-size: 3.2rem;
		margin: 0 3%;
		color: rgba(255,255,255,1.00);
	}
	.center_text {
		font-size: 18px;
		margin: 0 3%;
	}
	.bottom_text {
		font-size: 1.2rem;
		margin: 0 3%;
		color: rgba(255,255,255,1.00);		
	}
	.banner_frame {
		height: 110px;
		line-height: 2.8;
	}
	.concept_text ul li {
        font-size: 0.8rem;
    }
	.message ul li {
		font-size: 0.8rem;
	}
	.map_farst img {
		height: auto;
	}
	.map_second img {
		height: 500px;
	}
	footer {
		font-size: 0.9rem;
		letter-spacing: -0.06rem;
	}
	
	/* =======  ハンバーガーメニュー start　======= */
	.toggle-btn {
		display: block;
		position: fixed;
		top: 75px;
		right: 30px;
		width: 30px;
		height: 30px;
		z-index: 3;
		cursor: pointer;
	}
	.toggle-btn span {
		position: absolute;
		display: block;
		left: 0;
		width: 30px;
		height: 2px;
		background-color: #333;
		transition: all 0.5;
		border-radius: 2px;
	}
	.toggle-btn span:nth-last-child(1) {
		top: 4px;
	}
	.toggle-btn span:nth-last-child(2) {
		top: 14px;
	}
	.toggle-btn span:nth-last-child(3) {
		bottom: 4px;
	}
	.menu__second-level li { /* メニューセカンド表示なし */
		display: none;
	}
	.menu {
		display: none;	
	}
	.open .menu {
		display: block;      /*-- オープンメニュー --*/
	}
	/* =======  ハンバーガーメニュー end　======= */
	.main_image {
		height: 260px;
	}
	.main_image img {
		width: 100%;
		object-position:center;
		object-fit: cover;
	}
	.main_second {
		margin-top: 1.5rem;
	}
	.message ul li span01 {
		font-size: 1.5rem;	
	}
}

@media screen and (max-width: 360px) {
	header {
		padding: 0 1%;
	}
	.toggle-btn {
		right: 10px;
	}
}





