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

body{
	color: #111;
	background-color: #fff;
	-webkit-font-smoothing: antialiased;/*アンチエイリアスを滑らかに*/
	-moz-osx-font-smoothing: grayscale;
	line-height: 2;
	font-size: 1.6rem;
	font-family: "Noto Serif JP", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}

.en{
		font-family: "Cormorant SC", serif;
		font-weight: 400;
		font-style: normal;
}

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

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


.leftright::before{
	content: "";
	position: absolute;
	transform: translateX(-100%);
	width: calc(100% + 60px);
	height: 1px;
	background-color: #4EF800;
	left: -60px;
	top: 50%;
	transition: all 600ms ease-in-out;
	transition-delay: 300ms;
}

.leftright.inview::before{
	transform: translateX(0);
}

.leftmask::before{
	content: "";
	position: absolute;
	display: inline-block;
	width: 100%;
	height: 24px;
	left: 0;
	top: 0;
	background-color: #111;
	transform: translateX(-100%);
	transition: transform .1s;
	z-index: -2;
}

.leftmask.inview::before{
	transform: translateX(0);
}

.leftmask::after{
	content: "";
	position: absolute;
	display: inline-block;
	width: 100%;
	height: 24px;
	left: 0;
	top: 0;
	background-color: #4EF800;
	transform: translateX(-100%);
	transition: all .3s;
	transition-delay: 200ms;
	z-index: -1;
}

.leftmask.inview::after{
	transform: translateX(0);
}

.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{
	padding-left: 60px;
	padding-right: 60px;
}

.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{
	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{
	position: relative;
	padding: 100px 0;
	z-index: 2;
}

@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: 40px 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: #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;
}

.tegaki{
	font-family: "ta-koigokoro", sans-serif;
	font-weight: 400;
	font-style: normal;
}

/* btn */

.btn{
	margin-top: 30px;
	width: fit-content;
}

.btn a{
	position: relative;
	display: block;
	letter-spacing: 0.05em;
	padding-left: 25px;
	border-bottom: solid 1px #aaa;
	line-height: 2;
	padding-right: 60px;
}

.btn a::before{
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	border-radius: 50%;
	width: 12px;
	aspect-ratio: 1 / 1;
	background-color: #fbe600;
	transition: all .5s;
	z-index: -1;
}

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

.btn a .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: 15px;
	transition: all .4s;
}
.btn a:hover .arrow{
	right: 0px;
}


/* sub_ttl */

.sub_ttl .en{
	position: relative;
	margin-bottom: 30px;
	font-size: 12.7rem;
	display: block;
}

.sub_ttl .en::before{
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 60px;
	aspect-ratio: 1 / 1;
	width: 10px;
	background-color: #0C964A;
}

.sub_ttl .en::after{
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 70px;
	aspect-ratio: 1 / 1;
	width: 10px;
	background-color: #fbe600;
}

.sub_ttl .ja{
	display: inline-block;
	position: relative;
	overflow: hidden;
	color: #111;
	padding: 2px 4px;
	z-index: 3;
}


.sub_ttl{
	position: relative;
	font-size:  1.6rem;
	line-height: 1;
	letter-spacing: 0.08em;
	margin-bottom: 20px;
}


p.f_txt{
	font-size: 2.133rem;
	line-height: 1.8;
}

.top_down{
	position: relative;
	display: inline-block;
	background: linear-gradient(#000 70%, #4EF800 30%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	white-space: nowrap;
}

@media (max-width: 1200px){
	.sub_ttl .en{
		font-size: 8rem;
		margin-bottom: 20px;
	}
	.leftright::before{
		top: 45%;
	}
	.inner{
		padding-left: 40px;
		padding-right: 40px;
	}
}

@media (max-width: 650px){
	.sub_ttl .en{
		font-size: 5.8rem;
		margin-bottom: 15px;
	}
	.inner{
		padding-left: 20px;
		padding-right: 20px;
	}
	.leftright::before{
		top: 44%;
		width: calc(100% + 60px);
	}
	.sub_ttl .en::before{
		right: 0;
	}
	.sub_ttl .en::after{
		right: 10px;
	}
	.sub_ttl .ja{
		font-size: 1.4rem;
	}
	
}



/*スライダー*/

.top_slider{
	position: relative;
	top: 0;
	width: 100%;
	height: 85%;
}

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

.fv{
	position: relative;
	z-index: 10;
	background: #fff url(../img/noise.png);
	height: 110vh;
	width: 100%;
	min-height: 400px;
}


.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/top1.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/top3.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/imgbox.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;
} */


/*キャッチ*/

/* 
.fv .catch{
	position: absolute;
	font-size: min(6vw,9rem);
	bottom: 6vh;
	left: 60px;
	line-height: 1.4;
}

.fv .catch .fv_mask{
	overflow: hidden;
}

.fv .fv_txt{
	position: relative;
	padding: 0 20px;
	display: block;
	width: fit-content;
}

.fv .fv_txt + .fv_txt{
	margin-top: 20px;
}

.fv .fv_txt::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #111;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 2;
	transform: translateX(-101%);
	transition:  250ms;
}

.fv .fv_mask.inview .fv_txt::before{
	transform: translateX(0);
}


.fv .fv_txt::after{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #4EF800;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 2;
	transform: translateX(-101%);
	transition:  350ms;
	transition-delay: 300ms;
}

.fv .fv_mask.inview .fv_txt::after{
	transform: translateX(0);
} */


.fv_catch{
	position: absolute;
	bottom: 10vh;
	left: 60px;
	width: 65%;
	max-width: 1000px;
	z-index: 3;
}



@media (max-width: 1200px){
	.fv{
		height: 85vh;
	}
	/* .fv .catch{
		font-size: min(7.4vw,5.8rem);
		left: 40px;
	} */
	.fv_catch{
		width: 80%;
		left: 40px;
		bottom: 5vh;
	}
}

@media (max-width: 650px){
	/* .fv .catch{
		left: 20px;
	} */
	 /* .fv .fv_txt{
		padding: 0 10px;
	} */

	.fv{
		height: 70vh;
	}
	.fv_catch{
		left: 20px;
		width: 86%;
	}
}



/* header */

