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


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



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

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

.center{
	text-align: center;
}

/*フェードイン*/
.flowup{
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 1300ms, transform 1200ms;
	transition-delay: 350ms;
}
.flowup.inview{
	opacity: 1;
	transform: translateY(0);
}

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

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

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

.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.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 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: 92%;
	max-width: 1400px;
	margin: 0 auto;
}

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

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

.flex{
    display: flex;
}

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

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

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

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

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

main{
}


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



.w100{
	width: 100%;
}

.kizi{
	line-height: 2.2;
}

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




/*フィルター*/

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

.br_none1200{
	display: block;
}

section{
	position: relative;
	padding: 130px 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: 60px 0;
    }
	.container{
		padding: 0;
	}
	.br_none650{
		display: inline;
	}
	body{
		font-size: 1.3rem;
	}
}




/* 文字間 */

.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;
}
.en{
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-style: normal;
}





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



/* btn */



.m_btn{
	position: relative;
	margin-top: 60px;
	z-index: 10;
}

.m_btn a{
	position: relative;
	display: block;
	padding: 16px 0;
	border: solid 1px #ccc;
	border-radius: 50px;
	padding-left: 30px;
	padding-right: 110px;
	font-weight: 500;
	letter-spacing: 0.03em;
	width: fit-content;
	overflow: hidden;
}

.m_btn a::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #e31bae;
	height: 25px;
	width: 40px;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	border-radius: 30px;
	z-index: -1;
}

.m_btn a::after{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #e31bae;
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	transform: translateY(-50%) scale(0);
	top: 50%;
	left: 0;
	transition: all .3s ease;
	z-index: -2;
}
.m_btn a:hover::after{
	transform: translateY(-50%) scale(1);
}

.m_btn a .arrow{
	position: absolute;
	background: url(../img/arrow_w.png);
	background-size: cover;
	background-position: center;
	top: 50%;
	right: 29px;
	transform: translateY(-50%);
	aspect-ratio: 1 / 1;
	width: 20px;
	z-index: 0;
}

.m_btn a:hover::before{
	background: #fff;
}


.m_btn a .af_arrow{
	position: absolute;
	background: url(../img/arrow_p.png);
	background-size: cover;
	background-position: center;
	top: 50%;
	right: 49px;
	transform: translateY(-50%);
	aspect-ratio: 1 / 1;
	width: 20px;
	z-index: 0;
	opacity: 0;
	transition: all .3s;
}

.m_btn a:hover .af_arrow{
	opacity: 1;
	right: 29px;
}

.m_btn a:hover{
	color: #fff;
}

.m_btn.tp02 a{
	color: #fff;
}

.m_btn.tp02 a::before{
	background: #fff;
}
.m_btn.tp02 a:hover::before{
	background: linear-gradient(45deg,rgba(80, 143, 248, 1) 0%, rgba(24, 78, 151, 1) 100%);
}
.m_btn.tp02 a::after{
	background: #fff;
}
.m_btn.tp02 a:hover{
	color: #e31bae;
}
.m_btn.tp02 a .af_arrow{
	background: url(../img/arrow_w.png);
	background-size: cover;
	background-position: center;
}
.m_btn.tp02 a .arrow{
	background: url(../img/arrow_p.png);
	background-size: cover;
	background-position: center;
}




/* sub_ttl */


.sub_ttl .en{
	font-size: 7rem;
	display: block;
	line-height: 1.5;
}
.sub_ttl {
	margin-bottom: 50px;
}

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


@media (max-width: 740px){
	.sub_ttl .en{
		font-size: 4rem;
	}
	.sub_ttl{
		margin-bottom: 30px;
	}
	.m_btn{
		margin-top: 30px;
	}
}



/* header */


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

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

.main_nav li{
	position: relative;
}

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

.main_nav a:hover{
	color: #e31bae;
}

.main_nav li::before{
	content: "";
	display: inline-block;
	position: absolute;
	aspect-ratio: 1 / 1;
	background-color: #e31bae;
	border-radius: 50%;
	bottom: -8px;
	left: 50%;
	width: 7px;
	transform: translateX(-50%);
	opacity: 0;
	transition: all .3s;
}

.main_nav li:hover::before{
	opacity: 1;
}


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

.l_fixed{
	position: fixed;
	top: 34px;
	left: 40px;
}

.r_fixed{
	position: fixed;
	top: 34px;
	right: 40px;
}

h1{
	font-size: 2.4rem;
	font-weight: 600;
}

h1 .mini{
	display: inline-block;
	font-size: 0.7em;
	margin-right: 5px;
	color: #ddd;
}

h1 a:hover{
	opacity: 0.75;
}

.tel_btn a{
	position: relative;
	font-size: 1.8rem;
	padding: 5px 8px 4px;
}

.tel_btn a::before{
	content: "";
	display: inline-block;
	position: absolute;
	border: solid 1px #e31bae;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: all .3s;
}


.tel_btn a:hover::before{
	opacity: 1;
	
}

.tel_btn a:hover{
	color: #e31bae;
}


