@charset "UTF-8";

/*--------------------------------------------


Header Setting


---------------------------------------------*/
#header-area {
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, .1);
  position: relative;
}

#header-area a {
  text-decoration: none;
  color: #2d2d2d;
}

#header-area .header-bnr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 7px 20px;
  background: #cec37d;
}

#header-area .header-bnr__inner {
  display: flex;
  align-items: center;
}

#header-area .header-bnr__img {
  flex: 0 0 auto;
  width: 33px;
}

#header-area .header-bnr__text {
  margin-left: 10px;
  font-size: .75rem;
}

#header-area .header-bnr__btn {
  flex: 0 0 auto;
  position: relative;
  padding-top: 21px;
  font-size: .625rem;
}

#header-area .header-bnr__btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 22px;
  height: 18px;
  background: url("/beautykey/shared/img/icon_install_01.svg") 0 0/cover no-repeat;

  transform: translate(-50%, 0);
}

#header-area .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: auto;
  padding: 0;
}

#header-area .header-logo {
  position: absolute;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);
}

#header-area .header-logo .logo-pc {
  display: none;
}

#header-area .header-nav {
  width: 100%;
}

#header-area .header-nav .header-nav__list {
  display: flex;
}

#header-area .header-nav .header-nav__item.-shop {
  flex: 0 0 auto;
}

#header-area .header-nav .header-nav__item.-shop .header_nav__link::before {
  width: 24px;
  height: 25px;
  background-image: url("/beautykey/shared/img/icon_nav_shop_01.svg");
}

#header-area .header-nav .header-nav__item.-support {
  flex: 1 1 auto;
  width: 100%;
}

#header-area .header-nav .header-nav__item.-support .header_nav__link {
  width: 106px;
}

#header-area .header-nav .header-nav__item.-support .header_nav__link::before {
  background-image: url("/beautykey/shared/img/icon_nav_support_01.svg");
}

#header-area .header-nav .header-nav__item.-mypage {
  flex: 0 0 auto;
}

#header-area .header-nav .header-nav__item.-mypage .header_nav__link::before {
  background-image: url("/beautykey/shared/img/icon_nav_mypage_01.svg");
}

#header-area .header-nav .header-nav__item.-login {
  flex: 0 0 auto;
}

#header-area .header-nav .header-nav__item.-login .header_nav__link::before {
  background-image: url("/beautykey/shared/img/icon_nav_login_01.svg");
}

#header-area .header-nav .header_nav__link {
  display: flex;
  justify-content: center;
  position: relative;
  padding-top: 30px;
  transition: all .3s ease-out;

  opacity: 1;
}

#header-area .header-nav .header_nav__link::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  background: 0 0/cover no-repeat;

  transform: translate(-50%, 0);
}

#header-area .header-nav .header_nav__link-inner {
  display: flex;
  align-items: center;
  position: relative;
  text-align: center;
  font-size: .813rem;
}

#header-area .header-menu {
  flex: 0 0 auto;
  width: 45px;
  margin-right: 10px;
}
#header-area .header-menu__btn {
  position: relative;
  padding-top: 30px;
  text-align: center;
  font-size: .813rem;
}
.header-menu__btn {
  cursor: pointer;
}
#header-area .header-menu__btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 25px;
  background: url("/beautykey/shared/img/icon_menu_open_01.svg") 0 0/cover no-repeat;

  transform: translate(-50%, 0);
}
.drawer-open #header-area {
  z-index: initial;
}
/*--------------------------------------------


SP Nav Setting


---------------------------------------------*/
.drawer-open {
  overflow: hidden !important;
}

.drawer-nav {
  position: fixed;
  top: 0;
  width: 16.25rem;
  height: 100%;
  overflow: hidden;
  background-color: rgba(255, 255, 255, .95);
  color: #222;
  z-index: 2;
}

.drawer-brand {
  display: block;
  padding-right: .75rem;
  padding-left: .75rem;
  line-height: 3.75rem;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
}

.drawer-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: 1;
}

.drawer-open .drawer-overlay {
  display: block;
}

.drawer--top .drawer-nav {
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  max-height: 100%;
  transition: top .6s cubic-bezier(.19, 1, .22, 1);
}

.drawer--top.drawer-open .drawer-nav {
  top: 0;
}

.drawer--sidebar,
.drawer--sidebar .drawer-contents {
  background-color: #fff;
}

.drawer-nav a {
  text-decoration: none;
}

.drawer-btn {
  position: absolute;
  top: 50%;
  left: 20px;

  transform: translate(0, -50%);
}

.drawer-nav__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 63px;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, .1);
}

.drawer-nav__inner {
  height: calc(100vh - 50px);
  padding: 0 20px 35px;

  overflow-y: auto;
}

.drawer-nav__item {
  border-bottom: 1px solid #ededed;
}

.drawer-nav__link {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 55px;
  padding: 5px 20px 5px 0;
}

.drawer-nav__link>* {
  color: #2d2d2d;
}

.drawer-nav__link::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  height: 17px;
  background: url("/beautykey/shared/img/icon_arrow_01.svg") 0 0/cover no-repeat;

  transform: translate(0, -50%);
}

/*--------------------------------------------


Footer Setting


---------------------------------------------*/
#footer-area a {
  text-decoration: none;
}

.topic-path__item {
  display: inline;
  position: relative;
  font-size: .875rem;
}

.topic-path__item:not(:first-child) {
  padding-left: 32px;
}

.topic-path__item:not(:first-child)::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 16px;
  width: 6px;
  height: 10px;
  background: url("/beautykey/shared/img/icon_arrow_01.svg") 0 0/cover no-repeat;

  transform: translate(-50%, 50%);
}

.footer-connection__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: 960px;
  margin: auto;
  padding: 0;
}

.footer-connection .footer-sns-list__item:not(:first-child) {
  margin-left: 10px;
}

.footer-share {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-width: 243px;
}

.footer-share__detail:not(:first-child) {
  margin-left: 20px;
}

.footer-inner {
  position: relative;
  margin-top: 20px;
  overflow: hidden;
  background: #efefef;
}

.footer-inner__body {
  width: 100%;
  max-width: 960px;
  margin: auto;
  padding: 0;
}

.footer-inner__body::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 1px;
  background: #c81622;
}

.footer-nav__list {
  display: flex;
  flex-wrap: wrap;
}

.footer-nav__list.-sub .footer-nav__item {
  font-size: .813rem;
}

.footer-nav__item {
  font-size: .938rem;
}

.footer-sns-list {
  display: flex;
}

.footer-info {
  margin-top: 25px;
  font-size: .75rem;
}

.footer-info__title {
  display: flex;
  justify-content: space-between;
}

.footer-info__detail:not(:first-child) {
  margin-top: 11px;
}

.footer-copy {
  padding: 7px;
  background: #2d2d2d;
  text-align: center;
  font-size: .625rem;
  color: #fff;
}

#header-area,
#footer-area,
.drawer-nav {
  line-height: 1.5;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-size: 1rem;
  font-size-adjust: none;
  color: #2d2d2d;

  -webkit-text-size-adjust: 100%;
}

#header-area *,
#footer-area *,
.drawer-nav * {
  box-sizing: border-box;
}

#header-area button,
#footer-area button,
.drawer-nav button {
  margin: 0;
  padding: 0;
  appearance: none;
  background: transparent;
  border: none;
}

/*-------------------------------------------
btn
-------------------------------------------*/
.btn-list01 {
  display: flex;
}

.btn-list01:not(:first-child) {
  margin-top: 40px;
}

.btn-list01.-narrow01:not(:first-child) {
  margin-top: 10px;
}

.btn-list01.-narrow02:not(:first-child) {
  margin-top: 20px;
}

.btn-list01:not(.-row01) {
  justify-content: center;
}

.btn-list01:not(.-row01) .btn-list01__item {
  min-width: 0;
}

.btn-list01:not(.-row01) .btn-list01__item:not(:first-child) {
  margin-left: 20px;
}

