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


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



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

a{
	text-decoration: none;
	color: #222;
	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);
	filter: blur(10px);
	transition: opacity 1.6s, transform 1.5s, filter .9s;
	transition-delay: 0.4s;
}
.flowup.inview{
	opacity: 1;
	transform: translateY(0);
	filter: blur(0px);
}

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

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

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


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

.rotation {
    animation: rotateanim 75s linear infinite normal;
}



.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{
	margin-left: 60px;
	margin-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{
	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: 150px 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: 740px){
	.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.4rem;
	}
}




/* 文字間 */

.space{
	letter-spacing: 0.05em;
}

.space2{
	letter-spacing: 0.1em;
}

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

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


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

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


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





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

body p{
	letter-spacing: 0.1em;
}

i{
	padding-right: 0.4em;
}

.en{
	font-family: "Schibsted Grotesk", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
}

.street{
	font-family: "inter-tight-variable",sans-serif;
	font-variation-settings: 'wght' 800;
}


/* btn */

.m_btn a{
	position: relative;
	display: block;
	background: linear-gradient(343deg,rgba(236, 108, 0, 1) 0%, rgb(233, 167, 1) 100%);
	color: #fff;
	padding: 12px 0;
	border-radius: 50px;
	letter-spacing: 0.04em;
	padding-left: 40px;
}

.m_btn a:hover{
	opacity: 0.75;
}

.m_btn{
	width: 280px;
	margin-top: 40px;
}

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

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



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


.king{
	font-size: 8.4rem;
}
.biggest{
	font-size: 6.3rem;
}
.big{
	font-size:  4.7rem;
}
.s_big{
	font-size: 3.5rem;
}
.f_txt{
	font-size: 2.6rem;
}
.s_f_txt{
	font-size: 2rem;
}



.fixed_bg{
	background: url(../img/fixed_bg.png);
	background-size: cover;
	background-position: center;
	position: fixed;
	height: 100vh;
	width: 100vw;
	z-index: -1;
}


/* sub_ttl */


.sub_ttl{
	margin-bottom: 50px;
	font-weight: 700;
	border-bottom: solid 1px #ccc;
	padding-bottom: 17px;
}

.sub_ttl .en{
	position: relative;
	display: block;
	color: #ec6c00;
	font-weight: bold;
	padding-left: 14px;
	margin-left: 5px;
}

.sub_ttl .ja{
	line-height: 1.7;
}

.sub_ttl .en::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #ec6c00;
	top: 44%;
	left: 0;
	height: 50%;
	width: 5px;
	transform: translateY(-50%) skewX(-25deg);
}



/* header */

header{
	position: fixed;
	top: 0;
	width: 100%;
	height: 110px;
	box-shadow: 0 1px 1px rgba(0, 0, 0, .1);
	background-color: #fff;
	z-index: 99;
	transition: transform 1s, opacity 2s, filter 1s;
}

.flowup2{
	transform: translateY(-99%);
	opacity: 0;
	filter: blur(10px);
}
.flowup2.inview{
	transform: translateY(0);
	opacity: 1;
	filter: blur(0);
}


h1 a:hover{
	opacity: 0.75;
}

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

header img{
	height: 37px;
}

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

.main_nav li a{
	letter-spacing: 0.04em;
	font-size: 1.7rem;
}


.main_nav li a:hover{
	opacity: 0.75;
}

.hd_btn{
	position: relative;
	width: 190px;
	margin-left: 50px;
}

.hd_btn .ac{
	position: absolute;
	top: -27px;
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
	letter-spacing: normal;
}

.hd_btn +.hd_btn{
	margin-left: 20px;
}

