html{
    font-size: 62.5%;
}

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

body.open{
	overflow: hidden;
}

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

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

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


/*フェードイン*/
.flowup{
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 1200ms, transform 2400ms cubic-bezier(0.165, 0.84, 0.44, 1);
	transition-delay: 350ms;
}

.flowup.de02{
	transition-delay: 400ms;
}
.flowup.de03{
	transition-delay: 450ms;
}
.flowup.de04{
	transition-delay: 500ms;
}

.flowup.inview{
	opacity: 1;
	transform: translateY(0);
}

.flow_left{
	opacity: 0;
	transform: translateX(-100px);
	transition: opacity .6s, transform .5s;
	transition-delay: 0.3s;
}
.flow_left.inview{
	opacity: 1;
	transform: translateX(0);
}

.flow_right .wrap{
	opacity: 0;
	transform: translateX(100px);
	transition: opacity .6s, transform .5s;
	transition-delay: 0.3s;
}
.flow_right.inview .wrap{
	opacity: 1;
	transform: translateX(0);
}

.blurup{
	filter: blur(20px);
	opacity: 0;
	transform: translateY(10%);
	transition: all 3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.blurup.inview{
	filter: blur(0);
	transform: translateY(0%);
	opacity: 1;
}

.ch_blur{
	filter: blur(20px);
	opacity: 0;
	transition: all 3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.ch_blur.inview{
	opacity: 1;
	filter: blur(0px);
}

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


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



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

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

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

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



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

.op.inview{
	opacity: 1;
}

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


.br_650.marker{
	background: none;
}


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

.inner.min{
	max-width: 1200px;
	margin: 0 auto;
	width: 90%;
}

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

.container{
	padding-left: 5%;
	padding-right: 5%;
	margin: 0 auto;
}


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

.flex{
    display: flex;
}

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

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

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

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

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



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



.w100{
	width: 100%;
}

.kizi{
	line-height: 2;
}

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

@media (max-width: 1200px){
	.kizi{
		font-size: 1.5rem;
	}
}

@media (max-width: 740px){
	.kizi{
		line-height: 2.2;
		font-size: 1.4rem;
	}
}




/*フィルター*/

.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_none740{
	display: block;
}

.br_none1200{
	display: block;
}

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

@media (max-width: 1400px){
	section{
		padding: 100px 0;
	}
}

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

@media (max-width: 960px){
	.br_960{
		display: block;
	}	
}
@media (max-width: 740px){
	.br_740{
		display: block;
	}
	.br_740.marker{
		background: linear-gradient(transparent 75%, rgb(241, 156, 167,0.7) 75%);;
	}
	section{
        padding: 60px 0;
    }
	.container{
		padding: 0;
	}
	.br_none740{
		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;
}

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

body p{
	letter-spacing: 0.05em;
}

i{
	padding-right: 0.4em;
}


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

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


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



.en{
	font-family: "mr-eaves-xl-modern", sans-serif;
	font-weight: 700;
	font-style: normal;
}

.flow_right{
	opacity: 0;
	transform: translateX(100px);
	transition: opacity .6s, transform .5s;
	transition-delay: 0.4s;
}
.flow_right.inview{
	opacity: 1;
	transform: translateX(0);
}



/* sub_ttl */



.sub_ttl{
	margin-bottom: 65px;
}

.sub_ttl .en{
	font-size: min(7vw,9.8rem);
	display: block;
	line-height: 1;
}

.sub_ttl .ja{
	position: relative;
	display: block;
	margin-top: 15px;
	font-size: min(1.5vw,2rem);
	letter-spacing: 0.03em;
	padding-left: 30px;
	line-height: 1.2;
	font-weight: 600;
}

.sub_ttl .ja::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #f8b600;
	height: 100%;
	width: 8px;
	top: 0;
	left: 0;
}
.sub_ttl .ja::after{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #f77912;
	height: 50%;
	width: 8px;
	bottom: 0;
	left: 12px;
}

.sub_ttl.center{
	width: fit-content;
	margin: 0 auto 70px;
}

.sub_ttl.center .ja{
	width: fit-content;
	margin: 15px auto 0;
	padding-right: 20px;
}



/* btn */



.m_btn{
	margin-top: 50px;
	width: fit-content;
}

.m_btn.center{
	margin: 50px auto 0;
}

.m_btn a{
	position: relative;
	font-weight: 600;
	font-size: 1.9rem;
	letter-spacing: 0.05em;
	display: block;
	padding-right: 74px;
	padding-top: 10px;
	padding-bottom: 10px;
}

.m_btn a .circle{
	display: inline-block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	transition: transform .3s cubic-bezier(.24,.45,.32,1);
	will-change: transform;
}

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

.m_btn a:hover .txt{
	opacity: 0.8;
}

.m_btn .circle::after{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/arrow.png);
	background-size: cover;
	background-position: center;
	aspect-ratio: 1 / 1;
	width: 28px;
	top: 50%;
	right: 12px;
	transform: translateY(-50%);
	z-index: 2;
}

.hougan{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f5f5f5 calc(100% - 1px)),
                    linear-gradient(90deg, transparent calc(100% - 1px), #f5f5f5 calc(100% - 1px));
  background-size: 26px 26px;
  background-repeat: repeat;
  background-position: center center;
  z-index: -1;
}




/* header */

header{
	position: fixed;
	top: 0;
	width: 100%;
	height: 120px;
	z-index: 99;
	transition: all .5s ease;
}

header.change_color{
	background-color: rgb(255, 255, 255,0.85);
	height: 100px;
}

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

h1 img{
	height: 60px;
}

h1 a:hover{
	opacity: 0.75;
}

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

.main_nav a{
	position: relative;
	display: block;
	font-size: 1.8rem;
	letter-spacing: 0.04em;
}

.main_nav a:hover{
	opacity: 0.75;
}

.main_nav a::before{
	content: "";
	display: inline-block;
	position: absolute;
	aspect-ratio: 1 / 1;
	background-color: #f77912;
	top: 5px;
	left: -7px;
	width: 8px;
	z-index: -1;
}

.co_btn{
	width: 170px;
	margin-left: 30px;
}

.co_btn a{
	font-size: 1.7rem;
	letter-spacing: 0.03em;
	display: block;
	background-color: #f8b600;
	padding: 8px 0;
	text-align: center;
}

.co_btn a:hover{
	opacity: 0.75;
}




/* fv */


.fv{
	position: relative;
	width: 100%;
}

.catch{
	position: absolute;
	top: 50%;
	left: 60px;
	transform: translateY(-50%);
	z-index: 2;
}

.catch h2{
	font-size: min(3.6vw,6.2rem);
	font-weight: 700;
}

.catch h2::first-letter{
	color: #f77912;
}

.catch h2 span{
	display: block;
	line-height: 1;
}

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



.top_slider{
	position: relative;
	height: calc(100vh - 180px);
	margin-top: 120px;
	min-height: 400px;
	width: 100%;
	top: 0;
}
/* .top_slider::after{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #f8b600;
	bottom: -30px;
	left: calc(30% - 30px);
	width: calc(70% + 30px);
	height: 100%;
	z-index: 0;
} */
.top_slider .slider{
	position: relative;
	width: 72%;
	height: 100%;
	z-index: 2;
	margin: 0 0 0 auto;
}



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

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

@media (max-width: 1400px){
	header{
		height: 100px;
	}
	.catch h2{
		font-size: 5rem;
	}
	.main_nav a{
		font-size: 1.6rem;
	}
	.co_btn a{
		font-size: 1.5rem;
	}
	.co_btn{
		width: 150px;
	}
	h1 img{
		height: 50px;
	}
	.top_slider{
		margin-top: 100px;
	}
	.catch{
		left: 40px;
	}
	.top_slider{
		height: calc(100vh - 140px);
	}
	.hd_inner{
		padding-left: 40px;
		padding-right: 40px;
	}
}


@media (max-width: 1200px){
	.top_slider{
		height: calc(80vh - 100px);
	}
	.main_nav{
		display: none;
	}
	.co_btn{
		display: none;
	}
	.hamburger_menu .co_btn{
		display: block;
		max-width: 350px;
		margin: 0 auto;
		width: 100%;
	}
	.hamburger_menu .co_btn a{
		padding: 15px 0;
		font-size: 1.6rem;
	}
	.catch h2{
		font-size: 4.2rem;
	}
	.sub_ttl .en{
		font-size: 7.8rem;
	}
	.sub_ttl .ja{
		font-size: 1.7rem;
	}
	.sub_ttl{
		margin-bottom: 50px;
	}
	.sub_ttl.center{
		margin-bottom: 50px;
	}
	.hd_inner{
		padding-left: 20px;
	}
}

@media (max-width: 740px){
	h1 img{
		height: 38px;
	}
	.hd_inner{
		padding-right: 15px;
		padding-left: 15px;
	}
	.catch h2{
		font-size: 2.8rem;
		color: #fff;
	}
	.catch h2 span+span{
		margin-top: 30px;
	}
	.top_slider {
		position: relative;
        height: calc(65vh - 100px);
    }
	
	.top_slider .slider{
		width: 100%;
	}
	
	.sub_ttl .en{
		font-size: 5.2rem;
	}
	.sub_ttl .ja{
		font-size: 1.5rem;
		margin-top: 10px;
	}
	.sub_ttl{
		margin-bottom: 40px;
	}
	.m_btn{
		margin: 30px auto 0;
	}
	.m_btn a{
		font-size: 1.6rem;
		padding-right: 60px;
	}
	.m_btn a .circle::before{
		width: 44px;
	}
	.m_btn .circle::after{
		width: 20px;
	}
	.sub_ttl.center{
		margin-bottom: 40px;
	}
	.sub_ttl.center .ja{
		margin-top: 10px;
	}
	.m_btn.center{
		margin-top: 30px;
	}
	.top_slider .slider li.top01{
		background-image: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),url(../img/foo_bg.jpg);
		background-position: center;
		background-size: cover;
	}
	.top_slider .slider li.top02{
		background-image: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),url(../img/top02.jpg);
		background-position: center;
		background-size: cover;
	}
	.top_slider .slider li.top03{
		background-image: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),url(../img/top03.jpg);
		background-position: center;
		background-size: cover;
	}
}



