@charset "UTF-8";
/* CSS Document */

/* ***************************************************************** */
/*               PC  DESIGN                                     */
/* ***************************************************************** */

.Toggle { display: none; }

nav.NavMenu { display: none; }



/* ***************************************************************** */
/*               MOBILE  DESIGN                                     */
/* ***************************************************************** */
@media screen and (max-width:1100px) {


.Toggle {
	display: block;
	position: fixed;    /* bodyに対しての絶対位置指定 */
	right: 25px;
	top: 20px;
	width: 50px;
	height: 50px;
	cursor: pointer;
	z-index: 999;
	background-color: #ED6C00;
}

/*@media screen and (max-width:480px) {
	.Toggle {
	right: 100px;
}

}*/

.Toggle .title {
	top:28px;
	position: relative;
	display: block;
	width: 100%;
	font-size: 12px;
	color: #FFF;
	text-align: center;
	letter-spacing: 0;
}
		 
.Toggle span {
	display: block;
	position: absolute;
	width: 37px;
	border-bottom: solid 3px #FFF;
	-webkit-transition: .35s ease-in-out;	/*変化の速度を指定*/
	-moz-transition: .35s ease-in-out;		/*変化の速度を指定*/
	transition: .35s ease-in-out;			/*変化の速度を指定*/
	left: 6px;
}
		 
.Toggle span:nth-child(1) { top: 9px; }
.Toggle span:nth-child(2) { top: 18px; }
.Toggle span:nth-child(3) { top: 27px; }
		 
/* 最初のspanをマイナス45度に */
.Toggle.active span:nth-child(1) {
	top: 18px;
	left: 6px;
	-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: 9px; }
.Toggle.reset span:nth-child(2) { top: 18px; }
.Toggle.reset span:nth-child(3) { top: 27px; }

.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: 100px 0 50px;
	float: left;
}

nav.NavMenu ul ul {
	background-image: initial;
}

/*@media only screen and (max-width:480px){
nav.NavMenu ul{
	width: 80%;	
}
}*/

nav.NavMenu ul li {
	font-size: 16px;
	list-style-type: none;
	padding:0;
	width: 100%;
	border-bottom: 1px dotted #4C4948;	
	float: left;
}

nav.NavMenu ul li:last-child{ padding-bottom: 0;border-bottom: none; }

nav.NavMenu ul li a {
	display: block;
	color: #4C4948;
	font-weight: bold;
	text-decoration: none;
	text-align: justify;
	padding: 10px 5%;
}

nav.NavMenu ul li.contact a {
	background-color: #ED6C00;
	color: #FFF;
	text-align: center;
	width: 90%;
	margin: 20px 5%;
	border-radius: 20px;
	padding: 0;
	line-height: 40px;
}

		
nav.NavMenu.active { transform: translateY(0%); }

nav.NavMenu ul li ul {
	width: 90%;
	padding: 0 5%;
	border-bottom: 1px dotted #333;
	float: left;
}

nav.NavMenu ul li ul li{
	width: 50%;
	margin: 0 0 5px;
	float: left;
	text-align: left;
	border-bottom: none;
}

nav.NavMenu ul li ul li a{
	margin: 0;
	line-height: 1em;
	display: block;
}


}