@charset "UTF-8";

/*comming-soon 後日解除*/
a.comming-soon{
	display: block;
	pointer-events: none !important;
	position: relative;
}
a.comming-soon::before{
	content: "Comming Soon...";
	position: absolute;
	left: 50%;
	top: 50%;
	color: #fff;
	transform: translate(-50%,-50%);
	white-space: nowrap;
	text-align: center;
	z-index: 1;
}
a.comming-soon img{
	opacity: 0.7;
}

#top_business a.comming-soon::before{
	content: "Comming Soon..." !important;
	position: absolute;
	width: auto !important;
	height: auto !important;
	bottom: auto !important;
	left: 50% !important;
	border: none !important;
	opacity: 1 !important;
	top: 27% !important;
	transform: translateX(-50%);
}
#top_business ul.fl_box > li:last-of-type::before,
#top_business ul.fl_box > li:last-of-type::after{
	display: none;
}



/*-----------------------------------------------
__Header
-----------------------------------------------*/
header{
	position: fixed;
	z-index: 999;
	left: 0;
	top: 0;
	width: 100%;
	height: 80px;
	background: rgba(255,255,255,0.8);
	transition: all ease .5s;
  }
  header:hover{
	background: rgba(255,255,255,1);
  }
  .header_inner {
	position: relative;
	display: flex;
	justify-content: space-between;
	height: 100%;
  }

header #logo{
	padding: 10px;
	width: 25%;
}
header #logo img{
	max-width: 275px;
}

/*-----------------------------------------------
__Global Navi
-----------------------------------------------*/
header nav{
	width: 70%;
	max-width: 1280px ;
}
#gl_nv{
	margin-right: 0;
	margin-left: auto;
	padding-right: 10px;
	display: flex;
	justify-content: flex-end;
	height: 100%;
}
#gl_nv > li{
	font-weight:bold;
	text-align:center;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
#gl_nv > li > a{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	color:#283338;
	padding:10px 30px;
	position: relative;
	transition: .5s;
}
#gl_nv > li > a:hover,#gl_nv > li.current > a{
	color: #1b52aa;
}
#gl_nv > li.layer > a::after{
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 14px;
	width: 5px;
	height: 5px;
	background: #c3cfd8;
	border-radius: 50%;
	transition: all ease .3s .1s;
}
#gl_nv > li.layer a.current::after,
#gl_nv > li.layer a:hover::after{
	bottom: 10px;
	background: #1b52aa;
}
#gl_nv > li a.li_contact{
	display: inline-block;
	height: auto;
	background: #1b52aa;
	color: #fff;
}
#gl_nv > li a.li_contact:hover{
	background:#154387;
	transform: translateY(5px);
}
#gl_nv > li a.li_contact::before{
	content: "";
	display: inline-block;
	vertical-align: middle;

	margin-right: 5px;
	width: 21px;
	height: 15px;
	background: url(../images/ic_mail_wh.png) no-repeat;
}
#gl_nv input#nv_btn,
#gl_nv > li.pc_no{
	display: none;
}

/*多階層メニュー*/
#gl_nv > li.layer .block{
	position: absolute;
	opacity: 0;
	transform: translateY(-10px);

	top: 80px;
	left: 0;

	padding: 0 30px;
	width: 100%;
	background: #1b52aa;
	transition: all ease .5s 0s;

	overflow: hidden;
	max-height: 0;
}
#gl_nv > li.layer .block:hover,
#gl_nv > li.layer:hover .block{
	padding: 30px;

	max-height: 9999px;
	opacity: 1;
	transform: translateY(0);
	transition: all ease .5s .3s;
	filter: drop-shadow(0 3px 15px rgba(0,0,0,0.2));
}
#gl_nv > li dl{
	width: 90%;
	display: flex;
	text-align: left;
}
#gl_nv > li dt{
	width: 20%;
	font-size: 1.3em;
	font-weight: 400 !important;
	font-family: 'Zen Old Mincho', serif;
}
#gl_nv > li dt a:hover{
	opacity: .5;
}
#gl_nv > li dd{
	width: 80%;
	font-size: 90%;
}
#gl_nv > li ul{
	display: flex;
	flex-wrap: wrap;
}
#gl_nv > li ul li{
	width: calc(100% / 4);
	min-height: 60px;
	margin-bottom: 10px;
	padding: 0 1%;
}
#gl_nv > li dl a{
	color: #fff;
}
#gl_nv > li dl a em{
	transition: all ease .3s;
}
#gl_nv > li dl a:hover em{
	opacity: .5;
}
#gl_nv > li dt small{
	display: block;
	color: rgba(255,255,255,0.6);
}
#gl_nv > li dd figure{
	aspect-ratio: 3 / 2;
	margin-bottom: 1em;
	overflow: hidden;
	position: relative;
}
#gl_nv > li dd figure::before,#gl_nv > li dd figure::after{
	content: "";
	position: absolute;
	height: 100%;

	right: 0;
	top: 0;
	z-index: 1;
	background: rgba(255,255,255,0.6);
}
#gl_nv > li a:hover figure::before{
	width: 0;
	animation: slide_bl 0.4s linear 0s;
}
#gl_nv > li a:hover figure::after{
	width: 100%;
	opacity: 0;
	animation: slide_bg 0.4s linear 0s;
}
@keyframes slide_bl{
	0%{
		width: 100%;
		opacity: 0;
	}
	10%{
		opacity: 1;
	}
	100%{
		opacity: 1;
		width: 0;
	}
}

