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


body{
	color: #404745;
	background-color: #EF9F2D;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height: 1.9;
	font-size: 1.6rem;
	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: #404745;
	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 1300ms, transform 1200ms;
	transition-delay: 350ms;
}
.flowup.inview{
	opacity: 1;
	transform: translateY(0);
}

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

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

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


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



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

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

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

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



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


.br_650.marker{
	background: none;
}

.inner{
	width: 90%;
	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;
}

main{
	width: 100%;
}


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

.w100{
	width: 100%;
}



/*改行*/

.br_960{
}

.br_650{
}

.br_none650{
	display: block;
}

.br_none1200{
	display: block;
}

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

@media (max-width: 1020px){
	.br_1200{
		display: block;
	}
	.br_none1200{
		display: inline;
	}
}

@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;
    }
	.br_none650{
		display: inline;
	}
	body{
		font-size: 1.3rem;
	}
}



@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.06em;
}

i{
	padding-right: 0.4em;
}

.en{
	font-family: "Cinzel", serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
}

.hikki{
	font-family: "Pinyon Script", cursive;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 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;
	width: 240px;
	margin-top: 40px;
	background-color: #fff;
	transition: all .3s;
	font-size: 1.8rem;
	transform: translate(0,0);
	border-radius: 34px;
}

.m_btn a{
	position: relative;
	display: block;
	letter-spacing: 0.05em;
	padding-right: 48px;
	padding: 15px 0;
	padding-left: 28px;
	color: #EF9F2D;
	border: solid 2px #EF9F2D;
	border-radius: 34px;
	box-shadow: 4px 4px 0px 0px #fbe2bf;
}

.m_btn a:hover{
	box-shadow: 0px 0px 0px 0px #fbe2bf;
}
.m_btn:hover{
	transform: translate(4px,4px);
}

.m_btn a::before{
	content: "";
	display: inline-block;
	position: absolute;
	border: solid 2px #EF9F2D;
	aspect-ratio: 1 / 1;
	width: 30px;
	border-radius: 50%;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	transition: all .3s;
}

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

.m_btn a:hover::before{
	background-color: #EF9F2D;
}

.m_btn a .arrow{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/arrow_w.png);
	background-size: cover;
	background-position: center;
	aspect-ratio: 1 / 1;
	width: 20px;
	top: 50%;
	right: 24px;
	transform: translateY(-50%);
	opacity: 0;
	z-index: 2;
	transition: all .3s;
}

.m_btn a:hover .arrow{
	opacity: 1;
}



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


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

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

.center{
	text-align: center;
}


.b_wrap{
	position: relative;
	background-color: #fff;
	z-index: 1;
	width: calc(100% - 40px);
	margin: 20px auto;
	border-radius: 15px;
}

.bg_dot{
	background-color: #fff;
	background-image:
	  radial-gradient(#f5f5f5 20%, transparent 20%);
	background-size: 14px 14px;
  }



/* sub_ttl */


.sub_ttl{
	position: relative;
	font-family: "mamelon", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 3.8rem;
	line-height: 1.6;
	color: #222;
	margin-bottom: 30px;
	letter-spacing: -0.03em;
}

.sub_ttl::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: linear-gradient(120deg,rgba(239, 159, 45, 1) 0%, rgba(255, 231, 92, 0.7) 100%);
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	width: 20px;
	top: 0px;
	left: -10px;
	z-index: -1;
}





/* fv */

.fv{
	position: relative;
	padding-top: 40px;
}

.catch{
	position: absolute;
	top: 53%;
	left: 8%;
	transform: translateY(-50%);
	z-index: 10;
	width: 70%;
	max-width: 800px;
}

.top_slider{
	position: relative;
	z-index: 5;
	height: calc(96vh - 130px);
	width: 91%;
	margin: 0 auto;
	min-height: 400px;
	margin-top: 70px;
	background-color: #fbe2bf;
	border-radius: 20px;
}
.top_slider .slider{
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0 0 0 auto;
	z-index: 2;
}
.top_slider .slider li{
	width: 100%;
	height: 100%;
	background-size: cover;
	margin: 0;
	border-radius: 20px;
}


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






/* header */



.color_area{
	position: fixed;
	top: 0;
	width: 100%;
	height: 40px;
	background-color: #EF9F2D;
	left: 0;
	z-index: 98;
}

header{
	width: calc(100% - 40px);
	position: fixed;
	top: 20px;
	left: 20px;
	height:110px;
	z-index: 99;
	background-color: #fff;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
}

h1 img{
	height: 64px;
}

h1 a{
	display: block;
}

h1 a:hover{
	opacity: 0.75;
}

.hd_inner{
	padding-left: 5%;
	padding-right: 5%;
}

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

.main_nav li a{
	position: relative;
	letter-spacing: 0.04em;
	display: block;
	padding: 0 3px;
	overflow: hidden;
}

