@charset "utf-8";
/*==================================================
  スマホ時のメニュー（ハンバーガーメニュー）
==================================================*/
@media only screen and (max-width: 768px) {
	#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: 3px;
		display: block;
		position: absolute;
		background-color: #fff;
		transition: all 0.2s linear;
	}
	#switchBtnArea #switchBtn span:nth-of-type(1) {
		top: 22px;
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	#switchBtnArea #switchBtn span:nth-of-type(2) {
		top: 30px;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	#switchBtnArea #switchBtn span:nth-of-type(3) {
		bottom: 9px;
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	/**/
	#switchBtnArea #switchBtn.btnClose span:nth-of-type(1) {
		top: 30px;
		-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: 16px;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	/**/
	#rwdMenuWrap {
		overflow: auto;
		position: fixed;
		top: 0;
		left: calc((100% - 138px) * -1);
		width: calc(100% - 138px);
		height: 100%;
		background: #b6b8a1;
		z-index: 9999;
	}
	#rwdMenuWrap ul li {
		border-bottom: 1px solid #ccc;
	}
	#rwdMenuWrap ul li a {
		position: relative;
		display: block;
		padding: 15px;
		padding-right: 30px;
		color: var(--color-font);
		font-family: var(--font-sans);
		font-size: 15px;
		font-weight: 400;
		text-align: left;
		text-decoration: none;
		background: #fff;
	}
	#rwdMenuWrap ul li a:after {
		position: absolute;
		top: 50%;
		right: 15px;
		display: block;
		width: 8px;
		height: 8px;
		margin-top: -4px;
		border-top: 2px solid #b6b8a1;
		border-right: 2px solid #b6b8a1;
		opacity: 0.3;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		content: '';
	}
	#rwdMenuWrap ul li.sns a {
		display: flex!important;
		align-items: center;
	}
	#rwdMenuWrap ul li a span {
		padding-left: 1em;
		vertical-align: middle;
	}
	#rwdMenuWrap ul li a img {
		width: 25px;
		filter: drop-shadow(0 0 3px #000);
	}
}