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


body{
	color: #202020;
	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: #202020;
	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: 1200px;
	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: 120px 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: 60px 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;
}


/* .en{
	font-family: "Noto Serif", serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	font-variation-settings:"wdth" 100;
} */


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

body p{
	letter-spacing: 0.1em;
}

i{
	padding-right: 0.4em;
}



/* btn */



/* font-size (ratio 1.2, base 15px)*/


.king{
	font-size: 5.3748rem;
}
.biggest{
	font-size: 4.479rem;
}
.big{
	font-size:  3.1104rem;
}
.s_big{
	font-size: 2.592rem;
}
.f_txt{
	font-size: 2.16rem;
}
.s_f_txt{
	font-size: 1.8rem;
}




/* sub_ttl */



/* header */

header{
	max-width: 1200px;
	margin: 0 auto;
	position: fixed;
	top: 30px;
	left: 50%;
	width: 100%;
	transform: translateX(-50%);
	white-space: nowrap;
	z-index: 99;
}

body.open header{
	top: 0;
}

header .left{
	width: 800px;
	padding: 10px 30px;
	padding-left: 40px;
	background-color: #fff;
	border-radius: 40px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

header .co_btn a{
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

h1{
	font-weight: 700;
}

h1 img{
	height: 28px;
	margin-top: 7px;
}

h1 a:hover{
	opacity: 0.75;
}

.main_nav li a{
	position: relative;
	display: block;
	font-size: 1.45rem;
	letter-spacing: 0.03em;
	padding: 0 20px;
}

.main_nav li a::before{
	content: "/";
	display: inline-block;
	position: absolute;
	top: 0;
	right: -6px;
	color: #aaa;
}

.main_nav li:last-child a::before{
	display: none;
}

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



.co_btn a{
	position: relative;
	background-color: #202020;
	color: #fff;
	padding: 14px 0;
	text-align: center;
	display: block;
	border-radius: 40px;
	border: solid 2px #fff;
	font-size: 1.45rem;
	padding-right: 10px;
	
}


.co_btn{
	width: 190px;
}

.co_btn+.co_btn{
	margin-left: 8px;
}

.co_btn a::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/arrow.png);
	background-size: cover;
	background-position: center;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	aspect-ratio: 1 / 1;
	width: 18px;
	border-radius: 50%;
	background-color: #baeaad;
	transition: all .3s;
}

.co_btn a:hover{
	transform: scale(1.05);
}

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

@media (max-width: 1200px){
	header .left .main_nav{
		display: none;
	}
	header .right{
		display: none;
	}
	header .left{
		width: calc(100% - 40px);
		margin: 0 auto;
	}
	.open header div.hamburger_menu{
		margin-top: 30px;
	}
	h1 img{
		margin-top: 10px;
	}
}

@media (max-width: 650px){
	h1.f_txt{
		font-size: 1.8rem;
	}
	header .left{
		width: calc(100% - 20px);
		padding-left: 20px;
	}
	header{
		top: 20px;
	}
	.open header div.hamburger_menu{
		margin-top: 20px;
	}
	h1 img{
		height: 24px;
	}
}


/* fv */


.fv{
	position: relative;
	height: 90vh;
	background-color: #E4F1F3;
}

.top_slider{
	position: relative;
	height: 100%;
}

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


.top_slider .slider li.top01{
	background-image: linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.3)),url(../img/top02.JPG);
	background-position-y:70%;
	background-position-x: center;
}
.top_slider .slider li.top02{
	background-image: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0)),url(../img/top01.jpg);
	background-position: center;
}
.top_slider .slider li.top03{
	background-image: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0)),url(../img/top03.jpg);
	background-position: bottom;
}


.fv .catch{
	position: absolute;
	left: 0;
	bottom: 80px;
	z-index: 2;
	font-weight: bold;
}

.fv .catch span{
	display: block;
	background-color: #fff;
	width: fit-content;
	padding-left: 80px;
	padding-right: 10px;
	transition: all .4s;
	transition-delay: 300ms;
}