.main_nav li a::before{
	content: "";
	display: inline-block;
	position: absolute;
	height: 2px;
	width: 100%;
	background-color: #EF9F2D;
	bottom: 0;
	left: 0;
	z-index: 0;
	transform: translateX(-100%);
	transition: all.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.main_nav li a:hover::before{
	transform: translateX(0);
}

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

.co_btn{
	position: relative;
	width: 150px;
	margin-left: 30px;
}

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

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

.co_btn .ac_txt{
	font-size: 1.3rem;
	position: absolute;
	top: -24px;
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
	font-weight: 700;
}



@media (max-width: 1200px){
	.main_nav{
		display: none;
	}
	header .co_btn{
		display: none;
	}
	.top_slider{
		height: calc(82vh - 130px);
	}
	.catch{
		top: 56%;
	}
}


@media (max-width: 650px){
	h1 img{
		height: 50px;
	}
	header{
		height: 80px;
		top: 10px;
		width: calc(100% - 20px);
		left: 10px;
	}
	.b_wrap{
		margin: 10px auto;
		width: calc(100% - 20px);
	}
	.fv{
		padding-top: 20px;
	}
	.top_slider{
		margin-top: 60px;
		width: 94%;
		height: calc(70vh - 130px);
	}
	.catch{
		width: 86%;
		left: 10px;
	}
}




/* aboutus */


.aboutus{
	position: relative;
	z-index: 2;
}

.aboutus::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #fbe2bf;
	top: -200px;
	right: 0;
	width: 30%;
	aspect-ratio: 3 / 2;
	z-index: 0;
	border-bottom-left-radius: 20px;
}

.aboutus .ac_ill{
	position: absolute;
	bottom: 50px;
	right: 60px;
	width: 200px;
}

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

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

.aboutus .inner{
	margin-left: 0;
	width: 95%;
}

.aboutus .left{
	position: relative;
	width: 48%;
}

.aboutus .right{
	width: 55%;
	justify-content: center;
	padding-top: 80px;
}

.aboutus .left img{
	height: 700px;
	object-fit: cover;
	width: 100%;
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
	border: solid 2px #000;
	border-left: 0px;
}

.aboutus .left::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #fbe2bf;
	bottom: -100px;
	left: 0;
	width: 120%;
	height: 180px;
	z-index: -1;
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
}

.aboutus .top_img{
	width: 32%;
	margin: 0 0 0 auto;
}

.aboutus .top_img img{
	width: 100%;
	aspect-ratio: 9 / 5;
	object-fit: cover;
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
}



@media (max-width: 1200px){
	.aboutus .flex_bet{
		flex-direction: column;
	}
	.aboutus .left{
		width: 80%;
	}
	.aboutus .left img{
		height: 420px;
	}
	.aboutus .right{
		width: 80%;
	}
	.aboutus .ac_ill{
		right: 30px;
		width: 170px;
	}
	.aboutus .left::before{
		bottom: -30px;
	}
	.aboutus{
		padding-top: 80px;
	}
}

@media (max-width: 650px){
	.aboutus .left{
		width: 100%;
	}
	.aboutus .left img{
		height: 210px;
	}
	.aboutus .left::before{
		width: calc(100% + 10px);
		bottom: -10px;
	}
	.aboutus .right{
		width: 100%;
		padding-top: 45px;
		width: 90%;
		margin: 0 auto;
	}
	.sub_ttl{
		font-size: 2.6rem;
		margin-bottom: 20px;
	}
	.aboutus .ac_ill{
		width: 120px;
		bottom: -20px;
	}
	.m_btn{
		font-size: 1.6rem;
		margin-top: 25px;
	}
	.aboutus {
		padding-top: 60px;
	}
}



/* service */


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

.service::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #fbe2bf;
	height: 200px;
	width: 35%;
	right: 0;
	top: 500px;
	z-index: -1;
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
}

.service .sub_ttl .marker{
    background: linear-gradient(90deg,transparent 55%, rgb(235, 252, 4, 0.6) 55%);
}


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

.service .left{
	width: calc(88% - 130px);
}

