html{
    font-size: 62.5%;
	scroll-behavior: smooth;
}


body{
	color: #333;
	background-color: #fff;
	-webkit-font-smoothing: antialiased;/*アンチエイリアスを滑らかに*/
	-moz-osx-font-smoothing: grayscale;
	line-height: 1.7;
	font-size: 1.6rem;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 500;
	font-style: normal;
}



*{
	margin: 0;
	box-sizing: border-box;
}

a{
	text-decoration: none;
	color: #333;
	transition: .3s;
}

ul,ol{
	list-style: none;
	padding: 0;
}
svg{
	padding: 0;
	margin: 0;
	vertical-align: bottom;
	min-height: 0%;
}
img{
  	line-height: 1;
	vertical-align: top;
	max-width: 100%;
	transition: .4s;
	font-size: 0;
}

.center{
	text-align: center;
}

/*フェードイン*/
.flowup{
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 1300ms, transform 1200ms;
	transition-delay: 350ms;
}
.flowup.inview{
	opacity: 1;
	transform: translateY(0);
}

.flow_left{
	opacity: 0;
	transform: translateX(-80px);
	transition: opacity 1.6s, transform 1.5s;
	transition-delay: 0.4s;
}
.flow_left.inview{
	opacity: 0.7;
	transform: translateX(0);
}

.flow_right{
	opacity: 0;
	transform: translateX(80px);
	transition: opacity 1.6s, transform 1.5s;
	transition-delay: 0.4s;
}
.flow_right.inview{
	opacity: 0.7;
	transform: translateX(0);
}

.blurup{
	filter: blur(10px);
	opacity: 0;
	transition: all 2s ease;
}
.blurup.inview{
	filter: blur(0);
	opacity: 1;
}


.imgup {
	position: relative;
	overflow: hidden;
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    transition: .4s;
    transition-delay: clip-path 0.3s, scale 0s;
}



.imgup.inview {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.imgup img {
    transition: 1.6s cubic-bezier(0.6, 0, 0.07, 1);
    transform: translateX(-10%) scale(1.4);
}

.imgup.inview img {
    transform: translateX(0) scale(1);
}

.rotation {
    animation: rotateanim 10s linear infinite normal;
}
@keyframes rotateanim{
  0% {
	transform: translate(-50%,-50%) rotate(0);
  }
  100% {
	transform: translate(-50%,-50%) rotate(360deg);
  }
}



.op{
	position: relative;
	z-index: 5;
	opacity: 0;
	transition: all .2s;
	transition-delay: 200ms;
}

.op.inview{
	opacity: 1;
}

span.marker {
    background: linear-gradient(transparent 65%, rgb(235, 252, 4,0.6) 65%);
}


.br_650.marker{
	background: none;
}

.inner{
	margin-left: 40px;
	margin-right: 40px;
}

.wrapper{
	max-width: 1580px;
	margin: 0 auto;
}

.flex_center{
	display: flex;
	justify-content: center;
}

.flex{
    display: flex;
}

.flex_end{
	display: flex;
	justify-content: flex-end;
}

.flex_start{
	display: flex;
	justify-content: flex-start;
}

.flex_bet{
	display: flex;
	justify-content: space-between;
}

.flex_ar{
	display: flex;
	justify-content: space-around;
}

span.zo{
	font-size: 1.2em;
	padding: 5px;
	font-weight: bold;
}

main{
	width: 100%;
	overflow: hidden;
}


.tate{
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}



.w100{
	width: 100%;
}

.kizi{
	line-height: 2.2;
}

.kizi p{
	letter-spacing: 0.1em;
}




/*フィルター*/

.filter{
    position: relative;
}

filter::after{
    content: "";
    display: block;
    position: absolute;
    background-color: rgb(0, 0, 0,0.6);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.filter_w{
	position: relative;
}

.filter_w::after{
    content: "";
    display: block;
    position: absolute;
    background-color: rgb(255, 255, 255,0.4);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

/*改行*/

.br_960{
}

.br_650{
}

.br_none650{
	display: block;
}

.br_none1200{
	display: block;
}

section{
	position: relative;
	padding: 150px 0;
}

@media (max-width: 1200px){
	.br_1200{
		display: block;
	}
	.br_none1200{
		display: inline;
	}
	section{
		padding: 120px 0;
	}
}

@media (max-width: 960px){
	.br_960{
		display: block;
	}	
}
@media (max-width: 740px){
	.br_650{
		display: block;
	}
	.br_650.marker{
		background: linear-gradient(transparent 75%, rgb(241, 156, 167,0.7) 75%);;
	}
	section{
        padding: 60px 0;
    }
	.container{
		padding: 0;
	}
	.br_none650{
		display: inline;
	}
	body{
		font-size: 1.3rem;
	}
}




/* 文字間 */

.space{
	letter-spacing: 0.05em;
}

.space2{
	letter-spacing: 0.1em;
}

/*  */
.txt_wrappper{
	background-color: #fef8e5;
}

/* 
.txt{
	font-size: 1.45rem;
	font-weight: 500;
	color: #333;
	line-height: 2.5;
} */


@media (max-width: 960px){
	.none_960{
		display: none;
	}
}

@media (max-width: 740px){
	.none_650{
		display: none;
	}
	
	
}


.reverse{
	flex-direction: row-reverse;
}


.center_l{
	display: flex;
	align-items: center;
}

.center_b{
	display: flex;
	align-items: flex-end;
}

body p{
	letter-spacing: 0.05em;
}

i{
	padding-right: 0.4em;
}
/* .en{
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
} */

.maru{
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 400;
	font-style: normal;
}




.scale-big{
	transform: scale(0);
}

.scale-big.inview{
	animation: scalebig 700ms ease 300ms 1 forwards;
}


@keyframes scalebig{
	0%{
		transform: scale(0);
	}
	60%{
		transform: scale(103%);
	}
	100%{
		transform: scale(100%);
	}
}



/* btn */

.m_btn a{
	position: relative;
	display: block;
	background-color: #ffe6b1;
	padding: 20px 0;
	border-radius: 40px;
	letter-spacing: 0.05em;
	font-size: 1.8rem;
	border: dashed 2px #f39700;
}

.m_btn{
	width: 270px;
	text-align: center;
	margin: 60px auto 0;
}

.m_btn a:hover{
	background-color: #f39700;
	border-color: #333;
}



/* sub_ttl */


.sub_ttl{
	text-align: center;
	letter-spacing: 0.1em;
	margin-bottom: 60px;
}

.sub_ttl .en{
	display: block;
	color: #f39700;
	font-size: 2rem;
	font-weight: 500;
}

.sub_ttl .ja{
	font-size: 3.8rem;
	line-height: 1.6;
	font-weight: 500;
}





/* header */


header{
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 99;
	height: 150px;
	background-color: rgb(255, 248, 238,0);
	transition: all.3s;
}

header.change_color{
	background-color: #fff8ee;
	height: 100px;
}

.hd_cloud{
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	z-index: 99;
	width: 100%;
}

.hd_cloud img{
	width: 100%;
	height: 170px;
	object-fit: cover;
	object-position: bottom;
}

h1 img{
	height: 70px;
}

.main_nav li a{
	display: block;
	letter-spacing: 0.05em;
	width: 140px;
	text-align: center;
	font-weight: 500;
	font-size: 1.55rem; 
	box-sizing: content-box;
}

.main_nav li{
	border-left: dotted 2px #f39700;
}

.main_nav li:last-child{
	border-right: dotted 2px #f39700;
}


.main_nav li .img img{
	width: 35%;
	display: block;
	margin: 0 auto;
}

.hd_inner{
	padding-left: 40px;
	padding-right: 40px;
}



.fixed_tel{
	position: fixed;
	top: 180px;
	right: 0;
	z-index: 99;
}

.fixed_tel a{
	display: block;
	padding: 18px 16px;
	background-color: #ffe6b1;
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
	border: solid 2px #f39700;
	border-right: 0px;
}

.fixed_tel a img{
	width: 22px;
}

.fixed_tel a:hover{
	background-color: #f39700;
}



.openBox {
    position: absolute;
    display: block;
    background-color: #fff;
    bottom: -25px;
    left: 50%;
    width: auto;
    transform: translate(-50%, 100%);
    white-space: nowrap;
    padding: 14px 20px 14px 10px;
    transition: all .2s;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
	border-radius: 10px;
}


.openList .openBox a{
	position: relative;
	display: block;
	padding: 8px 0;
	padding-left: 10px;
	color: #333;
	font-size: 1.4rem;
}

.openList .openBox a::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #f39700;
	top: 50%;
	left: 20px;
	transform: translateY(-50%);
	border-radius: 50%;
	width: 7px;
	aspect-ratio: 1 / 1;
}

.openList .openBox a:hover{
	opacity: .75;
}



.openBox{
	opacity: 0;
	pointer-events: none;
}

.openList{
	position: relative;
}


.openList.active .openBox{
	opacity: 1;
	pointer-events: all;
}


.main_nav a.pla{
	position: relative;
	padding-right: 17px;
	transition: all.2s;
	cursor: pointer;
}

.main_nav a.pla::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #f39700;
	height: 2px;
	width: 12px;
	bottom: 13px;
	right: 18px;
	transition: all.2s;
}
.main_nav a.pla::after{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #f39700;
	height: 12px;
	width: 2px;
	bottom: 8px;
	right: 23px;
	transition: all.2s;
}

.main_nav a:hover{
	opacity: .75;
}


@media (max-width: 1200px){
	.main_nav{
		display: none;
	}
	header{
		height: 120px;
	}
	
}


@media (max-width: 740px){
	h1 img{
		height: 46px;
	}
	.hd_inner{
		padding-left: 20px;
		padding-right: 10px;
	}
	header{
		height: 90px;
	}
}




/* fv */

.fv{
	position: relative;
	height: 110vh;
	width: 100%;
}

.fv .ac_img{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 10;
}


.top_slider{
	position: relative;
	height: 100%;
	z-index: 5;
	min-height: 400px;
	width: 100%;
	margin: 0 0 0 auto;
	background-color: #fff;
}
.top_slider .slider{
	position: relative;
	height: 100%;
	z-index: 2;
}
.top_slider .slider li{
	position: relative;
	width: 100%;
	height: 100%;
	background-size: cover;
	margin: 0;
}

.top_slider .slider li.top01{
	background-image: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0)),url(../img/top01.jpg);
	background-position: bottom;
	background-size: cover;
}
.top_slider .slider li.top02{
	background-image: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0)),url(../img/n_top02.jpg);
	background-position: center;
	background-size: cover;
}
.top_slider .slider li.top03{
	background-image: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0)),url(../img/n_top03.jpg);
	background-position: center;
	background-size: cover;
}
.top_slider .slider li.top04{
	background-image: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0)),url(../img/n_top04.jpg);
	background-position: center;
	background-size: cover;
}

@media (max-width: 1200px){
	.fv{
		height: 90vh;
	}
	.fixed_tel{
		display: none;
	}
	.sub_ttl{
		margin-bottom: 45px;
	}
	.hd_cloud img{
		height: 130px;
	}
}