.fv .catch span+span{
	margin-top: 30px;
	transition-delay: 600ms;
}

.fv .catch h2{
	letter-spacing: 0.1em;
	line-height: 1.7;
}



/* 
.slider {
    clip-path: ellipse(150% 100% at top);
} */

@media (max-width: 1200px){
	.fv{
		height: 70vh;
	}
	.fv .catch h2{
		font-size: 4.6rem;
	}
}


@media (max-width: 650px){
	.fv .catch h2{
		font-size: 2.8rem;
	}
	.fv .catch span{
		padding-left: 40px;
	}
	.fv .catch span+span{
		margin-top: 15px;
	}
	.fv .catch{
		bottom: 40px;
	}
}




/* aboutus */

.aboutus{
	position: relative;
	background-color: #e4f1f3;
}

/* .aboutus::before{
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 20px;
	background-color: #fff;
	border-bottom-left-radius: 50px;
} */

.sub_ttl{
	font-weight: 700;
}

.ac_txt{
	position: relative;
	font-weight: 700;
	background-color: #baeaad;
	width: fit-content;
	padding: 0 10px;
	color: #555;
	margin-bottom: 45px;
}

.aboutus p.f_txt{
	margin-bottom: 15px;
}

.aboutus .left{
	width: 48%;
}

.aboutus .right{
	width: 48%;
}

.aboutus .right .img{
	width: 70%;
	border-radius: 10px;
}

.aboutus .right .in{
	flex-direction: column;
}
.aboutus .right .img02{
	width: 45%;
	margin: -80px 0 0 auto;
	border-radius: 10px;
}

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

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

.aboutus .left .txt_box{
	max-width: 470px;
}

.aboutus .co_btn{
	margin-top: 30px;
}

@media (max-width: 1200px){
	.aboutus .inner{
		flex-direction: column-reverse;
	}
	.aboutus .left{
		width: 100%;
		margin-top: -150px;
	}
	.aboutus .left .txt_box{
		max-width: none;
	}
	.aboutus .right{
		margin: 0 0 0 auto;
		width: 45%;
	}
	.sub_ttl{
		font-size: 4.6rem;
	}
	.ac_txt{
		margin-bottom: 30px;
	}
	
}

@media (max-width: 650px){
	.sub_ttl{
		font-size: 3.2rem;
	}
	.aboutus p.f_txt{
		font-size: 1.6rem;
	}
	.ac_txt{
		margin-bottom: 20px;
	}
	.aboutus .left{
		margin-top: 0;
		margin-bottom: 40px;
	}
	.aboutus .right{
		width:80%;
		margin: 0 auto;
	}
	.aboutus .right .img{
		width: 60%;
	}
	.aboutus .right .img02{
		width: 45%;
	}
	.aboutus .right .img02 img{
		aspect-ratio: 1 / 1;
	}
	.aboutus .inner{
		flex-direction: column;
	}
	.aboutus .sub_ttl{
		text-align: center;
	}
	.aboutus .ac_txt{
		margin: 0 auto 20px;
	}
	.aboutus .co_btn{
		margin: 20px auto 0;
	}
}


/* bosyu */



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

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

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

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

.custom-shape-divider-bottom-1752638441 .shape-fill {
    fill: #E4F1F3;
}

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

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

.custom-shape-divider-top-1752544670 .shape-fill {
    fill: #e4f1f3;
}

.bosyu{
	position: relative;
	padding-bottom: 150px;
}

.triangle1-2 {
	position: absolute;
	bottom: 0;
	left: 0;
	border-right: 40px solid transparent;
	border-bottom: 40px solid #baeaad; 
	height: 0;
	width: 0;
}

.bosyu h3.sub_ttl{
	text-align: center;
	margin-bottom: 40px;
	letter-spacing: 0.1em;
	font-size: 4rem;
}

