﻿/*!
 * jquery-drawer v3.2.1
 * Flexible drawer menu using jQuery, iScroll and CSS.
 * http://git.blivesta.com/drawer
 * License : MIT
 * Author : blivesta <design@blivesta.com> (http://blivesta.com/)
 */

/*!------------------------------------*\
    Base
\*!------------------------------------*/
.drawer-nav {
  position: fixed;
  z-index: 10;
  top: 0;
  overflow: hidden;
  width: 16.25rem;
  height: 100%;
  color: #222;
  background-color: #fff;
}

.drawer-brand {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 3.75rem;
  display: block;
  padding-right: .75rem;
  padding-left: .75rem;
  text-decoration: none;
  color: #222;
}

.drawer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.drawer-menu-item {
  font-size: 1rem;
  display: block;
  padding: .75rem;
  text-decoration: none;
  color: #222;
}

.drawer-menu-item:hover {
  text-decoration: underline;
  color: #555;
  background-color: transparent;
}

/*! overlay */
.drawer-overlay {
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .2);
}

.drawer-open .drawer-overlay {
  display: block;
}
/*!------------------------------------*\
    Top
\*!------------------------------------*/
.drawer--top .drawer-nav {
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  max-height: 100%;
  -webkit-transition: top .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: top .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  z-index: 99999999;
}

.drawer--top.drawer-open .drawer-nav {
  top: 0;
}

.drawer--top .drawer-hamburger,
.drawer--top.drawer-open .drawer-hamburger {
  right: 0;
}

/*!------------------------------------*\
    Left
\*!------------------------------------*/
.drawer--left .drawer-nav {
  left: -16.25rem;
  -webkit-transition: left .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: left .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
}

.drawer--left.drawer-open .drawer-nav,
.drawer--left .drawer-hamburger,
.drawer--left.drawer-open .drawer-navbar .drawer-hamburger {
  left: 0;
}

.drawer--left.drawer-open .drawer-hamburger {
  left: 16.25rem;
}
/*!------------------------------------*\
    Right
\*!------------------------------------*/
.drawer--right .drawer-nav {
  right: -16.25rem;
  -webkit-transition: right .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: right .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
}

.drawer--right.drawer-open .drawer-nav,
.drawer--right .drawer-hamburger,
.drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
  right: 0;
}

.drawer--right.drawer-open .drawer-hamburger {
  right: 16.25rem;
}
/*!------------------------------------*\
    Hamburger
\*!------------------------------------*/
.drawer-hamburger {
    /* position: fixed; */
    z-index: 104;
    top: 0;
    display: block;
    box-sizing: content-box;
    width: 2rem;
    padding: 0;
    padding-top: 5px;
    padding-right: 17px;
    padding-bottom: 16px;
    padding-left: 17px;
    -webkit-transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
    transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    border: 0;
    outline: 0;
    background-color: transparent;
}
.drawer-hamburger:hover {
  cursor: pointer;
  background-color: transparent;
}

.drawer-hamburger-icon {
  position: relative;
  display: block;
  margin-top: 10px;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  width: 100%;
  height: 2px;
  -webkit-transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  background-color: #fff;
}

.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  position: absolute;
  top: -10px;
  left: 0;
  content: ' ';
}

.drawer-hamburger-icon:after {
  top: 10px;
}

.drawer-open .drawer-hamburger-icon {
  background-color: transparent;
}

.drawer-open .drawer-hamburger-icon:before,
.drawer-open .drawer-hamburger-icon:after {
  top: 0;
}

.drawer-open .drawer-hamburger-icon:before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.drawer-open .drawer-hamburger-icon:after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
/*!------------------------------------*\
    accessibility
\*!------------------------------------*/

/*!
 * Only display content to screen readers
 * See: http://a11yproject.com/posts/how-to-hide-content
 */
.sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

/*!
 * Use in conjunction with .sr-only to only display content when it's focused.
 * Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
 * Credit: HTML5 Boilerplate
 */
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  overflow: visible;
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
}
/*!------------------------------------*\
    Sidebar
\*!------------------------------------*/
.drawer--sidebar {
  background-color: #fff;
}

.drawer--sidebar .drawer-contents {
  background-color: #fff;
}

