@charset "UTF-8";

/* ~~ header ~~ */
header {
	position: fixed;
	top: 0;
	left: 0;
	box-sizing: border-box;
	background: #f9fafa;
   border-right: 5px solid #F2F2F2;
	width: 20%;
	min-width: 240px;
	height: 100%;
	z-index: 9999;
	overflow: scroll;
}
@media print {
    header { display: none; }
}
.header {
	width: 100%;
	margin: 0;
	padding: 0;
	font-size: 16px;
}
/* ~~ logo ~~ */
.header_logo_area {
	padding: 40px 0 30px;
	text-align: center;
   border-bottom: 2px solid #d51918;
}
.header_logo {
	display: block;
	width: 100%;
	margin-bottom: 20px;
}
.header_logo img {
	width: 210px;
	height: auto;
}
.header h1 {
	font-size: 16px;
	line-height: 1.7em;
	margin-top: 10px;
}
.header h1 a {
	color: #222;
	font-weight: bold;
	font-size: 1.4em;
	letter-spacing: 0.09em;
}
.header h1 a small {
	display: inline-block;
	color: #222;
	font-weight: 500;
	font-size: 0.75em;
	letter-spacing: 0em;
	
}
.header h1 a small:after {
	content: "";
    height: 0.5px;
    display: block;
    position: relative;
    top: 2px;
    background: #222;
	margin-bottom: 8px;
}
/* ----------------------  nav ---------------------- */
nav {
	display: block;
	width: 100%;
}
.gNav {
	padding: 10px 35px 0px;
}
.gNav li a {
	display: block;
	position: relative;
	padding: 15px 0px 15px;
	line-height: 1.4em;
	color: #222;
	font-size: 0.9375em;
	font-weight: 500;
	letter-spacing: 0.095em;
	-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;
}
.gNav li a:before {
	content: '';
	display: inline-block;
	position: relative;
	top: -2px;
	width: 13px;
	height: 13px;
	margin: 0 8px 0 0;
	vertical-align: middle;
	border-radius: 50%;
	background: #d51918 url(../image/Sub_Nav_list_arrow.png) no-repeat;
	background-size: 100%;
}
.gNav li a:hover {
	color: #d51918;
	-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;
}
/* ---------------------- sub nav ---------------------- */
.sub_Nav {
	padding: 30px 35px 10px;
}
.sub_Nav li a {
	display: block;
	background: #d51918;
	text-align: center;
	padding: 20px 10px;
	color: #FFF;
	font-size: 0.875em;
	font-weight: 600;
	margin-bottom: 20px;
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	position: relative;
	-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;
}
.sub_Nav li a:before {
	content: '';
	position: absolute;
	border: #d51918 solid 6px;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
}
.sub_Nav li a:hover:before, .sub_Nav li a:focus:before, .sub_Nav li a:active:before {
	-webkit-animation-name: hvr-ripple-out;
	animation-name: hvr-ripple-out;
}
/* Ripple Out */
@-webkit-keyframes hvr-ripple-out {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}
@keyframes hvr-ripple-out {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}
/* Ripple Out */
.sub_Nav li a.Contact_bg {
	background: #d51918;
}
.sub_Nav li a.Contact_bg:before {
	border: #d51918 solid 6px;
}
.sub_Nav li a.Contact_bg:hover {
	background: #d51918;
}
.sub_Nav li a:hover {
	background: #d51918;
	-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;
}
/* ---------------------- スマホナビ ---------------------- */
.smart_nav { display: none}
/*---------------------------------*/
/*-------    RESPONSIVE    --------*/
/*---------------------------------*/
@media screen and (max-width:1100px) {
	header { display: none; }
	.smart_nav {
		display: block;
		position: relative;
	}
	.smart_nav_head {
		background: #f9fafa;
      width: 100%;
      height: 70px;
      z-index: 999;
      position: relative;
		border-bottom: 1px solid #e3e3e3;
	}
	.smart_nav_head .logo {
		position: absolute;
		left: 5%;
		top: 15px;
	}
	.smart_nav_head .logo img {
		width: auto;
		height: 40px;
      margin-bottom: 5px;
	}
   .smart_nav_head h1 {
		font-size: 12px;
		color: #222;
		font-weight: 500;
	}
	#toggle {
		display: block;
		text-align: center;
		position: absolute;
		top: 25px;
		right: 5%;
		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: #d51918;
		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: #d51918;
		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: bold;
		color: #FFF;
		border-bottom: 1px solid #383838;
		position: relative;
	}
	.toggleWrap_nav li a:after {
		content: "";
		display: block;
		position: absolute;
		right: 25px;
		top: 20px;
		width: 16px;
		height: 16px;
		background: url(../image/btn_arrow_circle_FFF.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*/