header{
	height: 80px;
	width: 100%;
	position: fixed;
	z-index: 99;
	top: 0;
	color: #fff;
	transition: all .3s;
}

h1{
	font-size: 3.4rem;
	letter-spacing: 0.03em;
	width: 25%;
}

h1 a{
	color: #fff;
}
h1 img{
	display: inline-block;
	height: 50px;
	object-fit: cover;
	margin-right: 18px;
}

.hd_inner{
	padding-left: 60px;
	width: 100%;
}

header .main_nav{
	width: 46%;
	justify-content: center;
}

header .main_nav a{
	display: block;
	letter-spacing: 0.05em;
	color: #fff;
	/* background-color: rgb(17, 17, 17,0.5);
	backdrop-filter: blur(5px); */
	padding: 0 10px;
}

header .main_nav a:hover{
	color: #4EF800;
}

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

header .tel_btn a{
	position: relative;
	display: block;
	background-color: #fff;
	padding: 0 20px;
	letter-spacing: 0.08em;
	overflow: hidden;
	width: fit-content;
}

header .tel_btn a::before, header .insta a::before{
	content: "";
	display: inline-block;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #4EF800;
	top: 0;
	left: 0;
	transform: translateX(-100%);
	transition: all 200ms;
	z-index: 0;
}

header .tel_btn a:hover::before,header .insta a:hover::before{
	transform: translateX(0);
}

header .tel_btn a span.mini{
	font-size: 1.3rem;
	line-height: 1;
	display: block;
	padding-bottom: 5px;
}

header .right{
	display: flex;
	width: 29%;
	justify-content: flex-end;
}



header .right .insta{
	text-align: center;
}

header .right .insta a{
	position: relative;
	display: block;
	color: #111;
	margin-left: 20px;
	background-color: #fff;
	width: 50px;
	line-height: 50px;
	aspect-ratio: 1 / 1;
	font-size: 2.2rem;
	overflow: hidden;
}

header .right .insta a i{
	position: relative;
	padding: 0;
	z-index: 1;
}




header .text{
	position: relative;
	z-index: 1;
}

header.change_header .tel_btn a{
	background-color: #eeeeee;
}

header.change_header .right .insta a{
	background-color: #eee;
}


header.change_header::after{
	content: '';
    width: 100%;
    height: 55px;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    z-index: -100;
}

header.change_header::before{
    pointer-events: none;
    position: absolute;
    content: "";
    left: 0;
    bottom: -25px;
    filter: brightness(0) invert(1);
    background: url(../img/header.png);
    background-position: bottom center;
    z-index: -1;
    width: 100%;
    height: 55px;
    background-size: 3000px 55px;
    background-repeat: repeat-x;
}


header.change_header .main_nav a{
	color: #111;
}

header.change_header .main_nav a:hover{
	color: #4EF800;
}

header.change_header h1 a{
	color: #111;
}
header.change_header #nav_toggle span{
	background-color: #111;
}

.open header.change_header #nav_toggle span{
	background-color: #fff;
}

@media (max-width: 1400px){
	header .main_nav{
		display: none;
	}
	header .right{
		display: none;
	}
	.hd_inner{
		padding-right: 0;
		padding-left: 40px;
	}
	h1{
		width: 70%;
	}
}


@media (max-width: 650px){
	.hd_inner{
		padding-left: 20px;
	}
	h1{
		font-size: 2.2rem;
	}
	header{
		height: 74px;
	}
	header.change_header::after{
		height: 30px;
	}
	header.change_header::before{
		bottom: -10px;
	}
}


/* news */

.news{
	background: #fff url(../img/noise2.png);
}


.news_list{
	position: relative;
	padding: 0 30px;
	width: 85%;
	max-width: 1200px;
	margin-top: 60px;
}

.news_list a{
	position: relative;
	display: block;
	overflow: hidden;
}

.news_list li{
	padding: 15px 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 a::before{
	content: "";
	display: inline-block;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #dcdcdc;
	top: 0;
	left: 0;
	transform: translateX(-100%);
	transition: all .5s ease;
	z-index: -1;
}

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



.news_list .up_ymd{
	display: block;
	background-color: #0C964A;
	color: #fff;
	width: fit-content;
	padding: 8px 11px;
	line-height: 1;
	margin-bottom: 0px;
	letter-spacing: 0.1em;
	font-weight: 700;
	font-size: 1.5rem;
}

.news_list .title{
	display: inline-block;
	padding-left: 10px;
	font-weight: 700;
	margin-top: 9px;
	font-size: 1.7rem;
	letter-spacing: 0.12em;
}


.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_list{
		width: 100%;
		padding: 0;
	}
}

@media (max-width: 650px){
	.news_list{
		margin-top: 0;
	}
	.news_list .up_ymd{
		font-size: 1.4rem;
		padding: 5px;
	}
	.news_list .title{
		font-size: 1.5rem;
		padding-left: 0;
		margin-top: 4px;
	}
	.news_list li{
		padding: 12px 0;
	}
}




/* aboutus */

.aboutus{
	background: #fff url(../img/noise.png);
}

/* .aboutus::after {
    content: '';
    position: absolute;
    bottom: -100px;
    display: block;
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, rgb(245, 245, 245,1) 70%, rgb(245, 245, 245,0));
    z-index: -1;
} */

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

.aboutus .txt_box{
	max-width: 800px;
}

.aboutus .img{
	position: absolute;
	right: 0;
	bottom: 0px;
	width: 50%;
	opacity: 0.3;
	max-width: 900px;
	min-width: 300px;
}

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




.imgbox{
	height: 70vh;
	width: 100%;
	background: url(../img/noise_img.jpg);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	min-height: 450px;
}

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

@media (max-width: 1200px){
	.imgbox{
		height: 50vh;
	}
}

@media (max-width: 650px){
	p.f_txt{
		font-size: 1.8rem;
	}
	.aboutus .f_txt{
		margin-bottom: 20px;
	}
	.imgbox{
		height: 250px;
		min-height: auto;
	}
}



/* recruit */

.recruit{
	overflow: visible;
	background: #acacac url(../img/noise.png);
	padding-top: 50px;
}