.service .right{
	width: 130px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.service .left .img img{
	width: 100%;
	object-fit: cover;
	height: 500px;
	border-radius: 20px;
	border: solid 2px #000;
}

.service .fir{
	position: relative;
	width: fit-content;
	margin: 100px auto;
	background-color: #fbe2bf;
	border-radius: 15px;
	padding: 45px 60px;
	font-size: 1.8rem;
}
.service .fir .ac{
	display: block;
}

.service .fir .ac_ill{
	position: absolute;
	top: -120px;
	left: -250px;
	width: 140px;
	transform: scale(-1,1);
}


.service .ac{
	font-size: 1.2em;
	margin: 25px 0;
	font-weight: bold;
	color: #000;
}

.service .ch{
	display: block;
	margin-left: 24px;
}

.service h4{
	font-size: 2.2rem;
	letter-spacing: 0.04em;
	margin-bottom: 15px;
	line-height: 1.4;
	font-weight: 600;
	margin-top: 10px;
}

.service .num{
	position: relative;
	padding-left: 20px;
	color: #EF9F2D;
}

.service .num::before{
	content: "";
	display: inline-block;
	position: absolute;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	top: 55%;
	left: 0;
	width: 14px;
	border: dashed 2px #EF9F2D;
	transform: translateY(-50%);
}



.service .item_area{
	position: relative;
	flex-wrap: wrap;
	gap: 40px;
}

.service .item_area .husen{
	position: absolute;
	bottom: -170px;
	left: 0;
	width: 90px;
	z-index: 0;
	transform: rotate(8deg);
}

.service .item{
	border: solid 2px #EF9F2D;
	padding: 30px 40px;
	border-radius: 20px;
	box-shadow: 6px 6px 0px 0px #fbe2bf;
	height: 260px;
}

.service .item .i_left{
	width: 40%;
}

.service .item .i_left .img{
	height: 100%;
}

.service .item .i_left img{
	border-radius: 10px;
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 3 / 2;
	max-height: 200px;
}

.service .item .i_right{
	width: 55%;
	padding-bottom: 10px;
}

.service .item .i_right p{
	line-height: 1.6;
	font-size: 1.45rem;
}

.service .item{
	width: calc(50% - 20px);
	background-color: #fff;
}

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

.service .sub_ttl::before{
	left: auto;
	right: -4px;
}


@media (max-width: 1200px){
	.service .left .img img{
		height: 400px;
	}
	.service .fir .ac_ill{
		left: -40px;
	}
	.service .item{
		flex-direction: column;
		height: 410px;
		padding: 20px;
		justify-content: flex-start;
	}
	.service .item .i_left{
		width: 100%;
		margin-bottom: 20px;
	}
	.service .item .i_right{
		width: 100%;
	}
}

@media (max-width: 650px){
	.service .right{
		width: 84px;
	}
	.service .left{
		width: calc(92% - 84px);
	}
	.service .left .img img{
		height: 300px;
	}
	.service .fir .ac_ill{
		left: -10px;
		width: 90px;
		top: -80px;
	}
	.service .item{
		width: 100%;
		height: auto;
	}
	.service h4{
		font-size: 1.8rem;
	}
	.service .item .i_right p{
		font-size: 1.3rem;
	}
	.service .item_area{
		gap: 20px;
	}
	.service .item_area .husen{
		width: 50px;
	}
	.service .m_btn{
		margin: 40px auto 0;
	}
	.service .fir{
		font-size: 1.4rem;
		padding: 20px;
		margin-top: 50px;
		margin-bottom: 40px;
	}
	.service .ch{
		display: inline;
		margin: 0;
	}
	.service .ac{
		margin: 10px 0;
		font-size: 1.1em;
	}
	.service::before{
		top: 370px;
		height: 100px;
			border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	}
	
}



/* works */



.works{
	position: relative;
	z-index: 1;
	padding-bottom: 180px;
}

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

.works .wrap{
	border: solid 2px #EF9F2D;
	border-right: 0px;
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
	padding: 100px 0;
	padding-left: 60px;
	box-shadow: -8px 8px 0px 0px #fbe2bf;
	background-color: #fff;
	position: relative;
	z-index: 1;
}

.works .left{
	width: 32%;
}

.works .right{
	width: 65%;
}

.works .line_img{
	position: absolute;
	top: -20px;
	right: 40px;
	transform: translateY(-100%);
}

.works .line_img img{
	height: 100px;
}

@media (max-width: 1200px){
	.works .wrap{
		flex-direction: column;
		padding-top: 70px;
		padding-bottom: 70px;
		padding-left: 0;
	}
	.works .left{
		width: 100%;
		margin-bottom: 50px;
		padding-left: 40px;
		padding-right: 20px;
	}
	.works .right{
		width: 100%;
	}
	.works .line_img img{
		height: 80px;
	}
	.works .line_img{
		right: 10px;
	}
	.works{
		padding-bottom: 140px;
	}
}

@media (max-width: 650px){
	.works .line_img img{
		height: 50px;
	}
	.works .wrap{
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.works{
		padding-bottom: 70px;
	}
}




/* kaigo */


.kaigo{
	position: relative;
	background: linear-gradient(120deg,rgba(239, 159, 45, 0.6) 0%, rgba(255, 231, 92, 0.4) 100%);
	padding: 130px 0 110px;
}

.kaigo::before{
	content: "";
	display: inline-block;
	position: absolute;
	
}


.kaigo .wrap{
	position: relative;
	background-color: #fff;
	padding: 90px 40px;
	border-radius: 15px;
	z-index: 1;
}

.kaigo .wrap .in{
	width: 42%;
	margin: 0 0 0 auto;
}

.kaigo .imgarea{
	position: absolute;
	width: 50%;
	top: 60px;
	left: 0;
	z-index: 2;
}

.kaigo .imgarea img{
	width: 100%;
	aspect-ratio: 3.5 / 2;
	object-fit: cover;
	max-height: 550px;
	min-height: 450px;
	border-top-right-radius: 15px;
	border-bottom-right-radius: 15px;
	box-shadow: 4px 4px 0px 0px #fbe2bf;
}


.kaigo .ac_ill{
	position: absolute;
	bottom: -80px;
	right: 10px;
	width: 220px;
}

@media (max-width: 1200px){
	.kaigo .wrap .in{
		width: 100%;
		margin-top: 260px;
	}
	.kaigo .imgarea{
		width: 80%;
	}
	.kaigo .imgarea img{
		height: 360px;
		max-height: none;
		min-height: auto;
		aspect-ratio: auto;
	}
}

@media (max-width: 650px){
	.kaigo .imgarea img{
		height: 200px;
	}
	.kaigo .wrap .in{
		margin-top: 80px;
	}
	.kaigo .wrap{
		padding-left: 20px;
		padding-right: 20px;
		padding-bottom: 60px;
	}
	.kaigo .ac_ill{
		width: 140px;
		bottom: -50px;
	}
	.kaigo{
		padding-bottom: 60px;
	}
}



/* recruit */


.recruit{
	position: relative;
	padding: 140px 0 170px;
	z-index: 1;
}

.recruit .flag{
	position: absolute;
	top: 0;
	right: 0;
	width: 300px;
}

.recruit .flag02{
	position: absolute;
	top: 0;
	left: 0;
	width: 300px;
	transform: scale(-1,1);
}

.recruit .inner{
	position: relative;
	max-width: 1280px;
}

.recruit .right{
	margin-top: 40px;
}

.recruit .right .txt_box{
	font-size: 1.8rem;
}

.recruit .ac_ill{
	position: absolute;
	bottom: -80px;
	left: 20px;
	width: 250px;
}

@media (max-width: 1200px){
	.recruit .flex_bet{
		flex-direction: column;
	}
	.recruit .right{
		margin-top: 0;
	}
	.recruit .ac_ill{
		left: auto;
		right: 10px;
		bottom: -50px;
	}
	.recruit{
		padding-bottom: 140px;
	}
}

@media (max-width: 650px){
	.recruit .flag{
		width: 49%;
	}
	.recruit .flag02{
		width: 49%;
	}
	.recruit .right .txt_box{
		font-size: 1.3rem;
	}
	.recruit .right .txt_box p{
		display: inline;
	}
	.recruit{
		padding: 100px 0;
	}
	.recruit .ac_ill{
		width: 160px;
		bottom: -80px;
	}
}



/* footer */


.foo_top{
	position: relative;
	z-index: 1;
	background: url(../img/co_bg.jpg);
	background-size: cover;
	background-position-y: 70%;
	padding: 150px 0;
}

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

.foo_top .sub_ttl{
	color: #fff;
}

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

.foo_top .btn a{
	display: block;
	font-size: 2.4rem;
	text-align: center;
	color: #fff;
	height: fit-content;
}
.foo_top .sub_ttl{
	width: fit-content;
	margin: 0 auto;
}

.foo_top .sm{
	font-size: 0.7em;
	margin-right: 10px;
}

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

.foo_top .m_btn{
	width: 280px;
}

.foo_logo img{
	height: 62px;
	padding-right: 10px;
}

.foo_logo{
	margin-bottom: 30px;
}

.foo_btm{
	text-align: center;
	font-size: 1.4rem;
	padding-top: 40px;
}

.foo_logo a{
	display: block;
}

.foo_logo a:hover{
	opacity: 0.75;
}

.copy{
	letter-spacing: 0.15em;
	font-size: 1.35rem;
	margin: 20px 0;
	padding-bottom: 30px;
}


footer .imgarea{
	background: url(../img/co_bg.jpg);
	background-size: cover;
	background-position: bottom;
	width: 100%;
	height: 500px;
}

footer .co_btn{
	margin: 40px auto 0;
	font-size: 1.6rem;
	text-align: left;
}

@media (max-width: 650px){
	.foo_logo img{
		height: 45px;
	}
	.foo_btm{
		font-size: 1.2rem;
	}
	.foo_logo{
		margin-bottom: 20px;
	}
	.copy{
		font-size: 1.2rem;
	}
	footer .imgarea{
		height: 300px;
	}
}





/* page top */

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

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


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

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

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

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




/* 下層トップ */

.kasou_top{
	position: relative;
	padding: 260px 0 160px;
	border-bottom: solid 2px #000;
	background-color: rgb(0, 0, 0,0.6);
}

.kasou_top h2{
	font-size: 4.7rem;
	letter-spacing: 0.03em;
	font-weight: bold;
	color: #fff;
}

.kasou .inner{
	max-width: 1280px;
}

.kasou_top ol{
	margin-top: 10px;
	margin-left: 6px;
	color: #fff;
}

.kasou_top ol li{
	font-size: 1.3rem;
}

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

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

.kasou_top ol li a::before{
	content: "ー";
	display: inline-block;
	position: absolute;
	font-size: 1.2rem;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	color: #fff;
}

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

.kasou_top .bg{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}

.kasou_top .bg img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 650px){
	.kasou_top h2{
		font-size: 3.4rem;
	}
	.kasou_top{
		padding: 180px 0 100px;
	}
	
}





/* 会社案内ページ */



.message{
	position: relative;
}

.message::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #fbe2bf;
	width: 40%;
	aspect-ratio: 3 / 1.6;
	bottom: 0;
	right: 0;
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
	z-index: -1;
}

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

