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

.header{
	z-index: 998;
	overflow: hidden;
	position: relative;
	min-width: 1100px;
	width: 100%;
	min-height: 80px;
	background-color: #fff;
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, .1);
}

.header_left-nav {
	display: table;
	float: left;
	width: 700px;
	height: 80px;
}

.header_logo-img {
	float: left;
	text-align: left;
	vertical-align: middle;
	padding: 10px 20px;
}
	.header_logo-img img {
		width: 110px;
	}

/*sp_navToggle*/
#sp_navToggle {
  display: none;
	z-index: 1000;
  position: absolute; /*bodyに対しての絶対位置指定です*/
  right: 0;
  top: 0;
  box-sizing: border-box;
  width: 48px;
  height: 48px;
	padding: 16px 12px;
  cursor: pointer;
	background-color: #2b39c2;
	background-size: 50%;
}
		#sp_navToggle div {position:relative;} /*spanの絶対位置指定の親にします*/
		#sp_navToggle span {
			display: block;
			position: absolute; /*#navToggle div に対して*/
			width: 100%;
			border-bottom: solid 1px #fff;
			-webkit-transition: .35s ease-in-out;
			-moz-transition: .35s ease-in-out;
			transition: .35s ease-in-out;
			border-radius: 10px;
		}
		#sp_navToggle span:nth-child(1) {top:0;}
		#sp_navToggle span:nth-child(2) {top:7px;}
		#sp_navToggle span:nth-child(3) {top:14px;}
	/*sp_navToggle--END--*/


.header_left-nav ul {
	display: table-cell;
	overflow: hidden;
	height: 100%;
	vertical-align: middle;
	padding: 10px;
	max-width: 700px;
}

.header_left-nav ul li {
	float: left;
	padding: 0 15px;
	font-weight: bold;
	letter-spacing: 0.2px;
}
.header_left-nav ul li:first-child {
	padding-left: 0;
}

.header_right-nav {
	display: table;
	float: right;
	min-height: 80px;
}

.header_right-nav_contact a {
	display: table-cell;
	overflow: hidden;
	background-color: #2b39c2;
	width: 100px;
	height: 80px;
	vertical-align: middle;
	text-align: center;
	font-size: 18px;
	color: #fff;
	letter-spacing: 0.8px;
}

.header_right-nav_language {
	display: table-cell;
	background-color: #fff;
	height: 100%;
	vertical-align: middle;
	padding-right: 10px;
	padding-left: 10px;
	color: #000;
	font-weight: 200;
}

.header_right-nav_language li{
	float: left;
	border-left: 1px solid #000;
	box-sizing: border-box;
	height: 20px;
	padding: 3px 10px;
	line-height: 1.1;
}
.header_right-nav_language li:first-child{
	border: none;
}
.language-current {
	text-decoration: underline;
	color: #B1B1B1;
	font-weight: normal;
}
.header_right-nav_language a:hover {
	text-decoration: underline;
}

.fixed {
	position: fixed;
}
.header.fixed{
	min-height: 60px;
	opacity: 0.95;
}
.fixed .header_logo-img {
	padding: 8px 20px;
}
.fixed .header_logo-img img {
	width: 80px;
}

.fixed .header_right-nav{
	min-height: 60px;
}
.fixed .header_left-nav  {
	height: 60px;
}
.fixed .header_right-nav_contact a {
	height: 60px;
}


@media screen and (max-width: 767px) {
	.header{
		position: fixed;
		min-width: 100%;
		min-height: 48px;
		opacity: 1;
	}
	.header.fixed {
    min-height: 48px;
    opacity: 0.95;
	}
		.header_logo-img {
			display: inline-block;
			text-align: left;
			vertical-align: middle;
			padding: 7px 10px 5px;
			width: 64px;
		}
		.header_logo-img img {
			width: 64px;
		}
	.fixed .header_logo-img {
		padding: 7px 10px 5px;
	}
	.fixed .header_logo-img img {
		width: 64px;
	}
		#sp_navToggle{
			display:block;
		}

	#mobile-head {
			background: #fff;
			width: 100%;
			z-index: 999;
		position: relative;}

	#slide_menu{
		display: none;
		z-index: 999;
		position: relative;
		top: 0;
		right: 0;/*-300px*/
		overflow: scroll;
		box-sizing: border-box;
		width: 100%;
		height: 100%;
		padding: 60px 20px;
		background: #efefef;
		opacity: 0.95;
		text-align: center;
		-webkit-transition: .5s ease-in-out;
		-moz-transition: .5s ease-in-out;
		transition: .5s ease-in-out;
	}

		.openNav .header{
			height: 100%;
      box-sizing: border-box;
      padding-bottom: 40px;
		}
	body.openNav:before {
		position: fixed;
		content: "";
		width: 100%;
		height: auto;
		}
	.openNav #slide_menu{
		display: block;
		}

		/* Toggle(Button) */
	/*display:none  →  display:block*/
	.openNav #sp_navToggle {position: fixed;}
	.openNav #sp_navToggle span:nth-child(1) {
			top: 7px;
			-webkit-transform:rotate(-45deg);
			-moz-transform:rotate(-45deg);
			transform:rotate(-45deg);
		}

	.openNav #sp_navToggle span:nth-child(2){
			opacity: 0;
		}
	.openNav #sp_navToggle span:nth-child(3) {
			top: 7px;
			-webkit-transform:rotate(45deg);
			-moz-transform:rotate(45deg);
			transform:rotate(45deg);
		}


	.header_left-nav {
		display: block;
		float: none;
		width: 100%;
		height: auto;
	}


	.header_left-nav ul {
		display: inline;
		overflow: hidden;
		width: 100%;
		height: 100%;
		vertical-align: middle;
		padding: 0;
		max-width: 100%;
	}

	.header_left-nav ul li {
		margin-top: 30px;
		float: none;
		padding: 0;
		letter-spacing: 0.2px;
	}
	.header_left-nav ul li:first-child {
		padding-left: 0;
		margin-top: 0;
	}

	.header_right-nav {
		display: table;
		float: none;
		min-height: auto;
		margin: 25px auto 0;
	}

	.header_right-nav_contact a {
		margin-top: 30px;
		display: block;
		overflow: hidden;
		background-color: #2b39c2;
		width: 240px;
		height: 40px;
		line-height: 40px;
		vertical-align: middle;
		text-align: center;
		font-size: 18px;
		color: #fff;
		letter-spacing: 0.8px;
	}

	.header_right-nav_contact a {
		color: #fff;
	}


	.header_right-nav_language {
		display: inline-block;
		background-color: #efefef;
		height: 100%;
		vertical-align: middle;
		padding-right: 10px;
		padding-left: 10px;
		color: #898989;
		font-weight: 200;
	}

	.header_right-nav_language li{
		float: left;
		border-left: 1px solid #000;
		box-sizing: border-box;
		height: 20px;
		padding: 3px 10px;
		line-height: 1.1;
	}
	.header_right-nav_language li:first-child{
		border: none;
	}
	.language-current {
		text-decoration: underline;
		font-weight: normal;
	}

}/*/max-width: 767px*/





