@charset "utf-8";
/* CSS Document */
html {
  font-size: 10px;
}
body {
  font-family:YuGothic, 'Yu Gothic medium', 'Hiragino Sans', Meiryo, 'sans-serif';
  color: #333;
  margin: 0 auto;
	max-width: 1920px;
}
a {
  text-decoration: none;
}
li {
  list-style: none;
}
img {
  max-width: 100%;
}
.sp-only {
	display: none;
}
.flex {
	display: flex;
}
.row {
	flex-direction: row-reverse;
}
.wrap {
	flex-wrap: wrap;
}
.ffft {
	font-family: "Futura PT Medium", "Futura PT Bold", "Futura PT Light";
}
.ffym {
	font-family: "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.fftg {
	font-family:"FOT-TsukuARdGothic Std", sans-serif;
}
.fwb {
	font-weight: 600;
}
.white {
	color: #fff;
}
.fs16 {
	font-size: 16px;
}
.fs18 {
	font-size: 18px;
}
.fs20 {
	font-size: 20px;
}
.fs24 {
	font-size: 24px;
}
.fs28 {
	font-size: 28px;
}
.fs32 {
	font-size: 32px;
}
.fs40 {
	font-size: 40px;
}

.ttl01 {
	width: 90%;
	margin: auto;
	padding-top: 4rem;
	position: relative;
}
.ttl01 span {
	position: absolute;
	top:-2rem;
	left: 50%;
	transform: translate(-50%);
	z-index: -1;
	font-size: 100px;
	text-align: center;
	font-style: oblique;
	letter-spacing: 10px;
	color: rgba(176,235,190,0.3);
}
.ttl01 h4 {
	text-align: center;
	color: #3C6445;
	z-index: 2;
}

/*--- header ---*/

#header .inner {
	width: 98%;
	margin: auto;
	justify-content: space-between;
	align-items: center;
}
.head-left {
	align-items: baseline;
	gap:3rem;
}
.head-left h1 a {
	display: block;
	font-size: 60px;
	color: #333;
}
.head-nav ul {
	gap:2rem;
}
.head-nav ul li a {
	display: block;
	color: #333;
}
.head-nav ul li:hover a {
	color: #707070;
}
.btn {
	background: #EFD17D;
	border-radius: 5rem;
	box-shadow: 2px 2px 5px #ccc;
}
.contact-btn {
	width: 300px;
	border-radius: 5rem;
	padding: 2rem 0;
}
.btn:hover {
	box-shadow: none;
}
.btn a {
	display: block;
	text-align: center;
}

/*========= 上部固定させるためのCSS ===============*/
#header{
	height: 80px;/*高さ指定*/
	width:100%;/*横幅指定*/
	/*以下はレイアウトのためのCSS*/
	background:#AFF2B3;
	padding: 2rem 0;
}

/*JSを使いfixedクラスが付与された際の設定*/
#header.fixed{
	position: fixed;/*fixedを設定して固定*/
  z-index: 999;/*最前面へ*/
  top:0;/*位置指定*/
  left:0;/*位置指定*/
}



/*mainvisual*/
.mainvisual {
	height: 90vh;
	background-position: center center;
	background-size: cover;
	position: relative;
}
.catch-copy {
	background: #fff;
	padding: 4rem 7rem 4rem 3rem;
	box-sizing: border-box;
	position: absolute;
	bottom: 10rem;
	right: 5rem;
}
.catch-copy h2,
.catch-copy h3 {
	text-align: center;
}
.catch-copy h2 {
	font-size: 60px;
	margin-bottom: 1rem;
	position: relative;
}
.catch-copy h2::before {
	content:"";
	width: 100px;
	height: 100px;
	background: url("../img/deco01.png");
	background-size: cover;
	position: absolute;
	bottom: -8.8rem;
	right: -7rem;
}
.catch-copy h3 {
	font-size: 36px;
}


/*greeting*/
#greeting {
	margin-top: 8rem;
	padding: 8rem 0;
}
#greeting .inner {
	width: 1200px;
	margin: 15rem auto 5rem auto;
	justify-content: space-between;
	align-items: center;
	position: relative;
}
#greeting .inner .img {
	width: 40%;
	z-index: 1;
	margin-left: auto;
}
#greeting .inner .txt {
	position: absolute;
  width: 70%;
  background: rgba(236, 246,232,0.5);
  box-sizing: border-box;
  padding:6rem  3rem;
  border-radius: 5px;
  z-index: 2;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