.hd_btn a{
	display: block;
	background: linear-gradient(343deg,#ec6c00 0%, #e9a701 100%);
	color: #fff;
	padding: 18px 0;
	text-align: center;
	line-height: 1;
	font-size: 1.6rem;
	border-radius: 50px;
}

.hd_btn a:hover{
	opacity: 0.75;
}

@media (max-width: 1200px){
	header .right{
		display: none;
	}
	.fixed_bg{
		background-size: 140%;
	}
	.hd_inner{
		padding-right: 20px;
	}
	header img{
		height: 34px;
	}
	header{
		height: 90px;
	}
}

@media (max-width: 740px){
	header img{
		height: 23px;
	}
	.hd_inner{
		padding-left: 20px;
	}
	header{
		height: 70px;
	}
	.m_btn a::before{
		width: 28px;
	}
	.m_btn a::after{
		width: 25px;
	}
}


/* fv */

.fv{
	margin-top: 90px;
	background-color: rgb(255, 255, 255,0.1);
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
}


.catch{
	position: relative;
	height: 60vh;
	display: flex;
	align-items: center;
	padding-left: 5vw;
	padding-top: 90px;
	font-size: min(5.7vw,8.4rem);
}

.catch span{
	display: block;
	width: fit-content;
	line-height: 1.1;
	/* background: linear-gradient(343deg,#ec6c00 0%, #e9a701 100%); */
	font-weight: 700;
	/* transform: skew(-5deg) rotate(-3deg); */
}

.catch span+span{
	margin-top: 50px;
}

.catch h2{
	font-feature-settings: 'palt';
	color: #ec6c00;
}

.catch .mask_bg{
	position: relative;
	overflow: hidden;
}

.catch .op{
	opacity: 0;
	transition-delay: 450ms;
}

.catch .mask_bg::before{
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(343deg,rgba(236, 108, 0, 0.8) 0%, rgb(233, 167, 0.8) 100%);
	width: 100%;
	height: 100%;
	transform: translateX(-100%);
	transition: transform .3s ease;
	
}

.catch .mask_bg::after{
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	background: #fff;
	width: 100%;
	height: 100%;
	transform: translateX(-100%);
	transition: transform .4s ease;
	transition-delay: 400ms;
}



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

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

.catch .mask_bg.inview .op{
	opacity: 1;
}




.fv_sli{
	position: relative;
	background: linear-gradient(343deg,rgba(236, 108, 0, 0.8) 0%, rgb(233, 167, 0.8) 100%);
	padding: 140px 0;
	clip-path: polygon(0 10%, 100% 0%, 100% 90%, 0% 100%);
}

.fv_sli .slick-slide{
	margin: 0 0.2%;
}

.fv_sli .slick-slide img{
	border-radius: 20px;
}


@media (max-width: 1200px){
	.catch{
		font-size:5.7rem;
	}
	.fv_sli{
		clip-path: polygon(0 7%, 100% 0%, 100% 93%, 0% 100%);
		padding: 100px 0;
	}
	.catch{
		padding-top: 30px;
		height: 45vh;
	}

	.fv{
		margin-top: 90px;
	}

}

@media (max-width: 740px){
	.catch{
		font-size: 3rem;
		height: 35vh;
	}

	.catch span+span{
		margin-top: 30px;
	}
	.fv_sli{
		padding: 40px 0;
		clip-path: polygon(0 4%, 100% 0%, 100% 96%, 0% 100%);
	}
	.fv_sli .slick-slide img{
		border-radius: 5px;
	}
	.fv{
		margin-top: 70px;
	}

}


/* aboutus */


.aboutus{
	position: relative;
	background-color: rgb(255, 255, 255,0.1);
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
	overflow: hidden;
}

.aboutus::before{
	content: "";
	display: inline-block;
	position: absolute;
	border-left: solid 3px #727272;
	height: 200vh;
	transform: translate(-50%,-50%) rotate(55deg);
	top: 30%;
	left: 30%;
	z-index: 1;
}


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

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

.aboutus .giza{
	position: absolute;
	top: 0;
	width: 100%;
}

.aboutus .left{
	width: 42%;
}

.aboutus .left .img{
	clip-path: polygon(0% 6%, 100% 0%, 100% 94%, 0% 100%);
}

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

.aboutus .right{
	width: 50%;
	margin-top: 120px;
}

.aboutus .left img{
	width: 100%;
	aspect-ratio: 5 / 3;
	object-fit: cover;
}

.aboutus .street{
	position: relative;
	font-size: min(8vw,12rem);
	color: #575757;
	line-height: 1;
	margin-bottom: -80px;
	z-index: 1;
}




.ab_flowing::before{
	left: 0;
	animation: flowing 60s linear infinite;
}

.ab_flowing::after{
	left: 4400px;
	animation: flowing 60s linear infinite;
}

.ab_flowing::before,.ab_flowing::after{
	content: "ARIMURAJUSETSU, ARIMURAJUSETSU, ARIMURAJUSETSU,";
	position: absolute;
	bottom: 0;
	width: 100%;
	height: auto;
	font-size: 16rem;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
	color: #e9a701;
	opacity: 0.2;
	pointer-events: none;
	z-index: 1;
	font-family: "inter-tight-variable", sans-serif;
    font-variation-settings: 'wght' 600;
}








@media (max-width: 1200px){
	.aboutus .flex_bet{
		flex-direction: column;
	}
	.aboutus .left{
		width: 100%;
	}
	.aboutus .left img{
		height: 400px;
	}
	.aboutus .right{
		width: 100%;
		margin-top: 40px;
	}
	.index .sub_ttl .ja{
		font-size: 4rem;
	}
	.sub_ttl{
		margin-bottom: 35px;
	}
	.inner{
		margin-left: 40px;
		margin-right: 40px;
	}
	.aboutus .street{
		font-size: 6rem;
	}
	.aboutus::before{
		top: 20%;
	}
	.aboutus .txt_box{
		font-size: 1.5rem;
	}
	.ab_flowing::before,.ab_flowing::after{
		font-size: 10rem;
	}
	.ab_flowing::before{
		left: 0;
	}
	
	.ab_flowing::after{
		left: 3000px;
	}
}

@media (max-width: 740px){
	.aboutus .left img{
		height: 200px;
	}
	.index .sub_ttl .ja,.kasou .sub_ttl .ja{
		font-size: 2.8rem;
	}
	.inner{
		margin-left: 20px;
		margin-right: 20px;
	}
	.sub_ttl{
		margin-bottom: 20px;
		padding-bottom: 10px;
	}
	.m_btn a{
		font-size: 1.6rem;
	}
	.m_btn{
		width: 220px;
	}
	.aboutus .street{
		font-size: 3.7rem;
		line-height: 1.2;
		margin-bottom: -40px;
	}
	.aboutus::before{
		top: 10%;
		border-left: solid 2px #727272;
	}
	.ab_flowing::before,.ab_flowing::after{
		font-size: 6rem;
	}


	.ab_flowing::after{
		left: 1800px;
	}
}


/* service */


.service{
	position: relative;
	background-color: #727272;
	padding-bottom: 200px;
}


.service::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #575757;
	clip-path: polygon(0 0%, 65% 0%, 100% 100%, 0% 100%);
	left: 0;
	top: 0;
	width:50%;
	height: 100%;
	z-index: 0;
}

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

.service .sub_ttl .ja{
	color: #fff;
}

.service .sub_ttl .en{
	margin-bottom: 20px;
}

.service .sub_ttl{
	border-bottom: 0px;
}

.service .sub_ttl .ja{
	font-size: min(3vw,4.7rem);
}


.service .item_list{
	width: 60%;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 60px;
}

.service .item{
	width: calc((100% - 20px) /2);
}

