@charset "UTF-8";
/* CSS Document */
.inner {
    /*width: 1200px;*/
	max-width: 1200px;
    margin: 0 auto;
}
.inner:after {
    content: "";
    clear: both;
    display: block;
}
 
/* header */
#top-head {
    /*top: -100px;
    position: absolute;*/
    width: 100%;
    /*margin: 100px auto 0;
    padding: 30px 0 0;*/
	padding-bottom: 10px;
    /*line-height: 1;*/
    z-index: 999;
}
#top-head a,
#top-head {
   color: #333;
    text-decoration: none;
}
#top-head .inner {
    position: relative;
}
#top-head .logo {
    float: left;
    font-size: 36px;
}
/*#menubar ul {
    list-style: none;
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 14px;
}
#menubar ul li {
    float: left;
}
#menubar ul li a {
    padding: 0 30px;
}*/

 
/* Fixed */
#top-head.fixed {
    margin-top: 0;
    top: 0;
    /*position: fixed;*/
    padding-top: 10px;
    height: 55px;
    background: #fff;
    background: rgba(255,255,255,.7);
    transition: top 0.65s ease-in;
    -webkit-transition: top 0.65s ease-in;
    -moz-transition: top 0.65s ease-in;
}
#top-head.fixed .logo {
    font-size: 24px;
    color: #333;
}
#top-head.fixed #global-nav ul li a {
    color: #333;
    padding: 0 20px;
}
#mobile-head img { display:none; }/*PC時メニュー内のロゴを非表示*/
 
/* Toggle Button */
#nav-toggle {
    display: none;
    position: absolute;
    right: 12px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 101;	
	top: 8px;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#e5e5e5));
	background-image: -webkit-linear-gradient(#fbfbfb, #e5e5e5);
	background-image: linear-gradient(#fbfbfb, #e5e5e5);
	padding: 6px;
	border: 1px solid #cfcfcf;
	border-radius: 6px;
}
#nav-toggle div {
    position: relative;
	margin-top: 2px;
}
#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;
}
/*ここからタブレット用（481px～800px）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (min-width:481px) and (max-width:800px){
.inner {
    width: auto;
    margin: 0 auto;
}	
	
}

@media screen and (max-width: 480px) {	
    #top-head,
    .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-head {
        background: #fff;
		background-image:url(../common/logo.png);
        width: 100%;
        height: 56px;
        z-index: 999;
        position: relative;
    }*/

#mobile-head {
	display: block;
	position: static;
	width: 100%;
	height: 58px;
    z-index: 999;
    position: relative;
	background: url(../common/logo_bg.png) , -webkit-gradient(linear, left top, left bottom, from(#e0c935), to(#b8a52b));
	background: url(../common/logo_bg.png) , -webkit-linear-gradient(#e0c935, #b8a52b);
	background: url(../common/logo_bg.png) , linear-gradient(#e0c935, #b8a52b);
	padding: 15px 0px;
	text-align: center;
}

#mobile-head img {
	display: block;
	max-height: 36px;
	margin-top: 8px;
	text-align: center;
}
#logoT img {
	display:none;
}
#logoT {
	height:60px;
}
	
#top-head.fixed .logo,
#top-head .logo {
	position: absolute;
	/*left: 0px;*/
	top: 2px;
}

#menubar {
	position: absolute; /* 開いてないときは画面外に配置 */
	top: -512px;
	background: rgba(80, 70, 18, 0.8);
	width: 100%;
	text-align: center;
	padding: 70px 0 0;
	margin: -56px 0 0;
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
}
/*#menubar ul {
        list-style: none;
        position: static;
        right: 0;
        bottom: 0;
        font-size: 14px;
}*/
#menubar ul li {
	float: none;
	position: static;
}
#top-head #menubar ul li a,
#top-head.fixed #global-nav ul li a {
	width: 100%;
	display: block;
	color: #fff;
	/*padding: 18px 0;*/
}
#nav-toggle {
	display: block;
}
/* #nav-toggle 切り替えアニメーション */
.open #nav-toggle span:nth-child(1) {
	top: 11px;
	-webkit-transform: rotate(315deg);
	-moz-transform: rotate(315deg);
	transform: rotate(315deg);
}
.open #nav-toggle span:nth-child(2) {
	width: 0;
	left: 50%;
}
.open #nav-toggle span:nth-child(3) {
	top: 11px;
	-webkit-transform: rotate(-315deg);
	-moz-transform: rotate(-315deg);
	transform: rotate(-315deg);
}
/* #global-nav スライドアニメーション */
.open #menubar {
	#global-nav top + #mobile-head height 
	-moz-transform: translateY(556px);
	-webkit-transform: translateY(556px);
	transform: translateY(556px);
}
 
}
