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


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



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

a{
	text-decoration: none;
	color: #252525;
	transition: .3s;
}

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

/*フェードイン*/
.flowup{
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 1.4s, transform 1.3s;
	transition-delay: 0.3s;
}
.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);
}




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

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



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


.br_650.marker{
	background: none;
}

.inner{
	width: 94%;
	max-width: 1380px;
	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%;
}



/*改行*/

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



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

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

body p{
	letter-spacing: 0.08em;
}

i{
	padding-right: 0.4em;
}

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



/* btn */


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

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

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

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

.m_btn a:hover::after{
	transform: translate(50%,-50%);
	opacity: 0;
}

.m_btn a .hid_arrow{
	position: absolute;
	display: inline-block;
	opacity: 0;
	top: 50%;
	right: 26px;
	width: 22px;
	height: 22px;
	transform: translate(-50%,-50%);
	transition: all .3s;
}

.m_btn a:hover .hid_arrow{
	opacity: 1;
	transform: translate(0,-50%);
}

.m_btn a:hover{
	transform: scale(1.02);
}


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


.king01{
	font-size: 6rem;
}
.king{
	font-size: 4.479rem;
}
.biggest{
	font-size: 3.7325rem;
}
.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 */



.sub_ttl{
	margin-bottom: 40px;
}

.sub_ttl .en{
	display: block;
	line-height: 1;
	margin-bottom: 20px;
	letter-spacing: 0.03em;
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
}

.sub_ttl .en::first-letter{
	color: #F9E810;
}

.sub_ttl .ja{
	position: relative;
	padding-left: 23px;
	color: #1b92b4;
	letter-spacing: 0.05em;
}

.sub_ttl .ja::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/sub_mark.png);
	background-size: cover;
	background-position: center;
	aspect-ratio: 1 / 1;
	width: 17px;
	top: 52%;
	left: 0;
	transform: translateY(-50%);
}


/* header */


header{
	position: fixed;
	top: 0;
	width: 100%;
	height: 90px;
	background-color: #fff;
	z-index: 99;
	transition: transform .6s, opacity .7s;
}

header::before{
	content: "";
	display: inline-block;
	position: absolute;
	width: 100%;
	height: 15px;
	top: 89px;
	left: 0;
	background: linear-gradient(0deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}


.flowup2{
	transform: translateY(-99%);
	opacity: 0;
}
.flowup2.inview{
	transform: translateY(0);
	opacity: 1;
}

h1{
	font-size: 2.4rem;
}

h1 img{
	height: 50px;
	padding-top: 7px;
	margin-right: 5px;
}

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


.main_nav {
	margin-right: 30px;
}


.main_nav a{
	display: block;
	overflow: hidden;
	position: relative;
	line-height: 1.6;
	cursor: pointer;
	letter-spacing: 0.05em;
	font-weight: 500;
}

.main_nav a .h_txt{
	position: absolute;
	top: 0;
	left: 0;	
}

.main_nav a .m_txt{
	position: absolute;
	top: 0;
	left: 0;
	transform: translateY(100%);
}

.main_nav a .o_txt{
	opacity: 0;
}

.main_nav a:hover .m_txt{
	transform: translateY(0);
	transition: all .3s;
}
.main_nav a:hover .h_txt{
	transform: translateY(-100%);
	transition: all .3s;
}

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

.hd_btn + .hd_btn{
	margin-left: 20px;
}

.hd_btn{
	width: 170px;
	text-align: center;
}

.hd_btn a{
	background-color: #F9E810;
	color: #4d4d4f;
	display: block;
	padding: 6px 0;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.hd_btn a:hover{
	transform: scale(1.02);
}




@media (max-width: 1200px){
	header .right{
		display: none;
	}
	.sub_ttl .en{
		font-size: 5rem;
	}
	.hd_inner{
		padding-left: 30px;
		padding-right: 20px;
	}
}

@media (max-width: 650px){
	header{
		height: 70px;
	}
	header::before{
		top: 69px;
	}
	.sub_ttl .en{
		font-size: 4.2rem;
		margin-bottom: 12px;
	}
	.sub_ttl{
		margin-bottom: 25px;
	}
	.hd_inner{
		padding-left: 10px;
		padding-right: 10px;
	}
	h1 img{
		height: 38px;
	}
	h1{
		font-size: 2rem;
	}
}



/* fv */

.fv{
	position: relative;
	width: 100%;
	height: calc(100vh - 90px);
	min-height: 400px;
	margin-top: 90px;
	overflow: hidden;
	background-color: #f5f5f5;
	border-left: solid 15px #F9E810;
}

.flowing{
	position: absolute;
	bottom: 0;
}

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

.flowing::after{
	left: 8400px;
	animation: flowing 130s linear infinite;
}

.flowing::before,.flowing::after{
	content: "O-TORI KENSETSU, O-TORI KENSETSU, O-TORI KENSETSU, O-TORI KENSETSU, O-TORI KENSETSU, O-TORI KENSETSU,";
	position: absolute;
	bottom: 0;
	width: 100%;
	height: auto;
	font-size: 14rem;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
	color: #fff;
	pointer-events: none;
	text-shadow: 2px 3px 3px rgb(77, 77, 79,0.2);
	z-index: 10;
}

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




.catch{
	position: absolute;
	color: #1b92b4;
	top: 49%;
	left: calc(20px + 3%);
	z-index: 6;
	transform: translateY(-50%);
}

.catch .box{
	position: relative;
	display: block;
	padding: 15px 15px;
	padding-left: 25px;
	width: fit-content;
	font-weight: 600;
	overflow: hidden;
}

.catch .box::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #1b92b4;
	width: 200%;
	height: 100%;
	top: 0;
	left: 0;
	transform: translateX(-101%);
	transition: all 1s ease-out;
	transition-delay: 300ms;
	z-index: 0;
}

.catch .box::after{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #fff;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	transform: translateX(-101%);
	transition: all .2s ease-out;
	transition-delay: 600ms;
	z-index: 1;
}


.catch .box+.box{
	margin-top: 20px;
}

.catch h2{
	line-height: 1;
}

.catch .en_sec{
	position: relative;
	margin-top: 60px;
	font-weight: 700;
	padding-left: 45px;
}

.catch .en_sec::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: #1b92b4;
	height: 1px;
	width: 34px;
	top: 17px;
	left: 0;
}

