/*========= ナビゲーションドロップダウンのためのCSS ===============*/
/*Responsive - 横1000px以上*/@media only screen and (min-width: 1000px) {

/*==ナビゲーション全体の設定
nav{
	background:#333;
	color:#fff;
	text-align: center;
}*/
/*ナビゲーションを横並びに
nav ul{
	list-style: none;
	display: flex;
	justify-content: center;
}*/
/*2階層目以降は横並びにしない*/
nav ul ul{
	display: block;
}

/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li{
	position: relative;
}

/*ナビゲーションのリンク設定
nav ul li a{
	display: block;
	text-decoration: none;
	color: #999;
	padding:20px 35px;
	transition:all .3s;
}

nav ul li li a{
	padding:10px 35px;
}

nav ul li a:hover{
	color:#fff;	
}*/



/*==矢印の設定*/

/*2階層目を持つliの矢印の設定*/
nav ul li.has-child::before{
	content:'';
	position: absolute;
	/*left:15px;*/
	width:8px;
	height:8px;
	border-top: 2px solid #999;
    border-right:2px solid #999;
    transform: rotate(135deg);
}
/*Responsive - 横1280px以下*/@media only screen and (max-width: 1280px) {
nav ul li.has-child::before{
	top:9px;
		right:13px;
}
	}
/*Responsive - 横1281px以上*/@media only screen and (min-width: 1281px) {
nav ul li.has-child::before{
	top:8px;
		right:15px;
}
	}

/*3階層目を持つliの矢印の設定*/
nav ul ul li.has-child::before{
	content:'';
	position: absolute;
	left:6px;
	top:17px;
	width:6px;
	height:6px;
    border-top: 2px solid #fff;
    border-right:2px solid #fff;
    transform: rotate(45deg);
}


/*== 2・3階層目の共通設定 */
/*下の階層を持っているulの指定*/
nav li.has-child ul{
    /*絶対配置で位置を指定*/
	position: absolute;
	left:0;
	top:27px;
	z-index: 4;
    /*形状を指定*/
	background:#fff;
	width:240px;
    /*はじめは非表示*/
	visibility: hidden;
	opacity: 0;
    /*アニメーション設定*/
	transition: all .2s;
		border-radius:20px;
		border:1px solid #eee;
		box-shadow:0px 5px 12px #777;
		padding:20px;
		text-align:left;
}

/*hoverしたら表示*/
nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul{
	visibility: visible;
	opacity: 1;
}

/*ナビゲーションaタグの形状*/
nav li.has-child ul li {
		/*list-style: disc;
		margin:0 0 0 1em;
		padding:0 0 0 0;*/
}
nav li.has-child ul li::marker {display:none;}
nav li.has-child ul li a{
	color: #000;
	font-weight:normal !important;
	/*border-bottom:solid 1px rgba(255,255,255,0.6);*/
		margin:0 !important;
		padding:0.5em 0;
		display:block;
}

nav li.has-child ul li:last-child > a{
	border-bottom:none;
 }

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active{
	text-decoration:none;
}


/*==3階層目*/

/*3階層目の位置
nav li.has-child ul ul{
	top:0;
	left:182px;
	background:#66ADF5;
}

nav li.has-child ul ul li a:hover,
nav li.has-child ul ul li a:active{
	background:#448ED3;
}*/


	}
