@charset "utf-8";





#g-nav-list ul{
	display:flex;
	position:absolute;
	right:0;
	top:0%;
	
}

#g-nav-list ul li{
	margin:0 0px;
	font-size:14px;
	letter-spacing:3px;
}
@media all and (min-width: 802px) and (max-width: 1180px) {
#g-nav-list ul li{
	font-size:12.5px;
	letter-spacing:3px;
	}
}

#g-nav-list ul li a{
/*	color:#231815;*/
	text-decoration:none;
	font-weight:700;
	color:#333;

}
#g-nav-list ul li a:hover{
	transition:all 0.3s;
	opacity:.6;
}

#g-nav-list ul .Btn_text a{
	display:block;
	padding:35px 20px;
}

#g-nav-list ul .recruitBtn a{
display:block;
	background:#F05A24;
	color:#fff;
	padding:35px 55px;
	margin-left:20px;
}
#g-nav-list ul .contactBtn a{
	background:#F6921E;
	color:#fff;
	padding:35px 40px;
	display:block;
}

@media all and (min-width: 802px) and (max-width: 1180px) {
#g-nav-list ul .Btn_text a{
	display:block;
	padding:30px 10px;
}

#g-nav-list ul .recruitBtn a{
display:block;
	background:#F05A24;
	color:#fff;
	padding:25px 15px;
	margin-left:10px;
}
#g-nav-list ul .contactBtn a{
	background:#F6921E;
	color:#fff;
	padding:25px 15px;
	display:block;
}

}

/*========= ナビゲーションのためのCSS ===============*/
@media all and (min-width: 320px) and (max-width: 801px) {
#g-nav{
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position:fixed;
	z-index: -1;
	opacity: 0;/*はじめは透過0*/
    /*ナビの位置と形状*/
	top:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:#001F45;
    /*動き*/
	transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive{
	opacity: 1;
	z-index:999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:60%;
    left:50%;
    transform: translate(-50%,-80%);
}

#g-nav.panelactive ul {
    display: block;
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
	text-align: center;
	margin:0px 0 ;

}

#g-nav li a{
	text-decoration: none;
	padding:10px 60px;
	display: block!important;
	letter-spacing: 0.1em;
	margin:10px 0 ;
	color: #fff!important;

}
/*
#g-nav-list ul{
	display:flex;
	position:absolute;
	right:0;
	top:55%;
}
	*/
#g-nav-list ul li{
	margin:0 0px;
	font-size:15px;
}
#g-nav-list ul li:last-child{
	margin:0 0px 0 0px;

}

#g-nav-list ul li a{
	color:#595757;
	text-decoration:none;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:15px;
	right: 10px;
	cursor: pointer;
    width: 25px;
    height:25px;
    background:#001F45;
    border-radius: 100px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 7px;
    height: 1px;
    border-radius: 100px;
	background-color: #666;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:8px;
	background:#fff;
}

.openbtn span:nth-of-type(2) {
	top:16px;
	background:#fff;
}

.openbtn span:nth-of-type(3) {
	top:12px;
	background:#fff;
}
.openbtn.active{
	background:#fff;
}
.openbtn.active span:nth-of-type(1) {
    top: 6px;
    left: 6px;
    transform: translateY(6px) rotate(-45deg);
    width: 50%;
		background:#001F45;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 18px;
    left: 6px;
    transform: translateY(-6px) rotate(45deg);
    width: 50%;
		background:#001F45;
}


#g-nav-list ul .Btn_text a{
	display:block;
	padding:10px 20px;
}

#g-nav-list ul .recruitBtn a{
display:block;
	background:#F05A24;
	color:#fff;
	padding:10px 20px;
	margin-left:0px;
}
#g-nav-list ul .contactBtn a{
	background:#F6921E;
	color:#fff;
	padding:10px 20px;
display:block;
}

}