@charset "utf-8";

/* #nav-toggle */
#nav-toggle {
	width: 60px;
    height: 60px;
    background: #565554;
    position: absolute;
    top: 0px;
    right: -60px;
	cursor: pointer;
}
#nav-toggle > div {
    width: 25px;
    height: 16px;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#nav-toggle > div > span {
    display: block;
    width: 100%;
    height: 2px;
	background: #fff;
	
    position: absolute;
    left: 0;
}
#nav-toggle > div > span:nth-child(1) {
    top: 0;
}
#nav-toggle > div > span:nth-child(2) {
    top: 50%;
    transform: translate(0px, -50%);
}
#nav-toggle > div > span:nth-child(3) {
    bottom: 0px;
}

/* #sidebar */
#sidebar {
    width: 240px;
    height: 100%;
    background: #fce3e6;
    
    position: fixed;
    top: 0px;
	left: -240px;
    z-index: 10;
    
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#global-nav .menu_logo{
	display: block;
    text-align: center;
    padding: 12px 15px;
}
#global-nav .menu_logo img{
	width: 100%;
}

#global-nav > ul{
    margin: 0px;
    padding: 0px;
    margin-bottom: 20px;
    max-height: calc(100vh - 150px);
    position: relative;
}
#global-nav > ul > li {
    list-style: none;
    border-bottom: solid 1px #b2b2b2;
    background-image: url(../img/common/h_list_icon.png);
    background-repeat: no-repeat;
    background-size: 8px;
    background-position: right 15px bottom 50%;
	background-color: #bf1920;
}

#global-nav > ul > li > a{
    color:#fefefe;
    text-decoration: none;
    font-size: 15px;
    display: block;
    padding:13px 20px;

    -moz-transition: color .3s linear;
    -webkit-transition: color .3s linear;
    transition: color .3s linear;
}

#global-nav > ul > li:hover{
	background-color: #ff7580;
}

/* close */
.close #sidebar {
    left: 0;
}

@media screen and (min-width: 801px) {
	#global-nav .h_icon_contents{
		display: none;
	}
}

@media screen and (max-width: 800px) {
	#global-nav .h_icon_contents{
		justify-content: unset;
		padding-left: 20px;
	}
}

@media screen and (max-width: 480px) {
    #nav-toggle{
        width: 14vw;
        height: 15.3vw;
        right: -14vw;
    }
}