.openBox {
    position: absolute;
    display: block;
    background-color: #fff;
    bottom: -25px;
    left: 50%;
    width: auto;
    transform: translate(-50%, 100%);
    white-space: nowrap;
    padding: 18px;
	width: 360px;
    transition: all .2s;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}


.openList .openBox a{
	position: relative;
	display: block;
	padding: 8px 0;
	padding-left: 25px;
	color: #333;
	font-size: 1.5rem;
}

.openList .openBox a::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #e31bae;
	top: 48%;
	left: 10px;
	transform: translateY(-50%);
	border-radius: 50%;
	width: 5px;
	aspect-ratio: 1 / 1;
}

.openList .openBox a:hover{
	opacity: 0.75;
}

.openList .openBox .img{
	display: block;
	width: 48%;
}

.openList .openBox .img img{
	width: 100%;
	height: 130px;
	object-fit: cover;
}

.openList .openBox .nn{
	display: block;
	width: 45%;
	padding-top: 5px;
}

.openBox{
	opacity: 0;
	pointer-events: none;
}

.openList{
	position: relative;
}


.openList.active .openBox{
	opacity: 1;
	pointer-events: all;
}



.main_nav a.pla{
	position: relative;
	padding-right: 17px;
	transition: all.2s;
	cursor: pointer;
}

.main_nav a.pla::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #e31bae;
	height: 2px;
	width: 10px;
	top: 9px;
	right: 1px;
	transition: all.2s;
}
.main_nav a.pla::after{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #e31bae;
	height: 10px;
	width: 2px;
	top:5px;
	right: 5px;
	transition: all.2s;
}


.openList.active a.pla::after{
	opacity: 0;
}



@media (max-width: 1200px){
	.main_nav{
		display: none;
	}
	.hd_inner{
		justify-content: flex-end;
	}
}

@media (max-width: 740px){
	h1{
		font-size: 1.8rem;
	}
	.l_fixed{
		top: 25px;
		left: 20px;
	}
	header{
		height: 80px;
	}
	.hd_inner{
		padding-right: 15px;
	}
}




/* fv */


.fv{
	position: relative;
	height: 100vh;
	width: 100%;
	overflow: hidden;
}

.fv_bg{
	background: url(../img/n_fv_bg.jpg);
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 100%;
	opacity: 0.9;
}

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

.fv_flowing::after{
	left: 10300px;
	animation: flowing 30s linear infinite;
}

.fv_flowing::before,.fv_flowing::after{
	content: "CHIHARU KOGYO.,LTD. CHIHARU KOGYO.,LTD. CHIHARU KOGYO.,LTD.";
	position: absolute;
	bottom: 50px;
	width: 100%;
	letter-spacing: -0.03em;
	height: auto;
	font-size: min(20vw,30rem);
	 text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.15);
	line-height: 1;
	text-align: center;
	white-space: nowrap;
	color: #eee;
	pointer-events: none;
	z-index: 2;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-style: normal;
	
}


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


.fv_flowing{
	position: absolute;
	top: 70%;
	transform: translateY(-50%);
	z-index: 2;
}
/* 
.person{
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	z-index: 3;
	min-width: 800px;
}

.person .re_area{
	position: relative;
	max-width: 1080px;
}

.person .re_area .ob01{
	width: 300px;
	object-fit: cover;
}

.person .re_area .ob02{
	width: 340px;
	margin-left: 90px;
	margin-right: 90px;
	object-fit: cover;
}
.person .re_area .ob03{
	width: 310px;
} */

.fv .smoke{
	position: absolute;
	top: -120px;
	right: -180px;
	z-index: 4;
	width: 55%;
	min-width: 550px;
}
.fv .smoke02{
	position: absolute;
	bottom: -120px;
	left: -180px;
	z-index: 4;
	width: 55%;
	min-width: 550px;
}




/* 

.fv.tp02 .fv_bg{
	background: url(../img/fv_bg.jpg);
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 100%;
	opacity: 0.7;
}

.fv.tp02 .fv_flowing::before,.fv_flowing::after{
	color: #ddd;
	text-shadow: 0 0 0.1em #72416a, 0 0 0.1em #72416a,
    0 0 0.1em #72416a, 0 0 0.2em #72416a,
    0 0 1em #72416a;
}


.fv.tp02 .per_kiri{
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	z-index: 5;
	width: 260px;
} */




@media (max-width: 1200px){
	.person .re_area .ob02{
		margin: 0;
	}
	.person .re_area .ob01,.person .re_area .ob02,.person .re_area .ob03{
		width: 26%;
		max-width: 180px;
	}
	.person .re_area{
		justify-content: space-between;
	}
	.fv_flowing::before,.fv_flowing::after{
		font-size: 20rem;
	}
	.r_fixed{
		display: none;
	}
	.fv{
		height: 80vh;
	}
}

@media (max-width: 740px){
	.person{
		min-width: auto;
		width: 100%;
	}
	.fv .smoke{
		min-width: 400px;
	}
	.fv .smoke02{
		min-width: 400px;
	}
	.fv_flowing::before, .fv_flowing::after{
		font-size: 12rem;
	}
}




/* aboutus */


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

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

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

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