.message .btm p:last-child{
	font-size: 2.8rem;
	margin-top: 0;
	line-height: 1.2;
}

.message .btm p:last-child .mini{
	font-size: 1.6rem;
	display: inline-block;
	margin-right: 10px;
}

.message .txt_box{
	max-width: 520px;
}

.message .txt_box p{
	letter-spacing: 0.15em;
	font-size: 1.5rem;
	line-height: 2.2;
}

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

.message .left{
	width: 47%;
	padding: 50px 0;
}

.message .right{
	width: 47%;
}

.message .right .img{
	width: 100%;
	height: 100%;
	border: solid 2px #222;
}

.message .right .img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.outline .left{
	width: 20%;
}

.outline .right{
	width: 70%;
}

.info_table .map{
	width: 100%;
	height: 260px;
	margin-top: 10px;
}

.info_table{
	width: 100%;
	font-size: 1.5rem;
}

.info_table th{
	width: 25%;
	color: #EF9F2D;
	font-weight: 700;
	letter-spacing: 0.04em;
	border-bottom: solid 1px #EF9F2D;
}

.info_table td{
	width: 75%;
	letter-spacing: 0.07em;
	border-bottom: solid 1px #ccc;
}

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


.contact{
	background-color: #f5f5f5;
}

.contact .top_area{
	text-align: center;
}

.contact .sub_ttl{
	width: fit-content;
	margin: 0 auto 30px;
}

.contact .top_area p a{
	color: #1a0dab;
	text-decoration: underline;
}

.contact .top_area p a:hover{
	opacity: 0.75;
}

#co_mail{
	margin-top: -130px;
	padding-top: 130px;
}

.co_tel .item h5{
	position: relative;
	font-size: 2rem;
	letter-spacing: 0.04em;
	font-weight: 600;
	margin-bottom: 15px;
	padding-bottom: 3px;
	color: #222;
}

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