.service .ttl_area{
	width: 40%;
}

.service .item a{
	position: relative;
	display: block;
	width: 100%;
	height: 200px;
	background-color: #ec6c00;
	border-radius: 5px;
	padding: 20px 5%;
	color: #fff;
}

.service h4{
	letter-spacing: 0.04em;
	font-weight: 600;
}

.service .item a:hover{
	background-color: #d96201;
}

.service .item a::before{
	content: "";
	display: inline-block;
	position: absolute;
	border: solid 1px #fff;
	border-radius: 50%;
	aspect-ratio: 1 / 1;
	width: 45px;
	bottom:15px;
	right: 25px;
}

.service .item a::after{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/arrow_r.png);
	background-size: cover;
	background-position: center;
	aspect-ratio: 1 / 1;
	width: 35px;
	bottom: 20px;
	right: 29px;
}

.service .m_btn.tp02{
	display: none;
}


@media (max-width: 1400px){
	.service h4{
		font-size: 2.2rem;
	}
	.service .item a{
		height: 230px;
	}
}

@media (max-width: 1200px){
	.service .sub_ttl .ja{
		font-size: 4rem;
	}
	.service .inner{
		flex-direction: column;
	}
	.service .m_btn{
		display: none;
	}
	.service .ttl_area{
		width: 100%;
	}
	.service .item_list{
		width: 100%;
		margin-top: 0;
	}
	.service h4{
		font-size: 2.2rem;
	}
	.service{
		padding-bottom: 120px;
	}
	.service .m_btn.tp02{
		display: block;
	}
	.service .item a::before{
		width: 38px;
	}
	.service .item a::after{
		width: 28px;
	}
	.service .item a{
		height: 220px;
	}
}

@media (max-width: 740px){
	.service .sub_ttl .ja{
		font-size: 2.8rem;
	}
	.service .br_none1200{
		display: block;
	}
	.service .item{
		width: 100%;
	}
	.service h4{
		font-size: 2rem;
	}
	.service .item a{
		height: 160px;
		padding-top: 12px;
		padding-bottom: 12px;
	}
	.service{
		padding-bottom: 50px;
	}
	.service .item a::after{
		width: 22px;
	}
	.service .item a::before{
		width: 32px;
	}
	
	
}



/* feature */

.feature{
	overflow: hidden;
	position: relative;
	background-color: #f5f5f5;
	padding-bottom: 50px;
}

.feature .inner{
	position: relative;
	z-index: 2;
}
/* 
.feature::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #fff;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50px;
	z-index: 1;
} */


