@charset "UTF-8";
/* CSS Document */

/* 以下非表示*/
@media (min-width: 1200px){
	.openbtn,#g-nav{
		display: none !important;
	}
}
@media (min-width: 960px){
	.tbsp{
		display: none !important;}
}
@media (min-width: 768px){
	.sp{
		display: none!important;}
	}
@media (min-width: 450px){
	.sp_450{
		display: none!important;}
	}

/* all */
html {
	scroll-behavior: smooth;
	scroll-padding-top: 120px;
}
body{
	color: #1a1a1a;
	background: #fff;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	letter-spacing: 0.12em;
}
p{
	line-height: 180%;
	font-size: 1rem;
}
a{
	text-decoration-line: none;
}
a:link{
	text-decoration: none;
}
ul li{
	list-style: none;
}
h2,h3,h4{
	font-weight: 400;
}
::-webkit-scrollbar{
	width: 8px;
	height: 8px;
}
::-webkit-scrollbar-track{
	background-color: #e3e3e3;
}
::-webkit-scrollbar-thumb{
	background-color: #666;
}
/* 幅調整　*/
.w1980{
	width: 100%;
	max-width: 1980px;
	margin: 0 auto;
	overflow: clip;
}
.w1600{
	width: calc(100% - 60px);
	max-width: 1600px;
	margin: auto;
	position: relative;
	z-index: 1;
}
.w1300{
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
}
.w960{
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
}

.contents{
	padding: 70px 0;
	
}
.contents_half_l{
	width: calc(((100% - 1300px) / 2) + 1300px);
	margin:0 auto 0 0;
	padding: 70px 30px;
	border-radius: 0 50px 50px 0;
}
.contents_half_r{
	width: calc(((100% - 1300px) / 2) + 1300px);
	margin:0 0 0 auto;
	padding: 70px 30px;
	border-radius: 50px 0 0 50px;
}
.contents_half_l .w1300{
	margin-right: 0;
	position: relative;
	padding: 0 15px;
	z-index: 1;
}
.contents_half_r .w1300{
	margin-left: 0;
	position: relative;
	padding: 0 15px;
	z-index: 1;
}
.wrap80{
	padding: 10px 10%;
}
.wrap_center{
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
}
@media (max-width: 1366px){
	.contents_half_l,.contents_half_r{
		width: calc(100% - 60px);
	}
	.contents_half_l .w1300,
	.contents_half_r .w1300{
		padding: 10px;
	}
}
@media (max-width: 960px){
	.wrap80{
		padding: 10px 5%;
	}
	.contents_half_l,.contents_half_r{
		padding: 70px 15px;
	}
}
@media (max-width: 450px){
	.w1600{
		width: calc(100% - 30px);
	}
	.wrap80{
		padding: 10px 0;
	}
	.contents_half_l,.contents_half_r{
		width: calc(100% - 30px);
	}
}

/* 背景　*/
.bg_w{
	background-color: rgba(255,255,255,0.8);
}

.bg_light{
	background: #f8f4e6;
}
.bg_g{
	background: #aec46a;
}
.bg_inner{
	padding: 70px 10px;
}
.bg_blur{
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
}
.bg_img01{
	background:linear-gradient( to bottom ,rgba(0,0,0,0.3) ,rgba(0,0,0,0.3)) , url("../img/slide04.webp");
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center;
	color: #fff;
}
/*Safariのみ*/
::-webkit-full-page-media, :future, :root .bg_img01{
	background-attachment: scroll;
}

.gap_bg{
	position: relative;
	width: 100%;
	height: 50px;
}