/* .aboutus .inner::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/kakko.png);
	background-size: cover;
	background-position: center;
	top: 0;
	right: 0;
	width: 50px;
	aspect-ratio: 1 / 1;
	transform: rotate(45deg);
}

.aboutus .inner::after{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/kakko.png);
	background-size: cover;
	background-position: center;
	bottom: 0;
	right: 0;
	width: 50px;
	aspect-ratio: 1 / 1;
	transform: rotate(135deg);
} */

.aboutus .txt_box{
	max-width: 430px;
	margin: 0 auto;
}

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

.aboutus .left{
	width: 48%;
}

.aboutus .right{
	width: 45%;
	justify-content: center;
}


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

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

.aboutus .left .img::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: rgb(20, 24, 26,0.3);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.aboutus .smoke{
	position: absolute;
	bottom: -130px;
	left: -100px;
	z-index: 5;
	opacity: 0.7;
}

.aboutus .ac_num{
	position: absolute;
	top: 80px;
	right: 30px;
	color: #e31bae;
}

@media (max-width: 1200px){
	.aboutus .inner{
		flex-direction: column;
	}
	.aboutus .left{
		width: 100%;
		margin-bottom: 40px;
	}
	.aboutus .left .img img{
		height: 400px;
	}
	.aboutus .right{
		width: 100%;
		/* justify-content: flex-end; */
	}
	.aboutus .txt_box{
		max-width: none;
	}
}

@media (max-width: 740px){
	.aboutus .left .img img{
		height: 220px;
	}
}








/* service */


.service {
	position: relative;
	background-color: #e7e7e7;
	color: #14181A;
}

.service .top_area .txt_box{
	padding-top: 45px;
}

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

.service .item a{
	position: relative;
	display: block;
	height: 340px;
	overflow: hidden;
}

.service .item .bg{
	position: absolute;
	display: inline-block;
	width: 100%;
	height: 100%;
	z-index: 2;
	opacity: 0;
	transition: opacity 1s;
}


.service .item .bg img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 5s;
}

.service .item_list{
	position: relative;
	border: solid 1px #aaa;
}

.service .item_list::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/ser_bg.jpg);
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-position-y: 70%;
	z-index: 1;
}

.service .item a:hover .bg{
	opacity: 1;
}

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


.service .item .ab_txt{
	position: absolute;
	top: 43%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 4;
}

.service .item .ab_txt h3 .en{
	display: block;
	letter-spacing: 0.1em;
	font-size: 0.85em;
	color: #fff;
}

.service .item .ab_txt h3{
	position: relative;
	font-size: 2.2rem;
	letter-spacing: 0.1em;
	text-align: center;
	font-weight: 600;
}

.service .item a::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #aaa;
	height: 100%;
	width: 1px;
	right: 0;
	top: 0;
	z-index: 3;
}

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

.service .smoke{
	position: absolute;
	bottom: -200px;
	right: 0;
}

.service .item .ab_txt h3::before{
	content: "";
	display: inline-block;
	position: absolute;
	border: solid 1px #fff;
	background-color: rgb(227, 27, 174,0);
	aspect-ratio: 1 / 1;
	width: 30px;
	left: 50%;
	bottom: -40px;
	transform: translateX(-50%);
	border-radius: 50%;
	transition: all .3s;
}
.service .item a:hover .ab_txt h3::before{
	background-color: rgb(227, 27, 174,1);
}

.service .item .ab_txt h3::after{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/arrow_w.png);
	aspect-ratio: 1 / 1;
	background-size: cover;
	background-position: center;
	left: 51%;
	bottom: -35px;
	width: 20px;
	transform: translateX(-50%);
}

@media (max-width: 1200px){
	.service .top_area{
		flex-direction: column;
	}
	.service .top_area .txt_box{
		padding: 0;
	}
	.service .top_area .txt_box p{
		display: inline;
	}
	.service .item_list{
		margin-top: 40px;
	}
}

@media (max-width: 740px){
	.service .item_list{
		flex-direction: column;
	}
	.service .item{
		width: 100%;
	}
	.service .item a{
		height: 160px;
	}
	.service .item .ab_txt h3{
		font-size: 1.8rem;
	}
	.service .item a::before{
		height: 1px;
		width: 100%;
		top: auto;
		bottom: 0;
	}
	.service .item .ab_txt{
		top: 40%;
	}
	.service .sub_ttl{
		text-align: center;
	}
}





/* area */



.area{
	position: relative;
	background: url(../img/area_bg2.jpg);
	background-size: cover;
	background-position: center;
	overflow: hidden;
}


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

.area::after{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/noise.png);
	background-repeat: repeat;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.area .circle::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: rgb(0, 0, 0,0.3);
	aspect-ratio: 1 / 1;
	width: 320px;
	top: 50%;
	left: 60%;
	transform: translate(-50%,-50%);
	border-radius: 50%;
}

.area .circle::after{
	content: "";
	display: inline-block;
	position: absolute;
	background: rgb(0, 0, 0,0.1);
	aspect-ratio: 1 / 1;
	width: 820px;
	top: 50%;
	left: 60%;
	transform: translate(-50%,-50%);
	border-radius: 50%;
}

