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

body{
	color: #000;
	background-color: #f6e9c9;
	-webkit-font-smoothing: antialiased;/*アンチエイリアスを滑らかに*/
	-moz-osx-font-smoothing: grayscale;
	line-height: 2;
	font-size: 1.55rem;
	font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
}

.en{

}

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

a{
	text-decoration: none;
	color: #000;
	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;
}

/*フェードイン*/
.flowup{
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 1.6s, transform 1.5s;
	transition-delay: 0.4s;
}
.flowup.inview{
	opacity: 1;
	transform: translateY(0);
}


.imgup {
	position: relative;
	overflow: hidden;
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    transition: .5s;
    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);
}




.scale-big{
	transform: scale(0.8);
	opacity: 0;
	transition: transform .4s ease-out, opacity .2s;
}

.scale-big.inview{
	transform: scale(1);
	opacity: 1;
}




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


.br_650.marker{
	background: none;
}

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

.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: 500;
}

main{
	position: relative;
	z-index: 5;
	width: 100%;
}

.content_wrapper{
	width: calc(100% - 260px);
	margin: 0 0 0 auto;
}

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

.sm{
	font-size: 1.3rem;
}

@media (max-width: 1200px){
	.content_wrapper{
		width: 100%;
		margin: auto;
	}
}


.w100{
	width: 100%;
}

/*フィルター*/

.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;
}

section{
	padding: 100px 0;
}

@media (max-width: 1200px){
	.br_1200{
		display: block;
	}
}

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




/* 文字間 */

.space{
	letter-spacing: 0.05em;
}

.space2{
	letter-spacing: 0.1em;
}

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




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


}

@media (max-width: 650px){
	.none_650{
		display: none;
	}
	body{
		font-size: 1.45rem;
	}
	
}


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



@keyframes rotation{
	0% {
		transform: rotate(-10deg) translateY(-50%);
	}
	
	50% {
		transform: rotate(10deg) translateY(-50%);
	}

	100%{
		transform: rotate(-10deg) translateY(-50%);
	}
}

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

body p{
	letter-spacing: 0.03em;
}

i{
	padding-right: 0.4em;
}



/* btn */


.e_btn {
	width: 300px;
}

.e_btn a{
	position: relative;
	display: block;
	padding: 16px 0;
	padding-left: 28px;
	border-top: solid 1px #aaa;
	border-bottom: solid 1px #aaa;
	letter-spacing: 0.05em;
	transition: all .5s;
	color: #483123;
	overflow: hidden;
}

.e_btn a::before{
	content: "";
	display: inline-block;
	position: absolute;
	aspect-ratio: 1 / 1;
	background-color: #0C964A;
	top: 50%;
	left: 10px;
	width: 8px;
	transform: translateY(-50%);
	border-radius: 50%;
	opacity: 1;
	transition: all .2s;
}

.e_btn a span.arrow{
	position: absolute;
	background: url(../img/btn_arrow.png);
	background-size: cover;
	background-position: center;
	height: 8px;
	aspect-ratio: 100 / 28;
	top: 46%;
	transform: translateY(-50%);
	right: -30px;
	transition: all .4s;
}

.e_btn a:hover::before{
	opacity: 0;
}

.e_btn a:hover{
	padding-left: 10px;
	opacity: 0.8;
}

.e_btn a:hover span.arrow{
	right: 10px;
}

.e_btn + .e_btn a{
	border-top: 0;
}


/* sub_ttl */

.sub_ttl{
	position: relative;
	font-size: 3.8rem;
	line-height: 1;
	margin-bottom: 40px;
	width: fit-content;
}

.sub_ttl .ac_img{
	position: absolute;
	width: 80px;
	top: -50px;
	right: -30px;
	z-index: -1;
	transform: translateX(100%);
}



/* header */

header{
	position: relative;
	z-index: 99;
	height: 100px;
}

.hd_inner{
	padding-left: 20px;
}

h1 img{
	height: 75px;
}

.color_box{
	background-color: #fff;
}


header .top_area .item_list{
	flex-wrap: wrap;
	width: 442px;
	gap: 2px;
}

header .top_area .item{
	width: 220px;
	height: 49px;
	display: table;
}

header .top_area .item a{
	display: table-cell;
	width: 100%;
	height: 100%;
	background-color: #f6e9c9;
	text-align: center;
	vertical-align: middle;
}

header .top_area .item a:hover{
	opacity: 0.7;
}

header .tel_box{
	text-align: center;
	margin-right: 2px;
	background-color: #fff;
}

header .tel_box a{
	display: block;
	padding: 0 20px;
}
header .tel_box p:nth-child(2){
	font-size: 2.4rem;
	line-height: 1;
	margin-bottom: 5px;
}

/* header .tel_box p:nth-child(2) i{
	background-color: #fff;
} */

header .tel_box a i{
	font-size: 2rem;
}

header .tel_box a:hover{
	opacity: 0.7;
}

header .tel_box p.ch{
	letter-spacing: 0.1em;
}


.sub_header{
	position: fixed;
	top: 0;
	left: 0;
	background-color: #fff;
	transform: translateY(-100%);
	z-index: 99;
	transition: all .3s;
	width: 100vw;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05); 
}

.sub_inner{
	padding-right: 40px;
}

.sub_header.change_header{
	transform: translateY(0);
}

.sub_header .sub_logo{
	margin-left: 20px;
	padding: 15px 0;
}

.sub_header .sub_logo img{
	height: 59px;
}

.sub_header .main_nav a{
	display: block;
	width: 100%;
	height: 100%;
	padding: 0px 20px;
	line-height: 89px;
	border-bottom: solid 2px rgb(12, 150, 74,0);
	font-size: 1.6rem;
}

.sub_header .main_nav ul{
	height: 100%;
}

.sub_header .main_nav a:hover{
	border-bottom: solid 2px #0C964A;
	color: #0C964A;
}



/*スライダー*/

.top_slider{
	position: relative;
    z-index: 5;
	top: 0;
	width: 100%;
	height: calc(95vh - 100px);
	min-height: 400px;
}

/* .color_box::before{
	content: "";
	display: inline-block;
	position: absolute;
	width: 70%;
	background-color: #f6e9c9;
	height: 100%;
	top: 0;
	right: 0;
} */




.top_slider .slider{
	position: relative;
	width: 100%;
	z-index: 2;
	height: 100%;
}
.top_slider .slider li{
	width: 100%;
	height: 100%;
	min-height: 400px;
	background-size: cover;
	margin: 0;
}
.top_slider .slider li.top01{
	background-image: url(../img/top01.jpg);
    background-position: center;
	background-size: cover;
}
.top_slider .slider li.top02{
	background-image: url(../img/top2.jpg);
    background-position: center;
	background-size: cover;
}
.top_slider .slider li.top03{
	background-image: url(../img/top03.jpg);
    background-position: center;
	background-size: cover;
}

.top_slider .slider li.top01{
	background-image: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),url(../img/top01.jpg);
	background-position: center;
}
.top_slider .slider li.top02{
	background-image: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),url(../img/top2.jpg);
	background-position: center;
}
.top_slider .slider li.top03{
	background-image: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),url(../img/top03.jpg);
	background-position: center;
}


/*キャッチ*/
.top_slider .catch{
	position: absolute;
	left: 50%;
	top: 50%;
	object-fit: cover;
	pointer-events: none;
	width: 90%;
	max-width: 850px;
	animation: apper 2.5s ease-in-out;
	z-index: 99;
	transform: translate(-50%,-50%);
}