.co_tel{
	max-width: 1180px;
	margin: 50px auto 0;
	background-color: #fff;
	padding: 50px 60px;
	border-radius: 10px;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.co_tel .item .num{
	font-size: 2.6rem;
	margin-bottom: 5px;
	font-weight: 700;
}

.co_tel .item .mini{
	font-size: 0.8em;
}

.co_tel .item{
	position: relative;
	text-align: center;
	width: 47%;
	padding-top: 10px;
	border: solid 2px #EF9F2D;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 4px 4px 0px 0px #fbe2bf;
	transition: all .3s;
}

.co_tel .item:hover{
	box-shadow: 0px 0px 0px 0px #fbe2bf;
	transform: translate(4px,4px);
	opacity: 0.75;
}

.co_tel .item a{
	position: relative;
	display: block;
	padding: 30px;
	padding-top: 20px;
	z-index: 1;
}

.co_tel .item .sh_img{
	position: absolute;
	top: -20px;
	right: -20px;
	z-index: 0;
	width: 90px;
	pointer-events: none;
}


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

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


input{
	appearance: auto;
}


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

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

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

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

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

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

.contact_table{
	width: 100%;
}

.contact_table .ib td div{
	display: inline;
}

.contact_table .ib td div+div{
	margin-left: 20px;
}

.contact_table th span,.form_attention span{
	padding: 2px 0;
	margin-right: 10px;
	font-size: 1.3rem;
}


.contact_table th span.ac,.form_attention span.ac{
	background-color: #EF9F2D;
	padding: 4px 8px 3px;
	color: #fff;
}

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

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

.contact_table td{
	padding: 20px 0;
	width: 70%;
	border-bottom: dotted 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: #EF9F2D;
	border: solid 2px #EF9F2D;
	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: #EF9F2D;
	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.4rem;
	letter-spacing: 2px;
	padding: 0.8% 1%;
	display: block;
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.1em;
	background-color: #fff;
	border-radius: 30px;
	border: solid 1px #222;
}

.Label::before{
	content: "";
	width: 8px;
	height: 8px;
	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{
	max-width: 1180px;
	margin: 50px auto 0;
	background-color: #fff;
	padding: 50px 60px;
	border-radius: 10px;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.contact .l_ttl{
	margin-bottom: 40px;
	font-size: 2.2rem;
	letter-spacing: 0.03em;
	font-weight: 700;
	border-left: solid 4px #EF9F2D;
	padding-left: 10px;
	line-height: 1.6;
}


@media (max-width: 1200px){
	.message .flex_bet{
		flex-direction: column-reverse;
	}
	.message .left{
		width: 100%;
		padding: 0;
		margin-top: 50px;
	}
	.message .right{
		width: 100%;
	}
	.message .txt_box{
		max-width: none;
	}
	.outline .flex_bet{
		flex-direction: column;
	}
	.outline .left{
		width: 100%;
	}
	.outline .right{
		width: 100%;
	}
	.contact .flex_bet{
		flex-direction: column;
	}
	.co_tel .item{
		width: 100%;
	}
	.co_tel .item+.item{
		margin-top: 30px;
	}
	.contact_table th{
		display: block;
		width: 100%;
		padding-bottom: 0;
		border-bottom: 0px;
	}
	.contact_table td{
		display: block;
		width: 100%;
	}
	.co_tel{
		padding: 50px 40px;
	}
	.mail_sec{
		padding: 50px 40px;
	}
	.message::before{
		bottom: 60px;
	}
	
}


@media (max-width: 650px){
	.message .right .img img{
		height: 220px;
	}
	.message .txt_box p{
		font-size: 1.35rem;
	}
	.message::before{
		border-top-left-radius: 10px;
		border-bottom-left-radius: 10px;
	}
	.message .btm p:last-child{
		font-size: 2.2rem;
	}
	.message::before{
		bottom: 0;
	}
	.info_table{
		font-size: 1.35rem;
	}
	.contact .l_ttl{
		font-size: 1.8rem;
		margin-bottom: 25px;
	}
	.co_tel .item h5{
		font-size: 1.8rem;
	}
	.co_tel{
		padding: 30px 20px;
	}
	.co_tel .item .sh_img{
		width: 70px;
	}
	.co_tel .item .num{
		font-size: 2.2rem;
	}
	.mail_sec{
		margin-top: 30px;
		padding: 30px 20px;
	}
	.contact_table .ib td div{
		display: block;
	}
	.contact_table .ib td div+div{
		margin-left: 0;
	}
	.info_table th{
		width: 30%;
	}
	.info_table td{
		width: 70%;
	}
	.info_table .map{
		height: 200px;
	}
	textarea{
		font-size: 1.3rem;
	}
	#co_mail{
		margin-top: -100px;
		padding-top: 100px;
	}
}





/* 建設事業ページ */


.ser_top .left{
	width: 35%;
}

.ser_top .right{
	width: 65%;
}

.ser_top .right .txt_box{
	max-width: 580px;
	margin: 0 0 0 auto;
}

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

.ser_top .ac_ill{
	position: absolute;
	bottom: 0;
	left: 40px;
	width: 180px;
	transform: scale(-1,1);
}

.ser_list h4{
	font-size: 3rem;
	margin-bottom: 15px;
	color: #222;
}

.ser_list .box h5{
	border-bottom: solid 1px #ccc;
	font-size: 1.6rem;
	margin-bottom: 5px;
	letter-spacing: 0.04em;
}

.ser_list .box{
	font-size: 1.4rem;
}

.ser_list .box+.box{
	margin-top: 10px;
}

.ser_list .num{
	color: #EF9F2D;
	font-weight: bold;
}

.ser_list .top_area{
	margin-bottom: 20px;
}

.ser_list .top_area p{
	font-size: 1.5rem;
}

.ser_list .left{
	width: 47%;
}

.ser_list .right{
	width: 47%;
	padding: 25px 0;
}
.ser_list .left .img{
	height: 100%;
	width: 100%;
}

.ser_list .left .img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: solid 2px #222;
}

.ser_list .item+.item{
	margin-top: 100px;
}


.safety {
	position: relative;
	color: #fff;
}

.safety::before{
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	right: 0;
	background-color: #fbe2bf;
	width: 40%;
	max-width: 400px;
	height: 300px;
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
}

.safety .ac_ill{
	position: absolute;
	top: -20px;
	right: 0;
	width: 60%;
	max-width: 600px;
}

.safety h3{
	font-size: 2.6rem;
	letter-spacing: 0.04em;
	margin-bottom: 15px;
	font-weight: 600;
}

.safety .inner{
	position: relative;
	text-align: center;
	background: url(../img/mono.jpg);
	background-size: cover;
	background-position: center;
	padding: 100px 0;
	border-radius: 20px;
}

.safety .inner::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: rgb(34, 34, 34,0.75);
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	border-radius: 20px;
}