#greeting .inner .txt p {
	line-height: 2;
}
#greeting .inner .txt p span {
	color: #3C6445;
}


/*product*/
#product {
	padding: 5rem 0;
	position: relative;
}
#product::after {
	content: "";
	width: 100%;
	height: 100%;
	background: #F1F6F3;
	position: absolute;
	top:0;
	left: 0;
	z-index: -2;
}
#product .inner {
	width: 1200px;
	margin: 5rem auto 0 auto;
	justify-content: space-between;
	align-items: flex-start;
}
#product .inner .item {
	width: 30%;
	background: #fff;
	padding: 3rem 0;
	border-radius: 1rem;
}
#product .inner .item  .item-img,
#product .inner .item  .item-name{
	width: 90%;
	margin:auto; 
}
#product .inner .item  .item-name a {
	display: block;
	color: #333;
}
#product .inner .item  .item-name:hover a {
	color: #707070;
}
#product .inner .item  .item-name {
	margin-top: 1rem;
}
.item-btn {
	margin: 3rem auto 0 auto;
	width: 250px;
	border-radius: 3rem;
	padding: 1rem 0;
}


/*company*/
#company {
	padding: 8rem 0;
}
.company-link {
	width: 800px;
	margin: auto;
	padding: 10rem 0;
	background: url("../img/bg-pagelink.jpg");
	background-size: cover;
	background-position: center;
}
.company-link a {
	display: block;
	text-align: center;
	font-size: 50px;
}

/*info*/
#info {
	padding: 5rem 0;
}
.infottl {
	text-align: center;
	color: #3C6445;
}
#info dl {
	width: 800px;
	margin: 3rem auto;
	justify-content: space-between;
}
#info dl dt {
	width: 20%;
	text-align: center;
	border-bottom: 1px solid #203B22;
	color: #3C6445;
}
#info dl dd {
	width: 80%;
	border-bottom: 1px solid #203B22;
}

/*link*/
#link {
	padding: 5rem 0 8rem 0;
}
.linkttl {
	text-align: center;
	color: #3C6445;
}
#link ul {
	width: 600px;
	margin: auto;
	flex-direction: column;
	gap: 3rem;
}
#link ul li {
	padding-bottom: 0.5rem;
	border-bottom: 1px solid #ccc;
}
.link-company a {
	display: block;
	text-align: center;
}
.sns-link {
	justify-content: center;
	gap:2rem;
}
.sns-link a {
	display: block;
	color: #333;
}

/*contact*/
#contact {
	padding: 8rem 0;
	border-top: 1px solid #0E8A23;
}
#contact .inner {
	width: 1000px;
	margin: 5rem auto 0 auto;
	align-items: center;
	justify-content: center;
	gap:5rem;
}
.btn02 {
	width: 350px;
	padding: 1.5rem 0;
	background: rgba(200,236,216,0.6);
}
.btn02 a {
	display: block;
	text-align: center;
	font-style: oblique;
	color: #333;
	font-weight: lighter;
}
.btn02 a i {
	margin: 1rem;
}



/*footer*/
#footer {
	padding-top: 5rem;
	background: #AFF2B3;
}
#footer h1 {
	font-size: 50px;
	text-align: center;
	margin-bottom: 2rem;
}
.foot-adress {
	text-align: center;
}
.foot-nav {
	width: 900px;
	padding: 2rem 0 2rem 0;
	margin: 3rem auto 0 auto;
	border-top: 1px solid #ccc;
}
.foot-nav ul {
	justify-content: center;
	gap:3rem;
}
.foot-nav ul li a {
	display: block;
	color: #333;
}
.copy {
	text-align: center;
	font-size: 12px;
}


/*--- 下層 ---*/
/*mainvisual*/
.s-mainvisual {
	height: 50vh;
	background: url("../img/s-mainvisual.jpg");
	background-size: cover;
	background-position: center;
	position: relative;
}
.page-ttl {
	width: 600px;
	background: #fff;
	padding: 4rem 7rem 4rem 3rem;
	box-sizing: border-box;
	position: absolute;
	top: 45%;
	left: 50%;
	transform: translate(-50%);
}
.page-ttl h2 {
	text-align: center;
	font-size: 60px;
}