.btn-list01.-row01 {
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.btn-list01.-row01 .btn-list01__item:not(:first-child) {
  margin-top: 20px;
}

.btn-type01 {
  display: inline-flex;
  justify-content: center;
  position: relative;
  width: 350px;
  max-width: 100%;
  padding: 5px;
  transition: background-color .3s ease-out;
  background: #2d2d2d;
  border: 1px solid #2d2d2d;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
}

.btn-type01 .btn-type01__inner {
  display: flex;
  align-items: center;
  min-height: 46px;
  line-height: 1.1;
  color: #fff;
}

.btn-type01.-white01 {
  background: #fff;
  border-color: #2d2d2d;
}

.btn-type01.-white01 .btn-type01__inner {
  color: #2d2d2d;
}

.btn-type01[aria-disabled=true] {
  pointer-events: none;
}

.btn-type01[aria-disabled=true]:not(.-white01) {
  background: #707070;
  border-color: #707070;
}

.btn-type01[aria-disabled=true].-white01 {
  background: #aeaeae;
  border-color: #aeaeae;
}

.btn-type01[aria-disabled=true].-white01 .btn-type01__inner {
  color: #fff;
}

.btn-type01[target=_blank] {
  padding-right: 65px;
  padding-left: 65px;
}

.btn-type01[target=_blank] .btn-type01__blank {
  position: absolute;
  top: calc(50% - 3px);
  right: 17px;

  transform: translate(0, -50%);
}

.btn-type01.-wide01 {
  width: 450px;
}

.btn-type01.-narrow01 {
  width: 200px;
}

.btn-type01.-small01 {
  width: auto;
  min-width: 150px;
}

.btn-type01.-small01 .btn-type01__inner {
  min-height: 36px;
}

/*-------------------------------------------
glyph
-------------------------------------------*/
.glyph-type01__inner {
  position: relative;
  padding-left: 1.15em;
}

.glyph-type01__inner::before {
  content: "";
  display: block;
  position: absolute;
  top: .2em;
  left: 0;
  width: 1em;
  height: 1em;
  background: transparent 0 0/cover no-repeat;
}

.glyph-type01.-share01 .glyph-type01__inner::before {
  width: .8em;
  height: 1em;
  background-image: url("/beautykey/shared/img/icon_share_01.svg");
}

/*-------------------------------------------
icon
-------------------------------------------*/
.icon-blank01 {
  display: inline;
}

.icon-blank01__img {
  width: 1em;
  height: 1em;
  margin: -.3em 0 0 5px;
  vertical-align: middle;
}

.list-line01 {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  margin: auto;
  text-align: left;
}

.list-line01__item {
  display: inline-block;
  position: relative;
  margin-top: 5px;
  font-size: .75rem;
}

.list-line01__item:not(:last-child) {
  margin-right: 20px;
  padding-right: 20px;
}

.list-line01__item:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 1em;
  background: #2d2d2d;

  transform: translate(0, -50%);
}

#footer-area {
  margin-top: 120px;
}

#footer-area a {
  color: #2d2d2d;
}

.header-logo {
  margin: 0;
}

#footer-area a {
  color: #2d2d2d;
}

#footer-area .footer-copy {
  padding: 7px;
  background: #2d2d2d;
  text-align: center;
  font-size: .625rem;
  color: #fff;
}

#footer-area .footer-copy>* {
  background: transparent;
  border-radius: 0;
  text-shadow: none;
  font-size: .625rem;
  color: #fff;
}

#footer p span:after {
  display: none;
}

body:not(.ua-ios) ._ios-only {
  display: none !important;
}

body:not(.ua-and) ._android-only {
  display: none !important;
}

a:link,
a:visited {
  color: #2d2d2d;
}

/* ヘッダー */
.header2019 {
  padding-bottom: 20px;
  background: white;
  background: linear-gradient(180deg, white 0%, white 87%, #f3f3f3 88%, white 100%);
  border-bottom: 0;
}

#header {
  padding-bottom: 20px;
  background: white;
  background: linear-gradient(180deg, white 0%, white 87%, #f3f3f3 88%, white 100%);
  border-bottom: 0;
}

/*  body
---------------------------------------------------------- */

/*-------------------------------------------
Device Content
-------------------------------------------*/
body:not(.-login) ._login-content-after {
  display: none !important;
}

body.-login ._login-content-before {
  display: none !important;
}

/* contents
---------------------------------------------------------- */
#contents {
  background: #f3f3f3;
  background: linear-gradient(180deg, #f3f3f3 0%, white 15%, white 100%);
}

.catShopnavi #contents>h1 {
  background-color: #fff;
  margin: 0;
  padding: 10px 10px 0;
}

.catShopnavi #contents>h1+ul {
  background-color: #fff;
  margin: 0 !important;
  padding: 4px 10px 10px;
}

/* 見出し */
div#body h1 {
  margin: 0 0 15px 0;
  line-height: 1.2;
  font-size: 1.375rem;
}

div#body h2 {
  font-size: 1.25rem;
}

#naviRenewal {
  background: #aeaeae;
}

/*  お店ナビ
---------------------------------------------------------- */
#navi .pinkBox .list .menu .inner p {
  color: #2d2d2d;
}

.list .shop {
  color: #2d2d2d;
}


/* ================================================== *
 *
 *    footer
 *
 * ================================================== */
/* ================================================== *
 *
 *    title Name
 *
 * ================================================== */
.bpp-content h2 {
  color: #2d2d2d;
}

.productName01 {
  background-color: #fff;
}

/* ------------------------------------------------- *
 *        title
 * ------------------------------------------------- */
.title01 {
  margin: -1px 0 0 0;
  padding: 9px 20px 8px 20px;
  background-color: #fff;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  font-size: .938rem;
}

.title01 span {
  display: block;
  line-height: 1;
  font-size: 66.7%;
  font-weight: normal;
}

.title01.mypage {
  padding: 9px 20px 8px 20px;
  background: #fff;
  border: none;
}

.title01.shopnavi {
  background: #fff;
  background-color: #fff;
}

.title01.error {
  background: none;
  background-color: #fff;
}

.title01.navi {
  background: none;
  background-color: #fff;
  border-top: 1px solid #2d2d2d;
}

.title02 {
  padding: 10px 0 8px 0;
  background: none;
  border: none;
  font-size: .813rem;
  color: #2d2d2d;
}

.block02 .title02 {
  border-color: #2d2d2d;
}
.block02.accordion .title02 {
  border: none;
  margin: 20px;
}

#contents .block02 .color01.noMargin {
  margin-top: 0;
}
#contents .block02 .inner {
  border: 10px solid #f0f0f0;
  border-bottom: 20px solid #f0f0f0;
}
#contents .btn06 li.active a {
  color: #fff;
  text-shadow: 0 1px 1px #666;
  background: -webkit-gradient(linear, 0 0, 0 7, from(#878787), to(#999999));
}

#contents .btn06 li a {
  background: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#ebebeb));
}

#contents .btn02.right.center {
  margin: 10px 15px 30px;
}
.btn02.small.close button {
  padding-right: 0;
}

.btnGroup01.color01 {
  background: #e6e6e6;
}
.title03 {
  border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    background: #e6e6e6;
    padding: 10px 20px;
}

.title03 .require {
  color: #2d2d2d;
}

.title06 {
  color: #2d2d2d;
}

h1 {
  font-size: 1.375rem;
}

h1.title01 {
  font-size: 1.375rem;
}

h2 {
  font-size: 1.25rem;
}

h2.title02 {
  font-size: .813rem;
}

.archive #block_01 {
  background-color: #fff;
}

.archive #block_01 h2 {
  background-image: none;
  border-top: 1px solid #aeaeae;
  border-bottom: 1px solid #aeaeae;
  font-size: 1.25rem;
  color: #2d2d2d;
}

.archive #block_01 ul li {
  border-top: 1px solid #aeaeae;
}

.archive #block_01 ul li a .campaign {
  background-color: #848484;
}

.archive #block_01 ul li a h3 {
  color: #2d2d2d;
}

.shopName01.typeStore {
  background: #fff;
}

.bpp-title01 {
  background-color: #848484;
  color: #2d2d2d;
}

/* ボタン
---------------------------------------------------------- */
p.buttonHome {
  background-color: #2d2d2d;
  background-image: none;
  border-radius: 3px;
}

p.buttonHome button {
  padding-right: 3px;
  padding-left: 3px;
  background-color: #2d2d2d;
  background-image: none;
  border-radius: 3px;
}

p.buttonHome button span {
  margin-left: 0;
  padding: 0 0 0 0;
  background: none;
}

p.buttonShop {
  background-image: none;
  border-radius: 3px;
}

p.buttonShop button {
  padding-right: 3px;
  padding-left: 3px;
  background-color: #2d2d2d;
  background-image: none;
  border-radius: 3px;
}

p.buttonShop button span {
  margin-left: 0;
  padding: 0 0 0 0;
  background: none;
}

p.buttonGray {
  background-color: #2d2d2d;
  background-image: none;
}

p.buttonGray button {
  background-image: none;
}

p.buttonGray button span {
  background-image: none;
}

div.buttonCenter p.buttonGray {
  background-image: none;
  border-radius: 3px;
}

div.buttonCenter p.buttonGray button {
  background-image: none;
}

.viewPointButton.right button {
  position: relative;
  padding-right: 3px;
  padding-left: 3px;
  background-color: #2d2d2d;
  background-image: none;
  border: none;
  border-radius: 3px;
  font-size: 90%;
  color: #fff;
}

.parts_icon_arrow.parts_btn {
  border: 1px solid #2d2d2d;
  color: #2d2d2d;
}

.btn01 {
  padding: 0;
  background: none;
  border: none;
  text-shadow: none;
}