.feature::after{
	content: "";
	display: inline-block;
	position: absolute;
	background: linear-gradient(343deg,#ec6c00 0%, #e9a701 100%);
	width: 60%;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	top: 0;
	right: 0;
	z-index: 0;
	transform: translate(50%,-50%) scale(0);
	transition: all .8s ease;
	transition-delay: 600ms;
}

.feature.bb_ch.inview::after{
	transform: translate(50%,-50%) scale(1);
}

.feature .item .left{
	padding-right: 20px;
	border-right: solid 2px #ec6c00;
}
.feature .item .right{
	padding-left: 30px;
	padding-bottom: 10px;
}

.feature .item .icon{
	width: 80px;
}

.feature .item+.item{
	margin-top: 30px;
}

.feature .item{
	position: relative;
	padding: 35px 25px;
	background-color: #fff;
}

.feature h4{
	letter-spacing: 0.04em;

}


.feature .img{
	width: 45%;
}

.feature .img img{
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 1.1;
	border-radius: 20px;
	min-height: 640px;
}
.feature .num{
	font-size: 1.2em;
}

.feature .sub_ttl{
	border-bottom: solid 1px #fff;
}

.feature p.en{
	background-color: #575757;
	color: #727272;
	line-height: 1.4;
	padding-left: 10px;
	padding-right: 10px;
	width: fit-content;
	border-top-right-radius: 10px;
	padding-top: 2px;
}

.feature p.current{
	background-color: #575757;
	color: #727272;
	transition: all .3s;
}
.feature p.current.inview{
	background-color: #ec6c00;
	color: #fff;
	transition-delay: 600ms;
}

.feature .flex.ch{
	margin-top: 40px;
}

.feature .item_list{
	margin-top: 40px;
	width: 50%;
	max-width: 860px;
}


.flowing::before{
	left: 0;
	animation: flowing 60s linear infinite;
}

.flowing::after{
	left: 3600px;
	animation: flowing 60s linear infinite;
}

.flowing::before,.flowing::after{
	content: "OUR FEATURES, OUR FEATURES, OUR FEATURES,";
	position: absolute;
	top: 0;
	width: 100%;
	height: auto;
	font-size: 16rem;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
	color: #e9a701;
	opacity: 0.2;
	pointer-events: none;
	z-index: 1;
	font-family: "inter-tight-variable", sans-serif;
    font-variation-settings: 'wght' 600;
}

@keyframes flowing{
	0%{
		transform: translateX(0);
	}
	100%{
		transform: translateX(-3600px);
	}
}





@media (max-width: 1500px){
	.feature {
		padding-bottom: 100px;
	}
}

@media (max-width: 1200px){
	.feature .flex_bet{
		flex-direction: column;
	}
	.feature .item_list{
		margin-bottom: 50px;
		width: 100%;
	}
	.feature .img{
		width: 30%;
	}
	.feature::before{
		display: none;
	}
	.feature .img img{
		min-height: auto;
	}
	.flowing::before,.flowing::after{
		font-size: 10rem;
	}
	.flowing::before{
		left: 0;
	}
	.flowing::after{
		left: 2300px;
	}
}


@media (max-width: 740px){
	.feature .item_list{
		margin-top: 0;
	}
	.feature h4{
		font-size: 2rem;
		text-align: center;
	}
	.feature .item{
		flex-direction: column;
		padding: 25px;
		border-bottom-left-radius: 10px;
		border-bottom-right-radius: 10px;
	}
	.feature .item .right{
		padding: 0;
		width: 100%;
	}
	.feature .item .icon{
		width: 60px;
		margin: 0 auto;
	}
	.feature .item .left{
		border-right: 0px;
		padding: 0;
	}
	.feature p.en{
		width: calc(100% / 3);
	}
	.feature .img{
		width: 50%;
	}
	.feature .img img{
		border-radius: 10px;
	}
	.feature{
		padding-bottom: 50px;
	}
	.flowing::before,.flowing::after{
		font-size: 6rem;
	}
	.flowing::before{
		left: 0;
	}
	.flowing::after{
		left: 1400px;
	}
}



/* works */


.works{
	background-color: rgb(255, 255, 255,0.7);
}

.works .inner{
	margin-right: 0;
}


.works .sub_ttl{
	border-bottom: 0px;
	margin-left: 10px;
}

.works .top_area{
	width: 300px;
}

.works .item{
	width: calc(94% - 300px);
	margin-top: 40px;
}

.works .slick-slide{
	margin: 0 0.2%;
}

.works .slick-slide img{
	border-radius: 10px;
}

.works .m_btn.tp02{
	display: none;
}


@media (max-width: 1200px){
	.works .inner{
		flex-direction: column;
	}
	.works .m_btn{
		display: none;
	}
	.works .item{
		margin-top: 0;
		width: 100%;
	}
	.works .sub_ttl{
		border-bottom: solid 1px #ccc;
		width: 100%;
	}
	.works .top_area{
		width: 100%;
	}
	.works .m_btn.tp02{
		display: block;
	}
	.works {
		overflow: hidden;
	}
}

@media (max-width: 740px){
	.works{
		padding-top: 50px;
	}
}





/* recruit */

.recruit{
	padding-top: 0;
	background-color: rgb(255, 255, 255,0.1);
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
	overflow: hidden;
}

.recruit .inner{
	position: relative;
	background-color: #575757;
	border-radius: 15px;
	padding: 100px 50px;
	overflow: hidden;
}

.recruit .bg_b{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #333;
	top: 0;
	width: 100%;
	height: 20px;
	left: 0;
	z-index: 10;
}
.recruit .bg_b2{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #333;
	bottom: 0;
	width: 100%;
	height: 20px;
	left: 0;
	z-index: 10;
}

.flowing02,.flowing03{
	display: contents;
}


.flowing02::before{
	left: 0;
	animation: flowing 70s linear infinite;
}

.flowing02::after{
	left: 3000px;
	animation: flowing 70s linear infinite;
}

.flowing02::before,.flowing02::after{
	content: "一緒に働いていただけるスタッフを募集しています！👍　　　一緒に働いていただけるスタッフを募集しています！👍　　　一緒に働いていただけるスタッフを募集しています！👍　　　一緒に働いていただけるスタッフを募集しています！👍　　　一緒に働いていただけるスタッフを募集しています！👍　　　";
	position: absolute;
	top: 0;
	width: 100%;
	height: auto;
	font-size: 2rem;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
	color: #fff;
	pointer-events: none;
	z-index: 10;
	font-weight: bold;
	letter-spacing: 0.2em;
}

@keyframes flowing{
	0%{
		transform: translateX(0);
	}
	100%{
		transform: translateX(-3000px);
	}
}

.flowing03::before{
	left: 0;
	animation: flowingbtm 70s linear infinite;
}

.flowing03::after{
	left: -3000px;
	animation: flowingbtm 70s linear infinite;
}

.flowing03::before,.flowing03::after{
	content: "一緒に働いていただけるスタッフを募集しています！👍　　　一緒に働いていただけるスタッフを募集しています！👍　　　一緒に働いていただけるスタッフを募集しています！👍　　　一緒に働いていただけるスタッフを募集しています！👍　　　一緒に働いていただけるスタッフを募集しています！👍　　　";
	position: absolute;
	bottom: 0;
	width: 100%;
	height: auto;
	font-size: 1.8rem;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
	color: #fff;
	pointer-events: none;
	z-index: 10;
	font-weight: bold;
	letter-spacing: 0.2em;
}

@keyframes flowingbtm{
	0%{
		transform: translateX(0);
	}
	100%{
		transform: translateX(3000px);
	}
}


.recruit .inner::before{
	content: "";
	display: inline-block;
	position: absolute;
	clip-path: polygon(0 0%, 100% 0%, 65% 100%, 0% 100%);
	width: 30%;
	height: 100%;
	background-color: #727272;
	top: 0;
	left: 0;
	z-index: 0;
	border-top-left-radius: 15px;
	border-bottom-left-radius: 15px;
}

.recruit .left{
	position: relative;
	width: 46%;
	z-index: 1;
}

.recruit .left .img{
	height: 100%;
}

.recruit .left .img img{
	width: 100%;
	object-fit: cover;
	height: 100%;
	border-radius: 10px;
}

.recruit .right{
	position: relative;
	width: 48%;
	color: #fff;
	z-index: 1;
}



.rec_flowing::before{
	left: 0;
	animation: flowing 60s linear infinite;
}

.rec_flowing::after{
	left: 4400px;
	animation: flowing 60s linear infinite;
}

.rec_flowing::before,.ab_flowing::after{
	content: "RECRUIT, RECRUIT, RECRUIT, RECRUIT, RECRUIT, RECRUIT";
	position: absolute;
	bottom: 0;
	width: 100%;
	height: auto;
	font-size: 16rem;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
	color: #e9a701;
	opacity: 0.2;
	pointer-events: none;
	z-index: 1;
	font-family: "inter-tight-variable", sans-serif;
    font-variation-settings: 'wght' 600;
}





@media (max-width: 1200px){
	.recruit .inner{
		flex-direction: column;
		padding: 60px 40px;
	}
	.recruit .left{
		width: 100%;
	}
	.recruit .right{
		width: 100%;
		margin-top: 50px;
	}
	.recruit .right .in{
		width: 100%;
	}
	.rec_flowing::before,.ab_flowing::after{
		font-size: 10rem;
	}
}

@media (max-width: 740px){
	.recruit .inner{
		padding: 25px;
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.recruit .left{
		width: 100%;
	}
	.recruit .right{
		margin-top: 30px;
	}
	.recruit .inner::before{
		width: 55%;
	}
	.flowing02::before, .flowing02::after{
		font-size: 1.6rem;
	}
	.flowing03::before,.flowing03::after{
		font-size: 1.6rem;
	}
	.rec_flowing::before,.ab_flowing::after{
		font-size: 6rem;
	}
}




/* footer */

footer{
	background-color: #f5f5f5;
}

.foo_img{
	position: relative;
	background: url(../img/co_bg.jpg);
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 60vh;
}

/* .foo_img::before{
	content: "";
	display: inline-block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: linear-gradient(343deg,rgba(236, 108, 0, 0.7) 0%, rgb(233, 167, 0.7) 100%);
} */

.banner{
	position: relative;
	background: linear-gradient(343deg,rgba(236, 108, 0, 1) 0%, rgb(233, 167, 1) 100%);
	color: #fff;
	max-width: 1200px;
	width: 80%;
	margin: -100px auto 0;
	
	border-radius: 15px;
	z-index: 2;
}

.banner a{
	color: #fff;
	width: 100%;
	padding: 20px 0;
	padding-right: 3%;
	padding-left: 3%;
	border-radius: 15px;
}

.banner .btn{
	width: 300px;
	transition: all .3s;
}

.banner .btn p{
	position: relative;
	padding: 12px 0;
	background-color: #fff;
	color: #ec6c00;
	letter-spacing: normal;
	border-radius: 40px;
	border: solid 2px #ec6c00;
	padding-left: 30px;
	width: 100%;
	line-height: 2;
}

.banner .btn p::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #ec6c00;
	border-radius: 50%;
	top: 50%;
	right: 30px;
	transform: translateY(-50%);
	aspect-ratio: 1 / 1;
	width: 35px;
}

.banner .btn p::after{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/co_btn.png);
	background-size: cover;
	caption-side: center;
	top: 50%;
	right: 30px;
	transform: translateY(-50%);
	aspect-ratio: 1 / 1;
	width: 32px;
}