.area .inner{
	position: relative;
	z-index: 2;
}

.area p.ac{
	font-size: 3.6rem;
	font-weight: 600;
	width: fit-content;
	letter-spacing: 0.1em;
	line-height: 1.5;
	margin-bottom: 15px;
	border-bottom: dashed 2px #ccc;
	padding-bottom: 5px;
	padding-left: 5px;
	padding-right: 5px;
}

.area .txt_box{
	font-size: 1.8rem;
}

/* .area .inner{
	padding: 60px 0 30px;
	background-color: #272e31;
} */

.area .wrapper{
	position: relative;
	max-width: 960px;
	margin: 0 auto;
	z-index: 2;
}

.area .img{
	text-align: right;
	margin-top: -270px;
}

.area .img img{
	width: 100%;
	max-width: 550px;
	object-fit: cover;
}

.area .ac_img{
	position: absolute;
	top: 40%;
	left: 58%;
	transform: translate(-50%,-50%);
	z-index: 3;
}

.area .ac_img img{
	width: 80px;
}

@media (max-width: 1200px){
	.area .img img{
		max-width: 400px;
	}
	.area .ac_img img{
		width: 60px;
	}
}

@media (max-width: 740px){
	.area .img img{
		max-width: 250px;
	}
	.area .ac_img img{
		width: 40px;
	}
	.area .img{
		margin-top: -120px;
	}
	.area p.ac{
		font-size: 2.4rem;
	}
	.area .txt_box{
		font-size: 1.5rem;
	}
	.area .circle::before{
		width: 120px;
		top: 55%;
	}
	.area .circle::after{
		width: 300px;
		top: 55%;
	}
	.area .ac_img{
		top: 50%;
	}
}





/* recruit */





.recruit{
	background-color: #000;
	padding-bottom: 0;
}

.recruit .v_inner{
	position: relative;
	margin-right: 60px;
}

.recruit .v_inner::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/pattern-01.png);
	width: 100%;
	height: 100%;
	background-repeat: repeat;
	background-attachment: fixed;
	z-index: 2;
}

.recruit .v_inner::after{
	content: "";
	display: inline-block;
	position: absolute;
	background: linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 0) 100%);
	width: 50%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}

.recruit .v_inner video{
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	top: 0;
	z-index: 0;
}

.recruit .txt_area{
	position: relative;
	z-index: 3;
	padding: 200px 0;
	padding-left: 100px;
	font-weight: 600;
}

@media (max-width: 1200px){
	.recruit .txt_area{
		padding: 150px 0;
		padding-left: 40px;
	}
	.recruit .v_inner{
		margin-right: 0;
	}
}

@media (max-width: 740px){
	.recruit .txt_area{
		padding: 80px 0;
		padding-left: 20px;
	}
	.recruit .v_inner::after{
		width: 100%;
		background: rgb(0, 0, 0,0.5);
	}
}



/* accentbox */


.accent_box{
	background-color: #000;
	overflow: hidden;
	padding: 50px 0;
}

.accent_box p{
	font-size: min(13vw,20rem);
	letter-spacing: normal;
	color: #aaa;
	white-space: nowrap;
	line-height: 1;
	font-weight: 800;
	background-image: url(../img/ser_bg.jpg);
	background-clip: text;/*画像を切り抜く指定*/
	-webkit-background-clip: text;/*画像の位置を決める　ベンダープレフィックスもいれておきます*/
	color: transparent;/*テキスト透過*/
	background-repeat: no-repeat;
	background-size: cover;
	background-position-y: 67%;/*画像の位置を決める*/
}


@media (max-width: 1200px){
	.accent_box p{
		font-size: 9rem;
	}
}

@media (max-width: 740px){
	.accent_box p{
		font-size: 5rem;
	}
	.accent_box{
		padding: 30px 0;
	}
}



/* mini_sli */


.mini_sli{
	background-color: #14181A;
	padding: 100px 0;
}

.mini_sli .slick-slide:nth-child(even){
	margin-top: 30px;
}

.mini_sli img{
	filter: brightness(0.8);
}

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





/* news */


.news{
	overflow: hidden;
	background-color: #e7e7e7;
	color: #14181A;
}

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

.news .sub_ttl .en{
	display: inline-block;
	margin-right: 20px;
}

.news .top_area{
	border-bottom: solid 1px #555;
	padding-bottom: 10px;
	margin-bottom: 60px;
}

.news .m_btn{
	margin-top: 0;
	padding-bottom: 15px;
}

.news .m_btn a{
	color: #14181A;
}

.news li{
	width: 31%;
}


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

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

.news span.ttl{
	position: relative;
	font-size: 1.8rem;
	display: inline;
	transition: all .3s;
	border-bottom: solid 1px rgb(204, 204, 204,0);
	border-width: 0px;
}

.news span.up_ymd{
	font-size: 1.6rem;
	letter-spacing: 0.05em;
	background-color: #e31bae;
	width: fit-content;
	display: inline;
	margin-right: 8px;
	padding: 0 5px;
	padding-top: 3px;
	margin-bottom: 5px;
}