.safety .txt_box p{
	font-size: 1.5rem;
}

.safety .wrap{
	position: relative;
	z-index: 1;
	padding: 0 20px;
}


@media (max-width: 1200px){
	.ser_top .flex_bet{
		flex-direction: column;
	}
	.ser_top .left{
		width: 100%;
	}
	.ser_top .right{
		width: 100%;
	}
	.ser_top .right .txt_box{
		max-width: none;
	}
	.ser_list .flex_bet{
		flex-direction: column;
	}
	.ser_list .left{
		width: 100%;
	}
	.ser_list .right{
		width: 100%;
		padding: 0;
		margin-top: 30px;
	}
	.ser_list .left .img img{
		height: 420px;
	}
	.ser_list{
		padding-bottom: 0;
	}
	.safety .inner{
		padding: 80px 0;
	}
	.ser_top .ac_ill{
		bottom: -40px;
		width: 140px;
	}
	.safety .ac_ill{
		top: 20px;
	}
}


@media (max-width: 650px){
	.ser_list .left .img img{
		height: 200px;
	}
	.ser_list h4{
		font-size: 2rem;
	}
	.ser_list .top_area p{
		font-size: 1.35rem;
	}
	.ser_list .item+.item{
		margin-top: 50px;
	}
	.safety h3{
		font-size: 2rem;
	}
	.safety .txt_box{
		text-align: left;
	}
	.safety .txt_box p{
		font-size: 1.35rem;
	}
	.safety .inner{
		padding: 60px 0;
	}
	.safety .txt_box p+p{
		margin-top: 15px;
	}
	.ser_top .ac_ill{
		width: 80px;
	}
}




/* 施工実績ページ */


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

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

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

.p_works li .thumbnail{
	display: inline-block;
	margin-bottom: 10px;
	border-radius: 10px;
	overflow: hidden;
}

.p_works li .up_ymd{
	display: block;
	font-weight: bold;
	letter-spacing: 0.04em;
	color: #555;
	margin-bottom: 5px;
}

.p_works li .title{
	display: inline-block;
	font-size: 1.5rem;
	color: #222;
}

.p_works li a{
	display: block;
}

.p_works li a:hover img{
	transform: scale(1.08);
}



.gallery .gap_area{
	flex-wrap: wrap;
	gap: 40px;
}

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

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

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

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

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

.k_detail .wrapper{
	width: 100%;
}

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

@media (max-width: 650px){
	.p_works li{
		width: calc((100% - 20px) / 2);
	}
	.p_works ul.gap_area{
		gap: 20px;
	}

	.gallery .item{
		width: calc((100% - 20px) / 2);
	}
	.gallery .gap_area{
		gap: 30px 20px;
	}
	.gallery .mtitle{
		font-size: 2rem;
	}.gallery_wrapper+.gallery_wrapper{
	margin-top: 30px;
}
}


/* 介護事業ページ */


.p_kaigo .inner{
	position: relative;
}

.p_kaigo .ac_ill{
	position: absolute;
	bottom: -180px;
	right: 0;
	width: 180px;
}

.p_kaigo .br_pad{
	display: none;
}

.k_care .btn_area{
	padding-top: 150px;
}

.k_care .btn_area a{
	display: block;
    text-align: center;
    font-size: 2rem;
    background-color: #fbe2bf;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 16px 0;
    color: #222;
}

.k_care .btn_area a:hover{
	background-color: #EF9F2D;
}

.k_care .btn_area .btn{
	width: 500px;
}

.k_care .btn_area .btn+.btn{
	margin-left: 5px;
}

.care_sec .top_img img{
	width: 100%;
	object-fit: cover;
	border: solid 5px #32f8fd;
	border-radius: 20px;
}

.care_sec.hinata .top_img img{
	border: solid 5px #FC0FC0;
}

.care_sec h4{
	position: relative;
	font-size: 2.2rem;
	padding: 6px 0;
	padding-left: 20px;
	border: solid 2px #32f8fd;
	border-radius: 5px;
	letter-spacing: 0.05em;
	margin-bottom: 40px;
}

.care_sec h4::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #32f8fd;
	height: 2px;
	width: 20px;
	top: 50%;
	left: -10px;
	transform: translateY(-50%);
}

.care_sec.hinata h4{
	border: solid 2px #FC0FC0;
}

.care_sec.hinata h4::before{
	background-color: #FC0FC0;
}

.care_sec .wrap{
	margin-top: 80px;
}