@media (max-width: 1400px){
	header .right{
		display: none;
	}
	.sub_header{
		display: none;
	}
	header{
		position: fixed;
		width: 100%;
		top: 0;
		background-color: #fff;
	}
	.top_slider{
		margin-top: 100px;
	}
}

@media (max-width: 1200px){
	.top_slider{
		height: calc(70vh - 100px);
	}
}

@media (max-width: 650px){
	header{
		height: 74px;
	}
	h1 img{
		height: 50px;
	}
	.hd_inner{
		padding-left: 10px;
	}
	.top_slider{
		margin-top: 74px;
	}
}



/* news */

.news{
	position: relative;
	overflow: visible;
	padding: 40px 0;
	background-color: #f5f5f5;
}

/* .news::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: rgb(80, 170, 70,0.5);
	aspect-ratio: 1 / 1;
	width: 600px;
	transform: rotate(45deg);
	bottom: 0;
	left: 0;
	z-index: 0;
} */


.news h2{
	font-size: 4rem;
	line-height: 1.2;
	text-align: center;
}

.news h2 span{
	font-size: 2rem;
}



.news_list{
	position: relative;
	padding: 0 30px;
	width: 70%;

	padding: 30px;
	border-radius: 10px;
	
}

.news_list a{
	display: block;
}

.news_list li{
	padding: 13px 0;
	padding-left: 10px;
	padding-right: 10px;
	border-bottom: solid 1px #ccc;
}

.news_list a:first-child li{
	border-top: solid 1px #ccc;
}

.news_list a:last-child{
	border-bottom: 0px;
	border-top: 0px;
}



.news_list .up_ymd{
	display: block;
	background-color: #0C964A;
	color: #fff;
	width: fit-content;
	padding: 5px 7px;
	margin-bottom: 5px;
	border-radius: 20px;
	line-height: 1;
	margin-bottom: 0px;
	letter-spacing: 0.07em;
	font-weight: 500;
	font-size: 1.4rem;
}

.news_list .title{
	padding-left: 10px;
	font-weight: 500;
}

.news_list a:hover{
	background-color: #f6e9c9;
}

.news .left{
	position: relative;
	justify-content: center;
	width: 30%;
}

.news .left .ill{
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 90%;
}



@media (max-width: 1200px){
	.news .flex_bet{
		flex-direction: column;
	}
	.news_list{
		width: 100%;
	}
	.news .left .ill{
		width: 240px;
		right: 0;
		left: auto;
	}
	.news_list{
		padding: 30px 40px;
	}
	.news_list li{
		padding: 20px 10px;
	}
	.news h2{
		text-align: center;
		margin-bottom: 0;
	}
	.news .left{
		width: 100%;
	}
}

@media (max-width: 650px){
	.news .left .ill{
		width: 50%;
		max-width: 200px;
	}
	.news_list .title{
		font-size: 1.55rem;
	}
	.news_list .up_ymd{
		font-size: 1.2rem;
		margin-bottom: 5px;
	}
	.news_list{
		padding: 20px;
	}
	.news_list li{
		padding: 14px 10px;
	}
	.news h2{
		font-size: 2.6rem;
	}
	.news h2 span{
		font-size: 1.45rem;
	}

}





/* about us */

.aboutus{
	position: relative;
	background-color: #fff;
	padding: 0;
}

.aboutus::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: #79cf9f;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	width: 60px;
	top: 50%;
	left: 0;
	transform: translate(-50%,-50%);
}

.aboutus .ac_txt{
	position: absolute;
	top: 50%;
	left: 0;
	font-size: 1.6rem;
	transform: translateY(-50%) rotate(90deg);
	letter-spacing: 0.05em;
}



.aboutus .img img{
	width: 100%;
	aspect-ratio: 2 / 1;
	object-fit: cover;
	min-height: 700px;
	max-height: 800px;
}

.aboutus .txt_box{
	position: absolute;
	padding-left: 40px;
	top: 50%;
	left: 25%;
	max-width: 540px;
	transform: translate(-50%,-50%);
}

.aboutus .txt{
	margin-bottom: 30px;
}

.aboutus .txt{
	font-size: 1.6rem;
}




.flow_txt{
	border-top: solid 2px #79cf9f;
	border-bottom: solid 2px #79cf9f;
	overflow: hidden;
}

.flow_txt p{
	font-size: 6.2rem;
	color: #79cf9f;
	font-weight: 500;
	line-height: 1.4;
	opacity: 0.6;
	text-align: center;
	white-space: nowrap;
} 

@media (max-width: 1200px){
	.aboutus::before{
		width: 30px;
	}
	.aboutus .ac_txt{
		font-size: 1.2rem;
		left: -20px;
	}
	.aboutus .txt_box{
		transform: translate(0,-50%);
		left: 50px;
		max-width: none;
		padding-left: 0;
		width: 48%;
	}
	.flow_txt p{
		font-size: 4.8rem;
	}
}


@media (max-width: 650px){
	.aboutus .txt_box{
		position: static;
		width: 85%;
		transform: translate(0,0);
		margin: 0 auto;
		padding: 40px 0;
		padding-left: 10px;
	}
	.aboutus .img img{
		min-height: 300px;
		object-position: right;
	}
	.sub_ttl{
		font-size: 2.8rem;
		margin-bottom: 25px;
	}
	.aboutus .txt{
		font-size: 1.45rem;
		margin-bottom: 15px;
	}
	.e_btn a{
		font-size: 1.45rem;
	}
	.sub_ttl .ac_img{
		width: 50px;
		top: -15px;
		right: -20px;
	}
	.flow_txt p{
		font-size: 3rem;
	}
}




/* suiso */

.suiso{
	padding-top: 0;
}

.suiso .top_area{
	position: relative;
	max-width: 1000px;
	margin: 0 auto 40px;
}

.suiso .top_area .ac_img{
	width: 140px;
}

.suiso h2{
	position: relative;
	font-size: 3.2rem;
	width: fit-content;
	line-height: 1;
	background-color: #fff;
	border-radius: 20px;
	padding: 30px;
	height: fit-content;
	margin-right: 40px;
}

.suiso h2::before{
	content: "";
	position: absolute;
	display: inline-block;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-bottom: calc(tan(60deg) * 20px) solid #ffffff;
	top: 50%;
	right: -20px;
	transform: translateY(-50%) rotate(-31deg);
}

.suiso .content_box{
	position: relative;
	background-color: #f6e9c9;
	padding-top: 80px;
}

/* .suiso .content_box::before{
	content: "";
	display: inline-block;
	
} */

.suiso .content_box .in{
	max-width: 960px;
	margin: 0 auto;
}


.suiso .content_box li{
	position: relative;
	padding: 10px 0;
	line-height: 1.2;
	padding-left: 24px;
}

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


.suiso .content_box ul.flex{
	flex-wrap: wrap;
}

.suiso .content_box ul.flex li{
	width: 50%;
}

.suiso .content_box h3{
	position: relative;
	margin-bottom: 20px;
	font-size: 2.6rem;
	line-height: 1;
	padding-left: 25px;
}

.suiso .content_box h3::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #0C964A;
	height: 3px;
	width: 20px;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.suiso .content_box .item{
	position: relative;
	background-color: #fff;
	width: 60%;
	margin: 0 auto;
	padding: 30px;
	font-size: 1.8rem;
	border-radius: 10px;
}

.suiso .ill01{
	position: absolute;
	width:100px;
	bottom: 20px;
	right: 30px;
}

.suiso .ill01 img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.suiso .ill02{
	position: absolute;
	width: 120px;
	bottom: 20px;
	right: 30px;
}

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

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