.btn01 button {
  background: none;
  background-color: #2d2d2d;
  border: none;
  border-radius: 3px;
  color: #fff;
}

.btn01 .disabled .soldout {
  background-color: #aeaeae;
  color: #fff;
}

.btn01 button {
  text-shadow: none;
}

.btn01 button::after {
  display: none;
}

.btn01 a {
  text-shadow: none;
}

.btn01 a::after {
  display: none;
}

.btn01.search button {
  background: url(/beautykey/sp/shared/img/ico56.png) 9px center no-repeat, -webkit-gradient(linear, left top, left bottom, from(#2d2d2d), to(#2d2d2d)) !important;
  background-size: 17px 19px, auto auto !important;

  -webkit-background-size: 17px 19px, auto auto !important;
}

.btn01.search a {
  background-color: #2d2d2d;
}

.btn01.next button {
  background: url(/beautykey/sp/shared/img/ico28.png) 9px center no-repeat, -webkit-gradient(linear, left top, left bottom, from(#2d2d2d), to(#2d2d2d));
  background-size: 18px 18px, auto auto;

  -webkit-background-size: 18px 18px, auto auto;
}

.btn01.next a {
  background-color: #2d2d2d;
}

.btn01.reserve button,
.btn01.reserve a {
  background: url(../img/ico66.png) 7px center no-repeat, -webkit-gradient(linear, left top, left bottom, from(#2d2d2d), to(#2d2d2d));
  background-image: none;
}

.btn02 {
  padding: 0;
  background: none;
  border: none;
}

.btn02 a {
  text-shadow: none;
}

.btn02 button {
  background: none;
  background-color: #2d2d2d;
  border: 1px solid #2d2d2d;
  border-radius: 3px;
  text-shadow: none;
  color: #fff;
}

.btn02.left button::after {
  background-image: url(/sp/shared/img/ico10_left_gray.png);
}

.btn02.left a::after {
  background-image: url(/sp/shared/img/ico10_left_gray.png);
}

.btn02.right button::after {
  background-image: url(/sp/shared/img/ico10_right_gray.png);
}

.btn02.right a::after {
  background-image: url(/sp/shared/img/ico10_right_gray.png);
}

.btn02.small.right button::after {
  background-image: url(/sp/shared/img/ico10_right_gray.png);
}

.btn02.anchor a {
  background: #2d2d2d;
  color: #fff;
}

.btn02.small.anchor a {
  background: #2d2d2d;
  color: #fff;
}

.btn02.bbp-btnIndent a {
  background: #2d2d2d;
  color: #fff;
}

.btn03 {
  padding: 0;
  background: none;
  border: none;
  text-shadow: none;
}

.btn03 button {
  background: none;
  background-color: #2d2d2d;
  border: none;
  border-radius: 3px;
  color: #fff;
}

.btn03 a {
  background-color: #2d2d2d;
  border-radius: 4px;
  text-shadow: none;
}

.btn03 a::after {
  display: none;
}

.btn03 li.style {
  background: #2d2d2d;
  border-radius: 3px 0 0 3px;
}

.btn03 li.style.active {
  background: #aeaeae;
  color: #2d2d2d;
}

.btn03 li.style a {
  background: none;
}

.btn03 li.brand {
  background: #2d2d2d;
  border-radius: 0 3px 3px 0;
}

.btn03 li.brand.active {
  background: #aeaeae;
  color: #2d2d2d;
}

.btn03 li.brand a {
  background: none;
}

.btn03 li.target {
  background: #2d2d2d;
  border-radius: 3px 0 0 3px;
}

.btn03 li.target.active {
  background: #aeaeae;
  color: #2d2d2d;
}

.btn03 li.target a {
  background: none;
}

.btn03 li.campaign {
  background: #2d2d2d;
  border-radius: 0 3px 3px 0;
}

.btn03 li.campaign.active {
  background: #aeaeae;
  color: #2d2d2d;
}

.btn03 li.campaign a {
  background: none;
}

.btn03 li button {
  background: #2d2d2d;
  border: none;
  border-radius: 3px;
  color: #fff;
}

.btn03 li a {
  background: #2d2d2d;
  border-radius: 4px;
  text-shadow: none;
  color: #fff;
}

.btn03 li a::after {
  display: none;
}

#contents .btn03 li {
  border-right: 1px solid #fff;
}

.btn07 a {
  background-image: url(/sp/shared/img/ico10_left_gray.png);
}

.btn11 li a::after {
  background-image: url(/sp/shared/img/ico10_right_gray.png);
}

.btn14 {
  background: #2d2d2d;
  border: none;
}

.btn14 a,
.btn14 button {
  background: none;
  background-color: #2d2d2d;
  color: #fff;
}

.btn14.favorite {
  background: #2d2d2d;
  border: none;
}

.btn14.favorite a,
.btn14.favorite button {
  background: none;
  background-color: #2d2d2d;
  color: #fff;
}

.blockNaviMap .btn02 {
  background: none;
  background: #2d2d2d;
}

.blockNaviMap .btn02 a {
  background: #2d2d2d;
  color: #fff;
}

.btnBlock .moreLink {
  background: none;
  border: none;
  text-shadow: none;
}

.btnBlock .moreLink a {
  background-color: #2d2d2d;
  border-color: #2d2d2d;
  border-radius: 3px;
}

.btnBlock .moreLink a span {
  background: #2d2d2d;
  border-radius: none;
  color: #fff;
}

.btnBlock .moreLink a span::after {
  background-image: url(/sp/shared/img/ico10_right_gray.png);
}

.anchor01.separate li a {
  background: url(/beautykey/shared/img/ico23.png) 8px 13px no-repeat, -webkit-gradient(linear, left top, left bottom, from(#2d2d2d), to(#2d2d2d));
  background-size: 13px 11px, auto auto;
  color: #fff;
}

#contents .pointPrice02 .btn01.search.shopSearch button,
#contents .pointPrice02 .btn01.search.shopSearch.ownedDelivery button {
  position: relative;
  padding-right: 3px;
  padding-left: 3px;
  background-color: #2d2d2d;
  background-image: none;
  border: none;
  border-radius: 3px;
  font-size: 90%;
  color: #fff;
}

#contents .cornerStyle01 {
  padding: 0;
  border: none;
}

#contents .cornerStyle01.btn09.pc a {
  position: relative;
  padding-right: 3px;
  padding-left: 10px;
  background-color: #2d2d2d;
  background-image: none;
  border: none;
  border-radius: 3px;
  font-size: 90%;
  color: #fff;
}

#contents .cornerStyle01.btn09.pc a::before {
  display: none;
}

#contents .blockNavi h3 {
  color: #2d2d2d;
}

.lead.clearfix p.buttonRed button {
  position: relative;
  padding-right: 3px;
  padding-left: 3px;
  background-color: #2d2d2d;
  background-image: none;
  border: none;
  border-radius: 3px;
  font-size: 90%;
  color: #fff;
}

.lead.clearfix p.buttonRed:hover {
  background-image: none;
}

.lead.clearfix p.buttonRed:hover button {
  background-image: none;
}

.roundGray p.buttonRed {
  background-color: #2d2d2d;
  background-image: none;
}

.roundGray p.buttonRed:hover {
  background-color: #2d2d2d;
  background-image: none;
}

.roundGray p.buttonRed:hover button {
  background-image: none;
}

.roundGray p.buttonRed button {
  background-image: none;
}

.roundGray p.buttonDisable {
  background-color: #aeaeae;
  background-image: none;
}

.roundGray p.buttonDisable:hover {
  background-image: none;
}

.roundGray p.buttonDisable:hover button {
  background-image: none;
}

.roundGray p.buttonDisable button {
  background-image: none;
}

/* ------------------------------------------------- *
 *        flow01
 * ------------------------------------------------- */
.drawer-open .flow01 li:after {
  z-index: 1;
}

/* ------------------------------------------------- *
 *        product01
 * ------------------------------------------------- */
.product01 {
  margin: 10px;
  background: #fff;
  border: 1px solid #ededed;
  border-top: 1px solid #ededed;
  border-radius: 3px;
}

/* ------------------------------------------------- *
 *        .pointContents
 * ------------------------------------------------- */
.pointContents ul li:nth-child(even) {
  background: #ededed;
}

.pointContents ul li.first {
  background: #2d2d2d;
  border: none;
  color: #fff;
}

/* ------------------------------------------------- *
 *        .pointContents
 * ------------------------------------------------- */
.pointHome.table01 .pointbnrArea01 {
  border: none;
}

.pointHome.table01 .pointbnrArea01 span {
  background-color: #2d2d2d;
  border: none;
  color: #fff;
}

.table04 td.price span {
  color: #2d2d2d;
}

/* ------------------------------------------------- *
 *        pointbnrArea01
 * ------------------------------------------------- */
.pointbnrArea01 {
  border: none;
}

.pointbnrArea01 span {
  background-image: none;
}

.pointbnrArea02 {
  border: none;
}

.pointbnrArea02 span {
  background-image: none;
}

/* ------------------------------------------------- *
 *        shoplist01
 * ------------------------------------------------- */
.shoplist01 {
  border: 1px solid #2d2d2d;
}

.shoplist01::before {
  display: none;
}

.shoplist01 a.header::after {
  background-image: url(/sp/shared/img/ico10_right_gray.png);
}

.shoplist01 a.header .detail .name {
  color: #2d2d2d;
}

/* ------------------------------------------------- *
 *        naviBrandList
 * ------------------------------------------------- */
.naviBrandList a.header::after {
  background-image: url(/sp/shared/img/ico10_right_gray.png);
}

/* ================================================== *
 *
 *    for T_point
 *
 * ================================================== */
#contents div.searchRefine {
  background: #ededed;
  border: none;
  font-size: .688rem;
  color: #2d2d2d;
}

#contents .pointShoplist {
  margin: 20px;
  background: #ededed;
  border-top: none;
}