/* footer */


.footer_inner{
	box-sizing: border-box;
	overflow: hidden;
	position: relative;
	min-width: 1100px;
	width: 100%;
	min-height: 80px;
	padding: 20px 40px;
	background-color: #fff;
}

.footer_left-nav {
	display: table;
	float: left;
}

.footer_logo-img {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
}
	.footer_logo-img img {
		width: 110px;
	}
.footer_left-nav ul {
	display: table-cell;
	overflow: hidden;
	height: 100%;
	vertical-align: middle;
	padding: 10px;

}

.footer_left-nav ul li {
	float: left;
	padding: 0 15px;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 0.2px;
}


.footer_right-nav {
	display: table;
	float: right;
	height: 60px;
}

.footer_right-nav_sns {
	display: table-cell;
	overflow: hidden;
	background-color: #fff;
	width: 20px;
	height: auto;
	vertical-align: middle;
	text-align: center;
}
.footer_right-nav_sns img {
	width: 20px;
	vertical-align: middle;
}

.footer_right-nav_contact a {
	color: #fff;
}


.footer_right-nav_language {
	display: table-cell;
	background-color: #fff;
	height: 100%;
	vertical-align: middle;
	padding-right: 10px;
	padding-left: 10px;

}

.footer_right-nav_language li{
	float: left;
	border-left: 1px solid #000;
	box-sizing: border-box;
	height: 20px;
	padding: 3px 10px;
	line-height: 1.1;

}
.footer_right-nav_language li:first-child{
	border: none;
}

.cpyright {
	clear: both;
	box-sizing: border-box;
	min-height: 40px;
	padding: 15px 40px;
	text-align: center;
	color: #666;
	font-size: 10px;
	letter-spacing: 0.1em;
	line-height: 1;
	background-color: #f0f2f4;
}

@media screen and (max-width: 767px) {

	.footer_inner{
		min-width: 100%;
		width: 100%;
		padding: 30px 0 0;
		background-color: #f0f2f4;
	}

	.footer_left-nav {
		display: block;
		float: none;
		padding: 0 15px;
	}

	.footer_logo-img {
		display: block;
	}
		.footer_logo-img img {
			width: 100px;
		}
	.footer_left-nav ul {
		display: block;
		text-align: center;
		padding: 20px 0;

	}

	.footer_left-nav ul li {
		float: none;
		margin-top: 8px;
		padding: 0;
		font-size: 12px;
		font-weight: bold;
		letter-spacing: 0.2px;
	}
	.footer_left-nav ul li:first-child {
		margin-top: 0;
	}
	.footer_left-nav ul li a {
		color: #333;
	}

	.footer_right-nav {
		display: block;
		float: none;
		box-sizing: border-box;
		padding: 17px 15px;
		height: auto;
		margin: 0 auto;
    width: 100%;
		background-color: #fff;
		text-align: center;
	}

	.footer_right-nav_sns {
		display: inline-block;
		width: 20px;
		height: 20px;
	}
	.footer_right-nav_sns img {
		vertical-align: top;
	}

	.footer_right-nav_contact a {
		color: #fff;
	}


	.footer_right-nav_language {
		display: inline-block;
		height: auto;
		vertical-align: middle;
		padding-right: 0;
		padding-left: 0;

	}

	.footer_right-nav_language li{
		box-sizing: border-box;
		line-height: 1.2;
	}
	.footer_right-nav_language li:first-child{
		border: none;
	}

	.cpyright {
		color: #fff;
		background-color: #2b39c2;
	}

}


#pageTop {
	z-index: 996;
	width: 50px;
	right: 10px;
	bottom: 10px;
	padding: 0;
	display: block;
	position: fixed;
}
#pageTop img {
	width: 100%;
}
#pageTop a {
	color: #fff;
}

@media screen and (max-width: 767px) {
	#pageTop {
		width: 38px;
	}
}/*/max-width: 767px*/