.catch .bb{
	font-size: 1.35em;
	font-weight: 700;
}

.catch .op{
	position: relative;
	opacity: 0;
	transition-delay: 600ms;
	z-index: 2;
}

.change.inview .op{
	opacity: 1;
}

.change.inview .box::before{
	transform: translateX(100%);
}
.change.inview .box::after{
	transform: translateX(0);
}



.top_slider{
	position: relative;
	z-index: 5;
}
.top_slider .slider{
	position: relative;
	width: 65%;
	height: 100vh;
	min-height: 400px;
	margin: 0 0 0 auto;
	z-index: 2;
	clip-path: polygon(7% 0, 100% 0, 100% 100%, 0 100%);
}
.top_slider .slider li{
	width: 100%;
	background-size: cover;
	margin: 0;
	min-height: 400px;
}


.top_slider .slider li.top01{
	background-image: linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.3)),url(../img/top01.jpg);
	background-position: center;
}
.top_slider .slider li.top02{
	background-image: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0)),url(../img/greeting_bg.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;
}


@media (max-width: 1200px){
	.catch h2{
		font-size: 3.8rem;
	}
	.fv{
		height: calc(90vh - 90px);
	}
	.top_slider .slider{
		height: calc(90vh - 90px);
	}
	
}


@media (max-width: 650px){
	.catch h2{
		font-size: 3rem;
	}
	.fv{
		height: calc(85vh - 70px);
		margin-top: 70px;
		border-left: solid 7px #F9E810;
	}
	.top_slider .slider{
		height: calc(85vh - 70px);
		width: 80%;
	}
	.catch h2{
		font-size: 2.2rem;
	}
	.catch .box{
		padding: 10px 17px;
	}
	.catch .box+.box{
		margin-top: 15px;
	}
	.catch{
		left: 20px;
	}
	.catch .en_sec{
		padding-left: 15px;
		margin-top: 30px;
	}
	.catch .en_sec::before{
		width: 10px;
	}
	.catch .en_sec p{
		background-color: #fff;
		width: fit-content;
	}
	.catch .en_sec p+p{
		margin-top: 4px;
	}
	.flowing::before,.flowing::after{
		font-size: 8rem;
	}
	.flowing::before{
		left: 0;
		animation: flowing 200s linear infinite;
	}
	
	.flowing::after{
		left: 8400px;
		animation: flowing 200s linear infinite;
	}
}




/* news */

.news{
	overflow: hidden;
}


.news .left{
	width: 180px;
}

.news .right{
	width: calc(90% - 180px);
}

.news .list_hov a{
	display: block;
	padding: 25px 0;
}


.news .list_hov{
	position: relative;
	border-top: solid 1px #ccc;
	overflow: hidden;
}

.news .list_hov:last-child{
	border-bottom: solid 1px #ccc;
}

.news .up_ymd{
	display: inline-block;
	background-color: #F9E810;
	color: #4d4d4f;
	padding: 5px 15px;
	font-weight: 500;
	margin-left: 10px;
	margin-right: 20px;
	margin-top: 25px;
	margin-bottom: 25px;
}

.news a .up_ymd{
	margin-top: 0;
	margin-bottom: 0;
}

.news .title{
	display: inline-block;
	letter-spacing: 0.05em;
}

.news .list_hov a::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #F9E810;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	transform: translateX(-101%);
	transition: all .3s ease;
}

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