.banner a:hover{
	background-color: #d96201;
}

.banner a:hover .btn{
	opacity: 0.75;
}

.foo_btm {
	padding-top: 80px;
	padding-bottom: 60px;
	background-color: #f5f5f5;
}

.foo_btm .left{
	width: 50%;
	background-color: #575757;
	color: #fff;
	border-top-left-radius: 15px;
	border-bottom-left-radius: 15px;
}

.foo_btm .left .in{
	padding-left: 60px;
}

.foo_btm .right{
	width: 50%;
}

.foo_btm .map iframe{
	width: 100%;
	height: 400px;
	border-top-right-radius: 15px;
	border-bottom-right-radius: 15px;
}

.foo_inner{
	margin-left: 60px;
	margin-right: 60px;
}

.foo_logo{
	margin-bottom: 30px;
}

.foo_logo img{
	height: 36px;
}

.foo_btm a{
	display: block;
	margin-top: 20px;
	text-decoration: underline;
	color: #fff;
}


.copy p{
	font-size: 1.2rem;
	margin-top: 20px;
}



@media (max-width: 1200px){
	.banner h3{
		font-size: 5.2rem;
	}
	.banner{
		width: auto;
		margin-left: 40px;
		margin-right: 40px;
		margin-top: -80px;
	}
	.foo_img{
		height: 500px;
	}
	.foo_btm{
		padding: 50px 0 40px;
	}
	.foo_btm .left .in{
		padding-left: 30px;
	}
	.foo_logo img{
		height: 28px;
	}
	.foo_inner{
		margin-left: 40px;
		margin-right: 40px;
	}
	.foo_btm .map iframe{
		height: 350px;
	}
}

@media (max-width: 740px){
	.foo_img{
		height: 300px;
	}
	.banner{
		margin-left: 20px;
		margin-right: 20px;
		border-radius: 10px;
		margin-top: -50px;
	}
	.banner h3{
		font-size: 4rem;
		text-align: center;
		line-height: 1;
		margin-bottom: 15px;
	}
	.banner a{
		flex-direction: column;
		padding: 30px 0;
	}
	.banner .btn p{
		font-size: 1.6rem;
	}
	.banner .btn{
		margin: 0 auto;
	}
	.foo_inner{
		flex-direction: column-reverse;
		margin-left: 20px;
		margin-right: 20px;
	}
	.foo_btm .right{
		width: 100%;
	}
	.foo_btm .left{
		width: 100%;
		padding: 50px 0 40px;
		border-radius: 10px;
		border-top-left-radius: 0px;
		border-top-right-radius: 0px;
	}
	.foo_btm .map iframe{
		height: 220px;
		border-radius: 10px;
		border-bottom-right-radius: 0px;
		border-bottom-left-radius: 0px;
	}
	.foo_logo img{
		height: 26px;
	}
	.foo_btm .left .in{
		padding-left: 0;
		text-align: center;
		margin: 0 auto;
	}
	.foo_btm a{
		margin-top: 10px;
	}
	.foo_btm{
		padding-top: 30px;
		padding-bottom: 20px;
	}
	.foo_logo{
		margin-bottom: 10px;
	}
	.banner .btn p::before{
		width: 28px;
	}
}





