@charset "utf-8";
/* CSS Document */
/*==========================================================================
	header
==============================*/
#header{
	position: relative;
	width: 100%;
}

.head-top{
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 125px;
	padding-bottom: 55px;
	position: relative;
	width: 100%;
}
.head-top::after{
	position: absolute;
	content: '';
	width: 100%;
	height: 50px;
	background: #3c491e;
	left: 0;
	bottom:0;
}

.hlogo{
	height: 100%;
	padding: 5px 0 5px 2vw;
	width: 38%;
	max-width: 480px;
    min-width: 250px;
	z-index: 99;
}
.hlogo img{
	height: 100%;
	width: 100%;
	object-fit: contain;
	vertical-align: bottom;
}
.head-top-right{
	display: flex;
	justify-content: flex-end;
	height: 100%;
}
.htop_tel{
	padding: 5px 20px;
	font-size: 15px;
	text-align: center
}
.htop_tel .numb{
	font-size: clamp(1.375rem, 0.97rem + 0.79vw, 1.563rem);
	font-weight: 600;
	vertical-align: bottom;
	line-height: 1;
	transform: scaleY(1.2);
}

.htop_mail a{
	height: 100%;
	display: flex;
	align-items: center;
	padding: 5px 20px;
	background: #fce300;
	border-radius: 0 0 0 20px;
	line-height: 1.3;
	font-weight: 600;
}
.htop_mail .img{
	width: 70px;
	height: 50px;
	margin-right: 10px;
}
.htop_mail .img .hmail_sp{
	display: none;
}
.htop_mail .img img{
	height: 100%;
	object-fit: contain;
	vertical-align: bottom;

}

.gnav{
	margin-top: -25px;
	padding: 0 20px;
	position: absolute;
	bottom: -25px;
	left: 50%;
	transform: translateX(-50%);
	max-width: 850px;
	width: 100%;
}
.gnav ul{
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	width: 100%;
	border: 1px solid #3c491e;
    border-radius: 50px;
    margin: 0 auto;
    padding: 0 50px;
}
.gnav li{
	position: relative;
}
.gnav li::before{
	position: absolute;
	content: '';
	aspect-ratio: 3 / 2;
	height: 80%;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background: url("../img/icon/icon_cat.png")no-repeat center/contain;
	z-index: 0;
	opacity: 0;
	transition: .4s;
}


.gnav li a{
	display: block;
	padding: 10px 25px;
	position: relative;
}
.gnav li a::before,
.gnav li:last-child a::after{
	position: absolute;
	content: '';
	width: 1px;
	height: 90%;
	left: 0;
	top: 5%;
	background: #3c491e;
}
.gnav li:last-child a::after{
	left: auto;
	right: 0;	
}
.gnav li:hover::before{
	opacity: 1;
	transition: .4s;
}
.gnav.fixed {
	position: fixed;
	bottom:auto;
	top: 35px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 100;
	max-width: 850px;
	width: 100%;
}

@media(max-width:809px){
	.head-top{
		height: 90px;
		padding-bottom: 30px;
	}	
	.head-top::after{
		height: 25px;
	}	
	.gnav{
		display: none;
	}	
	.htop_mail{
		margin-right: 70px
	}
	.htop_mail a{
		margin-right: 10px;
		padding: 5px 10px;		
		border-radius: 0 0 15px 15px;
	}	.htop_mail .img .hmail_pc{
		display: none;
	}
	.htop_mail .img .hmail_sp{
		display: block;
		width: 100%;
		height: 100%;
		object-fit: contain;
	}
	.htop_mail .img{
		width: 45px;
		height: 45px;
		margin-right: 0px;
	}	

	.htop_mail .txt{
		display: none;
	}
	.htop_tel{
		padding: 5px 20px 0;
		font-size:clamp(0.813rem, 0.321rem + 1.22vw, 0.938rem);
	}
	.htop_tel .numb{
		margin-top: -5px;
		font-size: clamp(1.188rem, 0.45rem + 1.83vw, 1.375rem);
	}	
}

@media(max-width:644px){
	.htop_tel,.htop_mail{
		display: none;
	}
}

/*==========================================================================
　　MobileMenu
==============================*/

.openbtn{
	/*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
	position: fixed;
	background:#3c491e;
	cursor: pointer;
    width: 65px;
    height:60px;
	border-radius:0 0 10px 10px ;
	margin-right: 10px;
	z-index: 100;
}

@media(min-width:810px){
	.openbtn{
		display: none;
	}
}

/*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
  }

.openbtn span:nth-of-type(1),
.openbtn span:nth-of-type(3) {
    height: 2px;
	background: #fce300;
  	width: 62%;
    left: 19%;
 }

.openbtn span:nth-of-type(1) {
	top:13px;	
}

.openbtn span:nth-of-type(2) {
	top:19px;
	left:13px;
	font-size:0.7rem;
	text-transform: uppercase;
	color: #fce300;
}

.openbtn span:nth-of-type(3) {
	top:45px;
}

/*activeクラスが付与されると線が回転して×になり、Menu表記をしている2つ目の要素が透過して消える*/
.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 19%;
    transform: translateY(6px) rotate(-45deg);
    width: 62%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 19%;
    transform: translateY(-6px) rotate(45deg);
    width: 62%;
}




