/*メニュー------------------------------------------*/
#menu_header_sp {
    display: none;
}
@media only screen and (max-width: 768px) {
     /*タブレット用*/
	#menu_header{
	display: none;
	}
	#menu_header_sp{
	display: block;
	}
	#header #right_box {
    margin: 0 0 0 0;
		
	}
}
	@media only screen and (max-width: 600px) {
		/*スマホ用*/
		#header #right_box {
    margin: 30px 0 0 0;
		}
}


@media only screen and (max-width: 768px) {
     /*タブレット用*/
	/*ナビメニューのスタイルを指定*/
nav.NavMenu{
position: fixed; /*表示位置を固定*/
z-index: 2; /*重ね順を変更*/
top: 0; /*表示位置を指定*/
left: 0; /*表示位置を指定*/
/*background: #fff;背景を白にする*/
color: #000; /*文字色を黒にする*/
text-align:left;
width: 100%; /*全幅表示*/
transform: translateY(-100%); /*ナビを上に隠す*/
transition: all 0.6s; /*アニメーションの時間を指定*/
}

nav.NavMenu ul{
background: rgba(60,50,40,0.9); /*背景*/
width: 100%;
margin: 0 auto;
padding: 0;
}
nav.NavMenu ul li:before {
  	content: none;
}
nav.NavMenu ul li a:before {
  content: '';/*何も入れない*/
  display: inline-block;/*忘れずに！*/
  width: 20px;/*画像の幅*/
  height: 20px;/*画像の高さ*/
  background-image: url("../img/menu_onpu.png");
	background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
nav.NavMenu ul li{
font-size: 1.1em;
list-style-type: none;
padding: 0 0 0 9em;
margin: 0;
width: 100%;
border-bottom: 1px dotted #796d62;
	text-indent: 0;
}

nav.NavMenu ul li:last-child{
padding-bottom: 0;
border-bottom: none; /*最後のメニュー項目のみ下線を消す*/
}

nav.NavMenu ul li a{
display: block; /*クリックできる領域を広げる*/
color: #fff;
padding: 1em 0;
text-decoration: none;
}
/*トグルボタンが押されたときに付与するクラス*/
nav.NavMenu.active{
transform: translateY(0%);
}
	
/*入れ子UL*/
	nav.NavMenu ul li ul{
		background: none;
		margin-left: 20px;
	}
	nav.NavMenu ul li ul li{
		padding-left: 0;
		border-bottom: 0
	}
	nav.NavMenu ul li ul li a{
		display: block;
		color: #fff;
		padding: 0.4em 0;
		text-decoration: none;
    	font-size: 70%;
	}
	nav.NavMenu ul li ul li a:before {
		content: '・';
		background-image: url(none);
		margin-right: 0;
		width: 1em;/*画像の幅*/
	}	
	
/*トグルボタンのスタイルを指定*/
.Toggle {
    display: block;
    position: fixed;    /* bodyに対しての絶対位置指定 */
    right: 13px;
    top: 12px;
    width: 42px;/*42px*/
    height: 46px;/*42px*/
    cursor: pointer;
    z-index: 3;
}
 
.Toggle span {
    display: block;
    position: absolute;
    width: 28px;
    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);
}

.Toggle p{
	font-size: 8px;
	margin: 22px 0 0 0;
	text-align: center;
}
#fade{
	display: none;
}

/*トグルボタン装飾*/
.ribbon {  
  display: inline-block;
  position: absolute;
  top: 0;
  right: 34px;
  margin: 0;
  padding: 10px 0;
  z-index: 2;
  width: 40px;
  text-align: center;
  font-size: 17px;
  color: white;
  background: linear-gradient(#e2781a 0%, #e26f09 100%);
  box-sizing: border-box;
}

.ribbon:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  height: 0;
  width: 0;
  border-left: 20px solid #e26f09;
  border-right: 20px solid #e26f09;
  border-bottom: 10px solid transparent;
}
}
@media only screen and (max-width: 600px) {
     /*スマホ用*/
/*トグルボタン装飾*/
.ribbon {  
  display: inline-block;
  position: absolute;
  top: 0;
  right: 14px;
  margin: 0;
  padding: 10px 0;
  z-index: 2;
  width: 40px;
  text-align: center;
  font-size: 17px;
  color: white;
  background: linear-gradient(#e2781a 0%, #e26f09 100%);
  box-sizing: border-box;
}
	.ribbon:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  height: 0;
  width: 0;
  border-left: 20px solid #e26f09;
  border-right: 20px solid #e26f09;
  border-bottom: 10px solid transparent;
}
}