.gap_bg .cut_r{
	position: absolute;
	right: -5vw;
	top: -400px;
	width: 55vw;
	height: 70vh;
	background: url("../img/bg_cut_br.webp") no-repeat;
	background-size: 100%;
	opacity: 0;
	transform: scale(0.5);
	transform-origin: top right;
	transition: 2s;
}
.gap_bg .cut_l{
	position: absolute;
	left: -5vw;
	top: -400px;
	width: 55vw;
	height: 70vh;
	background: url("../img/bg_cut_bl.webp") no-repeat;
	background-size: 100%;
	opacity: 0;
	transform: scale(0.5);
	transform-origin: top left;
	transition: 2s;
}
footer .gap_bg{
	height: 20px;
}
.gap_bg .cut_footer_l{
	position: absolute;
	left: -5vw;
	top: -300px;
	width: 55vw;
	height: 70vh;
	background: url("../img/bg_cut_bl.webp") no-repeat;
	background-size: 100%;
	opacity: 0;
	transform: scale(0.5);
	transform-origin: top left;
	transition: 2s;
}
.gap_bg .cut_footer_r{
	position: absolute;
	right: -5vw;
	top: -350px;
	width: 55vw;
	height: 70vh;
	background: url("../img/bg_cut_br.webp") no-repeat;
	background-size: 100%;
	opacity: 0;
	transform: scale(0.5);
	transform-origin: top right;
	transition: 2s;
}

.gap_bg.inview .cut_r,
.gap_bg.inview .cut_l,
.gap_bg.inview .cut_footer_l,
.gap_bg.inview .cut_footer_r{
	transform: scale(1);
	opacity: 0.9;
}
@media (max-width: 1366px){
	.gap_bg .cut_r,
	.gap_bg .cut_l{
		top: -300px;
		width: 60vw;
		height: 60vh;
	}
	.gap_bg .cut_footer_l{
		top: -200px;
	}
	.gap_bg .cut_footer_r{
		top: -230px;
	}
}
@media (max-width: 1200px){
	.gap_bg .cut_r,
	.gap_bg .cut_l{
		top: -200px;
		width: 70vw;
		height: 70vh;
	}
	.gap_bg .cut_footer_l,.gap_bg .cut_footer_r{
		top: -150px;
		height: 70vh;
	}
}
@media (max-width: 750px){
	.gap_bg .cut_r{
		right: -5vw;
		width: 80vw;
	}
	.gap_bg .cut_l{
		left: -5vw;
		width: 80vw;
	}
}
@media (max-width: 450px){
	
	.gap_bg .cut_r,.gap_bg .cut_l{
		top: -100px;
		width: 110vw;
	}
	.gap_bg .cut_footer_l,.gap_bg .cut_footer_r{
		top:-10px;
	}
}

.box_wrap_rt{
	position: relative;
}
.box_wrap_rt::before{
	display: block;
    content: '';
    width: 75%;
    height: calc(100% - 200px);
    position: absolute;
    top: 0;
    right: 0;
    background: #aec46a;
}
.box_wrap_lt{
	position: relative;
}
.box_wrap_lt::before{
	display: block;
    content: '';
    width: 75%;
    height: calc(100% - 200px);
    position: absolute;
    top: 0;
	left: 0;
    background:#aec46a;
	border-radius: 0 50px 50px 0;
}
/* 画像調整　*/
.img_3-2{
	aspect-ratio: 3 / 2;
	object-fit: cover;
}
.img_4-3{
	aspect-ratio: 4 / 3;
	object-fit: cover;
}
.img_16-9{
	aspect-ratio: 16 / 9;
	object-fit: cover;
}
.img_1-1{
	aspect-ratio: 1 / 1;
	object-fit: cover;
}
.img_1-1round{
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 50%;
}
.br30{
	border-radius: 30px;
}
.br30_t-lr{
	border-radius: 30px 30px 0 0;
}
.br30_b-lr{
	border-radius: 0 0 30px 30px;
}
.img_center{
	text-align: center;
}
.img_center img{
	width: calc(100% - 15px);
	max-width: 500px;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	box-shadow: 15px 15px #e1f2fa;
}
.img_center02{
	text-align: center;
}
.img_center02 img{
	width: auto;
	max-width: 250px;
}

.txt_lv02{
	font-size: 1rem;
	letter-spacing: 0.12em;
	margin-bottom: 30px;
	display: block;
	width: 100%;
}
.txt_lv02 .ja{
	font-size: clamp(1.4rem, 1.04rem + 1.28vw, 2.2rem);
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 600;
	display: block;
	position: relative;
}