#g-nav{
    position:fixed;
    z-index: 88;
    top:0;
    right: -120%;
	width:100%;
	max-width: 320px;
    height: 100vh;
	background:#fff;
	border-left: 2px solid #3c491e;
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    right: 0;
}

/*ナビゲーション*/
#g-nav ul {
	padding: 80px 0 30px;
	width: 90%;
	margin: 0 auto;
}

/*リストのレイアウト設定*/

#g-nav li{
	border-bottom: 1px dashed #3c491e;
}

#g-nav li a{
	position: relative;
	color: #3c491e;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
	padding-left: 2.2rem;
}
.sp_cta{
	text-align: center;
	width: 80%;
	margin: 0 auto;
}
.sp_cta p{
	margin-top: 15px;
}

.sp_cta a{
	display: block;
	padding: 15px 0;
	border: 2px solid #3c491e;
	font-size: 1.2rem;
}

@media(max-width:500px){
#g-nav{
	max-width: 100%;
}
	
}

#g-nav li a::before{
	position: absolute;
	content: '';
	width: 1.8rem;
	height: 100%;
	background: url("../img/icon/icon_cat.png")no-repeat center/contain;
	left: 0;
	top: 2px;
	filter: contrast(79%) grayscale(74%) hue-rotate(63deg);
}


/*==========================================================================
	Footer
==============================*/
footer{
	padding: 40px 0;
 	background: #d5e0c6;
	border-top: 15px solid #3c491e;
	position: relative;
}
.flogo{
	width: 80%;
	max-width: 360px;
}
.flogo img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}


.fcontact{
	text-align: center;
	margin-bottom: 20px;
}
.fcontact p{
	
}
.fcontact .numb{	
    font-size:clamp(2rem, 0.705rem + 2.53vw, 2.6rem);
    font-weight: 600;
    vertical-align: bottom;
    line-height: 1.5;
    transform: scaleY(1.2);
}
.fcontact a:hover .numb{	
    color: #3c491e;
}

.fnav{
	display: flex;
	border-top: 1px solid #3c491e;
	border-bottom: 1px solid #3c491e;
	padding: 15px 1rem 0;
}
.fnav ul{
	width: 48%;
	padding-right: 15px
}
.fnav li{
	margin-bottom: 13px;
}
.fnav li a{
	position: relative;
	padding-left: 2rem;
}
.fnav li a::before{
	position: absolute;
	content: '';
	width: 1.2rem;
	height: 1.2rem;
	background: #fce300;
	border-radius: 50%;
	top: 3px;
	left: 0;
}
.fnav li a:hover{
	color:#fce300; 
}
.copy{
	background: #3c491e;
	padding: 5px 0;
	text-align: center;
	color: #fce300;
	font-size: 15px;
}

@media(max-width:768px){
	.flogo{
		margin: 0 auto;
	}
	.f_left{
		text-align: center;
	}
}
@media(max-width:450px){
	.fnav{
		display: none;
	}
	.fcontact{
		padding: 15px 0;
		border-top: 2px solid #3c491e;
		border-bottom: 2px solid #3c491e;
	}
}
/*==========================================================================
　 PageTop
==============================*/
#pagetop a{
	position: absolute;
	width: 100px;
	height: 200px;
	background: url("../img/pagetop.png")no-repeat center bottom/contain;
	top: -192px;
	right: 5px;
	display: block;
}
@media(max-width:480px){
	#pagetop a{
		width: 80px;
		height: 150px;
		top: -148px;		
	}	
}

/*==========================================================================
	Fv
==============================*/
#fv{
	background: #d5e0c6;
	padding: 80px 0 80px;
	max-height: calc(100vh - 125px);
	width: 100%;
}


.fv_slider {
    width:100%;
	aspect-ratio: 7 / 2;
	max-height: calc(100vh - 285px);
    margin:0 auto;
}
.fv_slider li{
	margin: 0 15px;
	width: 65vw;
}


.fv_slider img {
	width: 100%;
	object-fit: contain;
}
.fv_slider img.spfv{
	display: none;
}
/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.fv_slider .slick-prev, 
.fv_slider .slick-next {
    position: absolute;/*絶対配置にする*/
	content: '';
    top: 42%;
    height: 50px;
    width: 50px;
	z-index: 3;
	background: url("../img/icon/icon_arrow.png")no-repeat center/contain;
}

.fv_slider .slick-prev {/*戻る矢印の位置と形状*/
    left: 16vw;
}