.suiso .inner{
	position: relative;
	margin-bottom: 40px;
}


.suiso .btm_area{
	margin-top: 40px;
	padding-bottom: 40px;
	padding-bottom: 80px;
}

.suiso .btm_area h4{
	position: relative;
	font-size: 4rem;
	width: fit-content;
	margin: 0 auto 20px;
	padding-left: 40px;
	font-weight: 500;
}

.suiso .btm_area h4 span{
	position: absolute;
	width: 70px;
	left: -40px;
	top: 50%;
	transform: translateY(-50%);
}

.suiso .btm_area .txt_box{
	position: relative;
	text-align: left;
	font-size: 2.4rem;
	letter-spacing: 0.05em;
	line-height: 1.7;
	
}

.suiso .btm_area .img{
	width: 110px;
	margin-right: 80px;
	padding-top: 10px;
}

.suiso .btm_area .img img{
	width: 100%;
	object-fit: cover;
}

.suiso .btm_area .txt_box .marker{
	padding: 0 5px;
	margin: 0 5px;
}

.suiso .btm_area .txt_box .big{
	font-size: 4rem;
	font-weight: 500;
	color: #000;
}

.suiso .btm_area p.center{
	text-align: center;
}

@media (max-width: 1200px){
	.suiso .flex_bet.item_box{
		flex-direction: column;
	}
	.suiso .content_box .item{
		width: 80%;
		margin: 0 auto;
	}
	.suiso .content_box .item+.item{
		margin-top: 20px;
	}
	.suiso .btm_area .img{
		position: absolute;
		bottom: -60px;
		right: 20px;
		margin: 0;
		padding: 0;
	}
	.suiso .btm_area h4{
		margin-bottom: 0;
	}
	.suiso .btm_area{
		margin-top: 20px;
	}
	.suiso .top_area{
		max-width: 700px;
	}
}

@media (max-width: 650px){

	.suiso .content_box{
		padding-top: 40px;
	}
	.suiso .sub img{
		width: 100%;
		height: auto;
	}
	.suiso .inner{
		width: 100%;
	}
	.suiso .content_box h3{
		font-size: 2rem;
	}
	.suiso .content_box .item{
		width: 90%;
	}
	.suiso .content_box .item{
		font-size: 1.45rem;
	}
	.suiso .ill01{
		width: 70px;
		right: 15px;
	}
	.suiso .ill02{
		width: 80px;
		right: 15px;
	}
	.suiso .content_box h3::before{
		width: 15px;
	}
	.suiso .btm_area h4{
		font-size: 2.2rem;
	}
	.suiso .btm_area h4 span{
		width: 45px;
		left: -8px;
	}
	.suiso .btm_area .txt_box{
		font-size: 1.6rem;
		width: 85%;
		margin: 0 auto;
	}
	.suiso .btm_area .txt_box .big{
		font-size: 2.6rem;
	}
	.suiso .btm_area .img{
		width: 60px;
	}
	.suiso .btm_area .img{
		bottom: -160px;
	}
	.suiso .top_area{
		flex-direction: column;
	}
	.suiso h2{
		font-size: 2.4rem;
		padding: 10px 20px;
		margin-right: 0;
	}
	.suiso .top_area .ac_img{
		width: 100px;
		margin-top: 40px;
	}
	.suiso h2::before{
		transform: rotate(60deg) translate(-50%,0);
		bottom: -20px;
		top: auto;
		right: auto;
		left: 50%;
		border-left: 12px solid transparent;
		border-right: 12px solid transparent;
		border-bottom: calc(tan(60deg)* 12px) solid #ffffff;
	}
	
}



/* feature */

.feature{
	padding-top: 0;
	padding-bottom: 0;
}

.feature .top_area{
	position: relative;
	background: url(../img/feature_bg.jpg);
	background-size: cover;
	background-position: center;
}

.feature .top_area .ac_img{
	position: absolute;
	width: 200px;
	bottom: 0;
	left: 10%;
}

.feature .top_area .ac_img2{
	position: absolute;
	width: 220px;
	top: 0;
	right: 10%;
}

.feature h2{
	text-align: center;
	font-size: 3.8rem;
	padding-top: 80px;
	letter-spacing: 0.08em;
	margin-bottom: 30px;
}

.feature .e_btn{
	margin: 0 auto;
	padding-bottom: 80px;
}

.feature .item .img{
	position: relative;
}

.feature .item .img img{
	width: 100%;
	aspect-ratio: 4 / 1.3;
	object-fit: cover;
	object-position: top;
	min-height: 500px;
}

.feature .item{
	position: relative;
}

.feature .txt_box{
	position: absolute;
	max-width: 500px;
	top: 50%;
	left: 25%;
	transform: translate(-50%,-50%);
	padding-top: 40px;
	padding-left: 40px;
	padding-bottom: 20px;
	border-top: solid 1px #ccc;
	border-left: solid 1px #ccc;
}

.feature .item:nth-child(2 of .item) .txt_box{
	left: auto;
	right: 25%;
	transform: translate(50%,-50%);
}

.feature h3{
	position: relative;
	font-size: 3rem;
	margin-bottom: 10px;
}

.feature h3 .ac_img{
	position: absolute;
	aspect-ratio: 1 / 1;
	width: 90px;
	top: 0;
	left: -80px;
	transform: translateY(-100%);
}


@media (max-width: 1200px){
	.feature .txt_box{
		left: 60px;
		padding-top: 10px;
		padding-left: 20px;
		max-width: none;
		width: 54%;
		transform: translate(0,-50%);
	}
	.feature h3 .ac_img{
		width: 70px;
		top: 20px;
		left: -60px;
	}
	.feature .item:nth-child(2 of .item) .txt_box{
		right: 60px;
		transform: translate(0,-50%)
	}
	.feature .item .img::before{
		content: "";
		display: inline-block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgb(255, 255, 255,0.3);
	}

	.feature h2{
		line-height: 1.4;
		font-size: 3rem;
	}
	.feature .top_area .ac_img{
		width: 120px;
	}
	.feature .top_area .ac_img2{
		width: 120px;
	}
}

@media (max-width: 650px){
	.feature {
		background-color: #fff;
	}
	.feature h3{
		font-size: 2.2rem;
	}
	.feature h3 .ac_img{
		width: 50px;
		top: 0;
		left: -20px;
	}
	.feature .txt_box{
		position: static;
		width: 85%;
		transform: translate(0,0);
		margin: 0 auto;
		padding: 40px 0;
		border: none;
	}
	.feature .item .img img{
		min-height: 240px;
		object-position: right;
	}
	.feature .item .img::before{
		display: none;
	}
	.feature .item:nth-child(2 of .item) .txt_box{
		transform: translate(0,0);
	}
	.feature .item:nth-child(2 of .item) .img img{
		object-position: left;
	}
	.feature .e_btn{
		padding-bottom: 80px;
	}

	.feature h2{
		font-size: 2.4rem;
		padding-top: 80px;
	}
	.feature .top_area .ac_img{
		width: 90px;
		left: 0;
	}
	.feature .top_area .ac_img2{
		width: 90px;
		right: 0;
	}
	
}



/* menulist */

.menulist{
	position: relative;
	padding-bottom: 130px;
	overflow: hidden;
}



.menulist .clo_img{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	transform: scale(1,-1);
	min-width: 850px;
}

.menulist h2{
	font-size: 4rem;
	width: fit-content;
	margin: 0 auto 40px;
	text-align: center;
	line-height: 1.2;
}


