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


body{
	color: #333;
	background-color: #fff;
	-webkit-font-smoothing: antialiased;/*アンチエイリアスを滑らかに*/
	-moz-osx-font-smoothing: grayscale;
	line-height: 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: #252525;
	transition: .3s;
}

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

/*フェードイン*/
.flowup{
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 1.6s, transform 1.5s;
	transition-delay: 0.4s;
}
.flowup.inview{
	opacity: 1;
	transform: translateY(0);
}




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



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

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

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

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

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

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

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



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

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


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

.op.inview{
	opacity: 1;
}

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


.br_650.marker{
	background: none;
}

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

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

.flex{
    display: flex;
}

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

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

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

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

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

main{
	width: 100%;
}


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





.w100{
	width: 100%;
}

/*フィルター*/

.filter{
    position: relative;
}

filter::after{
    content: "";
    display: block;
    position: absolute;
    background-color: rgb(0, 0, 0,0.6);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.filter_w{
	position: relative;
}

.filter_w::after{
    content: "";
    display: block;
    position: absolute;
    background-color: rgb(255, 255, 255,0.4);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

/*改行*/

.br_960{
}

.br_650{
}

.br_none650{
	display: block;
}

.br_none1200{
	display: block;
}

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

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

@media (max-width: 960px){
	.br_960{
		display: block;
	}	
}
@media (max-width: 650px){
	.br_650{
		display: block;
	}
	.br_650.marker{
		background: linear-gradient(transparent 75%, rgb(241, 156, 167,0.7) 75%);;
	}
	section{
        padding: 50px 0;
    }
	.container{
		padding: 0;
	}
	.br_none650{
		display: inline;
	}
	body{
		font-size: 1.5rem;
	}
}




/* 文字間 */

.space{
	letter-spacing: 0.05em;
}

.space2{
	letter-spacing: 0.1em;
}

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

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


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

@media (max-width: 650px){
	.none_650{
		display: none;
	}
	body{
		font-size: 1.3rem;
	}
	
	
}


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





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

body p{
	letter-spacing: 0.1em;
}

i{
	padding-right: 0.4em;
}



/* btn */

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

.m_btn a{
	position: relative;
	display: block;
	font-size: 1.7rem;
	background-color: #e48323;
	color: #fff;
	letter-spacing: 0.03em;
	padding: 12px 0 14px;
	padding-left: 35px;
	border-radius: 40px;
}

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

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

.m_btn a:hover{
	opacity: 0.75;
}



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


.king{
	font-size: 5.722rem;
}
.biggest{
	font-size: 4.5776rem;
}
.big{
	font-size:  3.6621rem;
}
.s_big{
	font-size: 2.9297rem;
}
.f_txt{
	font-size: 2.3438rem;
}
.s_f_txt{
	font-size: 1.875rem;
}




/* sub_ttl */



/* header */

h1 a{
	display: block;
}

h1 a img{
	height: 60px;
}

.hd_inner{
	margin: 0 auto;
	width: 100%;
	padding-left: 60px;
	padding-right: 60px;
}

header{
	position: fixed;
	width: 100vw;
	top: 20px;
	height: 80px;
	z-index: 99;
}

header .mg_box{
	width: 250px;
}

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

.main_nav li a{
	display: block;
	font-size: 1.45rem;
	font-weight: 600;
	letter-spacing: 0.03em;
}

.main_nav li a:hover{
	color: #e48323;
}

.main_nav{
	background-color: #fff;
	padding: 10px 30px;
	border-radius: 30px;
}

.btn_part{
	position: fixed;
	top: 0;
	right: 0;
}

.btn_part .btn a{
	display: block;
	color: #fff;
	font-weight: 600;
	padding-top: 25px;
	padding-bottom: 25px;
	padding-left: 25px;
	padding-right: 25px;
	background-color: #e48323;
}

.btn_part .btn.tp01 a{
	border-right: solid 1px #fff;
	letter-spacing: 0.05em;
	border-bottom-left-radius: 15px;
}

.btn_part .btn a:hover{
	background-color: #ee9d4d;
}

.sp_fixed{
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	background-color: #252525;
	display: none;
}

.sp_fixed a{
	display: block;
	color: #fff;
	text-align: center;
	padding: 5px 0;
	letter-spacing: 0.05em;
	font-size: 1.45rem;
}

.sp_fixed .box{
	width: calc(50% - 1px);
	background-color: #e48323;
}




/* fv */


.fv{
	position: relative;
	padding-top: max(140px,8vw);
	background-color: #fef8e5;
	/* min-height: calc(96vh - 140px); */
}

.fv::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #EFF2E5;
	bottom: 0;
	left: 0;
	height: 45%;
	width: 100%;
}

.fv .top_slider{
	position: relative;
	height: 100%;
	width: 54%;
	margin-right: 40px;
}

.fv .ac_ill{
	position: absolute;
	bottom: 32%;
	left: 15%;
	transform: translateX(-50%);
	max-width: 320px;
	width: 20%;
}


.top_slider .slider{
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.top_slider .slider li{
	width: 100%;
	height: calc(96vh - 140px);
	min-height: 640px;
	background-size: cover;
	margin: 0;
	border-radius: 60px;
}


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

.fv .left{
	width: 46%;
}

.fv .left .in{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.catch span{
	display: block;
	background-color: #fff;
	width: fit-content;
	padding-left: 20px;
}

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

.catch{
	position: relative;
	line-height: 1.6;
	font-weight: 900;
	letter-spacing: 0;
	margin: 80px auto 0;
	font-size: min(3.5vw,5.5rem);
	color: #e48323;
	/* font-family: "Mochiy Pop P One", sans-serif;
	font-weight: 400;
	font-style: normal; */
}




@media (max-width: 1400px){
	.top_slider .slider li{
		height: calc(90vh - 140px);
	}
	.catch{
		margin-top: 90px;
	}
	.btn_part .btn a{
		padding-left: 15px;
		padding-right: 15px;
	}
	.fv .top_slider{
		margin-right: 20px;
	}
}

@media (max-width: 1200px){
	.fv{
		flex-direction: column-reverse;
		height: auto;
		padding-top: 100px;
	}
	.top_slider .slider li{
		border-bottom-right-radius: 0;
		border-top-right-radius: 0;
		min-height: 400px;
		height: auto;
	}
	.main_nav{
		display: none;
	}
	.btn_part{
		display: none;
	}
	.fv .top_slider{
		width: 80%;
		margin: 0 0 0 auto;
	}
	.fv .left{
		width: 100%;
	}
	.catch{
		margin-top: 80px;
		font-size: 4.6rem;
		margin-left: 30px;
		margin-bottom: 30px;
	}
	.fv::before{
		height: 200px;
	}
	header{
		background-color: #fff;
		top: 0;
	}
	.hd_inner{
		padding-left: 30px;
		padding-right: 0;
	}
	.fv .ac_ill{
		width: 30%;
		left: 20%;
		bottom: 460px;
		z-index: 5;
	}
	header .mg_box{
		display: none;
	}
}

@media (max-width: 650px){
	.catch{
		font-size: 3rem;
		margin-top: 50px;
		margin-left: 10px;
		margin-bottom: 50px;
	}
	.fv .top_slider{
		width: 94%;
		margin: 0 auto;
	}
	.top_slider .slider li{
		border-radius: 20px;
	}
	.fv .ac_ill{
		width: 150px;
		left: auto;
		right: 40px;
		bottom: 350px;
		transform: translateX(0);
	}
	.fv{
		height: auto;
		padding-top: 80px;
	}
	.hd_inner{
		padding-left: 15px;
	}
	header{
		height: 70px;
		background-color: #fff;
	}
	h1 a img{
		height: 50px;
	}
	.top_slider .slider li{
		min-height: 350px;
	}
	.catch span+span{
		margin-top: 10px;
	}
	.sp_fixed{
		display: block;
	}
}



/* news */



.news_box a{
	position: relative;
	width: 90%;
	max-width: 650px;
	background-color: #fff;
	padding: 30px 0;
	padding-right: 40px;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}

.news_box a:hover{
	background-color: #fef8e5;
}

.news_box .left{
	width: 45%;
	padding-left: 20px;
}

.news_box .left img{
	aspect-ratio: 1.3 / 1;
	width: 100%;
	object-fit: cover;
	min-height: 170px;
}

.news_box .right{
	position: relative;
	width: 50%;
}

.news_box .right span{
	display: block;
}

.news_box .right .f_txt{
	font-weight: 600;
	border-bottom: solid 1px #ccc;
	margin-bottom: 15px;
}

.news_box .up_ymd{
	color: #e48323;
	font-weight: 600;
	margin-bottom: 10px;
}

.news_box .ac_txt{
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(40%,-50%);
	white-space: nowrap;
	color: #e48323;
}

@media (max-width: 1200px){
	.news_box a{
		max-width: 520px;
	}
}

@media (max-width: 650px){
	.news_box .right .f_txt{
		font-size: 1.8rem;
		margin-bottom: 5px;
	}
	.news_box .up_ymd{
		margin-bottom: 0;
	}
	.news_box .left img{
		min-height: 140px;
	}
	.news_box a{
		padding-top: 20px;
		padding-bottom: 20px;
	}
}


/* aboutus */


.aboutus{
	position: relative;
	background-color: #EFF2E5;
	padding-top: 0;
	overflow: hidden;
}

.aboutus .per{
	max-width: 200px;
	width: 10vw;
}

.aboutus .per img{
	width: 100%;
}

.aboutus .ac_bg{
	position: absolute;
	top: 0;
	left: 30%;
	transform: translateX(-50%);
	z-index: 0;
}

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

.aboutus .wrapper{
	position: relative;
	background-color: #fff;
	margin-left: 60px;
	margin-right: 60px;
	border-radius: 20px;
	padding: 200px 0 140px 0;
	overflow: hidden;
	padding-top: max(120px,11vw);
}

.sub_ttl{
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 1.8;
	width: fit-content;
	margin-bottom: 15px;
}

.ac_ttl{
	font-weight: 700;
	position: relative;
	color: #e48323;
	padding-left: 25px;
	margin-bottom: 40px;
}

.ac_ttl::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #e48323;
	aspect-ratio: 1 / 1;
	border-radius: 2px;
	width: 10px;
	top: 50%;
	left: 8px;
	transform: translateY(-50%) rotate(45deg);
}

.aboutus h3 span{
	display: block;
}

.aboutus h3 span+span{
	margin-top: 23px;
}

.aboutus .sub_ttl{
	font-size: min(3.0vw,4.5rem);
}

.aboutus .txt_box{
	max-width: 620px;
	margin-top: 40px;
	line-height: 2.2;
	font-size: 1.8rem;
	font-size: min(1.3vw,1.8rem);
}

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

.aboutus .bg_img{
	position: relative;
}

.aboutus .bg_img::before{
	content: "";
	display: inline-block;
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: #fff;
	width: 45%;
	height: 100px;
}

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

.aboutus .ab_top{
	position: absolute;
	top: 0px;
	left: 50%;
	max-width: 1500px;
	width: 100%;
	transform: translateX(-50%);
}

.aboutus .ac_img{
	position: absolute;
	width: 40%;
	bottom: 0;
	left: 0;
	max-width: 700px;
	transform: translateY(50%);
}

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

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




.zigu.inview {
    animation: zigu .25s linear 2 normal;
	animation-delay: 400ms;
}

@keyframes zigu{
	0%{
		transform: rotate(0deg);
	}
	50%{
		transform: rotate(8deg);
	}
	100%{
		transform: rotate(0deg);
	}
}





@media (max-width: 1200px){
	.aboutus .in{
		flex-direction: column;
	}
	.aboutus .wrapper{
		padding: 60px 0;
		padding-top: 120px;
		margin-left: 30px;
		margin-right: 30px;
	}
	.aboutus .sub_ttl{
		font-size: 3.2rem;
	}
	.aboutus .txt_box{
		font-size: 1.5rem;
		margin-top: 0;
	}
	.aboutus .per{
		position: absolute;
		top: 0;
		right: 0;
		width: 130px;
	}
	.ac_ttl{
		margin-bottom: 30px;
	}
	.aboutus .ac_img{
		left: auto;
		right: 0;
		min-width: 280px;
	}
}

@media (max-width: 650px){
	.aboutus .wrapper{
		margin-left: 10px;
		margin-right: 10px;
		padding-bottom: 180px;
		padding-top: 100px;
	}
	.aboutus .ab_top img{
		min-height: 70px;
		width: 100%;
		object-fit: cover;
	}
	.aboutus .sub_ttl{
		font-size: 2.8rem;
	}
	.aboutus .txt_box p+p{
		margin-top: 15px;
	}
	.aboutus .per{
		top: 100px;
		width: 90px;
	}
	.aboutus .ac_tll{
		margin-bottom: 40px;
	}
	.aboutus .txt_box{
		line-height: 2.2;
		font-size: 1.4rem;
	}
	.m_btn{
		margin-top: 25px;
	}
}


/* video_sec */

.video_sec{
	position: relative;
	background-color: #EFF2E5;
	padding-top: 0;
}

.video_sec .wrapper{
	position: relative;
	background-color: #fff;
	margin-left: 60px;
	margin-right: 60px;
	border-radius: 20px;
	padding: 140px 0 100px;
	padding-top: max(120px,8vw);
}

.video_sec .inner{
	position: relative;
	background-color: rgb(255, 255, 255,0.85);
	z-index: 2;
	padding: 60px 0;
	border-radius: 40px;
	max-width: 1080px;
}

.video_sec .sub_ttl{
	margin: 0 auto;
	font-family: "Mochiy Pop P One", sans-serif;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 0.1em;
	margin-bottom: 40px;
	color: #e48323;
}

.video_sec .bg_img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 2;
}

.video_sec .bg_img img{
	width: 100%;
	border-radius: 20px;
}

.video_sec .video{
	width: 80%;
	margin: 0 auto;
	max-width: 700px;
}

.video_sec .video img{
	width: 100%;
	aspect-ratio: 7.2 / 4;
	object-fit: cover;
}

.video_sec .ac_img{
	position: absolute;
	width: 190px;
	bottom: 0;
	right: 0;
}

.video_sec .l_img{
	position: absolute;
	bottom: 0;
	left: 0;
	max-width: 120px;
	width: 7vw;
	transform: translateX(-50%);
	z-index: 2;
}
.video_sec .r_img{
	position: absolute;
	bottom: 0;
	right: 0;
	max-width: 200px;
	width: 12vw;
	transform: translateX(50%);
	z-index: 2;
}

@media (max-width: 1200px){
	.video_sec .wrapper{
		margin-left: 30px;
		margin-right: 30px;
		padding-top: 50px;
		padding-bottom: 0px;
	}
	.video_sec .sub_ttl{
		font-size: 3rem;
	}
	.video_sec .l_img{
		width: 80px;
		left:30px;
		bottom: 50px;
	}
	.video_sec .r_img{
		width: 130px;
		bottom: 50px;
		right: 20px;
	}
}

@media (max-width: 650px){
	.video_sec .wrapper{
		margin-left: 10px;
		margin-right: 10px;
		border-radius: 10px;
	}
	.video_sec .sub_ttl{
		font-size: 2.6rem;
		margin-bottom: 25px;
	}
	.video_sec .inner{
		padding: 30px 0;
		border-radius: 20px;
		padding-bottom: 90px;
	}
	.video_sec .r_img{
		width: 80px;
		bottom: 0;
	}
	.video_sec .l_img{
		width: 50px;
		bottom: 0;
	}
	.video_sec .video{
		width: 94%;
	}
}



/* reasons */

.reason .sub_ttl{
	margin: 0 auto;
	width: fit-content;
}

.reason .ac_ttl{
	width: fit-content;
	margin: 15px auto 0;
	padding-right: 20px;
	margin-bottom: 50px;
}

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

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

.custom-shape-divider-top-1752126598 .shape-fill {
    fill: #EFF2E5;
}

.reason{
	position: relative;
	background-color: #fff;
	padding-top: 160px;
}

.reason h4{
	position: relative;
	font-size: 1.7rem;
	letter-spacing: 0.05em;
	margin-bottom: 15px;
}

.reason h4 .num{
	display: inline-block;
	color: #e48323;
	font-weight: bold;
	margin-right: 10px;
	font-size: 1.5em;
}

.reason .item{
	padding: 30px 0;
	border-top: solid 1px #ccc;
	width: calc((100% - 100px) / 3);
}

.reason .item:nth-child(n+5){
	border-bottom: solid 1px #ccc;
}

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

.reason .item p{
	font-size: 1.4rem;
	color: #555;
}

.reason .inner{
	position: relative;
}

.reason .ac_ill{
	position: absolute;
	width: 180px;
	top: -200px;
	left: 50%;
	transform: translateX(-50%);
}

.reason .btm_img{
	position: absolute;
	bottom: 0;
	right: 0;
	width: 280px;
}

@media (max-width: 1200px){
	.reason .item{
		width: calc((100% - 40px) / 2);
	}
	.reason .item:nth-child(n+6){
		border-bottom: solid 1px #ccc;
	}
	.reason .item:nth-child(5){
		border-bottom: 0px;
	}
	.reason .ac_ill{
		width: 140px;
		top: -160px;
	}
	.reason{
		padding-top: 120px;
	}
	.custom-shape-divider-top-1752126598 svg{
		height: 60px;
	}
}

@media (max-width: 650px){
	.reason .ac_ill{
		width: 80px;
		top: -80px;
	}
	.custom-shape-divider-top-1752126598 svg{
		height: 40px;
	}
	.reason{
		padding-top: 80px;
	}
	.reason .sub_ttl{
		font-size: 2.6rem;
	}
	.reason .item{
		width: 100%;
		padding: 20px 0;
	}
	.reason h4{
		margin-bottom: 10px;
		font-size: 1.5rem;
	}
	.reason .ac_ttl{
		margin-top: 10px;
		margin-bottom: 30px;
	}
	.reason .item p{
		font-size: 1.3rem;
	}
	.reason .item:nth-child(6){
		border-bottom: 0px;
	}
	.reason{
		padding-bottom: 150px;
	}
	.reason .btm_img{
		transform: translateY(100%);
		width: 180px;
		bottom: -30px;
	}
}



/* service */

.mini_sli{
	position: relative;
}

.mini_sli::before{
	content: "";
	display: inline-block;
	position: absolute;
	bottom: 0;
	left: 0;
	height: 50%;
	width: 100%;
	background-color: #EFF2E5;
}


.service {
	overflow: hidden;
	background-color: #EFF2E5;
}

.service .sub_ttl{
	width: fit-content;
	margin: 0 auto;
}

.service .ac_ttl{
	width: fit-content;
	margin: 15px auto 0;
	padding-right: 20px;
	margin-bottom: 50px;
}

.service .inner{
	max-width: 1200px;
}

.service .img{
	width: 45%;
}
.service .txt_box{
	width: 50%;
	padding-top: 50px;
}


.service h4{
	margin-bottom: 15px;
	font-weight: 600;
	border-bottom: solid 1px #e48323;
	padding-bottom: 8px;
}

.service .item{
	border-radius: 20px;
}

.service .item+.item{
	margin-top: 48px;
}

.service .img img{
	border-radius: 20px;
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}


.service .item p.en{
	position: relative;
	font-weight: 700;
	padding-left: 15px;
	color: #e48323;
}

.service .item p.en::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #e48323;
	height: 2px;
	width: 10px;
	transform: translateY(-50%);
	top: 50%;
	left: 0;
}

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

