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


body{
	color: #252525;
	background-color: #fff;
	-webkit-font-smoothing: antialiased;/*アンチエイリアスを滑らかに*/
	-moz-osx-font-smoothing: grayscale;
	line-height: 1.9;
	font-size: 1.5rem;
	font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
}



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

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

.leftRight{
	opacity: 0;
	transform: translateX(-100%);
	transition: transform 1s, opacity 1.8s;
	transition-delay: 400ms;
}

.leftRight.inview{
	opacity: 1;
	transform: translateX(0);
}

.rightLeft{
	opacity: 0;
	transform: translateX(100%);
	transition: transform 1s, opacity 1.8s;
	transition-delay: 400ms;
}

.rightLeft.inview{
	opacity: 1;
	transform: translateX(0);
}



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

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


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

.op.inview{
	opacity: 1;
}

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


.br_650.marker{
	background: none;
}

.inner{
	width: 90%;
	max-width: 1200px;
	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%;
}


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





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

.br_none1200{
	display: block;
}

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

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

@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;
	}
	body{
		font-size: 1.5rem;
	}
}




/* 文字間 */

.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: 650px){
	.none_650{
		display: none;
	}
	body{
		font-size: 1.35rem;
	}
	
	
}


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





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

body p{
	letter-spacing: 0.1em;
}

i{
	padding-right: 0.4em;
}



/* btn */


.m_btn{
	width: 240px;
}


.m_btn a{
	position: relative;
	display: block;
	background-color: #333;
	color: #fff;
	padding: 22px 0 11px;
	font-size: 1.6rem;
	letter-spacing: 0.1em;
	font-weight: 600;
	border-radius: 10px;
	padding-left: 20px;
	line-height: 1.6;
	overflow: hidden;
}

.m_btn .hidden_txt{
	opacity: 0;
}

.m_btn .hid{
	display: inline-block;
	position: relative;
	overflow: hidden;
	white-space: nowrap;
	width: 100%;
	line-height: 1.2;
}

.m_btn .txt01{
	position: absolute;
	display: inline-block;
	top: 52%;
	left: 20px;
	transform: translateY(-50%);
	color: #fff;
	letter-spacing: 0.05em;
	line-height: 1.2;
	
}
.m_btn .txt02{
	position: absolute;
	display: inline-block;
	top: 52%;
	left: 20px;
	transform: translateY(50%);
	color: #fff;
	letter-spacing: 0.05em;
	line-height: 1.2;
	
}

.m_btn a:hover .txt01{
	transform: translateY(-150%);
	transition: all .3s;
}
.m_btn a:hover .txt02{
	transform: translateY(-50%);
	transition: all .3s;
}

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

.m_btn a::after{
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 28px;
	transform: translateY(-50%);
	background: url(../img/arrow_r.png);
	background-size: cover;
	background-position: center;
	aspect-ratio: 1 / 1;
	width: 24px;
	transition: all .2s ease-out;
}

.m_btn a:hover::after{
	right: 25px;
}

@media (max-width: 650px){
	.m_btn a{
		font-size: 1.5rem;
	}
	.m_btn{
		width: 220px;
	}
	.m_btn .txt01{
		left: 20px;
	}
	.m_btn .txt02{
		left: 20px;
	}
	.m_btn a::before{
		width: 34px;
	}
}




/* font-size (ratio 1.25, base 16px)*/


.king{
	font-size: 9.2rem;
}
.biggest{
	font-size: 7.4rem;
}
.big{
	font-size: 5.9rem;
}
.s_big{
	font-size: 3.7rem;
}
.f_txt{
	font-size: 2.4rem;
}
.s_f_txt{
	font-size: 2rem;
}

/*最小値:1.1rem → 可変（0.9rem + 0.625vw（画面幅320px:2px, 800px:5px, 1200px:7.5px））→ 最大値:1.6rem*/
.font-size-S {
    font-size: clamp(1.1rem, calc(0.9rem + 0.625vw), 1.6rem);
}

/*最小値:1.2rem → 可変（1rem + 0.625vw（画面幅320px:2px, 800px:5px, 1200px:7.5px））→ 最大値:1.7rem*/
.font-size-M {
    font-size: clamp(1.4rem, calc(1rem + 0.625vw), 2rem);
}

/*最小値:1.6rem → 可変（2.2rem + 0.625vw（画面幅320px:2px, 800px:5px, 1200px:7.5px））→ 最大値:2.9rem*/
.font-size-L {
    font-size: clamp(2.4rem, calc(2.2rem + 0.625vw), 2.9rem);
}

.en{
	font-family: "Hind Siliguri", sans-serif;
	font-weight: 500;
	font-style: normal;
}



/* sub_ttl */

.sub_ttl .en{
	font-weight: lighter;
	letter-spacing: -0.03em;
	display: block;
	line-height: 1.7;
	font-size: 6.6rem;
}

.sub_ttl .ja{
	position: relative;
	font-weight: 500;
	color: #2fa449;
	padding-left: 26px;
	font-size: 1.6rem;
}

.sub_ttl .ja img{
	position: absolute;
	top: 42%;
	left: 0;
	width: 11px;
	transform: translateY(-50%) rotate(20deg);
}


@media (max-width: 1200px){
	.sub_ttl .en{
	font-size: 5.2rem;
	}
	.aboutus .txt_area p.fir{
		font-size: 2rem;
	}
	
}


@media (max-width: 650px){
	.sub_ttl .en{
		font-size: 4.4rem;
	}
	.sub_ttl .ja{
		font-size: 1.4rem;
		padding-left: 18px;
	}
	.sub_ttl .ja img{
		width: 10px;
	}
	
}




/* header */


header{
	position: fixed;
	height: 80px;
	top: 0;
	width: 100%;
	z-index: 99;
	background-color: #fff;
}