@media (max-width: 740px){
	.fv{
		height: 80vh;
	}
	header.change_color{
		height: 70px;
	}
	.sub_ttl .ja{
		font-size: 2.6rem;
	}
	.sub_ttl .en{
		font-size: 1.6rem;
	}
	.sub_ttl{
		margin-bottom: 30px;
	}
	.hd_cloud img{
		height: 100px;
	}
}



/* news */



.news{
	position: relative;
	padding-bottom: 100px;
}

.news .inner{
	position: relative;
	max-width: 1400px;
	margin: 0 auto;
	padding-left: 40px;
	padding-right: 40px;
}

.news_wrapper{
	max-width: 960px;
	margin: 0 auto;
}

.news .ac_ill{
	position: absolute;
	top: -20px;
	right: 40px;
	width: 220px;
}

.news .ac_ill02{
	position: absolute;
	bottom: -20px;
	left: 40px;
	width: 220px;
	z-index: 2;
}


.news_list .up_ymd{
	position: relative;
	margin-right: 40px;
	font-weight: 500;
	letter-spacing: 0.04em;
	padding-left: 35px;
	font-size: 1.8rem;
	font-weight: 700;
	color: #555;
}

.news_list .up_ymd::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/donguri.png);
	background-size: cover;
	background-position: center;
	aspect-ratio: 1 / 1;
	width: 30px;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.news_list .title{
	letter-spacing: 0.1em;
}

.news_list a{
	display: block;
	border-top: dotted 2px #ddd;
	padding: 15px 0;
}

.news_list li:last-child{
	border-bottom: dotted 2px #ddd;
}

.news_list a:hover{
	opacity: .75;
}

.news .animal{
	position: absolute;
	bottom: -80px;
	right: 40px;
	width: 150px;
	animation: zigu 3s step-end infinite forwards;
	z-index: 2;
}

@keyframes zigu{
	0%{
		transform: rotate(-3deg);
	}
	5%{
		transform: rotate(1deg);
	}
	10%{
		transform: rotate(-3deg);
	}
	15%{
		transform: rotate(1deg);
	}
	100%{
		transform: rotate(1deg);
	}
}

@keyframes zigu02{
	0%{
		transform: rotate(1deg);
	}
	5%{
		transform: rotate(-3deg);
	}
	10%{
		transform: rotate(1deg);
	}
	15%{
		transform: rotate(-3deg);
	}
	100%{
		transform: rotate(-3deg);
	}
}




@media (max-width: 1200px){
	.news .ac_ill{
		width: 180px;
	}
	.news .ac_ill02{
		width: 160px;
	}
	.news .animal{
		width: 120px;
	}
	
}

@media (max-width: 740px){
	.news_list .up_ymd{
		font-size: 1.6rem;
		display: block;
		padding-left: 20px;
	}
	.news_list .up_ymd::before{
		width: 20px;
	}
	.m_btn a{
		font-size: 1.6rem;
	}
	.news .ac_ill{
		width: 100px;
		right: 10px;
		top: -40px;
	}
	.news .ac_ill02{
		width: 120px;
		bottom: -80px;
		left: 20px;
	}
	.news .animal{
		width: 80px;
		bottom: -50px;
		right: 20px;
	}
	.news .inner{
		padding-left: 20px;
		padding-right: 20px;
	}
	.news{
		padding-bottom: 60px;
	}
}


/* aboutus */


.custom-shape-divider-top-1761028631 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1761028631 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 170px;
}

.custom-shape-divider-top-1761028631 .shape-fill {
    fill: #FFFFFF;
}

.custom-shape-divider-bottom-1761028798 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1761028798 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 210px;
}

.custom-shape-divider-bottom-1761028798 .shape-fill {
    fill: #FFFFFF;
}

.aboutus{
	padding-top: 220px;
	background-color: #fff8ee;
}

.aboutus .inner{
	align-items: center;
	position: relative;
	z-index: 2;
}

.aboutus .left{
	position: relative;
	width: 53%;
}

.aboutus .right{
	width: 43%;
}

.aboutus .right .in{
	max-width: 600px;
	margin: 0 auto;
}

.aboutus .txt_box p+p{
	margin-top: 25px;
}

.aboutus .left .img img{
	width: 100%;
	height: 700px;
	object-fit: cover;
	clip-path: polygon(40% 2%, 8% 0, 1% 12%, 0 90%, 5% 99%, 27% 100%, 65% 99%, 93% 100%, 99% 96%, 100% 28%, 96% 2%, 67% 0);
}

.aboutus .ab_kure{
	position: absolute;
	top: -100px;
	left: -50px;
	width: 210px;
}
.aboutus .ab_kure02{
	position: absolute;
	bottom: -50px;
	right: -80px;
	width: 300px;
}

.aboutus .animal{
	position: absolute;
	bottom: -100px;
	left: 80px;
	width: 170px;
	z-index: 3;
	transform: scale(-1,1);
	animation: zigu 3s step-end infinite forwards;
}


@media (max-width: 1200px){
	.custom-shape-divider-top-1761028631 svg{
		height: 120px;
	}
	.aboutus .inner{
		flex-direction: column;
	}
	.aboutus .left{
		width: 100%;
		margin-bottom: 70px;
	}
	.aboutus .left .img img{
		height: 470px;
	}
	.aboutus .ab_kure02{
		right: -20px;
		width: 200px;
		bottom: -30px;
	}
	.aboutus .ab_kure{
		width: 160px;
	}
	.aboutus .right{
		width: 100%;
	}
	
	.m_btn{
		margin-top: 45px;
	}
	.custom-shape-divider-bottom-1761028798 svg{
		height: 130px;
	}
	.aboutus .animal{
		width: 120px;
	}
	.aboutus{
		padding-top: 150px;
	}
}

@media (max-width: 740px){
	.custom-shape-divider-top-1761028631 svg{
		height: 70px;
	}
	
	.inner{
		margin-left: 20px;
		margin-right: 20px;
	}
	.aboutus .left .img img{
		height: 240px;
	}
	.aboutus .ab_kure{
		width: 100px;
		top: -50px;
	}
	.aboutus .ab_kure02{
		width: 140px;
	}
	.aboutus{
		padding-top: 100px;
	}
	.aboutus .left{
		margin-bottom: 40px;
	}
	.aboutus .txt_box p+p{
		margin-top: 15px;
	}
	.custom-shape-divider-bottom-1761028798 svg{
		height: 60px;
	}
	.aboutus .animal{
		left: 20px;
		width: 100px;
	}
	.m_btn{
		margin-top: 30px;
	}
}





/* life */


.life{
	position: relative;
	padding-top: 50px;
}

.life .inner{
	position: relative;
	border-radius: 20px;
	padding: 150px 0;
	max-width: 1700px;
	margin: 0 auto;
}

.life .wrapper{
	position: relative;
	max-width: 1400px;
	margin: 0 auto;
}

.life .ac_ill{
	width: 22%;
	margin: 0 auto 80px;
	min-width: 260px;
}



.life .txt_box{
	position: relative;
	text-align: center;
	font-size: 1.8rem;
}

.life .txt_box p+p{
	margin-top: 50px;
}

.life .txt_box .ac_ill02{
	position: absolute;
	bottom: -50px;
	left: 40px;
	width: 14%;
	z-index: 2;
}

.life .txt_box .ac_ill02 img{
	position: relative;
	z-index: 5;
}

.life .ac_img{
	position: absolute;
	top: 0;
	left: 0;
	width: 240px;
}

.life .ac_img02{
	position: absolute;
	bottom: 0;
	right: 0;
	width: 200px;
}

.life .img01{
	position: absolute;
	top: -30px;
	right: 40px;
	width: 25%;
	max-width: 340px;
}
.life .img02{
	position: absolute;
	top: 150px;
	left: 30px;
	width: 25%;
	max-width: 300px;
}
.life .img03{
	position: absolute;
	bottom: 150px;
	right: 20px;
	width: 25%;
	max-width: 340px;
}
.life .img04{
	position: absolute;
	bottom: -80px;
	left: 40px;
	width: 25%;
	max-width:270px;
}

.life .img01 img{
	border-radius: 10px;
	aspect-ratio: 3 / 2.1;
	width: 100%;
	object-fit: cover;
}

.life .img02 img{
	border-radius: 10px;
	aspect-ratio: 1 / 1;
	width: 100%;
	object-fit: cover;
}

.life .img03 img{
	border-radius: 10px;
	aspect-ratio: 5 / 4;
	width: 100%;
	object-fit: cover;
}

.life .img04 img{
	border-radius: 10px;
	aspect-ratio: 1 / 1.2;
	width: 100%;
	object-fit: cover;
}


.life .ill01{
	position: absolute;
	width: 12%;
	top: 380px;
	left: 30px;
}

.life .ill02{
	position: absolute;
	width: 11%;
	right: 240px;
	bottom: 360px;
}

.life .animal{
	position: absolute;
	bottom: 40px;
	right: 40px;
	width: 180px;
	animation: zigu 3s step-end infinite forwards;
}




.sec_img{
	width: 100%;
	height: 80vh;
}

.sec_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.custom-shape-divider-bottom-1761091173 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
	z-index: -1;
}

.custom-shape-divider-bottom-1761091173 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 210px;
}

.custom-shape-divider-bottom-1761091173 .shape-fill {
    fill: #fff8ee;
}


@media (max-width: 1200px){
	.life .ac_ill{
		margin-bottom: 45px;
	}
	.life .txt_box p+p{
		margin-top: 30px;
	}
	.life .img02{
		width: 20%;
	}
	.life .img03{
		width: 18%;
		bottom: 100px;
	}
	.life .img04{
		width: 20%;
	}
	.life .ill01{
		top: 280px;
	}
	.life .ill02{
		bottom: 180px;
		right: 0;
	}
	.life .txt_box .ac_ill02{
		bottom: -140px;
	}
	.life .animal{
		width: 130px;
	}
	.custom-shape-divider-bottom-1761091173 svg{
		height: 120px;
	}
	.sec_img{
		height: 50vh;
	}
	.life .inner{
		padding: 100px 0;
	}
}

@media (max-width: 740px){
	.life .inner{
		padding: 50px 0 200px;
	}
	.life .txt_box{
		font-size: 1.5rem;
	}
	.life .ac_ill{
		min-width:180px;
		z-index: 5;
	}
	.life .img02{
		left: 0;
		min-width: 100px;
	}
	.life .img01{
		right: 0;
		top: -60px;
		min-width: 130px;
	}
	.life .img03{
		right: 0;
		min-width: 140px;
		bottom: 50px;
	}
	.life .img04{
		min-width: 100px;
		bottom: 0px;
	}
	.life .animal{
		width: 100px;
		z-index: 2;
		bottom: 10px;
		right: 20px;
	}
	.life .ill01{
		left: -20px;
		top: 220px;
		min-width: 80px;
	}
	.life .txt_box .ac_ill02{
		min-width: 100px;
		left: 10px;
		bottom: -200px;
	}
	.life .ill02{
		min-width: 80px;
		right: -20px;
		bottom: 130px;
	}
}





/* bosyu */


.bosyu{
	position: relative;
	background-color: #e4f4ff;
	overflow: hidden;
}

.bosyu::before{
	content: "";
	display: inline-block;
	position: absolute;
	border: dashed 2px #777;
	border-radius: 50%;
	width: 200%;
	aspect-ratio: 1 / 1;
	top: 400px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #fff;
	min-width: 1700px;
}