.txt_lv02 .en{
	font-family: "Josefin Sans", sans-serif;
	font-weight: 600;
	font-size: clamp(1rem, 0.91rem + 0.32vw, 1.2rem);
	color: #aec46a;
	letter-spacing: 0.15em;
}
.bg_g .txt_lv02 .en{
	color: #fff;
}

.txt_lv03{
	font-size: 1.2rem;
	border-bottom: solid 3px #aec46a;
	position: relative;
	margin-bottom: 30px;
	padding-bottom: 0.25em;
}
.txt_lv03 span.ja{
	position: relative;
	z-index: 2;
	font-weight: 600;
}

.txt_lv03 span.en{
	position: absolute;
	top:calc(100% + 0.5rem);
	left: 0.2rem;
	font-family: "Josefin Sans", sans-serif;
	font-weight: 600;
	display: block;
	font-size: 80%;
	line-height: 100%;
	color: #aec46a;
}
.txt_lv03 span.nb{
	position: absolute;
	top: -30px;
	left: -20px;
	font-size: 40px;
	font-family: "Josefin Sans", sans-serif;
	font-weight: 600;
	color: #fff;
	z-index: -1;
}
.txt_lv03 span.nb::after{
	position: absolute;
	content: "";
	top: -15px;
	left: -15px;
	width: 75px;
	height: 75px;
	background: #aec46a;
	border-radius: 50px;
	z-index: -2;
}
.txt_lv04{
	
}
.txt_lv05{
	background: rgba(0,0,0,0.05);
	display: block;
	padding: 0.25em 0.5em;
	margin-bottom: 30px;
}
.txt_lv05 i{
	font-size: 60%;
	vertical-align: middle;
	color: #666;
}

.txt_copy01{
	font-size: clamp(1.1rem, 0.86rem + 0.8533vw, 1.5rem);
	font-family: 'Noto Serif JP', serif;
	text-align: center;
	color: #1a1a1a;
	position: relative;
    display: block;
	width: fit-content;
    padding: 0 1em;
	margin: 0 auto 30px;
}

.txt_copy01::before {
	position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 1px;
    height: 100%;
    background: #1a1a1a;
    border-radius: 3px;
    transform: rotate(-25deg);
}
.txt_copy01::after {
	position: absolute;
    content: "";
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: #1a1a1a;
    border-radius: 3px;
    transform: rotate(25deg);
}

.txt_copy02{
	font-size: clamp(1.1rem, 0.92rem + 0.64vw, 1.5rem);
	margin-bottom: 1em;
}
.txt_copy03{
	font-size: clamp(1.3rem, 0.895rem + 1.44vw, 2.2rem);
	font-weight: 600;
	text-align: center;
	position: relative;
	width: fit-conttent;
	margin-bottom: 1em;
	color: #539a53;
}

span.bold{
	font-weight: 600;
}

span.line{
	background:linear-gradient(transparent 60%, rgba(226,255,138,0.5) 60%);
	font-size: 1em;
	display: inline-block;
}

/* ヘッダー ================================================== */
header{
	position: relative;
	width: 100%;
	z-index: 999;
}
.site-header{
	background:rgba(255,255,255,0.0);
    display: flex;
    position: fixed;
    justify-content: space-between;
	align-items:center;
    width: 100%;
	height: 100px;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.0);
	transition: .5s;
}

.site-header h1{
	vertical-align: middle;
	position: relative;
	transition: .5s;
	margin-left: 30px;
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
}
.site-header h1 img{
	width: auto;
	height: 62px;
	vertical-align: middle;
	transition: .5s;
	pointer-events: none;
}
.site-header h1 a{
	color: #fff;
	transition: .5s;
}
.site-header h1 img.logo{
	transition: .5s;
}
.site-header.transform h1 img.logo{
	filter: none;
}

.site-header.transform h1 img{
	height: 56px;
}

