@charset "UTF-8";
/* CSS Document */

.menu {
    position: relative;
    width: 100%;
/*	width: 35%;*/
/*	min-width: 120px;*/
/*    max-width: 800px;*/
/*    height: 40px;*/
	height: auto;
/*    margin: 0 auto;*/
    background-color: rgba(220, 220, 220, 0.90);
}

.menu > li {
/*    width: 30%;*/
	width: 100%;
/*    height: auto;*/
    line-height: 60px;
	background-color: rgba(0, 0, 0, 0.0);
	/*border-bottom: solid 1px #aaaaaa;*/
	margin: 0px !important;
}
.menu > li:hover {
    background-color: rgba(100, 100, 100, 0.2);
	transition: background-color 0.3s ease;
}

.menu > li.menu__single {
    position: relative;
}

.menu > li a {
    display: block;
/*    color: #fff;*/
}
.menu > li a:hover {
/*    color: #ffffff;*/
}

ul.menu__second-level {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    background-color: rgba(240, 240, 240, 0.90);
	/*border-bottom: solid 1px #aaaaaa;*/	
}
ul.menu__third-level, 
ul.menu__fourth-level {
    visibility: hidden;
    opacity: 0;
}

li.menu__single ul.menu__second-level {
    position: absolute;
    top: 0px;
	left: 0;
    width: 100%;
	min-width: 120px;
}
li.menu__single:hover ul.menu__second-level {
    top: 0px;
	left: 100%;
    visibility: visible;
    opacity: 1;
}

.menu__second-level li, 
.menu__third-level li {
/*    border-top: 1px solid #111;*/
	display: table-cell;
    width: 100%;
	/*text-align: left;*/
	text-align: center;

	margin-top: 0px !important;
	margin-bottom: 0px !important;
	vertical-align: middle;
}
.menu__second-level li:hover, 
.menu__third-level li:hover, 
.menu__fourth-level li:hover {
    background-color: rgba(100, 100, 100, 0.5);
	color: #ffffff;
}

.menu__second-level a{
/*	text-align: left;*/
	display: block;
	position: relative;
	line-height: 1.0;
	height: 60px;
	text-align: center;
}
.menu__second-level a>span {
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: center;
	transform: translateY(-50%) translateX(-50%);
	color: #000000;
}


/* floatクリア */
.menu:before,
.menu:after {
    content: "";
    display: table;
}

.menu:after {
    clear: both;
}

.menu {
    *zoom: 1;
}



/**************
  Media Query
**************/

/* Tablet View */

@media (min-width: 768px){

.menu {
    width: 100%;
    height: 40px;
    margin: 0 auto;
	/* background-color: rgba(255, 255, 255, 0.0); */
	background-color: rgba(255, 255, 255, 1.0);
}

.menu > li {
    /*width: 32%;*/
	width: 24%;
    line-height: 40px;

}

li.menu__single ul.menu__second-level {
    top: 40px;
	left: 0px;
    width: 100%;
}

li.menu__single:hover ul.menu__second-level {
    top: 40px;
	left: 0px;
}



}