/* page top */

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

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


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

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

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

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





/* 下層トップ */


.kasou_top{
	position: relative;
	padding-top: 230px;
	padding-bottom: 100px;
}

.kasou_top .inner{
	position: relative;
}

.kasou_top .inner::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: linear-gradient(343deg, #ec6c00 0%, #e9a701 100%);
	bottom: 38px;
	left: 0;
	height: 10px;
	width: 300px;
	border-radius: 20px;
	z-index: 1;
}

.kasou_top h2{
	color: #ec6c00;
	letter-spacing: -0.03em;
	font-weight: bold;
	line-height: 1;
	border-bottom: solid 1px #ccc;
	padding-bottom: 50px;
}

.kasou_top h2 .ja{
	display: block;
	font-size: 1.8rem;
	color: #222;
	letter-spacing: 0.05em;
	margin-top: 30px;
	padding-left: 10px;
} 

.kasou_top ol{
	justify-content: flex-end;
	margin-top: 10px;
	color: #555;
}

.kasou_top ol a{
	position: relative;
	color: #555;
	padding-right: 20px;
}

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

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

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


@media (max-width: 1200px){
	.kasou_top h2{
		font-size: 6.6rem;
	}
	.kasou_top{
		padding-top: 190px;
		padding-bottom: 80px;
	}
	.kasou_top .inner::before{
		width: 260px;
	}
}

@media (max-width: 740px){
	.kasou_top h2{
		font-size: 4.6rem;
	}
	.kasou_top h2 .ja{
		font-size: 1.5rem;
	}
	.kasou_top{
		padding-top: 130px;
		padding-bottom: 50px;
	}
	.kasou_top .inner::before{
		width: 200px;
	}
}




/* 会社概要ページ */


.p_greeting{
	background: url(../img/message.jpg);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	padding: 80px 0;
}

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

.p_greeting .txt_box p+p{
	margin-top: 15px;
}



.p_greeting .txt_box .btm{
	margin-top: 25px;
	text-align: right;
}

.p_greeting .inner{
	position: relative;
	background-color: rgb(255, 255, 255,0.92);
	padding: 80px 5%;
	border-radius: 10px;
	backdrop-filter: blur(3px);
	border: solid 2px #ec6c00;
}

.p_greeting .right{
	width: 100%;
}

.p_greeting .ac_txt{
	position: absolute;
	top: 20px;
	right: 20px;
	color: #ec6c00;
	line-height: 1;
	opacity: 0.3;
	font-style: italic;
}


.sti_left{
	width: 320px;
}

.sti_right{
	width: calc(90% - 320px);
}

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

.outline{
	position: relative;
	background-color: rgb(234, 234, 234, 0.7);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
	overflow: hidden;
	padding-bottom: 0;
}

.outline::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #e9a701;
	opacity: 0.6;
	top: 0;
	left: 40px;
	aspect-ratio: 1 / 1.3;
	width: 300px;
	transform: rotate(45deg);
	border-radius: 50%;
	z-index: -1;
}

.sti_right table{
	width: 100%;
}

.sti_right table th,.sti_right table td{
	padding: 15px 0;
	letter-spacing: 0.04em;
	border-bottom: solid 1px #ccc;
	padding-left: 10px;
}

.sti_right table th{
	width: 20%;
	color: #ec6c00;
	font-weight: 700;
}

.sti_right table td{
	width: 80%;
}

.outline .sub_ttl{
	border-bottom: 0px;
}
.access .sub_ttl{
	border-bottom: 0px;
}


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

.access{
	position: relative;
	background-color: rgb(234, 234, 234, 0.7);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}



.access::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #e9a701;
	opacity: 0.6;
	top: 0;
	left: 40px;
	aspect-ratio: 1 / 1.3;
	width: 300px;
	transform: rotate(45deg);
	border-radius: 50%;
	z-index: -1;
}



@media (max-width: 1200px){
	.outline .flex_bet{
		flex-direction: column;
	}
	.access .flex_bet{
		flex-direction: column;
	}
	.sti_left{
		width: 100%;
	}
	.sti_right{
		width: 100%;
	}
	.p_greeting .inner{
		padding-top: 50px;
		padding-bottom: 50px;
		width: 94%;
	}
	.outline::before{
		width: 200px;
		left: 0;
		top: 10px;
	}
	.access::before{
		width: 200px;
		left: 0;
		top: 10px;
	}
	.p_greeting .ac_txt{
		font-size: 6.4rem;
	}
}

@media (max-width: 740px){
	.sti_right table th{
		width: 30%;
	}
	.sti_right table td{
		width: 70%;
	}
	.access .map iframe{
		height: 300px;
	}
	.outline::before{
		width: 160px;
		top: 0;
	}
	.access::before{
		width: 160px;
		top: 0;
	}
	.p_greeting .ac_txt{
		font-size: 4.4rem;
		top:3px;
		right: 10px;
	}
}





/* 下層事業内容 */


.p_service .ac_txt{
	border: solid 1px #ec6c00;
	width: fit-content;
	padding: 2px 20px 0;
	line-height: 1.6;
	border-radius: 40px;
	letter-spacing: 0.1em;
	color: #ec6c00;
	background-color: #fff;
}

.p_service h3{
	letter-spacing: 0.05em;
	margin-bottom: 15px;
}

.p_service .txt_box p{
	color: #555;
}

