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

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

.Toggle { display: none; }

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

nav.NavMenu { display: none; }

nav.pc_menu ul { float: right;margin-right: 20px; }

nav.pc_menu li { float: left;margin-right: 1em; }

nav.pc_menu li:before { content: "■";margin-right: 5px; }
nav.pc_menu li.act:before { color: #F5911E; }

nav.pc_menu li a {
	padding: 10px 20px 10px 0;
	display: block;
	text-decoration: none;
	color: #264077;
	animation: nav_fade 1s ease 0s 1 normal;
    -webkit-animation: nav_fade 1s ease 0s 1 normal;
}

nav.pc_menu li a .en {
	display: block;
	top: -35px;
	left: 20px;
	position: relative;
	animation: nav_fade 1s ease 0s 1 normal;
    -webkit-animation: nav_fade 1s ease 0s 1 normal;
}

nav.pc_menu li a:hover .en { display: none; }

nav.pc_menu li a .jp { display: none; }

nav.pc_menu li a:hover .jp {
	display: block;
	top: -35px;
	left: 20px;
	position: relative;
	animation: nav_fade 1s ease 0s 1 normal;
    -webkit-animation: nav_fade 1s ease 0s 1 normal;
}

@keyframes nav_fade {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes nav_fade {
    0% {opacity: 0}
    100% {opacity: 1}
}


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

nav.pc_menu { display: none; }

.Toggle {
	display: block;
	position: fixed;    /* bodyに対しての絶対位置指定 */
	right: 13px;
	top: 25px;
	width: 42px;
	height: 42px;
	cursor: pointer;
	z-index: 3;
}

.Toggle .title {
	top:30px;
	position: relative;
	display: block;
	font-size: 14px;
	color: #264077;
}
		 
.Toggle span {
	display: block;
	position: absolute;
	width: 30px;
	border-bottom: solid 3px #264077;
	-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);
}

#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: #ccc;	/*背景をグレーにする*/
	width: 100%;	
	margin: 0 auto;
	padding: 0;
}

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

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

nav.NavMenu ul li a {
	display: block;
	color: #000;
	padding: 1em 0;
	text-decoration: none;
}
		
nav.NavMenu.active { transform: translateY(0%); }

}