.fv_slider .slick-next {/*次へ矢印の位置と形状*/
    right: 16vw;
	transform: rotate(180deg);
}
.sp-fvimg{
	display: none;
}
.sp-fvimg img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
@media(max-width:809px){
	#fv{
		padding: 50px 0 50px;
	}
}
@media(max-width:767px){
	.fv_slider img.pcfv{
		display: none;
	}
	.fv_slider img.spfv{
		display: block;
	}
	
}
@media(max-width:644px){
	#fv{
		padding: 30px 0;
	}	
	.fv_slider {
		aspect-ratio: 7 / 5;
	}	
	.fv_slider li{
		width: calc(100vw - 30px);		
	}
	.fv_slider .slick-prev, 
	.fv_slider .slick-next {
		display: none;
	}

	.fv_slider .slick-prev {/*戻る矢印の位置と形状*/
		left: .5vw;
	}

	.fv_slider .slick-next {/*次へ矢印の位置と形状*/
		right: .5vw;
		transform: rotate(180deg);
	}	
}
@media(max-width:499px){
	.fv_slider {
		display: none;
	}	
	.sp-fvimg{
		display: block;
	}
}
/*==========================================================================
	index
==============================*/
.bg.pointbg{
	background: url("../img/point_bg.jpg")no-repeat center/cover;
}

.t_point_wrap{
	background: url("../img/point_bg02.png")no-repeat center top/cover;
	padding:100px 5.5vw 3rem;
	
}
.p_ttl_wrap{
	width: 80%;
	max-width: 550px;
	margin: 0 auto 80px;
}
.p_ttl_wrap img{
	width: 100%;
	object-fit: contain;
}
.p_list{
	display: flex;
	justify-content: space-between;
	margin-bottom: 50px;
}
.p_list_wrap{
	width: calc(95% / 3);
	background: #fff;
	padding:2rem 1.3rem;
	border-radius: 20px;
	font-size: 16px;
}
.p_list_wrap h3,
.p_list_wrap figure{
	text-align: center;
	margin-bottom: 25px;
	font-size: clamp(1.3rem, 0.469rem + 1.64vw, 1.7rem);
}
.p_list_wrap figure{
	height: 80px;
}

.p_list_wrap figure img{
	height: 100%;
	object-fit: contain;
}
@media(max-width:809px){
	.p_list{
		flex-wrap: wrap;
		justify-content: center;
		gap: 3%;
	}
	.p_list_wrap{
		width: calc(95% / 2);
		padding:1.5rem .8rem;
		margin-bottom: 20px;
	}	
}
@media(max-width:550px){
	.p_ttl_wrap {
		width: 100%;
		margin: 0 auto 34px;
	}	
	.p_list{
		flex-wrap: wrap;
		justify-content: center;
		gap: 0;
	}
	.p_list_wrap{
		width: 100%;
		padding:1.5rem .8rem;
		margin-bottom: 20px;
	}	
}


/*おすすめリフォーム*/
.t_service{
	padding-bottom: 25px;
}
.serv_ttl{
	text-align: center;
}
.serv_ttl h2{
	position: relative;
	font-family: "Kosugi Maru", sans-serif;
	font-weight: 600;
	font-size:clamp(1.9rem, 1.715rem + 0.78vw, 2.3rem);	
	display: inline-block;
}
.serv_ttl h2 span{
	color: #006837;
}

.serv_ttl h2::before,
.serv_ttl h2::after{
	position: absolute;
	content: '';
	width: 100px;
	height: 70px;
	bottom: 0;
}
.serv_ttl h2::before{
	background: url("../img/icon/icon_shokunin.png")no-repeat center/contain;
	left: -120px;
}
.serv_ttl h2::after{
	background: url("../img/icon/icon_kogu.png")no-repeat center/contain;
	right: -150px;
}
.serv_wrap_top{
	background: url("../img/tserv_bg_top.png")no-repeat center top/cover;
	height: 130px;
	position: relative;
	margin-bottom: -15px
}
.serv_wrap{
	background: url("../img/tserv_bg.png")no-repeat center top/cover;
	padding:0 3rem 20vh;
}

.serv_list01{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap:40px;
	margin-bottom: 30px;
}
.serv_list02{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap:20px;
	
}
.s_item{
	position: relative;
}
.cat01 {
    position: absolute;
    width: clamp(10.5rem, 7.832rem + 11.23vw, 16.256rem);
    aspect-ratio: 1 / 1;
    bottom:-20px;
    left: 0;
    z-index: 3;
}
.cat01 img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	vertical-align: bottom;
}
.s_item a{
	display: block;
	width: 100%;
	height: 100%;
	background: #fff;
	padding: 2rem;
	border-radius: 20px;
	box-shadow: 2px 2px 4px #666;
}
.serv_list02 .s_item a{
	padding: 1rem;
	border-radius: 15px;
}

.s_item figure {
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 15px;
}
.s_item a img{
	transition: .4s;
}

.s_item a:hover{
	transform: translateY(-5px);
}
.s_item a:hover img{
	transform: scale(1.1);
	transition: .4s;
}

.txtbox{
	position: relative;
	padding: 10px 3.5rem 0 0;
}
.txtbox::before{
	position: absolute;
	content: '';
	width: 2.5rem;
	height: 2.5rem;
	background: url("../img/icon/icon_arrow.png")no-repeat center/contain;
	transform: rotate(180deg) translateY(-50%);
	top: 30%;
	right: 0;
}
.serv_list02 .txtbox{
	padding: 10px 2rem 0 0;
}
.serv_list02 .txtbox::before{
	width: 1.5rem;
	height: 1.5rem;
	top: 6%;	
}