.bosyu h4{
	line-height: 1.4;
	text-align: center;
	letter-spacing: 0.05em;
	height: 51px;
	justify-content: center;
}

.bosyu .item{
	position: relative;
	width: calc((100% - 60px) / 4);
	background-color: #f5f5f5;
	padding: 20px 0 10px;
}



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

.bosyu .btm{
	text-align: center;
}

.bosyu .img img{
	width: 80px;
}

.bosyu .img{
	text-align: center;
	margin-bottom: 10px;
}

.bosyu .co_btn{
	margin: 30px auto 0;
}

@media (max-width: 1200px){
	.bosyu .item{
		width: calc((100% - 20px) / 2);
	}
	.bosyu .icon_list{
		flex-wrap: wrap;
		gap: 20px;
	}
	.bosyu h3.sub_ttl{
		font-size: 3.8rem;
	}
}

@media (max-width: 650px){
	.bosyu h3.sub_ttl{
		font-size: 2.6rem;
		margin-bottom: 25px;
	}
	.bosyu .img img{
		width: 50px;
	}
	.bosyu h4{
		font-size: 1.3rem;
	}
	.bosyu .btm{
		text-align: left;
	}
	.bosyu .img{
		margin: 0;
	}
	.bosyu{
		padding-bottom: 60px;
	}

}



/* service */

.service{
	position: relative;
	background-color: #e4f1f3;
	padding: 100px 0;
}

.service .left{
	width: 400px;
}

.service .right{
	width: calc(100% - 400px);
	margin-top: 30px;
}

.service .co_btn{
	margin-top: 30px;
}

@media (max-width: 1200px){
	.service .left{
		width: 280px;
	}
	.service .right{
		width: calc(100% - 280px);
	}
	.service{
		padding: 120px 0;
	}
}

@media (max-width: 650px){
	.service .flex_bet{
		flex-direction: column;
	}
	.service .left{
		width: 100%;
	}
	.service .right{
		width: 100%;
		margin-top: 0;
	}
	.service{
		padding: 30px 0;
	}
	.service .sub_ttl{
		text-align: center;
	}
	.service .ac_txt{
		margin: 0 auto 20px;
	}
	.service .co_btn{
		margin: 20px auto 0;
	}
	.custom-shape-divider-bottom-1752638441 svg{
		height: 30px;
	}

}




/* works */

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

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

.custom-shape-divider-top-1752638305 .shape-fill {
    fill: #E4F1F3;
}

.works{
	position: relative;
	background-color: #fff;
	padding-bottom: 170px;
}

.works h3{
	text-align: center;
}

.works .ac_txt{
	margin: 0 auto 40px;
}

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

.works .co_btn{
	margin: 60px auto 0;
}

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

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

.custom-shape-divider-bottom-1752557708 .shape-fill {
    fill: #E4F1F3;
}

@media (max-width: 1200px){
	.custom-shape-divider-bottom-1752557708 svg{
		height: 30px;
	}
	.works{
		padding: 100px 0 130px;
	}

	.works .ac_txt{
		margin: 0 auto 30px;
	}
	.works .center{
		margin-bottom: 40px;
	}
	.works .co_btn{
		margin-top: 40px;
	}
}

@media (max-width: 650px){
	.works{
		padding: 60px 0 80px;
	}
	.works .center{
		text-align: left;
	}
	.custom-shape-divider-top-1752638305 svg{
		height: 30px;
	}
}



/* news */



.news{
	background-color: #e4f1f3;
	padding: 100px 0;
	padding-bottom: 0;
}

.news .news_wrapper{
	position: relative;
	margin: -360px 0 0 auto;
	max-width: 1200px;
	width: 68%;
	background-color: #fff;
	padding: 40px 80px;
	padding-bottom: 80px;
	border-top-left-radius: 40px;
	z-index: 1;
}

.news .news_list .list_hov a{
	display: block;
	padding: 20px 15px;
	border-bottom: solid 1px #ccc;
}

.news .img{
	width: 40%;
}