.menulist h2 span{
	font-size: 2rem;
}

.menulist .item{
	width: 48%;
	border-radius: 10px;
}

.menulist .item .img{
	width: 50%;
	position: relative;
}

.menulist .item .img::before{
	content: "";
	display: inline-block;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #fff;
	top: 0;
	left: 0;
	opacity: 0.3;
}

.menulist .item .img p{
	position: absolute;
	top: 46%;
	left: 10px;
	font-size: 3rem;
	transform: translateY(-50%);
	line-height: 1.2;
	font-weight: 400;
	color: #000;
}

.menulist .item .img p span{
	font-size: 1.55rem;
}

.menulist .item .txt_box{
	width: 50%;
	padding-left: 30px;
	background-color: #fff;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}

.menulist .item .img img{
	height: 280px;
	width: 100%;
	object-fit: cover;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
}

.menulist .e_btn{
	margin: 60px auto 0;
}

.menulist .item .txt_box a{
	text-decoration: underline;
}

.menulist .item .txt_box a:hover{
	opacity: 0.7;
}

.menulist .item .txt_box li+li{
	margin-top: 10px;
}


@media (max-width: 1200px){
	.menulist .flex_bet{
		flex-direction: column;
	}
	.menulist .item{
		width: 100%;
	}
	.menulist .item+.item{
		margin-top: 40px;
	}
}

@media (max-width: 650px){
	.menulist h2{
		font-size: 2.6rem;
		margin-bottom: 20px;
		line-height: 1.5;
	}
	.menulist h2 span{
		font-size: 1.45rem;
	}
	.menulist .item{
		flex-direction: column;
	}
	.menulist .item .img{
		width: 100%;
	}
	.menulist .item .txt_box{
		width: 100%;
		padding-top: 15px;
		padding-bottom: 15px;
	}
	.menulist .item .img img{
		height: 150px;
	}
	.menulist .inner{
		width: 85%;
	}
	.menulist .item .img p{
		font-size: 2.2rem;
	}
	.menulist .item .img p span{
		font-size: 1.45rem;
	}
	.menulist .item .txt_box li+li{
		margin-top: 0;
	}
	.menulist .item .img img{
		border-top-right-radius: 10px;
		border-bottom-left-radius: 0;
	}
	.menulist .item+.item{
		margin-top: 20px;
	}
	.menulist .e_btn{
		margin-top: 30px;
	}
	.menulist{
		padding-bottom: 70px;
	}
	.menulist .item .txt_box{
		border-top-right-radius: 0px;
		border-bottom-left-radius: 10px;
	}
}


/* faq */

.faq{
	background-color: #fff;
	overflow: hidden;
}


.faq h2{
	font-size: 4rem;
	line-height: 1.4;
	margin-right: 180px;
}

.faq h2 span{
	font-size: 2rem;
	padding-left: 8px;
}


.faq .inner{
	margin-bottom:80px;
}

.mini_gallery01 li{
	position: relative;
}

.faq .mini_gallery01 li{
	aspect-ratio: 1 / 1;
}

.mini_gallery01 li::before{
	content: "";
	display: inline-block;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgb(121, 207, 159,0.6);
	top: 0;
	left: 0;
	border-radius: 37% 40% 37% 48% / 30% 68% 37% 49%;
	z-index: -1;
}


@media (max-width: 1200px){
	.faq .flex{
		flex-direction: column;
	}
	.faq h2{
		margin-bottom: 40px;
		margin-right: 0;
	}
	.faq .inner{
		margin-bottom: 40px;
	}
}


@media (max-width: 650px){
	.faq h2{
		font-size: 2.4rem;
		margin-bottom: 20px;
		line-height: 1.5;
	}
	.faq h2 span{
		font-size: 1.45rem;
	}
}


/* footer */

.foo_top{
	background-color: #f6e9c9;
}

.foo_top h2{
	position: relative;
	font-size: 4rem;
	line-height: 1;
	text-align: center;
	margin-bottom: 30px;
}

.foo_top .btn{
	width: 270px;
	margin: 0 auto;
}

.foo_top .btn a{
	display: block;
	text-align: center;
	border: solid 1px #0C964A;
	background-color: #fff;
	padding: 10px 0;
	border-radius: 40px;
	color: #0C964A;
}

.foo_top .btn a:hover{
	background-color: #0C964A;
	color: #fff;
}

.foo_top .left{
	display: table;
	width: calc(100% / 3);
	border-bottom: solid 1px #fff;
}

.foo_top .left .in{
	display: table-cell;
	vertical-align: middle;
}

.foo_top .right{
	width: calc(100% / 3 * 2);
}

.foo_top .right .item{
	display: table;
	width: 100%;
	width: 50%;
}

.foo_top .item_list{
	flex-wrap: wrap;
}

.foo_top .item a{
	display: table-cell;
	border-left: solid 1px #fff;
	border-bottom: solid 1px #fff;
	height: 120px;
	font-size: 2rem;
	text-align: center;
	vertical-align: middle;
	background-color: #f6e9c9;
}

.foo_top .item a:hover{
	background-color: #d7d1ca;
}

.foo_btm{
	background-color: #fff;
	padding: 40px 0;
	text-align: center;
}

.foo_btm .foo_logo{
	margin-bottom: 30px;
}

.foo_btm .foo_logo img{
	height: 100px;
	object-fit: cover;
}

.copy{
	text-align: center;
	font-size: 1.4rem;
	background-color: #79cf9f;
}

.copy p{
	padding: 10px 0;
}


@media (max-width: 1200px){
	footer .contact_box{
		flex-direction: column;
	}
	.foo_top .left{
		width: 100%;
	}
	.foo_top .right{
		width: 100%;
	}
	.foo_top .item a{
		height: 80px;
	}
	.foo_top .left .in{
		padding: 30px 0;
	}
	.foo_btm .foo_logo img{
		height: 80px;
	}
}

@media (max-width: 650px){
	.foo_top h2{
		font-size: 2.8rem;
		margin-bottom: 20px;
	}
	.foo_top .right .item{
		width: 100%;
	}
	.foo_top .item a{
		font-size: 1.6rem;
		height: 60px;
	}
	.foo_btm .foo_logo img{
		height: 60px;
	}
	.foo_btm .foo_logo{
		margin-bottom: 15px;
	}
	.foo_btm{
		font-size: 1.3rem;
		padding: 25px 0;
	}
	.copy{
		font-size: 1.3rem;
	}
}


/* 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: 4%;
    border-radius: 50%;
    opacity: 0;
    transition: 1s;
    background: #0C964A;
    z-index: 49;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0
}
.page_top a {
    display: block;
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

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

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

@media (max-width: 750px) {
    .page_top {
        width: 45px;
        height: 45px;
        right: 10px;
        bottom: 10px;
    }
}





/* 下層ページ */


body.kasou{
	background-color: #fff;
}

.kasou h3{
	position: relative;
	font-size: 3.4rem;
	line-height: 1.5;
	margin-bottom: 30px;
	padding-bottom: 14px;
}

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

.price_top .e_btn{
	margin-top: 30px;
}




/* 下層ページ */

.kasou{
    position: relative;
}


.kasou .inner{
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
    width: 86%;
}

.kasou .sub_ttl{
    padding-left: 0;
    border-bottom: solid 1px #ebebeb;
    text-align: center;
    background-color: rgb(255, 193, 107,0.15);
    margin-bottom: 50px;
}

.kasou .sub_ttl::after{
    display: none;
}


.kasou_top .k_inner{
    max-width: 1400px;
    margin: 0 auto;
}

.kasou_top{
    position: relative;
    padding: 120px 0;
    border-bottom: solid 1px #ededed;
    background: url(../img/aboutus.jpg);
    background-size: cover;
    background-position: center;
}

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

.kasou_top h2{
    font-size: 4rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 15px;
    color: #fff;
    letter-spacing: 0.1em;
}

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


@media (max-width: 1400px){
    .kasou::before{
        left: 20px;
    }
    .kasou::after{
        right: 20px;
    }
	.kasou_top{
		padding: 200px 0 100px;
	}
}


@media (max-width: 650px){
    .kasou::before{
        left: 10px;
    }
    .kasou::after{
        right: 10px;
    }
    .kasou .sub_ttl{
        margin-bottom: 30px;
    }
    .kasou .inner{
        width: 90%;
    }
    .kasou_top h2{
        font-size: 2.6rem;
        margin-bottom: 5px;
		line-height: 1.6;
    }
    .kasou_top{
        padding: 130px 0 56px;
    }
}


/*パンくず*/
.breadcrumb{
	position: relative;
	z-index: 3;
	font-size: 1.4rem;
	letter-spacing: 0.05em;
	padding: 0;
	font-weight: 500;
    text-align: center;
    padding-left: 10px;
}
.breadcrumb li {
	display: inline;
	list-style: none;
    color: #fff;
}
.breadcrumb li:after {
	content: '>';
	padding: 0 0.2em;
	vertical-align: top;color: #fff;
}
.breadcrumb li:last-child:after {
	display: none;
}
.breadcrumb li a {
	text-decoration: none;
    color: #fff;
}
.breadcrumb li:first-child a::before{
	font-family: "Font Awesome 6 Free";
	content: '\f015';
	font-weight: bold;
}
.breadcrumb li a:hover{
	opacity: 0.7;
}




/* 下層 特徴 */


.p_feature .inner{
	max-width: 1200px;
}

.p_feature h3{
	text-align: center;
	margin-bottom: 60px;
}

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

.p_feature .item .imgarea{
	width: 38%;
}

.p_feature .item .imgarea img{
	height: 360px;
	width: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.p_feature .item .txt_box{
	width: 57%;
	margin-top: 20px;
}

.p_feature h4{
	font-size: 2.2rem;
	color: #0C964A;
	font-weight: 500;
	margin-bottom: 15px;
	line-height: 1.6;
}

.p_feature h4 .sm{
	font-size: 0.8em;
	color: #fff;
	background-color: #0C964A;
	padding: 0 8px;
	padding-top: 2px;
	width: fit-content;
	display: block;
	margin-bottom: 10px;
}

.p_feature .item .txt_box p{
	border-top: solid 1px #ccc;
	padding-top: 8px;
}

.faq{
	background: url(../img/feature_bg.jpg);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}

.faq .inner{
	max-width: 1200px;
}


.faq h3{
	text-align: center;
	margin-bottom: 60px;
}


.faq .item{
	position: relative;
	overflow: hidden;
	background-color: #fff;
	z-index: 3;
	transition: all .3s;
}

.faq .item .in{
	border-bottom: solid 1px #ccc;
	padding: 25px 0;
	position: relative;
	z-index: 3;
	background-color: #fff;
}

.faq .item .img img{
	width: 42px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.faq .item .mark02{
	display: none;
}

.faq .item h4{
	position: relative;
	font-size: 2.2rem;
	padding-left: 75px;
	letter-spacing: 0.03em;
}

.faq .item h4::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/q_mark.png);
	background-size: cover;
	background-position: center;
	aspect-ratio: 1 / 1;
	width: 46px;
	left: 5px;
	top: 50%;
	transform: translateY(-50%);
}

.faq .item.active .mark01{
	display: none;
}
.faq .item.active .mark02{
	display: flex;
}


.faq_list{
	font-size: 1.8rem;
}

.faq_list dl{
	padding: 30px 0;
	background-color: #fff;
	border-top: solid 1px #ccc;
}

.faq_list dl:last-child{
	border-bottom: solid 1px #ccc;
}

.faq_list dt{
	position: relative;
	padding-left: 100px;
	font-weight: 500;
}

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

.faq_list dt::after{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/mark01.jpg);
	background-size: cover;
	background-position: center;
	top: 50%;
	right: 30px;
	aspect-ratio: 1 / 1;
	width: 40px;
	transform: translateY(-50%);
}