.care_sec .top_img{
	margin-bottom: 60px;
}

.care_sec .top_img img{
	height: 500px;
	width: 100%;
	object-fit: cover;
}

.care_sec .txt_box p{
	line-height: 2.2;
	letter-spacing: 0.15em;
	font-weight: 600;
}


.care_sec .wrap ul li{
	width: calc(98% / 3);
	background-color: #f5f5f5;
	padding: 20px;
}

.care_sec .wrap ul li span{
	display: block;
}

.care_sec .wrap ul li .ttl{
	font-size: 1.8rem;
	font-weight: 600;
	color: #222;
	line-height: 1.5;
	margin-bottom: 10px;
	margin-top: 10px;
}

.care_sec .wrap ul li .txt{
	font-size: 1.5rem;
	line-height: 1.5;
}

.care_sec .wrap ul li .icon{
	width: 120px;
	margin: 0 auto;
}

.care_sec .l_ttl{
	font-size: 1.8rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	border-left: solid 3px #EF9F2D;
	line-height: 1.5;
	padding-left: 7px;
	margin-bottom: 10px;
}

.care_sec .ch_box{
	margin-top: 30px;
}

.care_sec .ch_list li{
	position: relative;
	padding-left: 20px;
	font-size: 1.5rem;
	letter-spacing: 0.04em;
}

.care_sec .ch_list 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: 50%;
	left: 10px;
	transform: translateY(-50%);
}

.care_sec h6{
	position: relative;
	border-bottom: solid 1px #ccc;
	letter-spacing: 0.04em;
	margin-top: 5px;
	margin-bottom: 10px;
	padding-bottom: 3px;
	padding-left: 20px;
}

.care_sec h6::before{
	content: ">";
	display: inline-block;
	position: absolute;
	aspect-ratio: 1 / 1;
	font-size: 1.8rem;
	width: 18px;
	top: 46%;
	left: 0;
	transform: translateY(-50%);
}

.care_sec .wrap ul.ch_list li{
	padding: 10px 0;
	padding-left: 30px;
}

.fee_table{
	width: 100%;
	border-bottom: solid 1px #aaa;
	font-size: 1.5rem;
}

.fee_table th{
	border-left: solid 1px #aaa;
	border-right: solid 1px #aaa;
	border-top: solid 1px #aaa;
	padding: 10px 0;
	background-color: #fbe2bf;
}

.fee_table td{
	border-top: solid 1px #aaa;
	border-right: solid 1px #aaa;
	padding: 10px 0;
}

.fee_table tbody th{
	width: 26%;
	padding-left: 10px;
}

.fee_table tbody td{
	width: 37%;
}

.fee_table thead th{
	text-align: center;
}

.fee_table td{
	text-align: center;
}

.care_sec .wrap ul.policy_list li{
	position: relative;
	width: 100%;
	background-color: unset;
	border-top: solid 1px #ccc;
}

.care_sec .wrap ul.policy_list li:last-child{
	border-bottom: solid 1px #ccc;
}

.care_sec .wrap ul.policy_list li::before {
    content: "";
    display: inline-block;
    position: absolute;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    top: 52%;
    left: 0;
    width: 14px;
    border: dashed 2px #EF9F2D;
    transform: translateY(-50%);
}


@media (max-width: 1200px){
	.p_kaigo .br_pad{
		display: block;
	}
	.care_sec .top_img img{
		height: 360px;
	}
	.hinata{
		padding-top: 0;
	}
	.care_sec .ch_list{
		flex-direction: column;
	}
	.care_sec .wrap ul.ch_list li{
		width: 100%;
	}
	.care_sec .wrap ul.ch_list li+li{
		margin-top: 5px;
	}
	.care_sec .wrap ul li .ttl{
		font-size: 1.6rem;
	}
	.flor .flex_bet{
		flex-direction: column;
	}
	.flor .img{
		text-align: center;
		margin-bottom: 40px;
	}
}

@media (max-width: 650px){
	.p_kaigo .ac_ill{
		width: 100px;
		bottom: -100px;
	}
	.k_care .btn_area .flex_center{
		flex-direction: column;
	}
	.k_care .btn_area .btn{
		width: 100%;
	}
	.k_care .btn_area .btn+.btn{
		margin-left: 0;
		margin-top: 5px;
	}
	.k_care .btn_area a{
		font-size: 1.5rem;
	}
	.k_care .btn_area{
		padding-top: 80px;
	}
	.care_sec .top_img img{
		height: 210px;
	}
	.care_sec .top_img{
		margin-bottom: 30px;
	}
	.care_sec h4{
		font-size: 1.8rem;
	}
	.care_sec .wrap{
		margin-top: 50px;
	}
	.care_sec ul{
		flex-direction: column;
	}
	.care_sec .ch_list li{
		font-size: 1.3rem;
	}
	.care_sec .ch_list li::before{
		width: 13px;
	}
	.care_sec .wrap ul li{
		width: 100%;
		padding: 10px 20px;
	}
	.care_sec .wrap ul li .icon{
		width: 80px;
	}
	.care_sec .wrap ul li+li{
		margin-top: 5px;
	}
	.care_sec .wrap ul li .txt{
		font-size: 1.3rem;
	}
	.fee_table{
		font-size: 1.35rem;
	}
}




/* 採用情報ページ */


.depart .item p.num{
	position: relative;
	font-size: 3.4rem;
	line-height: 1;
	font-weight: bold;
	color: #EF9F2D;
	width: fit-content;
	letter-spacing: normal;
	margin-bottom: 20px;
}