#contents .pointShoplist p {
  background-color: #848484;
  color: #fff;
}

#contents .pointShoplist p span {
  padding: 9px 7px 8px 7px;
  color: #fff;
}

#contents .pointShoplist .pointxchangeAccordion dt {
  background: transparent;
}

#contents .pointShoplist .pointxchangeAccordion dt:after {
  width: 10px;
  height: 16px;
  background-image: url(/sp/shared/img/ico10_left_gray.png);
  background-size: 10px 16px;
}

#contents .pointShoplist .pointxchangeAccordion dt .wrap {
  background: transparent;
}

#contents .pointTotal.total01 .table02 tr:nth-of-type(5) td:nth-of-type(1) {
  color: #2d2d2d;
}


#contents .block02.separate .inner {
  border: none;
  background: #f0f0f0;
  padding: 1px 0 10px;
  border-bottom: 1px solid #ccc;
}

#contents .block02.separate .inner .StoreAcceptance span.inner,
#contents .block02.separate .inner .ordering span.inner,
#contents .block02.separate .inner .ordered span.inner,
#contents .block02.separate .inner .homeDelivery span.inner,
#contents .block02.separate .inner .distribution span.inner,
#contents .block02.separate .inner .shopReceipt span.inner {
  background-color: #848484;
  border: none;
  color: #fff;
}

#contents .block02.separate .inner .StoreAcceptance span.inner span,
#contents .block02.separate .inner .ordering span.inner span,
#contents .block02.separate .inner .ordered span.inner span,
#contents .block02.separate .inner .homeDelivery span.inner span,
#contents .block02.separate .inner .distribution span.inner span,
#contents .block02.separate .inner .shopReceipt span.inner span {
  color: #fff;
}

#contents .block02.separate .inner .StoreAcceptance span.inner.threeLetters,
#contents .block02.separate .inner .StoreAcceptance span.inner.sixCharacters,
#contents .block02.separate .inner .StoreAcceptance span.inner.fiveCharacters,
#contents .block02.separate .inner .ordering span.inner.threeLetters,
#contents .block02.separate .inner .ordering span.inner.sixCharacters,
#contents .block02.separate .inner .ordering span.inner.fiveCharacters,
#contents .block02.separate .inner .ordered span.inner.threeLetters,
#contents .block02.separate .inner .ordered span.inner.sixCharacters,
#contents .block02.separate .inner .ordered span.inner.fiveCharacters,
#contents .block02.separate .inner .homeDelivery span.inner.threeLetters,
#contents .block02.separate .inner .homeDelivery span.inner.sixCharacters,
#contents .block02.separate .inner .homeDelivery span.inner.fiveCharacters,
#contents .block02.separate .inner .distribution span.inner.threeLetters,
#contents .block02.separate .inner .distribution span.inner.sixCharacters,
#contents .block02.separate .inner .distribution span.inner.fiveCharacters,
#contents .block02.separate .inner .shopReceipt span.inner.threeLetters,
#contents .block02.separate .inner .shopReceipt span.inner.sixCharacters,
#contents .block02.separate .inner .shopReceipt span.inner.fiveCharacters {
  background-color: #848484;
  border: none;
  color: #fff;
}

#contents .block02.separate .inner .StoreAcceptance span.inner.threeLetters span,
#contents .block02.separate .inner .StoreAcceptance span.inner.sixCharacters span,
#contents .block02.separate .inner .StoreAcceptance span.inner.fiveCharacters span,
#contents .block02.separate .inner .ordering span.inner.threeLetters span,
#contents .block02.separate .inner .ordering span.inner.sixCharacters span,
#contents .block02.separate .inner .ordering span.inner.fiveCharacters span,
#contents .block02.separate .inner .ordered span.inner.threeLetters span,
#contents .block02.separate .inner .ordered span.inner.sixCharacters span,
#contents .block02.separate .inner .ordered span.inner.fiveCharacters span,
#contents .block02.separate .inner .homeDelivery span.inner.threeLetters span,
#contents .block02.separate .inner .homeDelivery span.inner.sixCharacters span,
#contents .block02.separate .inner .homeDelivery span.inner.fiveCharacters span,
#contents .block02.separate .inner .distribution span.inner.threeLetters span,
#contents .block02.separate .inner .distribution span.inner.sixCharacters span,
#contents .block02.separate .inner .distribution span.inner.fiveCharacters span,
#contents .block02.separate .inner .shopReceipt span.inner.threeLetters span,
#contents .block02.separate .inner .shopReceipt span.inner.sixCharacters span,
#contents .block02.separate .inner .shopReceipt span.inner.fiveCharacters span {
  color: #fff;
}

#contents .block05 h3 {
  color: #2d2d2d;
}

.pointShoplist02 dd .pointbnrArea02 {
  background: #848484;
}

.pointShoplist02 dd .pointbnrArea02 span {
  color: #fff;
}

/* .changeItemBlock
---------------------------------------------------------- */
.changeItemBlock table.date th {
  background-color: #848484;
  color: #fff;
}

.changeItemBlock table.date td {
  background-color: #848484;
  color: #fff;
}

.changeItemBlock table.date th ul.pager li.current em {
  background-color: #2d2d2d;
  background-image: none;
  border-radius: 4px;
}

.pager01 li.disabled a {
  background-color: none;
  border: none;
  color: #2d2d2d;
}

.pager01 li.disabled a span {
  background: none;
  color: #2d2d2d;
}

.pager01 li .result {
  color: #2d2d2d;
}

.pager01 li a {
  background-color: none;
  border: none;
  text-shadow: none;
  color: #2d2d2d;
}

.pager01 li a span {
  background: none;
  text-shadow: none;
}

.pager02 ul.number li a {
  border: none;
}

.pager02 ul.number li a span {
  background-color: #fff;
  background-image: none;
  border: none;
  border-radius: 4px;
  color: #2d2d2d;
}

.pager02 ul.number li.current span {
  background-color: #2d2d2d;
  background-image: none;
  border-radius: 4px;
  color: #fff;
}

.pager02 ul.control li a {
  border: none;
}

.pager02 ul.control li a span {
  background-color: #fff;
  background-image: none;
  border: none;
  border-radius: 4px;
  color: #2d2d2d;
}

.pager02 ul.control li.disabled a {
  border: none;
}

.pager02 ul.control li.disabled a span {
  background-color: #fff;
  background-image: none;
  border: none;
  border-radius: 4px;
  color: #2d2d2d;
}

.pagerHasResult.pointxchange ul.pager li em {
  background-color: #2d2d2d;
  background-image: none;
  border-radius: 4px;
}

/*  miniCart
---------------------------------------------------------- */
div#miniCart {
  position: relative;
  width: 965px;
  background: none;
  text-align: left;
  z-index: 50;
}

div#miniCart div.miniCartTotal {
  background-color: #2d2d2d;
  border-radius: 3px 3px 0 0;
  color: #fff;
}

div#miniCart div.miniCartTotal p.total span.separator {
  color: #fff;
}

div#miniCart div.miniCartTotal p.button {
  background-color: #fff;
  background-image: none;
  border-radius: 3px;
}

div#miniCart div.miniCartTotal p.button button {
  background: none;
  color: #2d2d2d;
}

div#miniCart div.miniCartContents div.carousel {
  background-color: #ededed;
}

div#miniCart div.miniCartContents div.carousel div.jcarousel-next {
  display: inline-block;
  top: 35px;
  width: 18px;
  height: 18px;
  margin: 0 10px;
  background-image: none;
  border-top: 3px solid #000;
  border-right: 3px solid #000;

  transform: rotate(45deg);
}

div#miniCart div.miniCartContents div.carousel div.jcarousel-next:hover {
  background-image: none;
}