@keyframes slide_bg{
	0%{
		opacity: 1;
	}
	100%{
		opacity: 0;
	}
}

#gl_nv > li dd figure img{
	transition: all ease 5s;
}
#gl_nv > li a:hover figure img{
	transform: scale(1.2);
}

/* 施工事例 */
#gl_nv > li figcaption{
	position: absolute;
	pointer-events: none;
	top: 0;
	right: 0;
	display: block;
	color: #fff;
	font-size: 80%;
	background: #1b52aa;
	font-weight: normal;
	padding: 0 10px;
}
#gl_nv > li dd span{
	color: rgba(255,255,255,0.6);
	font-weight: normal;
	font-size: 90%;
}
#gl_nv > li dd span::before{
	content: "｜";
    vertical-align: baseline;
}

/*-----------------------------------------------
__Main
-----------------------------------------------*/
main section,main section.wrap{
	margin-bottom: 80px;
}

.bg_gr{
    position: relative;
    padding-bottom: 80px;
    margin-bottom: 80px;
}
.bg_gr::before{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 50%;
	pointer-events: none;
	background: url(../images/bg_noise2.gif) repeat;
	opacity: 1;
}
.bg_gr > .wrap{
    background: #fff;
    padding: 40px;
	margin-bottom: 0;
	position: relative;
	z-index: 1;
}

#page_img{
	height: 35vh;
	min-height: 450px;
	position: relative;
	z-index: -1;
}
#page_img::before,#page_img::after{
	content: "";
	position: absolute;
	height: 100%;

	right: 0;
	top: 0;
	z-index: 1;
	background: #1b52aa;
}
#page_img::before{
	width: 0;
	animation: slide_bl 0.3s linear 0s;
}
#page_img::after{
	width: 100%;
	opacity: 0;
	animation: slide_bg 0.4s linear 0s;
}
main #page_img h1{
	position: absolute;
	z-index: 2;
	left: 50%;
	top: calc(50% + 40px);
	transform: translate(-50%,-50%);
	font-size: 2.2em;
	text-align: center;
	color: #fff;
	letter-spacing: 0.15em;
	width: 90%;

	filter: drop-shadow(0 0 10px rgba(0,0,0,0.3));
	opacity: 0;
	animation: h1-in 1s forwards 0.8s;
}
@keyframes h1-in{
	0%{
		opacity: 0;
		transform: translateY(calc(-50% + 20px)) translateX(-50%);
	}
	100%{
		opacity: 1;
		transform: translateY(calc(-50% + 0)) translateX(-50%);
	}
}
#page_img figure{
	width: 100%;
	height: 100%;
	background: #154387;
}
#page_img figure img{
	opacity: 0.7;
}
#page_img figure::after{
	content: "";
	position: absolute;
	z-index: 1;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	width: 94%;
	max-width: 1180px;
	height: 60px;
	background: #fff;

	opacity: 0;
	animation: page_img_bg-in .5s forwards .6s;
}
@keyframes page_img_bg-in{
	0%{
		opacity: 0;
		bottom: -20px;
	}
	100%{
		opacity: 1;
		bottom: 0;
	}
}
main h1{
	font-size: 2.2em;
}
main h2{
	font-size:1.6em;
	clear:both;
	margin-top:1.5em;
	margin-bottom:1em;
	letter-spacing: 0.15em;
}
main h3{
	font-size:1.2em;
	clear:both;
	margin-top:1.5em;
	margin-bottom:1em;
	padding-left: 12px;
	position: relative;
}
main h3::before{
	content: "";
	position: absolute;
	left: 0;
	top: 0.1em;
	width: 5px;
	height: 1.2em;
	background: #1b52aa;
}
.fl_box.midashi{
	padding: 60px 0;
	justify-content: space-between;
	width: 90%;
}
.fl_box.midashi > h2{
	width: 20%;
	margin-top: 0 !important;
}
.fl_box.midashi > .content{
	width: 70%;
}