.news .img img{
	border-top-right-radius: 40px;
	height: 600px;
	object-fit: cover;
	width: 100%;
}

.news .up_ymd{
	display: inline-block;
	letter-spacing: -0.05em;
	font-weight: bold;
	color: #202020;
	margin-right: 30px;
	vertical-align: middle;
}

.news .title{
	position: relative;
	display: inline-block;
	letter-spacing: 0.05em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	vertical-align: middle;
}

.news .title::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #baeaad;
	width: 100%;
	height: 1px;
	bottom: 0;
	left: 0;
	transform: translateX(-100%);
	transition: all .3s;
}

.news .news_list .list_hov a:hover .title::before{
	transform: translateX(0);
}

.news .news_list .list_hov .up_ymd{
	padding: 20px 0;
	padding-left: 15px;
}
.news .news_list .list_hov .title{
	padding-right: 15px;
}
.news .news_list .list_hov a .up_ymd{
	padding: 0;
}
.news .news_list .list_hov a .title{
	padding: 0;
}



@media (max-width: 1200px){
	.news .news_wrapper{
		width: 90%;
		margin-top: -50px;
		padding-top: 40px;
		padding-left: 50px;
		padding-right: 50px;
	}
	.news .img img{
		height: 400px;
	}
	.news .img{
		width: 70%;
	}
}

@media (max-width: 650px){
	.news{
		padding: 60px 0;
	}
	.news .img{
		width: 94%;
	}
	.news .img img{
		height: 220px;
		border-top-right-radius: 20px;
	}
	.news .news_wrapper{
		width: 94%;
		margin-top: -10px;
		padding: 30px 30px 40px;
		border-top-left-radius: 20px;
	}
	.news .news_list .list_hov a{
		padding: 10px 0;
	}
	.custom-shape-divider-bottom-1752557708 svg{
		height: 10px;
	}
	.news .news_list .list_hov .up_ymd{
		padding: 10px 0;
		padding-left: 0;
	}
	.news .news_list .list_hov .title{
		padding-right: 0;
	}
	.news .news_list .list_hov a .up_ymd{
		padding: 0;
	}
	.news .news_list .list_hov a .title{
		padding: 0;
	}
}



/* footer */



.foo_top{
	position: relative;
	padding: 100px 0;
	background: url(../img/co_bg.JPG);
	background-size: cover;
	background-position: center;
}

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

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

.foo_top h3{
	text-align: center;
	color: #fff;
}

.foo_top .ac_txt{
	margin: 0 auto 60px;
}

.foo_top .co_btn{
	width: 300px;
}

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

.foo_btm{
	text-align: center;
	padding-top: 80px;
}

.foo_logo a img{
	height: 35px;
}

.foo_logo{
	margin-bottom: 15px;
}
.foo_logo a{
	display: block;
}

.foo_logo a:hover{
	opacity: 0.75;
}

.copy{
	font-size: 1.3rem;
	background-color: #baeaad;
	margin-top: 60px;
	letter-spacing: 0.2em;
}

.copy p{
	padding: 5px 0;
}


@media (max-width: 650px){
	.foo_top .btn_list{
		flex-direction: column;
		align-items: center;
	}
	.foo_top{
		padding: 60px 0;
	}
	.foo_top .ac_txt{
		margin-bottom: 30px;
	}
	.foo_top .co_btn+.co_btn{
		margin-left: 0;
		margin-top: 10px;
	}
	.foo_logo{
		font-size: 2.2rem;
		margin-bottom: 5px;
	}
	.foo_btm{
		padding-top: 50px;
	}
	.copy{
		margin-top: 30px;
		font-size: 1.2rem;
	}
	
	.foo_logo a img{
		height: 28px;
	}
}


/* 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;
    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 #baeaad;
	background-color: #baeaad;
}

.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: #202020;
	padding: 0;
}

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

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



/* kasou_top */


