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

/*==================================
         hamburger menu
==================================*/
.openbtn4{
    display: none;
    position: absolute;
    top: 7px;
    right: 0px;
	cursor: pointer;
	width: 50px;
	height:50px;
}
.openbtn4 span{
	display: inline-block;
	transition: all .4s;
	position: absolute;
	left: 14px;
	height: 2px;
	border-radius: 5px;
	background: #000;
	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;
}
#right.panelactive,
#footer.panelactive{
	display: none;
}
#navi1,
#slider,
#head-top,
.side-help,
.only_pc {
	display:none;
}

/* 初期状態（閉じている） */
#g-nav {
    display: none;        /* 初期は非表示 */
    background: #fff;     /* 背景（任意） */
    position: fixed;      /* 固定表示（スクロールしても追従） */
    top: 65px;            /* ヘッダー高さに合わせて調整 */
    left: 0;
    width: 100%;
    z-index: 1000;
    height: calc(100vh - 65px);
    overflow-y: scroll;
    font-size: 16px;
}
#g-nav>div {
    width: 95%;
    margin: 0px auto;
}
#g-nav h4 {
    background-color: #000;
    padding: 5px 10px;
    color: #FFF;
    border-radius: 10px 10px 0px 0px;
}
#g-nav>div>div {
    padding-left: 20px;
    margin-bottom: 20px;
}
#g-nav>div>div:nth-of-type(7) {
    margin-bottom: 100px;
}
#g-nav .menu li {
    padding: 5px 0px;
    border-bottom: 1px solid #eee;
}
#g-nav .menu li::before {
    font-family: "Font Awesome 5 Free", "Font Awesome", "font awesome", "fontawesome";
    font-weight: 900;
    padding-right: 10px;
    content: "\f0a9";
}
.g-nav-banner {
    margin-top: 20px;
}
.g-nav-banner>a {
    margin-bottom: 10px;
    display: block;
}
/*==================================
             pageTop
==================================*/
.pageTop {
	position: fixed;
	z-index: 9999;
	bottom: 20px;
	right: 15px;
	font-size: 12px;
}
.pageTop a {
	display: block;
	text-decoration: none;
	padding-right: 5%;
	color: #e62889;
}
.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;
}