@media (max-width: 1200px){
	.news .flex_bet{
		flex-direction: column;
	}
	.news .right{
		width: 100%;
	}
	.news .left{
		width: 100%;
	}
	.news .sub_ttl{
		text-align: center;
	}
	.sub_ttl .ja{
		padding-right: 20px;
	}
	.inner{
		width: 90%;
	}
}

@media (max-width: 650px){
	.news .up_ymd{
		display: block;
		width: fit-content;
		font-size: 1.2rem;
		padding: 2px 10px;
		margin: 0;
		margin-top: 17px;
	}
	.news .title{
		display: block;
		margin-left: 8px;
		margin-bottom: 17px;
	}
	.news a .up_ymd{
		margin-top: 0;
	}
	.news a .title{
		margin-bottom: 0;
	}
	.news .list_hov a{
		padding: 17px 0;
	}
}




/* greeting */


.greeting {
	position: relative;
	background: url(../img/gre_bg.jpg);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	color: #fff;
	font-weight: 500;
	overflow: hidden;
}

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

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

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

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

.greeting .sub_ttl .ja{
	padding-right: 20px;
}

.greeting .txt_box{
	text-align: center;
	max-width: 980px;
	margin: 0 auto;
	font-size: 1.7rem;
}

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

.greeting ruby{
	letter-spacing: -0.05em;
	padding: 0 5px;
}

/* 
.greeting .wrap{
	background-color: rgb(255, 255, 255,0.86);
	padding: 70px 0;
	max-width: 1200px;
	margin: 0 auto;
} */

.greeting .m_btn{
	margin: 30px auto 0;
}


@media (max-width: 650px){
	.greeting .txt_box{
		font-size: 1.4rem;
	}
}




/* service */



.service {
	position: relative;
	overflow: hidden;
}

.service .s_bg{
	display: inline-block;
	position: absolute;
	width: 25%;
	height: 100%;
	background-color: #F9E810;
	z-index: -2;
	top: 0;
	left: 50%;
	transform: translateX(-50%) skewX(30deg);
	pointer-events: none;
}


.service .left{
	width: 38%;
}
.service .right{
	width: 57%;
}

.service .inner{
	max-width: none;
	padding-left: 40px;
	padding-right: 0;
}

.service .item_list{
	flex-wrap: wrap;
	background: url(../img/greeting_bg.jpg);
	background-size: cover;
	background-position: center;
}

.service .item{
	width: 50%;
}

.service .txt_box{
	max-width: 600px;
}
.service .item a{
	position: relative;
	display: block;
	height: 250px;
	width: 100%;
	overflow: hidden;
	border-bottom: solid 1px #fff;
	border-right: solid 1px #fff;
}

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

.service .item .ab_box{
	position: absolute;
	white-space: nowrap;
	top: 50%;
	left: 50%;
	font-size: 1.8rem;
	transform: translate(-50%,-50%);
	color: #fff;
	font-weight: 600;
	z-index: 2;
}

.service .item .bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}

.service .item a:hover .bg{
	opacity: 1;
	transform: scale(1.08);
}





@media (max-width: 1200px){
	.service .flex_bet{
		flex-direction: column;
	}
	.service .left{
		width: 100%;
	}
	.service .right{
		width: 100%;
		margin-top: 60px;
	}
	.service .inner{
		padding: 0;
	}
	.service .txt_box{
		max-width: none;
	}
	.service .s_bg{
		transform: translateX(-50%) skewX(-30deg);
	}
	.service .item a{
		height: 200px;
	}
	.service .sub_ttl{
		text-align: center;
	}
	.service .m_btn{
		margin: 30px auto 0;
	}
}

@media (max-width: 650px){
	.service .item .ab_box{
		font-size: 1.5rem;
	}
	.service .item h4{
		font-size: 1.7rem;
	}
	.service .item a{
		height: 150px;
	}
	.service .right{
		margin-top: 40px;
	}
}



/* area */


.area{
	position: relative;
	background: url(../img/area_bg.jpg);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	padding: 100px 0;
	overflow: hidden;
}

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

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

.area .img{
	width: 90%;
	max-width: 700px;
	margin: -70px auto 0;
}

.area .inner{
	position: relative;
	z-index: 1;
	max-width: 1080px;
	background-color: rgb(255, 255, 255,0.8);
	padding-top: 50px;
	padding-bottom: 50px;
	padding-left: 50px;
}

@media (max-width: 650px){
	.area{
		padding: 40px 0;
	}
	.area .img{
		margin-top: -30px;
	}
	.area .inner{
		padding-left: 0;
	}
	.area .sub_ttl{
		padding-left: 30px;
	}
}




/* works */


.works{
	position: relative;
	padding-top: 140px;
	overflow: hidden;
}

.works::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #F9E810;
	width: 20%;
	height: 100%;
	top: 0;
	left: 60%;
	transform: translateX(-50%) skewX(-30deg);
	z-index: -1;
}