.service .item {
	position: relative;
}

.service .per_ill{
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(-60%,-50%);
	width: 130px;
	background-color:#EFF2E5;
	padding: 20px 30px;
	border-radius: 50%;
}

.service .item.reverse .per_ill{
	right: 0;
	left: auto;
	transform: translate(60%,-50%);
}


@media (max-width: 1200px){
	.service .item{
		flex-direction: column;
	}
	.service .img{
		width: 75%;
		margin: 0 auto;
	}
	.service .txt_box{
		width: 75%;
		padding-top: 30px;
		margin: 0 auto;
	}
	.service .img img{
		height: 360px;
		width: 100%;
		object-fit: cover;
		aspect-ratio: auto;
	}
	.service .per_ill{
		left: 10%;
	}
	.service .item.reverse .per_ill{
		right: 10%;
	}
	
}

@media (max-width: 650px){
	.service .sub_ttl{
		font-size: 2.6rem;
	}
	.service .ac_ttl{
		margin-top: 10px;
		margin-bottom: 30px;
	}
	.service .img{
		width: 100%;
	}
	.service .txt_box{
		width: 100%;
		padding-top: 20px;
	}
	.service .img img{
		height: 200px;
		border-radius: 10px;
	}
	.service h4{
		font-size: 2rem;
	}
	.service .m_btn{
		margin-top: 35px;
	}
	.service .per_ill{
		width: 40px;
		padding: 0;
		left: auto; 
		right: 20px;
		top: 250px;
	}
}



