@charset "utf-8";
#about {
	margin-top: 5%;
}
@keyframes fadeInAnime{
  0% {
    filter: brightness(0) saturate(100%) invert(37%) sepia(14%) saturate(3166%) hue-rotate(104deg) brightness(94%) contrast(98%);
  }
  25% {
    filter: brightness(0) saturate(100%) invert(37%) sepia(14%) saturate(3166%) hue-rotate(104deg) brightness(94%) contrast(98%);
  }
  40% {
    filter: brightness(0) saturate(100%) invert(100%) sepia(12%) saturate(550%) hue-rotate(219deg) brightness(118%) contrast(100%);
	opacity: 1;
  }
  75% {
    filter: brightness(0) saturate(100%) invert(100%) sepia(12%) saturate(550%) hue-rotate(219deg) brightness(118%) contrast(100%);
	opacity: 1;
  }
  85% {
    filter: brightness(0) saturate(100%) invert(100%) sepia(12%) saturate(550%) hue-rotate(219deg) brightness(118%) contrast(100%);
	opacity: 0;
  }
  100% {
    filter: brightness(0) saturate(100%) invert(100%) sepia(12%) saturate(550%) hue-rotate(219deg) brightness(118%) contrast(100%);
	opacity: 0;
  }
}
@keyframes slide {
  0% {
  transform: translateX(0px);
  }
  90% {
  transform: translateX(0px);
  }
  100% {
  transform: translateX(100%);
  }
}

/*===============================================
●画面の横幅が769px以上
===============================================*/
@media screen and (min-width : 769px ){
#pc------------------------------------------- {
}
#loading {
    width: 100%;
    height: 100%;
    margin: 0;
    background-color: #1F8D3A;
    opacity: 1.0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999;	animation-name: slide;
	animation-duration:4s;
	animation-timing-function:ease;
	animation-delay: 0.5s;
	animation-direction:normal;
	animation-fill-mode:forwards;
}
#loading p {
	display: flex;
	display: -webkit-flex; /* Safari */ 　
    display: -ms-flexbox;
    flex-wrap: wrap;
	-webkit-flex-wrap: wrap; /* Safari */
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 70%;
	margin-left: auto;
    margin-right: auto;
}
#loading p {
	animation-name: fadeInAnime;/*1で解説*/
	animation-duration:4s;/*3で解説*/
	animation-timing-function:ease;/*5で解説*/
	animation-delay: 0.5s;/*6で解説*/
	animation-direction:normal;/*7で解説*/
	animation-fill-mode:forwards;
}
#loading p img {
	width: 400px;
}
#catch {
	position: relative;
}
#catch h2 {
	position: absolute;
	z-index: 99;
	top: 100px;
	left: 0px;
	right: 0px;
}
#catch p {
	position: absolute;
	z-index: 99;
	margin-left: auto;
    margin-right: auto;
	top: 570px;
	left: 0px;
	right: 0px;
}
#catch p img {
	width: 450px;
}
#catch p a img:hover {
	opacity: 1;
	filter: brightness(1.2);
}
#catch .banner {
	text-align: center;
}
#catch .banner span {
	display: block;
	color: #2B933A;
	font-size: 20px;
	margin-top: 8px;
	font-weight: bold;
}
.slider {
  height: 640px;
  margin-inline: auto;
  overflow: hidden; /* 画像がはみ出ないようにする */
  width: 100%;
}
.slick-img.slide01 {
	background-image: url("../images/index/slide_bg01.jpg");
	height: 640px;
	background-position: center center;
	background-size: cover;
}
.slick-img.slide02 {
	background-image: url("../images/index/slide_bg02.jpg");
	height: 640px;
	background-position: center center;
	background-size: cover;
}
.slick-img.slide03 {
	background-image: url("../images/index/slide_bg03.jpg");
	height: 640px;
	background-position: center center;
	background-size: cover;
}
.slick-img img {
  width: 100%;
}
.slick-img img.sp {
	display: none;
}
@keyframes zoomUp {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}
#topics {
	margin-top: 210px;
	margin-left: auto;
    margin-right: auto;
}
.xscroll {
	margin-left: auto;
    margin-right: auto;
	overflow-x: scroll;
	scrollbar-width: 100px;
	white-space: nowrap;
	width: 1160px;
	margin-left: auto;
    margin-right: auto;
}
.xscroll::-webkit-scrollbar{
   height: 3px;
}
.xscroll::-webkit-scrollbar-track{
   background-color: #DADBDB;
   border-radius: 100px;
}
.xscroll::-webkit-scrollbar-thumb{
   background-color: #2B984A;
   width: 10px;
   border-radius: 100px;
}
.xscroll::vertical {
	width: 300px;
}