@media (min-width: 64em) {
  .drawer--sidebar .drawer-hamburger {
    display: none;
    visibility: hidden;
  }

  .drawer--sidebar .drawer-nav {
    display: block;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    position: fixed;
    width: 12.5rem;
    height: 100%;
  }

  /*! Left */
  .drawer--sidebar.drawer--left .drawer-nav {
    left: 0;
    border-right: 1px solid #ddd;
  }

  .drawer--sidebar.drawer--left .drawer-contents {
    margin-left: 12.5rem;
  }

  /*! Right */
  .drawer--sidebar.drawer--right .drawer-nav {
    right: 0;
    border-left: 1px solid #ddd;
  }

  .drawer--sidebar.drawer--right .drawer-contents {
    margin-right: 12.5rem;
  }

  /*! container */
  .drawer--sidebar .drawer-container {
    max-width: 48rem;
  }
}

@media (min-width: 75em) {
  .drawer--sidebar .drawer-nav {
    width: 16.25rem;
  }

  .drawer--sidebar.drawer--left .drawer-contents {
    margin-left: 16.25rem;
  }

  .drawer--sidebar.drawer--right .drawer-contents {
    margin-right: 16.25rem;
  }

  /*! container */
  .drawer--sidebar .drawer-container {
    max-width: 60rem;
  }
}
/*!------------------------------------*\
    Navbar
\*!------------------------------------*/
.drawer--navbarTopGutter {
  padding-top: 3.75rem;
}

.drawer-navbar .drawer-navbar-header {
  border-bottom: 1px solid #ddd;
  background-color: #fff;
}

.drawer-navbar {
  z-index: 102;
  top: 0;
  width: 100%;
}

/*! .drawer-navbar modifier */
.drawer-navbar--fixed {
  position: fixed;
}

.drawer-navbar-header {
  position: relative;
  z-index: 102;
  box-sizing: border-box;
  width: 100%;
  height: 3.75rem;
  padding: 0 .75rem;
  text-align: center;
}

.drawer-navbar .drawer-brand {
  line-height: 3.75rem;
  display: inline-block;
  padding-top: 0;
  padding-bottom: 0;
  text-decoration: none;
}

.drawer-navbar .drawer-brand:hover {
  background-color: transparent;
}

.drawer-navbar .drawer-nav {
  padding-top: 3.75rem;
}

.drawer-navbar .drawer-menu {
  padding-bottom: 7.5rem;
}

@media (min-width: 64em) {
  .drawer-navbar {
    height: 3.75rem;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
  }

  .drawer-navbar .drawer-navbar-header {
    position: relative;
    display: block;
    float: left;
    width: auto;
    padding: 0;
    border: 0;
  }

  .drawer-navbar .drawer-menu--right {
    float: right;
  }

  .drawer-navbar .drawer-menu li {
    float: left;
  }

  .drawer-navbar .drawer-menu-item {
    line-height: 3.75rem;
    padding-top: 0;
    padding-bottom: 0;
  }

  .drawer-navbar .drawer-hamburger {
    display: none;
  }

  .drawer-navbar .drawer-nav {
    position: relative;
    left: 0;
    overflow: visible;
    width: auto;
    height: 3.75rem;
    padding-top: 0;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }

  .drawer-navbar .drawer-menu {
    padding: 0;
  }

  /*! dropdown */
  .drawer-navbar .drawer-dropdown-menu {
    position: absolute;
    width: 16.25rem;
    border: 1px solid #ddd;
  }

  .drawer-navbar .drawer-dropdown-menu-item {
    padding-left: .75rem;
  }
}
/*!------------------------------------*\
    Dropdown
\*!------------------------------------*/
.drawer-dropdown-menu {
  display: none;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #fff;
}

.drawer-dropdown-menu > li {
  width: 100%;
  list-style: none;
}

.drawer-dropdown-menu-item {
  line-height: 3.75rem;
  display: block;
  padding: 0;
  padding-right: .75rem;
  padding-left: 1.5rem;
  text-decoration: none;
  color: #222;
}

.drawer-dropdown-menu-item:hover {
  text-decoration: underline;
  color: #555;
  background-color: transparent;
}