/* welcome */



.welcome .txt_box{
	font-size: min(1.2vw,1.8rem);
}

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

.welcome .left{
	position: relative;
	width: 50%;
}
.welcome .right{
	position: relative;
	width: 40%;
}

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

.welcome .right .img::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #f8b600;
	width: 100%;
	height: 100%;
	z-index: -1;
	bottom: -30px;
	right: -30px;
}

@media (max-width: 1200px){
	.welcome .txt_box{
		font-size: 1.6rem;
	}
	.welcome .flex_bet{
		flex-direction: column-reverse;
	}
	.welcome .left{
		width: 100%;
		margin-top: 80px;
		justify-content: center;
	}
	.welcome .right{
		width: 80%;
		margin: 0 auto;
	}
	.welcome .right .img img{
		aspect-ratio: auto;
		height: 350px;
	}
	
}

@media (max-width: 740px){
	.welcome .right{
		width: 70%;
	}
	.welcome .right .img img{
		height: 200px;
	}
	.welcome .right .img::before{
		bottom: -15px;
		right: -15px;
	}
	.welcome .left{
		margin-top: 50px;
	}
	.welcome .txt_box{
		font-size: 1.4rem;
	}
	.welcome .txt_box br{
		display: none;
	}
	.welcome .txt_box p+p{
		margin-top: 10px;
	}
}