.kasou_top{
	position: relative;
	padding-top: 180px;
	padding-bottom: 110px;
	background: url(../img/top01.jpg);
	background-size: cover;
	background-position: center;
}

.kasou_top h2{
	position: relative;
	font-weight: 500;
	letter-spacing: 0.04em;
	margin-bottom: 10px;
	width: fit-content;
	margin: 0 auto 10px;
	color: #fff;
}

.kasou_top ol{
	position: relative;
	justify-content: center;
	color: #fff;
	z-index: 2;
}

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

.kasou_top ol li a{
	display: block;
	position: relative;
	color: #fff;
}

.kasou_top ol li a::before{
	content: "＞";
	display: inline-block;
	position: absolute;
	top: 50%;
	right: -30px;
	transform: translateY(-50%);
}

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

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

@media (max-width: 650px){
	.kasou_top{
		padding-top: 150px;
		padding-bottom: 80px;
	}
	.kasou_top h2{
		font-size: 3rem;
	}
}




/* 下層service */




.p_service .item .txt_box{
	width: 48%;
	padding-top: 20px;
}
.p_service .item .img{
	width: 48%;
}

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

.p_service .item .en{
	margin-right: 15px;
}

.p_service .item h3{
	position: relative;
	border-bottom: solid 2px #baeaad;
	margin-bottom: 15px;
	letter-spacing: 0.03em;
	font-weight: 600;
	padding-left: 20px;
}

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

.p_service .item h3::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/arrow_c.png);
	background-size: cover;
	background-position: center;
	top: 56%;
	left: -12px;
	aspect-ratio: 1 / 1;
	width: 40px;
	transform: translateY(-50%);
}

.p_service .item h3 .en{
	font-size: 0.8em;
	font-weight: bold;
}



.area{
	position: relative;
	background-color: #e4f1f3;
	background: url(../img/fuk.jpg);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}


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

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

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

.area .item h4{
	position: relative;
	margin-bottom: 10px;
	font-weight: 600;
	letter-spacing: 0.03em;
	padding-left: 22px;
}

.area .item .fuk{
	width: 40%;
}

.area .item .txt_box{
	width: 55%;
}

.area .wrapper{
	background-color: rgb(255, 255, 255,0.8);
	backdrop-filter: blur(3px);
	max-width: 1080px;
	margin: 0 auto;
	padding: 40px 50px;
}

.area .item h4::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #baeaad;
	top: 50%;
	left: 0;
	width: 16px;
	height: 4px;
}

@media (max-width: 1200px){
	.p_service .item_list .item{
		flex-direction: column-reverse;
	}
	.p_service .item .img{
		width: 100%;
	}
	.p_service .item .txt_box{
		width: 100%;
	}
	.area .wrapper{
		padding-bottom: 60px;
	}
}

@media (max-width: 650px){
	.p_service .item h3{
		font-size: 2rem;
	}
	.p_service .item + .item{
		margin-top: 40px;
	}
	.area .item .fuk{
		position: absolute;
		top: 40px;
		right: 30px;
	}
	.area .item .txt_box{
		width: 100%;
	}
	.area .item h4{
		font-size: 2.2rem;
		padding-left: 15px;
	}
	.area .wrapper{
		padding: 20px 30px 40px;
	}
	.area .ac_txt{
		margin-bottom: 50px;
	}
	.area .item h4::before{
		width: 8px;
	}
}




/* 下層施工実績 */



.p_works p.s_f_txt{
	text-align: center;
	margin-bottom: 40px;
	font-weight: 600;
}

.kasou .p_works td{
	background-color: #fff;
	width: 60%;
}

.kasou .p_works th{
	width: 40%;
}

.p_works p.btm{
	margin-top: 15px;
}

.p_works .left{
	width: 45%;
}

.p_works .right{
	width: 50%;
}

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

@media (max-width: 1200px){
	.p_works .flex_bet{
		flex-direction: column;
	}
	.p_works .left{
		width: 100%;
		margin-bottom: 30px;
	}
	.p_works .right{
		width: 100%;
	}
	.p_works .left img{
		height: 340px;
		aspect-ratio: auto;
	}
}