/* .recruit::after {
    content: '';
    position: absolute;
	top: -100px;
    display: block;
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, rgb(172, 172, 172,0) 70%, rgb(172, 172, 172,1));
    z-index: 10;
} */

.recruit .sticky_area{
	position: sticky;
	top: 35%;
	left: 50%;
	height: fit-content;
	width: 100%;
}

.recruit .sub_ttl{
	text-align: center;
	margin-bottom: 50px;
}

.recruit .sub_ttl .en{
	font-size: 9.044rem;
	margin-bottom: 15px;
}

.recruit .flex_bet{
	flex-direction: column-reverse;
}

.recruit .txt_box{
	width: fit-content;
	margin: 0 auto;
	background: rgb(255, 255, 255,0.8);
	backdrop-filter: blur(3px);
	padding: 40px;
}

.recruit .img_area{
	position: relative;
	height: 100vh;
	min-height: 750px;
}

.recruit .img_area .img{
	position: absolute;
}

.recruit .img_area .img img{
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	border-radius: 5px;
}

.recruit .img_area .img01{
	top: -200px;
	right: 60px;
	width: 20%;
}

.recruit .img_area .img01 img{
	aspect-ratio: 3 / 2;
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.recruit .img_area .img02{
	top: 360px;
	right: 60px;
	width: 25%;
}

.recruit .img_area .img02 img{
	aspect-ratio: 1 / 1;
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.recruit .img_area .img03{
	top: 100px;
	left: 46%;
	width: 22%;
}

.recruit .img_area .img03 img{
	aspect-ratio: 3 / 2;
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.recruit .img_area .img04{
	top: 0px;
	left: 60px;
	width: 24%;
}

.recruit .img_area .img04 img{
	aspect-ratio: 1 / 1;
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.recruit .img_area .img05{
	top: 600px;
	left: 10%;
	width: 30%;
}

.recruit .img_area .img05 img{
	aspect-ratio: 2 / 1;
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.recruit .img_area .img06{
	top: -350px;
	left: 10%;
	width: 30%;
}

.recruit .img_area .img06 img{
	aspect-ratio: 2 / 1;
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.recruit .blur img{
	filter: blur(10px);
	transition: all .7s;
	transition-delay: 500ms;
}
.recruit .blur.inview img{
	filter: blur(0px);
}

@media (max-width: 1200px){
	.recruit .img_area{
		height: 60vh;
	}
	.recruit .sub_ttl .en{
		font-size: 8rem;
	}
	.recruit .img_area .img06{
		width: 45%;
		left: 20px;
	}
	.recruit .img_area .img01{
		right: 50px;
		width: 30%;
	}
	.recruit .img_area .img04{
		left: 80px;
		width: 33%;
	}
	.recruit .img_area .img03{
		left: auto;
		right: 80px;
		width: 26%;
	}
	.recruit .img_area .img02{
		width: 38%;
	}
	.recruit .img_area .img05{
		width: 35%;
		top: 500px;
	}
}

@media (max-width: 650px){
	.recruit .sub_ttl .en{
		font-size: 5.8rem;
	}
	.recruit .sub_ttl{
		margin-bottom: 20px;
	}
	.recruit .img_area{
		min-height: 335px;
		height: 35vh;
	}
	.recruit .img_area .img06{
		width: 58%;
		top: -380px;
	}
	.recruit .img_area .img01{
		right: 20px;
		top: -270px;
		width: 35%;
	}
	.recruit .img_area .img04{
		left: 20px;
		top: -180px;
	}
	.recruit .img_area .img03{
		width: 30%;
		top: -50px;
		right: 20px;
	}
	.recruit .img_area .img02{
		top: 50px;
	}
	.recruit .img_area .img05{
		top: 220px;
		left: 20px;
	}
	.recruit .sticky_area{
		top: 20%;
	}
	.recruit .txt_box{
		padding-left: 20px;
		padding-right: 20px;
	}
}

/* service */

.service{
	padding-bottom: 0;
	background: #fff url(../img/noise2.png);
}

.service .txt_box{
	max-width: 800px;
}

.service .item_list{
	position: relative;
	margin-top: 60px;
	background: url(../img/ser_bg.jpg);
	background-size: cover;
	background-position: center;
}

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

.service .item{
	width: calc(100% / 5);
}

.service .item a{
	display: block;
    width: 100%;
    position: relative;
    height: 100%;
    padding: 240px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
	cursor: url(../img/cursor.png),auto;
}

.service .item a .bg{
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	top: 0;
	left: 0;
	opacity: 0;
	transition: transform 6s, opacity .5s;
	filter: brightness(0.8);
}

.service .item .text{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 90%;
	text-align: center;
	color: #fff;
}

.service .item .text h3{
	font-size: 2.262rem;
	font-weight: bold;
	letter-spacing: 0.15em;
}

.service .item .text h3 .en{
	display: block;
	font-size: 3rem;
}

.service .item .icon{
	width: 50px;
	aspect-ratio: 1 / 1;
	margin: 20px auto 0;
}

.service .item .icon img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service .item a:hover .bg{
	opacity: 1;
	transform: scale(1.2);
}

.service .item a:hover{
	
}

@media (max-width: 1200px){
	.service .item_list{
		flex-direction: column;
	}
	.service .item{
		width: 100%;
	}
	.service .item a{
		padding: 130px 0;
	}
}


@media (max-width: 650px){
	.service .item .text h3{
		font-size: 1.8rem;
	}
	.service .item .text h3 .en{
		font-size: 2.2rem;
	}
	.service .item .icon{
		width: 35px;
	}
	.service .item a{
		padding: 90px 0;
	}
	.service .item_list{
		margin-top: 30px;
	}
}


/* works */

.works{
	background: #fff url(../img/noise.png);
}

.works .txt_box{
	margin-bottom: 60px;
}

.works ul li:nth-child(even){
	margin-top: 20px;
}
.works ul li:nth-child(odd){
	margin-bottom: 20px;
}


@media (max-width: 650px){
	.works .txt_box{
		margin-bottom: 40px;
	}
	.works{
		padding-bottom: 20px;
		padding-top: 50px;
	}
}


/* footer */

footer{
	position: relative;
	z-index: 10;
}

.foo_top{
	position: relative;
	z-index: 10;
	background: #fff url(../img/noise2.png);
	padding: 80px 0;
}


.foo_top .btn{
	margin: 0;
}

.foo_top .btn+.btn{
	margin-top: 15px;
}

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

.foo_top .sub_ttl .en{
	font-size: 9.044rem;
	margin-bottom: 15px;
}

.foo_top .in{
	position: relative;
	max-width: 900px;
	margin: 0 auto;
	padding: 0;
}



.foo_top .btn_area{
	width: fit-content;
	margin: -20px 0 0 auto;
}



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

.foo_img .img img{
	height: 200px;
	width: 100%;
	object-fit: cover;
}

.foo_img{
	margin-top: 40px;
}

.foo_img .img:nth-child(2){
	margin-top: 40px;
}
.foo_img .img:nth-child(3){
	margin-top: 80px;
}

.foo_top .txt_box{
}



.foo_btm{
	position: relative;
	background-color: #e0e0e0;
	padding: 80px 0;
}

.foo_btm::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #acacac;
	left: 35%;
	top: 0;
	width: 1px;
	height: 100%;
}

.foo_btm nav li a{
	display: block;
	padding: 0 20px;
	border-right: solid 1px #acacac;
}

.foo_btm nav li a:hover{
	color: #4EF800;
}

.foo_btm nav li:last-child a{
	border-right: 0px;
}

.foo_btm nav{
	margin-bottom: 25px;
}

.foo_logo{
	position: relative;
}

.foo_logo a{
	font-size: 3.4rem;
	line-height: 1;
	margin: 6px 0 30px;
	letter-spacing: 0.03em;
}

.foo_logo img{
	display: inline-block;
	height: 50px;
	object-fit: cover;
	margin-right: 18px;
}

.foo_logo i{
	padding-left: 25px;
	font-size: 2.8rem;
	color: #0C964A;
}

.foo_logo .insta{
	position: absolute;
	bottom: 0;
	left: 55%;
}

.foo_logo .insta a:hover{
	opacity: 0.7;
}


.foo_btm .left{
	display: flex;
	width: 35%;
	justify-content: center;
}

.foo_btm .right{
	display: flex;
	width: 65%;
	justify-content: center;
}

.copy p{
	padding: 10px 0;
	text-align: center;
	background-color: #fff;
}


@media (max-width: 1200px){
	.foo_top .sub_ttl .en{
		font-size: 8rem;
	}
	.foo_top .btn_area{
		margin-top: 0;
	}
	footer .flex_bet{
		flex-direction: column;
		text-align: center;
	}
	.foo_inner{
		padding-left: 0;
		padding-right: 0;
	}
	.foo_btm .left{
		width: 100%;
	}
	.foo_btm .right{
		width: 100%;
	}
	.foo_btm nav{
		margin-top: 25px;
	}
	.foo_btm{
		padding: 50px 0;
		padding-bottom: 0;
	}
	.foo_btm::before{
		display: none;
	}
	.foo_top .in{
		max-width: none;
		padding-left: 40px;
		padding-right: 40px;
	}
	.copy{
		width: 100%;
	}
	.foo_btm .right .in{
		width: 100%;
	}
	footer nav ul{
		justify-content: center;
	}
	.foo_btm nav{
		margin-bottom: 0;
		padding-bottom: 50px;
	}
	.foo_logo a{
		justify-content: center;
		padding-right: 30px;
	}
	.foo_logo .insta{
		left: 70%;
	}
}


@media (max-width: 650px){
	.foo_top .sub_ttl .en{
		font-size: 5.8rem;
	}
	.foo_top{
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.foo_top .sub_ttl{
		margin-bottom: 20px;
	}
	.foo_top .txt_box{
		width: fit-content;
		margin: 0 auto;
	}
	.foo_top .btn_area{
		margin: 30px auto 0;
		text-align: center;
	}
	.foo_img .img img{
		height: 120px;
	}
	.foo_logo a{
		font-size: 3rem;
	}
	.foo_btm nav .flex{
		flex-direction: column;
	}
	.foo_btm nav li a{
		border-right: none;
	}
	.foo_btm{
		padding: 30px 0;
		padding-bottom: 0;
	}
	.copy p{
		padding: 10px 0;
		font-size: 1.3rem;
	}
	.copy{
		margin-bottom: 0;
	}
	.foo_top .in{
		padding-left: 20px;
		padding-right: 20px;
	}
	.foo_btm nav{
		margin-bottom: 0;
		padding-bottom: 30px;
	}
	.foo_btm nav li a{
		position: relative;
		padding: 8px 0;
		border-bottom: solid 1px #fff;
		text-align: left;
		padding-left: 30px;
		letter-spacing: 0.05em;
		font-size: 1.4rem;
	}

	.foo_btm nav li a::before{
		content: "";
		display: inline-block;
		position: absolute;
		background-color: #0C964A;
		height: 2px;
		width: 6px;
		transform: rotate(45deg) translateY(-50%);
		transform-origin: center;
		top: calc(50% - (3px / sqrt(2)) + 1px);
		left: 10px;
	}
	.foo_btm nav li a::after{
		content: "";
		display: inline-block;
		position: absolute;
		background-color: #0C964A;
		height: 2px;
		width: 6px;
		transform: rotate(135deg) translateY(-50%);
		transform-origin: center;
		top: calc(50% + (3px / sqrt(2)) - 1px);
		left: 10px;
	}

	.foo_btm nav li{
		width: 80%;
		margin: 0 auto;
	}
	.foo_logo a{
		margin-bottom: 10px;
	}
}


/* 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: 210px;
    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: 900;
    font-size: 10px;
    color: #fff;
}

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

.k_recruit .page_top{
	right: 3%;
    bottom: 5%;
}

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


/* fix_banner */

.fix_banner{
	position: fixed;
	bottom: 40px;
	right: 60px;
	z-index: 10;
}

.fix_banner a{
	display: block;
	aspect-ratio: 5 / 3;
	width: 250px;
}

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

.fix_banner a:hover{
	opacity: 0.8;
}

@media (max-width: 1400px){
	.fix_banner{
		right: 40px;
	}
	.fix_banner a{
		width: 220px;
	}
}


@media (max-width: 650px){
	.fix_banner{
		display: none;
	}
}


/* fix_rec */

.fix_rec{
	position: fixed;
	display: none;
	bottom: 0;
	width: 100%;
	z-index: 11;
}

.fix_rec a{
	display: block;
	background-color: #0C964A;
	color: #fff;
	padding: 5px 0;
	font-size: 1.6rem;
	letter-spacing: 0.1em;
	line-height: 1.6;
	text-align: center;
}

.fix_rec a i{
	padding-left: 10px;
}

@media (max-width: 650px){
	.fix_rec{
		display: block;
	}
}



/* 　　　下層ページ 　　　*/


.kasou_top h2{
	font-size: 6rem;
	font-weight: 500;
	line-height: 1.7;
}

.kasou_top h2 .en{
	position: relative;
	display: block;
	font-size: 0.6em;
	padding-left: 30px;
}

.kasou_top{
	padding-top: 90px;
	margin-bottom: 100px;
}

.kasou_top h2 .en::before{
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 0;
	background-color: #fbe600;
	aspect-ratio: 1 / 1;
	width: 10px;
}
.kasou_top h2 .en::after{
	content: "";
	display: inline-block;
	position: absolute;
	bottom: 50%;
	left: 0;
	background-color: #0C964A;
	aspect-ratio: 1 / 1;
	width: 10px;
}


.kasou_top .left{
	width: 50%;
	display: flex;
	justify-content: center;
}

.kasou_top .img{
	width: 50%;
}

.kasou_top .img img{
	height: 600px;
	width: 100%;
	object-fit: cover;
}

#news-detail .kasou_top h2{
	font-size: 4.2rem;
}

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

.kasou{
	background: #fff url(../img/noise.png);
}



.kasou header .tel_btn a{
	background-color: #eeeeee;
}

.kasou header .right .insta a{
	background-color: #eee;
}


.kasou header::after{
	content: '';
    width: 100%;
    height: 55px;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    z-index: -100;
}

.kasou header::before{
    pointer-events: none;
    position: absolute;
    content: "";
    left: 0;
    bottom: -25px;
    filter: brightness(0) invert(1);
    background: url(../img/header.png);
    background-position: bottom center;
    z-index: -1;
    width: 100%;
    height: 55px;
    background-size: 3000px 55px;
    background-repeat: repeat-x;
}


.kasou header .main_nav a{
	color: #111;
}

.kasou header .main_nav a:hover{
	color: #4EF800;
}

.kasou header h1 a{
	color: #111;
}
.kasou header #nav_toggle span{
	background-color: #111;
}

.open.kasou header #nav_toggle span{
	background-color: #fff;
}



/*パンくず*/
.breadcrumb{
	position: relative;
	z-index: 3;
	font-size: 1.4rem;
	letter-spacing: 0.05em;
	padding: 0;
	font-weight: 500;
	margin-top: 40px;
	padding-left: 6px;
}
.breadcrumb li {
	display: inline;
	list-style: none;
}
.breadcrumb li:after {
	content: '>';
	padding: 0 0.2em;
	vertical-align: top;
}
.breadcrumb li:last-child:after {
	display: none;
}
.breadcrumb li a {
	text-decoration: none;
}

.breadcrumb li a:hover{
	opacity: 0.7;
}

.s_ttl{
	position: relative;
	font-size: 3.8rem;
	line-height: 1.6;
	margin-bottom: 40px;
}


.s_ttl .en{
	display: block;
	font-size: 2.8rem;
}

.m_ttl{
	position: relative;
	font-size: 2.2rem;
	background-color: #4EF800;
	width: fit-content;
	line-height: 1;
	padding: 4px 10px;
	margin-bottom: 20px;
}


@media (max-width: 1200px){
	.kasou_top h2{
		font-size: 4rem;
	}
	.kasou_top .img img{
		height: 400px;
	}
	#news-detail .kasou_top h2{
		font-size: 3rem;
	}
	.kasou_top .img{
		width: 40%;
	}
	.kasou_top .left{
		width: 60%;
	}
}

@media (max-width: 650px){
	.kasou_top .flex_bet{
		flex-direction: column;
	}
	.kasou_top .left{
		width: 100%;
		margin-bottom: 30px;
		justify-content: flex-start;
		padding: 30px 0;
		padding-left: 20px;
	}
	.kasou_top .img{
		width: 80%;
		margin: 0 0 0 auto;
	}
	.kasou_top .img img{
		height: 240px;
	}
	.breadcrumb{
		margin-top: 20px;
	}
	.kasou_top h2{
		font-size: 3.6rem;
	}
	.kasou_top{
		margin-bottom: 40px;
	}
	#news-detail .kasou_top h2{
		font-size: 2.6rem;
	}
}


/*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: 20px 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;
	padding-right: 17px;
	background-color: #4EF800;
}
.info_table td{
	padding-left: 10px;
	padding-right: 10px;
	width: 70%;
	border-right: 1px solid #ccc;
	border-left: 1px solid #ccc;
	background-color: #fff;
}


/* 仕事を知る ページ */



.p_service h3{
	font-size: 4.6rem;
	letter-spacing: 0.05em;
	line-height: 1;
}

.p_service .num{
	position: relative;
	font-size: 7rem;
	line-height: 1;
	margin-left: 20px;
	color: #0C964A;
}

.p_service .num::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #0C964A;
	top: -50px;
	left: 40%;
	transform: translateX(-50%);
	width: 2px;
	height: 40px;
}