.news span.txt{
	color: #14181A;
}

.news li a:hover img{
	transform: scale(1.1);
}

.news li a:hover span.ttl{
	border-bottom: solid 1px rgb(204, 204, 204,1);
}

.news .m_btn.tp_mobile{
	display: none;
}



@media (max-width: 740px){
	.news ul{
		flex-direction: column;
		align-items: center;
	}
	.news li{
		width: 86%;
	}
	.news span.thumbnail img{
		aspect-ratio: 5 / 3;
	}
	.news li+li{
		margin-top: 30px;
	}
	.news .m_btn.tp_pc{
		display: none;
	}
	.news .top_area{
		border-bottom: 0px;
		padding: 0;
		margin: 0;
	}
	.news .sub_ttl .en{
		display: block;
		margin: 0;
	}
	.news .sub_ttl{
		text-align: center;
		margin: 0 auto 30px;
	}
	.news span.ttl{
		font-size: 1.5rem;
	}
	.news span.up_ymd{
		font-size: 1.4rem;
	}
	.mini_sli .slick-slide:nth-child(even){
		margin-top: 15px;
	}
	.news .m_btn.tp_mobile{
		display: block;
	}
	.news .m_btn{
		margin: 30px auto 0;
		width: fit-content;
	}
}




/* footer */


footer{
	background-color:#000;
	/* padding-top: 50px; */
}

.foo_top{
	position: relative;
	padding: 100px 0;
	background: url(../img/co_bg.jpg);
	background-size: cover;
	background-position: center;
	background-color: #000;
	/* margin-bottom: 50px; */
}

.foo_top::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/noise.png);
	background-repeat: repeat;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

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

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

.foo_top .sub_ttl{
	text-align: center;
}

.foo_top .btn{
	width: 300px;
}

.foo_top .btn a{
	display: block;
	padding: 20px 0;
	border: solid 1px #ccc;
	font-size: 1.8rem;
	text-align: center;
	font-weight: 500;
}

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

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

.foo_btm{
	overflow: hidden;
	position: relative;
	background: url(../img/fv_bg.jpg);
	background-size: cover;
	background-position: center;
	padding: 150px 0;
	background-attachment: fixed;
	text-align: center;
}

::-webkit-full-page-media, :future, :root .foo_btm{
	background-attachment: scroll;
}
	
.foo_btm::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: rgb(20, 24, 26,0.8);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 0;
}

.foo_inner{
	position: relative;
	z-index: 3;
}

.foo_logo{
	margin-bottom: 25px;
}

.foo_logo a{
	display: block;
	font-size: 3.4rem;
	font-weight: 600;
	width: fit-content;
	margin: 0 auto;
}

.foo_logo a .mini{
	display: inline-block;
	font-size: 0.7em;
	color: #ccc;
	margin-right: 8px;
}

.foo_logo a:hover{
	opacity: 0.75;
}

.copy{
	margin-top: 60px;
}

.copy p{
	font-size: 1.4rem;
}

.foo_btm .smoke{
	position: absolute;
	bottom: -350px;
	right: 40px;
	z-index: 1;
}

.foo_btm .smoke02{
	position: absolute;
	bottom: -350px;
	left: 40px;
	transform: scale(-1,1);
	z-index: 1;
}

.foo_btm .ac_txt{
	position: absolute;
	font-size: 10rem;
	color: #ccc;
	line-height: 1;
	left: 51%;
	bottom: -20px;
	z-index: 2;
	transform: translateX(-50%);
	white-space: nowrap;
}


@media (max-width: 1200px){
	.foo_btm .ac_txt{
		font-size: 6rem;
		bottom: -10px;
	}
}

@media (max-width: 740px){
	.foo_top .flex_center{
		flex-direction: column;
		align-items: center;
	}
	.foo_top .btn+.btn{
		margin-left: 0;
		margin-top: 20px;
	}
	.foo_top .btn a{
		font-size: 1.5rem;
	}
	.foo_top{
		padding: 60px 0;
	}
	.foo_logo a{
		font-size: 2.8rem;
	}
	.copy{
		margin-top: 45px;
	}
	.foo_btm .ac_txt{
		font-size: 4.2rem;
		transform: translateX(0);
		left: 0;
		text-align: left;
		bottom: -5px;
	}
	.foo_btm{
		padding: 120px 0;
	}
	.foo_btm .smoke{
		left: -50px;
		width: 300px;
		bottom: -100px;
	}
	.foo_btm .smoke02{
		width: 300px;
		right: -50px;
		left: auto;
		top: -100px;
		bottom: auto;
	}
}



/* page top */

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

.page_top{
	opacity: 0;
    pointer-events: none;
    width: 45px;
    height: 45px;
    position: fixed;
    right: 3%;
    bottom: 5%;
    opacity: 0;
    transition: 1s;
    z-index: 49;
}


.page_top a {
    display: block;
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
	border: solid 2px #e31bae;
}

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

.page_top a .txt{
	position: absolute;
	top: -25px;
	left: 50%;
	display: inline-block;
	transform: translateX(-50%);
	white-space: nowrap;
	font-size: 1.3rem;
}

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

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






