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

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

.Toggle { display: none; }

nav.pc_menu {
	float: right;
	margin: 30px 20px 0 0;
	display: block;
}


nav.NavMenu { display: none; }

nav.pc_menu ul { float: right;margin: 0; }

nav.pc_menu ul.f-page { top:40px;right: 20px;display: block;position: absolute; }

nav.pc_menu li { float: left; }

nav.pc_menu li a {
	min-width: 70px;
	padding: 10px 1em;
	display: block;
	text-decoration: none;
	color: #4557A5;
	transition:all .5s ease;
	font-weight: 400;
	text-align: center;
	border-radius: 0;
}

nav.pc_menu.common li a {
	height: 30px;
}

nav.pc_menu li a:hover {
	background-color:  #4557A5;
	border-radius: 20px;
	color: #FFF;
	background-image: url("../images/arr-w.png");
	background-position: center top 20px;
	background-repeat: no-repeat;
}

nav.pc_menu li.menu-item-114 a { 
	background-color:  #F38F1E;
	color: #FFF;
	display: block;
	width: 80px;
	height: 40px;
	text-align: center;
	background-image: url("../images/airplain.png");
	background-position: top 20px center;
	background-repeat: no-repeat;
	font-weight: normal;
	transition:all .5s ease;
}

nav.pc_menu.common li.menu-item-114 a { 
	height: 30px;
}

nav.pc_menu li.menu-item-114 a:hover { background-color:  #4557A5; }


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

nav.top { display: none; }
nav.top ul { display: none; }
nav.pc_menu { display: none; }
nav.pc_menu ul.f-page { display: none; }

header.head {
	display: block;
	width: 100%;
	height: 100px;
	background-color: rgba(255,255,255,1.0);
	position: fixed;
	top:0;
}



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

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

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

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

nav.NavMenu ul li a {
	display: block;
	color: #0060AF;
	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;
}


}