.works .m_btn{
	margin-top: 20px;
}

.sec_imgarea{
	margin-bottom: 140px;
	background: url(../img/greeting_bg.jpg);
	background-attachment: fixed;
	background-size: cover;
	background-position: center;
	height: 70vh;
	clip-path: polygon(0 0, 100% 0%, 100% 90%, 0% 100%);
}

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

.works .left{
	width: 220px;
}

.works .right{
	width: calc(90% - 220px);
}

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


@media (max-width: 1200px){
	.sec_imgarea{
		height: 50vh;
		margin-bottom: 100px;
	}
	.works .left{
		width: 180px;
	}
	.works .right{
		width: calc(90% - 180px);
	}
}

@media (max-width: 650px){
	.works .flex_bet{
		flex-direction: column;
	}
	.works .left{
		width: 100%;
	}
	.works .right{
		width: 100%;
	}
	.works .m_btn{
		margin: 20px auto 0;
	}
	.works .sub_ttl{
		text-align: center;
	}
	.works{
		padding-top: 70px;
	}
	.sec_imgarea{
		clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
		margin-bottom: 70px;
	}
}



/* recruit */


.rec{
	position: relative;
	padding-top: 0;
	overflow: hidden;
}

.rec .inner{
	background-color: #fff;
}

.rec::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #F9E810;
	bottom: 0;
	left: 0;
	height: calc(100% - 220px);
	width: 100%;
	z-index: -1;
}

.rec h4{
	position: relative;
	border-bottom: solid 1px #ccc;
	font-weight: 500;
	line-height: 1;
	padding-bottom: 15px;
	padding-left: 15px;
	margin-bottom: 18px;
	letter-spacing: 0.05em;
}

.rec h4::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #1b92b4;
	width: 4px;
	height: 85%;
	left: 0;
	top: -3px;
}


.rec .check_list li{
	position: relative;
	padding: 5px 0;
	padding-left: 40px;
	letter-spacing: 0.04em;
}

.rec .check_list li+li{
	margin-top: 5px;
}

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

.rec .check_list li span{
	font-size: 0.8em;
	color: #000;
}

.rec .zinzai .ttl{
	display: block;
	font-weight: 600;
	color: #1b92b4;
	line-height: 1.5;
}

.rec .zinzai li{
	letter-spacing: 0.05em;
}

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

.rec .left{
	width: 35%;
}

.rec .right{
	width: 65%;
}

.rec .right .img img{
	height: 580px;
	width: 100%;
	object-fit: cover;
}

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

.rec .sub_ttl .ja{
	padding-right: 20px;
}

.rec .item{
	width: 48%;
}

.rec .btm_area{
	margin-top: 40px;
	padding: 0 40px 40px;
}

.rec .m_btn{
	margin: 10px auto 0;
}

.rec .center{
	background-color: #f5f5f5;
	padding: 20px 0;
}

.rec .center p{
	font-weight: 600;
	width: fit-content;
	margin: 0 auto;
}

.rec .center .b_right{
	width: 50%;
}
.rec .center .b_left{
	width: 50%;
}



@media (max-width: 1200px){
	.rec .flex_bet{
		flex-direction: column;
	}
	.rec .left{
		width: 100%;
	}
	.rec .right{
		width: 100%;
		margin-top: -100px;
	}
	.rec .btm_area{
		flex-direction: column;
	}
	.rec .item{
		width: 100%;
	}
	.rec .item+.item{
		margin-top: 40px;
	}
	.rec .sub_ttl{
		margin-bottom: 0;
		text-align: center;
	}
	.rec .center{
		flex-direction: column;
	}
	.rec .center .b_left{
		width: 100%;
	}
	.rec .center .b_right{
		width: 100%;
	}
}


@media (max-width: 650px){
	.rec .right .img img{
		height: 300px;
	}
	.rec .right{
		margin-top: -50px;
	}
	.rec h4{
		font-size: 1.8rem;
	}
	.rec .btm_area{
		padding: 0 20px 20px;
	}
	.rec .zinzai .ttl{
		margin-bottom: 4px;
	}
	.rec .center p{
		font-size: 1.4rem;
	}
	.rec .center .b_left{
		padding: 0 20px;
	}
}



/* footer */

footer{
	overflow: hidden;
}

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

.foo_top .sub_ttl .ja{
	padding-right: 20px;
}

.foo_top {
	position: relative;
	background: url(../img/co_bg.jpg);
	background-size: cover;
	background-position: center;
	padding: 100px 0;
	background-attachment: fixed;
	text-align: center;
	color: #fff;
}

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

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

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

.foo_top .btn{
	width: 320px;
}

.foo_top .btn a{
	display: block;
	background-color: #F9E810;
	padding: 14px 0;
	font-size: 1.8rem;
	border: solid 1px #F9E810;
	letter-spacing: 0.08em;
	font-weight: 600;
}