h1{
	position: fixed;
	top: 13px;
	left: 60px;
}

h1 a{
	letter-spacing: 0.1em;
	font-weight: 500;
}
h1 a:hover{
	opacity: 0.75;
}

h1 span{
	display: block;
	line-height: 1;
	font-size: 1.7rem;
}
h1 span+span{
	margin-top: 8px;
	font-size: 2.8rem;
}

.hd_inner{
	width: 100%;
}


.main_nav a{
	position: relative;
	font-size: 1.5rem;
	letter-spacing: 0.03em;
	overflow: hidden;
	display: block;
	line-height: 1.6;
	transition: all.3s;
	width: 100%;
	height: 100%;
	padding: 0 5px;
}

.main_nav a span.none_txt{
	opacity: 0;
}

.main_nav a span.hidden_txt{
	position: absolute;
	top: 0;
	left: 0;
	transform: translateY(100%);
	width: 100%;
}

.main_nav a span.m_txt{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}


.main_nav a:hover span.hidden_txt{
	transform: translateY(0);
	transition: all.3s;
}
.main_nav a:hover span.m_txt{
	transform: translateY(-100%);
	transition: all.3s;
}

.main_nav li+li{
	margin-left: 40px;
}

header .fix_box{
	position: fixed;
	top: 18px;
	right: 45px;
}

.hd_tel{
	position: relative;
}

.hd_tel::before{
	content: "\f095";
	display: inline-block;
	position: absolute;
	font-weight: bold;
	font-family: 'Font Awesome 5 Free';
	padding: 5px;
	width: 25px;
	height: 25px;
	font-size: 1.45rem;
	line-height: 16px;
	aspect-ratio: 1 / 1;
	top: 50%;
	transform: translateY(-50%);
	background-color: #fff;
	left: 18px;
	border-radius: 50%;
	color: #333;
}

.hd_tel a{
	display: block;
	background-color: #333;
	color: #fff;
	font-weight: 700;
	padding: 4px 0 2px;
	padding-left: 55px;
	padding-right: 20px;
	border-radius: 40px;
	font-size: 1.7rem;
	border: solid 1px #333;
}

.hd_tel a:hover{
	background-color: #fff;
	color: #333;
}


.hd_mail::before{
	content: "\f0e0";
	display: inline-block;
	position: absolute;
	font-weight: bold;
	font-family: 'Font Awesome 5 Free';
	padding: 5px;
	width: 25px;
	height: 25px;
	font-size: 1.45rem;
	line-height: 16px;
	aspect-ratio: 1 / 1;
	top: 50%;
	transform: translateY(-50%);
	background-color: #fff;
	left: 18px;
	border-radius: 50%;
	color: #333;
}

.hd_mail a{
	font-size: 1.4rem;
	padding-top: 8px;
	padding-bottom: 3px;
}

.hd_mail{
	margin-left: 10px;
}


@media (max-width: 1400px){
	.main_nav{
		display: none;
	}
	.hd_tel{
		display: none;
	}
	h1{
		left: 40px;
	}
}
@media (max-width: 650px){
	h1 span{
		font-size: 1.4rem;
	}
	h1 span+span{
		font-size: 2.2rem;
	}
	h1{
		left: 20px;
		top: 18px;
	}
}






/* fv */


.fv {
	position: relative;
	height: calc(80vh - 80px);
	margin-top: 80px;
}

.fv .top_slider{
	position: relative;
	height: 100%;
	margin: 0 auto;
}


