@charset "UTF-8";

/* inview設定 */
.inview {
	opacity: 0;
	transform: translate(0, 80px);
	-webkit-transform: translate(0, 80px);
	-moz-transform: translate(0, 80px);
	-ms-transform: translate(0, 80px);
	-o-transform: translate(0, 80px);
	transition: 0.8s;
	-webkit-transition: 0.8s;
	-moz-transition: 0.8s;
	-ms-transition: 0.8s;
	-o-transition: 0.8s;
}

.inview:nth-of-type(1) {
	transition-delay: 0.0s;
}

.inview:nth-of-type(2) {
	transition-delay: 0.3s;
}

.inview:nth-of-type(3) {
	transition-delay: 0.6s;
}

.inview:nth-of-type(4) {
	transition-delay: 0.9s;
}

.inview:nth-of-type(5) {
	transition-delay: 1.1s;
}

.inview:nth-of-type(6) {
	transition-delay: 1.3s;
}

.inview.is-show {
	opacity: 1;
	transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
	-moz-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-o-transform: translate(0, 0);
}


/* トップページ専用コンテンツタイル */
.top-cont-ttl {
	margin-bottom: 30px;
	line-height: 1.5;
	font-weight: 500;
	text-align: center;
}

.ttl-green {
	color: #3b7d72;
}

.ttl-white {
	color: #ffffff;
}

.top-cont-ttl h3 {
	font-size: 30px;
	letter-spacing: 0.1em;
}

.top-cont-ttl .top-cont-ttl-en {
	font-size: 16px;
	letter-spacing: 0.1em;
}


/* スライダー */
@-webkit-keyframes zoomOut {
	0% {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
		-moz-transform: scale(1.1);
		-ms-transform: scale(1.1);
		-o-transform: scale(1.1);
}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes zoomOut {
	0% {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
		-moz-transform: scale(1.1);
		-ms-transform: scale(1.1);
		-o-transform: scale(1.1);
}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
	animation: zoomOut 5s linear 0s 1 normal both;
	-webkit-animation: zoomOut 5s linear 0s 1 normal both;
}

#top-slider {
	padding: 0;
	margin-top: 80px;
	margin-bottom: 0;
}
/* ブレイクポイント1160 */
@media screen and (max-width: 1160px) {
	#top-slider {
		margin-top: 60px;
	}
}

#top-slider .swiper-wrapper {
	position: relative;
}

#top-slider .swiper-wrapper .slide-img {
	height: calc(100vh - 80px);
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 50%;
	display: block;
}

#top-slider .swiper-wrapper .slide01 {
	background-image: url(../img/top/slider01-pc.jpg);
}

#top-slider .swiper-wrapper .slide02 {
	background-image: url(../img/top/slider02-pc.jpg);
}

#top-slider .swiper-wrapper .slide03 {
	background-image: url(../img/top/slider03-pc.jpg);
}

#top-slider .swiper-wrapper .slide04 {
	background-image: url(../img/top/slider04-pc.jpg);
}

#top-slider .swiper-wrapper .slider-fixedimg {
	position: absolute;
	z-index: 1;
	height: calc(100% - 100px);
	width: auto;
	top: 50%;
	left: 5%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}

#top-slider .swiper-wrapper .slider-fixedimg img {
	height: 100%;
	width: auto;
}



/* 各商品ページへのリンク */
#link-product-area .contents {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}

#link-product-area .contents .inner {
	width: 31%;
	background-color: #ffffff;
	box-shadow: 0 0 10px rgba(153,153,153,0.6);
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	overflow: hidden;
	color: #333333;
	text-decoration: none;
	display: block;
}

#link-product-area .contents .inner figure {
	overflow: hidden;
}

#link-product-area .contents .inner figure img {
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
}

#link-product-area .contents .inner:hover figure img {
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
}

#link-product-area .contents .inner .comment {
	padding: 20px;
}


/* 動画コンテンツ */
#movie-sec .contents {
	display: flex;
	justify-content: center;
	gap: 4%;
	margin: 0 auto;
}

#movie-sec .contents .movie_block {
	width: 69%;
	height: 100%;
	aspect-ratio: 16/9;
}

#movie-sec .contents .movie_block iframe {
	width: 100%!important;
	height: 100%!important;
}

#movie-sec .contents .text_block {
	width: 27%;
}

#movie-sec .contents .text_block .top-cont-ttl {
	text-align: left;
}

#movie-sec .contents .text_block .comment {
	text-align: justify;
}

#movie-sec .contents .text_block .link {
	display: inline-block;
	margin-top: 30px;
}