.bosyu .sub_ttl{
	margin-bottom: 100px;
}

.bosyu .inner{
	position: relative;
	z-index: 1;
}

.bosyu h3{
	font-size: 3.4rem;
	text-align: center;
	letter-spacing: 0.04em;
	margin-bottom: 40px;
	font-weight: 500;
}

.bosyu h3 span{
	position: relative;
}

.bosyu h3 span::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #f39700;
	aspect-ratio: 3 / 1.2;
	width: 14px;
	top: -14px;
	left: 50%;
	transform: translateX(-50%) rotate(-30deg);
	border-radius: 50%;
}

.bosyu .txt_box{
	position: relative;
	text-align: center;
}

.bosyu .txt_box .ac_ill{
	position: absolute;
	bottom: -170px;
	right: -20px;
	width: 160px;
	z-index: 2;
}
.bosyu .txt_box .ac_ill02{
	position: absolute;
	top: -190px;
	left: -40px;
	width: 120px;
	z-index: 2;
}

.bosyu .wrapper{
	max-width: 1280px;
	margin: 0 auto;
}

.bosyu .imgarea{
	margin-bottom: 120px;
}
.bosyu .imgarea .img{
	position: relative;
	width: 33%;
}
.bosyu .imgarea .img+.img{
	margin-left: -10px;
}
.bosyu .imgarea .img img{
	width: 100%;
	aspect-ratio: 3 / 2.2;
	object-fit: cover;
	border-radius: 10px;
}

.bosyu .imgarea .img:nth-child(1){
	transform: rotate(-3deg);
	margin-top: 20px;
	z-index: 1;
}
.bosyu .imgarea .img:nth-child(2){
	z-index: 2;
}

.bosyu .imgarea .img:nth-child(3){
	transform: rotate(3deg);
	margin-top: 20px;
	z-index: 3;
}

.bosyu .kumo{
	position: absolute;
	top: 150px;
	left: 10%;
	width: 220px;
}
.bosyu .kumo02{
	position: absolute;
	top: 90px;
	right: 10%;
	width: 220px;
}

.bosyu .air{
	position: absolute;
	top: 210px;
	left: 25%;
	width: 160px;
	z-index: 2;
	animation: zigu 3s step-end infinite forwards;
}

.mini_sli{
	position: relative;
}

.mini_sli::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: linear-gradient(90deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
	top: 0;
	left: 0;
	height: 100%;
	width: 300px;
	z-index: 1;
}

.mini_sli::after{
	content: "";
	display: inline-block;
	position: absolute;
	background: linear-gradient(270deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
	top: 0;
	right: 0;
	height: 100%;
	width: 300px;
	z-index: 1;
}

.mini_sli .slick-slide:nth-child(even){
	margin-top: 60px;
}

.bosyu .animal{
	position: absolute;
	bottom: 60px;
	left: 60px;
	width: 180px;
	animation: zigu 3s step-end infinite forwards;
}

@media (max-width: 1200px){
	.bosyu .kumo{
		width: 140px;
		top: 80px;
	}
	.bosyu .kumo02{
		width: 140px;
		top: 160px;
	}
	.bosyu .air{
		left: 10%;
		width: 120px;
	}
	.bosyu .imgarea{
		margin-bottom: 80px;
	}
	.bosyu .animal{
		width: 120px;
	}
	.mini_sli .slick-slide:nth-child(even){
		margin-top: 30px;
	}
	.bosyu .txt_box .ac_ill{
		width: 120px;
	}
	.bosyu .txt_box .ac_ill02{
		width: 100px;
	}
	.bosyu .sub_ttl{
		margin-bottom: 70px;
	}
}

@media (max-width: 740px){
	.bosyu .sub_ttl{
		margin-bottom: 40px;
	}
	.bosyu .air{
		width: 80px;
		top: 100px;
	}
	.bosyu .kumo{
		width: 100px;
		left: 10px;
	}
	.bosyu .kumo02{
		width: 100px;
		top: 120px;
		right: 0;
	}
	.bosyu::before{
		top: 220px;
	}
	.bosyu h3{
		font-size: 2.2rem;
		margin-bottom: 20px;
	}
	.bosyu .imgarea{
		margin-bottom: 50px;
	}
	.bosyu .txt_box{
		text-align: left;
	}
	.bosyu .txt_box p{
		display: inline;
	}
	.bosyu .txt_box .ac_ill02{
		width: 70px;
		top: -120px;
	}
	.bosyu .txt_box .ac_ill{
		width: 80px;
	}
	.mini_sli::before{
		width: 50px;
	}
	.mini_sli::after{
		width: 50px;
	}
	.bosyu .animal{
		width: 90px;
		bottom: 0;
		left: 0px;
	}
}



/* contents */


.contents{
	position: relative;
	padding-bottom: 0;
}

.contents .inner{
	position: relative;
	background-color: #fff8ee;
	padding: 120px 60px;
	border-radius: 20px;
	overflow: hidden;
}

.contents .ac_ill{
	position: absolute;
	width: 300px;
	top: 80px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}

.contents .dot{
	position: absolute;
	bottom: 0;
	right: 0;
	max-width: 400px;
	opacity: 0.3;
	z-index: 0;
	transform: scale(1,-1);
}

.contents .cir_bg{
	position: absolute;
	bottom: 0;
	left: 0;
	max-width: 400px;
	width: 25%;
	opacity: 0.3;
	transform: translate(-40%,40%);
}

.contents .wrapper{
	max-width: 1400px;
	position: relative;
	z-index: 2;
}

.contents .right{
	width: 10%;
}

.contents .left{
	width: 85%;
}

.contents .sub_ttl{
	margin: 0 0 0 auto;
}

.contents .item_area{
	margin-top: 80px;
}

.contents .item{
	width: 47%;
}



.contents .item h3{
	position: relative;
	font-size: 2.4rem;
	width: 13%;
	letter-spacing: 0.04em;
	margin: 0 auto;
	
}

.contents .item h3 span{
	display: inline-block;
	border-top: solid 4px #f39700;
	padding-top: 10px;
	line-height: 1.2;
}

.contents .item .box{
	width: 86%;
}

.contents .item .box .img{
	position: relative;
	margin-bottom: 30px;
}

.contents .item .box .img img.mm{
	width: 100%;
	object-fit: cover;
	aspect-ratio: 3 / 2;
	clip-path: polygon(40% 2%, 8% 0, 1% 12%, 0 90%, 5% 99%, 27% 100%, 65% 99%, 93% 100%, 99% 96%, 100% 28%, 96% 2%, 67% 0);
}

.contents .item .box .img .sankaku{
	position: absolute;
	bottom: 0px;
	right: 10px;
	width: 80px;
	z-index: 2;
}

.contents .item .box .clip{
	position: absolute;
	top: 20px;
	left: 20px;
	width: 120px;
	transform: translate(-50%,-50%);
}

.txt_btn{
	width: fit-content;
	margin: 15px 0 0 auto;
}

.txt_btn a{
	position: relative;
	display: block;
	letter-spacing: 0.04em;
	border-bottom: dashed 3px #f39700;
	padding: 0 50px 0 7px;
	padding-bottom: 5px;
}

.txt_btn a:hover{
	opacity: .7;
}

.txt_btn a::before{
	content: "";
	display: inline-block;
	position: absolute;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	top: 45%;
	right: 5px;
	transform: translateY(-50%);
	background-color: #f39700;
	width: 22px;
}

.txt_btn a::after{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/arrow_w.png);
	background-size: cover;
	background-position: center;
	aspect-ratio: 1 / 1;
	width: 16px;
	top: 45%;
	right: 7px;
	transform: translateY(-50%);
}

.contents .animal{
	position: absolute;
	right: 80px;
	bottom: 0;
	width: 160px;
	animation: zigu 3s step-end infinite forwards;
}


@media (max-width: 1200px){
	.contents .inner .flex_bet{
		flex-direction: column;
	}
	.contents .ac_ill{
		width: 240px;
	}
	.contents .left{
		width: 100%;
	}
	.contents .item{
		width: 100%;
	}
	.contents .item+.item{
		margin-top: 80px;
	}
	.contents .right{
		width: 100%;
	}
	.contents .right .tate{
		writing-mode: unset;
	}
	.contents .item_area{
		margin-top: 50px;
	}
	.contents .inner{
		padding-top: 100px;
		padding-bottom: 100px;
	}
	.contents .animal{
		right: 0;
		width: 120px;
	}
	.contents .dot{
		width: 50%;
	}
}

@media (max-width: 740px){
	.contents .ac_ill{
		width: 180px;
		top: 20px;
	}
	.contents .inner{
		padding: 70px 20px;
		padding-right: 10px;
		border-radius: 10px;
	}
	.contents .item h3{
		font-size: 1.8rem;
	}
	.contents .item .box .clip{
		width: 80px;
	}
	.contents .item .box .img{
		margin-bottom: 20px;
	}
	.txt_btn{
		margin-top: 0;
	}
	.contents .item+.item{
		margin-top: 50px;
	}
	.contents .item_area{
		margin-top: 30px;
	}
	.contents .animal{
		width: 80px;
	}
	.contents .cir_bg{
		width: 160px;
	}
}



/* footer */


.foo_top{
	padding: 100px 0;
}

.foo_top .inner{
	position: relative;
	background: url(../img/co_bg.jpg);
	background-size: cover;
	background-position: center;
	background-position-y: 30%;
	padding: 100px 0;
	border-radius: 20px;
}

.foo_top .inner::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: rgb(51, 51, 51,0.75);
	border-radius: 20px;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.foo_top h2{
	position: relative;
	z-index: 1;
	font-size: 5.8rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 60px;
	color: #fff;
	text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}

.foo_top .btn{
	width: 280px;
	text-align: center;
}

.foo_top .btn a{
	position: relative;
	display: block;
	font-size: 1.8rem;
	letter-spacing: 0.05em;
	background-color: #ffe6b1;
	padding: 24px 0;
	padding-left: 30px;
	border-radius: 40px;
	border: dashed 2px #f39700;
	font-weight: 700;
}

.foo_top .btn a:hover{
	background-color: #f39700;
	border: dashed 2px #fff;
}

.foo_top .btn .icon{
	position: absolute;
	top: 50%;
	left: 20px;
	transform: translateY(-50%);
	background-color: #fff;
	width: 45px;
	height: 45px;
	border-radius: 30px;
	line-height: 45px;
	text-align: center;
	color: #f39700;
}

.foo_top .btn .icon i{
	padding: 0;
	font-size: 1.8rem;
}

.foo_top .btn + .btn{
	margin-left: 40px;
}

.foo_btm{
	position: relative;
	text-align: center;
	padding-bottom: 120px;
	font-size: 1.4rem;
}

.foo_btm .ac_img{
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 100%;
	max-width: 1080px;
	transform: translateX(-50%);
}

.foo_logo {
	margin-bottom: 30px;
}

.foo_logo img{
	height: 60px;
}

.foo_logo a:hover{
	opacity: 0.75;
}

.copy{
	text-align: center;
}

.copy p{
	background-color: #f39700;
	font-size: 1.3rem;
	padding: 10px 0;
	color: #fff;
}

