@charset "utf-8";

/* ==========================
    ハンバーガーメニュー
  ========================== */
/* 線 */
@media screen and (max-width: 890px){

.hamburger {
  position: fixed;
  right: 15px;
  top: 15px;
  width: 90px;
  height: 90px;
  overflow: hidden;
  cursor: pointer;
	background:#3e3a39;
	z-index: 50;
}


.hamburger span {
  display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 18px;
    height: 3px;
  background: #fff;
    width: 60%;
}
.hamburger span:nth-of-type(1) {
  top:20px; 
}

.hamburger span:nth-of-type(2) {
  top:33px;
}

.hamburger span:nth-of-type(3) {
  top:46px;
}

.hamburger span:nth-of-type(3)::after {
  content:"MENU";/*3つ目の要素のafterにMenu表示を指定*/
  position: absolute;
  top:5px;
  left:3px;
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
}

/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

.hamburger.active span:nth-of-type(1) {
    top: 26px;
    left: 19px;
    transform: translateY(6px) rotate(-45deg);
    width: 60%;
}

.hamburger.active span:nth-of-type(2) {
  opacity: 0;
}

.hamburger.active span:nth-of-type(3){
    top: 38px;
    left: 19px;
    transform: translateY(-6px) rotate(45deg);
    width: 60%;
}

.hamburger.active span:nth-of-type(3)::after {
  content:"CLOSE";/*3つ目の要素のafterにClose表示を指定*/
    transform: translateY(0) rotate(-45deg);
  top:8px;
  left:25px;
}



.hamburger + nav {
  display: none;
}

/* クリックした時 */
.hamburger.active span {
  transform: rotate(45deg);
}
.hamburger.active span::before {
  transform: rotate(-90deg);
  top: 0;
}
.hamburger.active span::after {
  content: none;
}




/* ハンバーガー展開時の中身 */

.hamburger{
	z-index: 50;
}

.hamburger + nav {
  position: fixed;
  width: 100%;
height: 100%;
  top: 120px;
  left: 0;
	z-index: 150;
background: rgba(0,0,0,0.7);
	overflow: scroll;
}

.globalMenu-hmul {
  padding: 50px 25px 0;
	height: 960px;
}
	
.globalMenu-hmul li {
  padding: 10px 0;
	height: 75px;
	list-style: none;
	
}
.globalMenu-hmul li:before {
  padding: 10px 0;
	height: 65px;
	list-style: none;
}

.globalMenu-hmul li a{
	display: block;
  color: #fff;
	padding-left: 60px;
	margin-top: 10px;
	text-decoration: none;
}
.globalMenu-hmul .gn4-sp{
	line-height: 130%;
	margin-top: -10px;
	margin-bottom: 10px;
}
.globalMenu-hmul .gn4-sp span{
	font-size: 0.7em;
}
.globalMenu-hm .yajirushi {
  position: relative;
  color: #fff;
	padding-left: 60px;
}

.globalMenu-hm .yajirushi::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40%;
  margin: auto;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

.globalMenu-hmul li{
	background-size: 50px 40px;
	background-repeat: no-repeat;
	background-position: 0px 13px;
} 
.gn1-sp{
	background-image: url("img/common/price-icon.png");
}
.gn2-sp{
	background-image: url("img/common/item-icon.png");
}
.gn3-sp{
	background-image: url("img/common/process-icon.png");
}
.gn4-sp{
	background-image: url("img/common/kimono-icon.png");
}
.gn5-sp{
	background-image: url("img/common/service-icon.png");
}
.gn6-sp{
	background-image: url("img/common/business-icon.png");
}
.gn7-sp{
	background-image: url("img/common/realestate-icon.png");
}
.gn8-sp{
	background-image: url("img/common/question-icon.png");
}
.gn9-sp{
	background-image: url("img/common/coin-icon.png");
}
.hm-menu-sub { 
  display: none;
	position: absolute;
    left: 40%;
    top: 20px;
    width: 100%;
    padding: 30px 10px;
}
.hm-menu-sub li {
  text-align: left;
	padding-left: 15px;
	width: 60%;
	height: 60px;
	color: #fff;
	list-style: none;
	font-size: 0.9em;
	line-height: 120%;
}

.gn3-sp ul li{
	list-style: none;
	background-size: 35px 37px;
	background-repeat: no-repeat;
	background-position: 27px 13px;	
}

.gn3-sp-1{background-image:url("img/common/irui-icon-w.png");}
.gn3-sp-2{background-image:url("img/common/shirt-icon-w.png");}
.gn3-sp-3{background-image:url("img/common/shoes-icon-w.png");}
.gn3-sp-4{background-image:url("img/common/futon-icon-w.png");}
.gn3-sp-5{background-image:url("img/common/stroller-icon-w.png");}
.gn3-sp-6{background-image:url("img/common/shimi-icon-w.png");}

}
 