@charset "utf-8";

#root_ul #closebt1 {
    display: block;
    background-color: #F4AC00;
    margin-top: 16px;
    text-align: center;
    width: 104px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0px;
    line-height: 24px;
    color: #FFFFFF;
    border-radius: 4px;
    font-size: 10px;
}
#menu_parent ul {
    margin-top: 0px;
    margin-left: 0px;
    margin-bottom: 0px;
    margin-right: 0px;
    padding-left: 0px;
    padding-bottom: 72px;
    font-size: 13px;
}
#menu_parent {
	background-color: hsla(0,0%,100%,0.90);
	padding-top: 16px;
	padding-bottom: 16px;
	padding-right: 16px;
	width: 90%;
	margin-left: auto;
	overflow: auto;
	margin-top: 0px;
	-webkit-overflow-scrolling: touch;
}
#menu_parent a {
	color: #595757;
	text-decoration: none;
	font-weight: 400;
	display: block;
	font-size: 14px;
}

#menu_parent ul ul {
	margin-left: 0px;
	padding-left: 0px;
}
#menu_parent ul ul ul {
	margin-left: 24px;
}
#menu_parent ul li {
	padding-top: 12px; /*メニュー項目の上パディング*/
	padding-bottom: 12px; /*メニュー項目の下パディング*/
	/*background-image: url(images/nav_arrow.svg);*/
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 8px auto;
	border-bottom: 1px solid #BEBEBE;
	font-size: 14px;
	font-weight: 400;
}

#menu_parent li{
	color: #595757;
	text-decoration: none;
	font-weight: 300;
}

#menu_parent > li{
    display: table-cell;
}




/*parent_menu_style*/

input[type="checkbox"].menu-trigger ~ #menu_parent{
	box-sizing: border-box;
	height: 100%;
	padding: 10px 20px; /*メニュー内部上下左右余白*/
	position: fixed;
	right: -300px; /*メニュー横幅①と合わせる*/
	top: 80px;
	transition: transform 0.3s linear 0s; /*0.3s は変化するのにかかる時間*/
	width: 300px; /*メニュー横幅①*/
	z-index: 1000;
	overflow: scroll;
}

input[type="checkbox"].menu-trigger ~ #menu_parent + #menu-background{
	background-color: #333; /*黒背景部分背景色*/
	display: none;
	height: 100%;
	opacity: 0;
	position: fixed;
	right: 0;
	top: 80px;
	transition: all 0.3s linear 0s; /*0.3s は変化するのにかかる時間*/
	width: 100%;
	z-index: -1;
}
input[type="checkbox"].menu-trigger:checked ~ #menu_parent{
	transform: translate(-300px); /*メニュー横幅①と合わせる*/
}

input[type="checkbox"].menu-trigger:checked ~ #menu_parent + #menu-background{
	display: block;
    opacity: 0.5; /*黒背景部分透過度*/
    z-index: 999;
}

input[type="checkbox"].menu-trigger{
    display: none;
}
/*ハンバーガーの位置*/
input[type="checkbox"].menu-trigger + div{
	padding: 0;
	margin: 0;
	position: absolute;
	top: 24px;
	right: 16px;
}
input[type="checkbox"].menu-trigger + div > label{ /*ハンバーガーのサイズ*/
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
	padding: 0;
	position: relative;
	width: 40px;
	height: 28px;
	float: right;
}

input[type="checkbox"].menu-trigger + div > label > span{
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
	position: absolute;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: #595757;
	border-radius: 2px;
}

input[type="checkbox"].menu-trigger + div > label > span:nth-of-type(1) {
	top:-4px;
}

input[type="checkbox"].menu-trigger + div > label > span:nth-of-type(2) {
	top: 10px;/*ハンバーガーの真ん中の棒*/
}

input[type="checkbox"].menu-trigger + div > label > span:nth-of-type(3) {
	bottom: 0px;
}


input[type="checkbox"].menu-trigger:checked + div > label{
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
}