/* works */

.works {
	background-color: #EFF2E5;
}

.works .sub_ttl{
	text-align: center;
	margin: 0 auto;
}


.works .wrapper{
	position: relative;
	background-color: #fff;
	margin-left: 60px;
	margin-right: 60px;
	border-radius: 20px;
	padding: 100px 0;
}

.works .ac_ill{
	position: absolute;
	top: -50px;
	right: -50px;
	width: 100px;
}

.works .inner{
	position: relative;
	max-width: 1200px;
}

.works .ac_ttl{
	width: fit-content;
	margin: 15px auto 0;
	padding-right: 20px;
	margin-bottom: 35px;
}

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

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

.works ul{
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
}

.works ul .title{
	font-size: 1.5rem;
	display: block;
}
.works ul .thumbnail{
	display: block;
	margin-bottom: 20px;
	overflow: hidden;
	border-radius: 20px;
}

.works ul .up_ymd{
	color: #e48323;
	font-size: 1.5rem;
	font-weight: 700;
}

.works ul .thumbnail img{
	aspect-ratio: 3 / 2;
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.works .item a{
	display: block;

}

.works .item a:hover img{
	transform: scale(1.08);
}

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


.works .ac_ill2{
	position: absolute;
	bottom: 100px;
	left: 100px;
	width: 120px;
}

@media (max-width: 1200px){
	.works .wrapper{
		margin-left: 30px;
		margin-right: 30px;
		padding: 60px 0;
	}
	.works .ac_ill{
		width: 75px;
	}
	.works .ac_ill2{
		width: 75px;
	}
	.works .item{
		width: calc((100% - 40px) / 2);
	}
	.works ul{
		gap: 40px;
	}
}

@media (max-width: 650px){
	.works .wrapper{
		margin-left: 10px;
		margin-right: 10px;
		padding: 50px 0;
		border-radius: 10px;
	}
	.works .sub_ttl{
		font-size: 2.6rem;
	}
	.works .ac_ttl{
		margin-top: 10px;
		margin-bottom: 30px;
	}
	.works .center{
		text-align: left;
		margin-bottom: 25px;
	}
	.works .item{
		width: calc((100% - 10px) / 2);
	}
	.works ul{
		gap: 10px;
	}
	.works ul .thumbnail{
		border-radius: 5px;
		margin-bottom: 8px;
	}
	.works ul .title{
		font-size: 1.2rem;
	}
	.works ul .thumbnail img{
		border-radius: 5px;
	}
	.works ul .up_ymd{
		font-size: 1.2rem;
	}
	.works .ac_ill{
		width: 60px;
		right: 0px;
	}
	.works .ac_ill2{
		bottom: 0;
		left: 0;
		width: 60px;
	}
}



/* area */


.area {
	position: relative;
	background-color: #EFF2E5;
	padding-top: 0;
	padding-bottom: 60px;
}

.area .wrapper{
	position: relative;
	background-color: #fff;
	padding: 80px 0;
	overflow: hidden;
	margin-left: 60px;
	margin-right: 60px;
	border-radius: 20px;
}

.area .bg_img{
	position: absolute;
	top: 50%;
	right: 30%;
	transform: translate(50%,-50%);
	width: 50%;
	max-width: 460px;
}

.area h4{
	margin-bottom: 15px;
	font-weight: 600;
	letter-spacing: 0.04em;
}

.area h4 span{
	width: fit-content;
}

.area h5{
	position: relative;
	margin-top: 50px;
	font-weight:600;
	margin-bottom: 10px;
	border-left: solid 3px #e48323;
	line-height: 1.2;
	letter-spacing: 0.04em;
	padding-left: 5px;
}

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

.area .btm{
	font-size: 1.3rem;
}

.area .inner{
	max-width: 1200px;
}

/* .area::before{
	content: "";
	display: inline-block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 200px;
	background-color: #077f00;
} */

@media (max-width: 1200px){
	.area .txt_box{
		max-width: 360px;
	}
	.area .bg_img{
		width: 40%;
	}
	.area h5{
		margin-top: 30px;
	}
	.area .wrapper{
		margin-left: 30px;
		margin-right: 30px;

	}
	.area .bg_img{
		transform: translateY(-50%);
		right: 20px;
	}
}


@media (max-width: 650px){
	.area .wrapper{
		padding: 50px 0;
		margin-left: 10px;
		margin-right: 10px;
		border-radius: 10px;
	}
	.area .sub_ttl{
		font-size: 2.6rem;
		width: fit-content;
		margin: 0 auto;
	}
	.area .ac_ttl{
		width: fit-content;
		margin: 10px auto 30px;
		padding-right: 20px;
	}
	.area h4{
		font-size: 1.6rem;
	}
	.area h5{
		margin-top: 90px;
		margin-bottom: 20px;
	}
	.area .bg_img{
		top: 65%;
		width: 120px;
	}
	.area .txt_box{
		max-width: none;
	}
	.area{
		padding-bottom: 50px;
	}
}



/* footer */



footer {
	position: relative;
	padding-top: 0;
	padding-bottom: 120px;
	overflow: hidden;
	background-color: #EFF2E5;
}

.btm_ill{
	position: absolute;
	bottom: 0;
	width: 100%;
	min-width: 1400px;
	left: 0;
}
footer .inner{
	max-width: 960px;
}

.foo_logo img{
	height: 70px;
}

.foo_logo{
	margin-bottom: 40px;
	padding-right: 40px;
}

footer .telnum{
	margin-top: 15px;
}

footer .telnum a{
	text-decoration: underline;
	margin-right: 30px;
	letter-spacing: 0.05em;
}

footer .co_btn{
	width: 200px;
	margin: 0 0 0 auto;
	margin-top: 20px;
}

footer .co_btn a{
	display: block;
	background-color: #e48323;
	color: #fff;
	font-weight: 600;
	padding: 6px 0;
	text-align: center;
	border-radius: 40px;
	font-size: 1.4rem;
	border: solid 1px #e48323;
}

footer .right{
	display: flex;
	align-items: flex-end;
}

footer .co_btn a:hover{
	background-color: #fff;
	color: #e48323;
}

footer .copy{
	font-size: 1.2rem;
	margin-top: 30px;
}

footer .icon{
	margin-top: 15px;
}

footer .icon img{
	width: 25px;
}

footer .icon+.icon{
	margin-left: 15px;
}

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





@media (max-width: 740px){
	footer .wrap{
		flex-direction: column;
		text-align: center;
	}
	footer .right{
		justify-content: center;
	}
	footer .co_btn{
		margin: 20px auto 0;
	}
	.foo_logo img{
		height: 65px;
	}
	footer .copy{
		text-align: center;
	}
	.foo_logo{
		margin-bottom: 25px;
		padding-right: 25px;
	}
	footer{
		padding-bottom: 70px;
		margin-bottom: 39px;
	}
	footer .flex{
		justify-content: center;
	}
}





/* 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: #e48323;
    z-index: 49;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0;
}


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

.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: 650px) {
    .page_top {
        width: 45px;
        height: 45px;
		bottom: 60px;
    }
}



/* 下層トップ */


.kasou_top{
	position: relative;
	padding-top: 180px;
	padding-bottom: 100px;
	background: url(../img/video_bg.png);
	background-size: cover;
	background-position: top;
}
.kasou_top::before{
	content: "";
	display: inline-block;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #fef8e5;
	top: 0;
	left: 0;
	z-index: -1;
}

.kasou_top h2{
	font-weight: 700;
	width: fit-content;
	line-height: 1.6;
	color: #e48323;
	letter-spacing: 0.03em;
	margin: 0 auto 40px;
}

.kasou_top h2 span{
	background-color: #fff;
	display: block;
	width: fit-content;
	padding: 0 12px;
}

.kasou_top ol{
	margin-left: 3px;
	color: #555;
	justify-content: center;
	flex-wrap: wrap;
}

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

.kasou_top ol a::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/kasou_arrow.png);
	background-size: cover;
	background-position: center;
	aspect-ratio: 1 / 1;
	width: 24px;
	top: 52%;
	right: 0;
	transform: translateY(-50%);
}

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

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