/* 下層トップ */


.kasou_top{
	margin-top: 110px;
	padding-top: 160px;
	padding-bottom: 60px;
	border-top: solid 1px #ccc;
}

.k_insu .kasou_top{
	position: relative;
	background: url(../img/kasou_insu.jpg);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}
::-webkit-full-page-media, :future, :root .k_insu .kasou_top{
	background-attachment: scroll;
}
.k_about .kasou_top{
	position: relative;
	background: url(../img/fv_bg.jpg);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}
::-webkit-full-page-media, :future, :root .k_about .kasou_top{
	background-attachment: scroll;
}
.k_pip .kasou_top{
	position: relative;
	background: url(../img/kasou_pip.jpg);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}
::-webkit-full-page-media, :future, :root .k_pip .kasou_top{
	background-attachment: scroll;
}
.k_civil .kasou_top{
	position: relative;
	background: url(../img/kasou_civil.jpg);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}
::-webkit-full-page-media, :future, :root .k_civil .kasou_top{
	background-attachment: scroll;
}
.k_list .kasou_top,.k_detail .kasou_top{
	position: relative;
	background: url(../img/fv_bg2.jpg);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}
::-webkit-full-page-media, :future, :root .k_list .kasou_top{
	background-attachment: scroll;
}
::-webkit-full-page-media, :future, :root .k_detail .kasou_top{
	background-attachment: scroll;
}
.k_contact .kasou_top,.thanks .kasou_top{
	position: relative;
	background: url(../img/aboutus.jpg);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}
::-webkit-full-page-media, :future, :root .k_contact .kasou_top{
	background-attachment: scroll;
}
::-webkit-full-page-media, :future, :root .thanks .kasou_top{
	background-attachment: scroll;
}
.k_rec .kasou_top{
	position: relative;
	background: url(../img/ser_bg.jpg);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}
::-webkit-full-page-media, :future, :root .k_rec .kasou_top{
	background-attachment: scroll;
}

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

.kasou_top::after{
	content: "";
	display: inline-block;
	position: absolute;
	background: linear-gradient(270deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.kasou_top h2 .en{
	font-size: 12rem;
	display: block;
}

.kasou_top h2 .ja{
	position: relative;
	color: #e31bae;
	font-size: 1.7rem;
	padding-left: 20px;
	letter-spacing: 0.05em;
}

.kasou_top h2 .ja::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #e31bae;
	height: 1px;
	width: 10px;
	top: 50%;
	left: 3px;
}

.k_inner{
	position: relative;
	z-index: 2;
	margin-left: 60px;
	margin-right: 60px;
}

.kasou_top .txt_box{
	max-width: 800px;
	margin-top: 80px;
	font-size: 1.6rem;
}

.kasou_top ol{
	font-size: 1.6rem;
	width: fit-content;
	margin: 40px 0 0 auto;
}

.kasou_top ol a{
	position: relative;
	color: #aaa;
	padding-right: 75px;
}
.kasou_top ol a::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #aaa;
	top: 50%;
	right: 0;
	height: 1px;
	width: 60px;
}

.kasou_top ol li{
	letter-spacing: 0.05em;
}

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

@media (max-width: 1200px){
	.kasou_top h2 .en{
		font-size: 7rem;
	}
	.k_inner{
		margin-left: 40px;
		margin-right: 40px;
	}
	.kasou_top{
		padding-top: 90px;
	}
	.kasou_top ol{
		margin-top: 70px;
	}
	.kasou_top .txt_box{
		margin-top: 50px;
	}
}

@media (max-width: 740px){
	.kasou_top h2 .en{
		font-size: 5rem;
		line-height: 1.2;
		margin-bottom: 20px;
	}
	.kasou_top h2 .ja{
		font-size: 1.5rem;
	}
	.k_inner{
		margin-left: 20px;
		margin-right: 20px;
	}
	.kasou_top ol{
		font-size: 1.2rem;
		margin-top: 40px;
		flex-wrap: wrap;
	}
	.kasou_top ol a{
		padding-right: 40px;
	}
	.kasou_top ol a::before{
		width: 28px;
	}
	.kasou_top{
		margin-top: 80px;
		padding-top: 70px;
	}
	.kasou_top .txt_box{
		font-size: 1.5rem;
		margin-top: 40px;
	}
}



/* 下層　保温工事 */


.sub_ttl02{
	position: relative;
	font-size: 4rem;
	letter-spacing: 0.03em;
	margin-bottom: 50px;
	padding-bottom: 12px;
	border-bottom: solid 2px #aaa;
}

.sub_ttl02::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #e31bae;
	height: 2px;
	width: 100px;
	bottom: -2px;
	left: 0;
	z-index: 1;
}

.hoon .item h4{
	font-size: 2.4rem;
	margin-bottom: 15px;
	letter-spacing: 0.03em;
	font-weight: 500;
}

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

.hoon .item{
	background-color: #f5f5f5;
	color: #14181A;
	padding: 30px 40px;
}

.hoon .item h4 .en{
	display: block;
	font-size: 2rem;
	font-weight: 600;
	color: #aaa;
}