.top_slider .slider{
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.top_slider .slider li{
	width: 100%;
	height: 100%;
	background-size: cover;
	margin: 0;
}


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


/* catch */

.catch{
	position: absolute;
	top: 50%;
	left: 5vw;
	width: 500px;
	z-index: 5;
	transform: translateY(-50%);
}

@media (max-width: 1200px){
	.fv{
		height: calc(65vh - 80px);
	}
	.catch{
		width: 380px;
	}
}

@media (max-width: 650px){
	.catch{
		width: 280px;
	}
}



/* aboutus */

.aboutus{
	padding: 140px 0 250px;
	position: relative;
	background-color: #ebebeb;
}


.aboutus .btm_img{
	position: absolute;
	bottom: 0px;
	left: 10%;
	width: 300px;
	z-index: 5;
}

.aboutus .sub_ttl{
	margin-bottom: 0;
	
}

.aboutus .sub_ttl .en{
	color: #574c42;
}

.aboutus .bg_img{
	position: absolute;
	top: 50%;
	left: 80%;
	transform: translate(-50%,-50%);
	width: 40%;
	max-width: 380px;
	z-index: 0;
}

.aboutus .bg_img img{
	width: 100%;
	object-fit: cover;
}

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

.aboutus .right{
	width: 60%;
}

.aboutus .left{
	width: 40%;
}

.aboutus .ab_mov{
	max-width: 240px;
	margin-top: 80px;
}

.aboutus video{
	width: 100%;
	height: 330px;
	object-fit: cover;
}

.aboutus .txt_box{
	max-width: 320px;
	margin-top: 80px;
}

.aboutus  .txt_box p{
	line-height: 2;
	font-size: 1.4rem;
	
}

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

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

.aboutus .tate{
	font-size: 1.9rem;
	line-height: 2.8;
	margin-top: -50px;
	text-decoration: underline;
}

.aboutus .tate span{
	display: block;
	margin-top: 80px;
}


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

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

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


@keyframes rotate_anime {
	0% {
	  transform: translateY(-100%) rotate(0deg);
	}
	100% {
	  transform: translateY(-100%) rotate(360deg);
	}
  }


@media (max-width: 1200px){

	.custom-shape-divider-bottom-1750906253 svg{
		height: 100px;
	}
	.aboutus{
		padding-top: 100px;
	}

	.ab_sec {
		justify-content: space-between;
		flex-direction: row-reverse;
	}
	.aboutus .wrap{
		margin: 0 0 0 auto;
	}
	.aboutus .txt_box{
		max-width: 300px;
	}
	.aboutus .ab_mov{
		max-width: 190px;
	}
	.aboutus .left{
		width: 25%;
	}
	.aboutus .right{
		width: 65%;
	}
	.aboutus .btm_img{
		width: 220px;
	}
	.aboutus video{
		aspect-ratio: 1 / 1;
		height: auto;
	}
}

@media (max-width: 650px){
	.aboutus{
		overflow: hidden;
		padding-bottom: 100px;
		padding-top: 50px;
	}



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

	.aboutus .wrapper{
		flex-direction: column;
	}
	.aboutus .ab_mov{
		margin-top: 0;
		width: 120px;
	}
	.aboutus .left{
		width: 100%;
	}
	.aboutus .right{
		width: 100%;
	}
	.aboutus .txt_box{
		margin-top: 30px;
		max-width: 220px;
	}
	.aboutus .txt_box p{
		font-size: 1.3rem;
	}
	.aboutus .tate{
		font-size: 1.6rem;
		margin-top: -230px;
	}
	.aboutus .tate p{
		letter-spacing: normal;
	}
	.aboutus .btm_img{
		left: auto;
		right: 20px;
		width: 140px;
	}
}



/* feature */


.feature{
	background-color: #fff;
	padding-top: 100px;
}
/* 
.feature::before{
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(0, 0, 0,0.4);
	backdrop-filter: blur(20px);
	z-index: 0;
} */

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


.fe_sec .sticky_side p.en{
	position: relative;
	width: fit-content;
	font-weight: 500;
	font-size: 1.6rem;
	color: #2fa449;
	border: solid 1px #2fa449;
	letter-spacing: 0.05em;
	padding: 8px 12px 5px;
	border-radius: 30px;
	line-height: 1;
	margin-bottom: 12px;
}

.fe_sec .sticky_side p.en::before{
	content: "";
	display: inline-block;
	position: absolute;
	aspect-ratio: 1 / 1;
	background-color: #2fa449;
	border-radius: 50%;
	width: 10px;
	top: 50%;
	left: -30px;
	transform: translateY(-50%);
}

.fe_sec .sticky_side{
	position: sticky;
	height: fit-content;
	top: 160px;
	width: 230px;
	margin-top: 60px;
}

.fe_sec .sticky_side .item p:last-child{
	font-size: 1.55rem;
	letter-spacing: 0.05em;
	padding-left: 10px;
	line-height: 1.6;
}

.fe_sec .sticky_side .item{
	padding: 20px 0;
	padding-left: 30px;
}

.fe_sec .sticky_side .ill{
	margin-top: 50px;
}

.fe_sec .m_content{
	width: calc(92% - 230px);
	max-width: 720px;
}

.fe_sec .m_content .img img{
	border-radius: 15px;
	aspect-ratio: 3 / 2;
	width: 100%;
	object-fit: cover;
	max-height: 400px;
}

.fe_sec .m_content .img{
	margin-bottom: 30px;
}

/* .fe_sec .m_content .item{
	padding: 0 40px;
} */

.fe_sec .m_content h4{
	font-weight: 500;
	border-bottom: solid 1px #aaa;
	margin-bottom: 20px;
	padding-bottom: 5px;
	padding-left: 20px;
	letter-spacing: 0.05em;
	font-size: 2.2rem;
}

.fe_sec .m_content .item p.en{
	color: #2fa449;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1;
	margin-bottom: 14px;
	padding-left: 0;
	font-size: 1.9rem;
}

.fe_sec .m_content .item p{
	padding: 0 15px;
}

.fe_sec .m_content .item+.item{
	margin-top: 80px;
}

.feature .m_btn{
	width: 320px;
	margin: 60px auto 0;
}

@media (max-width: 1200px){
	.fe_sec .m_content .item p.en{
		font-size: 1.9rem;
	}
	.fe_sec .m_content h4{
		font-size: 2rem;
		padding-left: 10px;

	}
	.fe_sec .m_content .item+.item{
		margin-top: 60px;
	}
	.fe_sec .sticky_side .item p:last-child{
		font-size: 1.2rem;
	}
	.fe_sec .sticky_side .ill{
		width: 190px;
	}
}

@media (max-width: 650px){
	.fe_sec{
		flex-direction: column;
	}
	.fe_sec .sticky_side{
		position: static;
		display: flex;
		justify-content: space-between;
		width: 100%;
		margin-top: 0;
		flex-wrap: wrap;
		margin-bottom: 30px;
	}
	.fe_sec .sticky_side .item{
		width: 100%;
		text-align: center;
		padding: 10px 0;
		background-color: #fef8e5;
	}
	.fe_sec .sticky_side .ill{
		position: absolute;
		right: 0;
		top: 40px;
		width: 100px;
		margin: 0;
	}
	.fe_sec .sticky_side .item p:last-child{
		font-size: 1rem;
	}
	.fe_sec .sticky_side .item+.item{
		margin-top: 4px;
	}
	.fe_sec .sticky_side p.en{
		font-size: 1.2rem;
		margin: 0 auto 10px;
	}
	.feature .sub_ttl{
		margin-bottom: 40px;
	}
	.fe_sec .m_content{
		width: 100%;
	}
	.fe_sec .m_content h4{
		font-size: 1.6rem;
		padding-left: 0;
	}
	.fe_sec .m_content .item p.en{
		font-size: 1.6rem;
		margin-bottom: 7px;
	}
	.fe_sec .m_content .item p{
		padding: 0;
	}
	.fe_sec .sticky_side p.en::before{
		display: none;
	}
	.fe_sec .m_content .item+.item{
		margin-top: 30px;
	}
	.feature{
		padding-top: 20px;
	}
	.feature .m_btn{
		margin-top: 40px;
	}
}




/* service */

.service {
	background-color: #ebebeb;
	position: relative;
}

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

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

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

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

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

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

.service .sub_ttl{
	margin-bottom: 200px;
}

.service .left{
	width: 280px;
}

.service .item{
	width: calc(50% - 20px);
}


.service .item_list{
	width: calc(94% - 280px);
	flex-wrap: wrap;
	gap: 40px;
	max-width: 960px;
}

.service .item a{
	position: relative;
	display: block;
	width: 100%;
	height: 260px;
	border-radius: 10px;
	border-top-left-radius: 60px;
	overflow: hidden;
	transition: all .3s ease-out;
	box-shadow: rgb(170, 170, 170,0.2) 0px 4px 12px;
}

.service .item a::after{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #fff;
	bottom: 0;
	right: 0;
	width: 50px;
	aspect-ratio: 1 / 1;
	z-index: 3;
	border-top-left-radius: 10px;
}

.service .item img.bg{
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
	border-top-left-radius: 60px;
	z-index: 0;
}

.service .item img.ac{
	position: absolute;
	bottom: 6px;
	right: 7px;
	width: 34px;
	z-index: 5;
}

.service .item h4{
	position: absolute;
	bottom: 5px;
	right: 50px;
	white-space: nowrap;
	line-height: 1;
	letter-spacing: 0.04em;
	padding: 10px 14px 6px;
	color: #fff;
	font-weight: 600;
	z-index: 2;
}

.service .item a::before{
	content: "";
	display: inline-block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 30%;
	background: linear-gradient(0deg,rgba(20, 68, 30,1) 0%, rgba(47, 164, 73,0) 100%);
	z-index: 1;
}

.service .item a:hover img.bg{
	transform: scale(1.1);
}

.service .left .img{
	width: 80%;
}

.bg_dot{
	background-image: radial-gradient(#f5f5f5 20%, transparent 20%);
	background-size: 14px 14px;
	background-attachment: fixed;
  }

  ::-webkit-full-page-media, :future, :root .bg_dot{
	background-attachment: scroll;
}

@media (max-width: 1200px){
	.service .inner{
		flex-direction: column;
	}
	.service .item_list{
		width: 100%;
		gap: 30px;
	}
	.service .item{
		width: calc(50% - 15px);
	}
	.service .item a{
		height: 260px;
		border-top-left-radius: 30px;
	}
	.service .item img.bg{
		border-top-left-radius: 30px;
	}
	.service .left{
		position: relative;
		width: 100%;
	}
	.service .left .img{
		position: absolute;
		top: 0;right: 0;
		width: 180px;
	}
	.service .sub_ttl{
		margin-bottom: 60px;
	}
	.service .item h4{
		font-size: 2rem;
	}
}

@media (max-width: 650px){
	.service .left .img{
		width: 110px;
	}
	.service .item_list{
		flex-direction: column;
	}
	.service .item{
		width: 100%;
	}
	.service .item a{
		height: 200px;
	}
	.service .sub_ttl{
		margin-bottom: 40px;
	}
}



/* 商品紹介 */

.intro {
	padding: 80px 0;
}

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

.intro .inner{
	max-width: 1080px;
}

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

.intro p{
	font-size: 1.6rem;
}

.intro .left{
	width: 30%;
}

.intro .right{
	width: 56%;
}


@media (max-width: 1200px){
	.intro .img{
		position: absolute;
		top: 0;right: 0;
		width: 230px;
	}
	.intro .inner{
		position: relative;
		justify-content: flex-start;
	}
	.intro .right{
		width: 100%;
	}
	.intro .left{
		width: 0;
	}
	
}

@media (max-width: 650px){
	.intro .right{
		width: 100%;
	}
	.intro p{
		font-size: 1.35rem;
	}
	.intro .img{
		width: 150px;
	}
	.intro{
		padding: 50px 0;
	}
}



.imgarea{
	position: relative;
}

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


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

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

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


@media (max-width: 1200px){
	.imgarea img{
		height: 420px;
	}
	.custom-shape-divider-bottom-1750991511 svg{
		height: 40px;
	}
}


@media (max-width: 650px){
	.imgarea img{
		height: 300px;
	}
}



/* コンテンツ */

.menu_sec{
	padding-bottom: 50px;
	padding-top: 100px;
}

.menu_sec .sub_ttl{
	margin-bottom: 40px;
}
.menu_sec .m_btn+.m_btn{
	margin-top: 20px;
}

.menu_sec .inner{
	max-width: 1080px;
	background-color: #ebebeb;
	border-radius: 20px;
}

.menu_sec .left{
	width: 46%;
}

.menu_sec .left img{
	width: 100%;
	aspect-ratio: 1.1 / 1;
	object-fit: cover;
	border-radius: 10px;
}
.menu_sec .right{
	width: 40%;
}


@media (max-width: 1200px){
	.menu_sec .left{
		width: 46%;
	}
	.menu_sec .right{
		width: 46%;
	}
	.menu_sec .left .img{
		height: 100%;
	}
	.menu_sec{
		padding-bottom: 0;
	}
	.menu_sec .left img{
		aspect-ratio: 1 / 1.2;
	}
}


@media (max-width: 650px){
	.menu_sec .inner{
		flex-direction: column;
		border-bottom-left-radius: 20px;
	}
	.menu_sec .sub_ttl{
		margin-bottom: 30px;
		text-align: center;
	}
	.menu_sec .right{
		width: 100%;
		margin-top: 30px;
		justify-content: center;
		padding-bottom: 30px;
	}
	.menu_sec .m_btn+.m_btn{
		margin-top: 15px;
	}
	.menu_sec .left{
		width: 100%;
	}
	.menu_sec .left img{
		height: 220px;
	}
	.menu_sec{
		padding-bottom: 20px;
		padding-top: 50px;
	}
	.menu_sec .m_btn{
		margin: 0 auto;
	}
	
	
}





/* 新着情報 */


.news .mini_gallery01{
	margin-bottom: 150px;
}

.news .mini_gallery01 li:nth-child(even){
	margin-top: 40px;
}

.news .left{
	width: 280px;
}

.news .left .ill{
	width: 80%;
}

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

.news .news_wrapper{
	width: calc(94% - 280px);
	max-width: 960px;
	margin-top: 80px;
}

.news .news_list .list_hov a{
	display: flex;
	padding: 30px 0;
	align-items: center;
}

.news .news_list .list_hov a .title{
	position: relative;
	overflow: hidden;
	display: inline-block;
}

.news .news_list .list_hov a .title::before{
	content: "";
	display: inline-block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #333;
	transform: translateX(-100%);
	transition: all .3s;
}

.news .news_list .list_hov a:hover .title::before{
	transform: translateX(0);
}

.news .news_list .list_hov a:hover .title{
	opacity: 0.75;
}

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


.news .news_list .up_ymd{
	background-color: #ddd;
	padding: 8px 12px 5px;
	font-weight: 600;
	border-radius: 20px;
	margin-right: 40px;
	font-size: 1.2rem;
	color: #444;
	letter-spacing: normal;
	display: inline-block;
	margin-top: 30px;
	margin-bottom: 30px;
}

.news .news_list a .up_ymd{
	margin-top: 0;
	margin-bottom: 0;	
}

.news .news_list .list_hov{
	letter-spacing: 0.05em;
	border-bottom: solid 1px #ccc;
}

@media (max-width: 1200px){
	.news .left{
		position: relative;
		width: 100%;
	}
	.news .left .ill{
		position: absolute;
		top: 0;
		right: 0;
		width: 160px;
	}
	.news .inner{
		flex-direction: column;
	}
	.news .news_wrapper{
		margin-top: 0;
		width: 100%;
	}
	.news .sub_ttl{
		margin-bottom: 60px;
	}
	.news .mini_gallery01{
		margin-bottom: 100px;
	}
}

@media (max-width: 650px){
	.news .mini_gallery01 li:nth-child(even){
		margin-top: 20px;
	}
	.news .mini_gallery01{
		margin-bottom: 50px;
	}
	.news .left .ill{
		width: 100px;
		top: 20px;
	}
	.news .sub_ttl{
		margin-bottom: 30px;
	}
	.news .news_list .list_hov a{
		flex-direction: column;
		align-items: flex-start;
	}
	.news .news_list .up_ymd{
		margin-bottom: 10px;
		padding: 5px 10px 2px;
		margin-top: 15px;

	}
	.news .news_list .list_hov a{
		padding: 15px 0;
	}

	.news .news_list .list_hov .title{
		display: block;
		margin-bottom: 15px;
	}

	.news .news_list .list_hov a .title{
		margin-bottom: 0;
	}

	.news .news_list a .up_ymd{
		margin-bottom: 10px;
		margin-top: 0;
	}
}




/* フッター */


.foo_top {
	position: relative;
	padding: 100px 0;
	background: url(../img/foo_top_bg.jpg);
	background-size: cover;
	background-position-y: 25%;
}

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

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

.foo_top .sub_ttl{
	text-align: center;
	margin-bottom: 60px;
}

.foo_top .m_btn{
	width: 300px;
}

.foo_top .m_btn+.m_btn{
	margin-left: 60px;
}


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

.copy p{
	font-size: 1.3rem;
	text-align: center;
	background-color: #252525;
	color: #fff;
	font-weight: 500;
	letter-spacing: 0.2em;
	padding: 10px 0;
}

.foo_logo{
	margin-bottom: 20px;
}

.foo_logo span:first-child{
	font-size: 0.8em;
}

.foo_logo a{
	font-size: 3rem;
	font-weight: 500;
}


@media (max-width: 650px){
	.foo_top .btn_list{
		flex-direction: column;
		align-items: center;
	}
	.foo_top .m_btn+.m_btn{
		margin-left: 0;
		margin-top: 20px;
	}
	.foo_top{
		padding: 50px 0;
	}
	.foo_top .sub_ttl{
		margin-bottom: 40px;
	}
	.foo_btm{
		padding: 35px 0;
	}
	.copy p{
		font-size: 1.2rem;
	}
	.foo_logo a{
		font-size: 2.4rem;
	}
	.foo_logo{
		margin-bottom: 15px;
	}
	
}





/* 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;
    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%;
	border: solid 1px #2fa449;
}

.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: #2fa449;
	padding: 0;
}

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

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





/* kasou_top */


.kasou_top{
	position: relative;
	padding-top: 195px;
	padding-bottom: 110px;
	background: url(../img/imgarea.jpg);
	background-size: cover;
	background-position: center;
}

.kasou_top h2{
	position: relative;
	font-weight: 500;
	letter-spacing: 0.04em;
	margin-bottom: 10px;
	width: fit-content;
	margin: 0 auto 10px;
	color: #fff;
}

.kasou_top ol{
	position: relative;
	justify-content: center;
	color: #fff;
	z-index: 2;
}

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

.kasou_top ol li a{
	display: block;
	position: relative;
	color: #fff;
}

.kasou_top ol li a::before{
	content: "＞";
	display: inline-block;
	position: absolute;
	top: 50%;
	right: -30px;
	transform: translateY(-50%);
}

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

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

@media (max-width: 650px){
	.kasou_top{
		padding-top: 160px;
		padding-bottom: 80px;
	}
	.kasou_top h2{
		font-size: 3rem;
	}
}



/* おいしさの秘密ページ */

.kasou .sub_ttl{
	text-align: center;
	margin-bottom: 45px;
}

.p_feature{
	background-color: #fff;
	padding-bottom: 200px;
}

.p_feature .inner{
	position: relative;
}

.p_feature .ac_img{
	position: absolute;
	top: 0;
	right: 0;
	width: 180px;
}
.p_feature .ac_img02{
	position: absolute;
	bottom: -200px;
	left: 0;
	width: 200px;
	z-index: 2;
}

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

.p_feature .item .left{
	width: 46%;
}
.p_feature .item .right{
	width: 46%;
}

.p_feature .item h4{
	margin-bottom: 15px;
	font-weight: 600;
	border-bottom: solid 1px #2fa449;
}

.p_feature .item .left img{
	border-radius: 20px;
	width: 100%;
	object-fit: cover;
	aspect-ratio: 3 / 2;
	box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}

.p_feature .item .ill{
	width: 80px;
	margin-bottom: 20px;
}

.p_feature .item .en{
	font-weight: 600;
	color: #2fa449;
}

.p_feature .custom-shape-divider-bottom-1750906253 .shape-fill{
	fill: #ebebeb;
}

.flow{
	position: relative;
}

.flow .ac_img{
	position: absolute;
	top: 40px;
	right: 0;
	width: 20%;
	max-width: 300px;
	min-width: 110px;
}

.flow .item h4{
	letter-spacing: 0.05em;
	font-weight: 500;
	margin-bottom: 15px;
	border-left: solid 4px #2fa449;
	line-height: 1.2;
	padding-left: 12px;
}

.flow .item h4 .en{
	letter-spacing: normal;
	margin-right: 20px;
}

.flow .item .left{
	width:60%;
}

.flow .item .left img{
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	aspect-ratio: 2 / 1;
	object-fit: cover;
	width: 100%;
}

.flow .item .right{
	width:100%;
	background-color: #f5f5f5;
	height: 300px;
	border-radius: 5px;
}

.flow .item ul li{
	position: relative;
	padding-left: 25px;
	letter-spacing: 0.05em;
}

.flow .item ul li::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #2fa449;
	top: 45%;
	left: 0;
	transform: translateY(-50%);
	aspect-ratio: 1 / 1;
	width: 8px;
	border-radius: 50%;
}


.flow .item ul li+li{
	margin-top: 20px;
}

.flow .item ul{
	position: relative;
	margin-top: 30px;
	font-size: 1.7rem;
	margin-left: 15px;
	margin-right: 15px;
}

.flow .item ul::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: rgb(47, 164, 73,0.4);
	width: 2px;
	height: 100%;
	top: 0;
	left: 3px;
}