.kasou footer{
	padding-top: 100px;
}


@media (max-width: 740px){
	.kasou_top h2{
		font-size: 3rem;
		margin-bottom: 25px;
	}
	.kasou_top{
		padding: 140px 0 60px;
	}

.kasou footer{
	padding-top: 70px;
}

}



/* サービス紹介 */



.p_ser_list .left .txt_box{
	max-width: 600px;
}

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

.p_ser_list .en{
	position: relative;
	font-weight: bold;
	color: #e48323;
	padding-top: 17px;
}

.p_ser_list .en::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #e48323;
	aspect-ratio: 1 / 1;
	width: 8px;
	top: 0;
	left: 46%;
	border-radius: 2px;
	transform: translateX(-50%) rotate(45deg);
}

.p_ser_list h3{
	letter-spacing: 0.03em;
}

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

.p_ser_list .tate{
	width: 130px;
}

.p_ser_list .img{
	width: 32%;
	margin-top: 10px;
}

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

.p_ser_list .txt_box{
	width: 50%;
	margin-top: 10px;
}

.p_ser_list .txt_box ul{
	flex-wrap: wrap;
}

.p_ser_list .txt_box ul li{
	position: relative;
	width: calc(50% - 5px);
	background-color: #fef8e5;
	padding: 8px 0;
	border-radius: 3px;
	padding-left: 30px;
	font-size: 1.35rem;
}