/* 新着情報 */
#news-sec .news-bg {
	background-image: url(../img/top/news-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 50%;
	height: 400px;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

#news-sec .contents {
	max-width: 700px;
	padding: 50px;
	background-color: #ffffff;
	margin: -300px auto 0;
}

#news-sec .contents .inner {
	border-bottom: 1px dotted #999999;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #333333;
	text-decoration: none;
	padding: 15px 0;
	line-height: 1.6;
}

#news-sec .contents .inner:first-of-type {
	border-top: 1px dotted #999999;
}

#news-sec .contents .inner .publish {
	width: 13%;
}

#news-sec .contents .inner .category {
	width: 16%;
	font-size: 13px;
	text-align: center;
}

#news-sec .contents .inner .category.cate-color01 {
	border: 1px solid #3b7d72;
	color: #3b7d72;
}

#news-sec .contents .inner .category.cate-color02 {
	border: 1px solid #d97a3f;
	color: #d97a3f;
}

#news-sec .contents .inner .ttl {
	width: 65%;
}

#news-sec .contents .inner:hover .ttl {
	color: #3b7d72;
	text-decoration: underline;
}



/* イメージ写真 */
#scene-area {
	margin: 0 auto;
}

#scene-area .contents {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	width: 100%;
	height: 300px;
}

#scene-area .contents .scene01,
#scene-area .contents .scene02,
#scene-area .contents .scene03 {
	width: 33.33%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 50%;
}

#scene-area .contents .scene01 {
	background-image: url(../img/top/scene01.jpg);
}

#scene-area .contents .scene02 {
	background-image: url(../img/top/scene02.jpg);
}

#scene-area .contents .scene03 {
	background-image: url(../img/top/scene03.jpg);
}


/* メッセージ */
#message-sec {
	background-image: url(../img/common/pattern-stripe.svg);
	background-repeat: repeat;
	background-size: 80px;
	margin-top: 0;
}

#message-sec .container {
	padding: 100px 0;
}

#message-sec .contents {
	max-width: 800px;
	margin: 0 auto;
}

#message-sec .inner-message {
	height: 300px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row-reverse;
	position: relative;
	padding: 0 50px;
}

#message-sec .inner-message::before {
	content: "";
	position: absolute;
	top: 0;
	right: min(850px, 60vw);
	width: max(280px, calc(50vw - 450px));
	height: 300px;
	background-image: url(../img/top/message-vegetables01.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: 100% 50%;
	z-index: -1;
}

#message-sec .inner-message::after {
	content: "";
	position: absolute;
	top: 0;
	left: min(850px, 60vw);
	width: max(280px, calc(50vw - 450px));
	height: 300px;
	background-image: url(../img/top/message-vegetables02.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: 0 50%;
	z-index: -1;
}

#message-sec .inner-message h3 {
	max-width: 100px;
}

#message-sec .inner-message .comment {
	writing-mode: vertical-rl;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: vertical-rl;
	font-family: "Noto Sans JP", "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	padding: 50px 0;
	line-height: 2.5;
	color: #4d2b18;
	text-align: justify;
}

#message-sec .inner-store {
	margin-top: 100px;
}

#message-sec .inner-store .store-message {
	display: flex;
	justify-content: space-between;
}

#message-sec .inner-store .store-message figure {
	width: 50%;
	margin-top: -100px;
}

#message-sec .inner-store .store-message .comment {
	width: 50%;
	margin-top: 50px;
}

#message-sec .inner-store .store-message .comment p {
	text-align: justify;
}

#message-sec .inner-store .store-message .comment .link {
	margin-top: 30px;
	display: inline-block;
}


/* 採用情報 */
#recruit-sec {
	background-image: url(../img/top/recruit-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 50%;
	padding: 100px 0;
	margin-top: -150px;
}

#recruit-sec .comment {
	text-align: center;
	color: #ffffff;
	margin-bottom: 30px;
}

#recruit-sec .contents {
	display: flex;
	justify-content: space-between;
}

#recruit-sec .contents a {
	width: 47%;
	overflow: hidden;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	box-shadow: 0 0 10px rgba(51, 51, 51, 0.8);
	display: block;
}

#recruit-sec .contents a img {
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
}

#recruit-sec .contents a:hover img {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
}


/* SDGsへの取り組み */
#sdgs-sec .contents {
	display: flex;
	justify-content: space-between;
	max-width: 800px;
	margin: 0 auto;
}

#sdgs-sec .contents figure {
	width: 44%;
}