div#miniCart div.miniCartContents div.carousel div.jcarousel-prev {
  display: inline-block;
  top: 35px;
  width: 18px;
  height: 18px;
  margin: 0 10px;
  background-image: none;
  border-top: 3px solid #000;
  border-right: 3px solid #000;

  transform: rotate(225deg);
}

div#miniCart div.miniCartContents div.carousel div.jcarousel-prev:hover {
  background-image: none;
}

/* 検索ボックス ======================================================== */
.search_list_acd a {
  color: #2d2d2d;
}


/* ------------------------------------------------- *
 *        pointProduct
 * ------------------------------------------------- */
.pointProduct.product01 table.date th {
  background-color: #848484;
  color: #fff;
}

.pointProduct.product01 table.date td {
  background-color: #848484;
  color: #fff;
}

.pointProduct a.header::after {
  background-image: url(/sp/shared/img/ico10_right_gray.png);
}

/* ------------------------------------------------- *
 *        iconList01
 * ------------------------------------------------- */
ul.iconList01 li.pink {
  background-color: #fff;
  color: #2d2d2d;
}

ul.function li.pink {
  background-color: #fff;
  color: #2d2d2d;
}

/* ------------------------------------------------- *
 *        bbp-point01
 * ------------------------------------------------- */
.bbp-point01.point01 tr:nth-of-type(1) td {
  color: #2d2d2d;
}

/* ------------------------------------------------- *
 *        bbp-mark01
 * ------------------------------------------------- */
.bbp-mark01 {
  background-color: #2d2d2d;
}

/* ------------------------------------------------- *
 *        boxStep
 * ------------------------------------------------- */
.boxStep {
  border: 1px solid #aeaeae;
}

.boxStep h3 {
  background-image: url(/beautykey/sp/shared/member/point/bpp/img/ico_arrow_down.png);
}

.boxStep h3.open {
  background-image: url(/beautykey/sp/shared/member/point/bpp/img/ico_arrow_up.png);
}

.boxStep h3 span {
  background-color: #aeaeae;
  border-right: 1px solid #aeaeae;
  color: #2d2d2d;
}

.boxStep.arrowNext:after {
  background-image: url(/beautykey/sp/shared/member/point/bpp/img/arrow_pink_next.png);
}

/* ------------------------------------------------- *
 *        bpp-content
 * ------------------------------------------------- */
.bpp-content .attention {
  color: #2d2d2d;
}

/* ------------------------------------------------- *
 *        attention
 * ------------------------------------------------- */
p>span.attention {
  color: #2d2d2d;
}

/* ------------------------------------------------- *
 *        calendar
 * ------------------------------------------------- */
.calendarSample span .active,
.calendarSample td .active,
.calendar span .active,
.calendar td .active {
  background: #2d2d2d;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#2d2d2d));
}

.calendarSample span.active a,
.calendarSample td.active a,
.calendar span.active a,
.calendar td.active a {
  background: #2d2d2d;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#2d2d2d));
  color: #fff;
}

/* ------------------------------------------------- *
 *        link
 * ------------------------------------------------- */
.link02 a {
  background-image: url(/beautykey/sp/shared/img/ico10_right_gray.png);
  color: #2d2d2d;
}

.linkList02 a:after {
  background-image: url(/beautykey/sp/shared/img/ico10_right.png);
}

.link03 a {
  background-image: url(/sp/shared/img/ico10_right_gray.png);
}

/* list05 */
.list05 li,
.list05.naviSearchList li {
  background-color: #2d2d2d !important;
  border: none;
  color: #fff;
}

.list05 li::after,
.list05.naviSearchList li::after {
  background-image: url(/sp/shared/img/ico10_right_gray.png);
}

.list05 li a,
.list05.naviSearchList li a {
  background: url(/sp/shared/img/navi/naviico01.png) 7px center no-repeat, -webkit-gradient(linear, left top, left bottom, from(#2d2d2d), to(#2d2d2d));
  background-size: 16px 16px, auto auto;
  color: #fff;
}

.listNavi li {
  background-color: none;
  border: none;
  border-radius: 3px;
}

.listNavi li a {
  background: -webkit-gradient(linear, left top, left bottom, from(#2d2d2d), to(#2d2d2d));
  text-shadow: none;
  color: #fff;
}

.listNavi li a::after {
  background-image: url(/sp/shared/img/ico10_right_gray.png);
}

.listNavi li span {
  background: -webkit-gradient(linear, left top, left bottom, from(#848484), to(#848484));
  text-shadow: none;
  color: #2d2d2d;
}

.notes02, .notes01 {
  color: #666;
}

.notice_closing .closing_dl>dd .dl_ul .dl_ul_li01 .li01_p01 .p01_a {
  color: #2d2d2d;
}

.notice_closing .closing_dl>dd .dl_ul .dl_ul_li02 .li02_p01 .p01_a {
  color: #2d2d2d;
}

/* ------------------------------------------------- *
 *        menulist02
 * ------------------------------------------------- */
.menulist02 {
  border-right: 1px solid #2d2d2d;
  border-bottom: 1px solid #2d2d2d;
  border-left: 1px solid #2d2d2d;
}

.menulist02::before {
  border-top: 1px solid #2d2d2d;
}

.menulist02 a.header::after {
  background-image: url(/sp/shared/img/ico10_right_gray.png);
}

.menulist02 a.header .detail .name {
  color: #2d2d2d;
}

/* ------------------------------------------------- *
 *        linkList02
 * ------------------------------------------------- */
.linkList02 {
  border: none;
}

.linkList02 li {
  background: -webkit-gradient(linear, left top, left bottom, from(#2d2d2d), to(#2d2d2d));
}

.linkList02 li.active {
  background: -webkit-gradient(linear, left top, left bottom, from(#2d2d2d), to(#2d2d2d));
}

.linkList02 li.active a {
  color: #fff;
}

.linkList02 li a {
  text-shadow: none;
  color: #fff;
}

/* ------------------------------------------------- *
 *        .productImage01.layout
 * ------------------------------------------------- */
.productImage01.layout .thumbnail li.active img {
  border-color: #848484;
}

/* ------------------------------------------------- *
 *        menulist02
 * ------------------------------------------------- */
.sns2019 {
  background-color: #fff;
}

ul#ln li a div::after {
  border-top: 1px solid #2d2d2d;
  border-right: 1px solid #2d2d2d;
}

.selectMenu li.act {
  background-image: url(/sp/navi/img/arrow02_dw.png) !important;
}

/* 記事 */
.itemArea .itemBox .tag {
  border: 1px solid #2d2d2d !important;
  color: #2d2d2d !important;
}

/* パーツデザイン ====================================================== */
.parts_btn {
  background-color: #ffff;
  border: 1px solid #2d2d2d;
  border-radius: 100px;
  color: #2d2d2d;
}

.parts_icon_arrow.parts_btn {
  background-color: #2d2d2d;
  border: none;
  color: #fff;
}

/*お店のスタッフエリア*/
.staffPanelLink {
  color: #2d2d2d;
}

/* 汎用
---------------------------------------------------------- */
.pointColorPink {
  color: #2c2c2c;
}

/* ------------------------------------------------- *
 *        strong
 * ------------------------------------------------- */
.strong04 {
  color: #2d2d2d;
}

/*トップの検索エリア*/
.search_area {
  background-color: #fff;
}

.searchHead {
  background-color: #848484;
}

.search_box .sarch_form .txt_area {
  border: 1px solid #2d2d2d;
}

.topSearchKeywordText {
  border: 1px solid #2d2d2d;
}

.slick-slider .slick-dots li button {
  background-color: #aeaeae;
}

.slick-slider .slick-dots li.slick-active button {
  background-color: #2d2d2d;
}

/* ------------------------------------------------- *
 *        accordion02
 * ------------------------------------------------- */
.accordion02 dt {
  color: #2d2d2d;
}

.accordion02 dt span {
  color: #2d2d2d;
}

.accordion02 .wrap {
  padding: 10px 35px 10px 10px;
  background-image: none;
}

@media screen and (min-width: 600px) and (max-width: 959px) {
  #header-area .header-inner {
    padding: 0 20px;
  }

  #header-area .header-inner {
    min-height: 80px;
    padding: 20px 15px;
  }

  #header-area .header-nav .header-nav__item.-support .header_nav__link {
    width: 96px;
  }

  #header-area .header-nav .header_nav__link-inner {
    font-size: .625rem;
  }

  #header-area .header-menu__btn {
    font-size: .625rem;
  }

  .footer-connection__inner {
    padding: 0 20px;
  }

  .footer-inner__body {
    padding: 0 20px;
  }

  .footer-inner__body {
    padding-top: 35px;
    padding-bottom: 20px;
  }

  .footer-nav__list {
    display: flex;
    justify-content: center;
  }

  .footer-nav__list:not(:first-child) {
    margin-top: 30px;
  }

  .footer-nav__list.-sub .footer-nav__item {
    margin: 5px 15px 0;
  }

  .footer-nav__item {
    margin: 5px 15px 0;
  }
}

@media screen and (max-width: 599px) {
  #header-area {
    position: relative;
    z-index: 5;
  }

  #header-area .header-inner {
    width: 100%;
    margin: auto;
    padding: 0 20px;
  }

  #header-area .header-inner {
    min-height: 63px;
    padding: 10px;
  }

  #header-area .header-logo:not(:only-child) {
    left: calc(50% + 10px);
  }

  #header-area .header-nav .header-nav__item:not(.-mypage):not(.-login) {
    display: none;
  }

  #header-area .header-nav .header-nav__item.-login {
    position: absolute;
    top: 50%;
    right: 10px;

    transform: translate(0, -50%);
  }

  #header-area .header-nav .header_nav__link-inner {
    font-size: .625rem;
  }

  #header-area .header-menu__btn {
    font-size: .625rem;
  }

  .footer-connection__inner {
    width: 100%;
    margin: auto;
    padding: 0 20px;
  }

  .footer-inner__body {
    width: 100%;
    margin: auto;
    padding: 0 20px;
  }

  .footer-inner__body {
    padding-top: 27px;
    padding-bottom: 15px;
  }

  .footer-nav__list {
    display: flex;
    margin-right: -15px;
    margin-left: -15px;
  }

  .footer-nav__list:not(:first-child) {
    margin-top: 25px;
  }

  .footer-nav__list.-sub {
    margin-right: -5px;
    margin-left: -5px;
  }

  .footer-nav__list.-sub .footer-nav__item {
    margin: 5px 5px 0;
  }

  .footer-nav__item {
    margin: 5px 15px 0;
  }

  #footer-area {
    margin-top: 80px;
  }
}