.p_service .item .left{
	position: relative;
	width: 36%;
}

.p_service .item .left img{
	width: 100%;
	height: 500px;
	object-fit: cover;
	border-radius: 20px;
	filter: grayscale(1);
}


.p_service .item .right{
	position: relative;
	width: 56%;
}

.p_service .item .right .ttl{
	width: 25%;
}

.p_service .item .right .txt_box{
	position: relative;
	width: 70%;
	max-width: 480px;
	margin: 0 auto;
	line-height: 2.4;
	display: flex;
	align-items: flex-end;
	padding-bottom: 60px;
}

.p_service .item .right .tate{
	width: 70px;
}

.p_service .item .ac_txt{
	position: absolute;
	top: 10px;
	right: 20px;
	transform: translateX(100%);
	color: #ccc;
	line-height: 1.2;
	font-size: 5rem;
	letter-spacing: 0.05em;
	opacity: 0.7;
}

.p_service .item .omk{
	width: calc(100% / 3);
}

.p_service .item .omk p{
	font-size: 1.5rem;
	line-height: 1.4;
	margin-top: 7px;
}

.p_service .item p.ch{
	margin-top: 20px;
}

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

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

.p_service #s2 .right .txt_box{
	margin-top: 200px;
}


.flow .flow_box{
	flex-wrap: wrap;
	gap: 3px;
}

