
/* General styles for all menus */
.cbp-spmenu {
	background: #e2d7cc;
	position: fixed;
}
.cbp-spmenu a {
	display: block;
	color: #32200a;
	font-size: 0.8em;
	font-weight: 300;
}
.cbp-spmenu a: active {
	color: #9a765f;
	background: #9a765f;
}
.cbp-spmenu a: hover {
	color: #fff;
	background: #c2a38f;
}

/* Language menu for Smart Phone*/
.cbp-spmenu-language {
	display: block;
	background: #e2d7cc;
	position: absolute;
	right: 0px; /* Language 右端からの距離 */ /* 2020/6/29 */
}
.cbp-spmenu-language a {
	display: block;
	color: #32200a;
	font-size: 0.8em;
	font-weight: 300;
}
.cbp-spmenu-language a: active {
	color: #9a765f;
	background: #9a765f;
}
.cbp-spmenu-language a: hover {
	color: #fff;
	background: #c2a38f;
}
.cbp-spmenu-vertical-language {
	float: right;
	margin-left: auto;
	margin-top: 0px; /* Language 右端からの距離 */ /* 2020/6/29 */
	width: 90px;
	height: 136px;
	top: 0;
	z-index: 1000;
	text-align: center;
}
.cbp-spmenu-vertical-language a {
	border-bottom: 1px solid #ffffff;
	padding: 0.2em;
}

/* Orientation-dependent styles for the content of the menu */
.cbp-spmenu-vertical {
	margin-top: 85px; /* hamburger menu 上端からの距離（2020/7/1）*/
	width: 290px; /* hamburger menu右端からの距離（2020/7/1）*/
	/* height: 315px; */
	height: 355px; /* hamburger menu全体の高さ（2020/7/1）*/
	top: 0;
	z-index: 1000;
	text-align: right;
}
.cbp-spmenu-vertical-left {
	margin-top: 0px;
	width: 300px;
	height: 40px;
	top: 0;
	z-index: 1001;
}
.cbp-spmenu-vertical a {
	border-bottom: 1px solid #ffffff;
	padding: 0.2em;
}
/* Vertical menu that slides from the left or right */
.cbp-spmenu-left {
	left: -300px;
}
.cbp-spmenu-right {
	right: -300px;
}
.cbp-spmenu-left.cbp-spmenu-open {
	left: 0px;
}
.cbp-spmenu-right.cbp-spmenu-open {
	right: 0px;
}
/* Horizontal menu that slides from the top or bottom */
/* Before click */
.cbp-spmenu-top {
	top: -1000px; /* languageの隠れメニューの位置 */
}
/* After click */
.cbp-spmenu-top.cbp-spmenu-open {
	top: 55px; /* Language 上端からの距離（85-30=55） */ /* 2020/6/29 */
}
.cbp-spmenu-top.cbp-spmenu-open-pc {
	top: 85px; /* PC用 Language 上端からの距離（そのまま85） */ /* 2020/6/29 */
}
/* Transitions */
.cbp-spmenu,
.cbp-spmenu-push {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}