/* service */



.service{
	/* background-color: rgb(248, 182, 0,0.6); */
	padding-top: 0px;
	padding-bottom: 150px;
}
.service .inner{
	margin-left: 0;
	max-width: none;
	width: 96%;
}

.service .left{
	width: 45%;
}

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

.service .left .img{
	position: relative;
}

.service .left .img::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #f8b600;
	width: 100%;
	height: 100%;
	bottom: -30px;
	right: -30px;
	z-index: -1;
}

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

.service .right .in{
	max-width: 620px;
	margin: 0 auto;
	width: 80%;
}

.service .txt_box{
	font-size: min(1.2vw,1.8rem);
}

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

.service .txt_box .fir{
	position: relative;
	font-size: min(1.8vw,2.8rem);
	padding-left: 30px;
	font-weight: 600;
}

.service .txt_box .fir::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #f77912;
	height: 4px;
	width: 20px;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}


@media (max-width: 1200px){
	.service .inner{
		flex-direction: column;
		margin: 0 auto;
		width: 92%;
	}
	.service .right{
		width: 100%;
		margin-top: 80px;
	}
	.service .txt_box{
		font-size: 1.6rem;
	}
	.service .txt_box .fir{
		font-size: 2.2rem;
	}
	.service .left{
		width: 80%;
		margin: 0 auto;
	}
	.service .left .img img{
		aspect-ratio: auto;
		height: 350px;
	}
	.service{
		padding-bottom: 80px;
	}
}

@media (max-width: 740px){
	.service .inner{
		width: 90%;
	}
	.service .left .img img{
		height: 200px;
	}
	.service .left{
		width: 70%;
	}
	.service .left .img::before{
		bottom: -15px;
		right: -15px;
	}
	.service .right{
		margin-top: 50px;
	}
	.service .right .in{
		width: 100%;
	}
	.service .txt_box{
		font-size: 1.4rem;
	}
	.service .txt_box .fir{
		font-size: 1.7rem;
		padding-left: 17px;
	}
	.service .txt_box .fir::before{
		width: 12px;
	}
	.service .txt_box p+p{
		margin-top: 10px;
	}
	.service{
		padding-bottom: 60px;
	}
}



/* works */




.works{
	padding-top: 0;
	padding-bottom: 0;
	overflow: hidden;
}


.works p.fir{
	font-size: 2rem;
	text-align: center;
	margin-bottom: 30px;
}


.works .hd_box{
	position: relative;
	background-color: #f5f5f5;
	border-top: solid 3px #f8b600;
	border-bottom: solid 3px #f8b600;
	height: 150px;
	margin-bottom: 130px;
}


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

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

.w_flowing::before,.w_flowing::after{
	content: "FURUICHI-KENSETSU, FURUICHI-KENSETSU, FURUICHI-KENSETSU, FURUICHI-KENSETSU";
	position: absolute;
	top: 0;
	width: 100%;
	height: auto;
	font-size: 12rem;
	line-height: 1;
	letter-spacing: 0.03em;
	text-align: center;
	white-space: nowrap;
	font-weight: 700;
	color: #ccc;
	/* text-shadow: 4px 4px 0px rgb(231, 93, 48,1); */
	pointer-events: none;
	z-index: 2;
}


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