.flow .item{
	position: relative;
	width: 31%;
}



.flow .item:last-child::before{
	display: none;
}

.flow .item:last-child::after{
	display: none;
}

.p_intro{
	background-color: #ebebeb;
	padding-top: 50px;
}

.p_intro .item{
	width: 31%;
}

.p_intro .item p.cate{
	color: #2fa449;
	border: solid 1px #2fa449;
	border-radius: 20px;
	width: fit-content;
	line-height: 1;
	padding: 10px 12px 6px;
	font-size: 1.45rem;
	font-weight: 500;
	margin-bottom: 20px;
}

.p_intro h4{
	letter-spacing: 0.05em;
	line-height: 1;
	margin-bottom: 10px;
	font-weight: 500;
}
.p_intro .item .img{
	margin-bottom: 20px;
}
.p_intro .item p.mini{
	margin-left: 2px;
}

.p_intro .item .img img{
	width: 100%;
	aspect-ratio: 1 / 1.2;
	object-fit: cover;
}

.p_intro{
	position: relative;
}

.p_intro .ac_img{
	position: absolute;
	max-width: 270px;
	width: 16%;
	top: 80px;
	right: 5%;
	min-width: 140px;
}

.p_intro .ac_img02{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 15%;
	max-width: 250px;
}



@media (max-width: 1200px){
	.p_feature .flex_bet{
		flex-direction: column;
		width: 80%;
		margin: 0 auto;
	}
	.p_feature .item .left{
		width: 100%;
		margin-bottom: 30px;
	}
	.p_feature .item .right{
		width: 100%;
	}
	.flow .wrapper{
		flex-direction: column;
		width: 80%;
		margin: 0 auto;
	}
	.flow .item_list{
		flex-direction: column;
	}
	.flow .item .left img{
		border-bottom-left-radius: 0px;
		border-top-right-radius: 10px;
	}
	.flow .item ul{
		padding-bottom: 40px;
	}
	.flow .item .right{
		height: auto;
	}
	.flow .item{
		width: 100%;
	}
	.flow .item+.item{
		margin-top: 50px;
	}
	.flow .item::before{
		width: 55px;
	}
	.flow .item::after{
		bottom: -24px;
	}
	.flow .item h4{
		width: 80%;
		margin: 0 auto 20px;
	}
	.p_intro .ac_img02{
		width: 20%;
		min-width: 120px;
	}
}