@media (max-width: 1200px){
	.foo_top h2{
		margin-bottom: 40px;
	}
}

@media (max-width: 740px){
	.foo_top{
		padding: 50px 0 70px;
	}
	.foo_top h2{
		font-size: 3.6rem;
		margin-bottom: 30px;
	}
	.foo_top .flex_center{
		flex-direction: column;
		align-items: center;
	}
	.foo_top .btn a{
		padding: 20px 0;
		font-size: 1.6rem;
	}
	.foo_top .btn + .btn{
		margin: 0;
		margin-top: 20px;
	}
	.foo_top .inner{
		padding: 60px 0;
		border-radius: 10px;
	}
	.foo_top .inner::before{
		border-radius: 10px;
	}
	.foo_logo img{
		height: 50px;
	}
	.copy p{
		font-size: 1.2rem;
	}
	.foo_btm{
		padding-bottom: 70px;
	}
}




/* page top */

.page_top.is_animation{
	opacity: 1;
	pointer-events: all;
}

.page_top{
	opacity: 0;
    pointer-events: none;
    width: 60px;
    height: 60px;
    position: fixed;
    right: 3%;
    bottom: 5%;
    border-radius: 50%;
    opacity: 0;
    transition: 1s;
    background: #fff;
    z-index: 49;
}


.page_top a {
    display: block;
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    border-radius: 50%;
	background-color: #f39700;
}

.page_top a i {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    font-weight: 900;
    font-size: 10px;
    color: #fff;
	padding: 0;
}

.page_top.is_animation:hover {
    transform: translateY(-5px);
}

@media (max-width: 740px) {
    .page_top {
        width: 45px;
        height: 45px;
    }
}




/* 下層トップ */




.kasou_top{
	position: relative;
	padding: 260px 0 80px;
	text-align: center;
	background: url(../img/aboutus.jpg);
	background-size: cover;
	background-position: top;
	color: #fff;
}

.kasou_top .inner{
	position: relative;
	z-index: 1;
}

.kasou_top::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: rgb(51, 51, 51,0.8);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	backdrop-filter: blur(3px);
}

.kasou_top h2{
	font-size: 4.4rem;
	margin-bottom: 20px;
	font-weight: 500;
}

.kasou_top ol{
	font-size: 1.5rem;
	flex-wrap: wrap;
}

.kasou_top ol li a{
	position: relative;
	color: #fff;
	padding-right: 26px;
}

.kasou_top ol li a::before{
	content: "＞";
	display: inline-block;
	position: absolute;
	font-size: 1.6rem;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}

.kasou_top ol li+li{
	margin-left: 7px;
}

.kasou_top ol li a:hover{
	opacity: 0.75;
}


.kasou section{
	padding: 100px 0;
}

@media (max-width: 1200px){
	.kasou_top{
		padding-top: 200px;
	}
}

@media (max-width: 740px){
	.kasou section{
		padding: 60px 0;
	}
	.kasou_top h2{
		font-size: 3rem;
		margin-bottom: 10px;
	}
	.kasou_top ol{
		font-size: 1.3rem;
	}
	.kasou_top{
		padding-top: 150px;
		padding-bottom: 60px;
	}
}





/* 下層　園について */


.w1200{
	max-width: 1080px;
	margin: 0 auto;
	width: 92%;
}

section.ab_top{
	padding: 140px 0;
}

.ab_top h3{
	font-size: 2.6rem;
	margin-bottom: 15px;
	font-weight: 700;
	color: #f39700;
}

.ab_top .txt{
	color: #555;
	letter-spacing: 0.1em;
}

.ab_top .item{
	position: relative;
	background-color: #fff8ee;
	padding: 50px;
	padding-top: 55px;
	border-radius: 10px;
}

.ab_top .item+.item{
	margin-top: 60px;
}

.ab_top .left{
	width: 65%;
}

.ab_top .right{
	width: 30%;
}
.ab_top .ac_txt{
	position: absolute;
	top: -20px;
	left: 45px;
	font-size: 4rem;
	letter-spacing: 0.1em;
	font-weight: bold;
	color: #f39700;
	line-height: 1;
}

.ab_top .item::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #f39700;
	height: 6px;
	width: 30px;
	border-radius: 20px;
	top: -2px;
	left: 120px;
}

.ab_top .right .img img{
	margin-top: -80px;
	border-radius: 10px;
}

.info_table{
	width: 100%;
}

.info_table th{
	position: relative;
	background-color: #F9FAFA;
	color: #444;
	font-weight: 500;
	width: 25%;
	vertical-align: middle;
}

.info_table th::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #f39700;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	width: 6px;
	top: 50%;
	left: 15px;
	transform: translateY(-50%);
}

.info_table td{
	width: 75%;
	letter-spacing: 0.07em;
	background-color: #fff;
}

.info_table th,.info_table td{
	padding: 25px 0;
	line-height: 2;
	padding-left: 30px;
	border-top: solid 1px #eee;
}

.info_table tr:last-child th,.info_table tr:last-child td{
	border-bottom: solid 1px #eee;
}



.overview .wrap{
	max-width: 960px;
	margin: 0 auto;
}

section.overview{
	position: relative;
	padding-top: 0;
}

.overview .animal{
	position: absolute;
	top:450px;
	right: 80px;
	width: 200px;
	animation: zigu 3s step-end infinite forwards;
}

.overview .top_img{
	margin-bottom: 120px;
}

.overview .top_img .img{
	width: calc(100% / 3);
}

.overview .top_img .img img{
	width: 100%;
	object-fit: cover;
	height: 400px;
}

.custom-shape-divider-bottom-1762926603 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1762926603 svg {
    position: relative;
    display: block;
    width: calc(122% + 1.3px);
    height: 65px;
}

.custom-shape-divider-bottom-1762926603 .shape-fill {
    fill: #FFF8EE;
}

.facility{
	position: relative;
	background-color: #FFF8EE;
}


.facility h3{
	font-size: 2rem;
	letter-spacing: 0.04em;
	background-color: #ffe6b1;
	width: fit-content;
	padding: 5px 20px;
	border-radius: 30px;
}

.facility .img{
	width: 32%;
}

.facility p.fir{
	margin-top: 8px;
	margin-left: 15px;
}

.facility .top_area{
	margin-bottom: 15px;
}

.facility .box+.box{
	margin-top: 30px;
}

.facility .box{
	background-color: #fff;
	padding: 40px;
	border-radius: 20px;
	border: dotted 3px #f39700;
}

.facility .box .img img{
	width: 100%;
	object-fit: cover;
	aspect-ratio: 3 / 2;
}

.facility .inner{
	max-width: 1280px;
}

.facility .kure{
	position: absolute;
	top: 120px;
	right: 60px;
	width: 150px;
}

.facility .kure02{
	position: absolute;
	top: -40px;
	left: 60px;
	width: 150px;
}

.access{
	position: relative;
}

.custom-shape-divider-top-1762926643 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1762926643 svg {
    position: relative;
    display: block;
    width: calc(122% + 1.3px);
    height: 65px;
}

.custom-shape-divider-top-1762926643 .shape-fill {
    fill: #FFF8EE;
}

.access .inner{
	position: relative;
}

.access .ac_bg{
	position: absolute;
	bottom: -40px;
	left: -60px;
	width: 90px;
}

.access .ac_bg02{
	position: absolute;
	top: 150px;
	right: 0;
	width: 100px;
	transform: translate(50%,-50%);
}

.access .left{
	width: calc(100% / 3);
}

.access .right{
	width: calc((97% / 3) * 2);
}

.access .right .map iframe{
	width: 100%;
	height: 450px;
}

.access .imgarea .img01{
	margin-bottom: 20px;
}

.access .imgarea .img01 img{
	width: 100%;
	height: 215px;
	object-fit: cover;
}

.access .imgarea .img02 img{
	width: 100%;
	height: 215px;
	object-fit: cover;
}

.access .ac_img{
	position: absolute;
	top: 50px;
	right: 80px;
	width: 200px;
}

section.information{
	position: relative;
	background-color: #fff8ee;
}

section.information .wood{
	position: absolute;
	top: 50px;
	right: 50px;
	width: 200px;
}

section.information .kikori{
	position: absolute;
	bottom: 0px;
	left: 50px;
	width: 160px;
}

.information .btn a{
	display: block;
	padding: 25px 0;
	background-color: #ffe6b1;
	text-align: center;
	letter-spacing: 0.05em;
}

.information .btn a:hover{
	background-color: #f39700;
}

.information .btn{
	width: calc(50% - 5px);
}



.btm_btn_area{
	margin-top: 20px;
}

.t_btn a{
	position: relative;
	font-size: 2.4rem;
	letter-spacing: 0.03em;
	display: block;
	padding: 80px 0;
	background-image: linear-gradient(rgba(0,0,0,0.65),rgba(0,0,0,0.65)),url(../img/co_bg.jpg);
	background-size: cover;
	background-position: center;
	color: #fff;
	text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
	border-radius: 10px;
	padding-left: 40px;
}



.t_btn a .rela{
	position: relative;
	z-index: 1;
}

.t_btn a .arrow{
	position: absolute;
	width: 22px;
	top: 55%;
	left: 336px;
	transform: translateY(-50%);
}

.t_btn a::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #fff;
	top: 50%;
	left: 320px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	width: 55px;
	transform: translateY(-50%);
	transition: all .3s;
}

.t_btn a:hover::before{
	transform: translateY(-50%) scale(1.2);
}




@media (max-width: 1200px){
	.ab_top .right .img img{
		width: 100%;
		height: 300px;
		object-fit: cover;
	}
	.ab_top .left{
		width: 56%;
	}
	.ab_top .right{
		width: 40%;
	}
	.ab_top .item{
		padding-left: 35px;
		padding-right: 35px;
	}
	.ab_top .ac_txt{
		left: 35px;
	}
	.overview .animal{
		width: 140px;
		right: 20px;
	}
	.facility .kure02{
		width: 100px;
	}
	.facility .kure{
		width: 100px;
		top: 60px;
	}
	.facility .top_area{
		flex-direction: column;
	}
	.access .ac_img{
		width: 140px;
		right: 20px;
	}
	.access .inner{
		width: 80%;
	}
	.access .right .map iframe{
		height: 370px;
	}
	.access .imgarea .img01 img{
		height: 180px;
	}
	.access .imgarea .img02 img{
		height: 180px;
	}
	.access .imgarea .img01{
		margin-bottom: 10px;
	}
	section.information .wood{
		width: 150px;
	}
	section.information .kikori{
		bottom: 0px;
		width: 140px;
	}
	.overview .top_img .img img{
		height: 300px;
	}
}