.foo_top .btn a:hover{
	background-color: #fff;
}

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

.foo_top p.ch{
	line-height: 1.8;
	margin-bottom: 30px;
}


.foo_btm{
	text-align: center;
	padding: 70px 0 65px;
}

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

.foo_logo img{
	display: inline-block;
	height: 58px;
	padding-top: 14px;
    margin-right: 10px;
}

.foo_logo .txt{
	font-size: 3rem;
}


.foo_btm ul{
	margin-top: 20px;
}

.foo_btm ul li a{
	position: relative;
	display: block;
	padding-right: 25px;
	letter-spacing: 0.03em;
}

.foo_btm ul li a::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #1b92b4;
	aspect-ratio: 1 / 1;
	width: 18px;
	border-radius: 50%;
	top: 55%;
	right: 0;
	transform: translateY(-50%);
}

.foo_btm ul li+li{
	margin-left: 23px;
}

.foo_btm ul li a::after{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/foo_arrow.png);
	background-size: cover;
	background-position: center;
	width: 18px;
	aspect-ratio: 1 / 1;
	top: 54%;
	right: -1px;
	transform: translateY(-50%);
}

.foo_btm ul li a:hover{
	opacity: 0.75;
}

.copy{
	border-top: solid 1px #1b92b4;
	text-align: center;
	font-size: 1.4rem;
	padding: 10px 0;

}

.copy p{
	letter-spacing: 0.2em;
}


@media (max-width: 650px){
	.foo_top{
		padding: 70px 0;
	}
	.foo_top p.ch{
		font-size: 1.5rem;
	}
	.foo_top .btn_area{
		flex-direction: column;
		align-items: center;
	}
	.foo_top .btn+.btn{
		margin-left: 0;
		margin-top: 20px;
	}
	.foo_top .btn a{
		font-size: 1.5rem;
	}
	.foo_top .btn{
		width: 300px;
	}
	.foo_logo .txt{
		font-size: 2.2rem;
	}
	.foo_logo img{
		height: 43px;
		padding-top: 7px;
	}
	.foo_btm ul{
		flex-direction: column;
	}
	.foo_btm ul li+li{
		margin: 0;
	}
	.foo_btm ul li a{
		padding: 0;
		padding: 5px 0;
		font-size: 1.3rem;
	}
	.foo_btm ul li{
		border-bottom: solid 1px #ccc;
	}
	.foo_btm{
		padding-top: 40px;
		padding-left: 40px;
		padding-right: 40px;
		padding-bottom: 45px;
	}
	.foo_logo{
		margin-bottom: 10px;
	}
	.copy{
		font-size: 1.2rem;
	}
}






/* 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: #F9E810;
}

.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: #4d4d4f;
	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-top: 210px;
	padding-bottom: 100px;
	background: url(../img/greeting_bg.jpg);
	background-size: cover;
	background-position: center;
}


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

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

.kasou_top h2{
	font-weight: 600;
	margin-bottom: 20px;
	color: #fff;
}

.kasou_top h2 span{
	font-family: "Inter", sans-serif;
	font-size: 0.5em;
	color: #ccc;
	margin-left: 20px;
}

.kasou_top ol{
	font-size: 1.35rem;
	padding-left: 4px;
	color: #fff;
}

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

.kasou_top ol a::before{
	content: "＞";
	display: inline-block;
	position: absolute;
	top: 54%;
	right: 0;
	transform: translateY(-50%);
	font-size: 1.4rem;
}

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

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


@media (max-width: 740px){
	.kasou_top h2{
		font-size: 3.6rem;
	}
	.kasou_top{
		padding: 150px 0 70px;
	}

}



/* 事業内容 */


.p_service{
	background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f5f5f5 calc(100% - 1px)),
                    linear-gradient(90deg, transparent calc(100% - 1px), #f5f5f5 calc(100% - 1px));
	background-size: 16px 16px;
	background-repeat: repeat;
	background-position: center center;
	background-attachment: fixed;
}


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



.p_service .inner{
	max-width: 1300px;
	padding-left: 100px;
}

.p_service .item .left{
	position: relative;
	width: 40%;
}

.p_service .item .right{
	position: relative;
	width: 50%;
}

.p_service .item .right::before{
	content: "";
	display: inline-block;
	position: absolute;
	aspect-ratio: 1 / 1;
	background-color: #1b92b4;
	width: 30px;
	top: 10px;
	right: 0;
}
.p_service .item .right::after{
	content: "";
	display: inline-block;
	position: absolute;
	aspect-ratio: 1 / 1;
	background-color: #F9E810;
	width: 30px;
	top: 40px;
	right: -30px;
}


.p_service .item .ac_txt{
	font-family: "Inter", sans-serif;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	font-size: 10rem;
	color: #1b92b4;
	font-style: italic;
	font-weight: bold;
	line-height: 1;
	transform: translate(-100%,-10%);
}

