@charset "utf-8";

/* =======================================

	Header CSS

 -----------------------------------------
	INDEX
 -----------------------------------------
 	

========================================== */

header {
    background-color: #fff;
/*    margin-bottom: 60px;*/
}
header .hero {
    height: 80px;
}

#category_top header,
#category_products #subCategory_top header{
    position: absolute;
    top: 0;
    left: 0;
    right: 0; 
    z-index: 9;
}

/* Site Title
========================================== */
header h1 {
    position: absolute;
    top:18px;
    left:0px;
    width: 180px;
    height: auto;
    z-index: 9999999 !important;
}
header h1 img {
    width: 100%;
}

@media screen and (max-width: 767px) {
    header {
        text-align: center;
        margin-top: 0px;

        padding-top: 0px;
        margin-bottom: 0px;
    }
	header .hero {
    	height: auto;
	}
    header h1 {
        position: static;
        margin-top: 50px;
        margin-bottom: 25px;
        width: 40%;
        display: inline-block;
    }

}

/* Header Navi
========================================== */
header ul {
    position: absolute;
    top:14px;
    right:0px;
    display: inline-block;
    z-index: 9999 !important;
}

header ul li {
	float: left;
	padding-left: 1.5em;
  margin-left: 1.5em;
  border-left: 1px solid #666;
  font-size: 1.2rem;
  letter-spacing: 2px;
}
header ul li:first-child {
    border-left: none;
}
header ul li a {
	text-decoration: none;
  color: #b3b3b3;
}
header a:hover {
	text-decoration:underline;
  color: #333;
}
header ul li.current_link a,
header ul li.sns a {
  color: #333;
}
header ul li.sns {
  border-left: none;
  font-size: 2.0rem;
	padding-left: 0em;
  margin-left: 1em;
  color: #333;
  position: relative;
  top:-4px;
}


/* When Active Page */
/*
body#category_privacy    header ul li.hn01 a { 
    text-decoration: underline;
}
*/

@media screen and (max-width: 767px) {
  header ul {
      top:14px;
      right:14px;
  }

  header ul li {
    padding-left: 1.2em;
    margin-left: 1.2em;
    font-size: 1.3rem;
  }
  header ul li.sns {
    font-size: 2.0rem;
  }

}


/* SP Navi
========================================== */
.menubtn, .menuclosebtn {
    display: none;
}

@media screen and (max-width: 767px) {
    .menubtn {
     position: fixed;
     display: block;
     top: 45px;
     right: 7px;
     z-index: 9;
/*     background-color: #FFF;*/
     padding: 5px 6px 6px 6px;
     border-radius: 4px;
    }
    .menubtn p a img {
     width: 34px;
     height: auto;
    }
    .menuclosebtn {
     display: block;
     position: absolute;
     top: 24px;
     right: 18px;
     z-index: 9;
    }
    .menuclosebtn p a img {
     width: 25px;
     height: auto;
    }
}