.flow .flow_box .item{
	width: calc((100% - 6px) / 3);
}

.flow .item .en{
	font-size: 2.4rem;
}

.flow .item{
	position: relative;
	background-color: #fff ;
	padding: 15px 0;
	font-size: 1.8rem;
	overflow: hidden;
}

.flow .item p{
	padding-left: 15px;
}

.flow .item::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/arrow.png);
	aspect-ratio: 3 / 2.5;
	background-size: cover;
	background-position: center;
	width: 30px;
	opacity: 0.7;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
}


.area .left p:nth-child(1 of p){
	font-size: 2.6rem;
	background-color: #4EF800;
	padding-left: 20px;
	padding-right: 20px;
	line-height: 1.6;
	margin-bottom: 15px;
	width: fit-content;
}

.area .img{
	width: 40%;
}

.area .left{
	width: 55%;
}


@media (max-width: 1200px){
	.p_service .item .in.flex_bet{
		flex-direction: column;
	}
	.p_service .item .left{
		width: 65%;
	}
	.p_service .item .left img{
		height: 320px;
	}
	.p_service .item .right{
		width: 100%;
	}
	.p_service h3{
		font-size: 3.6rem;
	}
	.p_service .num{
		font-size: 5rem;
	}
	.p_service .item .right .tate{
		width: 50px;
	}
	.p_service .item .right .txt_box{
		padding-bottom: 0;
		margin-top: 30px;
		max-width: none;
		margin-left: 0;
		margin-right: 0;
	}
	.p_service .item .ac_txt{
		font-size: 4rem;
		transform: translateX(0);
		right: -100px;
	}
	.p_service .item .right .ttl{
		margin-top: -300px;
	}
	.p_service .item+.item{
		margin-top: 80px;
	}
	.flow .flow_box .item{
		width: calc((100% - 3px) / 2);
	}
	.flow{
		padding: 0;
	}
	.area .flex_bet{
		flex-direction: column;
	}
	.area .left{
		width: 100%;
	}
	.area .img{
		margin-top: 40px;
		margin: 50px auto 0;
	}
	.p_service #s2 .right .txt_box{
		margin-top: 30px;
	}
	
}