ul.page_navi{
	margin: -10px auto 50px auto;
	display: flex;
	flex-wrap: wrap;
	animation: navi-in 1s forwards 0.8s;
	opacity: 0;
}
@keyframes navi-in{
	0%{
		opacity: 0;
		transform: translateY( 20px);
	}
	100%{
		opacity: 1;
		transform: translateY(0);
	}
}
ul.page_navi > li{
	margin-right: 2em;
	min-width: calc(25% - 2em);
}
ul.page_navi > li:last-child{
	margin-right: 0;
}
ul.page_navi > li a{
	display: block;
	border-bottom: 1px solid #6c8193;
	color: #6c8193;
	padding: 15px 25px 15px 0;
	position: relative;
}
ul.page_navi > li a:hover{
	border-color: #154387;
	color: #154387;
}
ul.page_navi > li a::after{
	content: "";
	position: absolute;
	right: 5px;
	bottom: 23px;

	width: 8px;
	height: 8px;
	border-right: 1px solid #6c8193;
	border-bottom: 1px solid #6c8193;
	transform: rotate(45deg);
	transition: all ease .3s;
}
ul.page_navi > li a:hover::after{
	border-color: #154387;
	bottom:18px;
}

div#page_list{
	background: rgba(182,208,221,0.2);
	padding: 12px 0;
	font-size: 80%;
	margin-top: 50px;
}
#page_list ul{
	width: 90%;
	margin: 0 auto;
	display: flex;
}
#page_list ul li a{
	position: relative;
	color: #283338;
	text-decoration: none;
	padding-right: 20px;
}
#page_list ul li a::after{
	content: "";
	position: absolute;
	top: 50%;
	right: 5px;

	width: 6px;
	height: 6px;
	border-right: 1px solid #283338;
	border-bottom: 1px solid #283338;
	transform: rotate(-45deg) translateY(-50%);
}

ul.list > li{
	position: relative;
	padding-left:15px;
	margin-bottom:0.5em;
}
ul.list > li::before{
	content: "";
	position: absolute;
	left: 0;
	top: 0.65em;

	width: 4px;
	height: 4px;
	background: #283338;
	border-radius: 50%;
}
ol.list{
	counter-reset: list;
}
ol.list > li{
	counter-increment: list;
	position: relative;
	padding-left: 35px;
	margin-bottom:1em;
}
ol.list > li::before{
	content: counter(list) "";
	position: absolute;
	left: 0;
	top: 0;
	font-size: 95%;
	width: 1.5em;
	text-align: center;
	border: 1px solid #c3cfd8;
}
ol.list > li::after{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6px 6px 0 0;
	border-color: #c3cfd8 transparent transparent transparent;
}

main dl dt{
    display: inline-block;
    font-size: 90%;
    padding: 0 10px;
    border: 1px solid #283338;
    color: #283338;
	margin-bottom: 5px;
}

.bg_bl{
	background: #1b52aa;
}

.btn{
	padding: 10px;
}
.btn > a{
	display: block;
	max-width: 310px;
	text-decoration: none !important;
	color: #283338 !important;
	font-weight: bold;
	position: relative;
	text-align: center;
}
.btn.ta_center > a{
	margin: 0 auto;
}
.btn > a span{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}
.btn > a em{
	padding: 15px;
	display: block;
	position: relative;
	background: rgba(182,208,221,0.2);
	z-index: 2;
}
.btn > a em::after{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
	width: 0;
	height: 100%;
	background: rgba(182,208,221,0.2);
	transition: all ease 0.1s 0s;
	z-index: -1;
}
.btn > a:hover em::after{
	width: 100%;
	transition: all ease-in .3s .3s;
}

.btn > a::before,.btn > a::after,
.btn > a span::before,.btn > a span::after{
	content: "";
	position: absolute;
	width: 8px;
	height: 8px;
	transition: all ease .3s;
}
.btn > a::before,.btn > a::after{
	top: -10px;
}
.btn > a::before{
	left: -10px;
	border-left: 1px solid #283338;
	border-top: 1px solid #283338;
}
.btn > a::after{
	right: -10px;
	border-right: 1px solid #283338;
	border-top: 1px solid #283338;
}