#sdgs-sec .contents .inner {
	width: 46%;
}

#sdgs-sec .contents .inner .top-cont-ttl {
	text-align: left;
}

#sdgs-sec .contents .inner .comment {
	text-align: justify;
}

#sdgs-sec .contents .inner .link {
	display: inline-block;
	margin-top: 30px;
}



/* スマートフォン用 - ブレイクポイント768　*/
@media screen and (max-width: 768px) {

	/* トップページ専用コンテンツタイル */
	.top-cont-ttl h3 {
		font-size: 25px;
	}
	
	.top-cont-ttl .top-cont-ttl-en {
		font-size: 15px;
	}


	/* スライダー */
	#top-slider .swiper-wrapper .slide-img {
		max-height: 450px;
	}

	#top-slider .swiper-wrapper .slide01 {
		background-image: url(../img/top/slider01-sp.jpg);
	}

	#top-slider .swiper-wrapper .slide02 {
		background-image: url(../img/top/slider02-sp.jpg);
	}

	#top-slider .swiper-wrapper .slide03 {
		background-image: url(../img/top/slider03-sp.jpg);
	}

	#top-slider .swiper-wrapper .slide04 {
		background-image: url(../img/top/slider04-sp.jpg);
	}


	/* 各商品ページへのリンク */
	#link-product-area .contents {
		display: block;
	}

	#link-product-area .contents .inner {
		width: 100%;
		max-width: 450px;
		margin: 0 auto 30px;
	}


	/* 動画コンテンツ */
	#movie-sec .contents {
		display: block;
	}

	#movie-sec .contents .movie_block {
		width: 100%;
	}

	#movie-sec .contents .text_block {
		width: 100%;
		margin-top: 30px;
	}

	#movie-sec .contents .text_block .top-cont-ttl {
		text-align: left;
		margin-bottom: 20px;
	}


	/* 新着情報 */
	#news-sec .news-bg {
		height: 250px;
	}

	#news-sec .contents {
		max-width: 450px;
		padding: 20px;
		margin: -100px auto 0;
	}

	#news-sec .contents .inner {
		justify-content: flex-start;
		flex-wrap: wrap;
	}

	#news-sec .contents .inner .publish {
		width: 30%;
		max-width: 100px;
	}

	#news-sec .contents .inner .category {
		width: 40%;
		max-width: 150px;
		font-size: 12px;
	}

	#news-sec .contents .inner .ttl {
		width: 100%;
		margin-top: 5px;
	}


	/* イメージ写真 */
	#scene-area .contents {
		height: 120px;
	}


	/* メッセージ */
	#message-sec .container {
		padding: 80px 0;
	}

	#message-sec .inner-message {
		height: auto;
		display: block;
		padding: 0;
		margin-bottom: 250px;
	}

	#message-sec .inner-message::before {
		top: 100%;
		right: auto;
		left: 0;
		width: 47%;
		max-height: 200px;
		background-position: 100% 0;
	}

	#message-sec .inner-message::after {
		top: 100%;
		left: auto;
		right: 0;
		width: 47%;
		max-height: 200px;
		background-position: 0 0;
	}

	#message-sec .inner-message h3 {
		max-width: 450px;
		margin: 0 auto;
	}

	#message-sec .inner-message .comment {
		writing-mode: horizontal-tb;
		-webkit-writing-mode: horizontal-tb;
		-ms-writing-mode: horizontal-tb;
		padding: 30px 0 20px;
		line-height: 2.0;
	}

	#message-sec .inner-store {
		margin-top: 80px;
	}

	#message-sec .inner-store .store-message {
		display: block;
	}

	#message-sec .inner-store .store-message figure {
		width: 100%;
		margin: -50px auto 0;
		max-width: 450px;
	}

	#message-sec .inner-store .store-message .comment {
		width: 100%;
		margin-top: 20px;
	}


	/* 採用情報 */
	#recruit-sec {
		padding: 80px 0;
		margin-top: -80px;
	}

	#recruit-sec .comment {
		text-align: justify;
	}

	#recruit-sec .contents {
		display: block;
	}

	#recruit-sec .contents a {
		width: 100%;
		margin-bottom: 30px;
	}


	/* SDGsへの取り組み */
	#sdgs-sec .contents {
		display: block;
	}

	#sdgs-sec .contents figure {
		width: 100%;
		max-width: 450px;
		margin: 0 auto 30px;
	}

	#sdgs-sec .contents .inner {
		width: 100%;
	}

	#sdgs-sec .contents .inner .top-cont-ttl {
		text-align: center;
	}

}