#topics .flex {
	height: 430px;
}
#topics .flex div {
	width: 250px;
	text-align: left;
	display: inline-block;
	vertical-align: top;
}
#topics .flex div+div {
	margin-left: 50px;
}
#topics .flex div img {
	width: 250px;
	height: 250px;
	object-fit: cover;
}
#topics .flex div time {
	font-size: 14px;
	color: #717070;
}
#topics .flex div p {
	font-size: 16px;
	line-height: 1.6em;
	width: 250px;
	white-space: normal;
}
#topics .flex div a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 99;
}
#topics .flex div a:hover {
	background-color: rgba(255,255,255,0.30);
}
#topics .btn01 {
	margin-top: 40px;
}
#about {
	background-color: #D9D5CE;
	margin-top: 150px;
	padding-top: 90px;
	padding-bottom: 90px;
	position: relative;
}
#about .fig {
	display: flex;
	display: -webkit-flex; /* Safari */
    display: -ms-flexbox;
	justify-content: space-between;
	-webkit-justify-content: space-between; /* Safari */
    -ms-flex-pack: justify;
	max-width: 1200px;
	width: 100%;
	margin-left: auto;
    margin-right: auto;
	position: absolute;
	top: 230px;
	left: 0px;
	right: 0px;
}
#about .fig figure {
	width: 24%;
}
#about .fig figure img {
	width: 100%;
	max-width: 300px;
}
#about .fig figure:nth-of-type(2) {
	position: relative;
	top: 250px;
}
#about h3 {
	font-size: 32px;
	font-weight: bold;
	line-height: 1.6em;
	margin-top: 10px;
	margin-bottom: 20px;
}
#about p span {
	color: #727071;
}
#about p a img {
	width: 230px;
	margin-top: 40px;
}
#farm h2 {
	background-image: url("../images/index/farm_bg.png");
	height: 280px;
	background-position: center center;
	background-size: cover;
	position: relative;
}
#farm h2 span {
	width: 800px;
	display: block;
	margin-left: auto;
    margin-right: auto;
	text-align: left;
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: -1px;
}
#camp h2 {
	background-image: url("../images/index/camp_bg.png");
	height: 280px;
	background-position: center center;
	background-size: cover;
	position: relative;
}
#camp h2 span {
	width: 800px;
	display: block;
	margin-left: auto;
    margin-right: auto;
	text-align: left;
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: -2px;
}
#farm,
#camp {
	position: relative;
}
#farm h3,
#camp h3
{
	color: #298E40;
	font-size: 40px;
	text-align: left;
	position: relative;
	margin-top: 70px;
	width: 800px;
	margin-left: auto;
    margin-right: auto;
	text-align: left;
}
#farm h3::after,
#camp h3::after
{
	content: "";
	width: 80px;
	height: 1px;
	background-color: #298E40;
	display: block;
	position: absolute;
	left: -100px;
	top: 15px;
}
#farm h4,
#camp h4
{
	text-align: left;
	width: 800px;
	margin-left: auto;
    margin-right: auto;
	font-weight: bold;
	line-height: 1.7em;
	font-size: 30px;
	margin-top: 40px;
	position: relative;
	z-index: 99;
}
#farm h4+p,
#camp h4+p
{
	text-align: left;
	width: 800px;
	margin-left: auto;
    margin-right: auto;
	margin-top: 20px;
}
#farm .flex,
#camp .flex
{
	display: flex;
	display: -webkit-flex; /* Safari */
    display: -ms-flexbox;
	justify-content: space-between;
	-webkit-justify-content: space-between; /* Safari */
    -ms-flex-pack: justify;
	display: flex;
	display: -webkit-flex; /* Safari */ 　
    display: -ms-flexbox;
    flex-wrap: wrap;
	-webkit-flex-wrap: wrap; /* Safari */
	width: 800px;
	margin-left: auto;
    margin-right: auto;
	margin-top: 35px;
	margin-bottom: 10px;
}
#farm .flex::after,
#camp .flex::after
{
	content: "";
	width: 250px;
}
#farm .flex li,
#camp .flex li
{
	width: 250px;
	margin-bottom: 30px;
	position: relative;
}
#farm .flex li a,
#camp .flex li a
{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 99;
}
#farm .flex li a:hover,
#camp .flex li a:hover
{
	background-color: rgba(255,255,255,0.30);
}
#farm .flex li figure img,
#camp .flex li figure img
{
	width: 250px;
	height: auto;
}
#farm .flex li figcaption,
#camp .flex li figcaption
{
	font-size: 16px;
}
#farm .flex li figcaption span,
#camp .flex li figcaption span
{
	display: block;
	font-family: "Gabarito", sans-serif;
	font-weight: bold;
	font-size: 20px;
	margin-top: 10px;
	margin-bottom: -6px;
}
#camp {	
	margin-top: 80px;
}
#farm .fig {
	position: absolute;
	top: 435px;
	right: 0px;
	left: 0px;
	text-align: left;
	z-index: 0;
	width: 1000px;
	margin-left: auto;
    margin-right: auto;
}
#farm .fig img {
	width: 100px;
	position: relative;
	left: 520px;
}
#camp .fig {
	position: absolute;
	top: 425px;
	left: 610px;
	z-index: 0;
}
#camp .fig img {
	width: 100px;
}
#access {

}
#access iframe {
	width: 100%;
	height: 400px;
	margin-bottom: 10px;
}
#access p {
	font-size: 18px;
}
#access ul {
	margin-top: 20px;
	margin-bottom: 20px;
	width: 450px;
	margin-left: auto;
    margin-right: auto;
}
#access li {
	text-align: left;
	font-size: 18px;
}
#access li span {
	color: rgba(41,142,64,1.00);
	margin-right: 1%;
	font-size: 14px;
	position: relative;
	top: -1px;
}
}



