@charset "UTF-8";
/* CSS Document */

/* ***************************************************************** */
/*               PC  DESIGN                                     */
/* ***************************************************************** */

.Toggle { display: none; }

nav.pc_menu {
	float: right;
	margin: 0;
	display: block;
}

nav.NavMenu { display: none; }

nav.pc_menu ul { 
	width: 100%;
	height: 46px;
	margin: 0;
	padding: 0;
	float: left;
	background-image: url(../images/nav_line.png);
	background-position: left center;
	background-repeat: no-repeat;
}

nav.pc_menu li {
	float: left;
	margin: 0;
	padding: 0;
	width: 165px;
	height: 46px;
	background-image: url(../images/nav_line.png);
	background-position: right center;
	background-repeat: no-repeat;
	background-color:rgba(255,255,255,0.5);
	background-blend-mode:color;
}

nav.pc_menu li a {
	width: 100%;
	padding: 0;
	margin: 0;
	display: block;
	text-decoration: none;
	color: #210063;
	transition:all .5s ease;
	line-height: 46px;
	text-align: center;
	box-sizing: border-box;
}

nav.pc_menu.common li a {
	height: 30px;
}

nav.pc_menu li a:hover {
	background-color:  #210063;
	color: #FFF;
}

nav.pc_menu.common li.menu-item-1006 a { 
	height: 30px;
}

nav.pc_menu li.menu-item-1006 a:hover { background-color:  #210063; }


/* ***************************************************************** */
/*               MOBILE  DESIGN                                     */
/* ***************************************************************** */
@media screen and (max-width:1000px) {

nav.pc_menu { display: none; }

.Toggle {
	display: block;
	position: fixed;
	right: 13px;
	top: 10px;
	width: 40px;
	height: 40px;
	cursor: pointer;
	z-index: 3;
	background-color: #210063; 
	border-radius: 20px;
}

.Toggle .title {
	top:36px;
	position: relative;
	display: block;
	width: 100%;
	font-size: 12px;
	color: #210063;
	text-align: center;
}
		 
.Toggle span {
	display: block;
	position: absolute;
	width: 20px;
	border-bottom: solid 2px #FFF;
	-webkit-transition: .35s ease-in-out;	/*変化の速度を指定*/
	-moz-transition: .35s ease-in-out;		/*変化の速度を指定*/
	transition: .35s ease-in-out;			/*変化の速度を指定*/
	left: 10px;
}
		 
.Toggle span:nth-child(1) { top: 12px; }
.Toggle span:nth-child(2) { top: 18px; }
.Toggle span:nth-child(3) { top: 25px; }
		 
/* 最初のspanをマイナス45度に */
.Toggle.active span:nth-child(1) {
	top: 18px;
	left: 10px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
		 
/* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
	top: 18px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* RESET */
.Toggle.reset span:nth-child(1) { top: 12px; }
.Toggle.reset span:nth-child(2) { top: 18px; }
.Toggle.reset span:nth-child(3) { top: 25px; }

.Toggle.reset span:nth-child(1) {
	left: 6px;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	transform: rotate(0deg);
}
		 
/* 2番目と3番目のspanをRESET */
.Toggle.reset span:nth-child(2),
.Toggle.reset span:nth-child(3) {
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	transform: rotate(0deg);
}

#fade{ display: none;}

nav.NavMenu{
	position: fixed;	/*表示位置を固定*/
	z-index: 2;		/*重ね順を変更*/
	top: 0;		/*表示位置を指定*/		
	left: 0;	/*表示位置を指定*/
	background: #fff;/*背景を白にする*/
	color: #000;	/*文字色を黒にする*/
	text-align: center;		/*テキストを中央揃え*/
	width: 100%;	/*全幅表示*/
	transform: translateY(-100%);	/*ナビを上に隠す*/
	transition: all 0.6s;	/*アニメーションの時間を指定*/	
	display: block;
}

nav.NavMenu ul{
	background: #FFF;
	width: 100%;	
	margin: 0 auto;
	padding: 0;
	float: left;
}

nav.NavMenu ul li {
	font-size: 16px;
	list-style-type: none;
	padding:1em 0 0;
	width: 100%;
	border-bottom: 1px dotted #210063;
	float: left;
}

nav.NavMenu ul li:last-child{ padding-bottom: 0;border-bottom: none; }

nav.NavMenu ul li a {
	display: block;
	color: #210063;
	font-weight: bold;
	padding: 1em 0;
	text-decoration: none;
	color: navy;
}

nav.NavMenu ul li a:after {
	content: " →";
}
		
nav.NavMenu.active { transform: translateY(0%); }

nav.NavMenu ul li ul {
	width: 100%;
	border-bottom: 1px dotted #333;
	float: left;
}

nav.NavMenu ul li ul li{
	width: auto;
	margin: 0 5px 5px;
	float: left;
	text-align: left;
	border-bottom: none;
}


nav.NavMenu ul li ul li a{
	padding: 5px 10px;
	display: block;
}


}

@media screen and (max-width:580px) {

.Toggle {
	top: 5px;
	right: 10px;
	width: 30px;
	height: 30px;
	border-radius: 15px;
}

.Toggle .title {
	top:25px;
	font-size: 8px;
}
		 
.Toggle span {
	width: 16px;
	border-bottom: solid 2px #FFF;
	left: 7px;
}
		 
.Toggle span:nth-child(1) { top: 8px; }
.Toggle span:nth-child(2) { top: 14px; }
.Toggle span:nth-child(3) { top: 20px; }
		 
/* 最初のspanをマイナス45度に */
.Toggle.active span:nth-child(1) {
	top: 14px;
	left: 7px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
		 
/* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
	top: 14px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* RESET */
.Toggle.reset span:nth-child(1) { top: 8px; }
.Toggle.reset span:nth-child(2) { top: 14px; }
.Toggle.reset span:nth-child(3) { top: 20px; }

}
