/* お問い合わせボタン */
.btninq{
	background:#F3F3F3;
	border:#fff 1px solid;
	text-align: center;
	font-size:18px;
	margin:15px 0 10px;
	padding:5px 0;
}
.hamburgerarea{
	background:none;
	width:60px;
	height:90px;
	position:fixed;
	top:0;
	left:0;
	z-index: 5000;
}
/*　ハンバーガーボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 5001;
  right : 13px;
  top   : 10px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.btnsub{
	position: absolute;
	top:12px;
	right:10px;
}
.hamburger p{
	position: absolute;
	display: inherit;
	color:#333333;
	font-size:10px;
	top:30px;
	left:6px;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #333333;
  -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: #231815;
	background: #abdffa;
	text-align: left;
	/*transform: translateX(100%);*/
	display:none;
	transition: all 0.6s;
	width: 100%;
	height:auto;
	padding:0px 10px 10px;
		
}

nav.globalMenuSp a:hover {
	opacity: inherit;
}

nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
	
}

nav.globalMenuSp ul li {
	background: #abdffa;
	position: relative;	
  list-style-type: none;
  padding: 5px 0 5px 1.5em!important;
  margin:0!important;
  width: 100%;
  border-bottom: 1px solid #fff;
  font-weight: 600;
  font-size:17px;
  line-height: 2em;
}
nav.globalMenuSp li:before{
	position: absolute;
	left:1em;
    /*content: "\25cf  ";*/
    content: "▶ ";
    font-size: 8px;
    vertical-align: 2px;
	color:#7baed9;
}
nav.globalMenuSp li ul li:before{
	color:#f5a984;
}

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: #333;
  padding: 0!important;
  text-decoration :none;
  width:100%;
}
nav.globalMenuSp ul li ul li{
	
	margin: 0 0 0 -1.5em!important;
	width:calc(100% + 1.5em);
	background:#e7f6fe;
}
.child li {
	border-bottom: 1px solid #f5a984!important;
}
.child li:hover{
	  background :#ddd;
}
.child li p{
	/*line-height: 35px;*/
	padding: 0;
	color:#333;
}
.child li:last-child {
	border-bottom:0px solid #000000!important;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  /*transform: translateY(0%);*/
	display: block;
}
.spclose.active {
	display: block;
}

.spclose{
	display: none;
	color:#333333;
	position:absolute;
	top:12px;
	right:60px;
	font-size:10px;
}
.hamburgerarea.active {
	background:none;
	width:100%;
}
@media screen and (min-width: 480px) {
	nav.globalMenuSp {
		left: auto;
		right:0;
		width:400px;
		height:calc(100vh - 70px);
	}
	.hamburgerarea{
		left:auto;
		right:0;
		width:60px;
	}
	.hamburgerarea.active {
		background:#abdffa;
		width:400px;
		z-index: 5020;
	}

}