.site-header .nav_wrap{
	background: #fff;
	padding: 0 20px;
	border-radius: 50px 0 0 50px;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
	position: relative;
	z-index: 2;
}
.site-header nav ul{
	list-style: none;
	display: flex;
	justify-content: space-between;
}
.site-header nav ul li{
	margin:0 15px;
	padding: 18px 0;
	font-size:1rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.site-header nav ul li a{
	display: block;
	width: 100%;
	height: 100%;
	color: #1a1a1a;
	font-weight: 600;
	transition: 0.5s;
}
.site-header.transform nav ul li a{
	
}
.site-header nav ul li::after{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background:rgba(174,196,106,0.0);
	content: '';
	transition: transform 0.35s;
	transform: translate3d(-100%,0,0);
}
.site-header nav ul li:hover::after{
	background:rgba(174,196,106,1.0);
	transform: translate3d(0,0,0);
}
@media (max-width: 1366px){
	.site-header h1{
		margin-left: 10px;
	}
	.site-header h1 img{
		height: 52px;
	}
	.site-header .nav_wrap{
		padding: 1px 5px;
	}
	.site-header nav ul li{
		font-size: 0.95rem;
		margin: 0 10px;
	}
}
@media (max-width: 1200px){
	.site-header{
		height: 80px;
	}
	.nav_wrap{
		display: none;
	}
}
@media (max-width: 750px){
	.site-header h1 img,.site-header.transform h1 img{
		height: 46px;
	}
	.site-header h1 img.mark{
		transform: scale(0.9);
	}
}
@media (max-width: 450px){
	.site-header{
		height: 60px;
	}
	.site-header h1{
		margin-left: 0;
	}
	.site-header h1 img,.site-header.transform h1 img{
		height: 38px;
	}
	
}
@media (max-width: 380px){
	.site-header h1 img,.site-header.transform h1 img{
		height: 32px;
	}
}
/* 固定ボタン ================================================== */
.fixbtn{
	position: fixed;
	top: 80px;
	right: 0;
	z-index: 1;
	opacity: 0;
	pointer-events: none;
	transition: 1s;
}
.fixbtn.transform{
	opacity: 1;
	pointer-events: all;
}
.fixbtn a{
	display: block;
	background:#539a53;
	color: #fff;
	text-align: center;
	width: 200px;
	padding: 0.5rem 0.5rem 0.5rem 1rem;
	font-size: 0.9rem;
	border-radius: 0 0 0 50px;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
	transition: .5s;

	border-radius: 0 0 50px 50px;
}
.fixbtn a:hover{
	background: #aec46a;
}
.fixbtn1{
	right: 220px;
}
@media (max-width: 1200px){
	.fixbtn{
		top: 60%;
		transform: translateY(-50%);
	}
	.fixbtn1{
		right: 0;
		top: calc(60% - 200px);
	}
	.fixbtn a{
		width: 3em;
		height: 180px;
		writing-mode: vertical-rl;
		border-radius: 30px 0 0 30px;
	}
}
@media (max-width: 750px){
	.fixbtn1{
		top: calc(60% - 170px);
	}
	.fixbtn a{
		font-size: 0.8rem;
		height: auto;
		padding: 1.5rem 0.5rem;
	}
}

/* スライダー ================================================== */
.slide_wrap{
	width: 100%;
	position: relative;
	overflow: hidden;
}
.slider{
	overflow: hidden;
}
.slider::after{
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 8;
	background: linear-gradient(rgba(0,0,0,0.05) 10%,rgba(0,0,0,0.05)) ;
}
.slider li{
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	min-height: 650px;
	max-height: 1080px;
	z-index: 2;
	overflow: hidden;
}
.slider li.top01{
	background:url("../img/slide10.webp") no-repeat;
	background-size: cover;
	background-position: center;
}
.slider li.top02{
	background:url("../img/slide09.webp") no-repeat;
	background-size: cover;
	background-position: right 15% center;
}
.slider li.top03{
	background:url("../img/slide02.webp") no-repeat;
	background-size: cover;
	background-position: right 25% center;
}

@keyframes fadezoom{
	0%{
		transform: scale(1);
	}
	100%{
		transform: scale(1.1);
	}
}
.add-animation{
	animation: fadezoom 10s 0s forwards;
}
.slide_wrap .copy{
	position: absolute;
	bottom: 30%;
	left: 6%;
	z-index: 11;
}

.slide_wrap .copy h2{
	margin: auto;
	text-align: center;
	font-weight: 600;
	font-size: clamp(2rem, 1.1rem + 3.2vw, 4rem);
	color: #fff;
	text-shadow: 3px 3px #539a53 , -3px -3px #539a53, 3px -3px #539a53, -3px 3px #539a53,3px 0px #539a53,0px 3px #539a53,-3px 0px #539a53,0px -3px #539a53;
}
.slide_wrap .copy h2 span{
	color: #aec46a;
	font-size: 120%;
	text-shadow: 3px 3px #fff , -3px -3px #fff, 3px -3px #fff, -3px 3px #fff,3px 0px 2px #fff,0px 3px 2px #fff,-3px 0px 2px #fff,0px -3px 2px #fff;
}
.slide_wrap .copy h2 img{
	width: 100%;
	padding: 15px;
	vertical-align: middle;
}

.slide_wrap .svg_border{
	position: absolute;
	bottom: -1px;
	left: 0;
	right: 0;
	z-index: 12;
}
.slide_wrap .svg_border svg{
	position: absolute;
	width: 100%;
	bottom: 0;
	vertical-align: middle;
}
@media (max-width: 768px){
	.slider{
		height: 90vh;
		min-height: 600px;
		max-height: 900px;
	}
	.slide_wrap .copy{
		bottom: auto;
		top: 20%;
		width: calc(100% - 80px);
		min-width: 300px;
	}
	.slide_wrap .copy h2{
		text-shadow: 2px 2px #539a53 , -2px -2px #539a53, 2px -2px #539a53, -2px 2px #539a53,2px 0px #539a53,0px 2px #539a53,-2px 0px #539a53,0px -2px #539a53;
	}
	.slide_wrap .copy h2 span{
		text-shadow: 2px 2px #fff , -2px -2px #fff, 2px -2px #fff, -2px 2px #fff,2px 0px 2px #fff,0px 2px 2px #fff,-2px 0px 2px #fff,0px -2px 2px #fff;
	}
}
/* コンテンツ
   ========================================================================== */



.card001{
	display: flex;
	align-content: flex-start;
	justify-content: flex-start;
	gap:15px;
}
.card001 .inner{
	width: 100%;
	padding: 15px;
	background: #fff;
	border-radius: 30px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.card001 .inner img{
	width: 100%;
	vertical-align: middle;
	margin-top: 15px;
}

@media (max-width: 960px){
	.card001{
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin: 0 auto 30px;
		max-width: 500px;
	}
}

.card002{
	display: flex;
	justify-content: center;
	align-items: center;
}
.card002 .img {
	width: 100%;
	padding: 10px;
}
.card002 .img img{
	width: 100%;
}
.card002 .txt{
	width: 100%;
	padding: 15px;
	align-self: center;
}
.card002 .txt p{
	margin-bottom: 1em;
}
.card002 .rec p{
	text-indent: 1em;
}
.card002 .video{
	width: 100%;
}
.card002 .video video{
	width: 100%;
	aspect-ratio: 16 / 9;
}
.card002 .video iframe{
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 15px;
}
.card002 .img_f{
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap:6px;
}
.img_f .in100{
	width: 100%;
}
.img_f .in50{
	width: calc(50% - 6px);
}
.img_f .in100 img,.img_f .in50 img{
	width: 100%;
}

.card003{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 30px 0;
}
.card003 .img{
	width: 300px;
	padding: 15px;
	align-self: center;
}
.card003 .img_l{
	width: 350px;
}
.card003 .img img,
.card003 .img_l img{
	width: 100%;
}
.card003 .txt{
	flex: 1;
	padding: 10px 5%;
	align-self: center;
}
@media (max-width: 960px){
	.card002,
	.card003{
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin-bottom: 30px;
	}
	.card002 .img{
		text-align: center;
	}
	.card002 .img img{
		max-width: 600px;
	}
	.card002 .txt{
		padding: 15px;
	}
	.reverse{
		flex-direction: column-reverse;
	}
}


@media (max-width: 450px){
	.card003 .txt{
		padding: 10px;
	}
	.card003 .img_l{
		width: 100%;
		max-width: 350px;
	}
}

/* 写真横並び基本　*/
.photo_flex{
	display: flex;
	align-items:flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
}
.photo_flex .img{
	width: calc(50% - 10px);
	margin: 5px;
}
.photo_flex img{
	width: 100%;
}


/* カルーセル============================================================ */
.carousel_wrap{
	width: 100%;
	margin: auto;
}
.carousel {
	width:calc(100% - 40px);
	padding: 0;
	margin: auto;
}
.carousel .inner {
	overflow: hidden;
	margin: 20px;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}
.carousel .inner img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}
.carousel .slick-next {
	right: -20px;
	z-index: 50;
}
.carousel .slick-prev {
	left: -20px;
	z-index: 50;
}


/* フッター部分　================================================== */
footer{
	margin-bottom: 0;
	background: #aec46a;
	color: #1a1a1a;
	border-radius: 50px 50px 0 0;
	overflow: clip;
}
.svg_border_t{
	width: 100%;
}
.svg_border_t svg{
	width: 100%;
	vertical-align: middle;
}
footer h2{
	text-align: center;
}
footer h2 img.logo{
	width: 350px;
}
footer h2 img.mark{
	width: 150px;
}
.footer_wrap{
	width: 100%;
	position: relative;
	padding: 70px 10;
}
.footer_wrap .inner{
	padding: 70px 15px 0;
}
.footer_copy_wrap{
	width: 100%;
	position: relative;
}
.footer_wrap p{
	width: fit-content;
	margin: auto;
}

p.copyright{
	font-size: 0.9rem;
	text-align: center;
	padding: 30px 15px;
}
@media (max-width: 960px){
	.footer_wrap{
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	.footer_contact{
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	
}
@media (max-width: 750px){
	footer h2{
		text-align: center;
	}
	footer h2 img{
		width: calc(100% - 60px);
	}
}



/* サブページタイトル 
   ========================================================================== */
.subtitle{
	display: block;
	width: 100%;
	height: 450px;
	background-size: cover;
	background-color: #ccc;
	position: relative;
}
.subtitle h2{
	color:#fff;
	position: absolute;
	bottom: 100px;
	left: 50%;
	transform: translateX(-50%);
	font-size:1.2em;
	font-weight: 600;
	text-transform:capitalize;
	padding-bottom: 5px;
	text-align: center;
	z-index: 6;
}
.subtitle h2 span{
	font-family: "Josefin Sans", sans-serif;
	font-weight: 600;
	font-size: clamp(2.5rem, 1.1446rem + 4.8193vw, 5rem);
	vertical-align: top;
}

.subtitle .svg_border{
	position: absolute;
	bottom: -1px;
	left: 0;
	right: 0;
	z-index: 5;
}
.subtitle .svg_border svg{
	position: absolute;
	width: 100%;
	bottom: 0;
	vertical-align: middle;
}

.sub_bg{
	background: linear-gradient( rgba(0,0,0,0.2), rgba(0,0,0,0.2)),url("../img/slide03.webp");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-color: #ccc;
}
@media (max-width: 960px){
	.subtitle{
		height: 400px;
	}
	.subtitle h2{
		width: 100%;
	}
}

/*パンくずリスト ================================================== */
.breadcrumb {
	width: fit-content;
	list-style: none;
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	padding: 3px 5px;
	font-size: 0.9em;
	z-index: 7;
}

.breadcrumb li {
	display: inline;
	list-style: none;
	line-height: 100%;
	color: #fff;
}

.breadcrumb li:after {
	content: '>';
	padding: 0 0.2em;
	color: #fff;
}

.breadcrumb li:last-child:after {
	content: '';
}

.breadcrumb li a {
	text-decoration: none;
	color: #fff;
}

.breadcrumb li a:hover {
	text-decoration: underline;
}
@media (max-width: 750px){
	.breadcrumb{
		ont-size: 0.8em;
	}
}

/* TOPへ戻るボタン==================== */
#page_top{
	position: fixed;
	right: 15px;
	bottom: 15px;
	z-index: 999;
	opacity: 0.95;
	transition: .5s;
}
#page_top a{
	position: relative;
	display: block;
	width: 80px;
	height: 80px;
	text-decoration: none;
	background: #539a53;
	background-size: 150%;
	background-position: left;
	border-radius: 50%;
	box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
}
#page_top a::before{
	display: block;
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	content: '\f062';
	font-size: 1.5rem;
	color:#fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50% , -50%);
	margin: auto;
	text-align: center;
}
@media (max-width: 750px){
	#page_top a{
		width: 60px;
		height: 60px;
	}
	#page_top a::before{
		font-size: 1.2rem;
	}
}
/* スクロールフェードイン ================================================== */
.fadein {
	opacity : 0.2;
	filter: blur(2px);
	transform : translate(0, 80px);
	transition : all 1s;
	}