@media (max-width: 740px){
	.ab_top .flex_bet{
		flex-direction: column-reverse;
	}
	.ab_top .right{
		width: 100%;
	}
	.ab_top .left{
		width: 100%;
		margin-top: 20px;
	}
	.ab_top .right .img img{
		margin-top: 0;
	}
	.ab_top .right .img img{
		height: 200px;
	}
	.ab_top h3{
		font-size: 2rem;
		margin-bottom: 10px;
	}
	.ab_top .item{
		padding-top: 35px;
		padding-bottom: 25px;
	}
	.ab_top .ac_txt{
		font-size: 3.2rem;
		top: -18px;
	}
	.ab_top .item::before{
		left: 80px;
		height: 5px;
	}
	section.ab_top{
		padding: 60px 0;
		padding-top: 80px;
	}
	.ab_top .item+.item{
		margin-top: 40px;
	}
	.overview .top_img .img img{
		height: 200px;
	}
	.overview .top_img{
		margin-bottom: 60px;
	}
	.overview .animal{
		width: 100px;
		top: 200px;
	}
	.facility .kure02{
		width: 70px;
		left: 30px;
	}
	.facility .kure{
		width: 80px;
		right: 20px;
		top: 20px;
	}
	.facility .box{
		padding: 25px;
	}
	.facility h3{
		font-size: 1.8rem;
		margin: 0 auto 5px;
	}
	.facility .imgarea{
		flex-direction: column;
	}
	.facility .img{
		width: 100%;
	}
	.facility .img+.img{
		margin-top: 20px;
	}
	.access .ac_img{
		top: 0;
		width: 90px;
	}
	.access .item_area{
		flex-direction: column-reverse;
	}
	.access .right{
		width: 100%;
	}
	.access .right .map iframe{
		height: 220px;
	}
	.access .left{
		display: flex;
		justify-content: space-between;
		width: 100%;
		margin-top: 10px;
	}
	.access .imgarea .img02 img{
		height: 120px;
	}
	.access .imgarea .img01 img{
		height: 120px;
	}
	.access .imgarea .img01{
		margin-bottom: 0;
		width: 48%;
	}
	.access .imgarea .img02{
		width: 48%;
	}
	.access .ac_bg02{
		width: 70px;
		top: 80px;
	}
	.access .ac_bg{
		width: 65px;
		left: -30px;
	}
	.t_btn a{
		padding: 40px 30px;
		font-size: 1.8rem;
	}
	section.information .kikori{
		width: 100px;
		left: 0;
	}
	section.information .wood{
		width: 100px;
		top: 0;
		right: 10px;
	}
	.info_table th, .info_table td{
		padding-top: 15px;
		padding-bottom: 15px;
		padding-left: 10px;
		padding-right: 10px;
		font-size: 1.3rem;
	}
	.info_table th{
		width: 30%;
		padding-left: 15px;
	}
	.info_table td{
		width: 70%;
	}
	.info_table th::before{
		left: 5px;
		width: 4px;
	}
	.t_btn a::before{
		width: 40px;
		left: 280px;
	}
	.t_btn a .arrow{
		width: 18px;
		left: 292px;
	}
}



/* 園での生活 */


.life_top{
	text-align: center;
}

.life_top .ill{
	width: 300px;
	margin: 0 auto 30px;
}

.life_top .sub_ttl{
	margin-bottom: 30px;
}

.mark_ttl{
	position: relative;
	width: fit-content;
	margin: 0 auto 30px;
	font-size: 2.4rem;
}

.mark_ttl span{
	padding: 0 10px;
}


.mark_ttl::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/ttl_ac.png);
	background-size: cover;
	background-position: center;
	aspect-ratio: 500 / 217;
	height: 27px;
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
}


.day{
	background-color: #FFF8EE;
}

.day .img_box{
	margin-bottom: 45px;
}

.day .img_box .img{
	width: 31%;
}

.day .img_box .img+.img{
	margin-left: -20px;
}

.day .img_box .img:first-child{
	transform: rotate(-3deg);
	margin-top: 20px;
}

.day .img_box .img:last-child{
	transform: rotate(3deg);
	margin-top: 20px;
}

.day .img_box .img img{
	width: 100%;
	object-fit: cover;
	aspect-ratio: 3 / 2;
}

.day .item{
	position: relative;
	border-bottom: solid 1px #ddd;
	padding: 6px 0;
	padding-left: 32px;
	display: flex;
}

.day .item::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #f39700;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	width: 6px;
	top: 17px;
	left: 10px;
}

.day .time{
	font-size:1.8rem;
	letter-spacing: 0.1em;
	display: inline-block;
	margin-right: 30px;
}

.day .ttl{
	display: inline-block;
	font-size: 1.6rem;
	letter-spacing: 0.05em;
	line-height: 1.9;
}

.day .flex_bet.ch{
	margin-top: 130px;
}

.day .flex_bet.ch .left{
	position: relative;
	width: 47%;
}

.day .flex_bet.ch .right{
	position: relative;
	width: 47%;
}


.day .flex_bet.ch .arrow{
	position: absolute;
	left: 50%;
	top: -110px;
	width: 60px;
	transform: translateX(-50%);
}



.day .box{
	background-color: #fff;
	padding-top: 80px;
	padding-left: 60px;
	padding-right: 60px;
	padding-bottom: 60px;
	border-radius: 20px;
}

.day .box + .box{
	margin-top: 40px;
}

.day .inner{
	max-width: 1280px;
	margin: 0 auto;
	width: 92%;
}



.schedule{
	position: relative;
}

.schedule .kure{
	position: absolute;
	top: 0;
	left: 0;
	width: 300px;
}

.schedule .kure02{
	position: absolute;
	top: 0;
	right: 0;
	width: 300px;
}



.schedule ul li{
	letter-spacing: 0.1em;
	padding: 10px 0;
	border-bottom: dashed 1px #ccc;
}

.schedule ul li .num{
	display: inline-block;
	font-size: 1.7em;
	line-height: 1;
	margin-right: 4px;
	font-weight: bold;
	color: #f39700;
}

.schedule .item{
	position: relative;
	padding: 30px;
	border-radius: 10px;
	background-color: #fff8ee;
	    box-shadow: 4px 4px 0px 0px #fbe2bf;
}

.schedule .item_list{
	margin-bottom: 80px;
}

.schedule .item .ac_txt{
	position: absolute;
	right: 40px;
	font-size: 4rem;
	line-height: 1;
	top: 10px;
	font-weight: bold;
	color: #dc95df;
	opacity: 0.5;
}

.schedule .item:nth-child(2) .ac_txt{
	color: #6dc979;
}

.schedule .item:nth-child(3) .ac_txt{
	color: #f39700;
}

.schedule .item:nth-child(4) .ac_txt{
	color: #8fc0e1;
}

.schedule .item+.item{
	margin-top: 60px;
}

.schedule .item .kisetu{
	position: absolute;
	font-size: 3rem;
	left: 50%;
	top: -20px;
	transform: translateX(-50%);
	background-color: #dc95df;
	color: #fff;
	width: 50px;
	height: 50px;
	text-align: center;
	border-radius: 50%;
}

.schedule .item:nth-child(2) .kisetu{
	background-color: #6dc979;
}
.schedule .item:nth-child(3) .kisetu{
	background-color: #f39700;
}
.schedule .item:nth-child(4) .kisetu{
	background-color: #8fc0e1;
}


.schedule .item .work_slide{
	width: 30%;
}

.schedule .item .img img{
	aspect-ratio: 3 / 2;
	width: 100%;
	object-fit: cover;
}

.schedule .item ul{
	width: 65%;
	padding-top: 20px;
}

.column{
	position: relative;
	background-color: #FFF8EE;
	padding: 50px;
	padding-top: 70px;
	border-radius: 20px;
}

.column .ac_img{
	position: absolute;
	top: -20px;
	right: -20px;
	width: 80px;
}

.column .ac_img02{
	position: absolute;
	bottom: -30px;
	left: -30px;
	width: 100px;
}

.column+.column{
	margin-top: 50px;
}

.column .c_left{
	width: 42%;
}
.column .c_right{
	width: 54%;
}
.column .c_left img{
	aspect-ratio: 3 / 2;
	width: 100%;
	object-fit: cover;
}

.column .c_right li{
	position: relative;
	padding-left: 20px;
}

.column .c_right li::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/check.jpg);
	background-size: cover;
	background-position: center;
	aspect-ratio: 1 / 1;
	top: 17px;
	width: 13px;
	left: 0;
}


.bg_dot{
	background-image:
	  radial-gradient(#f5f5f5 15%, transparent 15%);
	background-size: 24px 24px;
  }

.special{
	position: relative;
	background-color: #fff8ee;
}

.flag{
	position: absolute;
	top: 0;
	left: 0;
	max-width: 300px;
	width: 18%;
}

.flag.tp02{
	left: auto;
	right: 0;
	transform: scale(-1,1);
}

.special ul{
	margin-top: 20px;
}

.special li{
	width: 49%;
	background-color: #fff8ee;
	padding: 10px 20px;
	border-radius: 5px;
}

.special li .ttl{
	position: relative;
	display: block;
	font-size: 1.8rem;
	margin-bottom: 10px;
	letter-spacing: 0.05em;
	padding-left: 20px;
	padding-bottom: 3px;
	border-bottom: solid 1px #f39700;
}

.special li .ttl::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/arrow.png);
	background-size: cover;
	background-position: center;
	aspect-ratio: 1 / 1;
	width: 24px;
	top: 47%;
	left: -5px;
	transform: translateY(-50%);
}

.special li .txt{
	font-size: 1.5rem;
}

.special .item_box .item+.item{
	margin-top: 80px;
}

.special .item{
	position: relative;
	background-color: #fff;
	padding: 80px 40px 60px;
	box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 24px;
}

.special .item .tyui{
	font-size: 1.4rem;
	color: #555;
}

.special .item .time{
	width: fit-content;
	letter-spacing: 0.15em;
	font-size: 1.7rem;
	padding-right: 30px;
	border-right: solid 1px #ccc;
	color: #f39700;
	font-weight: bold;
}

.special .item .flex_center{
	background-color: #fff8ee;
	padding: 20px 20px 15px;
	border-radius: 5px;
}

.special .item .flex_center p:last-child{
	padding-left: 30px;
}

.special .ac_img{
	position: absolute;
	top: -50px;
	right: 20px;
	width: 18%;
	max-width: 300px;
	transform: rotate(3deg);
}

.special .ac_img.tp02{
	right: auto;
	left: 20px;
	transform: rotate(-3deg);
}

.special .ac_img img{
	aspect-ratio: 3 / 2.5;
	width: 100%;
	object-fit: cover;
	clip-path: polygon(40% 2%, 8% 0, 1% 12%, 0 90%, 5% 99%, 27% 100%, 65% 99%, 93% 100%, 99% 96%, 100% 28%, 96% 2%, 67% 0);
}


.special .item .inner{
	max-width: 900px;
	margin: 0 auto;
}

.kasou .slick-slide{
	margin: 0;
}


@media (max-width: 1200px){
	.life_top .ill{
		width: 250px;
	}	
	.day .flex_bet.ch{
		flex-direction: column;
		margin-top: 100px;
	}
	.day .flex_bet.ch .left{
		width: 100%;
	}
	.day .flex_bet.ch .right{
		width: 100%;
	}
	.day .flex_bet.ch .arrow{
		width: 45px;
		top: -90px;
	}
	.day .flex_bet.ch .right{
		margin-top: 120px;
	}
	.schedule .kure{
		width: 200px;
	}
	.schedule .kure02{
		width: 200px;
	}
	.schedule .item{
		flex-direction: column;
		padding-top: 60px;
	}
	.schedule .item ul{
		width: 100%;
	}
	.schedule .item .work_slide{
		width: 100%;
	}
	.schedule .item .img img{
		aspect-ratio: auto;
		height: 400px;
	}
	.column .flex_bet{
		flex-direction: column;
	}
	.column .c_right{
		width: 100%;
	}
	.column .c_left{
		width: 100%;
		margin-bottom: 20px;
	}
	.column .c_left img{
		aspect-ratio: auto;
		height: 300px;
	}
	.special .ac_img img{
		aspect-ratio: 3 / 2;
	}
	.special .ac_img{
		width: 30%;
	}
}