.txtbox h4{
	font-size: 1.3rem;
	margin-bottom: 10px;
	color: #3c491e;
}
.serv_list02 .txtbox h4{
	font-size: 1.2rem;
	margin-bottom: 0px;
}

@media(max-width:730px){
	.serv_ttl h2 span{
		display: block;
	}
	.serv_ttl h2::before,
	.serv_ttl h2::after{
		position: absolute;
		content: '';
		width: clamp(80px,5vw,100px);
		height: 70px;
		bottom: 20px;
	}
	.serv_ttl h2::before{
		background: url("../img/icon/icon_shokunin.png")no-repeat center/contain;
		left: clamp(-80px,-4vw,-100px);
	}
	.serv_ttl h2::after{
		background: url("../img/icon/icon_kogu.png")no-repeat center/contain;
		right: -80px;
		bottom:40px;
	}
	.serv_list01{
		grid-template-columns: repeat(1, 1fr);
	}
	.serv_list02{
		grid-template-columns: repeat(2, 1fr);

	}	
	.txtbox{
		position: relative;
		padding: 10px 2.2rem 0 0;
	}
	.txtbox::before{
		width: 1.8rem;
		height: 1.8rem;
	}	
}
@media(max-width:450px){
	.serv_wrap {
		padding: 0 1.5rem 135px;
	}	
	.serv_ttl h4{
		font-size: 15px;
	}
	.serv_list02{
		grid-template-columns: repeat(1, 1fr);

	}		
}
/*古民家再生*/
.t_kominka{
	padding-bottom:clamp(140px,25vw,220px);
}
.t_kominka::before,
.t_kominka::after{
	position: absolute;
	content: '';
	width: 15vw;
	aspect-ratio: 269 / 355;
	z-index: -1;	
}
.t_kominka::before{
	background: url("../img/deco_l.png")no-repeat center/contain;
	top: 0;
	left: 2vw;
}
.t_kominka::after{
	background: url("../img/cat04.png")no-repeat center/contain;
	aspect-ratio: 13 / 12;
	width:clamp(160px , 21vw, 300px);
	bottom: 6vh;
    right: 2vw;
    z-index: 5;
}
.kttl{
	text-align: center;
	font-size: clamp(2.5rem, 1.805rem + 2.93vw, 4rem);
}
.kttl_sub{
	text-align: center;
	font-size:clamp(1.3rem, 0.837rem + 1.95vw, 2.3rem);
	font-family: "Kosugi Maru", sans-serif;
	margin-bottom: 50px;
}

.k_img{
	width: 100%;
	height: 300px;
	margin-bottom: 50px;
	position: relative;
}
.k_img img{
	object-position: center 60%;
}
/*.k_img::before{
	position: absolute;
	content: '';
	width: clamp(100px, 10vw, 150px);
    height: clamp(100px, 10vw, 150px);
    background: url(../img/cat04.png) no-repeat bottom / contain;
    bottom: -23px;
    right: 1vw;
}*/
.k_txt{
	text-align: center;
    padding: 2rem 1rem;
}


.k_txt p{
	font-size: clamp(18px,2.1vw,20px);	
}
.t_kominka .mbtn{
	text-align: center;
}

.ta_txt{
}
.ta_txt figure{
	width: 100%;
	max-width: 600px;
	margin-top: 50px;
}
.ta_txt h3{
	color: #3c491e;
	font-size: clamp(1.4rem, 1.215rem + 0.78vw, 1.8rem);
	margin-bottom: 30px;
	max-width: 80%;
}
.ta_img{
	position: relative;
	padding-bottom:clamp(100px,25vh,200px);
}
.ta_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 15px;
}
.img02{
	position: absolute;
	width: 40%;
	aspect-ratio: 5 / 7;
	left: 3%;	
	top:45%;
}
.img03{
	position: absolute;
	width: 50%;
	aspect-ratio: 4 / 3;
	right: 0;	
	top: 65%;
}
@media(max-width:768px){
	.ta_txt{
		padding-bottom: 1rem;
	}
}

@media(max-width:689px){
	.t_kominka .k_txt{
		text-align: left;
	}
	.t_kominka .k_txt .ib{
		display: inline!important;
	}
}


.subcta{
	padding-top: 0;
	text-align: center;
}
.subcta img{
	width: 85%;
	max-width: 1000px;
	object-fit: contain;
	margin: 0 auto;
}
@media(max-width:768px){
	.subcta img {
		width: 90%;
    	margin: -2vh auto 0;
	}

}
/*==========================================================================

==============================*/
.subfv{
	padding-top: clamp(40px, 10vw, 80px);
	padding-bottom: clamp(40px, 10vw, 80px);
	background: url("../img/pagettl.jpg")no-repeat center/cover;
	text-align: center; 
	z-index: -1;	
}
.subfv::before{
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	background: rgba(106,146,103,.30);
	top: 0;
	left: 0;
	z-index: -1;
}
.pagettl{
	color: #fce300;
	letter-spacing: .3rem;
	font-size: clamp(1.8rem, 1.476rem + 1.37vw, 2.5rem);
	line-height: 1.2;
	font-family: "Kosugi Maru", sans-serif;
}