.hoon .item h4 .num{
	display: inline-block;
	color: #e31bae;
	margin-left: 5px;
}

.s01_imgarea{
	width: 100%;
}

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



.exam .list_box{
	background-color: #f5f5f5;
	color: #14181A;
	padding: 30px 40px;
}

.exam .list_box li{
	position: relative;
	border-bottom: dashed 2px #ccc;
	padding: 10px 0;
	font-size: 1.8rem;
	padding-left: 25px;
	letter-spacing: 0.1em;
}

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

.exam .list_box .left{
	width: 30%;
}
.exam .list_box .right{
	width: 65%;
}

.hoon.tp02 .left{
	width: 30%;
}
.hoon.tp02 .right{
	width: 65%;
}

.hoon.tp02 .left .img img{
	aspect-ratio: 3 / 2;
	width: 100%;
	object-fit: cover;
}

@media (max-width: 1200px){
	.exam .list_box{
		flex-direction: column;
	}
	.exam .list_box .left{
		width: 100%;
	}
	.exam .list_box .left img{
		width: 100%;
		height: 360px;
		object-fit: cover;
	}
	.exam .list_box .right{
		width: 100%;
		margin-top: 30px;
	}
	.hoon.tp02 .left .img{
		width: 100%;
		height: 100%;
	}
	.hoon.tp02 .left .img img{
		height: 100%;
		aspect-ratio: auto;
	}
}

@media (max-width: 740px){
	.hoon .item h4{
		font-size: 2rem;
	}
	.hoon .item h4 .en{
		font-size: 1.6rem;
	}
	.hoon .item{
		padding: 30px;
	}
	.hoon .item+.item{
		margin-top: 20px;
	}
	.s01_imgarea img{
		height: 420px;
	}
	.exam .list_box .left img{
		height: 200px;
	}
	.exam .list_box li{
		font-size: 1.5rem;
	}
	.exam .list_box .right{
		margin-top: 15px;
	}
	.exam .list_box{
		padding: 25px;
	}
	.hoon.tp02 .item{
		flex-direction: column;
	}
	.hoon.tp02 .right{
		width: 100%;
	}
	.hoon.tp02 .left{
		width: 100%;
		margin-bottom: 20px;
	}
	.hoon.tp02 .left .img img{
		height: 180px;
	}
}






/* 下層　会社概要 */



.message .btm{
	text-align: right;
	margin-top: 30px;
}

.message .left{
	width: 32%;
}
.message .right{
	width: 60%;
	font-size: 1.7rem;
}

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

.message .btm .bb{
	font-size: 1.8em;
}

.outline{
	background-color: #e7e7e7;
	color: #14181A;
}

.outline .imgarea{
	margin-bottom: 120px;
}

.outline .img{
	width: 48%;
}

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

.outline .img.tp02{
	margin-top: 40px;
}

.info_table{
	width: 100%;
}

.info_table th,.info_table td{
	padding: 30px 0;
	font-size: 1.7rem;
	letter-spacing: 0.05em;
	border-top: solid 1px #c8c8c8;
}

.info_table th{
	position: relative;
	width: 25%;
	background-color: #dddbdb;
	padding-left: 40px;
	vertical-align: middle;
}

.info_table th::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #e31bae;
	aspect-ratio: 1 / 1;
	width: 5px;
	top: 48%;
	left: 20px;
	border-radius: 50%;
}

.info_table td{
	width: 75%;
	padding-left: 20px;
}

.info_table tr:last-child th,.info_table tr:last-child td{
	border-bottom: solid 1px #c8c8c8;
}

@media (max-width: 1200px){
	.outline .imgarea{
		margin-bottom: 50px;
	}
}

@media (max-width: 740px){
	.sub_ttl02{
		font-size: 2.6rem;
		padding-bottom: 6px;
		margin-bottom: 30px;
	}
	.message .flex_bet{
		flex-direction: column;
	}
	.message .left{
		margin: 0 auto 30px;
		width:55%;
	}
	.message .left img{
		aspect-ratio: 1 / 1;
		width: 100%;
		object-fit: cover;
		object-position: top;
	}
	.message .right{
		width: 100%;
		font-size: 1.5rem;
	}
	.message .btm .bb{
		font-size: 1.4em;
	}
	.outline .img.tp02{
		margin-top: 20px;
	}
	.outline .imgarea{
		margin-bottom: 30px;
	}
	.info_table th, .info_table td{
		font-size: 1.5rem;
		padding: 20px 20px;
	}
	.info_table th{
		width: 30%;
		padding-left: 30px;
	}
	.info_table td{
		width: 70%;
	}
	.info_table th::before{
		left: 12px;
	}
}




/* 下層　採用情報 */


.zinzai{
	position: relative;
	background: url(../img/area_bg2.jpg);
}

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

.zinzai ul{
	font-size: 1.8rem;
}

.zinzai ul li{
	position: relative;
	letter-spacing: 0.1em;
	padding-left: 25px;
	padding-top: 15px;
	padding-bottom: 15px;
	border-bottom: dashed 1px #fff;
}

.zinzai 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%);
}