@media (max-width: 740px){
	.day .img_box .img img{
		aspect-ratio: 1 / 1;
	}
	.day .img_box .img+.img{
		margin-left: -5px;
	}
	.day .img_box .img:last-child{
		margin-top: 10px;
	}
	.day .img_box .img:first-child{
		margin-top: 10px;
	}
	.mark_ttl{
		font-size: 2rem;
		margin-bottom: 20px;
	}
	.day .box{
		padding: 50px 30px;
		padding-bottom: 30px;
	}
	.day .ttl{
		display: block;
		font-size: 1.4rem;
	}
	.day .time{
		font-size: 1.6rem;
	}
	.day .flex_bet.ch .arrow{
		width: 30px;
	}
	.day .flex_bet.ch{
		margin-top: 80px;
	}
	.day .flex_bet.ch .arrow{
		top: -70px;
	}
	.day .flex_bet.ch .right{
		margin-top: 80px;
	}
	.day .box + .box{
		margin-top: 20px;
	}
	.schedule .kure{
		width: 140px;
	}
	.schedule .kure02{
		width: 140px;
	}
	.schedule .item .img img{
		height: 200px;
	}
	.schedule .item ul{
		padding-top: 10px;
	}
	.schedule .item .kisetu{
		font-size: 2.4rem;
	}
	.schedule .item .kisetu{
		height: 40px;
		width: 40px;
	}
	.schedule .item .ac_txt{
		font-size: 3rem;
		right: 30px;
	}
	.schedule .item_list{
		margin-bottom: 40px;
	}
	.column{
		padding-top: 50px;
		padding-left: 20px;
		padding-right: 20px;
	}
	.column .c_left img{
		height: 200px;
	}
	.column .ac_img{
		width: 50px;
		right: 0;
	}
	.column .ac_img02{
		width: 70px;
		left: 0;
	}
	.special ul{
		flex-direction: column;
	}
	.special li{
		width: 100%;
	}
	.special li .ttl{
		font-size: 1.6rem;
	}
	.special li .txt{
		font-size: 1.3rem;
	}
	.special li+li{
		margin-top: 10px;
	}
	.special .ac_img{
		top: -30px;
	}
	.special .item_box .item+.item{
		margin-top: 50px;
		padding-bottom: 40px;
	}
	.special .item .flex_center{
		flex-direction: column;
	}
	.special .item .time{
		padding-right: 0;
		border: 0px;
		margin-bottom: 10px;
	}
	.special .item .flex_center p:last-child{
		padding-left: 0;
	}
}



/* 入園のご案内 */


.guide_top{
	text-align: center;
}

.kubun{
	position: relative;
	overflow: hidden;
	background-color: #fff8ee;
}

.kubun::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #fff;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 260px;
}

.kubun .ac_bg{
	position: absolute;
	width: 100%;
	height: 100%;
	top: -260px;
	left: 0;
	opacity: 0.2;
}

.kubun .ac_bg img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.kubun .sub_ttl{
	text-align: left;
	margin-bottom: 0;
}

.kubun .left{
	position: relative;
	width: 300px;
	border-right: solid 2px #ccc;
}

.kubun .txt_box{
	position: relative;
	width: calc(100% - 300px);
	padding-left: 30px;
}

.kubun .btm_area{
	margin-top: 80px;
}

.kubun .inner{
	position: relative;
	z-index: 1;
}

.kubun .btm_area .item{
	background-color: #f9f68b;
	width: calc((100% - 30px) / 3);
	padding: 15px;
	border-radius: 10px;
}

.kubun .btm_area .item:nth-child(2){
	background-color: #c0e6ff;
}

.kubun .btm_area .item:nth-child(3){
	background-color: #b5f2bd;
}

.kubun .btm_area{
	gap: 15px;
}

.kubun .btm_area .item h3{
	font-size: 2.4rem;
	letter-spacing: 0.04em;
	margin-bottom: 10px;
	text-align: center;
	font-weight: 600;
}

.kubun .btm_area .item ul li{
	letter-spacing: 0.04em;
}

.kubun .img{
	position: relative;
	margin-top: 80px;
	z-index: 1;
}

.kubun .img::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: rgb(255, 255, 255,0.15);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.kubun .img .m_img img{
	border-radius: 40px;
	width: 100%;
	height: 380px;
	object-fit: cover;
}

.kubun .ac_img{
	position: absolute;
	bottom: -60px;
	left: -60px;
	width: 120px;
}

.kubun .star{
	position: absolute;
	top: -30px;
	right: -30px;
	width: 140px;
	z-index: 1;
}

section.p_bosyu{
	padding-top: 0;
}

section.p_bosyu .table_box{
	position: relative;
}

.p_bosyu .ac_img{
	position: absolute;
	top: -100px;
	right: 0;
	width: 110px;
}

.p_bosyu .ac_img02{
	position: absolute;
	bottom: -100px;
	left: -100px;
	width: 110px;
	z-index: 1;
}

.p_bosyu .ac_img03{
	position: absolute;
	bottom: -90px;
	right: -110px;
	width: 140px;
	animation: zigu 3s step-end infinite forwards;
}

.fee{
	position: relative;
	background-color: #fff8ee;
}


.fee .side_img{
	position: absolute;
	top: -90px;
	left: -50px;
	width: 20%;
}


.fee .side_img img{
	width: 100%;
	object-fit: cover;
	aspect-ratio: 3 / 2.5;
}





img.kaku{
	clip-path: polygon(50% 0%, 91% 15%, 100% 60%, 90% 94%, 17% 100%, 0% 60%, 7% 16%);
}

    

.table_box+.table_box{
	margin-top: 50px;
}

.table_box h3{
	font-size: 2rem;
	margin-bottom: 15px;
}

.table_box h3 span{
	display: inline-block;
	background-color: #f9f68b;
	padding: 3px 10px;
}

.table_box h3 span.ttl02{
	background-color: #c0e6ff;
}

.table_box h3 span.ttl03{
	background-color: #b5f2bd;
}
.table_box h3 span.ttl04{
	background-color: #ffe6b1;
}

.table_box h3 span+span{
	margin-left: 5px;
}

.apply{
	position: relative;
	background: url(../img/apply_bg.jpg);
	background-size: cover;
	background-position: center;
	padding: 100px 0;
}

.apply::before{
	content: "";
	display: inline-block;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgb(51, 51, 51,0.5);
	top: 0;
	left: 0;
}

.apply .sub_ttl{
	margin-bottom: 40px;
}

.apply .btn_area{
	margin-top: 30px;
}

.apply .btn_area .btn a{
	display: block;
}

.apply .m_btn{
	margin: 0;
}

.apply .m_btn+.m_btn{
	margin-left: 30px;
}

.apply .wrap{
	background-color: rgb(255, 255, 255,0.9);
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
	max-width: 800px;
	margin: 0 auto;
	padding: 50px;
	border-radius: 10px;
}


.faq{
	position: relative;
	background-color: #FFF8EE;
}

.faq .animal{
	position: absolute;
	animation: zigu 3s step-end infinite forwards;
	bottom: -100px;
	left: -80px;
	width: 150px;
	z-index: 1;
}

.faq .inner{
	position: relative;
}

.faq .ac_img{
	position: absolute;
	top: -50px;
	right: 0;
	width: 130px;
}

.faq_accordion .faq_item{
	position: relative;
}

.faq_accordion .faq_item::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #ccc;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
}

.faq_item .qq{
	position: relative;
	font-size: 1.8rem;
	border: solid 1px #ccc;
	border-bottom: 0px;
	padding: 30px;
	padding-left: 70px;
	background-color: #fff;
	cursor: pointer;
}

.faq_item .qq::before{
	content: "Q";
	display: inline-block;
	position: absolute;
	font-weight: bold;
	font-size: 2.6rem;
	top: 50%;
	left: 25px;
	transform: translateY(-50%);
	color: #f39700;
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-style: normal;
	
}

.faq_item .qq .add,.faq_item .qq .remove{
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(-50%);
	width: 40px;
}

.faq_item .qq .remove{
	display: none;
}

.faq_item .qq.close .add{
	display: none;
}

.faq_item .qq.close .remove{
	display: block;
}

.faq_item .qq::after{
	content: "";
	display: inline-block;
	position: absolute;
	border-bottom: solid 1px #ccc;
	width: calc(100% - 60px);
	left: 50%;
	bottom: 0px;
	transform: translateX(-50%);
}

.faq_item .text{
	display: none;
}

.faq_item .aa{
	position: relative;
	padding-left: 45px;
	padding: 30px;
	padding-left: 70px;
	border: solid 1px #ccc;
	border-top: 0px;
	background-color: #fff;
	font-size: 1.6rem;
}

.faq_item .aa::before{
	content: "A";
	display: inline-block;
	position: absolute;
	font-weight: bold;
	font-size: 2.6rem;
	top: 50%;
	left:27px;
	color: #f39700;
	transform: translateY(-50%);
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-style: normal;
}

.faq_item+.faq_item{
	margin-top: 20px;
}

.faq_accordion .faq_item .btn{
	position: relative;
	display: block;
	letter-spacing: 0.07em;

	border-bottom: dashed 3px #f39700;
	width: fit-content;
	padding-right: 25px;
	margin-top: 5px;
}

.faq_accordion .faq_item .btn:hover{
	opacity: 0.75;
}

.faq_accordion .faq_item .btn::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: #f39700;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	width: 17px;
	top: 48%;
	right: 0;
	transform: translateY(-50%);
}

.faq_accordion .faq_item .btn::after{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/arrow_w.png);
	aspect-ratio: 1 / 1;
	width: 12px;
	background-size: cover;
	background-position: center;
	top: 48%;
	right: 2px;
	transform: translateY(-50%);
}

@media (max-width: 1200px){
	.kubun .flex_bet:first-child{
		flex-direction: column;
	}
	.kubun .left{
		width: 100%;
		border: 0px;
	}
	.kubun .txt_box{
		width: 100%;
		padding-left: 0;
		margin-top: 30px;
	}
	.kubun .btm_area{
		margin-top: 40px;
	}
	.p_bosyu .ac_img03{
		right: 0;
	}
	.p_bosyu .ac_img02{
		bottom: auto;
		top: -150px;
		left: 50px;
	}
	.fee .side_img{
		width: 250px;
		left: -20px;
		top: -60px;
	}
	.kubun .sub_ttl{
		text-align: center;
	}
	
}