.w_flowing{
	position: absolute;
	top: 15px;
	z-index: 2;
}


@media (max-width: 1200px){
	.works .hd_box{
		height: 120px;
		margin-bottom: 80px;
	}
	.w_flowing::before, .w_flowing::after{
		font-size: 9rem;
	}
	.works .item{
		width: calc((100% - 30px) / 2);
	}
	.works .item:nth-child(n+3){
		margin-top: 40px;
	}
	.works .inner{
		width: 80%;
	}
	.works p.fir{
		font-size: 1.6rem;
	}
	.w_flowing::after{
		left: 3600px;
	}
}

@media (max-width: 740px){
	.works .inner{
		width: 90%;
	}
	.works p.fir{
		font-size: 1.5rem;
	}
	.works .item {
        width: calc((100% - 15px) / 2);
    }
	.works .item .cate{
		font-size: 1.4rem;
		padding: 0 7px;
	}
	.works .item .ttl{
		font-size: 1.5rem;
		line-height: 1.5;
		margin-top: 5px;
	}
	.works .item:nth-child(n+3){
		margin-top: 20px;
	}
	.w_flowing::before, .w_flowing::after{
		font-size: 6rem;
	}
	.works .hd_box{
		height: 80px;
		margin-bottom: 60px;
	}
	.w_flowing{
		top: 8px;
	}
	.w_flowing::after{
		left: 2400px;
	}
}




/* recruit */


.recruit .left{
	width: 58%;
}
.recruit .right{
	width: 40%;
}
.recruit .right .in{
	padding-left: 60px;
	padding-right: 60px;
}
.recruit .left .img img{
	width: 100%;
	height: 600px;
	object-fit: cover;
}

.recruit .left .img{
	position: relative;
}

.recruit .left .img::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #f8b600;
	aspect-ratio: 1 / 1;
	width: 20px;
	top: 0;
	right: 0;
	transform: translate(50%,-50%);
}

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

.recruit .txt_box{
	font-size: min(1.6rem,1.2vw);
}

@media (max-width: 1400px){
	.recruit .right .in{
		padding-left: 40px;
		padding-right: 40px;
	}
}

@media (max-width: 1200px){
	.recruit .flex_bet{
		flex-direction: column;
	}
	.recruit .left .img img{
		height: 420px;
	}
	.recruit .left{
		width: 90%;
		margin-bottom: 50px;
	}
	.recruit .right{
		width: 100%;
	}
	.recruit .right .in{
		padding: 0;
		width: 80%;
		margin: 0 auto;
	}
	.recruit .txt_box{
		font-size: 1.6rem;
	}
}

@media (max-width: 740px){
	.recruit .left .img img{
		height: 220px;
	}
	.recruit .right .in{
		width: 90%;
	}
	.recruit .txt_box p+p{
		margin-top: 10px;
	}
	.recruit .txt_box{
		font-size: 1.4rem;
	}
}



/* news */



.news{
	padding-top: 0;
}


.news li{
	width: calc((100% - 90px) / 4);
}

.news ul{
	flex-wrap: wrap;
}

.news ul a{
	display: block;
	overflow: hidden;
}

.news .thumbnail{
	display: block;
	margin-bottom: 10px;
	overflow: hidden;
}

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

.news .ttl{
	font-size: 1.8rem;
}
.news .up_ymd{
	font-size: 2rem;
	font-weight: 800;
	color: #f77912;
	display: block;
}

.news ul a:hover .thumbnail img{
	transform: scale(1.05);
}

@media (max-width: 1200px){
	.news li{
		width: calc((100% - 30px) / 2);
	}
	.news .inner{
		width: 80%;
	}
	.news li:nth-child(n+3){
		margin-top: 40px;
	}
	
}

@media (max-width: 740px){
	.news .inner{
		width: 90%;
	}
	.news .ttl{
		display: block;
		font-size: 1.5rem;
		line-height: 1.5;
	}
	.news .up_ymd{
		font-size: 1.7rem;
	}
	.news li {
        width: calc((100% - 15px) / 2);
    }
	.news li:nth-child(n+3){
		margin-top: 20px;
	}
}






/* footer */


footer .inner{
	position: relative;
	z-index: 1;
	padding: 100px 0;
	font-size: 2rem;
}

footer .left{
	width: 48%;
}
footer .right{
	width: 48%;
}
footer .bg img{
	height: 800px;
	width: 100%;
	object-fit: cover;
}

.foo_logo {
	margin-bottom: 30px;
}

.foo_logo a:hover{
	opacity: 0.75;
}

.foo_logo img{
	display: block;
	height: 80px;
}


footer .btn .num{
	display: block;
	letter-spacing: 0.07em;
	background-color: #f8b600;
	padding: 12px 0;
	text-align: center;
	font-size: 2.4rem;
	font-weight: 800;
}

footer .btn{
	max-width: 500px;
	margin: 0 0 0 auto;
}