.btn > a span::before,.btn > a span::after{
	bottom: -10px;
}
.btn > a span::before{
	left: -10px;
	border-left: 1px solid #283338;
	border-bottom: 1px solid #283338;
}
.btn > a span::after{
	right: -10px;
	border-right: 1px solid #283338;
	border-bottom: 1px solid #283338;
}

.btn > a:hover::before,.btn > a:hover::after{
	top: 0px;
}
.btn > a:hover span::before,.btn > a:hover span::after{
	bottom: 0px;
}
.btn > a:hover::before,.btn > a:hover span::before{
	left: 0;
}
.btn > a:hover::after,.btn > a:hover span::after{
	right: 0;
}

.bg_bl .btn > a::before,.bg_bl .btn > a::after,
.bg_bl .btn > a span::before,.bg_bl .btn > a span::after{
	border-color: #fff;
}

.bg_bl .btn > a{
	color: #fff !important;
}



.link_photo img{
	aspect-ratio: 3 / 2;
	transition: all ease 5s !important;
}
.link_photo a{
	display: block;
	position: relative;
	overflow: hidden;
}
.link_photo a:hover img{
	transform: scale(1.2);
}
.link_photo a::before,.link_photo a::after{
	content: "";
	position: absolute;
	height: 100%;

	right: 0;
	top: 0;
	z-index: 1;
	background: #1b52aa;
}
.link_photo a:hover::before{
	width: 0;
	animation: slide_bl 0.4s linear 0s;
}
.link_photo a:hover::after{
	width: 100%;
	opacity: 0;
	animation: slide_bg 0.4s linear 0s;
}


.news_box{
	display: flex;
	flex-wrap: wrap;
}
.news_box > li{
	width: calc(100% / 3);
}
.news_box > li a{
	color: #283338 !important;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 0 30px 15px 30px;
	border-right: 2px solid #DAE1E7;
}
.news_box > li:nth-child(3n) a{
	border-right: none;
}
.news_box > li a:hover{
	opacity: .5;
}
.news_box a small{
	display: block;
	opacity: .5;
}
.news_box a em{
	font-weight: bold;
}


table{
	width: 100%;
	margin-bottom: 20px;
	border-top: 1px solid #DAE1E7;
}
table tr{
	border-bottom: 1px solid #DAE1E7;
}
table th{
	padding: 15px 10px;
	width: 25%;
	border-right: 1px solid #DAE1E7;
}
table td{
	padding: 15px 10px;
	width: 75%;
}

dl.accordion > dt{
	cursor: pointer;
}


#top_business ul.fl_box{
	justify-content: space-between;
}
#top_business ul.fl_box > li{
	width: calc(25% - 1px);
	position: relative;
}
#top_business ul.fl_box a{
	position: relative;
	display: block;
	height: 100%;
}
#top_business ul.fl_box a:hover{
	background: rgba(182,208,221,0.2);
}
#top_business ul.fl_box a div{
	transition: all ease .5s;
}
#top_business ul.fl_box a:hover div{
	transform: scale(0.9);
}
#top_business ul.fl_box a::before,#top_business ul.fl_box a::after,
#top_business ul.fl_box > li::before,#top_business ul.fl_box > li::after{
	content: "";
	position: absolute;
	width: 8px;
	height: 8px;
	transition: all ease .5s;
	opacity: 0;
}
#top_business ul.fl_box a::before,#top_business ul.fl_box a::after{
	top: -5px;
}
#top_business ul.fl_box a::before{
	left: -5px;
	border-left: 1px solid #283338;
	border-top: 1px solid #283338;
}
#top_business ul.fl_box a::after{
	right: -5px;
	border-right: 1px solid #283338;
	border-top: 1px solid #283338;
}
#top_business ul.fl_box > li::before,#top_business ul.fl_box > li::after{
	bottom: -5px;
}
#top_business ul.fl_box > li::before{
	left: -5px;
	border-left: 1px solid #283338;
	border-bottom: 1px solid #283338;
}
#top_business ul.fl_box > li::after{
	right: -5px;
	border-right: 1px solid #283338;
	border-bottom: 1px solid #283338;
}