/*パンくず*/
/* breadcrumb */
.binner {
	width: 95%;
	font-size: 0.8rem;
	position: relative;
}
.breadcrumb {
	z-index: 1;
	background: transparent;
	position: absolute;
	top: 0;
	left: 0;
}
.breadcrumb li {
	display: inline;
	list-style: none;
}
.breadcrumb li:after {
	content: '>';
	padding: 0 0.2em;
	position: relative;
	top: -0.1em;
}
.breadcrumb li:last-child:after {
	content: '';
}
.breadcrumb li a {
	text-decoration: none;
	color: #3c491e;
}
.breadcrumb li:first-child a::before {
	font-family: "Font Awesome 6 Free";
	content: '\f015';
	font-weight: bold;
	font-size: 90%;
	position: relative;
	top: -0.05em;
	left: -.5rem;
}
@media(max-width:550px) {
	.breadcrumb {
		font-size: 0.63rem;
	}
}
@media(max-width:390px) {
	.mflong {
		font-size: 9.8vw !important;
		white-space: nowrap;
	}
}
/*===============================================
  recruit
===============================================*/

.top_recruit .main_img{
	position: absolute;
	content: '';
	width: 60%;
	height:50vh;
	top: 0;
	right: 0;
	z-index: -1;
	max-height: 400px;
}
.top_recruit .main_img img{
	width: 100%;
	object-fit: cover;
	height: 100%;
	border-radius: 20px 0 0 20px;
}
.ttl_wrap{
	max-height: 400px;
	height: 45vh;
	position: relative;
	width: 60%;
	max-width: 650px;
	margin-right: auto;
	padding-top:clamp(80px,10vh,120px);
}
.ttl_wrap h2{
	font-family: "Great Vibes", "Times New Roman", serif;
    color: #f3d46b;
	font-size: 80px;
	transform: rotate(-20deg);
	display: inline-block;
	position: absolute;
	top: -3vh;
	left: 0;
}
.ttl_wrap h3{
	background: #fff;
	padding: 6px 10px;
	text-align: end;
	font-size: clamp(1.563rem, 1.007rem + 1.16vw, 1.875rem);
	margin-bottom: 15px;
}

@media(max-width:767px){
	.top_recruit{
		padding-top: 0;
	}
	.top_recruit .main_img{
		position: relative;
		width: 95%;
		height: clamp(200px,32vh,350px);
		margin-left: auto;
		margin-right: -2%;
	}
	.ttl_wrap{
		margin-top: -8vh;
		width: 100%;
		max-width: 100%;
		margin-bottom: 10px;
		max-height: max-content;
	}
	.ttl_wrap h2{
		font-size: clamp(4rem, 3.018rem + 4.13vw, 5rem);
		margin-bottom: 0;
		top:-5vh;
	}
	.ttl_wrap h3{
		padding-bottom: 0;
		text-align: center;
		font-size:clamp(1.25rem, 0.943rem + 1.29vw, 1.563rem);
		margin-bottom: 0;
		color: #006837;
		width: 100%;
		margin-left: auto;
		
	}	
}

.top_recruit .box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content:center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 80px;
}

.top_recruit .illust_area {
    position: relative;
    width: clamp(120px,20vw,220px);
}

.top_recruit .illust_area .illust {
    position: absolute;
    left: -8px;
    bottom: -8vh;
    width: clamp(120px,20vw,220px);
}
.illust_area img {
    width: 100%;
    height: 100%;
    object-fit: contain;
	object-position: top;
}
.top_recruit .text_area {
    position: relative;
    width: 72.72%;
    max-width: calc(100% - 245px);
    height: auto;
}
.top_recruit .text_area dl {
    position: relative;
    padding: 35px 40px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: #fff;
    border-radius: 30px;
    margin-bottom: 37px;
	margin-right: 5px;
    font-size: 1.6rem;
    font-size: clamp(15px, 1.6rem, 17px);
    line-height: 1.875;
    font-weight: 500;
	border: 3px solid #ffef8f;
    -webkit-box-shadow: 0px 8px 0px 0px #ffef8f;
    box-shadow: -5px 5px 0px 0px  #ffef8f;
    z-index: 10;
}

.top_recruit .text_area dl::after {
    content: "";
    display: block;
    position: absolute;
    left: -32px;
    bottom: clamp(30px,8vw,100px);
    width: 33px;
    height: 29px;
    background: url(../img/voice_txt_icon.png);
    background-size: cover;
	transform: scale(-1,1);
}

.top_recruit .text_area dt{
	font-size: 110%;
	font-weight: 600;
	margin-bottom: 10px;
	color: #3c491e;
}

.top_recruit .mbtn{
	text-align: end;
}
.top_recruit .mbtn a{
	text-align: left;
	min-width: 245px;
	font-size: clamp(1.1rem, 1.054rem + 0.2vw, 1.2rem);
}

