@charset "UTF-8";
/* CSS Document */

/*------------------------------
	各色の設定
------------------------------*/
/*
	#0069b5	//トップ
	#e73937	//ネットワーク渡辺を知る
	#2e7e0b	//人と仕事を知る
	#d5a40e	//風土を知る
	#9d6bdb	//採用情報
*/

/*------------------------------
	header
------------------------------*/
#header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 101;
	background-color: #ffffff;
	height: 76px;
	border-bottom: solid 3px #0069b5;
}
BODY.about #header{ border-bottom: solid 3px #e73937; }
BODY.work #header{ border-bottom: solid 3px #2e7e0b; }
BODY.climate #header{ border-bottom: solid 3px #d5a40e; }
BODY.recruit #header{ border-bottom: solid 3px #9d6bdb; }

#headerBox {
	position: relative;
	width: 100%;
	height: 76px;
}
#header h1 {
	position: absolute;
	top: 8px;
	left: 20px;
	max-width: 300px;
}
#header h1 img{
	width: 100%;
}
/*------------------------------*/
#entryBtn {
	position: fixed;
	top: 14px;
	right: 80px;
	z-index: 190;
	transition: 0.3s;
	width: 50px;
}
#entryBtn img {
	width: 100%;
}
#entryBtn:hover {
	opacity: 0.6;
	-moz-opacity: 0.60;
	filter: alpha(opacity=60);
}
#menuBtn {
	position: fixed;
	top: 14px;
	right: 20px;
	z-index: 210;
}
/*------------------------------*/
#panel-btn {
  display: inline-block;
  position: relative;
  width: 50px;
  height: 50px;
  background: #000000;
  border-radius: 50% 50%;
	transition: 0.3s;
}
#panel-btn:hover {
	opacity: 0.6;
	-moz-opacity: 0.60;
	filter: alpha(opacity=60);
}
#panel-btn-icon{
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  margin: -1px 0 0 -11px;
  background: #ffffff;
  transition: .2s;
}
#panel-btn-icon:before, #panel-btn-icon:after{
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 22px;
  height: 2px;
  background: #ffffff;
  transition: .3s;
}
#panel-btn-icon:before{
  margin-top: -8px;
}
#panel-btn-icon:after{
  margin-top: 6px;
}
#panel-btn .close{
  background: transparent;
}
#panel-btn .close:before, #panel-btn .close:after{
  margin-top: 0;
}
#panel-btn .close:before{
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
#panel-btn .close:after{
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}
@media (max-width: 700px) {
	#entryBtn {
		position: fixed;
		top: 6px;
		right: 51px;
		width: 40px;
	}
	#entryBtn:hover {
		opacity: 0.6;
		-moz-opacity: 0.60;
		filter: alpha(opacity=60);
	}
	#menuBtn {
		position: fixed;
		top: 6px;
		right: 6px;
		z-index: 210;
	}
	/*------------------------------*/
	#panel-btn {
	  width: 40px;
	  height: 40px;
	}
	#panel-btn:hover {
		opacity: 1;
		-moz-opacity: 1;
		filter: alpha(opacity=100);
	}
	#panel-btn-icon{
	  width: 18px;
	  height: 2px;
	  margin: -1px 0 0 -9px;
	}
	#panel-btn-icon:before, #panel-btn-icon:after{
	  width: 18px;
	  height: 2px;
	}
	#panel-btn-icon:before{
	  margin-top: -7px;
	}
	#panel-btn-icon:after{
	  margin-top: 5px;
	}
}
/*------------------------------*/
#title {
	position: absolute;
	bottom: 0px;
	left: 50%;
	margin-left: -105px;
	width: 210px;
	height: 40px;
	background-color: #0069b5;
	border-radius: 8px 8px 0 0;
	font-size: 12px;
}
BODY.about #title{ background-color: #e73937; }
BODY.work #title{ background-color: #2e7e0b; }
BODY.climate #title{ background-color: #d5a40e; }
BODY.recruit #title{ background-color: #9d6bdb; }
#title li {
	width: 210px;
	text-align: center;
	color: #ffffff;
	font-size: 12px;
	padding: 16px 0 14px;
}
#title li:hover {
	cursor: pointer;
}
BODY #title LI{
	display: none;
}
BODY.top #title .top {
	display: block;
}
BODY.about #title .about {
	display: block;
}
BODY.work #title .work {
	display: block;
}
BODY.climate #title .climate {
	display: block;
}
BODY.recruit #title .recruit {
	display: block;
}
#title .top span {
	background: url("../images/icon_h_01.png") no-repeat left 2px;
	padding: 2px 0;
	padding-left: 28px;
}
#title .about span {
	background: url("../images/icon_h_02.png") no-repeat left 2px;
	padding: 2px 0;
	padding-left: 28px;
}
#title .work span {
	background: url("../images/icon_h_03.png") no-repeat left 2px;
	padding: 2px 0;
	padding-left: 28px;
}
#title .climate span {
	background: url("../images/icon_h_04.png") no-repeat left 2px;
	padding: 2px 0;
	padding-left: 28px;
}
#title .recruit span {
	background: url("../images/icon_h_05.png") no-repeat left 2px;
	padding: 2px 0;
	padding-left: 28px;
}
@media (min-width: 701px) and (max-width: 850px) {
	#header h1 {
		position: absolute;
		top: 12px;
		left: 20px;
		width: 250px;
	}
	#header h1 img {
		width: 100%;
	}
	#title {
		position: absolute;
		bottom: 0px;
		left: 50%;
		margin-left: -95px;
		width: 190px;
		height: 40px;
		background-color: #0069b5;
		border-radius: 8px 8px 0 0;
		font-size: 12px;
	}
	#title li {
		width: 190px;
		text-align: center;
		color: #ffffff;
		font-size: 12px;
		padding: 16px 0 14px;
	}
}
@media (max-width: 700px) {
	#header h1 {
		position: absolute;
		top: 14px;
		left: 10px;
		width: 220px;
	}
	#header h1 img {
		width: 100%;
	}
	#title {
		position: absolute;
		bottom: 0px;
		left: 50%;
		margin-left: -75px;
		width: 150px;
		height: 36px;
		background-color: #0069b5;
		border-radius: 8px 8px 0 0;
		font-size: 12px;
	}
	#title li {
		width: 150px;
		text-align: center;
		color: #ffffff;
		font-size: 12px;
		padding: 12px 0 10px;
	}
}