@media (max-width: 650px){
	.p_service .item .right .ttl{
		width: 20%;
	}
	.p_service h3{
		font-size: 2.4rem;
	}
	.p_service .num{
		font-size: 3rem;
	}
	.p_service .item .right .tate{
		width: 30px;
		margin-left: 0;
	}
	.p_service .item .right .ttl{
		justify-content: space-between;
		margin-top: 0;
	}
	.p_service .item .left img{
		height: 190px;
	}
	.p_service .item .right .txt_box{
		width: 75%;
		line-height: 2;
		margin-top: 15px;
	}
	.p_service .item .left{
		width: 74%;
	}
	.p_service .item .ac_txt{
		font-size: 2.8rem;
	}
	.p_service .num::before{
		width: 1px;
	}
	.p_service .item+.item{
		margin-top: 40px;
	}
	.s_ttl{
		font-size: 2.8rem;
		margin-bottom: 25px;
		text-align: center;
	}
	.s_ttl .en{
		font-size: 2rem;
	}
	.flow .flow_box .item{
		width: 100%;
	}
	.flow .item{
		font-size: 1.6rem;
	}
	.area .left p:nth-child(1 of p){
		font-size: 1.8rem;
	}
	.area .img{
		margin-top: 20px;
		width: 70%;
	}
	.flow .item::before{
		width: 20px;
		transform: rotate(90deg);
		transform-origin: top;
	}
	.p_service .item .omk{
		width: 70%;
	}
	.p_service .item .omk_box{
		flex-direction: column;
	}
	.p_service .item .omk+.omk{
		margin-top: 10px;
	}
	
}


.motto ul li{
	padding: 25px 0;
	border-top: solid 1px #ccc;
	letter-spacing: 0.05em;
	padding-left: 5px;
}

.motto ul li:last-child{
	border-bottom: solid 1px #ccc;
}

.motto .img{
	width: 42%;
}

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

.motto .center_l{
	width: 50%;
}

.motto ul{
	width: 100%;
}

.creed{
	padding-top: 0;
}

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

.creed .item{
	width: calc(100% / 4);
	font-size: 2.2rem;
	text-align: center;
	background-color: #fff;
	border-right: solid 1px #ccc;
}

.creed .item:first-child{
	border-left: solid 1px #ccc;
}

.creed .item p{
	padding: 20px 0;
}

.motto ul li span{
	display: block;
	padding-left: 180px;
}

.access{
	padding-top: 0;
	position: relative;
}

.access .inner{
	position: relative;
}

.access .left{
	width: 48%;
}
.access .right{
	width: 48%;
}

.access .ac_img{
	position: absolute;
	right: 0;
	top: 0;
	width: 100px;
	opacity: 0.5;
}

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

.greeting{
	background: url(../img/haikan.jpg);
	background-size: cover;
	background-position: center;
}

.greeting .txt_box .m_txt{
	line-height: 2.4;
}

.greeting .txt_box{
	max-width: 700px;
	margin: 0 auto;
	background-color: rgb(255, 255, 255,0.86);
	padding: 60px;
	box-sizing: content-box;
	backdrop-filter: blur(8px);
}

.greeting .txt_box p.btm{
	text-align: right;
	margin-top: 20px;
	font-size: 2.2rem;
}