input[type="checkbox"].menu-trigger:checked + div > label > span:nth-of-type(1) {
	-webkit-transform: translateY(11px) rotate(-45deg);
	transform: translateY(14px) rotate(-45deg);/*×左下から右上の棒の上からの位置*/
}

input[type="checkbox"].menu-trigger:checked + div > label > span:nth-of-type(2) {
	-webkit-transform: translateY(0) rotate(45deg);
	transform: translateY(0) rotate(45deg);
}

input[type="checkbox"].menu-trigger:checked + div > label > span:nth-of-type(3) {
	opacity: 0;
}


/*child_menu_style*/

input[type="checkbox"].on-off{
    display: none;
}


input[type="checkbox"].on-off + li > label{
	padding 0;
	float: left;
}
/*
input[type="checkbox"].on-off + li > label:before{
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
	padding: 0;
	position: relative;
	width: 30px;
	height: 22px;
}*/
#menu_parent{
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	margin: 0;
	padding-top: 0;
	padding-right: 0;
	padding-left: 0;
	border-left: 5px solid #85754e;
/*    list-style: none;*/
}
#menu_parent > ul * {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    margin: 0;
    padding: 0;
/*    list-style: none;*/
    overflow:auto;
}


#menu_parent + label > li * {
    padding: 5px;
}

input[type="checkbox"].on-off + label + ul{
    height: 0;
    overflow: hidden;
    height: 0px;
}

input[type="checkbox"].on-off:checked + label + ul{
    height: 10000px;
    max-height: 50px;
}

input[type="checkbox"].on-off + label > li > div{
	padding 0;
	float: right;
	position: relative;
	left:-3px;
	width:20px;
	height: 24px;
}



/*右側の＋*/
input[type="checkbox"].on-off + label > li > div > span{
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
	position: absolute;
	width: 70%;
	height: 1px;
	background-color: #595757;
	border-radius: 4px;
	top: 11px;
}

input[type="checkbox"].on-off + label > li > div > span:nth-of-type(1){
	-webkit-transform: translateY(0) rotate(90deg);
	transform: translateY(0) rotate(90deg);
	/*top:10px;*/
}

input[type="checkbox"].on-off + label > li > div > span:nth-of-type(2){
	/*top:10px;*/
}

input[type="checkbox"].on-off:checked + label > li > div > span:nth-of-type(1){
	opacity: 0;
	/*-webkit-transform: translateY(0px) rotate(35deg);
	transform: translateY(0px) rotate(0deg);*/
}

input[type="checkbox"].on-off:checked + label > li > div > span:nth-of-type(2){
	-webkit-transform: translateY(0) rotate(360deg);
	transform: translateY(0) rotate(360deg);

/*-	-webkit-transform: translateY(0px) rotate(-30deg);
	transform: translateY(0px) rotate(-0deg);*/
}

.disable-accordion-menu{
	padding 0;
	float: right;
	position: relative;
	left: 0px;
	width: 20px;
	height: 24px;
}

/*右側の＞動かない のサイズ①*/
.disable-accordion-menu > span{
	display: inline-block;
	/*transition: all .4s;*/
	box-sizing: border-box;
	position: absolute;
	width: 50%;
	height: 1px;
	background-color: #595757;
	border-radius: 4px;
	top: 10px;
}
/*右側の＞動かない のサイズ②　移動ピクセルや角度の調整*/
.disable-accordion-menu > span:nth-of-type(1){
	-webkit-transform: translateY(0px) rotate(35deg);
	transform: translateY(0px) rotate(35deg);
}
/*右側の＞動かない のサイズ③　移動ピクセルや角度の調整*/
.disable-accordion-menu > span:nth-of-type(2){
	-webkit-transform: translateY(5px) rotate(-30deg);
	transform: translateY(5px) rotate(-30deg);
}

.scroll-stop{
	overflow: hidden;
}

label > * { /*iOSでlabelの子要素クリックがinput type=checkboxに反映されない問題を解決*/
    display: block;
    pointer-events: none;
}

.closebuttonlabel{
	margin: 0;
    padding: 0;
    vertical-align: bottom;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    width: 88px;
    height: auto;
    margin-top: 16px;
}