@media (max-width: 740px){
	.life_top .ill{
		width: 200px;
	}
	.kubun .btm_area{
		flex-direction: column;
	}
	.kubun .btm_area .item{
		width: 100%;
	}
	.kubun .btm_area .item h3{
		font-size: 2rem;
	}
	.kubun .star{
		width: 100px;
	}
	.kubun .ac_img{
		width: 50px;
		left: -10px;
	}
	.kubun .img .m_img img{
		height: 200px;
		border-radius: 10px;
	}
	.p_bosyu .ac_img02{
		width: 60px;
	}
	.p_bosyu .ac_img{
		width: 70px;
		top: -140px;
	}
	.p_bosyu .ac_img03{
		width: 80px;
		bottom: -50px;
	}
	.fee .side_img{
		width: 160px;
	}
	.table_box h3{
		font-size: 1.6rem;
		margin-bottom: 5px;
	}
	.table_box+.table_box{
		margin-top: 30px;
	}
	.apply .btn_area{
		flex-direction: column;
		align-items: center;
	}
	.apply .m_btn+.m_btn{
		margin-left: 0;
		margin-top: 10px;
	}
	.faq .ac_img{
		width: 80px;
	}
	.faq .animal{
		width: 80px;
		left: 0;
		bottom: -60px;
	}
	.faq .menu_list ul li{
		width: calc((100% - 6px) / 3);
	}
	.faq .menu_list ul li:nth-child(n+4){
		margin-top: 2px;
	}
	.faq .menu_list ul{
		flex-wrap: wrap;
	}
	.faq .menu_list ul li a{
		padding: 8px 0;
	}
	.faq .menu_list{
		top: 85px;
	}
	.faq .m_area h4{
		font-size: 1.8rem;
	}
	.faq_item .qq{
		padding-left: 30px;
		font-size: 1.3rem;
		padding-right: 55px;
		line-height: 1.6;
		padding-top: 20px;
		padding-bottom: 20px;
		padding-left: 40px;
	}
	.faq_item .qq::before{
		left: 10px;
		font-size: 1.8rem;
	}
	.faq .m_area .box{
		padding-bottom: 40px;
		margin-top: -40px;
		padding-top: 40px;
	}
	.faq_item .aa::before{
		font-size: 1.8rem;
		left: 10px;
	}
	.faq_item .aa{
		padding: 20px 30px;
	}
	.faq_item .qq .add, .faq_item .qq .remove{
		width: 22px;
	}
	.faq{
		padding-bottom: 40px;
	}
	.faq_item .aa{
		font-size: 1.3rem;
		padding-left: 40px;
	}
	.faq_item+.faq_item{
		margin-top: 15px;
	}
	
}





/* お問い合わせ */



.custom-shape-divider-top-1762842107 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1762842107 svg {
    position: relative;
    display: block;
    width: calc(118% + 1.3px);
    height: 140px;
}

.custom-shape-divider-top-1762842107 .shape-fill {
    fill: #FFF8EE;
}

section.co_top{
	background-color: #fff8ee;
	padding-bottom: 70px;
}

.co_top .item{
	position: relative;
	width: 48.5%;
	background-color: #fff;
	padding: 30px;
	padding-top: 35px;
	font-size: 1.5rem;
}

.co_top .item h3{
	position: relative;
	font-size: 2.6rem;
	letter-spacing: 0.03em;
	font-weight: 600;
	text-align: center;
	margin-bottom: 15px;
	color: #f39700;
	padding-bottom: 15px;
	line-height: 1;
}

.co_top .item h3::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #f39700;
	height: 2px;
	width: 100px;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.co_top .item .num{
	font-size: 3.8rem;
	display: block;
	letter-spacing: 0.07em;
	font-weight: bold;
	width: fit-content;
	margin: 0 auto 15px;
	line-height: 1;
}

.co_top .item .num .mini{
	font-size: 0.7em;
}

.co_top .item a:hover{
	opacity: 0.75;
}

.co_top .item li{
	position: relative;
	padding-left: 17px;
}

.co_top .item li::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/check.jpg);
	background-size: cover;
	background-position: center;
	aspect-ratio: 1 / 1;
	width: 14px;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.co_top .item li+li{
	margin-left: 10px;
}

.co_top .item p.center{
	font-size: 1.6rem;
	background-color: #f9f68b;
	width: fit-content;
	margin: 0 auto 7px;
	padding: 0 20px;
}

.co_top .item p.center span{
	letter-spacing: 0.1em;
	font-weight: 600;
	font-size: 1.1em;
}

.co_top .item .icon{
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	z-index: 1;
	background-color: #f39700;
	width: 50px;
	height: 50px;
	line-height: 50px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	color: #fff;
	text-align: center;
	font-size: 2rem;
}

.co_top .item .icon i{
	padding: 0;
}



.kasou .mail_sec{
	/* background-color: #fff8ee;
	padding-top: 0; */
	background-color: #ffe6b1;
	padding-top: 170px;
}

.mail_sec .inner{
	position: relative;
	background-color: #fff;
	padding: 60px;
}

.mail_sec .icon{
	position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: #f39700;
    width: 50px;
    height: 50px;
    line-height: 50px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    font-size: 2rem;
}

.mail_sec .ac_img{
	position: absolute;
	top: 0;
	right: 60px;
	width: 200px;
	z-index: 2;
}

.mail_sec .icon i{
	padding: 0;
}

input[type="text"]{
	height: 45px;
	padding: 10px;
	background: #eee;
	width: 100% !important;
}

input[type="email"]{
	height: 45px;
	padding: 10px;
	background: #eee;
	width: 100% !important;
}


input{
	appearance: auto;
}


input[type="checkbox"] + label{
	cursor: pointer;
}

input[type="checkbox"].toggle{
	display: none;
}

.toggle:checked + .Label::before{
	transform: rotate(-45deg);
	text-decoration: transparent;
}

.toggle:checked + .Label + .co_open{
	height: auto;
	transition: all .5s;
}

td .box.mini{
	width: 85%;
	max-width: 300px;
	height: 40px;
}

textarea{
	padding: 10px;
	font-size: 1.6rem;
	background: #eee;
	width: 100% !important;
	height: 120px !important;
}

.contact_table{
	width: 100%;
}

.contact_table .ib td div{
	display: inline;
}

.contact_table .ib td div+div{
	margin-left: 20px;
}

.contact_table th span,.form_attention span{
	padding: 2px 0;
	margin-right: 10px;
	font-size: 1.3rem;
}


.contact_table th span.ac,.form_attention span.ac{
	background-color: #f39700;
	padding: 4px 8px 3px;
	color: #fff;
}

.contact_table th span.ac.nini{
	border: solid 1px #f39700;
	background-color: #fff;
	color: #f39700;
}

.contact_table th{
	font-weight: 500;
	letter-spacing: 0.1em;
	padding: 20px 0;
	font-size: 1.5rem;
	display: table-cell;
	vertical-align: middle;
	width: 30%;
	border-bottom: dotted 1px #ccc;
}

.contact_table td{
	padding: 20px 0;
	width: 70%;
	border-bottom: dotted 1px #ccc;
}


button[type="submit"]{
	font-size: 1.8rem;
	padding: 6px 0;
}

.form_btn button{
	cursor: pointer;
	display: block;
	margin: 0 auto 5px;
	padding: 10px 0 7px;
	letter-spacing: 0.05em;
	text-align: center;
	width: 230px;
	transition: all 0.5s;
	background: #f39700;
	border: solid 2px #f39700;
	color: #fff;
	font-size: 1.5rem;
	margin-top: 40px;
	font-weight: bold;
}

.form_btn button:hover{
	opacity: 0.7;
}

.form_attention{
	margin-top: 50px;
	font-size: 1.4rem;
}


.form_attention p+p{
	margin-top: 10px;
}

.form_attention p a:hover{
	opacity: 0.75;
}


.postal_btn{
	background-color: #f39700;
	color: #fff;
	font-weight: 600;
	height: 40px;
	margin-left: 10px;
	padding: 0 30px;
	transition: all .3s;
	text-align: center;
}

.postal_btn:hover{
	opacity: 0.7;
}

.contact_table .flex{
	margin-bottom: 10px;
}

.contact_table .mark{
	line-height: 40px;
	padding: 0 5px;
	padding-right: 10px;
}




.form_accordion{
	text-align: left;
	margin-top: 40px;
}


.toggle:checked + .Label::before{
	transform: rotate(-45deg);
	text-decoration: transparent;
}

.toggle:checked + .Label + .co_open{
	height: auto;
	transition: all .5s;
}

.form_accordion p{
	font-size: 1.4rem;
	text-align: left;
	letter-spacing: 2px;
	padding: 1% 0;
	padding-left: 1%;
	line-height: 200%;
}

.form_accordion h4{
	margin-top: 20px;
	font-size: 1.6rem;
	letter-spacing: 0.05em;
	position: relative;
	padding-left: 26px;
	padding-top: 5px;
	padding-bottom: 5px;
	border-bottom: solid 1px #777;
}