@media (max-width: 1200px){
	.access .ac_img{
		width: 70px;
	}
	.access{
		padding-top: 0;
	}
	.motto .flex_bet{
		flex-direction: column-reverse;
	}
	.motto .center_l{
		width: 100%;
	}
	.greeting .txt_box{
		padding: 40px;
	}
	.motto .img{
		margin-top: 60px;
	}
	.creed .item{
		width: calc(100% / 2);
		border-bottom: solid 1px #ccc;
	}
	.creed .item:nth-child(3){
		border-left: solid 1px #ccc;
	}
	.creed .item:nth-child(1){
		border-top: solid 1px #ccc;
	}
	.creed .item:nth-child(2){
		border-top: solid 1px #ccc;
	}
}

@media (max-width: 650px){
	.access .flex_bet{
		flex-direction: column;
	}
	.access .ac_img{
		width: 50px;
	}
	.access .left{
		width: 100%;
	}
	.access .right{
		width: 100%;
		margin-top: 30px;
	}
	.m_ttl{
		font-size: 1.8rem;
		margin-bottom: 10px;
	}
	.access iframe{
		height: 200px;
	}
	.greeting .txt_box{
		padding: 15px;
	}
	.motto ul li{
		padding: 15px 0;
		line-height: 1.7;
	}
	.motto .img{
		margin-top: 30px;
		width: 100%;
	}
	.greeting .inner{
		width: 94%;
	}
	.motto .img img{
		aspect-ratio: 3 / 2;
	}
	.creed .item{
		width: 100%;
		border: none;
		font-size: 1.6rem;
	}
	.creed .item:first-child{
		border: none;
	}
	.creed .item:nth-child(3){
		border: none;
	}
	.creed .item:nth-child(2){
		border: none;
	}
	.creed .item p{
		padding: 16px 0;
	}
	.creed .item + .item{
		margin-top: 2px;
	}
	.greeting .txt_box p.btm{
		font-size: 1.8rem;
	}
	.motto ul li span{
		padding-left: 70px;
	}
}



/* 採用情報 ページ */

.apply .n_btn a{
	display: block;
	background-color: #fbe600;
	border: solid 2px #fbe600;
	text-align: center;
	font-size: 1.4rem;
	padding: 5px 0;
}

.apply .n_btn a:hover{
	background-color: #fff;
}

.apply .n_btn{
	width: 140px;
	margin-top: 8px;
}

.apply h4{
	margin-top: 40px;
	position: relative;
	font-size: 2.2rem;
	letter-spacing: 0.05em;
	padding-left: 14px;
	margin-bottom: 20px;
}

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

.faq .item{
	font-size: 1.8rem;
	border: solid 1px #4EF800;
}

.qu{
	background-color: #f5f5f5;
}

.an{
	background-color: #fff;
}

.qu p.en,.an p.en{
	font-size: 3rem;
	padding-right: 30px;
}

.faq .item+.item{
	margin-top: 20px;
}

.qu,.an{
	padding: 6px 0;
	padding-left: 20px;
}

.qu p,.an p{
	display: flex;
	align-items: center;
}

.rec_img{
	position: relative;
	width: 60%;
}

.rec_img img{
	width: 100%;
	height: 600px;
	object-fit: cover;
}

.rec_img .ac_txt{
	position: absolute;
	font-size: 4rem;
	bottom: -10px;
	right: 0;
	line-height: 1.2;
	transform: translateX(60%);
	color: #4EF800;
	background-color: #acacac;
	padding: 0 20px;
	letter-spacing: 0.05em;
}

.k_recruit .fix_banner{
	display: none;
}
.k_recruit .fix_rec{
	display: none;
}

.rec_top{
	background: #e4e4e4 url(../img/noise.png);
}

.rec_top .inner{
	position: relative;
}

.rec_top .top_area{
	position: relative;
}

.rec_top .img{
	width: 40%;
}

.rec_top .img img{
	width: 100%;
	height: 550px;
	object-fit: cover;
	border-radius: 5px;
}

.rec_top p.fir{
	position: absolute;
	font-size: 2.4rem;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	letter-spacing: 0.05em;
}

.rec_top p.fir span{
	display: block;
	background-color: #fff;
	padding: 0 15px;
	width: fit-content;
}

.rec_top p.fir span+span{
	margin-top: 10px;
}

.rec_top .btm_area{
	margin-top: 40px;
	margin-bottom: 100px;
}

.rec_top .btm_area p+p{
	margin-top: 15px;
}

.syahu{
	position: relative;
}

.syahu .txt_box{
	
	line-height: 2.4;
	max-width: 520px;
	margin: 0 0 0 auto;
}

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

.syahu .img{
	width: 40%;
	margin-top: -580px;
}

.syahu .ac_img{
	position: absolute;
	bottom: -80px;
	right: 0;
	width: 240px;
}



.syahu .img img{
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	object-position: right;
	box-shadow: rgb(78, 248, 0,0.8) 0px 2px 8px 0px;
	max-height: 800px;
	min-height: 740px;
}

.voice .img{
	width: 200px;
}

.voice .txt_box{
	width: calc(92% - 200px);
}

.voice .txt_box p:first-child{
	font-size: 2.4rem;
	margin-bottom: 10px;
}

.voice{
	padding: 0;
}

.voice .item+.item{
	margin-top: 50px;
}

.img_area2{
	margin-top: 100px;
}

.img_area2 img{
	width: 100%;
	height: 540px;
	object-fit: cover;
}


@media (max-width: 1200px){
	.rec_img img{
		height: 400px;
	}
	.syahu .img{
		margin-top: 0;
	}
	.syahu .txt_box{
		margin: 0 auto;
		margin-bottom: 60px;
	}
	.syahu .img{
		width: 80%;
		margin: 0 auto;
	}
	.syahu .img img{
		min-height: auto;
		height: 300px;
	}
	.rec_top p.fir{
		position: static;
		transform: translateY(0);
		margin-top: 40px;
		font-size: 2rem;
	}
	.rec_top .top_area{
		flex-direction: column;
	}
	.rec_top .btm_area{
		margin-bottom: 0;
	}
	.rec_top .img{
		width: 80%;
	}
	.rec_top .img img{
		height: auto;
		aspect-ratio: 3 / 2;
		object-fit: cover;
	}
	.voice .flex_bet{
		flex-direction: column;
		align-items: center;
	}
	.voice .txt_box{
		width: 100%;
		margin-top: 20px;
	}
	
	.img_area2 img{
		height: 400px;
	}
	.syahu .ac_img{
		bottom: auto;
		top: -50px;
		width: 190px;
	}
	.syahu{
		padding-top: 200px;
	}
}