@media (max-width: 650px){
	.p_feature .flex_bet{
		width: 100%;
	}
	.p_feature .item .left img{
		height: 190px;
	}
	.p_feature .item h4{
		font-size: 1.8rem;
	}
	.p_feature .item .en{
		font-size: 1.45rem;
	}
	.p_feature .item+.item{
		margin-top: 40px;
	}
	.flow .wrapper{
		width: 100%;
	}
	.flow .item h4{
		width: 100%;
		font-size: 1.8rem;
		margin-bottom: 10px;
	}
	.flow .item ul{
		font-size: 1.5rem;
	}
	.flow .item ul{
		margin-top: 25px;
		margin-left: 20px;
	}
	.flow .item::before{
		width: 40px;
	}
	.flow .item::after{
		width: 30px;
		bottom: -26px;
	}
	.p_intro .item_list{
		flex-direction: column;
		width: 80%;
		margin: 0 auto;
	}
	.p_intro .item{
		width: 100%;
	}
	.p_intro h4{
		font-size: 2rem;
	}
	.p_intro .item+.item{
		margin-top: 30px;
	}
	.p_intro .item p.cate{
		font-size: 1.3rem;
		margin-bottom: 15px;
	}
	.p_intro{
		padding-bottom: 80px;
	}
	.flow .item+.item{
		margin-top: 30px;
	}
	.p_intro .ac_img {
		right: 0;
		top: 30px;
	}
	.p_feature .ac_img{
		width: 100px;
	}
	.p_feature .ac_img02{
		width: 120px;
		bottom: -120px;
	}
	.p_feature{
		padding-bottom: 100px;
	}
	.flow .ac_img{
		top: 0;
	}
}