.faq_list dd{
	position: relative;
	font-size: 1.7rem;
}

.faq_list dd::before{
	content: "";
	display: inline-block;
	position: absolute;
	aspect-ratio: 1 / 1;
	background: url(../img/a_mark.png);
	background-size: cover;
	background-position: center;
	width: 50px;
	top: 34px;
	left: 30px;
}

.faq_list dd p{
	padding-left: 110px;
	padding-right: 80px;
	padding-top: 40px;
}

.faq_list dl.open dt::after{
	background: url(../img/mark02.jpg);
	background-size: cover;
	background-position: center;
}


@media (max-width: 1200px){
	.p_feature .item .flex_bet{
		flex-direction: column;
	}
	.p_feature .item .imgarea{
		width: 100%;
		margin-bottom: 30px;
	}
	.p_feature .inner{
		width: 70%;
	}
	.p_feature .item .txt_box{
		width: 100%;
		margin-top: 0;
	}
}

@media (max-width: 650px){
	.p_feature h3{
		margin-bottom: 25px;
	}
	.p_feature .item .imgarea img{
		height: 260px;
	}
	.p_feature .inner{
		width: 87%;
	}
	.p_feature h4{
		font-size: 2rem;
		margin-bottom: 10px;
	}
	.p_feature h4 .sm{
		margin-bottom: 8px;
	}
	.p_feature .item+.item{
		margin-top: 30px;
	}
	.p_feature .item .imgarea{
		margin-bottom: 20px;
	}
	.faq_list dt::before{
		width: 30px;
		left: 5px;
	}
	.faq_list{
		font-size: 1.5rem;
	}
	.faq_list dt::after{
		width: 26px;
		right: 5px;
	}
	.faq_list dl{
		padding: 20px 0;
	}
	.faq_list dt{
		padding-left: 44px;
	}
	.faq h3{
		margin-bottom: 30px;
	}
	.faq_list dd::before{
		width: 30px;
		left: 5px;
		top: 20px;
	}
	.faq_list dd{
		font-size: 1.5rem;
	}
	.faq_list dd p{
		padding-left: 15px;
		padding-right: 15px;
		padding-top: 20px;
		text-indent: 34px;

	}
}



/* 下層 メニュー・料金 */


.k_price .inner{
	max-width: 1200px;
}

.price_toparea {
	position: relative;
	background: url(../img/pay_bg.jpg);
	background-size: cover;
	background-position: center;
	font-size: 1.7rem;
	background-attachment: fixed;
}

.price_toparea::before{
	content: "";
	display: inline-block;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #fff;
	opacity: 0.6;
	top: 0;left: 0;
	z-index: 0;
}

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

.price_toparea .left{
	width: 44%;
}

.price_toparea .right{
	width: 48%;
}

.price_toparea .left img{
	display: block;
	width: 87%;
	height: 480px;
	object-fit: cover;
	border-radius: 10px;
	margin: 0 0 0 auto;
}

.price_toparea .left img.ch{
	width: 40%;
	height: 200px;
	margin-left: 0;
	margin-top: 40px;
}

.price_toparea .e_btn{
	margin-top: 30px;
}
.price_toparea h3::before{
	display: none;
}

.menu_list h3{
	text-align: center;
	margin-bottom: 60px;
}