.p_ser_list .txt_box 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: 14px;
	top: 50%;
	left: 8px;
	transform: translateY(-50%);
}

.p_ser_list .txt_box ul li:nth-child(n+3){
	margin-top: 10px;
}

.p_ser_list .txt_box h4{
	position: relative;
	line-height: 1.4;
	padding-left: 10px;
	margin-bottom: 15px;
	margin-top: 40px;
	letter-spacing: 0.03em;
	font-weight: 600;
}

.p_ser_list .txt_box h4::before{
	content: "";
	display: inline-block;
	position: absolute;
	width: 3px;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #e48323;
}

.p_ser_list .article+.article{
	margin-top: 200px;
}

.p_ser_list .article .tate{
	position: relative;
}


.p_ser_list .article .ac_ill{
	position: absolute;
	width: 80px;
	bottom: -20px;
	left: -20px;
}

.p_ser_list span.sm{
	font-size: 0.75em;
}

.p_ser_list .article .flex_bet{
	flex-wrap: wrap;
}

@media (max-width: 1200px){
	.p_ser_list .img{
		width: calc(94% - 130px);
	}
	.p_ser_list .txt_box{
		width: 100%;
		margin-top: 40px;
	}
	.p_ser_list .article .ac_ill{
		bottom: 0;
		width: 65px;
	}
}

@media (max-width: 740px){
	.p_ser_list h3{
		font-size: 2.2rem;
	}
	.p_ser_list .tate{
		width: 80px;
	}
	.p_ser_list .img{
		width: calc(94% - 80px);
	}
	.p_ser_list .img img{
		height: 220px;
	}
	.p_ser_list .article .ac_ill{
		width: 45px;
		left: -5px;
	}
	.p_ser_list .article+.article{
		margin-top: 80px;
	}
	.p_ser_list .txt_box ul li{
		width: 100%;
	}
	.p_ser_list .txt_box ul li+li{
		margin-top: 10px;
	}
}
















/* 初めての方へ */


.fir_top{
	padding-bottom: 0;
}

.fir_top li{
	width: calc((100% - 40px) / 2);
	padding: 18px 0;
	padding-left: 20px;
	font-weight: 600;
	background-color: #EFF2E5;
	border-radius: 5px;
}

.fir_top ul{
	flex-wrap: wrap;
	gap: 15px 20px;
}

.fir_top .top_wrap{
	background-color: #fff;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
	padding: 40px 30px;
	border-radius: 30px;
}

.fir_top .ill{
	width: 60%;
	max-width: 600px;
	margin: 20px auto 0;
	min-width: 300px;
}

.fir_top .kasou_ttl{
	position: relative;
	text-align: center;
	margin-bottom: 40px;
	font-weight: 600;
	letter-spacing: 0.03em;
	padding-bottom: 5px;
}

.fir_top .kasou_ttl::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #e48323;
	height: 4px;
	width: 180px;
	border-radius: 5px;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
}

.fir_top .btm_wrap{
	position: relative;
	background-color:#EFF2E5;
	padding: 200px 0 150px;
	text-align: center;
	font-weight: 600;
}

.fir_top .btm_wrap::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #fff;
	border: solid 2px #e48323;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	width: 80px;
	top: 50px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}

.fir_top .btm_wrap::after{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/arrow_down.png);
	background-size: cover;
	background-position: center;
	width: 40px;
	aspect-ratio: 1 / 1;
	top: 68px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
}

.fir_top .btm_wrap .ac_img{
	position: absolute;
	bottom: 0;
	left: calc(50% + 500px);
	width: 150px;
	transform: translateX(-50%);
}

.fir_top .btm_wrap .ac_img02{
	position: absolute;
	bottom: 20px;
	left: calc(50% - 500px);
	width: 250px;
	transform: translateX(-50%);
}

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

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

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

.fir_top .btm_wrap h4{
	font-weight: bold;
	letter-spacing: 0.03em;
	color: #e48323;
	margin-bottom: 15px;
}


.p_feature .left{
	position: sticky;
	top: 200px;
	width: 400px;
	height: fit-content;
}

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

.p_feature .right{
	width: calc(90% - 400px);
}


.p_feature ul li span.ttl{
	display: block;
	font-weight: 700;
	letter-spacing: 0.05em;
}

.p_feature ul li span.txt{
	color: #555;
}

.p_feature ul li span.num{
	position: absolute;
	left: 20px;
	top: 50%;
	font-size: 2.8rem;
	font-weight: bold;
	transform: translateY(-50%);
	letter-spacing: 0.03em;
	color: #e48323;
}

.p_feature ul li{
	position: relative;
	padding-left: 100px;
	max-width: 800px;
	padding-top: 30px;
	padding-bottom: 30px;
	padding-right: 30px;
	border-bottom: solid 1px #ccc;
}

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

.p_flow {
	background-color: #fef8e5;
}


.p_flow .sub_ttl{
	margin: 0 auto 10px;
}

.p_flow .ac_ttl{
	margin: 0 auto 60px;
	width: fit-content;
	padding-right: 10px;
}


.p_flow .box{
	position: relative;
	max-width: 320px;
	line-height: 1.6;
	height: 300px;
}

.p_flow .box::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #e48323;
	aspect-ratio: 1 / 1;
	width: 25px;
	border-radius: 50%;
	right: -90px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
}

.p_flow .box+.box::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #e48323;
	aspect-ratio: 1 / 1;
	width: 25px;
	border-radius: 50%;
	right: auto;
	top: 50%;
	left: -90px;
	transform: translateY(-50%);
}