@media screen and (min-width: 960px) {
  #header-area .header-inner {
    min-height: 90px;
    padding: 20px 0;
  }

  #header-area .header-logo .logo_tb-sp {
    display: none;
  }

  #header-area .header-logo .logo-pc {
    display: inline;
  }

  .footer-inner__body {
    padding-top: 39px;
    padding-bottom: 25px;
  }

  .footer-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .footer-nav__list:not(:first-child) {
    margin-top: 30px;
  }

  .footer-nav__list.-sub .footer-nav__item {
    margin: 5px 15px 0;
  }

  .footer-nav__item {
    margin: 5px 30px 0;
  }

  .footer-info {
    margin-top: 30px;
  }

  .btn-type01:not([aria-disabled=true]):hover:not(.-white01) {
    background: #616161;
    border-color: #616161;
  }

  .btn-type01:not([aria-disabled=true]):hover.-white01 {
    background: #f7f7f7;
    border-color: #7a7a7a;
  }

  .btn-type01:not([aria-disabled=true]):hover.-white01 .btn-type01__inner {
    color: #7a7a7a;
  }

  .list-line01 {
    justify-content: center;
  }
}

@media screen and (max-width: 369px) {
  #header-area .header-logo {
    width: 100px;
  }
}

@media screen and (min-width: 600px) {
  #header-area .header-nav .header-nav__item:not(:first-child) {
    margin-left: 15px;
  }

  #header-area .header-nav .header_nav__link:hover {
    opacity: .7;
  }

  #header-area .header-nav {
    width: auto;
    margin-left: auto;
  }
  #header-area .header-menu{
    width: auto;
  }
  .drawer-nav .drawer-nav__logo{
    max-width: 980px;
    margin: 0 auto;
    box-shadow: none;
    background: transparent;
  }
  .drawer-nav .drawer-nav__inner{
    max-width: 980px;
    margin: 0 auto;
  }
  .drawer-nav .btn-list01.-row01{
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0 90px;
  }
  .drawer-nav .btn-list01.-row01 .btn-list01__item:not(:first-child){
    margin-top: 0;
  }
  .drawer-nav .btn-list01.-row01 .btn-list01__item {
    margin-bottom: 20px;
  }

  #footer-area a:hover {
    text-decoration: underline;
  }

  .footer-sns-list {
    justify-content: space-between;
  }
}

@media (min-width: 64em) {
  .drawer--sidebar .drawer-hamburger {
    display: none;

    visibility: hidden;
  }

  .drawer--sidebar .drawer-nav {
    display: block;
    position: fixed;
    width: 12.5rem;
    height: 100%;

    -webkit-transform: none;
    transform: none;
  }

  .drawer--sidebar.drawer--left .drawer-nav {
    left: 0;
    border-right: 1px solid #ddd;
  }

  .drawer--sidebar.drawer--left .drawer-contents {
    margin-left: 12.5rem;
  }

  .drawer--sidebar.drawer--right .drawer-nav {
    right: 0;
    border-left: 1px solid #ddd;
  }

  .drawer--sidebar.drawer--right .drawer-contents {
    margin-right: 12.5rem;
  }

  .drawer--sidebar .drawer-container {
    max-width: 48rem;
  }
}

/*New CSS*/
.plus_btn_white {
  background-color: #fff !important;
}

.title02 {
  padding: 10px 36px 8px 10px;
  color: #2d2d2d;
  border-top: 2px solid #2d2d2d;
}

.btn02 .wrap,
.btn02 button,
.btn02 a {
  background: #2d2d2d;
  color: #fff;
}

.boxStep .boxStepContent {
  border-top: 1px solid #aeaeae !important;
}

.shoplist01.bpp-shoplist01 .point,
.shoplist01.bpp-shoplist01 .desc {
  color: #2d2d2d;
}

ul#ln li a {
  color: #fff;
  background: #2d2d2d;
  border-top: 1px solid #2d2d2d;
  border-bottom: 1px solid #2d2d2d;
  border-left: 1px solid #2d2d2d;
}

.btn02.right a::after, .btn02.right button:after,
.btn02.right a:after, .btnBlock .moreLink a span::after,
.btnBlock .moreLink span:after, .btn02.left a::after,
.btn02.left button:after, .btn02.left a:after {
  background: url(/shared/assets/img/icon_btn_important.png) -2px 1px no-repeat;
  background-size: 14px;
  -webkit-background-size: 14px;
  right: 10px;
}

.btn02.right.buttonBlank button:after {
  width: 18px;
  height: 18px;
  background-image: url(/beautykey/sp/shared/img/ico79.png);
  background-size: 18px 15px;
  -webkit-background-size: 18px 15px;
}

.feature_font #header-area .header-nav .header_nav__link-inner,
.feature_font #header-area .header-menu__btn,
.feature_font .footer-nav__list.-sub .footer-nav__item {
  font-size: 1.3rem;
}

.feature_font #footer-area .footer-share {
  font-size: 1.6rem;
}

.feature_font .footer-nav__item {
  font-size: 1.5rem;
}

.feature_font .footer-info__inner .list-line01__item {
  font-size: 1.2rem;
}

.feature_font #footer-area .footer-copy>* {
  font-size: 1.0rem;
}

@media screen and (min-width: 600px) and (max-width: 959px) {

  .feature_font #header-area .header-nav .header_nav__link-inner,
  .feature_font #header-area .header-menu__btn {
    font-size: 1.0rem;
  }
}

@media screen and (max-width: 599px) {

  .feature_font #header-area .header-nav .header_nav__link-inner,
  .feature_font #header-area .header-menu__btn {
    font-size: 1.0rem;
  }
}

.feature_font .ln_img_link {
  border-right: 2px solid #2d2d2d;
}

/* /sp/navi/skinvisiom/ CUSTOM */
#skinvisiom .section01 .text,
#skinvisiom .mv02 .text02,
#skinvisiom .section05 .text,
#skinvisiom ul.text_box,
#skinvisiom .section02 h4,
#skinvisiom .section03 h4,
#slide01 .text,
#slide02 .text,
#slide03 .text,
#skinvisiom .mv03 .text02 {
  font-size: 1.0rem;
}

#skinvisiom .mv02 .text,
#skinvisiom .mv03 .text,
#skinvisiom .section05 .text02 {
  font-size: 0.875rem;
}

#skinvisiom .mv02 .text {
  box-sizing: border-box;
}

#skinvisiom #search_hss .title02 {
  background-color: #c80421 !important;
}

.btn02.anchor a:after,
.btn02.anchor button:after {
  background-image: url(/beautykey/sp/shared/img/ico23.png);
}

.serviceFlow .flowBox:after {
  background-image: url(/beautykey/sp/shared/img/ico74.png);
}

.serviceFlow .flowBox:nth-child(1) .num {
  background-image: url(/beautykey/sp/shared/img/ico36_01.png);
}

.serviceFlow .flowBox:nth-child(2) .num {
  background-image: url(/beautykey/sp/shared/img/ico36_02.png);
}

.serviceFlow .flowBox:nth-child(3) .num {
  background-image: url(/beautykey/sp/shared/img/ico36_03.png);
}

.serviceFlow .flowBox:nth-child(4) .num {
  background-image: url(/beautykey/sp/shared/img/ico36_04.png);
}

