@charset "utf-8";
/* CSS Document */
header nav#global_nav {}
header nav#global_nav.active {
  height: auto;
    background-color: rgba(62,62,62,0.67)
}
#menu_nav_tggle {
	display: none;
	position: fixed; /* bodyに対しての絶対位置指定 */
	right: 13px;
	top: 12px;
	width: 42px;
	height: 47px;
	cursor: pointer;
	z-index: 53;
	background-color: #BCA78B;
	text-align: center;
	z-index: 1001;
	-webkit-box-shadow: 0px 0px 6px rgba(0,0,0,0.25);
	box-shadow: 0px 0px 6px rgba(0,0,0,0.25);
}
#menu_nav_tggle span {
  display: block;
  position: absolute; /* .navToggleに対して */
  width: 30px;
  border-bottom: solid 2px #FFFFFF;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
  left: 6px;
}
#menu_nav_tggle span:nth-child(1) {
  top: 8px;
}
#menu_nav_tggle span:nth-child(2) {
  top: 16px;
}
#menu_nav_tggle span:nth-child(3) {
  top: 24px;
}
#menu_nav_tggle span:nth-child(4) {
	border: none;
	color: #FFFFFF;
	font-size: 8px;
	font-weight: normal;
	top: 30px;
	letter-spacing: 0px;
}
#menu_nav_tggle.active span:nth-child(1) {
  top: 15px;
  transform: rotate(45deg);
}
#menu_nav_tggle.active span:nth-child(2) {
  top: 15px;
  transform: rotate(-45deg);
}
#menu_nav_tggle.active span:nth-child(3) {
  opacity: 0.0;
}
nav.globalMenuSp {
  /*    position: fixed;
*/ z-index: 2;
  /*    top:0;
    left: 0;
    background: #fff;
    color: #000;
    text-align: center;
*/ transform: translateY(-100%);
  transition: all 0.6s;
  /*    width: 100%;
*/
}
nav.globalMenuSp ul {
  background: #ccc;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
nav.globalMenuSp ul li {
  font-size: 1.1em;
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px dotted #333;
}
/* 最後はラインを描かない */
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
nav.globalMenuSp ul li a {
  display: block;
  color: #000;
  padding: 1em 0;
}
/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateY(0%);
}
.navToggle {
  display: block;
  position: fixed; /* bodyに対しての絶対位置指定 */
  right: 13px;
  top: 12px;
  width: 42px;
  height: 51px;
  cursor: pointer;
  z-index: 3;
  background: #666;
  text-align: center;
}
.navToggle span {
  display: block;
  position: absolute; /* .navToggleに対して */
  width: 30px;
  border-bottom: solid 3px #eee;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
  left: 6px;
}
.navToggle span:nth-child(1) {
  top: 9px;
}
.navToggle span:nth-child(2) {
  top: 18px;
}
.navToggle span:nth-child(3) {
  top: 27px;
}
.navToggle span:nth-child(4) {
  border: none;
  color: #eee;
  font-size: 9px;
  font-weight: bold;
  top: 34px;
}



@media (max-width : 680px ){
  #menu_nav_tggle {
    display: block;
    box-shadow: 0 1px 4px rgba(0,0,0,0.20);
	  z-index: 100001;
  }
  header#site-head nav#global-nav {
    overflow: hidden;
    opacity: 0;
    width: 100%;
    z-index: 100000;
    position: fixed;
    top: 0;
    left: 0;
    height: 0px;
    transition: all 500ms ease-in-out 0ms;
      }
  header nav#global-nav ul {
	display: block;
	  width: 90%;
	flex-wrap: wrap;
	height: 0;
	justify-content: flex-start;
	align-items: flex-start;
	align-content: flex-start;
	position: absolute;
	top: 0;
	right: 0;
	margin-top: 0;
	padding-top: 15%;
	background-color: rgba(255,255,255,0.49);
	box-sizing: border-box;
	transition: all 500ms ease-in-out 0s;

    }
 header#site-head #global-nav ul li {
	 margin-bottom: 1em;
	}
  body header#site-head nav ul li a{
	width: 100%;
	padding-right: 0px;
	margin-right: 0px;
	padding-top: 30px;
	font-size: 16px;
	padding-left: 0px;
	box-sizing: border-box;
	}
  header#site-head nav#global-nav.active {
    opacity: 1;
    height: 100vh;
    transition: all 500ms ease-in-out 0s;
    -webkit-transition: all 500ms ease-in-out 100ms; 
}	  
    
  header#site-head nav#global-nav.active ul {
    width: 90%;
    height: 100vh;
    transition: all 500ms ease-in-out 100ms;
    }
}
@media (max-width:450px) {
header nav#global-nav.active ul {
	width: 90%;
	height: 100%;
	padding-top: 70px;
	padding-left: 5%;
	padding-right: 5%;
	background-color: rgba(134,134,134,0.56);
	position: absolute;
	top: 0;
	right: 0;
    transition: all 500ms ease-in-out 100ms;
    }
  header nav#global-nav ul li {
	width: 332px;
	max-width: 350px;
	min-width: 200px;
	margin-right: 0%;
	margin-bottom: 10px;
  }
    
}
