/* === アコーディオンメニュー === */
.accordion-menu {
    width: 100%;
    margin: 0px 0px 0px 0px;
    float: left;
    list-style: none;
}
.accordion-menu li.open .dropdownlink {
    background-image: url("../imgs/spm_minus.svg");
}
.accordion-menu li:last-child .dropdownlink {
}
.dropdownlink, .ddnlink {
	height: 80px;
	cursor: pointer;
	display: block;
	padding: 30px 0px 0 50px;
	position: relative;
	background-position: right 30px center;
	background-size: 24px 24px;
	background-repeat: no-repeat;
	font-size: 4.5vw;
	text-align: left;
	border-bottom: 1px solid #c5c5c5;
	line-height: 50px;
    color: #ffffff;
}
.dropdownlink {
    background-image: url(../imgs/spm_plus.svg);
}
.submenuItems {
    width: 100%;
	display: none;
    list-style: none;
    position: relative;
    padding-top: 20px;
}
.ddnlink {
	background-image: url(../imgs/spm_arrow.svg);
    width : calc(100% - 50px);
	margin: 0px 0px 0px 0px;
	float: left;
}
.ddnlink a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent:-999px;
    z-index: 2; /* 必要であればリンク要素の重なりのベース順序指定 */
}
.ddnlink:hover {
    filter:alpha(opacity=70);/* IE 6,7*/
    -ms-filter: "alpha(opacity=70)";/* IE 8,9 */
    -moz-opacity:0.7;/* FF , Netscape */
    -khtml-opacity: 0.7;/* Safari 1.x */
    opacity:0.7;
    zoom:1;/*IE*/
}
.menu_top {
	width: 100%;
    height: 200px;
    float: left;
}
.ddnlink2 {
	background-color: #2965af;
}