.p_service li{
	letter-spacing: 0.1em;
}

.p_service .btm_box{
	margin-top: 20px;
}

.p_service h4{
	letter-spacing: 0.05em;
	color: #ec6c00;
	font-weight: 600;
}

.p_service .btm_box ul{
	font-size: 1.4rem;
}

.p_service .btm_box ul li{
	position: relative;
	padding-left: 17px;
}

.p_service .btm_box ul li::before{
	content: "";
	display: inline-block;
	position: absolute;
	height: 2px;
	width: 10px;
	background-color: #ec6c00;
	top: 50%;
	left: 0;
}

.p_service .left{
	width: 37%;
}
.p_service .right{
	width: 57%;
}

.p_service .left .img img{
	width: 100%;
	aspect-ratio: 6 / 5;
	object-fit: cover;
	border-radius: 20px;
}

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

.p_service{
	background-color: rgb(234, 234, 234, 0.7);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}


.p_service .img{
	position: relative;
}

.p_service .img::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: linear-gradient(343deg, #ec6c00 0%, #e9a701 100%);
	top: 0;
	left: 0;
	width: 130px;
	aspect-ratio: 1 / 1.3;
	border-radius: 50%;
	z-index: -1;
	transform: translate(-50%,-50%) rotate(45deg);
}


.area {
	padding: 100px 0;
	background-color: rgb(255, 255, 255,0.7);
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
}

.area .sub_ttl{
	border-bottom: 0px;
	padding-bottom: 0;
}

.area .txt_box{
	max-width: 500px;
}

.area .left{
	width: 40%;
	padding-bottom: 100px;
}

.area .right{
	width: 50%;
}

.area .right .ill{
	max-width: 400px;
}


@media (max-width: 1200px){
	.p_service .flex_bet{
		flex-direction: column;
	}
	.p_service .item+.item{
		margin-top: 100px;
	}
	.p_service .right{
		width: 100%;
	}
	.p_service .left{
		width: 100%;
		margin-bottom: 30px;
	}
	.p_service .left .img img{
		aspect-ratio: auto;
		height: 400px;
	}
	.p_service .item{
		width: 80%;
		margin: 0 auto;
	}
	.p_service .btm_box{
		margin-top: 10px;
	}
}

@media (max-width: 740px){
	.p_service .item{
		width: 100%;
	}
	.p_service .left .img img{
		height: 220px;
	}
	.p_service h3{
		font-size: 2.4rem;
		margin-bottom: 5px;
	}
	.p_service .ac_txt{
		font-size: 1.4rem;
		padding: 2px 15px 0;
	}
	.p_service h4{
		font-size: 2rem;
	}
	.p_service .item+.item{
		margin-top: 50px;
	}
	.area{
		padding: 50px 0;
	}
	.area .flex_bet{
		flex-direction: column-reverse;
	}
	.area .left{
		width: 100%;
		padding-bottom: 0;
	}
}




/* 下層施工実績 */


.p_works{
	padding-top: 0;
}

.p_works .gap_area{
	gap: 50px;
	flex-wrap: wrap;
}

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

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

.p_works .gallery_wrapper+.gallery_wrapper{
	margin-top: 100px;
}

.mtitle{
	border-left: solid 5px #ec6c00;
	font-size: 3rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	padding-left: 13px;
	margin-bottom: 30px;
	background-color: #f5f5f5;
}

@media (max-width: 740px){
	.p_works .gap_area{
		gap: 20px;
	}
	.p_works .item{
		width: calc((100% - 20px) / 2);
	}
	.mtitle{
		font-size: 2.2rem;
	}
	.p_works .gallery_wrapper+.gallery_wrapper{
		margin-top: 70px;
	}
}





/* 下層採用情報 */



.rec_top{
	position: relative;
	text-align: center;
	background: url(../img/ab_img.jpg);
	background-size: cover;
	background-position: center;
	color: #fff;
}

.rec_top .sub_ttl{
	padding-bottom: 0;
	border-bottom: 0px;
	width: fit-content;
	margin: 0 auto 30px;
}

.rec_top .sub_ttl .en{
	width: fit-content;
	margin: 0 auto;
	padding-right: 10px;
}

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

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

