/* お問い合わせボタン */
.btninq{
	background:#F3F3F3;
	border:#DCDDDD 1px solid;
	text-align: center;
	font-size:18px;
	margin:15px 0 10px;
	padding:5px 0;
}
/*　ハンバーガーボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 999999;
  right : 13px;
  top   : 20px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.btnsub{
	position: absolute;
	top:12px;
	right:10px;
}
.hamburger p{
	position: absolute;
	display: inherit;
	color:#ffffff;
	font-size:10px;
	top:20px;
	left:6px;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #ffffff;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 18px;
}
.hamburger span:nth-child(3) {
  top: 26px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

nav.globalMenuSp {
	position: fixed;
	z-index : 99999;
	top  : 70px;
	left : 0;
	color: #000000;
	background: rgba(0,0,0,0);
	text-align: left;
	/*transform: translateX(100%);*/
	display:none;
	transition: all 0.6s;
	width: calc(100% + 20px);
	padding:0 10px 10px;
	margin:0 -10px;
}

nav.globalMenuSp a:hover {
	opacity: inherit;
}

nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  border-top: 1px solid #C4C4C4;
/*  border-bottom: 2px solid #C4C4C4;*/
}

nav.globalMenuSp ul li {
	background: rgba(255,255,255,0.9);
	position: relative;	
  list-style-type: none;
  padding: 5px 0 5px 1.5em!important;
  margin:0!important;
  width: 100%;
  border: none; /*1px solid #C4C4C4;*/
  font-weight: 400;
  font-size:17px;
  line-height: 2em;
}
nav.globalMenuSp li:before{
	position: absolute;
	right:1em;
    content: url("../images/yama_end.webp");
    font-size: 18px;
    vertical-align: 2px;
/*	color:#ACA88E;*/
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
nav.globalMenuSp ul li:hover{
  background :#ddd;
}
nav.globalMenuSp ul li a {
  display: block;
  color: #000000;
  padding: 0!important;
  text-decoration :none;
  width:100%;
}
nav.globalMenuSp ul li ul li{
	/*height: 35px;*/
	/*background: #555555!important;*/
	/*margin: 0 0 0 -1.5em!important;*/
	width:100%;
}

.child li {
	border: 1px solid #DCDDDD;
	background:#555555!important;
}

.child li p{
	/*line-height: 35px;*/
	padding: 0;
	color:#ffffff;
}
/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  /*transform: translateY(0%);*/
	display: block;
}
.spclose.active {
	display: block;
}

.spclose{
	display: none;
	color:#9FA0A0;
	position:absolute;
	top:12px;
	right:60px;
	font-size:10px;
}