footer .btn .num.tp02{
	background-color: #fff;
	border: solid 2px #f8b600;
}

footer .btn+.btn{
	margin-top: 12px;
}

footer .btn:first-child .num{
	font-weight: 700;
}


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

footer .ch{
	padding-left: 5px;
}

.copy p{
	background-color: #f77912;
	color: #fff;
	letter-spacing: 0.12em;
	text-align: center;
	padding: 10px 0;
}

@media (max-width: 1400px){
	.foo_logo img{
		height: 70px;
	}
	footer .inner{
		font-size: 1.8rem;
	}
	footer .btn .num{
		font-size: 2rem;
	}
	footer .bg img{
		height: 550px;
	}
}

@media (max-width: 1200px){
	footer .bg img{
		height: 400px;
	}
	.foo_logo img{
		height: 52px;
	}
	footer .inner{
		font-size: 1.6rem;
	}
	footer .btn .num{
		font-size: 1.6rem;
	}
	footer .right{
		width: 45%;
	}
}

@media (max-width: 740px){
	footer .bg img{
		height: 300px;
	}
	footer .flex_bet{
		flex-direction: column;
	}
	footer .left{
		width: 100%;
		justify-content: center;
	}
	footer .right{
		width: 100%;
		margin-top: 30px;
	}
	footer .inner{
		padding: 60px 0;
		font-size: 1.5rem;
		text-align: center;
	}
	.foo_logo img{
		height: 48px;
		margin: 0 auto;
	}
	.foo_logo a{
		display: block;
		text-align: center;
	}
	.foo_logo{
		margin-bottom: 20px;
	}
	.copy p{
		font-size: 1.3rem;
		padding: 7px 0;
	}
	
}





/* page top */

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

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


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

.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 header{
	background-color: rgb(255, 255, 255, 0.85);
    height: 100px;
}


.kasou_top{
	position: relative;
	background: url(../img/foo_bg.jpg);
	background-size: cover;
	background-position: center;
	padding: 210px 0 110px;
	color: #fff;
}
.kasou_top::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: rgb(34, 34, 34,0.8);
	/* backdrop-filter: blur(3px); */
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}
.kasou_top .inner{
	position: relative;
	z-index: 1;
}

.kasou_top h2{
	font-size: 4rem;
	font-weight: bold;
	letter-spacing: 0.03em;
	text-align: center;
}

.kasou_top ol{
	width: fit-content;
	margin: 0 auto;
}

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

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

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

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

.kasou .sub_ttl .en{
	font-size: 8.2rem;
}

@media (max-width: 1200px){
	.kasou .sub_ttl .en{
		font-size: 7rem;
	}
}

@media (max-width: 740px){
	.kasou_top h2{
		font-size: 3rem;
	}
	.kasou_top ol{
		font-size: 1.25rem;
	}
	.kasou_top{
		padding: 160px 0 60px;
	}
	.kasou .sub_ttl .en{
		font-size: 5.2rem;
	}
}





/* 下層　事業内容 */



.s_title{
	position: relative;
	font-size: 2.6rem;
	letter-spacing: 0.03em;
	background-color: #fef8e5;
	padding: 5px 25px;
	margin-bottom: 30px;
	font-weight: 600;
}

.s_title::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #f77912;
	height: 3px;
	width: 15px;
	top: 50%;
	left: -5px;
	transform: translateY(-50%);
	z-index: 1;
}

.s_title .en{
	color: #f77912;
}

.ser_top .left{
	width: 46%;
}

.ser_top .right{
	width: 50%;
}

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

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

.ser_imgarea .img img{
	width: 100%;
	height: 650px;
	object-fit: cover;
}


.ser_item .case .box{
	flex-wrap: wrap;
	gap: 40px;
}

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


.ser_item .case_list{
	width: calc((100% - 120px) / 4);
}

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


.case{
	margin-top: 40px;
}

.case h4{
	position: relative;
	font-size: 2rem;
	border-bottom: solid 2px #ddd;
	margin-bottom: 25px;
	padding-bottom: 3px;
	letter-spacing: 0.04em;
	font-weight: 600;
}
.case h4::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #f77912;
	bottom: -2px;
	left: 0;
	width: 50px;
	height: 2px;
}

@media (max-width: 1200px){
	.ser_top .inner{
		flex-direction: column;
	}
	.ser_top .left{
		width: 100%;
	}
	.ser_top .right{
		width: 100%;
		margin-top: 40px;
	}
	.ser_imgarea .img img{
		height: 500px;
	}
	.ser_item .case .box{
		gap: 20px;
	}
	.ser_item .case_list {
		width: calc((100% - 60px) / 4);
	}
}

@media (max-width: 740px){
	.ser_top .left .img img{
		height: 220px;
	}
	.s_title{
		font-size: 2rem;
		margin-bottom: 15px;
	}
	.ser_top .right{
		margin-top: 25px;
	}
	.ser_imgarea .img img{
		height: 380px;
	}
	.case{
		margin-top: 25px;
	}
	.ser_item .case_list{
		width: calc((100% - 20px) / 2);
	}
	.case h4{
		font-size: 1.8rem;
	}
	.ser_item .item+.item{
		margin-top: 50px;
	}
}