.serviceFlow .flowBox:nth-child(5) .num {
  background-image: url(/beautykey/sp/shared/img/ico36_05.png);
}

.serviceFlow .flowBox:nth-child(6) .num {
  background-image: url(/beautykey/sp/shared/img/ico36_06.png);
}

.serviceFlow .flowBox:nth-child(7) .num {
  background-image: url(/beautykey/sp/shared/img/ico36_07.png);
}

.serviceFlow .flowBox:nth-child(8) .num {
  background-image: url(/beautykey/sp/shared/img/ico36_08.png);
}

.serviceFlow .flowBox:nth-child(9) .num {
  background-image: url(/beautykey/sp/shared/img/ico36_09.png);
}

.serviceFlow .flowBox:nth-child(10) .num {
  background-image: url(/beautykey/sp/shared/img/ico36_10.png);
}

.serviceFlow .flowBox:nth-child(11) .num {
  background-image: url(/beautykey/sp/shared/img/ico36_11.png);
}

.serviceFlow .flowBox:nth-child(12) .num {
  background-image: url(/beautykey/sp/shared/img/ico36_12.png);
}

.serviceFlow .flowBox:nth-child(13) .num {
  background-image: url(/beautykey/sp/shared/img/ico36_13.png);
}

.serviceFlow .flowBox:nth-child(14) .num {
  background-image: url(/beautykey/sp/shared/img/ico36_14.png);
}

.serviceFlow .flowBox:nth-child(15) .num {
  background-image: url(/beautykey/sp/shared/img/ico36_15.png);
}

/* /sp/navi/shopbrand/ CUSTOM */
.shopchange .container dd.ctn a,
.shopchange .container dd.ctn a:hover {
  color: #2d2d2d;
}

/* /sp/navi/merit/ CUSTOM */
#T_navi_0032 #contents div.block01 li {
  border: 0;
}

#T_navi_0032 #contents div.block01 li a {
  background-color: #2d2d2d;
  background-image: url(/beautykey/sp/shared/img/ico23.png);
  color: #fff;
  text-shadow: none;
}

#T_navi_0032 #contents .block02 .accordion01 dt {
  background-color: #f5f5f5;
}

#T_navi_0032 #contents .block02 .accordion01 .wrap {
  background: none;
}

#T_navi_0032 #contents .block02 .accordion01 dt:after {
  background-image: url(/beautykey/sp/shared/img/ico22_bottom.png);
}

#T_navi_0032 #contents .block02 .accordion01 dt.active:after {
  background-image: url(/beautykey/sp/shared/img/ico22_top.png);
}

#T_navi_0032 #contents .block02 .accordion01 .frame01 dt.icon01 {
  background-image: url(/beautykey/sp/shared/img/ico21.png);
}

#T_navi_0032 #contents .block02 .accordion01 .btn02.pc button:after {
  background-image: url(/beautykey/sp/shared/img/ico09.png);
}

#T_navi_0032 #contents .btn01.member button {
  background: url(/beautykey/sp/shared/img/ico28.png) 9px center no-repeat, -webkit-gradient(linear, left top, left bottom, from(#2d2d2d), to(#2d2d2d));
  background-color: #2d2d2d;
  background-image: none;
  background-size: 18px 18px, auto auto;

  -webkit-background-size: 18px 18px, auto auto;
}

#T_navi_0032 #contents .btn01.mypage button {
  background: url(/beautykey/sp/shared/img/ico28.png) 9px center no-repeat, -webkit-gradient(linear, left top, left bottom, from(#2d2d2d), to(#2d2d2d));
  background-color: #2d2d2d;
  background-image: none;
  background-size: 18px 18px, auto auto;

  -webkit-background-size: 18px 18px, auto auto;
}

#T_navi_0032 #contents .block02 .link03 a {
  color: #2d2d2d;
}

.drawer.drawer--top #contents {
  background: none;
}

.result_item-ttl {
  margin: 0 auto 14px;
}

.result_item-box.box02.black_icon {
  background-image: url('/shared/assets/img/icon_btn_arrow_black.png');
  background-position: calc(100% - 6px) 100%;
  background-repeat: no-repeat;
  background-size: 12px;
}

/* ページャー
---------------------------------------------------------- */
.pagination-pager ul.pagination-pager_list {
  float: right;
  margin: 0px;
  text-align: right;
}

.pagination-pager ul.pagination-pager_list li {
  margin-left: 2px;
  font-size: 12px;
}

.pagination-pager ul.pagination-pager_list li+li {
  padding-left: 5px;
  border-left: 1px solid #999999;
}

.pagination-pager ul.pagination-pager_list li a {
  display: inline-block;
  width: auto;
  height: auto;
  min-width: 10px;
  padding: 2px 5px;
  font-weight: normal;
  text-align: center;
  line-height: 100%;
  vertical-align: inherit;
  text-decoration: underline !important;
  border: none;
}

.pagination-pager ul.pagination-pager_list li.active a {
  background-color: #2d2d2d;
  background-image: none;
  border-radius: 4px;
  text-decoration: none !important;
}

.pagination-pager ul.pagination-pager_list a:hover {
  color: #333333;
  background: #f8e5ea;
  border-radius: 3px;
}

.pagination-pager ul.pagination-pager_list li.active a:hover {
  color: #fff;
}

/* 商品カタログ配下 */

.userReview .reviewAll .reviewAllPoint {
  display: flex;
  width: 100%;
}

.userReview .reviewAll .total {
  padding: 25px;
}

* {
  font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'メイリオ', Meiryo, sans-serif;
}

.title01.catalog {
  background: none
}

#contents .block01 section.color01 {
  background: #f0f0f0;
}

#slideShow #slideImage {
  z-index: 1;
}

.title01.search {
  background: #fff;
  background-color: #fff;
}
.catalog_brandlist_btn08 li.active div {
  background: -webkit-gradient(linear, 0 0, 0 7, from(#878787), to(#999999));
}
.catalog_brandlist_btn08 li.active .wrap {
  text-shadow: 0 1px 1px #666;
}

#aGyou.catalog_brandlist_block02, #kaGyou.catalog_brandlist_block02, #saGyou.catalog_brandlist_block02, #taGyou.catalog_brandlist_block02, #naGyou.catalog_brandlist_block02, #haGyou.catalog_brandlist_block02, #maGyou.catalog_brandlist_block02, #yaGyou.catalog_brandlist_block02 {
  border-bottom: 2px solid #2d2d2d;
}

#catalog_brandlist {
  border-bottom: 2px solid #2d2d2d;
}

#aGyou.catalog_brandlist_block02, #kaGyou.catalog_brandlist_block02, #saGyou.catalog_brandlist_block02, #taGyou.catalog_brandlist_block02, #naGyou.catalog_brandlist_block02, #haGyou.catalog_brandlist_block02, #maGyou.catalog_brandlist_block02, #yaGyou.catalog_brandlist_block02 {
  border-bottom: 2px solid #2d2d2d;
}

#catalog_brandlist {
  border-bottom: 2px solid #2d2d2d;
}

#maGyou .skinCare_brand_list li>a #maGyou .skinCare_brand_list li>a #maGyou .skinCare_brand_list li>a #maGyou .skinCare_brand_list li>a #maGyou .skinCare_brand_list li>a #maGyou .skinCare_brand_list li>a #maGyou .skinCare_brand_list li>a #maGyou .skinCare_brand_list li>a {
  text-decoration: underline;
}


.msg01 {
  background: #fff;
  margin: 0;
}

.msg01 p {
  color: #c81622;
  background: url(/beautykey/shared/img/icon_attention_01.svg) 0 0 no-repeat;
}

.accordion02 dt.active:after {
  background: url(/beautykey/sp/shared/img/ico22_top.png);
}

.accordion02 dd a:after {
  background: url("/navi/img/icon_btn_arrow.png") no-repeat 97.43% center;
  background-size: 12px 13px;
  -webkit-background-size: 12px 13px;
}

.accordion02 dt:after {
  background-image: url(/beautykey/sp/shared/img/ico22_bottom.png);
}

#footer-area .footer-copy {
  margin: 0;
}

.title02.image .label {
  color: #2d2d2d;
}

.title02 {
  text-shadow: none;
}

.title02.image:after {
  width: 10px;
  background: url(/navi/img/icon_btn_arrow.png) 0 0 no-repeat;
  background-size: 12px 13px;
  -webkit-background-size: 12px 13px;
}

.title02.image {
  background: #fff;
}

.product01 a.header:after {
  width: 10px;
  background: url(/navi/img/icon_btn_arrow.png) 0 0 no-repeat;
  background-size: 12px 13px;
  -webkit-background-size: 12px 13px;
}

.title05 {
  padding: 10px;
  font-size: 133.3%;
  color: #fff;
  text-shadow: none;
  background: #848484;
}

