@charset "utf-8";


/*-------------------------
横幅1001以上　三本線なし
-------------------------*/
@media(min-width:1001px){
.openbtn{
display: none;
}
}

/*-------------------------
横幅1001以上　　ナビ
-------------------------*/
@media(min-width:1001px){
#g-nav-list{
float: right;
width: auto;
}

#g-nav-list ul{
margin-top: 30px;
margin-right: 15px;
}

#g-nav-list ul:after{
content: "";
display: block;
clear: both;
}

#g-nav-list li{
font-size: 15px;
list-style: none;
float: left; /*横並び*/
width: auto;
}

#g-nav-list li a{
color: #333;
margin-left: 18px;
text-decoration: none;
}

#g-nav-list li a:hover{
color: #666;
text-decoration: none;
}

.to-child{
display: inline-block;
transform: scale(0.8,0.5);
vertical-align: baseline;
}


}

/*-------------------------
横幅1000以下　三本線あり
-------------------------*/

@media (max-width: 1000px) {
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:10px;
	right: 10px;
	cursor: pointer;
    width: 50px;
    height:50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #666;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

}

/*-------------------------
横幅1000以下　ナビ
-------------------------*/

@media (max-width: 1000px) {

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	top:-120%;
    right: 0;
	width: 100%;/*スマホ画面いっぱいに*/
    height: 100vh;/*ナビの高さ*/
	background: rgba(255, 255, 255, 1);
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;/*スマホ画面いっぱいに*/
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
margin:0 auto;
margin-top: 20px;
	padding: 0;
	width: 80%;/*文字表示の左右幅*/
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center;
}

#g-nav li a{
	color: #333;
	text-decoration: none;
	padding:10px;
	display: block;
	font-weight: bold;
	font-size: 20px;
	line-height: 30px;
}



}



