@charset "UTF-8";


/*================================================
 *  メニュー動作
 ================================================*/


header{/*浮遊下地*/
	width:100%;
	height:0; /*ヒーローヘッダは0*/
	/*height:100px;*/ /*ヘッダ背景使用*/
	position:relative;
	overflow:visible;
	}
.th-inner {
    /*幅制限用
	width: 1200px; 
	margin: 0 auto; */
	width:100%;
}
.th-inner:after {
    content: "";
    clear: both;
    display: block;
}
#top-head {
    top: -100px;/*スクロールアニメーション用にtopマージン分を戻す*/
	margin: 100px auto 0;
    padding: 10px 0 0;
    position: absolute;
    width: 100%;
    line-height: 1;
    z-index: 999;
}
#top-head a,
#top-head {
    color: #fff;
    text-decoration: none;
}
#top-head .th-inner {
    position: relative;
}
#top-head .logo {
    float: left;
	padding-left:30px;
}
#top-head .logo img {/*ロゴサイズ*/
	width:300px;
	height:auto;
}
	@media screen and (max-width:1300px) {/*ロゴ衝突用*/
		#top-head .logo img {width:200px;}
		}


#global-nav ul {
    list-style: none;
    position: absolute;
    right: 30px;
    top: 24px;
}
#global-nav ul li {
    float: left;
}
#global-nav ul li a {/*メニュー書式*/
    /*margin: 0 20px;*/
	margin: 0 15px;
	/*font-size: 17px;*/
	font-size: 15.5px;
}
 
 
/*-------メニュー追加ボタンSNS等--------*/

	#global-nav ul li a .nav-add{
		background-color:#111;
		padding:6px 12px;
		border-radius:4px;
	}
	#global-nav ul li a .nav-add i{/*mailicon*/
		color:#F4CE2E;
	}
	#global-nav ul li a .nav-add:hover{
		filter: brightness(1.1);
	}
	/*スマホ反転*/
	@media screen and (max-width:999px) {
			#global-nav ul li a .nav-add{ background-color:#fff; color:#111 !important;}
		}


/*--------------------------------------*/




/* Fixed スクロール追従表示*/
@media only screen and (min-width: 1000px) {
#top-head.fixed {
    margin-top: 0;
    top: 0;
    position: fixed;
    padding-top: 10px;
    height: 50px;/*帯サイズ*/
    background: #fcfcfc;
    /*background: rgba(255,255,255,0.7);*/
    transition: top 0.45s ease-in;
    -webkit-transition: top 0.45s ease-in;
    -moz-transition: top 0.45s ease-in;
}
#top-head.fixed .logo img{
	width:150px;
	margin-top:-5px;
}

#top-head.fixed #global-nav ul {
    top: 10px;
}
#top-head.fixed #global-nav ul li a {
	color:#333;
}

	/*追加ボタンのfix*/
	#top-head.fixed #global-nav ul li a .nav-add{
		color:#fff;
	}
}
/*--------------------------------------*/




/* Toggle Button */
#nav-toggle {/*ボタンサイズ*/
    display: none;
    position: absolute;
    right: 12px;
    top: 14px;
    width: 34px;
    height: 36px;
    cursor: pointer;
    z-index: 101;
}
#nav-toggle div {
    position: relative;
}
#nav-toggle span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #666;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
    top: 0;
}
#nav-toggle span:nth-child(2) {
    top: 11px;
}
#nav-toggle span:nth-child(3) {
    top: 22px;
}






/*--------------------------------------*/
/*言語切り替え*/

.menu_lang{
	display:block;
	position:absolute;
	/*top:32px;
	right:820px;*/
		top:90px;
		right:45px;
	padding:0;
	border:1px solid #fff;
	border-radius:3px;
	font-size:15px;
	overflow:hidden;
	z-index:1100;
	line-height:1;
	}
	@media screen and (max-width:1300px) {/*ロゴ衝突用*/
	.menu_lang{
		position:absolute;
		top:80px;
		right:40px;
		}		
	 }
	@media screen and (max-width:999px) {/*spメニュー下へ*/
	.menu_lang{
	position:absolute;
	top:70px;
	right:10px;
	font-size:13px;
	z-index:50;
		}		
	 }

.menu_lang a{
	display:inline-block;
	padding:3px 12px;
	text-decoration:none;
	color:#fff;
	background-color:rgba(0,0,0,0.2)
	}

.menu_lang .langactive{
	background:#fff;
	color:#555 !important;
	}
/*--------------------------------------*/








/* =================================================================================

■ スマートフォン用

================================================================================= */
@media screen and (max-width:999px) {



	header{
	height:56px; /*mobile-headの高*/
	}
 #top-head,
    .th-inner {
        width: 100%;
        padding: 0;
    }
    #top-head {
        top: 0;
        position: fixed;
        margin-top: 0;
    }
    /* Fixed reset */
    #top-head.fixed {
        padding-top: 0;
        background: transparent;/*mobile追従時背景*/
    }
    #mobile-head {
        background: #fff;
        width: 100%;
        height: 56px;
        z-index: 999;
        position: relative;
    }
    #top-head.fixed .logo,
    #top-head .logo {
        position: absolute;
        left: 13px;
        /*top: 10px;*/
		top: 3px;
		padding:0;
    }
	#top-head .logo img {
		width:150px;
		height:auto;
		
	}
    #global-nav {
        position: absolute;
		z-index:99;
        /* 開いてないときは画面外に配置 */
        top: -520px;
        background: rgba(0,0,0,0.8);
        width: 100%;
        text-align: center;
        padding: 20px 0;
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
    }
    #global-nav ul {
        list-style: none;
        position: static;
        right: 0;
        bottom: 0;
        font-size: 14px;
    }
    #global-nav ul li {
        float: none;
        position: static;
    }
    #top-head #global-nav ul li a,
    #top-head.fixed #global-nav ul li a {
        width: 100%;
        display: block;
        color: #fff;
        padding: 35px 0 35px;
		margin:0;
    }
    #nav-toggle {
        display: block;
    }
    /* #nav-toggle 切り替えアニメーション */
    .open #nav-toggle span:nth-child(1) {
        top: 11px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .open #nav-toggle span:nth-child(2) {
        width: 0;
        left: 50%;
    }
    .open #nav-toggle span:nth-child(3) {
        top: 11px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    /* #global-nav スライドアニメーション */
    .open #global-nav {
        /* #global-nav top + #mobile-head height */
        -moz-transform: translateY(556px);
        -webkit-transform: translateY(556px);
        transform: translateY(556px);
    }
	
	
/**/
}





/* =================================================================================

■ PCサイズ限定

================================================================================= */
@media only screen and (min-width: 1000px) {
	
	.pc_off {display: none;}



	/*マウスオーバー下線アニメ　白　PCサイズのみ*/
	a.hoverline {
	  position: relative;
	  display: inline-block;
	}
	a.hoverline::after {
	  position: absolute;
	  bottom: -8px;
	  left: 0;
	  content: '';
	  width: 100%;
	  height: 1px;
	  background: #fff;
	  opacity: 0;
	  visibility: hidden;
	  transition: .3s;
	}
	a.hoverline:hover::after {
	  bottom: -4px;
	  opacity: 1;
	  visibility: visible;
	}

	
	/*スクロール中*/
	#top-head.fixed a.hoverline::after{background: #000;}



}


