@charset "UTF-8";

/* SP表示設定 */
@media screen and (max-width: 767px) {

/* コンテンツここから */

/* ヘッダー */

header {
  width: 100%;
  height: 60px;
  background-color: #fff;
  box-shadow: 0px 0px 15px 0px rgba(48, 71, 91, 0.15);
  z-index: 90;
  position: relative;
}

header .hamburger_btn {
  display: inline-block;
  width: 20px;
  height: 14px;
  position: absolute;
  top: 23px;
  left: 20px;
  background-image: url(../img/header/menu_open.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  cursor: pointer;
}

header h1 {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translate(-50%, 0);
}
header h1 img {
  width: 100px;
  height: auto;
}

.mypage_btn {
  position: absolute;
  top: 15px;
  right: 20px;
}


/* ハンバーガーメニューの中 */


.hamburger_menu_market {
  display: inline-block;
  height: 100vh;
  background-color: #fff;
  padding: 20px;
  position: fixed;
  left: -300px;
  z-index: 92;
}

.hamburger_menu_market .hamburger_close {
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 25px;
  right: 20px;
  background-image: url(../img/header/menu_close.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  cursor: pointer;
}

.hamburger_menu_market .hamburger_menu_main {
  margin-top: 20px;
}

.hamburger_menu_market .hamburger_menu_main li {
  border-bottom: 1px solid #EAE5E3;
  padding: 15px 0;
}

.hamburger_menu_market .hamburger_menu_main li a {
  font-size: 14px;
  font-weight: 500;
  margin-left: 30px;
  margin-right: 30px;
}

.hamburger_menu_market .hamburger_menu_main li:nth-child(1) {
  background-image: url(../img/header/icon_mypage.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: left center;
}
.hamburger_menu_market .hamburger_menu_main li:nth-child(2) {
  background-image: url(../img/header/icon_mine3d.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: left center;
}
.hamburger_menu_market .hamburger_menu_main li:nth-child(3) {
  background-image: url(../img/header/icon_shop.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: left center;
}
.hamburger_menu_market .hamburger_menu_main li:nth-child(4) {
  background-image: url(../img/header/icon_reserve.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: left center;
}
.hamburger_menu_market .hamburger_menu_main li:nth-child(5) {
  background-image: url(../img/header/icon_logout.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: left center;
}


.hamburger_menu_market .hamburger_menu_sub {
  margin-top: 20px;
}
.hamburger_menu_market .hamburger_menu_sub li {
  margin-bottom: 12px;
}
.hamburger_menu_market .hamburger_menu_sub li a {
  font-size: 12px;
}



/* 固定メニュー */
.ec-layoutRole__contentTop {
  position:sticky;
  top:0;
  z-index: 90;
}

#nav_market {
  position:sticky;
  top:0;
  z-index: 91;
}

#nav_market ul {
  display: flex;
  background-color: #fff;
  border-top: 1px solid #EAE5E3;
  border-bottom: 1px solid #EAE5E3;
}

#nav_market ul a {
  display: inline-block;
  flex-basis: 20%;
}
#nav_market ul a.nav_market_on li {
  color: #F58523;
}

#nav_market ul li {
  height: 40px;
  border-right: 1px solid #EAE5E3;
  font-size: 10px;
  font-weight: 400;
  text-align: center;
  padding-top: 25px;
  margin: 9px 0;
}

#nav_market ul li.nav_home {
  background-image: url(../img/header/icon_home_off.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: top 2px center;
}
#nav_market ul .nav_market_on li.nav_home {
  background-image: url(../img/header/icon_home.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: top 2px center;
}

#nav_market ul li.nav_my3d {
  background-image: url(../img/header/icon_mypage_off.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: top 2px center;
}
#nav_market ul .nav_market_on li.nav_my3d {
  background-image: url(../img/header/icon_mypage.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: top 2px center;
}

#nav_market ul li.nav_mine3d {
  background-image: url(../img/header/icon_mine3d_off.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: top 2px center;
}
#nav_market ul .nav_market_on li.nav_mine3d {
  background-image: url(../img/header/icon_mine3d.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: top 2px center;
}

#nav_market ul li.nav_shop {
  background-image: url(../img/header/icon_shop_off.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: top 2px center;
}
#nav_market ul .nav_market_on li.nav_shop {
  background-image: url(../img/header/icon_shop.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: top 2px center;
}

#nav_market ul li.nav_reserve {
  background-image: url(../img/header/icon_reserve_off.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: top 2px center;
  border-right: none;
}
#nav_market ul .nav_market_on li.nav_reserve {
  background-image: url(../img/header/icon_reserve.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: top 2px center;
  border-right: none;
}


  /* コンテンツここまで */

}