.p_flow .box p{
	color: #555;
}

.p_flow .box .mini{
	font-size: 0.8em;
}

.p_flow .wrap .box+.box{
	margin-top: 80px;
}

.p_flow .wrap+.wrap{
	margin-top: 50px;
}

.p_flow h4{
	font-weight: 600;
	margin-bottom: 10px;
}

.p_flow .flow_list{
	position: relative;
}

.p_flow .flow_list::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #e48323;
	width: 2px;
	height: 100%;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}



.p_flow .wrap{
	position: relative;
}

.p_flow .wrap::before{
	content: "";
	display: inline-block;
	position: absolute;
	height: 2px;
	width: calc(50% - 410px);
	top: 150px;
	left: 50%;
	border-top: dotted 6px #ee9d4d;
	transform: translate(-100%,-50%);
}

.p_flow .wrap::after{
	content: "";
	display: inline-block;
	position: absolute;
	height: 2px;
	width: calc(50% - 410px);
	top: 230px;
	left: 50%;
	border-top: dotted 6px #ee9d4d;
	transform: translate(0,-50%);
}


.p_flow .icon{
	text-align: center;
	margin-bottom: 15px;
}

.p_flow .icon img{
	width: 100px;
	aspect-ratio: 1 / 1;
	background-color: #fff;
	padding: 10px;
	border-radius: 50%;
	border: solid 2px #ccc;
}

.p_flow .box p:nth-child(1 of p){
	font-weight: bold;
	color: #e48323;
	letter-spacing: 0.03em;
	padding-left: 2px;
}

.faq {
	padding-bottom: 10px;
}

.faq .sub_ttl{
	margin: 0 auto 15px;
}

.faq .ac_ttl{
	width: fit-content;
	margin: 0 auto 40px;
	padding-right: 10px;
}

.faq_accordion li{
	position: relative;
}

.faq_accordion li::before{
	content: "";
	position: absolute;
	display: inline-block;
	background-color: #777;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 1px;
}

.faq_accordion{
	margin: 0 auto;
	max-width: 1080px;
}
.faq_accordion li+li{
	margin-top: 20px;
}
.faq_accordion li h4{
    position: relative;
    cursor: pointer;
	font-size: 1.7rem;
    padding: 25px 20px;
	padding-right: 50px;
    transition: all .3s ease;
	border: solid 1px #777;
	background-color: #fef8e5;
	border-bottom: 0px;
	display: flex;
}
.faq_accordion li h4 span.en{
	display: inline-block;
	font-size: 1.2em;
	line-height: 1.5;
	margin-right: 0.5em;
	color: #e48323;
}
.faq_accordion li h4::before,
.faq_accordion li h4::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #e48323;
}
.faq_accordion li h4::before{
    top: 48%;
    right: 20px;
    transform: rotate(0deg);
}
.faq_accordion li h4::after{    
    top: 48%;
    right: 20px;
    transform: rotate(90deg);
}
.faq_accordion li h4.close::before{
	transform: rotate(45deg);
}
.faq_accordion li h4.close::after{
	transform: rotate(-45deg);
}

.faq_accordion li .text{
	position: relative;
    display: none;
	border-left: solid 1px #777;
	border-right: solid 1px #777;
	border-top: 0px;
    padding: 30px 20px;
	background-color: #fef8e5;
}
.faq_accordion li .text::before{
	content: '';
	width: calc(100% - 40px);
	height: 1px;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	background-color: #777;
	pointer-events: none;
	z-index: 1;
}
.faq_accordion li .text .flex{
	display: flex;
	justify-content: space-between;
}
.faq_accordion li .text .flex span.en{

	display: inline-block;
    font-size: 1.5em;
    line-height: 1.3;
    margin-right: 0.5em;
    color: #e48323;
}
.faq_accordion li .text .flex .info{
	width: 100%;
}
.faq_accordion li .text .flex .info p{
	margin-bottom: 5px;
}
.faq_accordion li .text .flex .info p:last-child{
	margin-bottom: 0 !important;
}

.kasou .works{
	background-color: #fff;
}


@media (max-width: 1200px){
	.fir_top .kasou_ttl{
		font-size: 2.8rem;
	}
	.fir_top li{
		font-size: 1.45rem;
	}
	.fir_top .inner{
		width: 94%;
	}
	.fir_top .top_wrap{
		padding: 30px 20px;
	}
	.fir_top .btm_wrap::before{
		width: 65px;
	}
	.fir_top .btm_wrap::after{
		width: 30px;
	}
	.fir_top .btm_wrap h4{
		font-size: 2.8rem;
	}
	.fir_top .btm_wrap{
		padding: 160px 0 90px;
	}
	.fir_top .btm_wrap .ac_img02{
		left: calc(50% - 300px);
		width: 180px;
		bottom: 0;
	}
	.fir_top .btm_wrap .ac_img{
		left: calc(50% + 300px);
		width: 100px;
	}
	.p_feature .flex_bet{
		flex-direction: column;
	}
	.p_feature .left{
		position: static;
		width: 100%;
	}
	.p_feature .right{
		width: 100%;
		margin-top: 40px;
	}
	.p_feature ul li{
		border-top: solid 1px #ccc;
	}
	.p_feature .left .img img{
		height: 300px;
	}
	.p_feature .sub_ttl{
		width: fit-content;
		margin: 0 auto 10px;
	}
	.p_feature .ac_ttl{
		width: fit-content;
		margin: 0 auto 30px;
		padding-right: 10px;
	}
	.p_flow .wrap+.wrap{
		margin-top: 0;
	}
	.p_flow .wrap{
		flex-direction: column;
	}
	.p_flow .box{
		margin: 0 0 0 auto;
		width: 65%;
		max-width: none;
	}
	.p_flow .wrap .box+.box{
		margin-top: 0;
	}
	.p_flow .icon{
		margin-bottom: 0;
	}
	.p_flow .box::before{
		right: auto;
		left: -50px;
	}
	.p_flow .box::before{
		width: 20px;
		top: 47%;
	}
	.p_flow .box+.box::before{
		width: 20px;
		left: -50px;
		top: 47%;
	}
	.p_flow .flow_list::before{
		left: 30px;
	}
	.p_flow .wrap::before{
		width: calc(35% - 80px);
		top: 142px;
		left: 30px;
		transform: translate(0,-50%);
	}
	.p_flow .wrap::after{
		width: calc(35% - 80px);
		right: auto;
		top: 440px;
		left: 30px;
		transform: translate(0,-50%);
	}
	.p_flow{
		padding-bottom: 0;
	}
}


