@charset "utf-8";
/*=============================================================
 contents Layout
=============================================================*/
/* container
-------------------------------------------------------------*/
#container{
	overflow:hidden;
	padding-top:70px;
}
/*=============================================================
 header
=============================================================*/
#header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	min-width:1000px;
	height: 70px;
	padding: 0 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index:9999;
	background: #fff;
}
/* hdr-logo
-------------------------------------------------------------*/
#header #hdr-logo{
	width:113px;
}
#header #hdr-logo img{
	width:100%;
	height: auto;
}
#header #pageTtl{
	color: #009ce5;
	position: absolute;
	top: 50%;
	left: 183px;
	transform: translateY(-50%);
}


/* nav
-------------------------------------------------------------*/
#header nav{
	flex: 1;
	max-width: 1024px;
	padding: 0 0 0 40px;
}
/* globalNavSet
-------------------------------------------------------------*/
#globalNavSet>dt{
	display:flex;
	justify-content: center;
	align-items: center;
	width: 70px;
	height: 70px;
	position: fixed;
	top: 0;
	right: 0;
	transition:all 0.4s ease-out;
}
#globalNavSet.open>dt{
	background-color:#00004c;
}
#globalNavSet>dt>span.btn{
	display: block;
	width: 22px;
	height: 22px;
	position: relative;
}
#globalNavSet>dt>span.btn:before,
#globalNavSet>dt>span.btn:after{
	content: "";
	display: block;
	width:100%;
	height:2px;
	background-color:#009ce5;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	transition:all 0.4s ease-out;
}
#globalNavSet>dt>span.btn span{
	content: "";
	display: block;
	width:100%;
	height:22px;
	border-top: 2px solid #009ce5;
	border-bottom: 2px solid #009ce5;
	position: absolute;
	left: 0;
	top: 0;
	transition:all 0.4s ease-out;
}
#globalNavSet.open>dt>span.btn:before{
	background-color:#fff;
	transform: translateY(-50%) rotate(45deg);
}
#globalNavSet.open>dt>span.btn:after{
	background-color:#fff;
	transform: translateY(-50%) rotate(-45deg);
}
#globalNavSet.open>dt>span.btn span{
	opacity: 0;
}
#globalNavSet>dd{
	background-color:#00004c;
	width:100%;
	padding:0;
	visibility:hidden;
	overflow:hidden;
	position:fixed;
	top:70px;
	bottom:100%;
	left:0;
	z-index:200;
	opacity:0;
	transition:all 0.3s ease;
}
#globalNavSet.open>dd{
	visibility:visible;
	bottom:0;
	opacity:1;
}
#globalNavSet>dd>*{visibility:hidden;}
#globalNavSet>dd>div:after{
	content:"";
  display:block;
  height:30px;
}
#globalNavSet.open>dd>*{visibility:inherit;}
html.gNavOpen,
html.gNavOpen body{
	height:100%;
	overflow:hidden;
}
html.gNavOpen #globalNavSet>dd>div{
	width:100%;
	height:100%;
	overflow:auto;
	overflow-x: hidden;
	position:relative;
	-webkit-overflow-scrolling:touch;
}
/* globalNav
-------------------------------------------------------------*/
#header #globalNav{
	padding-right: 0;
	display: block;
	font-size: 16px;
	border-bottom: 1px solid #fff;
}
#header #globalNav>li{
	position: relative;
	border-top: 1px solid #fff;
}
#header #globalNav>li:first-child{
	border-top: none;
}
#header #globalNav>li>a{
	height: 60px;
	padding: 0 40px;
	display: flex;
	align-items: center;
	position: relative;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
	color: #fff;
}
.home #header #globalNav>li.home>a,
.bearee #header #globalNav>li.bearee>a,
.bearphite #header #globalNav>li.bearphite>a,
.nikamet #header #globalNav>li.nikamet>a,
.industry #header #globalNav>li.industry>a{
	background-color: #009ce5;
}