.p_service .item .img img{
	aspect-ratio: 1 / 1.2;
	object-fit: cover;
	width: 100%;
}

.p_service .item .img{
	position: relative;
	transform: skewX(-5deg);
}

.p_service .item .img::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #F9E810;
	width: 100%;
	height: 100%;
	top: 0;
	left: -80px;
	z-index: -1;
}

.p_service h3{
	font-weight: 600;
	margin-bottom: 25px;
}

.p_service .item{
	background-color: #fff;
	padding-right: 60px;
	border: solid 2px #F9E810;
}

.p_service h3 .mtl{
	font-size: 0.6em;
	font-weight: lighter;
	background-color: #eee;
	display: inline-block;
	padding: 0 5px;
	color: #1b92b4;
	font-style: italic;
	margin-left: 20px;
	line-height: 1;
}

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

.p_service .item h4{
	position: relative;
	font-weight: 500;
	padding-left: 16px;
	margin-top: 20px;
}

.p_service .item h4::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #1b92b4;
	height: 3px;
	width: 10px;
	top: 50%;
	left: 0;
}

.p_service .item .mini{
	font-size: 0.85em;
}


.btn_sec{
	position: relative;
	background-color: #F9E810;
	overflow: hidden;
	padding: 100px 0;
}

.btn_sec::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #fff;
	top: 0;
	left: 50%;
	width: 80%;
	height: 100%;
	z-index: 0;
	transform: translateX(-50%) skewX(-15deg);
}

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

.btn_sec .item{
	width: 46%;
}

.btn_sec .item a{
	position: relative;
	display: block;
	width: 100%;
	text-align: center;
	color: #fff;
	letter-spacing: 0.03em;
	font-weight: 500;
	aspect-ratio: 3 / 2;
	
}

.btn_sec .item a:hover img{
	transform: skewX(-10deg);
}


.btn_sec .item a::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: rgb(27, 146, 180);
	opacity: 0.5;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 2;
	transition: all .3s;
}

.btn_sec .item a:hover::before{
	opacity: 0.2;
	transform: skewX(-10deg);
}
.btn_sec .item a:hover::after{
	transform: translate(-50%,-50%) skewX(-10deg);
}

.btn_sec .item a::after{
	content: "";
	display: inline-block;
	position: absolute;
	width: 96%;
	aspect-ratio: 3 / 2;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	border: solid 2px #F9E810;
	z-index: 3;
	transition: all .3s;
}

.btn_sec .item p{
	position: absolute;
	color: #fff;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	white-space: nowrap;
	z-index: 3;
	letter-spacing: normal;
	font-weight: 600;
}



@media (max-width: 1200px){
	.p_service .flex_bet{
		flex-direction: column;
	}
	.p_service .item .left{
		width: 100%;
	}
	.p_service .item .img img{
		aspect-ratio: 3 / 2;
	}
	.p_service .item{
		padding-right: 0;
	}
	.p_service .inner{
		padding-left: 0;
		width: 80%;
	}
	.p_service .item .img{
		width: calc(100% - 100px);
		margin: 0 0 20px auto;
	}
	.p_service .item .ac_txt{
		transform: translate(-14%,-10%);
	}
	.p_service .item .right{
		width: 100%;
	}
	.p_service .item .right .txt_box{
		padding-left: 30px;
		padding-right: 30px;
		padding-bottom: 30px;
	}
	.p_service h3{
		margin-bottom: 10px;
	}
	.p_service .item+.item{
		margin-top: 80px;
	}
	.p_service .item .ac_txt{
		font-size: 8rem;
	}
	.p_service .item .right::before{
		right: 30px;
		top: -30px;
	}
	.p_service .item .right::after{
		right: 0;
		top: 0px;
	}
}

@media (max-width: 740px){
	.p_service .inner{
		width: 90%;
	}
	.p_service h3{
		font-size: 2rem;
		margin-bottom: 5px;
	}
	.p_service .item .right .txt_box{
		padding-left: 15px;
		padding-right: 15px;
		padding-bottom: 15px;
	}
	.p_service .item .ac_txt{
		font-size: 4.6rem;
	}
	.p_service .item .img{
		width: calc(100% - 50px);
	}
	.p_service .item .img::before{
		left: -40px;
	}
	.p_service .item p{
		line-height: 1.9;
		font-size: 1.3rem;
	}
	.p_service .item+.item{
		margin-top: 50px;
	}
	.p_service .item .right::before{
		width: 20px;
	}
	.p_service .item .right::after{
		width: 20px;
		top: -10px;
		right: 10px;
	}
	.p_service .item h4{
		font-size: 1.6rem;
	}
	.btn_sec .inner{
		flex-direction: column;
	}
	.btn_sec .item{
		width: 80%;
		margin: 0 auto;
	}
	.btn_sec .item a{
		font-size: 2rem;
		aspect-ratio: 5 / 3;
	}
	.btn_sec .item+.item{
		 margin-top: 20px;
	}
	.btn_sec{
		padding: 50px 0;
	}
}