/*companyinfo*/
#comany-info {
	padding: 8rem 0;
}
#comany-info .inner {
	width: 900px;
	margin: 5rem auto;
}

#comany-info .inner ul {
	flex-direction: column;
	gap:3rem;
	
}
#comany-info .inner ul li {
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #A4B5CF;
	padding: 1rem 0;
}
#comany-info .inner ul li .dt {
	width: 20%;
	background: #3C6445;
	padding: 0.5rem 0;
}
#comany-info .inner ul li .dt p {
	text-align: center;
}
#comany-info .inner ul li .dd {
	width: 80%;
	padding-left: 1rem;
	box-sizing: border-box;
}


/*フォーム*/
#contact-f {
	padding: 8rem 0;
}
.contact-form {
	width: 70%;
	margin: 8rem  auto 0 auto;
	font-size: 16px;
	background: #fff;
	box-shadow: 2px 2px 6px #ccc;
	padding: 5rem 0;
}
.contact-form form {
	margin: auto;
}
@media screen and (max-width:1280px){
	.form {
		width: 70%;
	}
}
.form-item {
	border-bottom: 1px solid #ccc;
	padding:3rem 0;
}
.form-item ul {
	justify-content: space-between;
	align-items: center;
}
.form-item ul .form-label {
	width: 25%;
	text-align: center;
	line-height: 2.5;
}
.form-item ul .form-label span {
	background: #3C6445;
	color: #fff;
	border-radius: 1rem;
	padding: 0.6rem 1rem;
	font-size: 12px;
}
.form-item ul .form-input {
	width: 70%;
}
.check {
	flex-direction: column;
	gap: 2rem;
}
.input_box {
	border: 1px solid #ccc;
	padding: 1rem 0;
	width: 80%;
}
.input_txtarea {
	border: 1px solid #ccc;
	padding: 1rem 0;
	width: 80%;
	height: 10em;
}

.submit-btn {
	width: 350px;
	margin: 3rem auto;
	border-radius: 2rem;
}
.Form-Btn {
	background: linear-gradient(#11B10B,#92D595);
	padding: 2rem 0;
	text-align: center;
	color: #fff;
	width: 100%;
	border: none;
	font-size: 2.4rem;

}


/*zeroagri*/
#zeroagri {
	padding: 8rem 0;
}
#zeroagri .inner {
	width: 800px;
	margin: 3rem auto;
	justify-content: space-between;
	align-items: center;
}
#zeroagri .inner .img,
#zeroagri .inner .txt {
	width: 45%;
}
#zeroagri .inner .txt p {
	font-size: 16px;
	line-height: 2;
}
#zeroagri .inner .txt .link {
	width: 250px;
	padding: 1rem 0;
	border: 1px solid#333;
	margin-top: 2rem;
}
#zeroagri .inner .txt .link a {
	display: block;
	text-align: center;
	font-size: 16px;
	clip-path: #333;
}



























/*---------------------------------------------*/

/*トップリンク*/
/*リンクの形状*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background:#fff;
	border: 1px solid #0C3675;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	color: #7d7d7d;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:1.6rem;
	transition:all 0.3s;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom:10px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}




/*==================================================
ふわっ
===================================*/

/* その場で */
.fadeIn{
animation-name:fadeInAnime;
animation-duration:1.0s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 下から */

.fadeUp{
animation-name:fadeUpAnime;
animation-duration:1.0s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* 上から */

.fadeDown{
animation-name:fadeDownAnime;
animation-duration:1.0s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeDownAnime{
  from {
    opacity: 0;
  transform: translateY(-100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* 左から */

.fadeLeft{
animation-name:fadeLeftAnime;
animation-duration:1.0s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeLeftAnime{
  from {
    opacity: 0;
  transform: translateX(-100px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}

/* 右から */

.fadeRight{
animation-name:fadeRightAnime;
animation-duration:1.0s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeRightAnime{
  from {
    opacity: 0;
  transform: translateX(100px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger{
    opacity: 0;
}


/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/

.box{
	opacity: 0;
}

/*==================================================
動かしたい動き（今回は” ふわっ” を採用）
===================================*/

.fadeUp {
animation-name:fadeUpAnime;
animation-duration:1.0s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}