@media (max-width: 650px){
	.fir_top .btm_wrap .ac_img{
		left: auto;
		right: 0;
		width: 80px;
	}
	.fir_top .kasou_ttl{
		font-size: 2rem;
		padding-bottom: 8px;
		margin-bottom: 30px;
	}
	.fir_top .kasou_ttl::before{
		height: 2px;
	}
	.fir_top li{
		width: 100%;
	}
	.fir_top .top_wrap{
		padding: 30px 10px;
	}
	.custom-shape-divider-top-1754623378 svg{
		height: 40px;
	}
	.fir_top .btm_wrap::before{
		width: 45px;
		top: 20px;
	}
	.fir_top .btm_wrap::after{
		width: 22px;
		top: 30px;
	}
	.fir_top .btm_wrap{
		padding: 100px 0 80px;
	}
	.fir_top .btm_wrap h4{
		font-size: 2.2rem;
		text-align: center;
		margin-bottom: 8px;
	}
	.fir_top .btm_wrap p{
		display: inline;
	}
	.fir_top .btm_wrap p .br_1200{
		display: inline;
	}
	.fir_top .btm_wrap{
		text-align: left;
		padding-top: 80px;
	}
	.sub_ttl{
		font-size: 2.6rem;
		margin-bottom: 10px;
	}
	.p_feature .sub_ttl{
		margin: 0 auto;
	}
	.p_feature .ac_ttl{
		margin-bottom: 20px;
	}
	.p_feature .left .img img{
		height: 190px;
	}
	.p_feature ul li span.ttl{
		font-size: 1.8rem;
	}
	.p_feature ul li{
		padding: 20px;
		padding-right: 10px;
		padding-left: 40px;
	}
	.p_feature ul li::before{
		width: 30px;
	}
	.p_feature ul li span.num{
		font-size: 2rem;
		left: 7px;
	}
	.p_flow .ac_ttl{
		margin-bottom: 20px;
	}
	.p_flow .flow_list::before{
		left: 0;
	}
	.p_flow .box{
		width: 80%;
		height: 270px;
	}
	.p_flow h4{
		font-size: 1.8rem;
	}
	.p_flow .icon img{
		width: 85px;
	}
	.p_flow .box::before{
		width: 14px;
		left: -30px;
		top: 45%;
	}
	.p_flow .box+.box::before{
		width: 14px;
	}
	.p_flow .box+.box::before{
		left: -30px;
		top: 45%;
	}
	.p_flow .wrap::before{
		left: 0;
		top: 392px;
	}
	.p_flow .wrap::after{
		left: 0;
		top: 123px;
	}
	.faq .sub_ttl{
		margin-bottom: 10px;
	}
	.faq .ac_ttl{
		margin-bottom: 20px;
	}
	.faq_accordion li h4{
		font-size: 1.45rem;
		padding: 18px 14px;
		padding-right: 45px;
	}
}




/* 施工実績 */

.works_top{
	padding: 100px 0;
}

.works_top h3{
	margin-bottom: 15px;
	font-weight: 600;
}

.works_top .txt_box p{
	padding-left: 26px;
}

.works_top .inner{
	max-width: 1200px;
}

.works_top .left{
	width: 55%;
}

.works_top .right{
	width: 35%;
}

.works_top .right img{
	max-width: 280px;
}

.pickup{
	background-color: #EFF2E5;
}

.pickup h4{
	position: relative;
	border-bottom: solid 2px #aaa;
	margin-bottom: 30px;
	padding-left: 5px;
	letter-spacing: 0.03em;
}


.pickup h4::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #e48323;
	bottom: -2px;
	left: 0;
	width: 10%;
	height: 2px;
}

.pickup .left{
	width: 40%;
}

.pickup .right{
	width: 55%;
}

.pickup table th,.pickup table td{
	padding: 18px 0;
}

.pickup table th{
	width: 30%;
}
.pickup table th{
	position: relative;
	width: 30%;
	padding-left: 16px;
}

.pickup table th::before{
	content: "";
	display: inline-block;
	position: absolute;
	top: 34px;
	left: 0;
	background-color: #e48323;
	aspect-ratio: 1 / 1;
	width: 8px;
	transform: translateY(-50%);
}

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

.pickup .btm_box h5{
	font-weight: 600;
	margin-bottom: 10px;
}

.pickup .btm_box .coment{
	background-color: #fff;
	width: 49%;
	padding: 20px;
	border-radius: 5px;
}

.pickup .btm_box h5::first-letter{
	color: #e48323;
}

.pickup .slick-slide img{
	aspect-ratio: 3 / 2;
	border-radius: 10px;
}

.ba h4{
	border-left: solid 3px #e48323;
	padding-left: 8px;
	letter-spacing: 0.04em;
	line-height: 1.4;
	margin-bottom: 15px;
}

.ba .item_list{
	flex-wrap: wrap;
	gap: 30px;
}

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

.ba .slick-slide img{
	border-radius: 10px;
	aspect-ratio: 3 / 2;
}

.ba .slick-slide{
	margin: 0;
}

.ba .befo_txt{
	position: relative;
}

.ba .befo_txt::before{
	content: "BEFORE";
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	font-size: 2.2rem;
	white-space: nowrap;
	color: #fff;
	text-shadow: 2px 2px 0px rgba(0, 0, 0, 1), 4px 4px 0px #e48323;
	font-weight: bold;
	border: solid 2px #fff;
	padding: 0 10px;
	letter-spacing: 0.05em;
}

.ba .af_txt{
	position: relative;
}

.ba .af_txt::before{
	content: "AFTER";
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	font-size: 2.2rem;
	white-space: nowrap;
	text-shadow: 2px 2px 0px rgba(0, 0, 0, 1), 4px 4px 0px #e48323;
	color: #fff;
	font-weight: bold;
	border: solid 2px #fff;
	padding: 0 10px;
	letter-spacing: 0.05em;
}


.photo{
	background-color: #fef8e5;
}

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

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



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


.photo .wrapper+.wrapper{
	margin-top: 50px;
}

.photo h4{
	letter-spacing: 0.04em;
	border-left: solid 3px #e48323;
	padding-left: 7px;
	line-height: 1.4;
	margin-bottom: 15px;
}


@media (max-width: 1200px){
	.works_top h3{
		font-size: 2.6rem;
	}
	.works_top .right img{
		max-width: none;
		width: 100%;
	}
	.works_top .left{
		width: 65%;
	}
	.works_top .txt_box{
		font-size: 1.5rem;
	}
	.works_top .txt_box p{
		padding-left: 15px;
	}
	.works_top .right{
		width: 28%;
	}
	.pickup .flex_bet.ch{
		flex-direction: column;
	}
	.pickup .right{
		width: 100%;
	}
	.pickup .left{
		width: 100%;
	}
	.ba .item{
		width: calc((100% - 30px) / 2);
	}
	.photo .item{
		width: calc((100% - 50px) / 2);
	}

	.photo .item:nth-child(n+3){
		margin-top: 20px;
	}

}

@media (max-width: 740px){
	.works_top h3{
		font-size: 1.7rem;
	}
	.works_top .txt_box{
		font-size: 1.2rem;
	}
	.works_top .txt_box p {
		padding-left: 0px;
		display: inline;
	}
	.works_top{
		padding: 50px 0;
	}
	.pickup h4{
		font-size: 1.8rem;
		margin-bottom: 20px;
	}
	.pickup table th{
		display: block;
		width: 100%;
		padding: 10px 0;
		padding-bottom: 0;
		padding-left: 16px;
	}
	.pickup table td{
		display: block;
		width: 100%;
		padding: 10px 0;
	}
	.pickup table th::before{
		top: 23px;
	}
	.pickup .btm_box{
		flex-direction: column;
	}
	.pickup .btm_box .coment{
		width: 100%;
		padding: 15px;
	}
	.pickup .btm_box .coment+.coment{
		margin-top: 10px;
	}
	.pickup .btm_box h5{
		font-size: 1.6rem;
	}
	.ba h4{
		font-size: 1.6rem;
	}
	.photo .gap_area{
		flex-wrap: wrap;
		gap: 20px;
	}

	.photo .item{
		width: calc((100% - 20px) / 2);
	}
	.ba .item {
        width: calc((100% - 10px) / 2);
    }
	.ba .item_list{
		gap: 25px 10px;
	}
	.ba .af_txt::before,.ba .befo_txt::before{
		font-size: 1.5rem;
	}
}