/*! open */
.drawer-dropdown.open > .drawer-dropdown-menu {
  display: block;
}

/*! drawer-caret */
.drawer-dropdown .drawer-caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 4px;
  -webkit-transition: opacity .2s ease, -webkit-transform .2s ease;
  transition: opacity .2s ease, -webkit-transform .2s ease;
  transition: transform .2s ease, opacity .2s ease;
  transition: transform .2s ease, opacity .2s ease, -webkit-transform .2s ease;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

/*! open */
.drawer-dropdown.open .drawer-caret {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
/*!------------------------------------*\
    Container
\*!------------------------------------*/
.drawer-container {
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 64em) {
  .drawer-container {
    max-width: 60rem;
  }
}

@media (min-width: 75em) {
  .drawer-container {
    max-width: 70rem;
  }
}



/*!------------------------------------*\
    追加css
\*!------------------------------------*/
@media (max-width: 767px) {

.drawer-menu li {
    background-color: #FBFAF5;
    position: relative;
}

.drawer-menu li a {
    display: block;
    width: 100%;
    padding: 10px 0 10px 50px;
    font-size: 13px;
}
.drawer-menu li a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    display: inline-block;
}

.drawer-menu > li {
    background-color: #FBFAF5;
    position: relative;
		border-bottom: 1px solid #c0bba5;
}

.drawer-menu * li {
    border-top: 1px solid #c0bba5;
}

.drawer-menu .cat-ttl {
		background-color: #F8F5E6;
    padding: 10px 0 10px 50px;
}


.drawer-menu li.close a {
    display: block;
    width: 100%;
    padding: 0;
}

.drawer-menu li.close {
    padding: 20px 0;
}
.drawer-menu li.close a.btn-close {
    display: block;
    width: 50%;
    margin: 0 auto;
    padding: 10px;
    border-radius: 3px;
    background: #66a03e;
		text-align: center;
    color: #fff;
}
.drawer-menu li.close a:before,
.drawer-menu li.close a:after {
		content: "";
		display: none;
}

/* 大カテゴリアイコン */
.allitem > a:before {
    background: url("../images/common/sp_icon_allitem.svg") no-repeat top 5px left 12px, #888365;
    background-size: 20px;
}

.skin-cate > a:before {
    background: url("../images/common/sp_icon_skin.svg") no-repeat top 5px left 8px, #888365;
    background-size: 23px;
}

.step-cate > a:before {
    background: url(../images/common/sp_icon_step.svg) no-repeat top 6px left 5px, #888365;
    background-size: 29px;
}

.bath > a:before {
    background: url(../images/common/sp_icon_bath.svg) no-repeat top 7px left 8px, #888365;
    background-size: 23px;
}

.olive01 > a:before {
    background: url(../images/common/sp_icon_olive01.svg) no-repeat top 5px left 15px, #888365;
    background-size: 9px;
}

.olive02 > a:before {
    background: url(../images/common/sp_icon_olive02.svg) no-repeat top 10px left 8px, #888365;
    background-size: 24px;
}

.gift > a:before {
    background: url(../images/common/sp_icon_gift.svg) no-repeat top 10px left 8px, #888365;
    background-size: 24px;
}

.mypage > a:before {
    background: url(../images/common/sp_icon_mypage.svg) no-repeat center center, #888365;
    background-size: 23px; /* 適切なサイズを設定する */
}

.itemlist > a:before {
    background: url(../images/common/sp_icon_itemlist.svg) no-repeat top 10px left 8px;
    background-size: 23px;
}

.mail > a:before {
    background: url(../images/common/sp_icon_mail.svg) no-repeat top 11px left 10px;
    background-size: 20px;
}

.favorite > a:before {
  background: url(../images/common/sp_icon_favorite.svg) no-repeat center center, #888365;
  background-size: 23px;
}

.guide > a:before {
    background: url(../images/common/sp_icon_guide.svg) no-repeat top 10px left 13px;
    background-size: 15px;
}

.contact > a:before {
    background: url(../images/common/sp_icon_contact.svg) no-repeat top 8px left 10px;
    background-size: 20px;
}

.qanda > a:before {
    background: url(../images/common/sp_icon_qanda.svg) no-repeat top 9px left 10px;
    background-size: 23px;
}

.lang > a:before {
    background: url(../images/common/sp_icon_lang.png) no-repeat top 10px left 8px, #888365;
    background-size: 24px;
}

/* 子カテゴリアイコン */
.simplecare > a:before {
    background: url(../images/common/sp_icon_simplecare.png) no-repeat top left;
    background-size: 40px;
}
.shikolive > a:before {
    background: url(../images/common/sp_icon_shikolive.png) no-repeat top left;
    background-size: 40px;
}

.murasakisou > a:before {
    background: url(../images/common/sp_icon_murasakisou.png) no-repeat top left;
    background-size: 40px;
}

.uruoi > a:before {
    background: url(../images/common/sp_icon_uruoi.png) no-repeat top left;
    background-size: 40px;
}

.olivecure > a:before {
    background: url(../images/common/sp_icon_olivecare.png) no-repeat top left;
    background-size: 40px;
}

.natyurale > a:before {
    background: url(../images/common/sp_icon_manon_naturale.png) no-repeat top left;
    background-size: 40px;
}

.sellborn > a:before {
    background: url(../images/common/sp_icon_manon_cellborn.png) no-repeat top left;
    background-size: 40px;
}

.medical > a:before {
    background: url(../images/common/sp_icon_manon_medical.png) no-repeat top left;
    background-size: 40px;
}

.finessart > a:before {
    background: url(../images/common/sp_icon_manon_finessart.png) no-repeat top left;
    background-size: 40px;
}

.amtitopy > a:before {
    background: url(../images/common/sp_icon_amtitopy.png) no-repeat top left;
    background-size: 40px;
}

.masemake > a:before {
    background: url(../images/common/sp_icon_masemake.png) no-repeat top left;
    background-size: 40px;
}

.makeupgoods > a:before {
    background: url(../images/common/sp_icon_makeupgoods.png) no-repeat top left;
    background-size: 40px;
}

.dry > a:before {
    background: url(../images/common/sp_icon_simplecare.png) no-repeat top left;
    background-size: 40px;
}

.neutral > a:before {
    background: url(../images/common/sp_icon_simplecare.png) no-repeat top left;
    background-size: 40px;
}

.desolation > a:before {
    background: url(../images/common/sp_icon_simplecare.png) no-repeat top left;
    background-size: 40px;
}

.sensitive > a:before {
    background: url(../images/common/sp_icon_simplecare.png) no-repeat top left;
    background-size: 40px;
}

.oily > a:before {
    background: url(../images/common/sp_icon_simplecare.png) no-repeat top left;
    background-size: 40px;
}

.age > a:before {
    background: url(../images/common/sp_icon_simplecare.png) no-repeat top left;
    background-size: 40px;
}

.cleansing > a:before {
    background: url(../images/common/sp_icon_cleansing.png) no-repeat top left;
    background-size: 40px;
}

.pack > a:before {
    background: url(../images/common/sp_icon_pack.png) no-repeat top left;
    background-size: 40px;
}

.essence > a:before {
    background: url(../images/common/sp_icon_essence.png) no-repeat top left;
    background-size: 40px;
}

.lip > a:before {
    background: url(../images/common/sp_icon_lip.png) no-repeat top left;
    background-size: 40px;
}

.UV > a:before {
    background: url(../images/common/sp_icon_UV.png) no-repeat top left;
    background-size: 40px;
}

.oil > a:before {
    background: url(../images/common/sp_icon_oil.png) no-repeat top left;
    background-size: 40px;
}

.washing > a:before {
    background: url(../images/common/sp_icon_washing.png) no-repeat top left;
    background-size: 40px;
}

.toner > a:before {
    background: url(../images/common/sp_icon_toner.png) no-repeat top left;
    background-size: 40px;
}

.milkylotion > a:before {
    background: url(../images/common/sp_icon_milk.png) no-repeat top left;
    background-size: 40px;
}

.cream > a:before {
    background: url(../images/common/sp_icon_cream.png) no-repeat top left;
    background-size: 40px;
}

.specialcare > a:before {
    background: url(../images/common/sp_icon_specialcare.png) no-repeat top left;
    background-size: 40px;
}

.oilcare > a:before {
    background: url(../images/common/sp_icon_oilcare.png) no-repeat top left;
    background-size: 40px;
}

.bathgoods > a:before {
    background: url(../images/common/sp_icon_bath.png) no-repeat top left;
    background-size: 40px;
}

.bodysoap > a:before {
    background: url(../images/common/sp_icon_bodysoap.png) no-repeat top left;
    background-size: 40px;
}

.shampoo > a:before {
    background: url(../images/common/sp_icon_shampoo.png) no-repeat top left;
    background-size: 40px;
}

.treatment > a:before {
    background: url(../images/common/sp_icon_treatment.png) no-repeat top left;
    background-size: 40px;
}

.bathtreatment > a:before {
    background: url(../images/common/sp_icon_bathtreatment.png) no-repeat top left;
    background-size: 40px;
}

.bathgift > a:before {
    background: url(../images/common/sp_icon_bathgift.png) no-repeat top left;
    background-size: 40px;
}

.oliveoil > a:before {
    background: url(../images/common/sp_icon_oliveoil.png) no-repeat top left;
    background-size: 40px;
}

.oliveoil_k > a:before {
    background: url(../images/common/sp_icon_oliveoil_k.png) no-repeat top left;
    background-size: 40px;
}
.dressing > a:before {
    background: url(../images/common/sp_icon_dressing.png) no-repeat top left;
    background-size: 40px;
}
.salt > a:before {
    background: url(../images/common/sp_icon_salt.png) no-repeat top left;
    background-size: 40px;
}
.health_foods > a:before {
    background: url(../images/common/sp_icon_health_foods.png) no-repeat top left;
    background-size: 40px;
}
.olivegift > a:before {
    background: url(../images/common/sp_icon_olivegift.png) no-repeat top left;
    background-size: 40px;
}
.bathgift > a:before {
    background: url(../images/common/sp_icon_bathgift.png) no-repeat top left;
    background-size: 40px;
}

.seed > a:before {
    background: url(../images/common/sp_icon_simplecare.png) no-repeat top left;
    background-size: 40px;
}
.tree > a:before {
    background: url(../images/common/sp_icon_seed.png) no-repeat top left;
    background-size: 40px;
}


.drawer-menu li a:after {
	content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    -webkit-transition: opacity .2s ease, -webkit-transform .2s ease;
    transition: opacity .2s ease, -webkit-transform .2s ease;
    transition: transform .2s ease, opacity .2s ease;
    transition: transform .2s ease, opacity .2s ease, -webkit-transform .2s ease;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    right: 15px;
    top: 16px;
}

.drawer-menu > li.open > a:after {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}

.drawer-dropdown-menu > li.open > a:after {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


.drawer-hamburger {
    /* position: fixed; */
    z-index: 104;
    top: 0;
    display: block;
    box-sizing: content-box;
    width: 1.8rem;
    padding: 0;
    padding-top: 5px;
    padding-right: 15px;
    padding-bottom: 14px;
    padding-left: 15px;
    -webkit-transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
    transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    border: 0;
    outline: 0;
    background-color: transparent;
}

.drawer-hamburger-icon {
    position: relative;
    display: block;
    margin-top: 7px;
}


/* skin-cate */
.skin-cate ul li {
    width: 50% !important;
    float: left;
		margin-bottom: -1px;
    line-height: 0;
}
.skin-cate ul li a {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}
.skin-cate ul li a img {
    width: 100%;
}
.skin-cate ul li:nth-child(2n+1) {
    border-right: 1px solid #c0bba5;
}
.skin-cate ul li:last-child {
    border-bottom: 1px solid #c0bba5;
}
.skin-cate ul li a:before,
.skin-cate ul li a:after {
	content: none;
}


}

/* 検索窓 */

li.eventmenu_sp img {
    width: 100%;
    margin-top: 5px;
}


li.searchbox_sp {
    padding-top: 5px;
    padding-left: 5px;
    padding-bottom: 10px;
}
li.searchbox_sp input[type="text"] {
    width: 80%;
    height: 30px;
    margin-right: -4px;
    font-size: 16px;
}

li.searchbox_sp input[type="image"] {
    width: 17%;
    margin-right: -4px;
    font-size: 16px;
}