/*------------------------------
	nav
------------------------------*/
#nav {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 200;
	background-color: #ffffff;
	display: none;
	/*
	-webkit-overflow-scrolling: touch;
	*/
}
/*------------------------------*/
#nav #navBox {
	max-width: 980px;
	margin: 0 auto;
	padding: 0 10px;
	padding-top: 125px;
	position: relative;
	overflow: auto;
	/*
	height : calc(100vh - 80px);
	height : -webkit-calc(100vh - 80px);
	*/
}

#navBox .fNav1,
#navBox .fNav2,
#navBox .fNav3,
#navBox .fNav4 {
	width: 50%;
	float: left;
	margin-bottom: 30px;
	min-height: 150px;
}
#navBox .fNav1 .title,
#navBox .fNav2 .title,
#navBox .fNav3 .title {
	padding-bottom: 8px;
	padding-top: 6px;
	border-bottom: dotted 1px #333333;
	margin-bottom: 10px;
	margin-right: 36px;
	padding-left: 24px;
}
#navBox .fNav1 .title {
	background: url("../common/bg_fnav_11.png") no-repeat left center;
}
#navBox .fNav2 .title {
	background: url("../common/bg_fnav_21.png") no-repeat left center;
}
#navBox .fNav3 .title {
	background: url("../common/bg_fnav_31.png") no-repeat left center;
}
#navBox .fNav4 .title {
	background: url("../common/bg_fnav_41.png") no-repeat left center;
	padding-bottom: 8px;
	padding-top: 6px;
	border-bottom: dotted 1px #333333;
	margin-bottom: 10px;
	margin-right: 36px;
	padding-left: 24px;
}
#navBox .fNav1 ul,
#navBox .fNav2 ul,
#navBox .fNav3 ul {
	margin-right: 36px;
}
#navBox .fNav1 li,
#navBox .fNav2 li,
#navBox .fNav3 li {
	line-height: 1.8;
	font-size: 14px;
	padding-left: 12px;
}
#navBox .fNav1 li {
	background: url("../common/bg_fnav_12.png") no-repeat left center;
}
#navBox .fNav2 li {
	background: url("../common/bg_fnav_22.png") no-repeat left center;
}
#navBox .fNav3 li {
	background: url("../common/bg_fnav_32.png") no-repeat left center;
}
#navBox .fNav4 li {
	background: url("../common/bg_fnav_42.png") no-repeat left center;
	line-height: 1.8;
	font-size: 14px;
	padding-left: 12px;
}
#navBox .fNav1 li a,
#navBox .fNav2 li a,
#navBox .fNav3 li a,
#navBox .fNav4 li a {
	color: #000000;
	text-decoration: none;
}
#navBox .fNav1 li a:hover,
#navBox .fNav2 li a:hover,
#navBox .fNav3 li a:hover,
#navBox .fNav4 li a:hover {
	text-decoration: underline;
}
/*------------------------------*/
#navBox .banner01 {
	position: absolute;
	top: 30px;
	left: 10px;
	width: 118px;
	height: 40px;
	background-color: #000000;
	display: table;
	border: solid 1px #000000;
	transition: 0.4s;
}
#navBox .banner02 {
	position: absolute;
	top: 30px;
	left: 156px;
	width: 118px;
	height: 40px;
	background-color: #000000;
	display: table;
	border: solid 1px #000000;
	transition: 0.4s;
}
#navBox .banner01 a,
#navBox .banner02 a {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	color: #ffffff;
	font-size: 12px;
	text-decoration: none;
	transition: 0.4s;
}
#navBox .banner01:hover,
#navBox .banner02:hover {
	background-color: #ffffff;
}
#navBox .banner01 a:hover,
#navBox .banner02 a:hover {
	color: #000000;
}
@media (min-width: 701px) and (max-width: 850px) {
	#nav #navBox {
		padding: 0 10px;
		padding-top: 100px;
	}
	#navBox .banner02 {
		left: 146px;
	}
}
@media (max-width: 700px) {
	#nav #navBox{
		position: relative;
		width: auto;
		padding: 60px 10px 30px;
		max-width: 1150px;
		margin: 0 auto;
		height: auto;
	}
	/*------------------------------*/
	#navBox .banner01 {
		position: absolute;
		top: 20px;
		left: 10px;
		width: 98px;
		height: 30px;
		background-color: #000000;
		display: table;
		border: solid 1px #000000;
		transition: 0.4s;
	}
	#navBox .banner02 {
		position: absolute;
		top: 20px;
		left: 116px;
		width: 98px;
		height: 30px;
		background-color: #000000;
		display: table;
		border: solid 1px #000000;
		transition: 0.4s;
	}
	#navBox .fNav1,
	#navBox .fNav2,
	#navBox .fNav3,
	#navBox .fNav4 {
		width: 100%;
		float: left;
		margin-bottom: 16px;
		min-height: auto;
	}
	#navBox .fNav1 .title,
	#navBox .fNav2 .title,
	#navBox .fNav3 .title {
		margin-right: 0px;
	}
	#navBox .fNav4 .title {
		margin-right: 0px;
	}
}