.menu_list h4{
	position: relative;
	font-size: 2.8rem;
	padding-left: 30px;
	margin-bottom: 15px;
}

.menu_list h4::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #0C964A;
	width: 6px;
	height: 30%;
	top: calc(50% - 15%);
	left: 0;
	transform: translateY(-50%);
}
.menu_list h4::after{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #79cf9f;
	width: 6px;
	height: 30%;
	top: calc(50% + 15%);
	left: 0;
	transform: translateY(-50%);
}

.menu_list .item{
	background-color: #fef5df;
	padding: 30px 45px;
	font-size: 1.5rem;
}

.menu_list .item .img{
	width: 40%;
}
.menu_list .item .txt_box{
	width: 54%;
	font-size: 1.7rem;
}

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

.menu_list .item .flex_bet{
	line-height: 1.7;
}

.menu_list .item .flex_bet+.flex_bet{
	margin-top: 25px;
}

.menu_list .item h5{
	position: relative;
	font-size: 2.2rem;
	border-bottom: solid 1px #0C964A;
	line-height: 1;
	padding-bottom: 7px;
	padding-top: 7px;
	margin-bottom: 15px;
	padding-left: 22px;
}

.menu_list .item h5::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #0C964A;
	height: 2px;
	width: 12px;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.menu_list .item .course{
	width: 42%;
}

.menu_list .item .price_box{
	width: 54%;
}

.menu_list .item .price_box .box+.box{
	margin-top: 18px;
}

.menu_list .item + .item{
	margin-top: 40px;
}

.menu_list+.menu_list{
	padding: 0;
}



.p_suiso .item_list .item{
	border-bottom: solid 1px #ccc;
}

.p_suiso .item_list .item:first-child{
	border-top: solid 1px #ccc;
}

.p_suiso .item_list .item .in{
	padding: 20px 10px 30px;
}

.p_suiso .item h5{
	font-size: 2.2rem;
	margin-bottom: 10px;
	line-height: 1.8;
	color: #0C964A;
	font-weight: 500;
}

.p_suiso .item h5 .sm{
	font-size: 1.8rem;
	padding-left: 2px;
	letter-spacing: 0.05em;
}

.p_suiso .item ol li+li{
	margin-left: 20px;
}

.p_suiso h4{
	font-size: 2rem;
}

.p_suiso .fir{
	position: relative;
	background-color: #f5f5f5;
	padding: 30px;
	margin-bottom: 40px;
}

.p_suiso .fir .ac_img{
	position: absolute;
	width: 120px;
	bottom: 0;
	right: 50px;
}

.p_suiso h3{
	line-height: 1.8;
	text-align: center;
}

.p_suiso .fl_btn{
	width: 200px;
	margin-top: 15px;
}

.p_suiso .fl_btn a{
	background-color: #0C964A;
	color: #fff;
	display: block;
	font-weight: 500;
	padding: 4px 0;
	text-align: center;
	letter-spacing: 0.05em;
	border: solid 1px #0C964A;
}

.p_suiso .fl_btn+.fl_btn{
	margin-left: 30px;
}

.p_suiso .fl_btn a:hover{
	background-color: #fff;
	color: #0C964A;
}

.p_suiso .btm_area{
	position: relative;
	margin-top: 45px;
	padding-left: 10px;
	background-color: #f5f5f5;
	padding: 20px;
}

.p_suiso .btm_area h4{
	margin-bottom: 5px;
}

.p_suiso .btm_area p{
	font-size: 1.4rem;
}

.payment{
	position: relative;
	background: url(../img/pay_bg.jpg);
	background-size: cover;
	background-position: bottom;
	background-attachment: fixed;
}

.payment::before{
	content: "";
	display: inline-block;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #fff;
	top: 0;
	left: 0;
	z-index: 0;
	opacity: 0.5;
}

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

.payment .img img{
	width: 360px;
	object-fit: cover;
}

.payment h3{
	text-align: center;
}

.payment .in{
	flex-direction: column;
	background-color: #fff;
	width: fit-content;
	padding: 40px 100px;
	border-radius: 20px;
	margin: 0 auto;
}



@media (max-width: 1200px){
	.price_toparea .inner{
		flex-direction: column-reverse;
	}
	.price_toparea .right{
		width: 100%;
	}
	.price_toparea .left{
		margin: 40px 0 0 auto;
		width: 80%;
	}
	.price_toparea .left img{
		height: 300px;
	}
	.price_toparea .left img{
		width: 70%;
	}
	.price_toparea .left img.ch{
		margin-top: -40px;
	}
	.menu_list .item .flex_bet{
		flex-direction: column;
	}
	.menu_list .item .img{
		width: 60%;
		margin-bottom: 20px;
	}
	.menu_list .item .txt_box{
		width: 100%;
	}
	.menu_list .item .course{
		width: 100%;
		margin-bottom: 20px;
	}
	.menu_list .item .price_box{
		width: 100%;
	}
	.p_suiso ol{
		flex-direction: column;
		margin-top: 10px;
	}
	.p_suiso .item ol li+li{
		margin-left: 0;
	}
	.p_suiso .fir .ac_img{
		right: 10px;
		width: 100px;
	}
}

@media (max-width: 650px){
	.price_toparea{
		font-size: 1.5rem;
	}
	.price_toparea .left{
		width: 100%;
	}
	.price_toparea .left img{
		height: 200px;
	}
	.price_toparea .left img.ch{
		width: 50%;
		height: 130px;

	}
	.kasou .price_toparea h3{
		font-size: 2.2rem;
		margin-bottom: 10px;
	}
	.menu_list h4{
		font-size: 2rem;
		padding-left: 20px;
		line-height: 1.5;
	}
	.menu_list .item{
		padding: 15px;
	}
	.menu_list .item .txt_box{
		font-size: 1.5rem;
	}
	.menu_list .item h5{
		font-size: 1.8rem;
	}
	.menu_list .item .img{
		width: 100%;
	}
	.menu_list h3{
		margin-bottom: 30px;
	}
	.p_suiso .fir{
		padding: 15px;
	}
	.p_suiso .fl_btn+.fl_btn{
		margin-left: 15px;
	}
	.p_suiso .item h5{
		font-size: 1.8rem;
	}
	.p_suiso .item h5 .sm{
		font-size: 1.6rem;
	}
	.payment .in{
		padding: 30px 40px;
	}
	.p_suiso .fir .ac_img{
		width: 80px;
		bottom: -50px;
		right: -20px;
	}
	.payment h3{
		margin-bottom: 10px;
	}
}


/* 下層 メニュー・料金 */

.p_voice .inner{
	max-width: 1200px;
	margin: 0 auto;
}
.p_voice .item{
	position: relative;
	border: solid 1px #0C964A;
}
.p_voice .item .in{
	padding: 25px;
	padding-top: 70px;
}
.p_voice .item+.item{
	margin-top: 60px;
}
.p_voice h3{
	position: absolute;
	color: #fff;
	background-color: #0C964A;
	top: 0;	left: 0;
	font-size: 2.2rem;
	padding: 5px 25px;
	letter-spacing: 0.05em;
	font-weight: 500;
}

.p_voice .comment{
	background-color: #fef5df;
}

.p_voice .comment .in{
	padding-top: 25px;
}

.p_voice .item ul{
	background-color: #fef5df;
	padding: 4px 10px;
	margin-bottom: 15px;
}

.p_voice .item ul li+li{
	margin-left: 15px;
}

.p_voice .item .fir{
	font-size: 2.2rem;
	margin-bottom: 10px;
	letter-spacing: 0.2em;
}

