@charset "utf-8";
#ham-menu {
    background-color: #fff; /*メニュー背景色*/
    box-sizing: border-box;
    height: 100%;
    padding: 10px 40px; /*メニュー内左右上下余白*/
    position: fixed;
    right: -300px; /*メニュー横幅 width と合わせる*/
    top: 0;
    transition: transform 0.3s linear 0s; /*0.3s はアニメーションにかかる時間*/
    width: 300px; /*メニュー横幅*/
    z-index: 1000;
}

#menu-background {
    background-color: #333; /*黒背景*/
    display: block;
    height: 100%;
    opacity: 0;
    position: fixed;
    right: 0;
    top: 0;
    transition: all 0.3s linear 0s; /*0.3s はアニメーションにかかる時間*/
    width: 100%;
    z-index: -1;
}

#menu-icon {
    background-color: #fff; /*アイコン部分背景色*/
    border-radius: 0 0 0 10px; /*左下角丸*/
    color: #333; /*アイコン（フォント）色*/
    cursor: pointer;
    display: block;
    font-size: 50px; /*アイコン（フォント）サイズ*/
    height: 50px; /*アイコン縦高さ*/
    line-height: 50px; /*縦位置中央化*/
    position: fixed;
    right: 0;
    text-align: center;
    top: 0;
    width: 50px; /*アイコン横幅*/
    transition: all 0.3s linear 0s; /*0.3s はアニメーションにかかる時間*/
    z-index: 1000;
}

#menu-cb {
    display: none; /*チェックボックス本体は消しておく*/
}

#menu-cb:checked ~ #ham-menu,
#menu-cb:checked ~ #menu-icon {
    transform: translate(-300px); /*メニュー本体横幅 width と合わせる*/
}

#menu-cb:checked ~ #menu-background {
    opacity: 0.5;
    z-index: 999;
}
.hamBox{
	width: 100%;
	}
#ham-menu ul {
	margin:0;
	padding:0;
	}	
#ham-menu ul li{
	font-size:0.8em;
	margin-top: 10px;
	display: block;
	border-bottom: 1px solid #DCDCDC;
}
.ham-home{
	text-align: center;
	width: 100%;
	float: left;
	margin-top: 20px;
	padding-top: 10px;
	padding-bottom: 10px;
	border: 1px solid #DCDCDC;
}
.ham-u{
	margin-top:10px;
	}
.ham-mi{
	text-align: center;
	float: left;
	width: 49%;
	padding-top: 10px;
	padding-bottom: 10px;
	border: 1px solid #DCDCDC;
	margin-top: 5px;
}
/*6Plus*/@media screen and (max-width:568px){
	#ham-menu ul li{
	font-size: 8px;
		}
	}
/*iPhone6s*/@media screen and (max-width:375px){
	#ham-menu ul li{
	font-size: 9px;
		}
	}	
/*iPhone5s*/@media screen and (max-width:320px){
#ham-menu ul li{
	font-size: 8px;
	
		}
.ham-home	{
	font-size: 8px;
}
}