@charset "utf-8";
/*==================================================
スマホ時のメニュー（ハンバーガーメニュー）
==================================================*/
#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: fixed;
	top: -21px;
	right: -12px;
	display: block;
	width: 120px;
	height: 120px;
	z-index: 9998;
	box-shadow: 0 0 10px rgba(230,230,229,0.7);
	background: #fe6d69;
	border-radius: 50%;
}
#switchBtnArea #switchBtn::before {
	content: "";
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #e7dd54;
	display: inline-block;
	position: absolute;
	right: 17px;
	bottom: 10px;
}
@media print, screen and (min-width: 769px){ /* PCのみ */
	#switchBtnArea #switchBtn:hover {
		filter:alpha(opacity=100);
		-moz-opacity: 1;
		opacity: 1;
		background: #fff;
	}
}
#switchBtnArea #switchBtn span {
	left: 35px;
	width: 45px;
	height: 3px;
	display: block;
	position: absolute;
	background-color: #fff;
	transition: all 0.2s linear;
}
@media print, screen and (min-width: 769px){ /* PCのみ */
	#switchBtnArea #switchBtn:hover span {
		background-color: var(--color-red);
	}
}
#switchBtnArea #switchBtn span:nth-of-type(1) {
	top: 50px;
	-webkit-transform: rotate(0);
	transform: rotate(0);
}
#switchBtnArea #switchBtn span:nth-of-type(2) {
	top: 60px;
	-webkit-transform: scale(1);
	transform: scale(1);
}
#switchBtnArea #switchBtn span:nth-of-type(3) {
	top: 70px;
	-webkit-transform: rotate(0);
	transform: rotate(0);
}
/**/
#switchBtnArea #switchBtn.btnClose span:nth-of-type(1) {
	top: 65px;
	-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) {
	top: 65px;
	-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-red);
	z-index: 9999;
}
#rwdMenuWrap .box_flex {
	display: block;
}
#rwdMenuWrap ul li {
	border-bottom: 1px solid #ffffffCC;
}
#rwdMenuWrap ul li a {
	position: relative;
	display: block;
	padding: 10px 15px;
	padding-right: 30px;
	background: #FFFFFF;
	color: var(--color-font);
	font-family: var(--font-sans);
	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-red);
	border-right: 2px solid var(--color-red);
	opacity: 0.3;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	content: '';
}
@media only screen and (max-width: 640px){
	#switchBtnArea #switchBtn {
		width: 80px;
		height: 80px;
		right: -20px;
	}
	#switchBtnArea #switchBtn::before {
		right: 21px;
		bottom: -2px;
	}
	#switchBtnArea #switchBtn:after{
		position: absolute;
		top: 27px;
		left: -5px;
		display: block;
		width: 100%;
		font-size: 10px;
		color: #fff;
		text-align: center;
		white-space: nowrap;
		content:"MENU";
	}
	#switchBtnArea #switchBtn span {
		left: 18px;
		width: 35px;
	}
	#switchBtnArea #switchBtn span:nth-of-type(1) {
		top: 45px;
	}
	#switchBtnArea #switchBtn span:nth-of-type(2) {
		top: 55px;
	}
	#switchBtnArea #switchBtn span:nth-of-type(3) {
		top: 65px;
	}
	#switchBtnArea #switchBtn.btnClose span:nth-of-type(1) {
		top: 55px;
	}
	#switchBtnArea #switchBtn.btnClose span:nth-of-type(3) {
		top: 55px;
	}
	#rwdMenuWrap ul li a {
		padding: 8px 15px;
	}
}