.p_voice h4{
	position: relative;
	padding-left: 15px;
	font-size: 1.8rem;
	font-weight: 500;
	margin-bottom: 10px;
}

.p_voice h4::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #0C964A;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	height: 70%;
	width: 3px;
}

.p_voice .btm_list{
	flex-wrap: wrap;
	background-color: #fef5df;
	padding: 20px;
}

.p_voice .btm_list li{
	margin-right: 15px;
}

.p_voice .btm_area{
	margin-top: 40px;
}

.p_voice .face{
	width: 130px;
	margin-right: 20px;
}

.p_voice .right{
	width: calc(100% - 130px);
}

@media (max-width: 1200px){
	.p_voice .item ul li+li{
		margin-left: 0;
	}
	.p_voice .item ul li{
		width: calc(100% / 4);
	}
}

@media (max-width: 650px){
	.kasou .p_voice h3{
		font-size: 2rem;
		margin-bottom: 0;
	}
	.p_voice .item .fir{
		font-size: 2rem;
	}
	.p_voice .item .in{
		padding-top: 60px;
	}
	.p_voice .item ul{
		flex-direction: column;
	}
	.p_voice .item ul li+li{
		margin-left: 0;
		margin-top: 5px;
	}
	.p_voice .item .in{
		padding-left: 15px;
		padding-right: 15px;
		padding-bottom: 15px;
	}
	.p_voice .comment .in{
		padding-top: 20px;
	}
	.p_voice h4{
		font-size: 1.6rem;
		margin-bottom: 5px;
	}
	.p_voice .item+.item{
		margin-top: 30px;
	}
	.p_voice .btm_list{
		padding: 15px;
		padding-right: 10px;
		line-height: 1.5;
	}
	.p_voice .btm_list li{
		margin-right: 0;
	}
	.p_voice .btm_list li+li{
		margin-top: 10px;
	}
	.p_voice .btm_list{
		flex-wrap: nowrap;
		flex-direction: column;
	}
	.p_voice .item .in.flex_bet{
		flex-direction: column;
	}
	.p_voice .right{
		width: 100%;
		margin-top: 10px;
	}
	.p_voice .face{
		width: 70px;
	}
}




/* 下層 店舗概要 */


.p_greeting{
	background: url(../img/ser2.jpg);
}

.p_greeting .top_area{
	width: 61%;
	margin: 0 0 0 auto;
}

.p_greeting .txt_box{
	margin-bottom: 30px;
}

.p_greeting table th{
	position: relative;
	width: 150px;
	padding: 10px 0;
	padding-left: 20px;
	font-weight: 500;
}
.p_greeting table td{
	width: calc(100% - 150px);
	padding: 10px 0;
}

.p_greeting table span{
	display: inline-block;
	position: absolute;
	background-color: #0C964A;
	width: 9px;
	aspect-ratio: 1 / 1;
	top: 22px;
	left: 0;
	transform: rotate(45deg);
}

.p_greeting h3{
	padding-bottom: 0;
}

.p_greeting h3::before{
	display: none;
}

.overview{
	padding-top: 0;
}

.overview h3::before{
	display: none;
}

/*2行の基本Table*/
.info_table{
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
}

.info_table tr{
	border: 1px solid #ccc;
}
.info_table th,
.info_table td{
	padding: 25px 0;
	letter-spacing: 0.08em;
	display: table-cell;
	vertical-align: middle;
}
.info_table th{
	width: 30%;
	border-right: 1px solid #ccc;
	font-weight: 500;
	padding-left: 17px;	
	background-color: #0C964A;
	color: #fff;
}
.info_table td{
	padding-left: 10px;
	width: 70%;
	border-right: 1px solid #ccc;
	border-left: 1px solid #ccc;
	background-color: #fff;
}

.k_shop .inner{
	max-width: 1200px;
	width: 94%;
}

.overview h3{
	text-align: center;
	padding: 100px 0;
	background: url(../img/feature_bg.jpg);
	background-size: cover;
	background-position: center;
	margin-bottom: 40px;
}

.pet{
	padding-top: 0;
}

.pet .inner{
	position: relative;
}

.pet h3{
	position: relative;
	width: fit-content;
}



.pet .ac_img{
	position: absolute;
	top: -50px;
	right: 0;
	width: 200px;
}

.pet .img{
	width: 600px;
	margin: 0 0 0 auto;
}

.pet .e_btn{
	margin-top: 20px;
}

.pet .txt_area{
}

.pet .left{
	background-color: #f6e9c9;
	border-radius: 10px;
	height: fit-content;
	padding: 20px 25px;
	margin-top: 40px;
}

.pet .left h4{
	font-size: 1.8rem;
	line-height: 1;
}

.pet .left p{
	font-size: 1.4rem;
	margin-bottom: 5px;
}

.pet .sikaku .item{
	width: 180px;
}

.pet .sikaku .item+.item{
	margin-left: 20px;
}

.pet .sikaku .item img{
	border-radius: 10px;
}

.access{
	background-color: #f5f5f5;
}

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

.access h3{
	text-align: center;
	margin-bottom: 60px;
}


@media (max-width: 1200px){
	.p_greeting{
		position: relative;
	}
	.p_greeting .top_area{
		width: 80%;
		margin: 0 auto;
		font-size: 1.7rem;
	}
	.p_greeting::before{
		content: "";
		display: inline-block;
		position: absolute;
		width: 100%;
		height: 100%;
		background-color: rgb(255, 255, 255,0.8);
		z-index: 0;
		top: 0;
		left: 0;
		backdrop-filter: blur(5px);
	}
	.p_greeting .inner{
		position: relative;
		z-index: 1;
	}
	.p_greeting h3{
		text-align: center;
	}
	.pet .ac_img{
		width: 160px;
	}
	.access .map iframe{
		height: 300px;
		width: 86%;
	}
	.access .map{
		text-align: center;
	}
	.overview h3{
		padding: 80px 0;
	}
	.pet .img{
		width: 400px;
	}
}


@media (max-width: 650px){
	.pet .flex_bet{
		flex-direction: column;
	}
	.pet .sikaku .item{
		width: 130px;
	}
	.pet .left{
		width: fit-content;
	}
	.pet .img{
		width: 300px;
		margin-left: 0;
		margin: 0 auto;
	}
	.pet h3{
		margin: 0 auto 30px;
	}
	.pet .ac_img{
		width: 120px;
		top: -30px;
	}
	.access .map iframe{
		height: 220px;
		width: 100%;
	}
	.access h3{
		margin-bottom: 30px;
	}
	.info_table th{
		padding: 12px 0;
		text-align: center;
		font-size: 1.4rem;
	}
	.info_table td{
		padding: 12px 0;
		font-size: 1.4rem;
		padding-left: 10px;
	}
	.p_greeting .top_area{
		width: 96%;
	}
	.p_greeting .top_area{
		font-size: 1.5rem;
	}
	.p_greeting table th{
		display: block;
		width: 100%;
		padding-bottom: 0;
		padding-top: 0;
	}
	.p_greeting table td{
		display: block;
		width: 100%;
		padding-top: 0;
	}
	.p_greeting table span{
		top: 12px;
	}
	.overview h3{
		padding: 60px 0;
	}
}




/* 下層 コンタクト */

.p_contact{
	background: url(../img/feature_bg.jpg);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}

.p_contact .top_area h3{
	text-align: center;
}

.k_contact .inner{
	max-width: 920px;
}

.p_contact .top_area p.fir{
	width: fit-content;
	margin: 0 auto;
}