@media (max-width: 650px){
	.p_works p.s_f_txt{
		font-size: 1.5rem;
		margin-bottom: 25px;
	}
	.p_works .left img{
		height: 200px;
	}

}




/* 下層採用情報 */



.p_flow{
	padding-bottom: 0;
}

.p_flow .fir{
	text-align: center;
	margin-bottom: 100px;
	background-color: #E4F1F3;
	padding: 30px 0;
}

.p_flow .list{
	position: relative;
	border-bottom: solid 1px #ccc;
	padding: 14px 0;
	padding-left: 10px;
}

.p_flow .left{
	width: 47%;
}
.p_flow .right{
	position: relative;
	width: 45%;
}

.p_flow .list::before{
	content: "";
	display: inline-block;
	position: absolute;
	aspect-ratio: 1 / 1;
	width: 12px;
	background-color: #baeaad;
	border-radius: 50%;
	top: 50%;
	left: -30px;
	transform: translateY(-50%);
}

.p_flow .list .en{
	margin-right: 20px;
}

.p_flow .right::after{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #baeaad;
	height: 100%;
	width: 2px;
	top: 0;
	left: -25px;
}

.p_flow .left img{
	border-top-right-radius: 30px;
	width: 100%;
	height: 520px;
	object-fit: cover;
}


.line_ttl{
	letter-spacing: 0.05em;
	font-weight: 600;
	margin-bottom: 20px;
	border-left: solid 5px #baeaad;
	padding-left: 14px;
	line-height: 1.8;
}

.p_flow .left img{
	width: 100%;
	object-fit: cover;
}

.zinzai{
	padding-top: 50px;
	padding-bottom: 0;
}

.zinzai li{
	position: relative;
	letter-spacing: 0.05em;
	padding: 7px 0;
	background-color: #f5f5f5;
	padding-left: 24px;
	border-radius: 30px;
}

.zinzai li+li{
	margin-top: 10px;
}

.zinzai li::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #baeaad;
	height: 3px;
	width: 15px;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.zinzai .num{
	font-weight: bold;
	display: inline-block;
	margin-right: 10px;
}

.kasou table th{
	background-color: #E4F1F3;
	text-align: center;
	width: 25%;
	border-bottom: solid 1px #fff;
}

.kasou table td{
	width: 75%;
	border-bottom: solid 1px #ccc;
}

.kasou table th,
.kasou table td{
	padding: 10px 0;
	padding-left: 10px;
	padding-right: 10px;
	letter-spacing: 0.05em;
}

.kasou table{
	border: solid 1px #202020;
	width: 100%;
}

.kasou table tr:last-child th{
	border-bottom: 0px;
}

.kasou table tr:last-child td{
	border-bottom: 0px;
}

.apply .co_btn{
	margin-top: 30px;
}

.p_bosyu{
	padding-top: 50px;
	padding-bottom: 0;
}

.apply{
	padding-top: 50px;
}


@media (max-width: 1200px){
	.p_flow .flex_bet{
		flex-direction: column;
	}
	.p_flow .left{
		width: 100%;
		margin-bottom: 40px;
	}
	.p_flow .right{
		width: 90%;
		margin: 0 0 0 auto;
	}
	.p_flow .left img{
		height: 350px;
	}
	.p_flow .fir{
		margin-bottom: 40px;
		font-size: 1.6rem;
	}
}

@media (max-width: 650px){
	.p_flow .fir{
		text-align: left;
		font-size: 1.4rem;
		padding: 20px;
	}
	.p_flow .left img{
		height: 200px;
	}
	.p_flow .right{
		font-size: 1.5rem;
	}
	.p_flow .left{
		margin-bottom: 30px;
	}
	.zinzai ul{
		font-size: 1.5rem;
	}
}




/* 下層会社概要 */