@media(max-width:767px){
	.top_recruit .text_area {
		width: 100%;
		max-width: 100% ;
	}	
	.top_recruit .box{
		justify-content: flex-end;
	}
	.top_recruit .text_area dl::after {
		left: 100px;
		bottom: -28px;
		transform: scale(1,1);
	}
	.top_recruit .illust_area {
		position: absolute;
		bottom: clamp(-120px,-10vw,-30px);
		left: 2vw;
		
	}
	.top_recruit .illust_area .illust {
		bottom:0;
	}	
}
@media(max-width:400px){
	.top_recruit  .text_area .ib{
		display: inline!important;
	}
	
}

/*==========================================================================
会社概要
==============================*/
.about{
	position: relative;
	z-index: 0;
}
.about::after{
	position: absolute;
	content: '';
	width: clamp(135px,22vw,280px);
	height: auto;
	aspect-ratio: 53 / 39;
	background: url("../img/riku_about.png")no-repeat center/contain;
	bottom:0;
	right: -2%;
	z-index: 1;
}


.about tr{
	border: 1px solid #aaa;
}
.about th{
	padding: 1rem;
	background: #3c491e;
	color: #fff;
	width: 28%;
}
.about td{
	padding: 1rem;
}
.map{
	width: 100%;
	height: 45vh;
}
.map iframe{
	object-fit: cover;
}


/*==========================================================================
リフォーム
==============================*/
.sec-01 {
  background-color: #f6f6f6;
}
.rttl{
	text-align: center;
	font-size: clamp(1.7rem, 1.561rem + 0.59vw, 2rem);
	padding-bottom: 15px;
	margin-bottom: 50px;
	position: relative;
}
.rttl::before{
	position: absolute;
	content: '';
	width: 5vw;
	height: 3px;
	background:#3c491e;
	bottom:0;
	left: 50%;
	transform: translateX(-50%);
}

.head-r {
  position: relative;
  margin-bottom: 6vw;
}