/* 事業内容ページ */



.p_service h3{
	letter-spacing: 0.07em;
	font-weight: 500;
	border-left: solid 5px #2fa449;
	line-height: 1.3;
	padding-left: 20px;
	margin-bottom: 30px;
	font-size:3rem;
}

.p_service .img{
	margin-bottom: 40px;
}

.p_service .img img{
	width: 100%;
	object-fit: cover;
	aspect-ratio: 7 / 4;
}

.p_service .inner{
	max-width: 1300px;

}

.p_service .tate{
	width: 140px;
	font-weight: 500;
}


.p_service .txt_box{
	width: calc(90% - 141px);
}

.p_service .item h5{
	margin-top: 20px;
	padding-top: 20px;
	padding-left: 24px;
	margin-bottom: 10px;
	border-top: solid 1px #ccc;
	position: relative;
	letter-spacing: 0.03em;
}

.p_service .item h5::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #2fa449;
	height: 3px;
	width: 15px;
	top: 58%;
	left: 0;
}

.p_service .item{
	background-color: #ebebeb;
	padding: 50px;
	border-radius: 10px;
	position: relative;
}

.p_service .item li{
	letter-spacing: 0.1em;
	font-size: 1.7rem;
}

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

.p_service .br{
	display: block;
	margin-top: 10px;
	font-size: 0.9em;
	font-weight: 600;
}