.zinzai .inner{
	position: relative;
	z-index: 1;
	background-color: rgb(20, 24, 26,0.9);
	padding: 50px 60px;
	box-shadow: 0 0 .4rem #fff, 0 0 .4rem #fff, 0 0 1.8rem #e31baeba, 0 0 0.5rem #e31baeba, 0 0 2.4rem #e31baeba, inset 0 0 .5rem #e31baeba;
}


.bosyu{
	background-color: #e7e7e7;
	color: #14181A;
}


.apply{
	padding-top: 0;
	background-color: #e7e7e7;
	color: #14181A;
}

.apply .m_btn a{
	color: #14181A;
}

.rec_top .txt_box{
	font-size: 1.7rem;
}
.rec_top .left{
	width: 46%;
}
.rec_top .right{
	width: 46%;
}

@media (max-width: 1200px){
	.rec_top .inner{
		flex-direction: column;
	}
	.rec_top .left{
		width: 100%;
		margin-bottom: 30px;
	}
	.rec_top .right{
		width: 100%;
	}
	.rec_top .left img{
		height: 400px;
		width: 100%;
		object-fit: cover;
	}
}

@media (max-width: 740px){
	.rec_top .left img{
		height: 200px;
	}
	.rec_top .txt_box{
		font-size: 1.5rem;
	}
	.zinzai ul li{
		font-size: 1.5rem;
	}
	.zinzai .inner{
		padding: 40px 20px;
	}
}





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



.co_top .item{
	width: 48%;
	background-color: #e7e7e7;
	color: #14181A;
	padding: 30px 40px;
	text-align: center;
	box-shadow: 0 0 .4rem #fff,0 0 .4rem #fff,0 0 1.8rem #e31baeba,0 0 0.5rem #e31baeba,0 0 2.4rem #e31baeba,inset 0 0 .5rem #e31baeba;
}

.sub_ttl03{
	position: relative;
	font-size: 2.8rem;
	text-align: center;
	letter-spacing: 0.04em;
	padding-bottom: 5px;
	margin-bottom: 10px;
	font-weight: 600;
}

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

.co_top .item .num{
	font-size: 3.4rem;
	padding-right: 10px;
	display: block;
	color: #14181A;
	letter-spacing: normal;
	text-align: center;
}

.co_top .item .num .sm{
	font-size: 0.7em;
}

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

.co_top .item ul{
	flex-wrap: wrap;
	justify-content: center;
}

.co_top .item ul li{
	position: relative;
	padding-left: 15px;
	letter-spacing: 0.1em;
}

.co_top .item 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: 12px;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

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





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

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

input[type="email"]{
	height: 45px;
	padding: 10px;
	background: #fff;
}


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: #fff;
	width: 100% !important;
	height: 120px !important;
}

.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{
	background-color: #e31bae;
	padding: 4px 8px 3px;
	color: #fff;
}

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

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

.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: 19px 0 17px;
	letter-spacing: 0.05em;
	border-radius: 40px;
	text-align: center;
	width: 230px;
	transition: all 0.5s;
	background: #e31bae;
	border: solid 2px #e31bae;
	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: #e31bae;
	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;
	line-height: 200%;
	color: #555;
}

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

.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: #e31bae;
	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 #e31bae;
	border-right: 2.5px solid #e31bae;
	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;
	background-color: #e7e7e7;
	overflow: hidden;
}

.mail_sec .inner{
	background-color: #e7e7e7;
	color: #14181A;
}

.mail_sec .wrap{
	position: relative;
	max-width: 1080px;
	margin: 0 auto;
	z-index: 1;
}

.mail_sec .sub_ttl03{
	margin-bottom: 40px;
}

.mail_sec .ac_txt{
	position: absolute;
	top: 100px;
	right: 0;
	font-size: 16rem;
	line-height: 1;
	opacity: 0.8;
	z-index: 0;
	pointer-events: none;
}

@media (max-width: 1200px){
	.co_top .item_area{
		flex-direction: column;
	}
	.co_top .item{
		width: 100%;
		max-width: 600px;
		margin: 0 auto;
	}
	.co_top .item+.item{
		margin-top: 50px;
	}
	.mail_sec .ac_txt{
	font-size: 10rem;}
}


@media (max-width: 740px){
	.sub_ttl03{
		font-size: 2rem;
	}
	.co_top .item .num{
		font-size: 2.8rem;
	}
	.co_top .item+.item{
		margin-top: 30px;
	}
	.contact_table th,.contact_table td{
		width: 100%;
		display: block;
	}
	.contact_table th span, .form_attention span{
		font-size: 1.2rem;
	}
	.contact_table th{
		padding-bottom: 0;
		border: 0;
	}
	.mail_sec .sub_ttl03{
		margin-bottom: 20px;
	}
	.mail_sec .ac_txt{
		font-size: 5rem;
		top: 0;
	}
	.Label{
		padding: 8px 0;
		font-size: 1.4rem;
	}
	.Label::before{
		top: 25%;
	}
	.contact_table .ib td .che_box{
		margin-right: 20px;
	}
}




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

.sbtn a:hover{
    background-color: #e31bae;
	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;
	}
}


