@charset "UTF-8";
/*=========================================
【PC】header
==========================================*/
header{
	width: 100%;
	line-height: 1;
	position: fixed;
	z-index: 9998;
}

/*=========================================
【PC】inner
==========================================*/
header .inner{
	padding:0 24px;
}

/*=========================================
【PC】h_top
==========================================*/
header .h_top{
	overflow: hidden;
	background: rgb(73,155,234);
	background: -moz-linear-gradient(top, rgba(73,155,234,1) 0%, rgba(22,99,158,1) 100%);
	background: -webkit-linear-gradient(top, rgba(73,155,234,1) 0%,rgba(22,99,158,1) 100%);
	background: linear-gradient(to bottom, rgba(73,155,234,1) 0%,rgba(22,99,158,1) 100%);
}

/*.logo
------------------------------------*/
header .logo{
	float: left;
	padding: 8px 0;	
	font-size: 10px;
}

header .logo span{
	color: #fff;
	display: block;
	margin-bottom: 4px;
}

header .logo img{
	width: 260px;
	margin-bottom: 8px;
}

/*.pc_log_out
------------------------------------*/
header .pc_log_out{
	float: right;
	color: #fff;
	display: block;
	background: #0f4874;
	font-size: 14px;
	padding: 22px 24px;
}

/*==========================================
【PC】g_nav_area
==========================================*/
header .g_nav_area{
	background: #fff;
	text-align: center;
	box-shadow: 0 1px 6px #999;
}

/*.g_navList
------------------------------------*/
header .g_navList{
	max-width: 1000px;
	margin: 0 auto;
	overflow: hidden;
}

header .g_navList li{
	float: left;
	width: 14.2857%;
	position: relative;
}

header .g_navList li::after{
	content: "";
	position: absolute;
	right: 1px;
	top: 14px;
	width: 1px;
	height: 20px;
	background: #999;
}

header .g_navList li:nth-last-child(2)::after{
	content: none;
}

header .g_navList li a{
	padding: 16px;
	font-weight: bold;
	display: block;
	font-size: 14px;
	color: #000;
}

header .sp_log_out{
	display: none;
}

@media only screen and (max-width:920px) {
	
/*=========================================
【920】h_top
==========================================*/
/*.pc_log_out
------------------------------------*/
header .pc_log_out{
	display: none;
}

/*=========================================
【920】g_nav_area
==========================================*/
header .g_nav_area{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	padding-top: 0;
	background: rgba(0,0,0,.9);
	overflow: hidden;
	transition: all .3s;
	-webkit-transition: all .3s;
}	
	
/*=========================================
【920】g_navList
==========================================*/
header .g_navList li{
	width: 50%;
	border-right: solid 1px rgba(255,255,255,.2);
	border-top: solid 1px rgba(255,255,255,.2);
}
	
header .g_navList li::after{
	content: none;
}
	
header .g_navList .sp_log_out{
	display: block;
}
	
header .g_navList li a{
	color: #fff;
	padding: 24px;
}

header .g_navList{
	border-bottom: solid 1px rgba(255,255,255,.2);
}
	
/*==========================================
【920】header .menu_btn
==========================================*/
.btn_pos{
	position: absolute;
	top: 6px;
	right: 8px;
	padding: 8px;
	background: #000;
	z-index: 9999;
	cursor: pointer;
}
	
.menu_btn,
.menu_btn span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}

.menu_btn { 
	position: relative;
	width: 20px;
	height: 17px;
}

.menu_btn span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #fff;
}

.menu_btn span:nth-of-type(1) {
	top: 0;
}

.menu_btn span:nth-of-type(2) {
	top: 8px;
}

.menu_btn span:nth-of-type(3) {
	bottom: 0;
}
	
.menu_btn.active span:nth-of-type(1) {
	-webkit-transform: translateY(8px) rotate(-45deg);
	transform: translateY(8px) rotate(-45deg);
}

.menu_btn.active span:nth-of-type(2) {
	opacity: 0;
}
	
.menu_btn.active span:nth-of-type(3) {
	-webkit-transform: translateY(-8px) rotate(45deg);
	transform: translateY(-8px) rotate(45deg);
}
	
/* js_on
------------------------------------------*/
header .js_on{
	padding-top: 48px;
	display: block;
	height: 100%;
}

}/* 920px
------------------------------------------*/

@media only screen and (max-width:500px) {
	
/*=========================================
【PC】h_top
==========================================*/
header .logo{
	padding: 16px 0;	
}

/*.logo
------------------------------------*/
header .logo span{
	display: none;
}

header .logo img{
	width: 168px;
	margin-top: 4px;
	margin-bottom: 0;
}
	
}/* 500px
------------------------------------------*/





