/* Menu Toggle Btn
----------------------------------------*/
.menu-toggle {
	display: none;
	float: right;
	height: 49px;
	margin-top: 5px;
	margin-right: 6px;
}

.aiconToggle{
	display: block;
	width: 42px;/*枠の大きさ*/
	height: 42px;/*枠の大きさ*/
	background: #fff;
	position: relative;
	cursor: pointer;
	border-radius: 3px;
	border: 1px solid #252525;
}

.aiconToggle hr{
	display: block;
	margin: 0;
	border: none;
	width: 58%;/*バツ線の長さ*/
	height: 3px;/*バツ線の太さ*/
	background: #252525;
	transform-origin:0% 50%;
	position: absolute;
	top: 10px;
	left: 21%;
	transition: .3s;
}

.aiconToggle hr:nth-of-type(2){
	top: 20px;
}

.aiconToggle hr:nth-of-type(3){
	top: 30px;
}

.close hr{
	left: 28%;        
}

.close hr:nth-of-type(1){
	transform: rotate(45deg);
	width: 58%;
}

.close hr:nth-of-type(2){
	opacity: 0;
}

.close hr:nth-of-type(3){
	top: 27px;
	transform: rotate(-45deg);
	width: 58%;
}

/* Menu Design Detail
----------------------------------------*/
#respMenu{
	display: none;
}

@media (min-width: 720px) {
	#respMenu{
		display:flex;
	}
}

.menuList {
	padding: 0 auto;
	margin: 0 auto;
	list-style: none;
	display: flex;
	float: left;
	width:100%;
	z-index: 9999;
	pointer-events: auto;
	background: #fff;
}

.menuList li{
	display: flex;
	align-self: auto;
	flex: 1;
	min-width: 0;
}

.menuList li a{
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	padding: 0.5em 0em 0.5em 0em;
	text-align: center;
	word-break: break-all;
	box-sizing: border-box;
	font-weight: 500;
	font-size: 90%;
}

.menuList li a:hover{
	color: #7C7C7C;
}

.menuList li ul {
	display:none;
}

.menuList > li {
	display: block;
	border-bottom: 1px solid #252525;
	float: none;
}
.menuList li.menu-active > a {
	background: #fff !important;
}
.menuList li .menu-active {
	position: relative;
}
.menuList > li > a{
	padding-top: 15px;
	padding-bottom: 15px;
}

.menuList li a:hover {
	opacity:0.8;
}

.menuList > li:first-child {
	border-top: 1px solid #252525;
}

.menuList > li > a i {
	padding-right: 10px;
}

.menuList > li > a > .arrow:before {  
	margin-left: 5px;
	font-size: 12px;
	height: auto;
	font-family: "Font Awesome 5 Free";
	content: "\f105";
	font-weight: 900;
	text-shadow: none;
	width: 10px;
	display: inline-block;
}

li.menu-active > a > .arrow:before {
	content: "\f107" !important;
}

.menuList li ul.sub-menu > li {
	width: 100%;
	border-top: 1px dashed #ccc;
	padding-top: 5px;
	padding-bottom: 5px;
}

@media (min-width: 720px) {

	.menuList {
		float: right;
		max-width: 590px;
		background: transparent;
		margin-top: 3px;
	}

	.menuList > li {
		display: block;
		border: 0;
	}
	.menuList > li > a{
		padding-top: 10px;
		padding-bottom: 8px;
	}
	.menuList li a:hover {
		opacity:1;
	}
	.menuList > li > a > .arrow:before {  
		content: '\f107';
	}
	.menuList > li:first-child {
		border-top: 0;
	}
	.menuList li ul.sub-menu > li {
		width: 100%;
		border-top: 0;
		padding: 0;
	}
	.menuList li ul.sub-menu li > a > .arrow:before {
		content: "\f105" !important;
	}
	.menuList > li > ul.sub-menu {
		display: none;
		list-style: none;
		clear: both;
		margin: 0;
		position: absolute;
		z-index: 9999;
	}
	.menuList li ul.sub-menu {
		background: #fff;
		border: 1px solid #ccc;
	}
	.menuList li ul.sub-menu > li {
		width: 120px;
		border-top: 1px solid #ccc;
	}

	.menuList li ul.sub-menu > li:first-child{
		border-top: 0;
	}

	.menuList li ul.sub-menu li a {
		display: block;
		margin: 0;
		padding: 12px 20px 12px 20px;
		text-decoration: none;
		font-weight: normal;
		background: none;
	}
	.menuList li ul.sub-menu li.menu-active a {
		color: #7C7C7C;
		/*background: #e3f9eb !important;*/
	}
	.menuList > li > ul.sub-menu > li {
		position: relative;
	}

	.hide-menu {
		display: none;
	}

}

@media (min-width: 900px) {
	.menuList {
		max-width: 700px;
	}
}