/* 下層　施工実績 */


.p_gallery .gap_area{
	flex-wrap: wrap;
	gap: 30px;
}

.p_gallery .item{
	width: calc((100% - 90px) / 4);
	font-size: 1.3rem;
}

.p_gallery .item_title{
	font-size: 1.8rem;
	margin-top: 7px;
	margin-bottom: 7px;
}

.p_gallery .item a{
	display: block;
	width: 100%;
}

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

.p_gallery .mtitle{
	font-size: 2.6rem;
	line-height: 1.5;
	letter-spacing: 0.04em;
	padding-left: 8px;
	margin-bottom: 30px;
	border-left: solid 3px #f77912;
}

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


@media (max-width: 1200px){
	.p_gallery .item{
		width: calc((100% - 50px) / 3);
	}
	.p_gallery .gap_area{
		gap: 40px 25px;
	}
}

@media (max-width: 740px){
	.p_gallery .item{
		width: calc((100% - 20px) / 2);
	}
	.p_gallery .gap_area{
		gap: 30px 20px;
	}
	.p_gallery .mtitle{
		font-size: 2rem;
	}
	.p_gallery_wrapper+.p_gallery_wrapper{
		margin-top: 50px;
	}
}


/* .p_gallery .item .sub{

} */






/* 下層　採用情報 */


.rec_top .left{
	width: 46%;
}

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

.rec_top .right{
	width: 50%;
}

.rec_top .right .txt_box p+p{
	margin-top: 10px;
}

.k_aboutus{
	position: relative;
	padding-bottom: 100px;
	background: url(../img/welcome.jpg);
	background-size: cover;
	background-position: center;
	overflow: hidden;
	clip-path: ellipse(130% 100% at bottom);
}

.k_aboutus::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: rgb(248, 182, 0,0.7);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.k_aboutus .wrap{
	position: relative;
	background-color: rgb(255, 255, 255,0.8);
	margin: 0 auto;
	padding: 80px;
	z-index: 1;
}

.k_aboutus .wrap::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #f77912;
	aspect-ratio: 1 / 1;
	width: 20px;
	top: 0;
	left: 0;
	transform: translate(-50%,-50%);
	z-index: 1;
}

.k_aboutus .wrap::after{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #f77912;
	aspect-ratio: 1 / 1;
	width: 20px;
	bottom: 0;
	right: 0;
	transform: translate(50%,50%);
	z-index: 1;
}

.k_aboutus .left{
	width: 50%;
}

.k_aboutus .right{
	width: 45%;
}

.k_aboutus .right .img img{
	width: 100%;
	height: 450px;
	object-fit: cover;
}

.k_aboutus .right .img{
	position: relative;
}

.k_aboutus .right .img::before{
    content: "";
    display: inline-block;
    position: absolute;
    background-color: rgb(248, 182, 0);
    width: 100%;
    height: 100%;
    z-index: -1;
    bottom: -30px;
    right: -30px;
}

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

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

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


.bosyu ul li{
	position: relative;
	padding: 14px 0;
	letter-spacing: 0.05em;
	border-bottom: solid 1px #ccc;
	padding-left: 24px;
	font-size: 1.7rem;
}

.bosyu ul li::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #f77912;
	aspect-ratio: 1 / 1;
	width: 8px;
	top: 50%;
	left: 3px;
	transform: translateY(-50%) rotate(45deg);
}

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

.bosyu .wrap{
	position: relative;
	background-color: rgb(255, 255, 255,0.85);
	backdrop-filter: blur(5px);
	padding: 60px;
	max-width: 1080px;
	margin: 0 auto;
	z-index: 1;
}

.bosyu h3{
	position: relative;
	font-size: 3rem;
	text-align: center;
	margin-bottom: 30px;
	letter-spacing: 0.03em;
	font-weight: 600;
	padding-top: 20px;
}

.bosyu h3 .ttl_img{
	position: absolute;
	left: 50%;
	top: -10px;
	transform: translateX(-50%);
}

.bosyu h3 .ttl_img img{
	height: 30px;
}


.bosyu h3::first-letter{
	color: #f77912;
}


.apply {
	position: relative;
	padding: 100px 0;
	overflow: hidden;
}

.apply::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #f5f5f5;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	max-width: 1200px;
	width: 80%;
	z-index: -1;
}


.apply .txt_box{
	text-align: center;
	font-size: 1.8rem;
}

.apply .btn{
	width: 400px;
	margin: 40px auto 0;
}

.apply .btn a{
	display: block;
	font-size: 2.4rem;
	letter-spacing: 0.05em;
	font-weight: 800;
	background-color: #f8b600;
	text-align: center;
	padding: 16px 0;
}

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