.fadein.scrollin {
	opacity : 1;
	filter: none;
	transform : translate(0, 0);
	}
/* スクロールエフェクト ================================================== */
.swipe{
   position: relative;
   overflow: hidden;
}
.swipe::after{
   content: '';
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
   background: #fff;
   pointer-events: none;
   z-index: 1;
   transform: translateX(-100%);
   transition: 1.2s ease-in-out;
}
.swipe .swipe_in{
   opacity: 0;
   transition: 0.2s ease-in;
   transition-delay: 0.6s;
}
.swipe.inview .swipe_in{
   opacity: 1;
}
.swipe.inview::after{
   transform: translateX(100%);
}
/* テキストアニメ　==================== */
.eachTextAnime span{
	opacity: 0;
}
.eachTextAnime.appeartext span{ 
	animation:text_anime_on 1.5s ease-out forwards; 
}
@keyframes text_anime_on {
	0% {
		opacity:0;
		
	}
	100% {
		opacity:1;
		transform : translate(0, 0);
	}
}
/* Loading背景画面設定　==================== */
#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background-color: #fff;
	text-align:center;
}

/* Loading画像中央配置　*/
#splash_logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
	width: 90%;
	max-width:350px;
}
/* 余白調整　*/
.h30{
	height: 30px;
}
.h50{
	height: 50px;
}
.h70{
	height: 70px;
}
.h100{
	height: 100px;
}
.mt15{
	margin-top: 15px;
}
.mt30{
	margin-top: 30px;
}
.mt50{
	margin-top: 50px;
}
.mt70{
	margin-top: 70px;
}
.mt100{
	margin-top: 100px;
}
/* 以下非表示 ------------------------------ */
@media (max-width: 1200px){
	.pc{
		display: none !important;
	}
	
}
@media (max-width: 750px){
	.pctb{
		display: none !important;
	}
	
}
@media (max-width: 450px){
	.pctb450{
		display: none;
	}
}