/*------------------------------
	footer
------------------------------*/
#footer .copy {
	position: relative;
	right: 0;
	bottom: 0;
	width: 100%;
	text-align: center;
	background-color: #000000;
	color: #ffffff;
	font-size: 10px;
	line-height: 1.7;
	padding: 8px 0;
}
/*------------------------------*/
#footerBox .banner01 {
	position: absolute;
	top: 30px;
	left: 10px;
	width: 118px;
	height: 40px;
	background-color: #000000;
	display: table;
	border: solid 1px #000000;
	transition: 0.4s;
}
#footerBox .banner02 {
	position: absolute;
	top: 30px;
	left: 156px;
	width: 118px;
	height: 40px;
	background-color: #000000;
	display: table;
	border: solid 1px #000000;
	transition: 0.4s;
}
#footerBox .banner01 a,
#footerBox .banner02 a {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	color: #ffffff;
	font-size: 12px;
	text-decoration: none;
	transition: 0.4s;
}
#footerBox .banner01:hover,
#footerBox .banner02:hover {
	background-color: #ffffff;
}
#footerBox .banner01 a:hover,
#footerBox .banner02 a:hover {
	color: #000000;
}
/*------------------------------*/
#footerBox .fNav1,
#footerBox .fNav2,
#footerBox .fNav3,
#footerBox .fNav4 {
	width: 50%;
	float: left;
	margin-bottom: 30px;
}
#footerBox .fNav1 .title,
#footerBox .fNav2 .title,
#footerBox .fNav3 .title {
	padding-bottom: 8px;
	padding-top: 6px;
	border-bottom: dotted 1px #333333;
	margin-bottom: 10px;
	margin-right: 36px;
	padding-left: 24px;
}
#footerBox .fNav1 .title {
	background: url("../../common/bg_fnav_11.png") no-repeat left center;
}
#footerBox .fNav2 .title {
	background: url("../../common/bg_fnav_21.png") no-repeat left center;
}
#footerBox .fNav3 .title {
	background: url("../../common/bg_fnav_31.png") no-repeat left center;
}
#footerBox .fNav4 .title {
	background: url("../../common/bg_fnav_41.png") no-repeat left center;
	padding-bottom: 8px;
	padding-top: 6px;
	border-bottom: dotted 1px #333333;
	margin-bottom: 10px;
	margin-right: 36px;
	padding-left: 24px;
}
#footerBox .fNav1 ul,
#footerBox .fNav2 ul,
#footerBox .fNav3 ul {
	margin-right: 36px;
}
#footerBox .fNav1 li,
#footerBox .fNav2 li,
#footerBox .fNav3 li {
	line-height: 1.8;
	font-size: 12px;
	padding-left: 12px;
}
#footerBox .fNav1 li {
	background: url("../../common/bg_fnav_12.png") no-repeat left center;
}
#footerBox .fNav2 li {
	background: url("../../common/bg_fnav_22.png") no-repeat left center;
}
#footerBox .fNav3 li {
	background: url("../../common/bg_fnav_32.png") no-repeat left center;
}
#footerBox .fNav4 li {
	background: url("../../common/bg_fnav_42.png") no-repeat left center;
	line-height: 1.8;
	font-size: 12px;
	padding-left: 12px;
}
#footerBox .fNav1 li a,
#footerBox .fNav2 li a,
#footerBox .fNav3 li a,
#footerBox .fNav4 li a {
	color: #000000;
	text-decoration: none;
}
#footerBox .fNav1 li a:hover,
#footerBox .fNav2 li a:hover,
#footerBox .fNav3 li a:hover,
#footerBox .fNav4 li a:hover {
	text-decoration: underline;
}
@media (min-width: 701px) and (max-width: 850px) {
	#footerBox .banner02 {
		left: 146px;
	}
}
@media (max-width: 700px) {
	#footerBox {
		position: relative;
		width: auto;
		padding: 60px 10px 30px;
		max-width: 1150px;
		margin: 0 auto;
		height: auto;
	}
	/*------------------------------*/
	#footerBox .banner01 {
		position: absolute;
		top: 20px;
		left: 10px;
		width: 98px;
		height: 30px;
		background-color: #000000;
		display: table;
		border: solid 1px #000000;
		transition: 0.4s;
	}
	#footerBox .banner02 {
		position: absolute;
		top: 20px;
		left: 116px;
		width: 98px;
		height: 30px;
		background-color: #000000;
		display: table;
		border: solid 1px #000000;
		transition: 0.4s;
	}
	#footerBox .fNav1,
	#footerBox .fNav2,
	#footerBox .fNav3,
	#footerBox .fNav4 {
		width: 100%;
		float: left;
		margin-bottom: 16px;
	}
	#footerBox .fNav1 .title,
	#footerBox .fNav2 .title,
	#footerBox .fNav3 .title {
		margin-right: 0px;
	}
	#footerBox .fNav4 .title {
		margin-right: 0px;
	}
}