.p_service .ac_img{
	position: absolute;
	bottom: 30px;
	right: 30px;
	width: 200px;
}



@media (max-width: 1200px){
	.p_service .tate h4{
		font-size: 2.6rem;
	}
	.p_service .tate{
		width: 100px;
	}
	.p_service .txt_box{
		width: calc(95% - 100px);
	}
	.p_service h3{
		font-size: 2.6rem;
		margin-bottom: 20px;
	}
	.p_service .img{
		margin-bottom: 25px;
	}
	.p_service .item h5{
		font-size: 2rem;
	}
	.p_service .item li{
		font-size: 1.5rem;
	}
	.p_service .item h5::before{
		height: 2px;
		top: 62%;
		width: 12px;
	}
	.p_service .item{
		padding: 30px;
	}
	.p_service .ac_img{
		width: 160px;
	}
}

@media (max-width: 650px){
	.p_service h3{
		font-size: 2rem;
		padding-left: 14px;
	}
	.p_service .tate h4{
		margin-bottom: 15px;
		font-size: 2rem;
	}
	.p_service .item .flex_bet{
		flex-direction: column;
	}
	.p_service .tate{
		writing-mode: unset;
		width: 100%;
	}
	.p_service .txt_box{
		width: 100%;
	}
	.p_service .item h5{
		font-size: 1.8rem;
	}
	.p_service .item li{
		font-size: 1.4rem;
	}
	.p_service .item{
		padding: 30px 20px;
		padding-bottom: 120px;
	}
	.p_service .inner{
		width: 94%;
	}
	.p_service .item+.item{
		margin-top: 30px;
	}
	.p_service .ac_img{
		bottom: 10px;
		right: 10px;
		width: 120px;
	}
}




/* 商品紹介ページ */


.item_sec .center{
	text-align: center;
	margin-bottom: 40px;
}

.item_sec .item_list{
	flex-wrap: wrap;
	gap: 60px;
}

.item_sec .item{
	width: calc((100% - 120px) / 3);
}

.item_sec .item p{
	margin-top: 10px;
	text-align: center;
	font-weight: 500;
}

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

.item_sec .inner{
	max-width: 960px;
}


@media (max-width: 650px){
	.item_sec .item_list{
		flex-direction: column;
		align-items: center;
	}
	.item_sec .item{
		width: 50%;
	}
	.item_sec .item p{
		font-size: 1.6rem;
	}
	.item_sec .item_list{
		gap: 20px;
	}
	.item_sec .center{
		text-align: left;
	}
}






/* 会社概要ページ */


.greeting{
	position: relative;
	padding-bottom: 200px;
}

.greeting .img{
	width: 40%;
}

.greeting .txt_box{
	width: 54%;
	font-size: 1.8rem;
}

.greeting .custom-shape-divider-bottom-1750906253 .shape-fill{
	fill: #ebebeb;
}

.greeting .txt_box .in{
	max-width: 500px;
	margin: 0 auto;
}


.greeting .txt_box p+p{
	margin-top: 20px;
}


.greeting .txt_box p.btm{
	text-align: right;
	margin-top: 30px;
}

.greeting .inner{
	max-width: 1080px;
}

.outline{
	position: relative;
	background-color: #ebebeb;
	padding-bottom: 200px;
	padding-top: 30px;
}

.outline  table{
	width: 100%;
}

.outline table tr:first-child th,.outline table tr:first-child td{
	border-top: solid 1px #ccc;
}


.outline table th,.outline table td{
	padding: 18px 0 14px;
	letter-spacing: 0.05em;
}