@media (max-width: 650px){
	.faq .item{
		font-size: 1.5rem;
	}
	.qu p.en, .an p.en{
		font-size: 2rem;
	}
	.qu p, .an p{
		line-height: 1.7;
	}
	.qu, .an{
		padding-left: 14px;
		padding-top: 10px;
		padding-bottom: 10px;
		padding-right: 10px;
	}
	.qu p.en, .an p.en{
		padding-right: 20px;
	}
	.rec_img .ac_txt{
		font-size: 2.2rem;
		width: fit-content;
		transform: translateX(0);
		right: -20px;
	}
	.rec_img img{
		height: 260px;
	}
	.rec_img{
		width: 75%;
	}
	.rec_top p.fir{
		font-size: 1.6rem;
	}
	.rec_top .img{
		width: 100%;
	}
	.rec_top p.fir span{
		background-color: rgb(255, 255, 255,0);
		padding: 0;
		margin: 0;
		display: inline;
	}
	.rec_top p.fir span+span{
		margin-top: 0;
	}
	.voice .img{
		width: 140px;
	}
	.voice .txt_box{
		width: 100%;
		margin-top: 20px;
	}
	.img_area2 img{
		height: 260px;
	}
	.syahu .ac_img{
		display: none;
	}
	.syahu{
		padding-top: 40px;
	}
}



/* 施工実績 ページ */



.p_works table{
	width: 100%;
	font-size: 1.8rem;
	min-width: 830px;
}

.p_works table th,.p_works table td{
	text-align: center;
	padding: 25px 0;
	border-bottom: solid 1px #ccc;
	border-left: solid 1px #ccc;
	border-right: solid 1px #ccc;
	background-color: #fff;
}

.p_works table th{
	border-top: solid 1px #ccc;
	background-color: #4EF800;
}

.p_works .inner{
	width: 94%;
}

.p_works .wrapper{
	overflow-x: scroll;
}

.p_works .tyui{
	display: none;
}


@media (max-width: 1200px){
	.p_works table{
		font-size: 1.6rem;
	}
	.p_works table th, .p_works table td{
		padding-left: 7px;
		padding-right: 7px;
	}
	
	
}


@media (max-width: 880px){
	.p_works .tyui{
		display: block;
	}
}

@media (max-width: 650px){
	.p_works table{
		font-size: 1.5rem;
	}
	.p_works table th, .p_works table td{
		padding: 15px 0;
	}
	.p_works table tr td:nth-child(2){
		text-align: left;
		padding-left: 30px;
	}
	.p_works table tr td:nth-child(1){
		padding-left: 10px;
		padding-right: 10px;
	}
	.p_works table tr td:nth-child(3){
		padding-left: 10px;
		padding-right: 10px;
	}
	.p_works table{
		min-width: 730px;
	}
}



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

.co_top{
	padding: 140px 0;
	position: relative;
	background: url(../img/contact.jpg);
	background-size: cover;
	background-position: center;
}

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

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


.co_top .ac_txt i{
	background-color: #4EF800;
	aspect-ratio: 1 / 1;
	width: 45px;
	border-radius: 50%;
	text-align: center;
	line-height: 45px;
	font-size: 2rem;
	padding-right: 0;
	margin-right: 10px;
}

.co_top .ac_txt{
	font-size: 3rem;
	display: block;
	margin-bottom: 10px;
	letter-spacing: 0.05em;
}

.co_top h3{
	position: relative;
	font-size: 2rem;
	padding-left: 20px;
	margin-bottom: 10px;
}

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

.co_top .item{
	width: 46%;
	background-color: #f5f5f5;
	padding: 25px 40px;
}

.co_top a:hover{
	opacity: 0.7;
}

.co_top ul li{
	position: relative;
	padding-left: 20px;
}

.co_top ul li+li{
	margin-left: 20px;
}

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

.form_box .inner{
	max-width: 1000px;
}

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: #4EF800;
	font-weight: 600;
	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{
	padding: 2px 0;
	margin-right: 10px;
	font-size: 1.4rem;
}

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

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

input{
	appearance: auto;
}

.mailform .contact_table .ib div{
	display: inline-block;
	margin-top: -3px;
	margin-right: 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 #4EF800;
	color: #4EF800;
	font-weight: bold;
	text-align: center;
	letter-spacing: 0.1em;
}

.Label::before{
	content: "";
	width: 12px;
	height: 12px;
	border-top: 2.5px solid #4EF800;
	border-right: 2.5px solid #4EF800;
	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;
	border-bottom: dashed 1px #333;
}

.form_accordion h4::before{
	content: "";
	position: absolute;
	display: inline-block;
	width: 18px;
	height: 18px;
	background: url(../img/check.jpg);
	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: #4EF800;
	color: #111;
	border: solid 2px #4EF800;
	font-size: 1.6rem;
	margin-top: 40px;
	font-weight: bold;
}

.form_btn button:hover{
	background-color: #fff;
	color: #4EF800;
}

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

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

.contact_table tr:first-child th{
	vertical-align: top;
}


@media (max-width: 1200px){
	.co_top .item{
		width: 48%;
		padding: 20px;
	}
	.co_top .ac_txt{
		font-size: 2.4rem;
	}
	.co_top .ac_txt i{
		width: 35px;
		line-height: 35px;
		font-size: 1.6rem;
	}
	.co_top h3{
		margin-bottom: 0;
	}
	.co_top{
		padding: 100px 0;
	}
	.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;
	}
}

@media (max-width: 650px){
	.co_top .flex_bet{
		flex-direction: column;
	}
	.co_top .item{
		width: 100%;
	}
	.co_top .item+.item{
		margin-top: 20px;
	}
	.co_top{
		padding: 50px 0;
	}
	.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;
	}
	.mail_area{
		padding: 50px 0;
	}

    .mail_area .inner{
        width: 92%;
    }
	.contact_table th,.contact_table td{
		font-size: 1.5rem;
	}
	.mailform .contact_table .ib div{
		display: block;
	}
}




/*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;
	}
}