/* 会社概要 */


.p_greeting .sub_ttl{
	width: fit-content;
	margin: 0 auto 10px;
}

.p_greeting  .ac_ttl{
	width: fit-content;
	margin: 0 auto 50px;
	padding-right: 10px;
}

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

.p_greeting .txt_box p.btm{
	text-align: right;
}

.p_greeting .img{
	width: 38%;
}

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

.p_greeting  .txt_box{
	width: 56%;
}

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

.staff{
	background-color: #fef8e5;
}

.staff .inner{
	max-width: 1200px;
}

.staff .staff_list{
	flex-wrap: wrap;
}

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

.staff .item .img{
	margin-bottom: 10px;
}

.staff .item .img img{
	width: 100%;
	object-fit: cover;
	aspect-ratio: 3 / 2;
	border-radius: 10px;
}

.staff .item:nth-child(n+4){
	margin-top: 30px;
}

.staff .sub_ttl{
	margin: 0 auto 15px;
}

.staff .ac_ttl{
	width: fit-content;
	margin: 0 auto 40px;
	padding-right: 20px;
}


.overview{
	padding-bottom: 0;
}

.overview table th, .overview table td{
	border-bottom: solid 1px #ccc;
	padding: 14px 0;
}

.overview table th{
	width: 30%;
	padding-left: 10px;
}

.overview table td{
	width: 70%;
	padding-right: 10px;
}

.overview table tr:first-child th,.overview table tr:first-child td{
	border-top: solid 1px #ccc;
	letter-spacing: 0.03em;
}

.sti_left{
	width: 300px;
}

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

.sti_right table{
	width: 100%;
	max-width: 850px;
	margin: 0 0 0 auto;
}

.sti_right .map{
	width: 100%;
	max-width: 850px;
	margin: 0 0 0 auto;
}

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


@media (max-width: 1200px){
	.p_greeting .flex_bet{
		flex-direction: column;
	}
	.p_greeting .img{
		width: 86%;
		margin: 0 auto 30px;
	}
	.p_greeting .img img{
		aspect-ratio: auto;
		height: 300px;
	}
	.p_greeting .txt_box{
		width: 86%;
		margin: 0 auto;
	}
	.overview .flex_bet{
		flex-direction: column;
	}
	.sti_right{
		width: 100%;
	}
	.sti_left{
		width: 100%;
	}
	.overview .sub_ttl{
		margin: 0 auto 15px;
	}
	.overview .ac_ttl{
		width: fit-content;
		margin: 0 auto 30px;
		padding-right: 20px;
	}
	.access .flex_bet{
		flex-direction: column;
	}
	.access .sub_ttl{
		width: fit-content;
		margin: 0 auto 15px;
	}
	.access .ac_ttl{
		width: fit-content;
		margin: 0 auto 30px;
		padding-right: 20px;
	}
	.staff .item{
		width: calc((100% - 40px) / 2);
	}
	.staff .item:nth-child(n+3){
		margin-top: 30px;
	}
	.p_greeting .ac_ttl{
		margin-bottom: 20px;
	}


}

@media (max-width:740px){
	.p_greeting .img{
		width: 100%;
	}
	.p_greeting .img img{
		height: 200px;
	}
	.p_greeting .txt_box{
		width: 100%;
	}
	.staff .staff_list h4{
		font-size: 1.8rem;
	}
	.staff .item {
        width: calc((100% - 20px) / 2);
    }
	.staff .sub_ttl{
		margin-bottom: 10px;
	}
	.staff .ac_ttl{
		margin-bottom: 20px;
	}
	.overview .ac_ttl{
		margin-bottom: 20px;
	}
	.overview .sub_ttl{
		margin-bottom: 10px;
	}
	.sti_right .map iframe{
		height: 260px;
	}
	.access .ac_ttl{
		margin-bottom: 15px;
	}
	.access .sub_ttl{
		margin-bottom: 10px;
	}
}




/* お見積・お問い合わせ */



.co_top{
	background-color: #fef8e5;
	padding-bottom: 0;
	padding-top: 50px;
}

.co_tel .mini{
	font-size: 0.7em;
}


.co_top p.center{
	position: relative;
	text-align: center;
	margin-bottom: 40px;
}

.co_top a{
	display: block;
	background-color: #fef8e5;
	color: #e48323;
	border-radius: 60px;
	text-align: center;
	padding: 4px 0;
	font-weight: 600;
	border: solid 2px #e48323;
}

.co_top a:hover{
	background-color: #e48323;
	color: #fff;
}

.co_tel{
	max-width: 800px;
	margin: 0 auto;
	background-color: #fff;
	padding: 30px 40px;
	border-radius: 20px;
}

.co_tel i{
	font-size: 0.85em;
}

.co_top h3{
	text-align: center;
	margin-bottom: 15px;
	letter-spacing: 0.03em;
}

.co_tel p{
	text-align: center;
	margin-top: 10px;
}




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

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


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: #eee;
	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: #e48323;
	padding: 4px 8px 3px;
	color: #fff;
}

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

.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: 10px 0 7px;
	letter-spacing: 0.05em;
	text-align: center;
	width: 230px;
	transition: all 0.5s;
	background: #e48323;
	border: solid 2px #e48323;
	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: #e48323;
	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 #777;
}

.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: #555;
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.1em;
	background-color: #eee;
	border-radius: 30px;
}

.Label::before{
	content: "";
	width: 12px;
	height: 12px;
	border-top: 2.5px solid #000;
	border-right: 2.5px solid #000;
	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 {
	background-color: #fef8e5;
	padding-top: 50px;
}


.mail_sec .inner{
	max-width: 1080px;
	background-color: #fff;
	padding: 50px 60px;
	border-radius: 20px;
}

.k_contact h3{
	text-align: center;
	position: relative;
	margin-bottom: 30px;
	padding-bottom: 5px;
}

.k_contact h3::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #e48323;
	height: 3px;
	width: 180px;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 2px;
}



@media (max-width: 1200px){
	.contact_table th{
		width: 100%;
		display: block;
		border-bottom: 0px;
		padding-bottom: 0;
	}
	.contact_table td{
		width: 100%;
		display: block;
	}
}

@media (max-width: 740px){
	.co_top p.center{
		font-size: 1.7rem;
	}
	.k_contact h3{
		font-size: 2rem;
	}
	.k_contact h3::before{
		height: 2px;
	}
	.co_top a{
		font-size: 2.2rem;
	}
	.co_tel p{
		font-size: 1.5rem;
	}
	.mail_sec .inner{
		padding: 30px 20px;
	}
	.Label{
		font-size: 1.45rem;
	}
	.mail_sec{
		padding-top: 30px;
	}
}



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

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