#top_business ul.fl_box a:hover::before,#top_business ul.fl_box a:hover::after,
#top_business ul.fl_box > li:hover::before,#top_business ul.fl_box > li:hover::after{
	animation: top_business 0.2s forwards 0s;
}
#top_business ul.fl_box a:hover::before{
	top: 0px;
	left: 0px;
}
#top_business ul.fl_box a:hover::after{
	top: 0px;
	right: 0px;
}
#top_business ul.fl_box > li:hover::before{
	bottom: 0px;
	left:0px
}
#top_business ul.fl_box > li:hover::after{
	bottom: 0px;
	right: 0px;
}

@keyframes top_business{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}

#top_business ul.fl_box figure{
	aspect-ratio: 3 / 2;
	overflow: hidden;
	position: relative;
}
#top_business ul.fl_box figure::before,#top_business ul.fl_box figure::after{
	content: "";
	position: absolute;
	height: 100%;

	right: 0;
	top: 0;
	z-index: 1;
	background: #1b52aa;
}
#top_business ul.fl_box a:hover figure::before{
	width: 0;
	animation: slide_bl 0.4s linear 0s;
}
#top_business ul.fl_box a:hover figure::after{
	width: 100%;
	opacity: 0;
	animation: slide_bg 0.4s linear 0s;
}
#top_business ul.fl_box dt{
	display: block;
	border: none;
	text-align: center;
	margin: 20px auto;
	font-weight: bold;
	color: #283338;
	font-size: 110%;
}
#top_business ul.fl_box dt::after{
	content: "";
	display: block;
	width: 25px;
	height: 2px;
	background:#1b52aa;
	margin: 15px auto 0 auto;
}
#top_business ul.fl_box dd{
	color: #283338 !important;
	font-size: 90%;
	padding: 0 10px;
}
#top_business ul.fl_box dd em{
	color: #b23344;
	padding: 0 0.25em;
	font-weight: bold;
}

#greeting p,#greeting ul,#greeting span{
    font-size: 115%;
}
#greeting ul{
    margin: 1.5em 1em;
}
#greeting ul em{
    font-weight: bold;
    color: #1b52aa;
    border-bottom: 2px solid #1b52aa;
    display: inline-block;
    padding: 0 2px;
}
#greeting span{
    margin-top: 1em;
    display: block;
    text-align: right;
}
#greeting p{
	line-height: 1.8;
	margin-bottom: 0.5em;
}

/*-----------------------------------------------
__Footer
-----------------------------------------------*/
footer{
	background:#f0f4f7;
}
footer #f_contact{
	background: #fff;
	padding: 50px 0;
	text-align: center;
}
footer #f_contact h2{
	font-size: 1.6em;
	margin-bottom: 1em;
}
footer #f_contact a.tel{
	color: #1b52aa;
	font-weight: 700;
}
footer #f_contact a.tel small{
	font-size: 120%;
	padding-right: 0.5em;
}
footer #f_contact a.tel em{
	font-size: 2.6em;
}
footer #f_contact .btn a{
	margin: 30px auto 0 auto;
	max-width: 300px;
}
footer #f_contact .btn a em::before{
	content: "";
	display: inline-block;
	vertical-align: middle;

	margin-right: 5px;
	width: 21px;
	height: 15px;
	background: url(../images/ic_mail_cl.png) no-repeat;
}
footer address{
	padding:50px 0;
	overflow:hidden;
	justify-content: space-between;
}
footer address div{
	width: 50%;
}
footer address div small{
	display:block;
	clear: both;
	color:#6c8193;
	margin-top: 20px;
	margin-left: 3.5em;
}
footer address dt{
	font-weight: bold;
	margin-bottom: 1em;
}
footer address dt::before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	margin-right: 5px;
	width: 5px;
	height: 1.2em;
	background: #1b52aa;
}
footer address dd span{
	padding-left: 1em;
}
footer address dd small{
	display: inline-block;
	margin-right: 0.5em;
}

/*-----------------------------------------------
__Common
-----------------------------------------------*/
.fl_box{
	display:flex;
	justify-content: space-between;
	width:100%;
}

.pc_no{
	display:none;
}
a.tel{
	pointer-events:none;
}


.ta_center{
	text-align:center;
}
.f_right{
	float: right;
}
.f_left{
	float: left;
}
.c_both{
	clear: both;
}
.img_line{
	margin: 5px;
	padding: 2px;
	border: 1px solid #ccc;
}
.icon{
	margin: 0 5px;
	vertical-align: middle;
}

@media print{
	header{
		position: absolute;
	}
}