.outline table th{
	width: 20%;
	background-color: #2fa449;
	color: #fff;
	text-align: center;
	border-bottom: solid 1px #ccc;
}
.outline table td{
	width: 80%;
	background-color: #fff;
	border-bottom: solid 1px #ccc;
	border-right: solid 1px #ccc;
	padding-left: 20px;
	padding-right: 20px;
}

.access{
	padding-top: 30px;
}

.access .map iframe{
	height: 400px;
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}


@media (max-width: 1200px){
	.greeting .txt_box{
		font-size: 1.6rem;
	}
}

@media (max-width: 650px){
	.greeting .flex_bet{
		flex-direction: column;
		align-items: center;
	}
	.greeting .img{
		width: 80%;
		margin-bottom: 30px;
	}
	.greeting .txt_box{
		width: 86%;
		font-size: 1.5rem;
	}
	.access .map iframe{
		border-radius: 10px;
	}
	.outline table th{
		width: 30%;
		display: table-cell;
		vertical-align: middle;
	}
	.outline table td{
		width: 70%;
	}
	.greeting{
		padding-bottom: 100px;
	}
	.outline{
		padding-bottom: 100px;
	}
	.access .map iframe{
		height: 260px;
	}
}





/* お問い合わせページ */



.co_top{
	position: relative;
	background-color:#fff;
}

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


.co_top h3{
	position: relative;
	text-align: center;
	padding-bottom: 5px;
	margin-bottom: 5px;
	font-weight: 500;
}

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

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

.co_top .item a{
	letter-spacing: 0.07em;
	display: block;
}

.co_top .item p.ch{
	margin-top: 5px;
}

.co_top ul li{
	position: relative;
	padding-left: 23px;
	margin-right: 15px;
}

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

.co_top .item{
	width: 46%;
	border: solid 1px #2fa449;
	background-color: #fff;
	padding: 40px;
	padding-bottom: 30px;
	max-width: 580px;
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
	border-radius: 10px;
}

.co_top .item .en{
	font-weight: bold;
	color: #2fa449;
	text-align: center;
	margin-bottom: 5px;
}

.co_top .item+.item{
	margin-left: 8%;
}

.co_top .item ul{
	margin-top: 10px;
	flex-wrap: wrap;
}



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

input[type="text"]{
	height: 45px;
	padding: 10px;
	background: #fff;
	border: solid 1px #aaa;
	width: 100% !important;
}

input[type="email"]{
	height: 45px;
	width: 100% !important;
	padding: 10px;
	background: #fff;
	border: solid 1px #aaa;
}


input{
	appearance: auto;
}

.mailform .contact_table .ib div{
	display: inline-block;
	margin-top: -3px;
	margin-right: 20px;
}



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.8rem;
	background: #fff;
	border: solid 1px #aaa;
	width: 100% !important;
	height: 120px !important;
}

.contact_table{
	width: 100%;
}

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




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

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

.contact_table th{
	font-weight: 500;
	letter-spacing: 0.1em;
	padding: 20px 0;
	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"]{
	padding: 6px 0;
}

.form_btn button{
	cursor: pointer;
	display: block;
	margin: 0 auto 5px;
	padding: 12px 0 7px;
	letter-spacing: 0.05em;
	text-align: center;
	width: 230px;
	transition: all 0.5s;
	background: #2fa449;
	color: #fff;
	border: solid 2px #2fa449;
	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;
	margin-bottom: 20px;
}

.form_attention p a{
	color: #0000ff;
	text-decoration: underline;
}

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

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

.recruit{
	background-color: #f5f5f5;
}

.recruit .s_f_txt{
	text-align: center;
	line-height: 1.8;
}



.postal_btn{
	background-color: #2fa449;
	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;
}


.mailsec{
	background-color: #f5f5f5;
}

.mailsec h3{
	position: relative;
	text-align: center;
	margin-bottom: 60px;
	padding-bottom: 10px;
	font-weight: 500;
}

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

.mailsec .k_contain{
	padding: 0;
	max-width: 1080px;
	margin: 0 auto;
}

.k_contact .top_text{
	max-width: 1080px;
	padding-top: 80px;
	line-height: 2;
	text-align: center;
	margin: 0 auto;
}


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

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

.Label::before{
	content: "";
	width: 12px;
	height: 12px;
	border-top: 2.5px solid #2fa449;
	border-right: 2.5px solid #2fa449;
	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.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;
	font-weight: 500;
	color: #2fa449;
	position: relative;
	padding-left: 26px;
	padding-top: 5px;

	border-bottom: dashed 1px #333;
}

.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: 54%;
	left: 0;
	transform: translateY(-50%);
}

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

@media (max-width: 1200px){
	.co_top .flex_center{
		flex-direction: column;
		align-items: center;
	}
	.co_top .item+.item{
		margin-left: 0;
		margin-top: 50px;
	}
	.co_top .item{
		width: 100%;
	}
	.contact_table th{
		display: block;
		width: 100%;
		border-bottom: 0px;
		padding-bottom: 0;
	}
	.contact_table td{
		width: 100%;
		display: block;
		padding-top: 15px;
	}
	.mailsec h5{
		margin-bottom: 30px;
	}
	.mailform .contact_table .ib div{
		margin-right: 15px;
	}
	.mailform .contact_table .ib div:nth-child(3){
		margin: 0;
	}
	.mailsec .inner{
		width: 94%;
	}
	.co_top .item .en{
		font-size: 2.6rem;
	}
	.co_top h3{
		font-size: 1.8rem;
		padding-bottom: 0;
	}
	.co_top .item{
		padding: 30px 20px 20px;
	}
	.co_top ul li:last-child{
		margin: 0;
	}
	.co_top .item+.item{
		margin-top: 30px;
	}
	.mailsec h3{
		font-size: 2rem;
		padding-bottom: 5px;
	}
}




/*thanksページ*/



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

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

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