.overview{
	padding-bottom: 0;
}

.access{
}

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

.policy {
	padding-bottom: 150px;
}

.policy .inner{
	max-width: 960px;
}

.policy p.s_big{
	position: relative;
	border: solid 1px #ccc;
	width: fit-content;
	border-radius: 5px;
	padding:20px 40px;
	margin: 0 auto;
	font-weight: 600;
}

.policy p.s_big::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #baeaad;
	border-radius: 50%;
	aspect-ratio: 1 / 1;
	width: 20px;
	top: 50%;
	left: 0;
	transform: translate(-50%,-50%);
}

.policy p.s_big::after{
	content: "";
	display: inline-block;
	position: absolute;
	width: 50px;
	background: #baeaad;
	height: 2px;
	top: 50%;
	left: 0;
	transform: translate(-100%,-50%);
}


.policy p.ac_txt{
	margin-left: 0;
}


.p_greeting {
	background-color: #e4f1f3;
	padding: 50px 0;
}

.p_greeting .left{
	width: 44%;
}

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

.p_greeting .right{
	width: 51%;
}

.p_greeting .right .btm{
	text-align: right;
	margin-top: 20px;
}

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

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

.k_company .ac_txt{
	margin: 0 auto 45px;
}

.policy .ac_txt{
	margin-bottom: 0;
}

.access{
	padding-top: 0;
	margin-top: 70px;
}


@media (max-width: 1200px){
	.policy .flex_bet{
		flex-direction: column;
	}
	.policy p.ac_txt{
		margin: 0 auto 45px;
	}
	.p_greeting .flex_bet{
		flex-direction: column;
	}
	.p_greeting .left{
		width: 100%;
	}
	.p_greeting .right{
		width: 100%;
		margin-top: 30px;
	}
	.r_wrap{
		width: 80%;
		margin: 0 auto;
	}
	.p_greeting .left img{
		aspect-ratio: auto;
		height: 300px;
	}
}

@media (max-width: 650px){
	.policy p.s_big{
		font-size:1.6rem;
		padding: 12px 20px;
	}
	.r_wrap{
		width: 100%;
	}
	.p_greeting .left img{
		height: 200px;
	}
	.access iframe{
		height: 220px;
	}
	.access{
		margin-top: 50px;
	}
	.k_company .ac_txt{
		margin: 0 auto 30px;
	}
	.policy p.ac_txt{
		margin: 0 auto 30px;
	}
	.policy{
		padding-bottom: 80px;
	}
	.p_greeting{
		padding: 20px 0;
	}
}





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


.co_top .co_box{
	text-align: center;
}

.co_top span.mini{
	font-size: 0.7em;
}

.co_top a{
	line-height: 1.6;
}

.co_top h3{
	background-color: #baeaad;
	margin-bottom: 20px;
	letter-spacing: 0.04em;
	font-weight: 600;
	padding: 2px 0 4px;
}

.co_top .co_box{
	max-width: 800px;
	margin: 0 auto;
	border: solid 2px #baeaad;
	padding-bottom: 17px;
}

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

.co_top p.ch{
	letter-spacing: normal;
}

.co_top .co_box+.co_box{
	margin-top: 50px;
}

.co_top p.fax{
	line-height: 1.6;
	letter-spacing: normal;
}

.co_top ul li{
	position: relative;
}

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

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

.co_top ul li{
	padding-left: 22px;
}







.form_box{
	position: relative;
	max-width: 1400px;
	background-color: #fff;
	padding: 70px 0;
	z-index: 1;
}



input[type="checkbox"]{
	width: 20px;
	height: 20px;
	border: solid 1px #bababa;
	background-color: #fff;
	border: solid 1px #aaa;
	display: table-cell;
	margin-bottom: 5px;
}

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

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


input{
	appearance: auto;
}

.mailform .contact_table .ib div{
	display: inline;
	margin-top: -3px;
	margin-right: 20px;
}



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: #f5f5f5;
	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: #baeaad;
	padding: 4px 8px 3px;
}

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