.head-r-ttl {
  position: relative;
  padding: 0.5em 1em;
  font-size: clamp(1.2rem, 0.829rem + 1.56vw, 2rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.5em;
  overflow: hidden;
  z-index: 2;
  background-color: #7ea760;
  color: #fefefe;
  border-radius: 15px;
}

.head-r-desc {
	background-color: #f1f1eb;
	border-radius: 20px;
	width: 98%;
	max-width: 900px;
	margin: 2em auto 0 auto;
	padding: 1.5em;	
}
.head-r-desc p {
    text-align: center;
    line-height: 1.75em;
	font-size:clamp(1rem, 0.907rem + 0.39vw, 1.2rem);
}

.problem-box {
	position: relative;
	width: 80vw;
	max-width: 890px;	
	padding: 2vw 5vw 4vw 8vw;
	background-color: #fefefe;
	border-radius: 2vw;
	margin: 0 auto;
}
.sec-02 .problem-box {
  background-color: #f6f6f6;
}
.problem-box:before {
	content: "";
	position: absolute;
	left: -6.5vw;
	bottom: -2vw;
	display: inline-block;
	width: 16vw;
	height: 14vw;
	background-image: url("../img/illust.webp");
	background-size: contain;
	z-index: 1;
}

.problem-list > li {
	position: relative;
	padding: 12px 30px 12px 60px;
	border-bottom: 1px solid #e0e0e0;
	font-size:clamp(1.2rem, 0.867rem + 0.71vw, 1.4rem);
	font-weight: 700;
	line-height: 1.35em;
}
.problem-list > li:before {
	content: "";
	position: absolute;
	top: 20px;
	left: 1rem;
	height: clamp(1.2rem, 0.867rem + 0.71vw, 1.4rem);
	width: clamp(1.2rem, 0.867rem + 0.71vw, 1.4rem);
	display: inline-block;
	background-image: url(../img/icon/check.svg);
	background-size: contain;
}
.problem-next{
	margin: 6.25vw auto 0;
	position: relative;
}
.problem-next img{
	width: 100%;
	height: auto;
	object-fit: contain;

}
/*
.problem-next {
	position: relative;
	margin-top: 6.25vw;
	padding: 1.3888888889vw;
	background-color: #f3d723;
	border-color: #fefefe;
	border-style: solid;
	border-width: 0.3vw;
	border-radius: 0.7vw;
	-webkit-box-shadow: 0px 5px 4.75px 0.25px rgba(0, 0, 0, 0.1);
		  box-shadow: 0px 5px 4.75px 0.25px rgba(0, 0, 0, 0.1);
	z-index: 2;
}
.problem-next p {
  font-size: clamp(1.2rem, 0.829rem + 1.56vw, 2rem);
  font-weight: 700;
  text-align: center;
  text-shadow: 0 0 0.2vw #fefefe, 0 0 0.2vw #fefefe, 0 0 0.2vw #fefefe, 0 0 0.2vw #fefefe, 0 0 0.2vw #fefefe, 0 0 0.2vw #fefefe, 0 0 0.2vw #fefefe, 0 0 0.2vw #fefefe, 0 0 0.2vw #fefefe, 0 0 0.2vw #fefefe, 0 0 0.2vw #fefefe, 0 0 0.2vw #fefefe, 0 0 0.2vw #fefefe, 0 0 0.2vw #fefefe, 0 0 0.2vw #fefefe, 0 0 0.2vw #fefefe;
  line-height: 1.35em;
}*/
.problem-next:before {
  content: "";
  position: absolute;
  top: -8vw;
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4.6666666667vw 10vw 0 10vw;
  border-color: #7ea760 transparent transparent transparent;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
			top: -4vw;
		border-width: 2.5vw 5.2vw 0 5.2vw;
}
/*.problem-next::after{
	position: absolute;
	content: '';
	bottom: clamp(-120px,-4.3vw,-60px);
	right: 0;
	background: url("../img/cat05.png")no-repeat bottom right/contain;
	width: clamp(100px,10vw,150px);
	height: clamp(100px,10vw,150px);
}*/
.spimg{
		display: none;
	}
@media all and (max-width: 750px) {
	.problem-box {
		width: 83vw;		
		padding: 2vw 4vw 5vw;
	}
	.problem-list > li {
		font-size:clamp(0.9rem, 0.592rem + 1.3vw, 1.2rem);
		padding: 12px 15px 12px 31px;
	}	
	.problem-list > li:before {
		top: 15px;
		left: 1vw;
		height: clamp(0.9rem, 0.592rem + 1.3vw, 1.2rem);
		width: clamp(0.9rem, 0.592rem + 1.3vw, 1.2rem);
	}	
	.problem-box:before {
		left: -4vw;
		bottom: -22.5vw;
		width: 31vw;
		height: 27.6vw;
	}	
	.problem-next {
		margin-top: 21vw;
		padding: 5vw 4vw;
		border-width: 0.5vw;
		border-radius: 2vw;
	}	
	/*.problem-next p {
		text-shadow: 0 0 0.8vw #fefefe, 0 0 0.8vw #fefefe, 0 0 0.8vw #fefefe, 0 0 0.8vw #fefefe, 0 0 0.8vw #fefefe, 0 0 0.8vw #fefefe, 0 0 0.8vw #fefefe, 0 0 0.8vw #fefefe, 0 0 0.8vw #fefefe, 0 0 0.8vw #fefefe, 0 0 0.8vw #fefefe, 0 0 0.8vw #fefefe, 0 0 0.8vw #fefefe, 0 0 0.8vw #fefefe, 0 0 0.8vw #fefefe, 0 0 0.8vw #fefefe;
		line-height: 1.35em;
	}	*/
	.problem-next:before {
		top: -8vw;
		border-width: 4.5vw 10vw 0 10vw;
	}

}
@media all and (max-width: 599px) {
	.pcimg{display: none;}
	.spimg{
		display: block;
	}
	
}
@media all and (max-width: 450px) {
	.head-r-desc p {
		text-align: left;
	}
	.head-r-desc p .ib{
		display: inline!important;
	}
}
.reform_list li{
	display: flex;
	justify-content: space-between;
	margin-bottom: 50px;
}

.reform_list .image{
	width: 43%;
	max-width: 420px;
}
.reform_list .content{
	width: 55%;
}
.reform_list .content .l_ttl{
    position: relative;
    margin-bottom: 1em;
    padding:.5rem .8rem 0.8rem;	
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5em;
}

.reform_list .content .l_ttl:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background-color: #f3d723;
  border-radius: 0.5333333333vw;
}
@media(max-width:768px){
	.reform_list li{
		display: flex;
		flex-direction: column
	}	
		.reform_list li.rever{
		flex-direction: column-reverse;
	}
	.reform_list .image{
		width: 100%;
		max-width: 580px;
		margin: 0 auto 20px;
	}
	.reform_list .content{
		width: 100%;
	}	
}


.ttl_cat{
	position: absolute;
	content: '';
	width: clamp(80px,8vw,120vw);
	aspect-ratio: 1 / 1;
	bottom:-10px;
	right: 1%;
	
}
.ttl_cat img{
	width: 100%;
	height: auto;
	object-fit: contain;
	aspect-ratio: 1 / 1;
}

.cat02{
	position: absolute;
	content: '';
	width: 80%;
	max-width: 500px;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
}
.cat02 img{
	width: 100%;
	object-fit: contain;
}
/*==========================================================================

==============================*/












/*==========================================================================
 お問い合わせ
==============================*/
.border{
	height: 40px;
	width: 100%;
	background: #3c491e;
}