.depart .item h3{
	font-size: 3rem;
	letter-spacing: 0.04em;
	margin-bottom: 25px;
}

.depart .item p.num::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/hukidasi.png);
	background-size: cover;
	background-position: center;
	aspect-ratio: 1 / 1;
	width: 70px;
	top: 50%;
	left: 52%;
	transform: translate(-50%,-50%);
}

.depart .l_ttl{
	margin-bottom: 10px;
	font-size: 1.8rem;
	letter-spacing: 0.03em;
	font-weight: 700;
	border-left: solid 4px #EF9F2D;
	padding-left: 10px;
	line-height: 1.6;
}

.depart .list_box+.list_box{
	margin-top: 30px;
}

.depart .left{
	width: 47%;
}

.depart .right{
	width: 47%;
}

.depart .left .img{
	width: 100%;
	height: 100%;
}

.depart .left .img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: solid 2px #000;
}

.depart .ttl_area{
	margin-bottom: 50px;
}

.depart .item+.item{
	margin-top: 100px;
	border-top: solid 3px #ccc;
	padding-top: 100px;
}



.depart::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #fbe2bf;
	width: 40%;
	max-width: 400px;
	height: 200px;
	top: 0;
	right: 0;
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
	z-index: -1;
}

.depart::after{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #fbe2bf;
	width: 40%;
	max-width: 400px;
	height: 200px;
	bottom: 0;
	left: 0;
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
	z-index: -1;
}

.depart .ac_ill{
	position: absolute;
	top: 40px;
	right: 40px;
	width: 140px;
}
.depart .ac_ill02{
	position: absolute;
	bottom: 0;
	left: 40px;
	width: 80px;
}


.bosyu h4{
	font-size: 2.8rem;
	letter-spacing: 0.03em;
	font-weight: 600;
	border-left: solid 4px #EF9F2D;
	line-height: 1.3;
	padding-left: 8px;
	margin-bottom: 30px;
}

.bosyu .item{
	padding: 50px;
	border: solid 2px #EF9F2D;
	border-radius: 20px;
    box-shadow: 6px 6px 0px 0px #fbe2bf;
	background-color: #fff;
}
.bosyu .item+.item{
	margin-top: 50px;
}

.bosyu .btn_area{
	margin-bottom: 40px;
}

.bosyu .btn_area a{
	display: block;
	text-align: center;
	font-size: 2rem;
	background-color: #fbe2bf;
	font-weight: 600;
	letter-spacing: 0.1em;
	padding: 16px 0;
	color: #222;
}

.bosyu .btn_area .btn{
	width: 33%;
}

.bosyu .sub_ttl{
	width: fit-content;
	margin: 0 auto 30px;
}

.bosyu .btn_area a:hover{
	background-color: #EF9F2D;
}

.rec_form .sub_ttl{
	width: fit-content;
	margin: 0 auto 30px;
}

.k_recruit .recruit .left{
	width: 40%;
}

.k_recruit .recruit .right{
	width: 55%;
}



.ad_box p{
	font-size: 3rem;
	text-align: center;
	border: solid 2px #EF9F2D;
	background-color: #f5f5f5;
	padding: 20px 0;
}


@media (max-width: 1200px){
	.k_recruit .recruit .left{
		width: 100%;
	}
	.k_recruit .recruit .right{
		width: 100%;
	}
	.k_recruit .recruit .ac_ill{
		bottom: -100px;
		width: 190px;
	}
	.depart .flex_bet{
		flex-direction: column;
	}
	.depart .right{
		width: 100%;
		margin-top: 30px;
	}
	.depart .left{
		width: 100%;
	}
	.depart .left .img img{
		height: 360px;
	}
	.depart .ac_ill02{
		transform: scale(-1,1);
		left: auto;
		right: 20px;
	}
	.bosyu .btn_area a{
		font-size: 1.6rem;
	}
	.bosyu h4{
		font-size: 2.2rem;
	}
	.depart::after{
		left: auto;
		right: 0;
		border-radius: 20px;
		border-top-right-radius: 0;
		border-bottom-right-radius: 0;
	}
	.ad_box p{
		font-size: 2.6rem;
	}
}


@media (max-width: 650px){
	.depart .item p.num{
		font-size: 2.4rem;
	}
	.depart .item p.num::before{
		width: 55px;
	}
	.depart .item h3{
		font-size: 2.4rem;
		margin-bottom: 15px;
	}
	.depart .ttl_area{
		margin-bottom: 20px;
	}
	.depart .left .img img{
		height: 180px;
	}
	.depart .l_ttl{
		font-size: 1.6rem;
	}
	.depart .item+.item{
		margin-top: 50px;
		padding-top: 50px;
	}
	.depart .ac_ill{
		width: 90px;
	}
	.depart::before{
		height: 120px;
		border-top-left-radius: 10px;
		border-bottom-left-radius: 10px;
	}
	.depart::after{
		height: 120px;
		border-top-left-radius: 10px;
		border-bottom-left-radius: 10px;
	}
	.bosyu .btn_area{
		flex-direction: column;
		gap: 5px;
	}
	.bosyu .btn_area .btn{
		width: 100%;
	}
	.bosyu .btn_area a{
		font-size: 1.5rem;
	}
	.bosyu .item{
		padding: 40px 30px;
	}
	.bosyu h4{
		font-size: 1.8rem;
		margin-bottom: 15px;
	}
	.depart .ac_ill02{
		width: 50px;
	}
	.ad_box p{
		font-size: 1.6rem;
	}
}




/*thanksページ*/


section.thanks{
	padding-bottom: 150px;
}

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

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

