@charset "UTF-8";
/* CSS Document */
/*＿＿＿＿NAVI＿＿＿＿＿＿＿＿*/
#nav-drawer {
    position: relative;
    padding-top: 0px;
    padding-left: 0px;
    width: 42px;
    height: 55px;
    display: inherit;
    z-index: 5000;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
	display: none;
	margin-top: 0px;
	padding-top: 0px;
}

/*アイコンのスペース*/
#nav-open {
	display: inline-block;
	width: 30px;
	height: 21px;
	vertical-align: middle;
	margin-top: 25px;
	margin-left: 12px;	
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
    position: absolute;
    height: 4px;/*線の太さ*/
    width: 30px;/*長さ*/
    border-radius: 3px;
    background: #555;
    display: block;
    content: '';
    cursor: pointer;
    z-index: auto;
    padding-bottom: 0px;
}
#nav-open span:before {
    bottom: -8px;
}
#nav-open span:after {
    bottom: -16px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
    display: none;/*はじめは隠しておく*/
    position: fixed;
    z-index: 99;
    top: 0;/*全体に広がるように*/
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    transition: .3s ease-in-out;
	background-size: 100%;
	background-position: center top;
	background-repeat: no-repeat;
}

/*中身*/
#nav-content {
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;/*最前面に*/
    width: 90%;/*右側に隙間を作る*/
    max-width: 80%;/*最大幅*/
    height: 100%;
    background: #fff;/*背景色*/
    transition: .3s ease-in-out;/*滑らかに表示*/
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%);/*左に隠しておく*/
}

/*チェックで表示*/
#nav-input:checked ~ #nav-close {
	display: block;/*カバーを表示*/
	opacity: 0.7;
}

#nav-input:checked ~ #nav-content {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);/*中身を表示*/
    box-shadow: 6px 0 25px rgba(0,0,0,.15);
    background-color: #010328;
    background-size: 100%;
    background-position: center bottom;
    background-repeat: no-repeat;
}
.navi-menu{
    width: 100%;
    height: 70px;
    background-color: #FFFFFF;
    font-size: 17px;
    line-height: 17pt;
    margin-bottom: 15px;
    padding-top: 8px;
    text-align: center;
}
.top-sw1-navi a{
    font-size: 18px;
    color: #FFFFFF;
    text-decoration: none;
    line-height: 41px;
    width: 100%;
    height: 50px;
    display: block;
    border-bottom: 1px dotted #FFFFFF;
    text-align: center;
}
.top-sw2-navi{
	text-align: center;
	margin-top:20px;
	font-size: 12px;
    color: #FFFFFF;
}
/*＿＿＿＿NAVI＿＿＿＿＿＿＿＿*/


body {
    background-position: center top;
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: 0;
    min-width: 100%;
    height: auto;
    float: none;
    width: auto;
}
.wrapper {
	margin-right: auto;
	margin-left: auto;
	max-width: 1160px;
	padding-right: 10px;
	padding-left: 10px;
	position: relative;
	height: auto;
}