/* 施工実績 */


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

.experience .inner{
	width: 94%;
}

.info_table02{
	width: 100%;
	min-width: 610px;
}

.iwrap{
	overflow-x: scroll;
}

.info_table02 th{
	font-size: 2rem;
	letter-spacing: 0.05em;
	background-color: #F9E810;
	padding: 10px 0;
	border-right: solid 2px #fff;
}

.info_table02 td{
	font-size: 1.8rem;
	background-color: #eee;
	padding: 10px 0;
	border-bottom: solid 2px #fff;
	border-right: solid 2px #fff;
}

.info_table02 th, .info_table02 td{
	width: calc(100% / 3);
	text-align: center;
}


@media (max-width: 1200px){
	.info_table02 th{
		font-size: 1.6rem;
	}
	.info_table02 td{
		font-size: 1.6rem;
	}
}




/* 採用情報 */

.bosyu{
	background-color: #f5f5f5;
}


.apply{
	position: relative;
	color: #fff;
	background-color: #F9E810;
}


.apply table th{
	color: #fff;
}

.apply table th,.apply table td{
	border-color: #fff;
}

.apply .inner{
	position: relative;
	background: url(../img/recruit.jpg);
	background-size: cover;
	background-position: center;
	border-radius: 20px;
	width: 94%;
}

.apply .wrap{
	position: relative;
	padding: 50px 0;
	max-width: 960px;
	width: 90%;
	margin: 0 auto;
	z-index: 1;
}

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

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

.apply .sub_ttl .ja{
	color: #fff;
	padding-right: 20px;
}

.apply .info_table tr:last-child th, .apply .info_table tr:last-child td {
	border-color: #fff;
}

.apply .m_btn{
	margin: 30px auto 0;
}




/* 会社概要 */


.overview{
	position: relative;
}

.overview .inner{
	position: relative;
}

.sti_left{
	width: 300px;
	height: fit-content;
	position: sticky;
	top: 300px;
}

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

.overview .ac_img{
	position: absolute;
	width: 40%;
	min-width: 500px;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	opacity: 0.1;
}

.info_table{
	width: 100%;
}

.info_table th{
	width: 20%;
	color: #289fbf;
}

.info_table td{
	width: 80%;
}

.info_table th,.info_table td{
	padding: 15px 0;
	border-top: solid 1px #ccc;
	padding-left: 10px;
}

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

.access{
	position: relative;
	background-color: #f5f5f5;
}

.access::before{
	content: "";
    display: inline-block;
    position: absolute;
    background-color: #F9E810;
    width: 20%;
    height: 100%;
    top: 0;
    left: 60%;
    transform: translateX(-50%) skewX(-30deg);
    z-index: 0;
}

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



@media (max-width: 1200px){
	.bosyu .flex_bet{
		flex-direction: column;
	}
	.sti_left{
		width: 100%;
		position: static;
	}
	.sti_right{
		width: 100%;
	}
	.overview .flex_bet{
		flex-direction: column;
	}
	.access .flex_bet{
		flex-direction: column;
	}
}


@media (max-width: 740px){
	.info_table th{
		width: 30%;
	}
	.info_table td{
		width: 70%;
	}
	.bosyu .sub_ttl{
		text-align: center;
	}
	.apply .inner::before{
		border-radius: 10px;
	}
	.apply .wrap{
		padding: 40px 0 50px;
	}
	.access .map iframe{
		height: 260px;
	}
	.apply{
		padding: 30px 0;
	}
	.access{
		overflow: hidden;
	}
}




/* お問い合わせ */


.co_top .item{
	background-color: #eee;
	width: 48.5%;
	text-align: center;
	padding: 18px 0;
}

.co_top p.fir{
	text-align: center;
	margin-bottom: 30px;
}

.co_top h3{
	position: relative;
	font-weight: 500;
	letter-spacing: 0.03em;
	margin-bottom: 15px;
}

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

.co_top .num{
	letter-spacing: 0.1em;
	font-weight: 600;
	line-height: 1;
	justify-content: center;
	margin-bottom: 10px;
	color: #252525;
}

.co_top span{
	display: inline-block;
	background-color: #1b92b4;
	border-radius: 50%;
	aspect-ratio: 1 / 1;
	width: 56px;
	height: 56px;
	margin-right: 20px;
	line-height: 1.2;
}

.co_top span i{
	display: inline-block;
	font-size: 0.65em;
	color: #f5f5f5;
	padding: 0;
	padding-left: 2px;
}

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

.co_top ul li{
	position: relative;
	padding-left: 22px;
	letter-spacing: 0.04em;
}

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

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


.mail_sec{
	background-color: #1b92b4;
	overflow: hidden;
}