/* 250408更新分 ==============================================================*/
/* Instagramアイコン追加 ===============*/
/*ヘッダー*/
.nav_wrap_flex250408 {
  display: flex;
  align-items: center;
}
.icon250408 {
  margin-left: 7px;
}
.icon250408:first-of-type {
  margin-left: 0;
}
.icon250408 a {
  font-size: 1.45rem !important;
  line-height: 1;
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 38px;
  border-radius: 50%;
  aspect-ratio: 1/1;
  color: #fff;
  background: #539a53;
  border: 2px solid #fff;
  transition: .4s all;
}
.icon250408 a .fa-instagram {
  padding-left: 1.5px;
}
.icon250408 a:hover {
  border: 2px solid #539a53 !important;
  color: #539a53 !important;
  background: #fff !important;
}
/*ハンバーガーメニュー*/
#g-nav ul.main > li.icon250408 {
  border-bottom: none;
  margin-left: 0;
  padding: 0;
  text-align: center;
  width: fit-content;
  margin: 15px auto 0;
}
#g-nav ul.main > li.icon250408 a {
  margin: 0 5px;
  padding: 0;
}
#g-nav ul.main > li.icon250408::before {
  content: none;
}
/*フッター*/
.footer_wrap .icon250408 {
  width: fit-content;
  margin: -5px auto 10px;
}
/*SP 左下*/
.fixed_icon250408 {
  display: none;
  margin-bottom: 10px;
}
.fixed_icon250408 a::before {
  content: none !important;
}
.fixed_icon250408 a {
  font-size: 1.8rem !important;
  line-height: 1;
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 50%;
  aspect-ratio: 1/1;
  color: #fff;
  background: #aec46a !important;
}
@media(max-width:1199px) {
  .fixed_icon250408 {
    display: block;
  }
}
@media(max-width:750px) {
  .fixed_icon250408 {
    margin-bottom: 5px;
  }
  .fixed_icon250408 a {
    font-size: 1.5rem !important;
  }
}
/* TOP =================================*/
/*なかたね農産について欄 スクロールボックス追加*/
.scrollBox250408 {
  background: #f8f4e6;
  border-radius: 30px;
  margin-top: 30px;
  padding: 15px;
}
.scrollBox250408 div {
  height: 210px;
  overflow-y: scroll;
  padding: 0 10px;
}
@media(max-width:450px) {
  .scrollBox250408 {
    padding: 15px 10px;
  }
}
/*list*/
.scrollBox250408 .check_list_policy {
  margin-bottom: 20px;
}
.check_list_policy li {
  padding-left: 20px;
  position: relative;
}
.check_list_policy li::before {
  font-family: "Font Awesome 6 Free";
  content: "\f058";
  font-weight: bold;
  display: inline-block;
  position: absolute;
  top: 0.2em;
  left: 0;
  color: #539a53;
}
/*幻の安納芋「安納こがね」欄 バナー追加*/
.banner250408 {
  width: 100%;
  max-width: 550px;
  margin: 30px auto 0;
}
.banner250408 a {
  display: block;
  transition: .4s all;
}
.banner250408 a img {
  width: 100%;
  border-radius: 30px;
}
.banner250408 a:hover {
  opacity: 0.6;
}
@media(max-width:450px) {
  .banner250408 a img {
    border-radius: 15px;
  }
}