.mail_s {
	padding-bottom: 70px;
}
.mnote {
	max-width: 920px;
	margin: auto;
	margin-top: 50px;
}
.mpdb {
	padding-bottom: 45px !important;
	margin-bottom: 0 !important;
}
@media(max-width:550px) {
	.mnote {
		margin-top: 30px;
	}
	.mpdb {
		padding-bottom: 35px !important;
	}
}
.formsel p {
	display: inline-block;
	margin-right: 10px;
	font-size: 0.95rem;
}
.formsel p:last-child {
	margin-bottom: 0;
}
@media (max-width: 450px) {
	.formsel p {
		display: block;
		margin-right: 0;
	}
}
.mailform {
	max-width: 1100px;
	margin: 40px auto 0;
}
@media (max-width: 550px) {
	.mailform {
		margin-top: 20px;
	}
}
.mailform .row {
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
}
.mailform .row:not(.last) {
	border-bottom: 0.9px dotted #333;
}
.mailform .row div {
	text-align: left;
}
.mailform .row div:nth-child(1) {
	width: 28%;
	font-size: 0.9rem;
}
.mailform .row div:nth-child(2) {
	width: 70%;
	line-height: 1.5;
}
.mailform .row span {
	color: #fff;
	background: #3c491e;
	padding: 5px;
	margin-right: 5px;
	font-size: 11px;
}
.mailsp {
	background: #fff !important;
	border: 1px solid #3c491e;
	color: #3c491e !important;
}
.mailform .row small {
	display: block;
	margin-top: 3px;
}
.mailform label {
	color: #333;
}
.mailform .box, .mailform textarea {
	border: 1px solid #ddd;
	padding: 5px;
	width: 100% !important;
	border-radius: 0;
	-webkit-appearance: none;
	margin-bottom: 5px;
	background: #fff;
}

.mailform button {
	left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 800px) {
	.mailform .row {
		padding: 20px 0;
		flex-direction: column;
	}
	.mailform .row div:nth-child(1) {
		width: 100%;
		margin-bottom: 20px;
	}
	.mailform .row div:nth-child(2) {
		width: 100%;
	}
	.mailform .row:first-child {
		padding-top: 5px;
	}
}
@media (max-width: 550px) {
	.mail_s {
		padding: 40px 0 33px;
	}
	.mail_s .maintitle {
		margin-bottom: 30px !important;
	}

	.selection small {
		font-size: 0.8rem;
	}
}
/*checkbox*/
.mailform input[type=checkbox] {
	display: none;
}
.mailform input[type=checkbox] + label {
	display: inline-block;
	padding-left: 20px;
	position: relative;
	margin-right: 1.5%;
	margin-bottom: 10px;
	cursor: pointer;
}
.mailform input[type=checkbox] + label::before {
	background: #fff;
	border: 1px solid #b5b5b5;
	content: '';
	display: block;
	position: absolute;
	top: 55%;
	transform: translate(0, -50%);
	left: 0;
	width: 15px;
	height: 15px;
	border-radius: 3px;
}
.mailform input[type=checkbox] + label::after {
	border-right: 3px solid #3c491e;
	border-bottom: 3px solid #3c491e;
	content: '';
	display: block;
	height: 13px;
	width: 7px;
	opacity: 0;
	position: absolute;
	top: 25%;
	left: 4px;
	transform: rotate(45deg);
	transition: .1s;
}
.mailform input[type=checkbox]:checked + label::after {
	opacity: 1;
}
@media (max-width: 550px) {
	.mailform input[type=checkbox] + label {
		display: block;
	}
}
/*プライバシーポリシー*/
.privacy {
	padding-top: 0 !important;
}
.privacy::after {
	height: 150%;
}
.privacy_wrap {
	font-size: clamp(1.1rem, 0.92rem + 0.64vw, 1.4rem);
	color: #333;
	margin: 0 auto;
	max-width: 1100px;
	border-bottom: 2px solid #3c491e;
}
.privacy_item {
	position: relative;
	width: 100%;
	margin: 0 auto;
	cursor: pointer;
	padding: 0 10px;
}
.privacy_header {
	transition: ease-in-out 100ms;
	font-family: 'Zen Maru Gothic', sans-serif;
	font-weight: 500;
}
.privacy_header i {
	color: #3c491e;
}
.privacy_text {
	width: 100%;
	display: none;
	padding: 20px 35px 30px;
	line-height: 1.7;
	font-size: 0.95rem;
	font-weight: 500;
}
.privacy_text span {
	font-weight: 500;
}
@media(max-width:750px) {
	.privacy_text {
		padding: 20px 15px 30px;
	}
}
.privacy_text p {
	margin-bottom: 17px;
}
.arrow {
	transition: ease-in-out 300ms;
}
.rotate-fa {
	transform: rotate(180deg);
}
.privacy_header span {
	position: absolute;
	top: 50%;
	right: 3%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
.privacy_gold {
	color: #3c491e;
}

.cat_cta{
	position: absolute;
	content: '';
	width: 60vw;
	max-width: 450px;
	aspect-ratio: 86 / 55;
	top: 2vw;
	right: 1vw;
}
.cat_cta img{
	width: 100%;
	object-fit: contain;
}


/*thanks*/
.thanksbox{
	border: 8px solid #fce300;
	padding: 4rem 1rem;
	text-align: center;
}
.thanksbox h3{
	font-size: clamp(1.5rem, 1.037rem + 1.95vw, 2.5rem);
	margin-bottom: 30px;
	line-height: 1.4;
}
.red{
	color: #FF3135;
	font-size: 90%;
}

@media(max-width:500px) {
	.thanksbox{
		text-align: left;
	}
}