.contact_table th{
	font-weight: 500;
	letter-spacing: 0.1em;
	padding: 20px 0;
	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: #baeaad;
	border: solid 2px #baeaad;
	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: #baeaad;
	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: dashed 1px #333;
}

.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;
	border-bottom: solid 2px #baeaad;
	color: #baeaad;
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.1em;
}

.Label::before{
	content: "";
	width: 12px;
	height: 12px;
	border-top: 2.5px solid #baeaad;
	border-right: 2.5px solid #baeaad;
	position: absolute;
	-webkit-transform: rotate(45deg);
	transform: rotate(135deg);
	text-decoration: transparent;
	top: calc(50% - 6px);
	right: 20px;
	margin-bottom: 1em;
}

.Label, .co_open{
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.5s;
}

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

.co_open{
	height: 0;
	overflow: hidden;
}

.mail_sec{
	position: relative;
	background-color: #E4F1F3;
}

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


.mail_sec .content_box{
	max-width: 1080px;
	width: 90%;
	margin: 0 auto;
}

.mail_sec .inner{
	width: 94%;
}

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

.co_top .inner{
	width: 94%;
}



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

@media (max-width:650px){
	.co_top h3{
		font-size: 1.8rem;
		margin-bottom: 10px;
	}
	.co_box .biggest{
		font-size: 3rem;
	}
	.co_top p.ch{
		padding: 0 10px;
	}
	.co_box+.co_box p.ch{
		margin-bottom: 10px;
	}
	.co_top .co_box+.co_box{
		margin-top: 30px;
	}
	.line_ttl{
		font-size: 1.8rem;
	}
	.mail_sec h3{
		margin-bottom: 15px;
	}
	.contact_table td{
		padding-top: 14px;
	}
	.mailform .contact_table .ib div{
		display: block;
	}
	.mailform .contact_table .ib div+div{
		margin-top: 5px;
	}
	.form_attention{
		font-size: 1.3rem;
	}
	.form_accordion{
		margin-top: 20px;
	}
	.form_box{
		padding: 40px 0;
	}
	.form_accordion p{
		font-size: 1.3rem;
	}
}




/*===news-detail.php用==============================*/
#news-detail #up_ymd{
	font-size: 14px;
	letter-spacing: 0.05em;
	font-weight: bold;
	color: #baeaad;
}
#news-detail #up_ymd::before{
	font-family: "Font Awesome 5 Free";
	content: '\f017';
	font-weight: bold;
	padding-right: 0.5em;
}
#news-detail #detail{
	padding: 20px;
}
@media (max-width: 650px){
	#news-detail #detail{
		padding: 20px 10px;
	}
}
#news-detail .detailUpfile{
	margin: 5px 0 35px;
	text-align: center;
}
#news-detail .detailUpfile img{
	max-width: 100%;
	height: auto;
	margin-top: 30px;
}
#news-detail .sbtn a{
	margin-top: 60px;
}

#news-detail .inner{
	width: 94%;
	margin: 0 auto;
	max-width: 1000px;
}

.g_btn{
	margin-top: 20px;
}

.g_btn a{
	display: block;
	text-align: center;
	border: solid 1px #baeaad;
	color: #baeaad;
	padding: 10px 0;
}

.g_btn a:hover{
	background-color: #baeaad;
	color: #fff;
}

.news_ttl{
	position: relative;
	font-size: 2.6rem;
	padding-left: 17px;
	text-align: left;
	margin-bottom: 15px;
}

.news_ttl::before{
	content: "";
	display: inline-block;
	position: absolute;
	left: 0;
	top: 50%;
	height: 70%;
	width: 4px;
	background-color: #baeaad;
	transform: translateY(-50%);
}
@media (max-width: 650px){
	.news_ttl{
		font-size: 2rem;
	}
}




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

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

@media (max-width: 650px){
	.thanks_txt p{
		text-align: left;
	}
}