ul.furusato_flex{
	display: flex;
	flex-wrap: wrap;
}
ul.furusato_flex li{
	width: 32%;
	margin: 0 0.5% 10px;
}
ul.furusato_flex li a{
	display: block;
	width: 100%;
	text-align: center;
	padding: 10px 3px;
	background-color: #aec46a;
	color: #fff;
}
ul.furusato_flex li a::after{
	display: inline-block;
	font-family: "Font Awesome 6 Free";
	content: "\f08e";
	content: "\f2d2";
	font-weight: 400;
	margin-left: 5px;
	font-size: 0.6em;
	transform: translateY(-2px);
}
ul.furusato_flex li a:hover{
	opacity: 0.6;
}
@media(max-width:960px){
	ul.furusato_flex{
		justify-content: space-between;
	}
	ul.furusato_flex li{
		width: 49%;
		margin: 0 0 10px;
	}
}
@media(max-width:750px){
	ul.furusato_flex{
		display: block;
	}
	ul.furusato_flex li{
		width: 100%;
	}
}



/*MAOMOグループ*/
.maomo_group{
}
.maomo_container{
}
.maomo_container .maomo_wrap{
	background-color: #fff;
	padding: 40px 30px;
	border-radius: 10px;
	margin-bottom: 10px;
}
.maomo_container .maomo_wrap:last-child{
	margin-bottom: 0 !important;
}
.maomo_container .maomo_wrap h3{
	font-weight: 600;
	font-size: 1.4rem;
	border-bottom: 3px solid #aec46a;
	padding-bottom: 5px;
	margin-bottom: 10px;
}
@media(max-width:750px){
	.maomo_container .maomo_wrap{
		padding: 30px 20px;
	}
	.maomo_container .maomo_wrap h3{
		font-size: 1.2rem;
	}
}