#contents .block04 {
  background: #efefef;
}

.product01 .category {
  background: #848484;
}

.anchor01 li a {
  background: url(/beautykey/sp/shared/img/ico23.png) 8px 13px / 13px 11px no-repeat;
  background-color: #2d2d2d;
  color: #fff;
  text-shadow: none;
}

.anchor01 li {
  border: none;
  margin-top: 10px;
  background: none;
  padding: 0;
}

.anchor01 li:nth-of-type(1) {
  border-radius: 4px;
  -webkit-border-top-left-radius: 4px;
  -webkit-border-top-right-radius: 4px;
}

.anchor01 li:nth-of-type(1) a {
  border-radius: 4px;
  -webkit-border-top-left-radius: 4px;
  -webkit-border-top-right-radius: 4px;
}

.anchor01 li:nth-last-of-type(1) a {
  border-radius: 4px;
  -webkit-border-top-left-radius: 4px;
  -webkit-border-top-right-radius: 4px;
}

.product01 .category02 {
  background: #838383;
}

.omise .btn17 a {
  color: #fff;
}

.accordion .title02:after {
  background: url(/beautykey/sp/shared/img/ico22_bottom.png) 0 0 no-repeat;
  background-size: 20px 20px;
  -webkit-background-size: 20px 20px;
}

.accordion .title02.active:after {
  background: url(/beautykey/sp/shared/img/ico22_top.png) 0 0 no-repeat;
  background-size: 20px 20px;
  -webkit-background-size: 20px 20px;
}

.reviewAll {
  background-color: #fff;
}

.reviewAll .total em {
  font-style: normal;
  color: #2d2d2d;
  font-weight: bold;
  font-size: 110%;
}

.bnrArea13 .noTBMargin.mt10 {
  padding-top: 20px;
}

.reviewList h3 {
  border-top: 1px solid #aeaeae;
  border-bottom: 1px solid #efefef;
  background-color: #fff;
}

.reviewList .reviewTtl {
  color: #2d2d2d;
}

.reviewList a.header:after {
  background: url(/navi/img/icon_btn_arrow.png) 0 0 no-repeat;
  background-size: 10px 11px;
  -webkit-background-size: 10px 11px;
}

#contents .block02.accordion .inner {
  padding-bottom: 10px;
}

.accordion02 dt:after {
  background: url(/beautykey/sp/shared/img/ico22_bottom.png) 0 0 no-repeat;
  background-size: 20px 20px;
  -webkit-background-size: 20px 20px;
}

.accordion02 dt.active:after {
  background: url(/beautykey/sp/shared/img/ico22_top.png) 0 0 no-repeat;
  background-size: 20px 20px;
  -webkit-background-size: 20px 20px;
}

.typeList01 .wrap .unit.active {
  border: 2px solid #848484;
  max-width: 88px;
}

.narrowDown01 .result span, .narrowDownArea .result span {
  color: #2d2d2d;
}

.narrowDown01 {
  background: #ededed;
}

.point00 {
  background: url(/beautykey/sp/shared/img/img_point00.png) no-repeat left;
}

.point00_b {
  background: url(/beautykey/sp/shared/img/img_point00_b.png) no-repeat left;
}

.point05_b {
  background: url(/beautykey/sp/shared/img/img_point05_b.png) no-repeat left;
}

.point10 {
  background: url(/beautykey/sp/shared/img/img_point10.png) no-repeat left;
}

.point10_b {
  background: url(/beautykey/sp/shared/img/img_point10_b.png) no-repeat left;
}

.point15_b {
  background: url(/beautykey/sp/shared/img/img_point15_b.png) no-repeat left;
}

.point20 {
  background: url(/beautykey/sp/shared/img/img_point20.png) no-repeat left;
}

.point20_b {
  background: url(/beautykey/sp/shared/img/img_point20_b.png) no-repeat left;
}

.point25_b {
  background: url(/beautykey/sp/shared/img/img_point25_b.png) no-repeat left;
}

.point30 {
  background: url(/beautykey/sp/shared/img/img_point30.png) no-repeat left;
}

.point30_b {
  background: url(/beautykey/sp/shared/img/img_point30_b.png) no-repeat left;
}

.point35_b {
  background: url(/beautykey/sp/shared/img/img_point35_b.png) no-repeat left;
}

.point40 {
  background: url(/beautykey/sp/shared/img/img_point40.png) no-repeat left;
}

.point40_b {
  background: url(/beautykey/sp/shared/img/img_point40_b.png) no-repeat left;
}

.point45_b {
  background: url(/beautykey/sp/shared/img/img_point45_b.png) no-repeat left;
}

.point50 {
  background: url(/beautykey/sp/shared/img/img_point50.png) no-repeat left;
}

.point50_b {
  background: url(/beautykey/sp/shared/img/img_point50_b.png) no-repeat left;
}

.category_search_area .accordion05 .search .search_btn:focus-visible {
  outline-color: #2d2d2d;
}

#messageArea div.errorArea.roundPink {
  margin: 20px !important;
  border: none !important;
  background: #fff !important;
  color: #c81622 !important;
  padding: 0px 10px 10px 10px;
}
ul.default li:before {
  content: "・";
}

/* Hamburger menu Setting
---------------------------------------------*/
.hMenu-open{
  overflow: hidden !important;
}
.hMenu-open .hMenu-nav {
  top: 0;
}
.hMenu-nav {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  max-height: 100%;
  transition: top .6s cubic-bezier(.19, 1, .22, 1);
  overflow: hidden;
  background-color: rgba(255, 255, 255, .95);
  color: #222;
  z-index: 99;
}
.hMenu-nav__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 63px;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, .1);
  transition-timing-function: cubic-bezier(0.1, 0.57, 0.1, 1);
  transition-duration: 0ms;
  transform: translate(0px, 0px) translateZ(0px);
}
.hMenu-btn {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translate(0, -50%);
}
.hMenu-nav__inner {
  height: calc(100vh - 60px);
  padding: 0 20px 120px;
  overflow-y: auto;
}
.hMenu-nav__item {
  border-bottom: 1px solid #ededed;
}
.hMenu-nav a {
  text-decoration: none;
}
.hMenu-nav__link > * {
  color: #2d2d2d;
}
.hMenu-nav__link {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 55px;
  padding: 5px 20px 5px 0;
}
.hMenu-nav__link::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  height: 17px;
  background: url(/beautykey/shared/img/icon_arrow_01.svg) 0 0 / cover no-repeat;
  transform: translate(0, -50%);
}
#catalog-search #zeta [status="all"].parent-cb::after,
#catalog-search #zeta [status="all"].parent-cb::after, 
#catalog-search #zeta .index ~ div input:checked+.view-cb::after, 
#catalog-search #zeta .index input:checked+.view-cb::after, 
#catalog-search #zeta .index input:checked+.view-cb::after {
  background-color: #2d2d2d;
}
#catalog-search #zeta #zs_search.btn {
  background-color: #2d2d2d;
  border-radius: 4px !important;
}
@media (max-width: 599px) {
  #catalog-search .wp_filter-wrap select{
    color: #2d2d2d;
    background: url(/beautykey/shared/assets/img/drupal/icon_select_arrow.png) no-repeat center right 14px;
    background-color: #fff;
  }
  #catalog-search .wp_filter-wrap button { 
    color: #2d2d2d;
    background: #fff url(/beautykey/shared/assets/img/drupal/icon_refine.png) no-repeat center left 10px; 
    background-size: 18px 19px;
  }
}
#catalog-search .wp_result-wrap .wp_result-inner .defaultHead {
  background-color: #2d2d2d;
}
  
#catalog-search .parts_btn{
  color: #fff !important;
  border-radius: 4px;
}
#catalog-search .contentsBox .pagination-pager ul.pagination-pager_list a:hover {
  background: #efefef;
  }
#catalog-search .contentsBox .pagination-pager ul.pagination-pager_list {float: none;
  margin: 0;
  text-align: center;
}

#catalog-search .contentsBox .pagination-pager ul.pagination-pager_list li{
  margin-left: 1px;
  font-size: 14px;
}

#catalog-search .contentsBox .pagination-pager ul.pagination-pager_list li a {
  min-width: 18px;line-height: 32px;
}

#catalog-search #contents .contentsBox .pagination-pager ul.pagination-pager_list a:hover{
  background: #efefef;
}

#catalog-search .avail-new {
  background: #2d2d2d;
}
#catalog-search .sections.section-wp_result .no_result {
  font-size: 14px;
  font-weight: bold;
  color: #c81622;
  background-color: #fff;
  border: 1px solid #c81622;
  border-radius: 4px;
  padding: 40px 4%;
  margin: 10px auto 30px;
  }
#catalog-search .avail-limited {
    border: 1px solid #2d2d2d;
    color: #2d2d2d;
}
#catalog-search .parts_btn {
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'メイリオ', Meiryo, sans-serif;
}