@charset "utf-8";


header *,
main * {
	box-sizing: border-box;
}


p.logo {
	/* position: fixed; */
  position: absolute;
	z-index: 1;
	top: 20px;
	width :82px;
	height: 36px;
}
p.logo img {
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
p.logo .black,
p.logo.black .white {
	opacity: 0;
}
p.logo .white,
p.logo.black .black {
	opacity: 1;
}

img.fluid {
	width: 100%;
}


@media screen and (min-width: 769px) {

html, body {
	width: 100%;
	height: 100%;
	background: #fff;
	color: #333;
	/* overflow: hidden; */
}
main {
	display: block;
}

.sp {
	display: none !important;
}
section {
	position: relative;
}
.inner {
	position: relative;
	width: 1024px;
	margin: 0 auto;
}
.container .row {
	display: flex;
	flex-wrap: wrap;
}





/* request
---------------------------------------------*/
.request {
	position: fixed;
	top: 50px;
	right: -63px;
	z-index: 1;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.request.active {
	right: 0;
}
.request:hover {
	opacity: 0.8;
}

}



/* -----------------------------------------------------------------------------

	footer
  
----------------------------------------------------------------------------- */
footer #contact {
	padding: 80px 0;
}
footer #contact h2 {
	margin: 0 auto 40px;
	text-align: center;
}
footer #contact ul {
	display: flex;
	justify-content: space-between;
	width: 940px;
	margin: 0 auto;
}
footer #contact ul li {
	width: 301px;
}
footer #contact ul li:hover {
	background: #eee;
}

footer #call {
	padding: 50px 0;
	background: #33393d;
	text-align: center;
}
footer #call a {
	display: block;
	width: 420px;
	margin: 0 auto;
}
footer #call a img {
	width: 100%;
}

footer #copyright {
	padding: 30px 0;
	background: #000;
	text-align: center;
	color: #727a7f;
}
footer #copyright small {
	font-size: 11px;;
}