@charset "utf-8";
/*==================================================
　5-2-1 3本線が×に
===================================*/
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn-fixed{
	position: absolute;
	right: 10px;
	top: 5px;
}
.openbtn{
	position: relative;/*ボタン内側の基点となるためrelativeを指定*/
	background: linear-gradient(#039874, #1b598c);
	cursor: pointer;
    width: 60px;
    height:45px;
	border-radius: 20px;
	z-index: 9999;/*ボタンを最前面に*/
}

/*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 16px;
    height: 3px;
    border-radius: 2px;
	background: #fff;
  	width: 45%;
  }

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

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

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

/*activeクラスが付与されると線が回転して×に*/

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

.openbtn.active span:nth-of-type(2) {
	opacity: 0;/*真ん中の線は透過*/
}

.openbtn.active span:nth-of-type(3){
    top: 28px;
    left: 19px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 9888;
    /*ナビのスタート位置と形状*/
	top:0;
    right: -120%;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:#999;
	background: linear-gradient(45deg,#039874,#b8e2e5);/*背景色（グラデーション）*/
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    right: 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 {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
	width: 100%;
}

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

#g-nav li{
	list-style: none;
    text-align: center;
	font-size: 1.7rem;
}

#g-nav li a{
	color: #333;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	line-height: 1.0;
	font-weight: 500;
}
h3.g-nav {
	font-size: 1.7rem;
	font-weight: 600;
	margin-top: 15px;
	text-align: center;
}
h3.g-nav:after {
	content: "----";
	margin-left: 5px
}
h3.g-nav:before {
	content: "----";
	margin-right: 5px
}
/* == */
@media print, screen and (min-width : 768px) {
.openbtn-fixed{
	position: absolute;
	right: 18px;
	top: 18px;
}
.openbtn{
	position: relative;/*ボタン内側の基点となるためrelativeを指定*/
	background: linear-gradient(#039874, #1b598c);
	cursor: pointer;
    width: 80px;
    height:50px;
	border-radius: 30px;
	z-index: 9999;/*ボタンを最前面に*/
}

/*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 22px;
    height: 3px;
    border-radius: 2px;
	background: #fff;
  	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;
}

/*activeクラスが付与されると線が回転して×に*/

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