
/*============================================================================

	header

============================================================================*/

header {
	width:100%;
	height:100px;
	background-color:#011a27;
}
header .inner{
	position:relative;
	width:1160px;
	height: inherit;
	margin: 0 auto;
	box-sizing:border-box;
	display: flex;
	justify-content: space-between;
}

/* ロゴ */
header h1{
	padding-top: 35px;
	margin: 0;
}


header h1,
header h1 img{
	/*width:251px;
	height:33px;*/
	width: 325px;
	height:auto;
}

/*============================================================================

	nav

============================================================================*/

nav {
	width:800px;
	z-index:9999;
	font-family: "A1明朝",sans-serif;
	padding-top:0;
}
nav ul{
	display: flex;
	justify-content: space-between;
	width:800px;
	margin:0 auto ;
	text-align:center;
}
nav ul:first-of-type{
	margin-top: 0px;
}

nav li {
	display:inline-block ;
	position:relative;
	vertical-align:bottom;
}
nav li a{
	display: table;
	position:relative;
	padding: 7px 30px;
	margin: 37px 0 0;
	vertical-align:middle;
	font-size:16px;
	font-weight:bold;
	text-align:center;
	color:#fff;
	transition: 0.2s ease;
}

nav li a:hover,
nav li.active2 a{
	color: #fff;
	background: -moz-linear-gradient(left, rgba(132,118,2,0.03) 0%, rgba(132,118,2,0.31) 10%, rgba(132,118,2,0.67) 23%, rgba(132,118,2,0.67) 78%, rgba(132,118,2,0.26) 92%, rgba(132,118,2,0.03) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(left, rgba(132,118,2,0.03) 0%,rgba(132,118,2,0.31) 10%,rgba(132,118,2,0.67) 23%,rgba(132,118,2,0.67) 78%,rgba(132,118,2,0.26) 92%,rgba(132,118,2,0.03) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right, rgba(132,118,2,0.03) 0%,rgba(132,118,2,0.31) 10%,rgba(132,118,2,0.67) 23%,rgba(132,118,2,0.67) 78%,rgba(132,118,2,0.26) 92%,rgba(132,118,2,0.03) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#08847602', endColorstr='#08847602',GradientType=1 ); /* IE6-9 */
}








nav li a span{
	display: table-cell;
	position:relative;
	line-height:1;
	vertical-align:middle;
}
nav li a span i{
	display:block;
	margin-top:11px;
	font-size:14px;
	font-family: 'Quicksand', sans-serif;
	font-weight:300;
	font-style:normal;
}

/* 間のボーダー */
nav li a::after{
    content: "";
    position: absolute;
    left: -1px;
	width:2px;
	height:100%;
	top:0;
	bottom:0;
	margin:auto;
	background-image: url(../images/nav_border.png);
    font-weight: 100;
    color: #666;
    font-size: 13px;
}
nav li:first-child a::after{
	display:none;
}


/* ホバーで出てくるメニューを示すアイコン */
.nav_slidebtm{
	background-image: url(../images/arrow02.png);
	background-repeat: no-repeat;
	background-position: center bottom 10px;
	background-size: 8px;
}

/* ホバーで出てくるメニュー */

nav ul li div {
	position: absolute;
	display:none;
	width:150%;
	top:100%;
	left:0%;
	background-color: rgba(255,255,255,0.7);
	box-shadow: 0 2px 3px rgba(0,0,0,0.05);

}
nav ul li div a{
	display:block;
	position:relative;
	margin:0;
	padding: 13px 20px;
	border-bottom: 1px solid #f0f0f0;
	line-height:1.4;
	text-align:left;
	font-size:13px;
}
nav ul li div a::after,
nav ul li div a::before{
	display:none;
}
nav ul li div a:hover {
	background-color: #F0F0F0;
}

/* 矢印 */
.nav_arrow{
}
.nav_arrow img{
	display:block;
	position:absolute;
	top:0;
	right:5%;
	bottom:0;
	margin:auto;
	transition:0.2s ease-in-out;
}
nav ul li div a:hover .nav_arrow img{
	right:3%;
}







/* スクロールで追加されるクラス */
.fixed_nav_btn{
	display: none;
}

.fixed{
	position:fixed;
	top:0;
	left:0;
	width: 100%;
	text-align: center;
	background-color: rgba(1,26,39,0.6);
	display: flex;
	justify-content: center;
}

.fixed li a{
	margin-top:10px;
	margin-bottom: 15px;
	padding-top:13px;
}

/* 会員登録、問い合わせボタン */
.fixed ul:first-of-type{
	width:790px;
}

.fixed .fixed_nav_btn{
	display: block;
}

.fixed .fixed_nav_btn ul{
	width: 330px;
}

.fixed .fixed_nav_btn li{
	position: relative;
	width: 150px;
	margin-right: 30px;
}

.fixed .fixed_nav_btn li:last-of-type{
	margin-right: 0px;
}


.fixed .fixed_nav_btn li a{
	display: block;
	width: 100%;
	padding:10px 0;
	background-color: #cc1826;
	color: #fff;
	text-align: center;
	font-family: "A1明朝",sans-serif;
	font-size: 13px;
	font-weight: bold;
	letter-spacing: 0.2em;
	border:1px solid #000;
}
.fixed .fixed_nav_btn li a:hover{
	background: #34070a;
	border:1px solid #fff;
}


.fixed .fixed_nav_btn .triangle1{
	position: absolute;
	top:27px;
	right: 10px;
}