.p_contact .top_area h4{
	font-size: 2rem;
	position: relative;
	padding-left: 14px;
	letter-spacing: 0.05em;
	margin-bottom: 30px;
}

.p_contact .top_area h4::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #0C964A;
	width: 4px;
	height: 70%;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.p_contact .top_area .btn{
	width: 260px;
}

.p_contact .top_area .btn a{
	display: block;
	padding: 12px 0;
	background-color: #79cf9f;
	text-align: center;
	letter-spacing: 0.05em;
	border: solid 2px #79cf9f;
	border-radius: 40px;
}

.p_contact .top_area .btn a:hover{
	background-color: rgb(121, 207, 159,0);
}

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

.p_contact .top_area .box{
	margin-bottom: 50px;
	background-color: #f6e9c9;
	padding: 40px 45px;
}

.p_contact .top_area .box a{
	display: block;
	font-size: 2.4rem;
	color: #0C964A;
	margin-right: 50px;
	font-weight: 500;
}

.p_contact .top_area .box a:hover{
	opacity: 0.5;
}

.p_contact .top_area h4.ch{
	margin-top: 30px;
}


.form_box h3{
	text-align: center;
}

input[type="checkbox"]{
	font-size: 1.8rem;
	width: 20px;
	height: 40px;
	border: solid 1px #bababa;
	background-color: #fff;
	border: solid 1px #aaa;
	display: table-cell;
	margin-bottom: 5px;
}

input[type="text"]{
	height: 60px;
	font-size: 1.8rem;
	padding: 10px;
	background: #fff;
	border: solid 1px #aaa;
	width: 100% !important;
}

input[type="email"]{
	height: 60px;
	font-size: 1.8rem;
	padding: 10px;
	background: #fff;
	border: solid 1px #aaa;
}

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

.postal_btn:hover{
	opacity: 0.7;
}

td .box.mini{
	width: 300px !important;
	height: 40px;
}

.contact_table td p{
	height: 40px;
	line-height: 40px;
	padding: 0 11px 0 8px;
}

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


textarea{
	padding: 10px;
	font-size: 1.8rem;
	background: #fff;
	border: solid 1px #aaa;
	width: 100% !important;
	height: 120px !important;
}

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

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

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

input{
	appearance: auto;
}

.mailform .contact_table .ib div{
	display: inline-block;
}

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



.form_attention{
	font-size: 1.6rem;
	margin-top: 40px;
	width: fit-content;
	margin: 40px auto 0;
	text-align: left;
}

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

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

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

.Label{
	font-size: 1.8rem;
	letter-spacing: 2px;
	padding: 0.8% 1%;
	display: block;
	border-bottom: solid 2px #0C964A;
	color: #0C964A;
	font-weight: 500;
	text-align: center;
	letter-spacing: 0.1em;
}

.Label::before{
	content: "";
	width: 12px;
	height: 12px;
	border-top: 2.5px solid #0C964A;
	border-right: 2.5px solid #0C964A;
	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;
}

.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.6rem;
	text-align: left;
	letter-spacing: 2px;
	padding: 1% 0;
	padding-left: 1%;
	line-height: 200%;
}

.form_accordion h4{
	margin-top: 30px;
	font-size: 1.8rem;
	position: relative;
	padding-left: 26px;
	padding-bottom: 5px;
	border-bottom: dashed 1px #333;
}

.form_accordion h4::before{
	content: "";
	position: absolute;
	display: inline-block;
	width: 18px;
	height: 18px;
	background: url(../img/check.png);
	background-size: cover;
	background-position: center;
	top:9px;
	left: 0;
}

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

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

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

.form_btn button:hover{
	background-color: #fff;
	color: #0C964A;
}

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

.contact_table th,.contact_table td{
	padding: 20px 0;
}

.contact_table{
	width: 100%;
}

.mail_area{
	background-color: #f5f5f5;
	padding: 100px 0;
}

.contact_table th{
	display: table-cell;
	vertical-align: middle;
	width: 25%;
	font-weight: 500;
	font-size: 1.7rem;
}



@media (max-width: 1200px){
	.form_ttl span{
		display: block;
	}
	.mailform table th{
		width: 100%;
		display: block;
		padding-top: 5px;
	}
	.mailform table td{
		width: 100%;
		display: block;
		padding-top: 0;
		padding-bottom: 30px;
	}
	.mailform th{
		border-bottom: none;
	}
	.contact .form_box{
		padding: 40px;
	}
	input[type="text"]{
		height: 48px;
	}
	input[type="email"]{
		height: 48px;
	}
	.tel_box{
		background-size: 500px;
	}
	.tel_box::before{
		min-width: 720px;
	}
    .mail_area .inner{
        margin-bottom: 40px;
    }
    .form_btn button{
        margin-top: 25px;
    }
	.p_contact .top_area .box .in{
		flex-direction: column;
	}
	.p_contact .top_area .box{
		padding: 20px;
	}
	.p_contact .top_area .box a{
		margin-right: 0;
	}
	.p_contact .top_area .btn+.btn{
		margin-left: 5px;
	}
}


@media (max-width: 650px){
	.p_contact .btn_area{
		flex-direction: column;
		align-items: center;
	}
	.p_contact .top_area .btn+.btn{
		margin-left: 0;
		margin-top: 20px;
	}
	.form_attention{
		font-size: 1.5rem;
	}
	.Label{
		font-size: 1.6rem;
		padding: 3% 1%;
        margin-bottom: 0;
	}
	.form_accordion p{
		font-size: 1.5rem;
		line-height: 1.9;
	}
	.form_box h4{
		margin-bottom: 20px;
	}
	.form_box .container{
		width: 94%;
	}
	.contact .form_box{
		padding: 30px 10px;
	}
	.mailform table td{
		padding-bottom: 20px;
	}
	.mailform table th{
		padding-bottom: 10px;
	}
	.form_btn button{
		margin-top: 20px;
	}
	.form_accordion{
		margin-top: 20px;
	}
	.contact_table td .flex{
		flex-direction: column;
	}
	.postal_btn{
		margin-left: 0;
		width: 180px;
		margin-top: 10px;
		font-size: 1.4rem;
	}
	.mailform .contact_table .ib div:first-child{
		margin-left: 0;
	}
	.mailform .contact_table .ib div{
		margin-right: 20px;
	}
	.mailform .contact_table .ib div+div{
		margin-left: 0;
	}
	.mail_area{
		padding: 50px 0;
	}
    .mail_area .inner{
        width: 92%;
    }
    .k_contact .f_txt{
        font-size: 2rem;
        max-width: 260px;
        margin: 40px auto;
    }
    .tel_box h3{
        font-size: 2rem;
    }
    .tel_box a{
        font-size: 3rem;
    }
    .tel_box a i{
        font-size: 2.6rem;
    }
    .tel_box p{
        font-size: 1.6rem;
    }
    .tel_box{
        margin-bottom: 40px;
    }
	.access iframe{
        height: 240px;
    }
	.kasou h3{
		font-size: 2.4rem;
	}
	.p_contact .top_area h4{
		margin-bottom: 20px;
		line-height: 1.5;
	}
	.p_contact .top_area h4::before{
		height: 90%;
	}
}




/*thanksページ*/

.thanks_ttl{
	text-align: center;
	line-height: 1.7;
}

.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: #0C964A;
	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 #0C964A;
    color: #0C964A;
    letter-spacing: 2px;
    padding: 15px 0;
    text-align: center;
}

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

@media (max-width: 650px){
	.thanks_txt p{
		text-align: left;
	}
}