.apply .btn span{
	display: block;
	letter-spacing: 0.03em;
	width: fit-content;
	font-size: 1.8rem;
	margin: 0 auto;
	color: #f77912;
	font-weight: bold;
}


@media (max-width: 1200px){
	.rec_top .flex_bet{
		flex-direction: column;
	}
	.rec_top .left{
		width: 100%;
	}
	.rec_top .right{
		width: 100%;
		margin-top: 40px;
	}
	.k_aboutus .wrap{
		flex-direction: column-reverse;
		padding: 60px;
	}
	.k_aboutus .right{
		width: 100%;
	}
	.k_aboutus .left{
		width: 100%;
		margin-top: 60px;
	}
	.k_aboutus .right .img img{
		height: 400px;
	}
	.apply::before{
		min-width: 800px;
	}
	.k_aboutus{
		clip-path: ellipse(170% 100% at bottom);
	}
}

@media (max-width: 740px){
	.rec_top .left .img img{
		height: 200px;
	}
	.rec_top .right{
		margin-top: 30px;
	}
	.k_aboutus .wrap{
		padding: 50px 20px;
	}
	.k_aboutus .right .img img{
		height: 200px;
	}
	.k_aboutus .right .img::before{
		bottom: -10px;
		right: -10px;
	}
	.k_aboutus .left{
		margin-top: 40px;
	}
	.k_aboutus{
		padding-bottom: 50px;
	}
	.bosyu{
		padding: 50px 0;
	}
	.bosyu .wrap{
		padding: 40px 20px;
	}
	.bosyu h3{
		font-size: 2rem;
	}
	.bosyu h3 .ttl_img img{
		height: 24px;
	}
	.bosyu ul li{
		font-size: 1.5rem;
	}
	.bosyu ul li::before{
		width: 6px;
	}
	.apply .btn{
		width: 100%;
		margin-top: 30px;
	}
	.apply .btn a{
		font-size: 1.8rem;
		padding: 14px 0;
	}
	.apply .btn span{
		font-size: 1.5rem;
	}
	.apply .txt_box{
		font-size: 1.4rem;
		text-align: left;
	}
	.apply{
		padding: 50px 0;
	}
}




/* 下層　会社案内 */


.k_greeting{
	padding-bottom: 100px;
}

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

.k_greeting .btm{
	text-align: right;
	margin-top: 20px;
	line-height: 1.5;
}

.k_greeting .btm .bb{
	font-size: 1.5em;
}

.k_greeting .inner{
	margin-left: 0;
	max-width: 1600px;
	width: 96%;
}

.k_greeting .left{
	width: 35%;
}

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

.k_greeting .right{
	width:60%;
	max-width: 960px;
	margin: 0 0 0 auto;
}


.k_greeting .wrap{
	position: relative;
	background-color: #f8b60040;
	padding: 60px;
	padding-left: 0;
}

.k_greeting .wrap::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #f77912;
	aspect-ratio: 1 / 1;
	width: 30px;
	top: 0;
	right: 0;
	transform: translate(50%,-50%);
}

.k_dur{
	width: 90%;
	max-width: 1600px;
	margin: 0 0 0 auto;
}

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

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

.info_table{
	width: 100%;
}

.info_table th{
	color: #f77912;
	border-top: solid 2px #f77912;
	border-bottom: solid 2px #f77912;
	width: 25%;
}

.info_table td{
	border-top: solid 2px #ccc;
	border-bottom: solid 2px #ccc;
	width: 75%;
}

.overview .inner{
	max-width: 1200px;
	margin: 0 auto;
}


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

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


@media (max-width: 1200px){
	.k_greeting .flex_bet{
		flex-direction: column;
		padding: 60px;
	}
	.k_greeting .right{
		width: 100%;
	}
	.k_greeting .left .img img{
		height: 400px;
	}
	.k_greeting .left{
		width: 60%;
		margin: 0 auto 40px;
	}
	.k_dur .img img{
		height: 430px;
	}
}

@media (max-width: 740px){
	.k_greeting{
		padding-bottom: 50px;
	}
	.k_greeting .left{
		width: 100%;
	}
	.k_greeting .left .img img{
		height: 360px;
	}
	.info_table th{
		width: 30%;
	}
	.info_table td{
		width: 70%;
	}
	.info_table th, .info_table td{
		padding: 14px 0;
	}
	.access .map iframe{
		height: 300px;
	}
	.access{
		padding: 50px 0;
	}
	.k_greeting .flex_bet{
		padding: 40px 20px;
	}
	.k_dur .img img{
		height: 300px;
	}
}




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



.co_area{
	position: relative;
}

.co_area .bg_img{
	position: absolute;
	top: 0;
	right: 0;
	width: 150px;
}

.co_area .bg_img.tp02{
	position: absolute;
	top: auto;
	right: auto;
	bottom: 0;
	left: 0;
	width: 150px;
	transform: scale(-1,-1);
}

.co_area .tel_box{
	max-width: 1080px;
	margin: 0 auto 50px;
	padding: 40px 60px;
	background-color: #fff;
	border: dotted 2px #333;
	text-align: center;
}