/*------------------------------*/
.noScroll{
	height : 100%;
	overflow : hidden;
}
.noScrollSP{
	height : 100%;
	overflow : hidden;
}
.noScrollSP SECTION{
	visibility : hidden;
}

/*------------------------------
	footer
------------------------------*/
#footer {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: 101;
	background-color: #ffffff;
	height: 66px;
	border-top: solid 3px #0069b5;
	overflow: hidden;
}
BODY.about #footer{ border-top: solid 3px #e73937; }
BODY.work #footer{ border-top: solid 3px #2e7e0b; }
BODY.climate #footer{ border-top: solid 3px #d5a40e; }
BODY.recruit #footer{ border-top: solid 3px #9d6bdb; }
#footerBox {
	position: relative;
	width: 100%;
	height: 66px;
}

/*------------------------------*/
#footer .copy {
	position: absolute;
	right: 9px;
	bottom: 9px;
	padding: 0;
	margin: 0;
}
#footer #arrow {
	position: absolute;
	background-color: #0069b5;
	left: 54px;
	top: -10px;
}
BODY.about #footer #arrow{ background-color: #e73937; }
BODY.work #footer #arrow{ background-color: #2e7e0b; }
BODY.climate #footer #arrow{ background-color: #d5a40e; }
BODY.recruit #footer #arrow{ background-color: #9d6bdb; }
#footer #arrow img {
	vertical-align: bottom;
}
#footer #list {
	position: absolute;
	top: 18px;
	left: 30px;
}
#footer #list li {
	text-align: center;
	float: left;
	color: #000000;
	font-size: 12px;
	padding: 7px 0 7px;
	margin-right: 30px;
}
#footer #list li:hover {
	opacity: 0.6;
	-moz-opacity: 0.60;
	filter: alpha(opacity=60);
	cursor: pointer;
}
#footer #list .top span {
	background: url("../images/icon_f_01.png") no-repeat left top;
	padding-left: 28px;
}
#footer #list .about span {
	background: url("../images/icon_f_02.png") no-repeat left top;
	padding-left: 28px;
}
#footer #list .work span {
	background: url("../images/icon_f_03.png") no-repeat left top;
	padding-left: 28px;
}
#footer #list .climate span {
	background: url("../images/icon_f_04.png") no-repeat left top;
	padding-left: 28px;
}
#footer #list .recruit span {
	background: url("../images/icon_f_05.png") no-repeat left top;
	padding-left: 28px;
}
/*------------------------------*/
.appearVertical{
	opacity : 0;
}

.pconly
{
	display: none;
}


.loadingWrap
{
	width: 100%;
	height: 100%;
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index:1000;
}
.loadingWrap img
{
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -16px;
	margin-left: -16px;
}
.loadingWrap SPAN
{
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: 16px;
	margin-left: -16px;
	text-align : center;
	color: #0069b5;
	font-size: 20px;
	font-weight: bold;
}