.mail_sec .s_bg {
    display: inline-block;
    position: absolute;
    width: 25%;
    height: 100%;
    background-color: #F9E810;
    z-index: 0;
    top: 0;
    left: 50%;
    transform: translateX(-50%) skewX(30deg);
    pointer-events: none;
}

.mail_sec .inner{
	position: relative;
	background-color: #fff;
	z-index: 1;
}

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

.mail_sec .inner{
	max-width: 1380px;
	margin: 0 auto;
	padding: 70px 4%;
}

.mail_sec h4{
	position: relative;
	font-weight: 500;
}


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

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


input{
	appearance: auto;
}


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

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


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

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

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

textarea{
	padding: 10px;
	font-size: 1.6rem;
	background: #eee;
	width: 100% !important;
	height: 120px !important;
}


.contact_table{
	width: 100%;
}

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


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

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

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

.contact_table td{
	padding: 20px 0;
	width: 70%;
	border-bottom: solid 1px #ccc;
}


button[type="submit"]{
	font-size: 1.8rem;
	padding: 6px 0;
}

.form_btn button{
	cursor: pointer;
	display: block;
	margin: 0 auto 5px;
	padding: 10px 0 7px;
	letter-spacing: 0.05em;
	text-align: center;
	width: 230px;
	transition: all 0.5s;
	background: #1b92b4;
	border: solid 2px #1b92b4;
	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: #1b92b4;
	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;
	flex-wrap: wrap;
}

.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: 0.5% 0;
	padding-left: 1%;
	line-height: 200%;
}

.form_accordion h4{
	margin-top: 10px;
	letter-spacing: 0.03em;
	position: relative;
	padding-left: 26px;
	padding-top: 5px;
	border-bottom: solid 1px #ccc;
	color: #252525;
}

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

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

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

.Label{
	font-size: 1.6rem;
	letter-spacing: 2px;
	padding: 0.8% 1%;
	display: block;
	color: #1b92b4;
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.1em;
	background-color: #eee;
	border-radius: 30px;
}

.Label::before{
	content: "";
	width: 12px;
	height: 12px;
	border-top: 2.5px solid #1b92b4;
	border-right: 2.5px solid #1b92b4;
	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;
}

.contact_table tr.ib td div{
	display: inline-block;
}

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



@media (max-width: 1200px){
	.co_top .co_link{
		flex-direction: column;
		align-items: center;
	}
	.co_top .item+.item{
		margin-top: 40px;
	}
	.co_top .item{
		width: 80%;
		padding: 20px 10px 24px;
	}
	.contact_table th,.contact_table td{
		display: block;
		width: 100%;
	}
	.contact_table th{
		border-bottom: 0px;
		padding-bottom: 0;
	}
	.mail_sec .inner{
		width: 94%;
	}
	.mail_sec{
		padding: 50px 0;
	}
}

@media (max-width: 740px){
	.co_top .item{
		width: 100%;
		font-size: 1.3rem;
	}
	.co_top h3{
		font-size: 2rem;
	}
	.co_top .num{
		font-size: 2.8rem;
		letter-spacing: 0.05em;
	}
	.co_top span{
		width: 38px;
		height: 38px;
		margin-right: 12px;
	}
	.co_top .item p.s_f_txt{
		font-size: 1.4rem;
	}
	.co_top ul{
		margin-top: 5px;
	}
	.co_top .item+.item{
		margin-top: 20px;
	}
	.mail_sec .inner{
		padding: 50px 10px;
	}
	.contact_table tr.ib td div+div{
		margin-left: 10px;
	}
	.contact_table td{
		padding-top: 10px;
	}
	.form_attention{
		font-size: 1.2rem;
		margin-top: 20px;
	}
	.form_accordion{
		margin-top: 20px;
	}
	.Label{
		font-size: 1.4rem;
		padding: 7px 0;
	}
	.form_btn button{
		font-size: 1.3rem;
		margin-top: 25px;
	}
	.form_accordion p{
		font-size: 1.2rem;
	}
	.form_accordion h4::before{
		width: 13px;
		height: 13px;
	}
	.form_accordion h4{
		padding-left: 18px;
	}
	.contact_table th span, .form_attention span{
		font-size: 1.2rem;
	}
	.postal_btn{
		margin-left: 0;
		margin-top: 10px;
	}
	.co_top p.fir{
		font-size: 1.4rem;
		text-align: left;
		margin-bottom: 15px;
	}
}





/*===news-detail.php用==============================*/
#news-detail #up_ymd{
	font-size: 14px;
	letter-spacing: 0.05em;
	font-weight: bold;
	color: #1b92b4;
}
#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 #1b92b4;
	color: #1b92b4;
	padding: 10px 0;
}

.g_btn a:hover{
	background-color: #1b92b4;
	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: #1b92b4;
	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: #1b92b4;
	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 #1b92b4;
    color: #1b92b4;
    letter-spacing: 2px;
    padding: 15px 0;
    text-align: center;
}

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