/*===============================================
●画面の横幅が768pxまで
===============================================*/
@media screen and (max-width:768px){
	
/*===============================================
●sp-tablet
===============================================*/
#sptablet------------------------------------------- {
}
#loading {
    width: 100%;
    height: 100%;
    margin: 0;
    background-color: #1F8D3A;
    opacity: 1.0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999;	animation-name: slide;
	animation-duration:5s;
	animation-timing-function:ease;
	animation-delay: 0.5s;
	animation-direction:normal;
	animation-fill-mode:forwards;
}
#loading p {
	display: flex;
	display: -webkit-flex; /* Safari */ 　
    display: -ms-flexbox;
    flex-wrap: wrap;
	-webkit-flex-wrap: wrap; /* Safari */
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 70%;
	margin-left: auto;
    margin-right: auto;
}
#loading p {
	animation-name: fadeInAnime;/*1で解説*/
	animation-duration:5s;/*3で解説*/
	animation-timing-function:ease;/*5で解説*/
	animation-delay: 0.5s;/*6で解説*/
	animation-direction:normal;/*7で解説*/
	animation-fill-mode:forwards;
}

#catch {
	position: relative;
}
#catch h2 {
	position: absolute;
	z-index: 99;
	top: 0px;
	left: 0px;
	right: 0px;
	width: 80%;
	margin-left: auto;
    margin-right: auto;
	padding-top: 30%;
}
#catch p {
	position: absolute;
	z-index: 99;
	width: 90%;
	margin-left: auto;
    margin-right: auto;
	top: 112vw;
	left: 0px;
	right: 0px;
}
#catch .banner {
	text-align: center;
}
#catch .banner span {
	display: block;
	color: #2B933A;
	font-size: 4vw;
	margin-top: 2vw;
	font-weight: bold;
}
.slider {
  height: 125vw;
  margin-inline: auto;
  overflow: hidden; /* 画像がはみ出ないようにする */
  width: 100%;
}
.slick-img img {
  width: 100%;
}
@keyframes zoomUp {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}
#topics {
	margin-top: 42%;
	margin-left: 5%;
}
.scroll {
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  height: 450px;
  margin-bottom: 5%;
  width: 100%;
}
.scroll ::-webkit-scrollbar {
	display: none;
}
.simplebar-track.simplebar-horizontal {
  height: 10px;
  background: #DADBDB;
  border-radius: 5px;
  width: 60%;
  margin: 0 auto;
}
.simplebar-scrollbar {
  height: 10px;
  opacity: 1;
  border-radius: 50px;
  top: 0;
}
.simplebar-scrollbar:before {
	background: #2B984A!important;
	opacity: 1!important;
}
#topics .flex {
	display: flex;
	display: -webkit-flex; /* Safari */ 　
    display: -ms-flexbox;
    flex-wrap: wrap;
	-webkit-flex-wrap: wrap; /* Safari */
	width: 2500px;
}
#topics .flex.pc {
	display: none;
}
#topics .flex div {
	width: 250px;
	text-align: left;
	margin-right: 20px;
	position: relative;
	display: inline-block;
}
#topics .flex div img {
	width: 250px;
	height: 250px;
	object-fit: cover;
}
#topics .flex div time {
	font-size: 14px;
	color: #717070;
}
#topics .flex div p {
	font-size: 16px;
	line-height: 1.6em;
	white-space: normal;
}
#topics .flex div a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 99;
}

