@charset "UTF-8";

/* ~~ header ~~ */
header {
	display: block;
	position: relative;
	z-index: 9999;
	border-bottom: 1px solid #e3e3e3;
}
#header {
	background: #FFF;
	width: 100%;
	font-size: 16px;
}
.header {
	display: -webkit-box;
   display: -ms-flexbox;
   display: -webkit-flex;
   display: flex;
	align-items: center;
	-webkit-align-items: center;
	-webkit-box-pack: justify;
   -ms-flex-pack: justify;
   justify-content: space-between;
	height: 110px;
	padding: 0;
	position: relative;
}
/* ~~ logo ~~ */
.header_logo {
	display: -webkit-box;
   display: -ms-flexbox;
   display: -webkit-flex;
   display: flex;
	align-items: center;
	-webkit-align-items: center;
	width: 50%;
	font-size: 16px;
}
.header_logo img {
	width: 45px;
	height: auto;
	margin-right: 30px;
}
.header h1 {
	font-size: 1em;
	line-height: 1.6em;
}
.header h1 a {
	font-size: 1.6em;
	color: #29abdb;
	font-weight: 700;
	letter-spacing: 0.08em;
}
.header h1 a small {
	font-size: 0.75em;
	color: #333;
	font-weight: 400;
	letter-spacing: 0.1em;
}
/* ~~ logo ~~ */
.header_contact img {
	width: 230px;
	height: auto;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;	
}
.header_contact img:hover {
	opacity: 0.6;
	filter: alpha(opacity=60);
	-ms-filter: "alpha(opacity=60)";
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
/* g_nav
------------------------------------- */
#g_nav_wrap {
	width: 100%;
	font-size: 16px;
	border-top: 1px solid #e3e3e3;
	position: relative;
}
ul.g_nav {
	width: 960px;
	margin-right: auto;
	margin-left: auto;
   display: flex;
	flex-flow: row;
   justify-content: space-around;
   padding: 15px 0;
}
ul.g_nav li {
	text-align: center;
   width: calc(100%/5);
}
ul.g_nav li a {
	display: block;
	font-size: 0.875em;
	font-weight: 400;
	padding: 2px 0;
	color: #444;
   border-right: 1px solid #e3e3e3;
}
ul.g_nav li a:hover {
	text-decoration: underline;
}
ul.g_nav li a:after {
	content: '';
	display: inline-block;
	width: 4px;
	height: 8px;
	margin-left: 15px;
	vertical-align: middle;
	background: url(../image/arrow_Right.png) no-repeat;
	background-size: 100%;
}
ul.g_nav li:first-child a {
	border-left: 1px solid #e3e3e3;
}
/* ---------------------- スマホナビ ---------------------- */
.smart_nav { display: none}
/*---------------------------------*/
/*-------    RESPONSIVE    --------*/
/*---------------------------------*/
@media screen and (max-width:480px) {
	#header { display: none; }
	.smart_nav {
		display: block;
		position: relative;
	}
	.smart_nav_head {
		background: #FFF;
      width: 100%;
      height: 70px;
      z-index: 999;
      position: relative;
		border-bottom: 1px solid #e3e3e3;
	}
	.smart_nav_head .logo {
		position: absolute;
		left: 15px;
		top: 25px;
	}
	.smart_nav_head .logo img {
		width: auto;
		height: 40px;
	}
   .smart_nav_head .logo h1 {
      font-size: 16px;
   }
   .smart_nav_head .logo h1 a {
      font-size: 1.4em;
      color: #29abdb;
      font-weight: 700;
      letter-spacing: 0.08em;
   }
	#toggle {
		display: block;
		text-align: center;
		position: absolute;
		top: 25px;
		right: 15px;
		z-index: 10;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.trigger,
	.trigger span {
		display: inline-block;
		-webkit-transition: all .4s;
		transition: all .4s;
	}
	.trigger {
		position: relative;
		width: 28px;
		height: 19px;
	}
	.trigger span {
		position: absolute;
		left: 0;
		width: 100%;
		height: 3px;
		background-color: #3d70a1;
		border-radius: 2px;
	}
	.trigger span:nth-of-type(1) {
		top: 0;
	}
	.trigger span:nth-of-type(2) {
		top: 8px;
	}
	.trigger span:nth-of-type(2)::after {
		position: absolute;
		top: 0;
		left: 0;
		content: '';
		width: 100%;
		height: 3px;
		background-color: #3d70a1;
		border-radius: 2px;
		-webkit-transition: all .4s;
		transition: all .4s;
	}
	.trigger span:nth-of-type(3) {
		bottom: 0;
	}
	.trigger.active span:nth-of-type(1) {
		-webkit-transform: translateY(8px) scale(0);
		transform: translateY(8px) scale(0);
	}
	.trigger.active span:nth-of-type(2) {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.trigger.active span:nth-of-type(2)::after {
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
	}
	.trigger.active span:nth-of-type(3) {
		-webkit-transform: translateY(-8px) scale(0);
		transform: translateY(-8px) scale(0);
	}
	.toggleWrap {
		background: rgba(56, 56, 56, 0.9);
		padding: 0;
		position: fixed;
		top: 70px;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 998;
	}
	.toggleWrap_nav {
		padding: 0;
	}
	.toggleWrap_nav li a {
		display: block;
		padding: 20px 25px;
		font-size: 0.9375em;
		font-weight: 400;
		color: #FFF;
		border-bottom: 1px solid #383838;
		position: relative;
	}
	.toggleWrap_nav li a:after {
		content: "";
		display: block;
		position: absolute;
		right: 25px;
		top: 20px;
		width: 7px;
		height: 13px;
		background: url(../image/toggleWrap_nav_arrow.png) center no-repeat;
		background-size: 100%;	
	}
	.hide {
		opacity: 0;
		visibility: hidden;
		overflow: hidden;
	}
	.animation {
		-webkit-transition-property: opacity, visibility;
		transition-property: opacity, visibility;
		-webkit-transition-duration: .3s;
		transition-duration: .3s;
		-webkit-transition-timing-function: ease-in;
		transition-timing-function: ease-in;
	}
	.no-scroll {
		overflow: hidden;
	}
}/*/mediaquery*/

#header_img {
	background: #FFF;
	width: 100%;
   border-bottom: 1px solid #e3e3e3;
}
.header_img {
	width: 960px;
	margin: 0 auto;
	padding: 0;
}
.header_img img {
	width: 100%;
	height: auto;
}
/*---------------------------------*/
/*-------    RESPONSIVE    --------*/
/*---------------------------------*/
@media screen and (max-width:480px) {
	.header_img {
		width: 100%;
		overflow: hidden;
		box-sizing: border-box;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		padding: 0;
		margin: 0;
		text-align: center;
	}
	.header_img img { max-width: 100%; height: auto; }
}/*/mediaquery*/