/* aside#hdrMenu ul
-------------------------------------------------------------*/
aside#hdrMenu ul{
	width:472px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	top: 16px;
	right: 80px;
	z-index: 10000;
}
aside#hdrMenu ul li{
	width:230px;
}
aside#hdrMenu ul li a{
	width:100%;
	height: 38px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 0 0 10px;
	border-radius: 9999px;
	font-size: 16px;
	color: #009ce5;
	background-color: #d9edf8;
	text-align: center;
	letter-spacing: 0.0em;
}
aside#hdrMenu ul li.btnCatalog a{
	background: #d9edf8 url("../img/hdr_icn_catalog.png") no-repeat 0 0;
	background-size: auto 100%;
}
aside#hdrMenu ul li.btnContact a{
	background: #d9edf8 url("../img/hdr_icn_contact.png") no-repeat 0 0;
	background-size: auto 100%;
}


/*=============================================================
 footer
=============================================================*/
#footer{
	padding: 40px;
	background-color: #009ce5;
	color: #fff;
	text-align: center;
}
#footer dt{
	font-size: 24px;
	font-weight: 700;
	padding: 0 0 25px;
}
#footer dd p.ttl{
	font-size: 16px;
}
#footer dd ul{
	width: 100%;
	max-width: 650px;
	margin: 0 auto 20px;
	display: flex;
	justify-content: space-between;
}
#footer dd ul li{
	padding: 15px 0 0;
	font-size: 20px;
}
#footer dd p.btnContact{
	width: 100%;
	max-width: 420px;
	margin: 0 auto;
}
#footer dd p.btnContact a{
	width: 100%;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
	font-size: 24px;
	font-weight: 700;
	color: #009ce5;
	text-align: center;
	letter-spacing: 0.0em;
	background: #fff url("../img/hdr_icn_contact.png") no-repeat 0 0;
	background-size: auto 100%;
}
#footer dd p.copyright{
	padding: 20px 0 0;
	font-size: 14px;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 Smartphones
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
@media only screen and (max-width:1023px){
/* container
-------------------------------------------------------------*/
#container{
	min-width:320px;
	padding-top:60px;
}
/*=============================================================
 header
=============================================================*/
#header{
	height: 60px;
	padding: 0 20px;
}
/* hdr-logo
-------------------------------------------------------------*/
#header #hdr-logo{
	width:85px;
}
#header #pageTtl{
	left: 125px;
	font-size: 15px;
}
/* globalNavSet
-------------------------------------------------------------*/
#globalNavSet>dt{
	width: 60px;
	height: 60px;
}
#globalNavSet>dd{
	top:60px;
}
/*=============================================================
 footer
=============================================================*/
#footer{
	padding: 40px 40px 58px;
}
/* aside#hdrMenu ul
-------------------------------------------------------------*/
aside#hdrMenu ul{
	width:100%;
	top: auto;
	bottom: 0;
	right: 0;
}
aside#hdrMenu ul li{
	width:50%;
}
aside#hdrMenu ul li:last-child{
	border-left: 1px solid #009ce5;
}
aside#hdrMenu ul li a{
	border-radius: 0px;
}
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 Smartphones
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
@media only screen and (max-width:767px){
/*=============================================================
 footer
=============================================================*/
#footer{
	padding: 20px 20px 58px;
}
#footer dt{
	font-size: 20px;
}
#footer dd p.ttl{
	font-size: 16px;
}
#footer dd ul{
	flex-wrap: wrap;
	justify-content: center;
}
#footer dd ul li{
	margin: 0 1em;
}
#footer dd p.btnContact a{
	height: 60px;
	font-size: 18px;
}
#footer dd p.copyright{
	font-size: 12px;
}
/* aside#hdrMenu ul
-------------------------------------------------------------*/
aside#hdrMenu ul li a{
	padding: 0 0 0 25px;
	font-size: 14px;
}
}

