@charset "UTF-8";
/*
 * hamburger-menu.css
 *
 */

/*==================================
         hamburger menu
==================================*/
.openbtn4{
	display: block;
	z-index: 1000;
	position: fixed;
	cursor: pointer;
	width: 50px;
	height:50px;
	border-radius: 5px;
	top: 10px;
    right: 10px;
}
.openbtn4 span{
	display: inline-block;
	transition: all .4s;
	position: absolute;
	left: 14px;
	height: 2px;
	border-radius: 5px;
	background: #666464;
	width: 45%;
  }
.openbtn4 span:nth-of-type(1) {
	top:17px; 
}
.openbtn4 span:nth-of-type(2) {
	top:25px;
}
.openbtn4 span:nth-of-type(3) {
	top:33px;
}
.openbtn4.active span:nth-of-type(1) {
	top: 18px;
	left: 18px;
	transform: translateY(6px) rotate(-45deg);
	width: 40%;
	background: #000;
}
.openbtn4.active span:nth-of-type(2) {
	opacity: 0;
}
.openbtn4.active span:nth-of-type(3){
	top: 30px;
	left: 18px;
	transform: translateY(-6px) rotate(45deg);
	width: 40%;
	color: #000;
	background: #000;
}
#wrapper.panelactive,
#contact_box.panelactive,
#footer.panelactive,
.floating-menu.panelactive {
	display: none;
}
#navi1,
#slider,
#head-top,
.side-help,
.only_pc {
	display:none;
}

#g-nav{
	width: 100%;
    margin: 0px auto;
}
#g-nav-list	{
	width: calc(100% - 40px);
	margin: 20px 20px 0px;
}
#g-nav-list li {
	margin: 30px auto;
	border-bottom: 1px solid #333;
}
#g-nav-list li:last-of-type {
    border: none;
}
#g-nav-list li a{
    display: block;
	padding: 10px 0px;
	color: #333;
	text-decoration: none;
}
#g-nav-list li a:hover{
	color: #333;
	text-decoration: underline;
}

/*==================================
             pageTop
==================================*/
.pageTop {
	position: fixed;
	z-index: 9999;
	bottom: 80px;
	right: 15px;
	font-size: 12px;
}
.pageTop a {
	display: block;
	text-decoration: none;
	padding-right: 5%;
	color: #00234b;
}
.pageTop a:hover {
	text-decoration: none;
}
.pageTop a:after {
	content: "\f0aa";
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	font-size: 3em;
	background-color: #fff;
	border-radius: 30px;
	border: 2px solid #fff;
}

/*==================================
             sp-navi
==================================*/
#g-nav {
    display: none;
    position: fixed;
    animation-delay: .3s;
    z-index: 4;
    top: -22px;
    overflow-y: scroll;
    height: 100%;
}
#g-nav.panelactive {
    display: block;
}