.form_accordion h4::before{
	content: "";
	position: absolute;
	display: inline-block;
	width: 16px;
	height: 16px;
	background: url(../img/check.jpg);
	background-size: cover;
	background-position: center;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.form_attention p+p{
	margin-top: 10px;
}

input[type="checkbox"] + label{
	cursor: pointer;
}

.Label{
	font-size: 1.4rem;
	letter-spacing: 2px;
	padding: 0.8% 1%;
	display: block;
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.1em;
	background-color: #fff;
	border-radius: 30px;
	border: solid 1px #222;
}

.Label::before{
	content: "";
	width: 8px;
	height: 8px;
	border-top: 2.5px solid #000;
	border-right: 2.5px solid #000;
	position: absolute;
	-webkit-transform: rotate(45deg);
	transform: rotate(135deg);
	text-decoration: transparent;
	top: calc(50% - 6px);
	right: 20px;
	margin-bottom: 1em;
}

.Label, .co_open{
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.5s;
}

input[type="checkbox"].toggle{
	display: none;
}

.co_open{
	height: 0;
	overflow: hidden;
}


@media (max-width: 1200px){
	.co_top .flex_bet{
		flex-direction: column;
	}
	.co_top .item{
		width: 80%;
		margin: 0 auto;
	}
	.co_top .item+.item{
		margin-top: 30px;
	}
	.mail_sec .ac_img{
		width: 160px;
	}
	.contact_table th{
		display: block;
		width: 100%;
		padding-bottom: 0;
		border-bottom: 0px;
	}
	.contact_table td{
		display: block;
		width: 100%;
	}
}

@media (max-width: 740px){
	.co_top .item{
		width: 100%;
	}
	.co_top .item h3{
		font-size: 2.2rem;
	}
	.co_top .item .num{
		font-size: 3.2rem;
	}
	.co_top .item p.center{
		font-size: 1.4rem;
	}
	.custom-shape-divider-top-1762842107 svg{
		height: 70px;
	}
	.mail_sec .ac_img{
		width: 110px;
		top: -20px;
	}
	.kasou .mail_sec{
		padding-top: 80px;
	}
	.mail_sec .inner{
		padding: 40px 20px;
	}
}




/* お知らせ一覧 */

.k_blog main{
	overflow: visible;
}


.blog_list{
	overflow: visible;
	padding-top: 0;
}

.blog_list .inner{
	width: 94%;
	max-width: 1400px;
	margin: 0 auto;
}

.blog_list .side_list{
	position: sticky;
	width: 300px;
	top: 200px;
	height: fit-content;
}

.blog_list .blog_item_list{
	width: calc(94% - 300px);
}

.blog_list .main_list{
	flex-wrap: wrap;
	gap: 20px;
}

.blog_list .main_list li{
	width: 100%;
	background-color: #fff;
	
}

.blog_list .main_list li a{
	position: relative;
	padding-top: 30px;
	padding-bottom: 30px;
	padding-left: 10px;
	padding-right: 10px;
	border-bottom: solid 1px #ccc;
}

.blog_list .main_list li a::before{
	content: "";
	display: inline-block;
	position: absolute;
	border: solid 1px #f39700;
	aspect-ratio: 3 / 2;
	width: 30px;
	bottom: 10px;
	right: 10px;
	transition:  all.2s;
}

.blog_list .main_list li a .arrow{
	display: inline-block;
	position: absolute;
	background: url(../img/arrow.png);
	aspect-ratio: 1 / 1;
	width: 20px;
	bottom: 10px;
	right: 10px;
	background-size: cover;
	background-position: center;
	z-index: 2;
	transform: translateX(-25%);
	transition:  all.2s;
}
.blog_list .main_list li a .arrow02{
	display: inline-block;
	position: absolute;
	background: url(../img/arrow_w.png);
	aspect-ratio: 1 / 1;
	width: 20px;
	bottom: 10px;
	right: 10px;
	background-size: cover;
	background-position: center;
	z-index: 2;
	transform: translateX(-25%);
	opacity: 0;
	transition:  all.2s;
}

.blog_list .up_ymd{
	display: inline-block;
	margin-bottom: 5px;
	padding: 0 8px;
	color: #f39700;
}

.new_mark{
	display: inline-block;
	background-color: #f39700;
	color: #fff;
	font-size: 1.4rem;
	margin-left: 5px;
	font-weight: 600;
	line-height: 1;
	padding: 4px 7px;
}

.blog_list .title{
	display: block;
	color: #333;
	padding: 0 8px;
}

.blog_list .main_list li a .left{
	width: 170px;
}
.blog_list .main_list li a .right{
	width: calc(92% - 170px);
	padding-top: 20px;
}

.blog_list .main_list li a img{
	display: inline;
	aspect-ratio: 1 / 1;
	width: 100%;
	object-fit: cover;
}


.blog_list .side_list h3{
	position: relative;
	letter-spacing: 0.03em;
	margin-bottom: 50px;
	line-height: 1.2;
	padding-left: 16px;
	font-size: 2rem;
}

.blog_list .side_list h3::before{
	content: "";
	display: inline-block;
	position: absolute;
	height: 90%;
	left: 0;
	width: 3px;
	background-color: #f39700;
	top: 54%;
	transform: translateY(-50%);
}

.blog_list .side_list h3::first-letter{
	color: #f39700;
}

.blog_list .side_list li{
	letter-spacing: 0.05em;
	font-weight: 600;
}

.blog_list .side_list li a{
	position: relative;
	display: block;
	width: fit-content;
	padding: 10px 30px 10px 30px;
	border-top: solid 1px #ccc;
}
.blog_list .side_list li a::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #f39700;
	aspect-ratio: 1 / 1;
	width: 7px;
	top: 52%;
	transform: translateY(-50%);
	left: 10px;
}
.blog_list .side_list li a:hover{
	color: #f39700;
}

.blog_list .side_list li+li{
	margin-top: 10px;
}

.blog_list .main_list li a:hover::before{
	background-color: #f39700;
}

.blog_list .main_list li a:hover .arrow{
	opacity: 0;
}
.blog_list .main_list li a:hover .arrow02{
	opacity: 1;
}

.pages{
	display: flex;
	justify-content: space-around;
	margin-top: 60px;
}

.pages a{
	display: block;
	border: solid 1px #111;
	padding: 15px 0;
	font-size: 1.45rem;
	padding-left: 40px;
	padding-right: 40px;
	letter-spacing: 0.03em;
}

.pages .page_next{
	text-align: left;
}
.pages .page_prev{
	text-align: right;
}

.pages div{
	width: 45%;
}

.pages a:hover{
	background-color: #F9BB03;
}


.blog_list .blog_content{
	padding: 0 2%;
}

.blog_list .blog_content .ttl{
	letter-spacing: 0.03em;
	margin-bottom: 20px;
	font-size: 2.8rem;
}

.blog_list .blog_content .ttl::first-letter{
	color: #f39700;
}

.blog_list .blog_content .text{
	padding-top: 20px;
	margin-top: 5px;
	border-top: solid 1px #ccc;
}

.blog_list .blog_content .up_ymd{
	padding-left: 0;
}

.blog_list .blog_item_list.newspt .main_list li a .right{
	width: 100%;
	padding-top: 0;
}

.bl_ttl{
	position: relative;
	text-align: center;
	letter-spacing: 0.05em;
	width: fit-content;
	margin: 0 auto 40px;
	padding: 0 20px 15px;
}



.bl_ttl::before{
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 100%;
	height: 2px;
	background-color: #aaa;
	transform: translateX(-50%);
	z-index: 1;
}


.bl_ttl::after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 30px;
	height: 2px;
	background-color: #F9BB03;
	z-index: 2;
}


.blog_list .item_box+.item_box{
	margin-top: 150px;
}



@media (max-width: 1200px){
	.blog_list .flex_bet{
		flex-direction: column-reverse;
	}
	.blog_list .blog_item_list{
		width: 100%;
	}
	.blog_list .side_list{
		margin-top: 60px;
		width: 100%;
	}
	.blog_list .side_list ul{
		display: flex;
	}
	.blog_list .side_list li+li{
		margin-top: 0;
		margin-left: 10px;
	}
	.blog_list .side_list li a{
		border: solid 1px #ccc;
		padding: 10px 10px 10px 35px;
	}
	.blog_list .side_list h3{
		margin-bottom: 30px;
	}
	.blog_list .side_list li a::before{
		left: 15px;
	}
	.blog_list .side_list li{
		letter-spacing: normal;
		font-size: 1.45rem;
	}
	/* .blog_list .main_list li{
		width: calc((100% - 20px) / 2);
	} */
	.blog_list .main_list{
		gap: 20px;
	}
	
}

@media (max-width: 650px){
	.blog_list .side_list ul{
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.blog_list .side_list li+li+li{
		margin-left: 0;
		margin-top: 10px;
	}
	.blog_list .blog_content .ttl{
		font-size: 2.2rem;
		margin-bottom: 10px;
	}
	.blog_list .blog_content .up_ymd{
		font-size: 1.2rem;
	}
	.blog_list .blog_content .text{
		font-size: 1.4rem;
	}
	.pages{
		margin-top: 40px;
		flex-direction: column;
	}
	.pages a{
		padding: 7px 10px;
	}
	.pages div{
		width: 100%;
	}
	.pages .page_next{
		margin-bottom: 10px;
	}
	.blog_list .side_list h3{
		font-size: 1.8rem;
	}
	.blog_list .side_list li a{
		font-size: 1.2rem;
		letter-spacing: 0.03em;
	}
	.blog_list .side_list li+li{
		margin-left: 0;
	}
	.blog_list .main_list li{
		width: 100%;
	}
	.blog_list .side_list li{
		width: 48%;
	}
	.blog_list .side_list li a{
		display: block;
		width: 100%;
	}
	 .main_list li a .right{
		width: 100%;
	}
	.blog_list .main_list li a .left{
		margin: 0 auto;
	}
}




.main_blog_list .blog_item_list.blogpt .main_list li{
	width: calc((100% - 60px) / 4);
}

.blog_item_list.blogpt .main_list li{
	width: calc((100% - 40px) / 3);
}

.blog_item_list.blogpt li a .left{
	width: 100%;
}

.blog_item_list.blogpt li a .right{
	width: 100%;
	padding-top: 10px;
}

.blog_item_list.blogpt li a img{
	aspect-ratio: 3 / 2;
	width: 100%;
	object-fit: cover;
}

.blog_item_list.blogpt li a{
	display: block;
	padding: 10px;
	padding-bottom: 30px;
}

@media (max-width: 1400px){
	.blog_item_list.blogpt .main_list li{
		width: calc((100% - 20px) / 2);
	}
	.blog_item_list.blogpt .main_list{
		gap: 20px;
	}
}



@media (max-width: 1200px){
	.blog_list .blog_item_list.blogpt .flex_bet.ch{
		flex-direction: row;
	}

}



@media (max-width: 650px){
	.blog_list .blog_item_list.blogpt .flex_bet.ch{
		flex-direction: column;
	}
	.blog_list .blog_item_list.blogpt .main_list li{
		width: 100%;
	}
}




.main_blog_list .blog_list .blog_item_list{
	max-width: 1200px;
	margin: 0 auto;
}

.main_blog_list .blog_list .pages{
	max-width: 1200px;
	margin: 80px auto 0;
}

.main_blog_list .blog_item_list{
	width: 100%;
}

.list_btn {
	width: 300px;
	margin: 60px auto 0;
}

.list_btn a{
	display: block;
	background-color: #F9BB03;
	padding: 12px 0;
	text-align: center;
	border: solid 1px #F9BB03;
}

.list_btn a:hover{
	background-color: rgb(80, 175, 97,0);
	color: #F9BB03;
}

@media (max-width: 1400px){
	.blog_main .main_blog_list .main_list li{
		width: calc((100% - 40px) / 3);
	}
	.blog_main .main_blog_list .main_list{
		gap: 20px;
	}
}


@media (max-width: 1200px){
	.blog_main .main_blog_list .main_list li{
		width: calc((100% - 20px) / 2);
	}
	.blog_main .main_blog_list .main_list{
		gap: 20px;
	}
}


@media (max-width: 650px){
	.bl_ttl{
		margin-bottom: 30px;
		font-size: 2.6rem;
	}
	.blog_main .blog_list .item_box+.item_box{
		margin-top: 80px;
	}
	.list_btn{
		margin-top: 30px;
	}
}









/*thanksページ*/


section.thanks{
	padding-bottom: 150px;
}

.kasou.thanks .kasou_top{
	margin-bottom: 0;
}

.thanks_ttl{
	text-align: center;
	line-height: 1.7;
	margin-bottom: 30px;
}

.thanks_ttl .ja{
	font-size: 3.4rem;
	display: block;
	margin-top: 10px;
}

.thanks_ttl .en{
	display: inline-block;
	font-size: 2rem;
	font-weight: bold;
	letter-spacing: 1.5px;
	color: #f39700;
	line-height: 1;
}

.thanks_txt p{
	text-align: center;
}

.thanks_attention{
	font-size: 1.6rem;
	margin-top: 40px;
}

.sbtn{
    margin-top: 40px;
}

.sbtn a {
    font-size: 1.6rem;
    display: block;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border: solid 2px #f39700;
    color: #f39700;
    letter-spacing: 2px;
    padding: 15px 0;
    text-align: center;
}

.sbtn a:hover{
    background-color: #f39700;
	color: #fff;
}

.thanks .custom-shape-divider-bottom-1763002765 .shape-fill{
	fill: #fff;
}

@media (max-width: 650px){
	.thanks_txt p{
		text-align: left;
	}
	.thanks_attention{
		font-size: 1.4rem;
	}
	.thanks_ttl .ja{
		font-size: 2.6rem;
		margin-top: 5px;
	}
}
