.pushbar.opened{
display: block;
}

html.pushbar_locked{
    -ms-touch-action: none;
    touch-action: none;
}


.pushbar_locked .pushbar_main_content.pushbar_blur{
	filter:blur(15px);
}
.pushbar{
	z-index: 1000;
	position: fixed;
	will-change: transform;
	overflow-y: auto;
	transition:transform 0.5s ease;
	will-change: transform;
	background:#fff;
}
.pushbar_overlay{
	z-index: -999;
	position: fixed;
	width: 100%;
	max-width: 100%;
	height: 100%;
	min-height: 100vh;
	top: 0;
	left: 0;
    will-change: opacity;
    transition:opacity 0.5s ease;
    opacity:0;
    will-change: opacity;
	background: #3c3442;
}
html.pushbar_locked .pushbar_overlay{
	opacity:0.8;
	z-index: 999;
    transition:opacity 0.5s ease;
}


.pushbar.from_left{
	top: 0;
	left: 0;
	width: 256px;
	max-width: 100%;
	height: 100%;
	min-height: 100vh;
	transform: translateZ(0) translateX(-100%);
}

.pushbar.from_right{
	top: 0;
	right: 0;
	width: 256px;
	max-width: 100%;
	height: 100%;
	min-height: 100vh;
	transform: translateZ(0) translateX(100%);
}

.pushbar.from_top{
	top: 0;
	left: 0;
	width: 100%;
	max-width: 100%;
	min-height: 150px;
	transform: translateZ(0) translateY(-100%);
}
.pushbar.from_bottom{
	bottom: 0;
	left: 0;
	width: 100%;
	max-width: 100%;
	height: 70%;
	transform: translateZ(0) translateY(100%);
}

.pushbar.opened{
   transform: translateX(0px) translateY(0px);
}

/* drawer */
.drawer_wrap {
	position:relative;
}
.dra_conts {
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	height: 100%;
	box-sizing: border-box;
	padding-top: 30px;
}
.dra_tl {
	position: fixed;
	top: 0;
	left: 0;
	height: 30px;
	width: 100%;
	-webkit-transform: translateZ(999px);
	transform: translateZ(999px);
}
.dra_tl p {
	background: #0062A0;
	color: #fff;
	padding: 0 2%;
	font-size: 12px;
	line-height: 30px;
}
.dra_subtl {
}
.dra_subtl p {
	background: #F5F5F0;
	padding: 3px 2%;
	font-size: 12px;
	color: #666;
}
.dra_li {
}
.dra_li ul {
	overflow: hidden;
}
.dra_li li {
	float: left;
	width: 50%;
	box-sizing: border-box;
	border-bottom: 1px solid #ccc;
}
.dra_li li:nth-of-type(2n-1) {
	border-right: 1px solid #ccc;
}
.dra_li li:last-of-type,
.dra_li li:nth-of-type(odd):nth-last-of-type(2) {
	border-bottom: none;
}
.dra_li a {
	padding: 8px 5%;
	display: block;
	font-size: 13px;
	line-height:24px;
	font-weight:bold;
}
.dra_li_size10 a{
	font-size:10px !important;
}
.dra_li i {
	margin-right: 5px;
}
.dra_close {
	position:absolute;
	height: 50px;
	width: 50px;
	bottom: 5px;
	right: 5px;
	z-index: 1001;
	background: none;
	-webkit-transform: translateZ(999px);
	transform: translateZ(999px);
}
.dra_close button {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
	background: none;
	padding:0px;
}
.dra_close button::-webkit-search-decoration {
	display: none;
}
.dra_close button::focus {
	outline-offset: -2px;
}

.fixfoot ul li button {
    display:block;
    width: 100%;
    height: 100%;
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
    background: none;
    font-size:13px;
    padding:0px 0px 0px 0px;
}
.fixfoot ul li button img {
	max-height: 50px;
	display:block;
	margin: 0 auto;
}
.fixfoot ul li button::-webkit-search-decoration {
  display: none;
}
.fixfoot ul li button::focus {
  outline-offset: -2px;
}
.fixfoot ul li button i{
  width: 100%;
    display: block;
    text-align: center;
}
/*  20201103 最上部検索ボタン追加  */

.dra_top_menu ul {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    margin: 0 auto;
    width: 94%;
}
.dra_top_menu ul li {
    width: 100%;
    padding: 0px 2% 0 0;
}
.dra_top_menu ul li a {
    color: #333;
    font-size: 10px;
    text-align: center;
    display: block;
    padding: 10px 0;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-shadow: 0 3px #bbb;
}
.dra_top_menu ul li a i {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}