.co_area .tel_box .s_title{
	text-align: left;
}

.co_area .fir{
	font-size: 2rem;
	text-align: center;
	margin-bottom: 30px;
}

.mail_area{
	max-width: 1080px;
	margin: 0 auto 50px;
	padding: 40px 60px;
	background-color: #fff;
	border: dotted 2px #333;
}

.co_area .tel_box a{
	position: relative;
	font-size: 5.2rem;
	letter-spacing: 0.04em;
	font-weight: 800;
	padding-left: 65px;
}

.co_area .tel_box a::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #f77912;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	width: 54px;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.co_area .tel_box a::after{
	content: "\f095";
	display: inline-block;
	position: absolute;
	font-family: "Font Awesome 7 Free";
	font-weight: bold;
	top: 50%;
	left: 14px;
	color: #fff;
	font-size: 2.6rem;
	transform: translateY(-50%);
}

.co_area .tel_box p:last-child{
	font-size: 1.8rem;
}

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

input[type="text"].mini{
	width: 120px !important;
}

input[type="email"]{
	height: 42px;
	padding: 10px;
	background: #eee;
	border: solid 1px #ccc;
}

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

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

.contact_table{
	width: 100%;
}


.contact_table .ib td .che_box{
	margin-right: 40px;
	display: inline;
}

.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{
	color: #f77912;
	font-weight: bold;
}

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

.contact_table th{
	font-weight: 700;
	letter-spacing: 0.1em;
	display: block;
	width: 100%;
	margin-bottom: 10px;
	margin-top: 15px;
}

.contact_table td{
	width: 100%;
	display: block;
}



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

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

.form_btn button:hover{
	opacity: 0.7;
}

.form_attention{
	margin-top: 30px;
	line-height: 2;
	font-size: 1.4rem;
}


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

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


.postal_btn{
	background-color: #f77912;
	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: 20px;
}


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

.toggle:checked + .Label + .co_open{
	height: auto;
	transition: all .5s;
	height: 370px;
	padding-bottom: 40px;
}

.form_accordion p{
	font-size: 1.4rem;
	text-align: left;
	letter-spacing: 2px;
	line-height: 200%;
	color: #555;
	line-height: 1.7;
}

.form_accordion h4{
	margin-top: 20px;
	margin-bottom: 5px;
	font-size: 1.55rem;
	letter-spacing: 0.05em;
	position: relative;
	padding-left: 20px;
	font-weight: 500;
	padding-top: 5px;
	padding-bottom: 2px;
	border-bottom: dashed 1px #ccc;
}

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

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

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

.Label{
	position: relative;
	font-size: 1.4rem;
	letter-spacing: 2px;
	padding: 8px 0;
	display: block;
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.2em;
	background-color: #f5f5f5;
}

.Label::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/add.png);
	background-size: cover;
	background-position: center;
	aspect-ratio: 1 / 1;
	top: 52%;
	left: calc(50% + 140px);
	width: 18px;
	transform: translate(-50%,-50%);
}

.Label, .co_open{
	backface-visibility: hidden;
	transition: all 0.5s;
	padding-left: 60px;
	padding-right: 60px;
}

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

.co_open{
	height: 0;
	width: 100%;
	-webkit-overflow-scrolling: touch;
	transform: translateZ(0);
	overflow-y: scroll;
	border: solid 1px #ccc;
	border-top: none;
}

.mail_area .wrap{
	background-color: #fff;
	padding: 60px 80px;
	margin-top: 60px;
	border-radius: 10px;
}


.contact_table td .tyui {
    display: block;
    font-size: 1.3rem;
	line-height: 2;
    margin-top: 10px;
    color: #b1191c;
}


@media (max-width: 1200px){
	.co_area .bg_img{
		width: 80px;
	}
	.co_area .bg_img.tp02{
		width: 80px;
	}
}

@media (max-width: 740px){
	.co_area .fir{
		font-size: 1.8rem;
	}
	.co_area .tel_box{
		padding: 30px 20px;
		margin-bottom: 30px;
	}
	.co_area .tel_box a{
		font-size: 3.6rem;
		padding-left: 46px;
	}
	.co_area .tel_box a::before{
		width: 36px;
	}
	.co_area .tel_box a::after{
		font-size: 1.8rem;
		left: 10px;
	}
	.co_area .tel_box p:last-child{
		font-size: 1.5rem;
	}
	.mail_area{
		padding: 30px 20px;
	}
	.form_attention{
		font-size: 1.3rem;
	}
	.Label{
		font-size: 1.3rem;
	}
	.Label, .co_open{
		padding-left: 20px;
		padding-right: 20px;
	}
	.form_btn button{
		padding: 10px 0 8px;
		font-size: 1.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: #f77912;
	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 #f77912;
    color: #f77912;
    letter-spacing: 2px;
    padding: 15px 0;
    text-align: center;
	border-radius: 50px;
}

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

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

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