@charset "utf-8";
/* CSS Document */
/*-----------------------------
 Gloval Navi
-----------------------------*/

/*グローバルナビ（ＰＣ）*/

.menu_container{
    width: 100%;
    /* box-shadow */
    padding-top: 0px;
    padding-bottom: 0px;
    border-top: 1px solid rgba(208,208,208,1.00);
    border-bottom: 1px solid rgba(208,208,208,1.00);
    background-color: #000A31;
}
@media only screen and (max-width:480px){
    .menu_container{
        display: none;
    }    
}
.menu {
    width: 1200px;
    min-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;  
}

.menu > li {
    float: left;
    line-height: 350%;
    font-size: 14px;
    color: #FFFFFF;
    text-align: center;
    width: 131px;
    border-right: 1px solid rgba(97,105,120,1.00);
}
.menu > li:last-child {
       border-right: 0px solid rgba(97,105,120,1.00); 
}
.menu > li a {
    display: block;
    text-decoration: none;
    color: rgba(255,255,255,1.00);
}

.menu > li a:hover {
    color: #1B1B1B;

}

 ul.menu__second-level {
    visibility: hidden;
    opacity: 0;
    z-index: 1;

}

.menu > li:hover {
	-webkit-transition: all .5s;
	transition: all .5s;
}
.menu__second-level ul {
    border-top: 3px dotted #E00A0D;
}
.menu__second-level li {  
    border-bottom: 1px dotted #9F9F9F;
    border-left: 1px dotted #9F9F9F;
    border-right: 1px dotted #9F9F9F;
    font-size: 12px!important;
    line-height: 140%!important;
    color: #000000;
    background-color: rgba(255,255,255,0.90);
    padding-top: 5px;
    padding-bottom: 5px;
}
.menu__second-level li a {
	color: #000000;
}
.menu__second-level li a:hover {
    color: rgba(14,41,255,1.00);
}
.init-bottom:after {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	margin: 0 0 0 15px;
	border-right: 1px solid #ADADAD;
	border-bottom: 1px solid #adadad;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.menu:before,
.menu:after {
	content: " ";
	display: table;
}

.menu:after {
	clear: both;
}

.menu {
	*zoom: 1;
}

/* --------------------------------------------------- single menu */
.menu > li.menu__single {
	position: relative;
}

li.menu__single ul.menu__second-level {
	position: absolute;
	top: 13px;
	width: 100%;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
	font-size: 13px;
	padding-top: 8px;
	padding-bottom: 8px;

}

li.menu__single:hover ul.menu__second-level {
	top: 41px;
	visibility: visible;
	opacity: 1;
}

.fixed{
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 9999;
}


