
#menu-container a:hover {
	opacity: 1;
}

#menu-container {
	border-bottom: 1px solid #ddd;
}

#menu-container .menu-submenu {
	padding: 20px 38px;
}

#menu-container .menu-list {
	padding-left: 0;
	display: block;
	width: 96%;
	margin: 0 auto;
	max-width: 1274px;
	background: white; /* Questionの色 */
}

.no-accordion {
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
	border-top: 1px solid #ddd;
}

.no-accordion a {
	width: 100%;
	height: 120%;
	display: block;
	padding: 10px 0;
}

#menu-container .menu-list li.accordion-toggle, #menu-container .menu-list .menu-login {
	font-size: 12px;
	font-weight: bold;
	padding: 10px 0;
	text-transform: uppercase;
	border-top: 1px solid #ddd;
}

#menu-container .menu-list li:first-of-type {
	border-top: 0px;
}

.accordion-toggle, .accordion-content {
	cursor: pointer;
	position: relative;
	letter-spacing: 1px;
}
.accordion-content {
	display: none;
	font-size: 12px;
	line-height: 260%;
	background: #fff; /* Answerの色 */
}

.accordion-toggle a:before, .accordion-toggle a:after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	right: 20px;
	width: 10px;
	height: 2px;
	margin-top: -1px;
	background-color: #5a5858; /* 「+」の色 */
	transform-origin: 50% 50%;
	transition: all 0.3s ease-out;
}

.accordion-toggle a:before {
	transform: rotate(-90deg);
	opacity: 1;
	z-index: 2;
}

.accordion-toggle.active-tab {
	background: #fff; /* Question押したときの色 */
	transition: all 0.3s ease;
}
.accordion-toggle a.active:before {
	transform: rotate(0deg);
	background: #5a5858 !important; /* 「-」の色 */
}

.accordion-toggle a.active:after {
	transform: rotate(180deg);
	background: #5a5858 !important; /* 「-」の色 */
	opacity: 0;
}

