@charset "UTF-8";
/* CSS Document */
#m-menu {
  margin-bottom: 10px;
}
.inner {
	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;
}
/*上部のメインメニュー　commonから移植
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
nav#menubar {
  margin-top: 14px;
  overflow: auto; 
}
nav#menubar ul {
	height: 58px;
  margin-bottom: 6px;
/*	padding-left: 214px;*/
}
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	float: left;
	width: calc(100%/5);
	/*border-left: 1px solid #aaa;	/*左側の線の幅、線種、色*/
}
nav#menubar ul li a {
	height: 56px;
	padding-top: 14px;
	line-height: 1.4;
	text-decoration: none;
	display: block;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 0.1em;
	text-align: center;
	transition: 0.8s;	
  border-bottom: 3px solid #fff;	
}
nav#menubar ul li a:hover,
nav#menubar ul li.current a {
	color: #cd2a0a;	
	border-bottom: 3px solid #cd2a0a;	
}
/*------- 英語表記の設定 -------*/
nav#menubar ul li a span {
	font-size: 10px;
	display: block;
	font-weight: normal;
	opacity: 0.7;
}

/*ここからタブレット用（481px～768px）環境の設定
-------------------------------------------------------------------------------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (min-width:481px) and (max-width:768px){
.inner {
    width: auto;
    margin: 0 auto;
}	
/*上部のメインメニュー（タブレット）
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
  #m-menu {
    margin-bottom: 0;
  }
nav#menubar ul {
	height: auto;
	overflow: hidden;
	padding-left: 0;
	/*margin-left: 170px;*/
	border-bottom: none;
	/*border-top: 1px solid #aaa;
	border-right:  1px solid #aaa;
	border-left: 1px solid #aaa;*/
}
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	width: 50%;
	border-bottom: 1px solid #aaa;
  border-right: 1px solid #aaa;
  border-left: 1px solid #aaa;
	box-sizing: border-box;
}
nav#menubar ul li:nth-child(2n) {
	border-left: none;
}
/*マウスオン時と、current(表示中のメニュー)の設定*/
nav#menubar ul li a:hover,
nav#menubar ul li.current a {
	/*border-bottom: none;*/
}
}


/*ここからスマートフォン用（480px以下）環境の設定
-------------------------------------------------------------------------------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@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: 50px;
	margin-top: 2px;
	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%;
  height: 80px;
	display: block;
	color: #fff;
  padding-top: 20px;
	/*padding: 18px 0;*/
  font-size:  clamp(0.8em, calc(1em + 0.6vw), 1.4em);
}
nav#menubar ul li a span {
font-size: clamp(0.6em, calc(0.6em + 0.6vw), 1em);
display: block;
font-weight: normal;
opacity: 0.7;
}
#nav-toggle {
	display: block;
}  
  
  /*上部のメインメニュー（スマホ）
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
nav#menubar ul {
	height: auto;
	overflow: hidden;
	padding-left: 0;
	border-bottom: none;
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 0;
}
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	float: none;
	width: 100%;
	border-left: none;
	border-bottom: 1px solid #FFF;
}
  nav#menubar ul li a {
    border: none;
  }
/*マウスオン時と、current(表示中のメニュー)の設定*/
  nav#menubar ul li a:hover,
  nav#menubar ul li.current a {
    border-bottom: none;
    background-color: #b8a52b;
  }
  
/* #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(487px);
    -webkit-transform: translateY(487px);
    transform: translateY(487px);
  }
 
}