#topics p a img {

}
#about {
	background-color: #D9D5CE;
	margin-top: 14%;
	padding-top: 13%;
	padding-bottom: 17%;
}
#about h3 {
	font-size: 5vw;
	line-height: 1.6em;
	margin-top: 7%;
	margin-bottom: 5%;
	font-weight: bold;
}
#about .fig {
	display: flex;
	display: -webkit-flex; /* Safari */
    display: -ms-flexbox;
	justify-content: space-between;
	-webkit-justify-content: space-between; /* Safari */
    -ms-flex-pack: justify;
}
#about .fig figure+figure {
	margin-left: 4%;
	margin-top: 8%;
}
#about p span {
	color: #727071;
}
#about p a img {
	width: 50%;
	margin-top: 6%;
}
#farm,
#camp {
	position: relative;
}
#farm h3,
#camp h3
{
	color: #298E40;
	font-size: 5.5vw;
	text-align: left;
	position: relative;
	padding-left: 9.5vw;
	margin-top: 4%;
}
#farm h3::after,
#camp h3::after
{
	content: "";
	width: 7.5vw;
	height: 1px;
	background-color: #298E40;
	display: block;
	position: absolute;
	left: 0px;
	top: 3vw;
}
#farm h4,
#camp h4
{
	text-align: left;
	width: 80%;
	margin-left: auto;
    margin-right: auto;
	font-weight: bold;
	line-height: 1.7em;
	font-size: 4.2vw;
	margin-top: 5%;
	position: relative;
	z-index: 99;
}
#farm h4+p,
#camp h4+p
{
	text-align: left;
	width: 80%;
	margin-left: auto;
    margin-right: auto;
	margin-top: 4%;
}
#farm .flex,
#camp .flex
{
	display: flex;
	display: -webkit-flex; /* Safari */
    display: -ms-flexbox;
	justify-content: space-between;
	-webkit-justify-content: space-between; /* Safari */
    -ms-flex-pack: justify;
	display: flex;
	display: -webkit-flex; /* Safari */ 　
    display: -ms-flexbox;
    flex-wrap: wrap;
	-webkit-flex-wrap: wrap; /* Safari */
	width: 90%;
	margin-left: auto;
    margin-right: auto;
	margin-top: 7%;
}
#farm .flex li,
#camp .flex li
{
	width: 46.5%;
	margin-bottom: 7%;
	position: relative;
}
#farm .flex li a,
#camp .flex li a
{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 99;
}
#farm .flex li figcaption,
#camp .flex li figcaption
{
	font-size: 3vw;
}
#farm .flex li figcaption span,
#camp .flex li figcaption span
{
	display: block;
	font-family: "Gabarito", sans-serif;
	font-weight: bold;
	font-size: 4vw;
	margin-top: 3%;
	margin-bottom: -3%;
}
#camp {	
	margin-top: 12%;
}
#farm .fig {
	position: absolute;
	top: 58vw;
	right: 13vw;
	width: 25vw;
	z-index: 0;
}
#camp .fig {
	position: absolute;
	top: 58vw;
	right: 13vw;
	width: 22vw;
	z-index: 0;
}
#access {
	margin-top: 12%;
}
#access iframe {
	width: 100%;
	height: 70vw;
	margin-bottom: 3%;
	margin-top: -15%;
}
#access ul {
	margin-top: 3%;
}
#access li {
	text-align: left;
	width: 90%;
	margin-left: auto;
    margin-right: auto;
}
#access li span {
	color: rgba(41,142,64,1.00);
	font-size: 2.5vw;
	margin-right: 1%;
	position: relative;
	top: -0.5vw;
}
#access .btn01 {
	margin-top: 4%;
}
}



/*===============================================
●画面の横幅が400pxまで
===============================================*/
@media screen and (max-width:400px){
/*===============================================
●sp400
===============================================*/
#sp400------------------------------------------- {
}
}



/*===============================================
●画面の横幅が320pxまで
===============================================*/
@media screen and (max-width:320px){
/*===============================================
●sp320
===============================================*/
#sp320------------------------------------------- {
}
}



/*===============================================
●画面の横幅が481pxから768pxまで
===============================================*/
@media screen and (min-width:481px) and (max-width:768px) {
/*===============================================
●tablet
===============================================*/
#tab------------------------------------------- {
}
}