@charset "utf-8";
/*==================================================
  スマホ時のメニュー（ハンバーガーメニュー）
==================================================*/
#menu {
	display: none;
}
#menuOverlay {
	position: fixed;
	top: 0;
	left: 0;
	display: none;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.6);
	z-index: 9997;
}
/**/
#switchBtnArea #switchBtn {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 46px;
	height: 50px;
	z-index: 9998;
}
/*#switchBtnArea #switchBtn:after{
	position: absolute;
	top: 3px;
	left: 0;
	display: block;
	width: 100%;
	font-size: 10px;
	color: #fff;
	text-align: center;
	white-space: nowrap;
	content:"MENU";
}*/
#switchBtnArea #switchBtn span {
	right: 20%;
	width: 60%;
	height: 0.1rem;
	display: block;
	position: absolute;
	background-color: #fff;
	transition: all 0.2s linear;
}
#switchBtnArea #switchBtn span:nth-of-type(1) {
	top: 15px;
	-webkit-transform: rotate(0);
	transform: rotate(0);
}
#switchBtnArea #switchBtn span:nth-of-type(2) {
	top: 25px;
	-webkit-transform: scale(1);
	transform: scale(1);
}
#switchBtnArea #switchBtn span:nth-of-type(3) {
	bottom: 14px;
	-webkit-transform: rotate(0);
	transform: rotate(0);
}
/**/
#switchBtnArea #switchBtn.btnClose span:nth-of-type(1) {
	top: 26px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
#switchBtnArea #switchBtn.btnClose span:nth-of-type(2) {
	-webkit-transform: scale(0);
	transform: scale(0);
}
#switchBtnArea #switchBtn.btnClose span:nth-of-type(3) {
	bottom: 22px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
/**/
#rwdMenuWrap {
	overflow: auto;
	position: fixed;
	top: 0;
	left: calc((100% - 138px) * -1);
	width: calc(100% - 138px);
	max-width: 500px;
	height: 100%;
	background: var(--color-primary);
	z-index: 9999;
}
#rwdMenuWrap ul li {
	border-bottom: 1px solid #ffffffCC;
}
#rwdMenuWrap ul li a {
	position: relative;
	display: block;
	padding: 15px;
	padding-right: 30px;
	background: #FFFFFF;
	color: var(--color-font);
	font-family: var(--font-ysabeau);
	font-size: 15px;
	font-weight: 500;
	text-align: left;
	text-decoration: none;
}
#rwdMenuWrap ul li a:after {
	position: absolute;
	top: 50%;
	right: 15px;
	display: block;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	border-top: 2px solid var(--color-primary);
	border-right: 2px solid var(--color-primary);
	opacity: 0.3;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	content: '';
}
@media print, screen and (min-width: 769px){ 
	#switchBtnArea #switchBtn {
		right: 20px;
	}
}