.rec_main{
	padding: 100px 0;
	position: relative;
	overflow: hidden;
	background: linear-gradient(343deg, #ec6c00 0%, #e9a701 100%);
}

/* .rec_main::after{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #e9a701;
	opacity: 0.7;
	top: -90px;
	right: 0;
	aspect-ratio: 1 / 1.3;
	border-radius: 50%;
	width: 20%;
	transform: rotate(45deg);
} */

.rec_main .inner{
	background-color: #fff;
	padding: 80px 3%;
	max-width: 1600px;
	border-radius: 10px;
}


.rec_main .sub_ttl{
	padding-bottom: 0;
	border-bottom: 0px;
}

.rec_main ul li{
	position: relative;
	letter-spacing: 0.1em;
	border-bottom: solid 1px #ccc;
	padding: 7px 0;
	padding-left: 20px;
}

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

.rec_main .item+.item{
	margin-top: 120px;
}

.rec_main .img{
	margin-bottom: 30px;
	width: 600px;
}

.rec_main .img img{
	aspect-ratio: 3 / 1.5;
	width: 100%;
	object-fit: cover;
}

.rec_main  ul{
	margin-top: 20px;
	max-width: 600px;
}

/* .k_recruit .sti_left{
	height: fit-content;
	position: sticky;
	top: 300px;
} */

.k_recruit table{
	max-width: 800px;
}

.k_recruit .sti_right{
	margin-top: 20px;
}


@media (max-width: 1200px){
	.rec_main .flex_bet{
		flex-direction: column;
	}
	.k_recruit .sti_right{
		margin-top: 0;
	}
	.rec_main::before{
		aspect-ratio: 0.6 / 2;
	}
	.rec_main .inner{
		padding: 50px 20px;
		margin-left: 20px;
		margin-right: 20px;
		width: auto;
	}
	.rec_main{
		padding: 50px 0;
	}
}

@media (max-width: 740px){
	.rec_main .item+.item{
		margin-top: 60px;
	}
	.rec_top .txt_box{
		text-align: left;
	}
	.rec_top .txt_box p{
		display: inline;
	}
	.rec_main::before{
		aspect-ratio: 0.4 / 2;
	}
	.rec_main .inner{
		margin-left: 10px;
		margin-right: 10px;
	}
}





/* 下層お問い合わせ */



.co_top{
	position: relative;
	padding-bottom: 100px;
	background-color: rgb(234, 234, 234, 0.7);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
	overflow: hidden;
}

.co_top p.fir{
	text-align: center;
	margin-bottom: 30px;
}

.co_top::before{
	content: "";
    display: inline-block;
    position: absolute;
    background: linear-gradient(343deg, #ec6c00 0%, #e9a701 100%);
    width: 35%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    top: 0;
    right: 0;
    z-index: 1;
    transform: translate(50%, -50%);
    transition: all .8s ease;
    transition-delay: 600ms;
}





.tel_box a{
	display: block;
	line-height: 1.4;
	margin-bottom: 10px;
	color: #555;
}

.tel_box a .num{
	font-size: 0.65em;
	display: inline-block;
	margin-right: 5px;
}

.tel_box a:hover{
	color: #727272;
}

.k_contact .mail_sec h3,.k_contact .co_top h3{
	position: relative;
	letter-spacing: 0.04em;
	padding-left: 20px;
	padding-right: 10px;
	color: #ec6c00;
	font-weight: 700;
	width: fit-content;
	margin: 0 auto 10px;
}

.k_contact .mail_sec h3::before,.k_contact .co_top h3::before{
	content: "";
    display: inline-block;
    position: absolute;
    background-color: #ec6c00;
    top: 50%;
    left: 0;
    height: 50%;
    width: 5px;
    transform: translateY(-50%) skewX(-25deg);
}

.k_contact .mail_sec h3{
	color: #fff;
	margin-bottom: 20px;
}

.k_contact .mail_sec h3::before{
	background-color: #fff;
}


.tel_box{
	width: fit-content;
	margin: 0 auto;
	text-align: center;
	background-color: #fff;
	padding: 20px 45px;
	border: solid 2px #ec6c00;
}


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

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


input{
	appearance: auto;
}


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

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

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

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

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

textarea{
	padding: 10px;
	font-size: 1.6rem;
	background: #fff;
	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: #ec6c00;
	padding: 4px 8px 3px;
	color: #fff;
}

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

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

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


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

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

.form_btn button:hover{
	opacity: 0.7;
}

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


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

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


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

.postal_btn:hover{
	opacity: 0.7;
}

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

.mail_sec{
	position: relative;
	padding-top: 0;
	background-color: rgb(234, 234, 234, 0.7);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
	overflow: hidden;
}

.mail_sec::after {
    content: "";
    display: inline-block;
    position: absolute;
    background: linear-gradient(343deg, #ec6c00 0%, #e9a701 100%);
    width: 35%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
	bottom: 0;
	left: 0;
    z-index: -1;
    transform: translate(-50%, 50%);
    transition: all .8s ease;
    transition-delay: 600ms;
}

.mail_sec .form_box{
	max-width: 1080px;
	margin: 0 auto;
	width: 90%;
}

.mail_sec .form_box p{
	color: #fff;
}

.mail_sec .mailarea{
	position: relative;
	background-color: #575757;
	max-width: 1200px;
	margin: 0 auto;
	padding: 50px 0;
}

.mail_sec .mailarea::before {
    content: "";
    display: inline-block;
    position: absolute;
    background-color: #727272;
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
	right: 0;
    top: 0;
    width: 80%;
    height: 100%;
    z-index: 0;
}

.mail_sec .ac_txt{
	position: absolute;
	top: 0;
	right:20px;
	color: #ec6c00;
	opacity: 0.6;
	line-height: 1;
	z-index: 2;
}



.form_box table .ib td{
	color: #fff;
	width: auto;
}

.form_box table .ib div{
	margin-right: 20px;
	display: inline;
}


@media (max-width: 1200px){
	.contact_table th{
		display: block;
		width: 100%;
		padding-bottom: 0;
		border-bottom: 0px;
	}
	.contact_table td{
		display: block;
		width: 100%;
	}
	.mail_sec .ac_txt{
		font-size: 6.4rem;
		right: 0;
	}
}

@media (max-width: 740px){
	.co_top p.fir{
		font-size: 1.6rem;
		line-height: 1.8;
	}
	.k_contact .mail_sec h3,.k_contact .co_top h3{
		font-size: 2rem;
	}
	.tel_box{
		padding: 20px;
	}
	.tel_box a{
		font-size: 3rem;
	}
	.tel_box p{
		font-size: 1.3rem;
	}
	.co_top{
		padding-bottom: 50px;
	}
	.form_attention{
		font-size: 1.2rem;
	}
	.Label{
		font-size: 1.4rem;
	}
	.postal_btn{
		display: block;
		margin-left: 0;
		margin-top: 10px;
		width: 100%;
	}
	td .box.mini{
		display: block;
		width: calc(100% - 32px) !important;
		max-width: none;
	}
	.contact_table .flex{
		flex-wrap: wrap;
	}
	.mail_sec .ac_txt{
		font-size: 3.4rem;
	}
}



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

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

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