@charset "UTF-8";
/* ===============================================================

 layout

=============================================================== */
/*======= html, body =======*/
html, body {
  color: #000;
}

/*======= トグルボタン =======*/
.p-toggleitem {
  cursor: pointer;
}

.p-toggleitem__label {
  cursor: pointer;
}

.p-toggleitem__label .c-text {
  width: 100%;
}

.p-toggleitem__label.-true {
  pointer-events: inherit;
  -webkit-user-select: inherit;
     -moz-user-select: inherit;
      -ms-user-select: inherit;
          user-select: inherit;
}

.p-toggleitem__label.-true:after {
  opacity: 0;
}

.p-toggleitem__label.-false {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.p-toggleitem__label.-false:after {
  opacity: 1;
}

.p-toggleitem__label.-toggle {
  position: relative;
  display: block;
  width: 100%;
  padding-right: 40px;
  cursor: pointer;
}

.p-toggleitem__label.-toggle:before, .p-toggleitem__label.-toggle:after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: '';
  display: block;
  cursor: pointer;
  -webkit-transition: 0.175s;
  transition: 0.175s;
}

.p-toggleitem__label.-toggle:before {
  right: 0;
  width: 33px;
  height: 20px;
  border-radius: 10px;
  background: #b5b5b5;
}

.p-toggleitem__label.-toggle:after {
  right: 0;
  -webkit-transform: translate(-14px, -50%);
          transform: translate(-14px, -50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
}

input:checked + .p-toggleitem .p-toggleitem__label.-true {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

input:checked + .p-toggleitem .p-toggleitem__label.-true:after {
  opacity: 1;
}

input:checked + .p-toggleitem .p-toggleitem__label.-false {
  pointer-events: inherit;
  -webkit-user-select: inherit;
     -moz-user-select: inherit;
      -ms-user-select: inherit;
          user-select: inherit;
}

input:checked + .p-toggleitem .p-toggleitem__label.-false:after {
  opacity: 0;
}

input:checked + .p-toggleitem .p-toggleitem__label.-toggle:before {
  background: #a83c38;
}

input:checked + .p-toggleitem .p-toggleitem__label.-toggle:after {
  -webkit-transform: translate(-1px, -50%);
          transform: translate(-1px, -50%);
}

/*======= レンジブロック =======*/
.p-rangeslider__input {
  position: relative;
  width: calc((100% - 30px) / 2);
  padding-right: 1.2em;
}

.p-rangeslider__inputwrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}

.p-rangeslider__input:before {
  position: absolute;
  right: 0;
  bottom: 0;
  content: '円';
  color: #b5b5b5;
  font-size: 13px;
  font-weight: bold;
}

.p-rangeslider__input--space {
  display: block;
  width: 30px;
  text-align: center;
}

.p-rangeslider__input .c-input {
  width: 100%;
  padding: 8px 10px;
  font-size: 14px;
}

.p-rangeslider__body {
  position: relative;
  width: 95%;
  height: 3px;
  margin-left: 4px;
  border: none;
  margin: 10px auto;
  background: #b5b5b5;
}

.p-rangeslider__body .noUi-handle {
  width: 20px;
  height: 20px;
  border: 2px solid #b5b5b5;
  border-radius: 50%;
  background: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.p-rangeslider__body .noUi-handle:before, .p-rangeslider__body .noUi-handle:after {
  content: none;
}

.p-rangeslider__body .noUi-origin {
  top: -3px;
}

.p-rangeslider__body .noUi-handle {
  right: -10px !important;
}

.p-rangeslider__body .noUi-connect {
  background: #a83c38;
}

.formError .formErrorContent {
  background-color: #B70000;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.formError .formErrorArrow div {
  display: none;
}

.formError .formErrorArrow:before {
  position: absolute;
  top: 100%;
  content: '';
  border-style: solid;
  border-width: 8px 8px 0 8px;
  border-color: #B70000 transparent transparent transparent;
}

/*======= ブランド一覧用のモーダル =======*/
@-webkit-keyframes anim__tab-fadeIn {
  0% {
    display: block;
    visibility: visible;
    opacity: 0;
  }
  10% {
    display: block;
    visibility: visible;
    opacity: 0;
  }
  100% {
    display: block;
    visibility: visible;
    opacity: 1;
  }
}
@keyframes anim__tab-fadeIn {
  0% {
    display: block;
    visibility: visible;
    opacity: 0;
  }
  10% {
    display: block;
    visibility: visible;
    opacity: 0;
  }
  100% {
    display: block;
    visibility: visible;
    opacity: 1;
  }
}

.p-brandlistmodal {
  position: relative;
  width: 100%;
  padding: 20px;
}

.p-brandlistmodal__closebtn {
  position: absolute;
  top: 10px;
  right: 10px;
  display: block;
  width: 36px;
  height: 36px;
  margin: 0 0 0 auto;
}

.p-brandlistmodal__closebtn .c-icon {
  cursor: pointer;
}

.p-brandlistmodal__closebtn .c-icon img {
  cursor: pointer;
}

.p-brandlistmodal__block {
  display: block;
  width: 100%;
  margin-top: 30px;
}

.p-brandlistmodal__block:first-child {
  margin-top: 0;
}

.p-brandlistmodal__keyword {
  position: relative;
  width: 100%;
}

.p-brandlistmodal__keyword__input {
  width: 100%;
  height: 36px;
  padding: 2px 60px 0 10px;
  font-size: 12px;
  line-height: 36px;
}

.p-brandlistmodal__keyword__clear {
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
  width: 36px;
  height: 36px;
  cursor: pointer;
}

.p-brandlistmodal__keyword__clear .c-icon {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.p-brandlistmodal__keyword__clear .c-icon img {
  width: 24px;
}

.p-brandlistmodal__keyword__submit {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
  width: 36px;
  height: 36px;
  cursor: pointer;
}

.p-brandlistmodal__keyword__submit .c-icon {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.p-brandlistmodal__button {
  display: block;
  width: 100%;
}

.p-brandlistmodal__button .c-button--slim {
  border-width: 2px;
  margin: 0 auto;
}

.p-brandlistmodal__initial__head {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  overflow: hidden;
}

.p-brandlistmodal__initial__head .-tabbtn {
  position: relative;
  display: block;
  width: 160px;
  height: 36px;
  padding: 2px 30px 0 10px;
  border: 1px solid #dedede;
  border-radius: 6px 6px 0 0;
  line-height: 36px;
  text-align: left;
  overflow: hidden;
  -webkit-transition: 0.175s;
  transition: 0.175s;
}

.p-brandlistmodal__initial__head .-tabbtn:after {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #313131;
  border-right: 1px solid #313131;
}

.p-brandlistmodal__initial__head .-tabbtn span {
  position: relative;
  font-size: 14px;
}

.p-brandlistmodal__initial__head .-tabbtn:nth-child(n+2) {
  margin-left: -1px;
}

.p-brandlistmodal__initial__head .-tabbtn.-current {
  border-bottom: 1px solid #fff;
}

.p-brandlistmodal__initial__head .-tabbtn.-current:after {
  top: calc(50% - 2px);
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
}

.p-brandlistmodal__initial__body {
  display: block;
  width: 100%;
  padding: 8px;
  border: 1px solid #dedede;
  margin-top: -1px;
  overflow: hidden;
}

.p-brandlistmodal__initial__body .-tabcont {
  display: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: calc(100% + 10px);
  margin: -10px 0 0 -10px;
  opacity: 0;
  visibility: hidden;
}

.p-brandlistmodal__initial__body .-tabcont.-current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  visibility: visible;
  -webkit-animation: anim__tab-fadeIn 0.35s;
          animation: anim__tab-fadeIn 0.35s;
}

.p-brandlistmodal__initial__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  padding-top: 4px;
  border: 1px solid #dedede;
  border-radius: 6px;
  margin-top: 10px;
  margin-left: 10px;
  font-size: 17px;
  text-align: center;
  white-space: nowrap;
  letter-spacing: -1px;
  text-indent: -1px;
  -webkit-transition: 0.175s;
  transition: 0.175s;
  cursor: pointer;
}

.p-brandlistmodal__initial__btn.-large {
  width: 110px;
}

.p-brandlistmodal__initial__btn span {
  position: relative;
}

.p-brandlistmodal__initial__btn.-current,
input:checked + .p-brandlistmodal__initial__btn {
  background: #f2f2f2;
}

.p-brandlistmodal__result {
  height: 240px;
  border: 1px solid #dedede;
  overflow: hidden;
}

.p-brandlistmodal__result .c-title__sub {
  padding: 0;
  margin-bottom: 10px;
}

.p-brandlistmodal__result .c-scrollbox__inner {
  padding-right: 0;
}

.p-brandlistmodal__result .c-scrollbox__inner.ps-container {
  padding-right: 16px;
}

.p-brandlistmodal__result .c-scrollbox__content {
  padding: 20px;
}

.p-brandlistmodal__resultitem__noitem {
  padding: 10px 0;
}

.p-brandlistmodal__resultitem__noitem .c-text {
  text-align: center;
}

.p-brandlistmodal__result .c-checkbox__label {
  font-size: 14px;
}

.p-brandlistmodal__submit {
  font-size: 0;
  line-height: 0;
  text-align: center;
}

.p-brandlistmodal__submit .c-button--mini:nth-child(2) {
  margin-left: 10px;
}

/*======= ブランド一覧用のモーダル中身 =======*/
@-webkit-keyframes anim__fadeOut {
  0% {
    display: block;
    visibility: visible;
    opacity: 1;
  }
  70% {
    display: block;
    visibility: visible;
    opacity: 0;
  }
  100% {
    display: none;
    visibility: hidden;
    opacity: 0;
  }
}
@keyframes anim__fadeOut {
  0% {
    display: block;
    visibility: visible;
    opacity: 1;
  }
  70% {
    display: block;
    visibility: visible;
    opacity: 0;
  }
  100% {
    display: none;
    visibility: hidden;
    opacity: 0;
  }
}

.p-searchnav {
  z-index: 4;
}

.p-searchnavhead, .p-searchnavfoot {
  position: absolute;
  width: 100%;
  z-index: 14;
}

.p-searchnavhead {
  top: 0;
  right: 0;
  background: #f2ebeb;
  height: 40px;
  padding: 10px 90px;
}

.p-searchnavhead__title {
  display: block;
  width: 100%;
  font-size: 16px;
  line-height: 1.3em;
  font-weight: bold;
  text-align: center;
  letter-spacing: -1px;
  text-indent: -1px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.p-searchnavhead__back {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 90px;
  padding-left: 24px;
  text-align: left;
}

.p-searchnavhead__back:before {
  position: absolute;
  top: 50%;
  left: 12px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #313131;
  border-left: 1px solid #313131;
}

.p-searchnavhead__back span {
  position: relative;
  letter-spacing: -2px;
  text-indent: -2px;
  text-decoration: underline;
}

.p-searchnavfoot {
  bottom: 0;
  height: 60px;
  background: #fff;
  padding: 10px;
  font-size: 0;
  line-height: 0;
  text-align: center;
  -webkit-box-shadow: 3px 0 10px rgba(49, 49, 49, 0.16);
          box-shadow: 3px 0 10px rgba(49, 49, 49, 0.16);
}

.p-searchnavfoot .c-button--mini:nth-child(2) {
  margin-left: 10px;
}

.p-searchnav--openbtn {
  position: fixed;
  bottom: 20px;
  right: 10px;
  display: block;
  width: 62px;
  height: 62px;
  z-index: 6;
}

.p-searchnav--openbtn__body {
  display: block;
  width: 100%;
  height: 100%;
}

.p-searchnav--openbtn__body span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  -webkit-box-shadow: 0 3px 6px rgba(49, 49, 49, 0.16);
          box-shadow: 0 3px 6px rgba(49, 49, 49, 0.16);
}

.p-searchnav--openbtn__body span img {
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  width: 100%;
  height: auto;
}

.p-searchnav__block {
  display: block;
  width: 100%;
  margin-bottom: 30px;
}

.p-searchnav__block:last-child {
  margin-bottom: 0;
}

.p-searchnav__block__title {
  padding: 10px 40px 10px 20px;
  background: #f2ebeb;
  font-weight: bold;
  letter-spacing: -1px;
}

.p-searchnav__block__item {
  display: block;
  width: 100%;
  border-bottom: 1px solid #ededed;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

.p-searchnav__block__item .p-searchnavfoot {
  position: absolute;
}

.p-searchnav__block__item .c-tagblock.-selectlist {
  padding: 4px 7px 10px;
}

.p-searchnav__block__item .c-tagblock.-selectlist .c-tag.-close {
  position: relative;
  max-width: 100%;
  height: auto;
  padding: 7px 26px 7px 10px;
  font-size: 13px;
  line-height: 1.3em;
  text-align: left;
  white-space: normal;
  -webkit-transition: 0.175s;
  transition: 0.175s;
}

.p-searchnav__block__item .c-tagblock.-selectlist .c-tag.-close:before, .p-searchnav__block__item .c-tagblock.-selectlist .c-tag.-close:after {
  position: absolute;
  top: 50%;
  right: 14px;
  content: '';
  display: block;
  width: 2px;
  height: 14px;
  background: #ededed;
}

.p-searchnav__block__item .c-tagblock.-selectlist .c-tag.-close:before {
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.p-searchnav__block__item .c-tagblock.-selectlist .c-tag.-close:after {
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
}

.p-searchnav__block__item.-noborder {
  border-bottom: none;
}

/* PC時上部に表示されるカテゴリ */
.p-searchnavcategory .p-searchnavcategory__list__item {
  position: relative;
  cursor: pointer;
}

.p-searchnavcategory .p-searchnavcategory__list__item .c-text {
  padding: 12px 10px 8px;
  margin-bottom: 0;
  font-size: 14px;
  -webkit-transition: 0.35s;
  transition: 0.35s;
  cursor: pointer;
}

.p-searchnavcategory .p-searchnavcategory__list__item:hover .c-text {
  background: #f2f2f2;
}

.p-searchnavcategory .p-searchnavcategory__list__item:hover.-link .c-text {
  background: transparent;
}

.p-searchnavcategory .p-searchnavcategory__list__item:hover .p-searchnavcategory__hoverblock {
  opacity: 1;
  visibility: visible;
  -webkit-user-select: inherit;
     -moz-user-select: inherit;
      -ms-user-select: inherit;
          user-select: inherit;
  pointer-events: inherit;
}

.p-searchnavcategory .p-searchnavcategory__hoverblock {
  position: absolute;
  top: 0;
  left: 100%;
  width: 300px;
  padding: 20px;
  border-radius: 5px;
  background: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(49, 49, 49, 0.16);
          box-shadow: 0 3px 6px rgba(49, 49, 49, 0.16);
  opacity: 0;
  visibility: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  z-index: 5;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

.p-searchnavcategory .p-searchnavcategory__hoverblock__item {
  margin-bottom: 20px;
}

.p-searchnavcategory .p-searchnavcategory__hoverblock__item:last-child {
  margin-bottom: 0;
}

.p-searchnavcategory .p-searchnavcategory__morebtn {
  padding: 12px 10px 8px 40px;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

.p-searchnavcategory .p-searchnavcategory__morebtn .c-icon__more {
  right: auto;
  left: 10px;
}

.p-searchnavcategory .p-searchnavcategory__morebtn .c-link {
  font-size: 14px;
  line-height: 1.3em;
  opacity: 1;
}

.p-searchnavcategory .p-searchnavcategory__morebtn:hover {
  background: #f2f2f2;
}

/*======= モーダル =======*/
.p-searchnavmodal {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  background: #fff;
  -webkit-transition: 0.35s;
  transition: 0.35s;
  z-index: 15;
}

.p-searchnavmodal .p-searchnavmodal {
  position: absolute;
  z-index: 16;
}

.p-searchnavmodal .p-searchnavmodal .p-searchnavmodal {
  position: absolute;
  z-index: 17;
}

.p-searchnavmodal .p-searchnavhead {
  position: absolute;
  padding-right: 55px;
  padding-left: 55px;
}

.p-searchnavmodal .p-searchnavhead__back {
  width: 55px;
}

.p-searchnavmodal__content .c-checkbox__label {
  width: 100%;
}

.p-searchnavmodal__content .c-checkbox__label .c-icon {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

.p-searchnavmodal__content .c-checkbox__label .c-icon img {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

.p-searchnavmodal__content .c-checkbox__label > img {
  width: 42px;
}

.p-searchnavmodal__content .c-checkbox__label span {
  max-width: 100%;
}

.p-searchnavmodal__content .c-checkbox.-color .c-checkbox__label {
  padding-left: 0;
}

.p-searchnavmodal__content .c-checkbox.-color .c-checkbox__label:before, .p-searchnavmodal__content .c-checkbox.-color .c-checkbox__label:after {
  content: none;
}

.p-searchnavmodal__content .c-checkbox.-color .c-checkbox__label .c-icon {
  width: 24px;
  height: 24px;
}

.p-searchnavmodal__content .c-checkbox.-color .c-checkbox__label .c-icon:after {
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  content: '';
  display: block;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  border: 2px solid #6e6e6e;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

.p-searchnavmodal__content .c-checkbox.-color .c-checkbox__label .c-icon img {
  margin: 0;
}

.p-searchnavmodal__content .c-checkbox.-color .c-checkbox__label span {
  width: calc(100% - 24px);
  max-width: 100%;
  padding-left: 4px;
  font-size: 13px;
  margin-top: 4px;
  line-height: 1.3em;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.p-searchnavmodal__content .c-checkbox.-color .c-checkbox__label span span {
  display: inline;
  font-size: 10px;
}

.p-searchnavmodal__content .c-checkbox.-color.-big .c-checkbox__label {
  display: block;
}

.p-searchnavmodal__content .c-checkbox.-color.-big .c-checkbox__label .c-icon {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto;
}

.p-searchnavmodal__content .c-checkbox.-color.-big .c-checkbox__label .c-icon:after {
  border-width: 4px;
}

.p-searchnavmodal__content .c-checkbox.-color.-big .c-checkbox__label span {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  text-align: center;
}

.p-searchnavmodal__content .c-checkbox.-color.-big .c-checkbox__label span span {
  display: inline;
}

.p-searchnavmodal__content .c-checkbox.-color input:checked + .c-checkbox__label .c-icon:after {
  opacity: 1;
  visibility: visible;
}

.p-searchnavmodal__content .c-checkbox.-card .c-checkbox__label {
  padding-left: 30px;
  padding-right: 60px;
}

.p-searchnavmodal__content .c-checkbox.-card .c-checkbox__label > img {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

.p-searchnavmodal__content .c-checkbox.-card .c-checkbox__label .c-label {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 50px;
  padding-right: 0;
  padding-left: 0;
}

.p-searchnavmodal__content .c-checkbox.-review .c-checkbox__label .c-evaluation {
  width: calc(18px * 5 + 4px * 5);
}

.p-searchnavmodal__content .c-checkbox.-review .c-checkbox__label .c-evaluation svg {
  width: 18px;
  height: 18px;
}

.p-searchnavmodal__content .c-checkbox.-review .c-checkbox__label .c-text {
  width: calc(100% - 18px * 5 + 4px * 5);
  padding-left: 10px;
}

/*======= 検索関連用のアイテム元 =======*/
.p-searchnavitem {
  display: block;
  width: 100%;
  padding: 10px;
  text-align: left;
}

.p-searchnavitem.-button, .p-searchnavitem.-link {
  position: relative;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

.p-searchnavitem.-button:after, .p-searchnavitem.-link:after {
  position: absolute;
  top: 50%;
  right: 14px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #313131;
  border-right: 1px solid #313131;
  opacity: 0;
}

.p-searchnavitem.-button.-noarrow, .p-searchnavitem.-link.-noarrow {
  padding-right: 10px;
}

.p-searchnavitem.-button.-noarrow:after, .p-searchnavitem.-link.-noarrow:after {
  content: none;
}

.p-searchnavitem.-button.js-morebtn, .p-searchnavitem.-link.js-morebtn {
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
  margin-top: -1px;
}

.p-searchnavitem.-button .c-text, .p-searchnavitem.-link .c-text {
  position: relative;
  margin-bottom: 0;
}

.p-searchnavitem.-keyword {
  position: relative;
  padding: 0;
}

.p-searchnavitem.-keyword .-keyword__input {
  padding-right: 30px;
}

.p-searchnavitem.-keyword .-keyword__submit {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 40px;
}

.p-searchnavitem.-keyword .-keyword__submit .c-icon {
  cursor: pointer;
}

.p-searchnavitem.-colorselect .-colorselect__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}

.p-searchnavitem.-colorselect .-colorselect__block__item {
  width: 50%;
}

.p-searchnavitem__categoryblock {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-top: 1px solid #ededed;
  overflow: hidden;
}

.p-searchnavitem__categoryblock:after {
  position: absolute;
  bottom: 0;
  right: 0;
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: #dedede;
}

.p-searchnavitem__categoryblock .p-searchnavitem {
  width: 50%;
  border-bottom: 1px solid #ededed;
  border-right: 1px solid #ededed;
}

.p-searchnavitem__categoryblock .p-searchnavitem:nth-child(even) {
  border-right: none;
}

.p-sidenav {
  display: block;
  width: 100%;
  background: #fff;
  z-index: 14;
}

.p-sidenav__head {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 100%;
  background: #f2ebeb;
  height: 40px;
  padding: 10px 90px;
  z-index: 1;
}

.p-sidenav__head__title {
  display: block;
  width: 100%;
  font-size: 16px;
  line-height: 1.3em;
  font-weight: bold;
  text-align: center;
  letter-spacing: -1px;
  text-indent: -1px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.p-sidenav__head__button {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-sidenav__body {
  display: block;
  width: 100%;
}

.p-sidenavbtn--open {
  position: fixed;
  bottom: 20px;
  right: 10px;
  display: block;
  width: 62px;
  height: 62px;
  z-index: 6;
}

.p-sidenavbtn--open__body {
  display: block;
  width: 100%;
  height: 100%;
}

.p-sidenavbtn--open__body span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  -webkit-box-shadow: 0 3px 6px rgba(49, 49, 49, 0.16);
          box-shadow: 0 3px 6px rgba(49, 49, 49, 0.16);
}

.p-sidenavbtn--open__body span img {
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  width: 100%;
  height: auto;
}

.p-sidenavbtn--close {
  display: block;
  width: 90px;
  font-size: 14px;
}

.p-sidenavbtn--close span {
  position: relative;
  padding-left: 18px;
  letter-spacing: -2px;
  text-indent: -2px;
  text-decoration: underline;
}

.p-sidenavbtn--close span:after {
  position: absolute;
  top: 50%;
  left: 8px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #313131;
  border-left: 1px solid #313131;
}

.p-searchcatmodal {
  display: block;
  width: 100%;
  background: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(49, 49, 49, 0.16);
          box-shadow: 0 3px 6px rgba(49, 49, 49, 0.16);
  z-index: 15;
}

.p-searchcatmodal__head {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 100%;
  background: #f2ebeb;
  height: 40px;
  padding: 10px 50px;
  z-index: 1;
}

.p-searchcatmodal__head__title {
  display: block;
  width: 100%;
  font-size: 16px;
  line-height: 1.3em;
  font-weight: bold;
  text-align: center;
  letter-spacing: -1px;
  text-indent: -1px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.p-searchcatmodal__head__button {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-searchcatmodal__body {
  display: block;
  width: 100%;
}

.p-searchcatmodalbtn--close {
  display: block;
  width: 50px;
  font-size: 14px;
}

.p-searchcatmodalbtn--close span {
  position: relative;
  padding-left: 18px;
  letter-spacing: -2px;
  text-indent: -2px;
  text-decoration: underline;
}

.p-searchcatmodalbtn--close span:after {
  position: absolute;
  top: 50%;
  left: 8px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #313131;
  border-left: 1px solid #313131;
}

.p-searchcat {
  margin-bottom: 30px;
}

.p-searchcat:last-child {
  margin-bottom: 0;
}

.p-searchcat__title {
  padding: 10px 20px;
  background: #f2ebeb;
  font-weight: bold;
  letter-spacing: -1px;
}

.p-searchcatlist__box__item {
  display: block;
  width: 100%;
  border-bottom: 1px solid #ededed;
}

.p-searchcatlist__box__item a,
.p-searchcatlist__box__item button {
  position: relative;
  display: block;
  width: 100%;
  padding: 10px;
  line-height: 1.5em;
  text-align: left;
}

.p-searchcatlist__box__item a span,
.p-searchcatlist__box__item button span {
  position: relative;
}

.p-searchcatlist__box__item button {
  padding-right: 24px;
}

.p-searchcatlist__box__item button:after {
  position: absolute;
  top: 50%;
  right: 14px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #313131;
  border-right: 1px solid #313131;
}

/*======= common module style =======*/
/* breadcrumb block */
.c-breadcrumb {
  font-family: "游ゴシック体", YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, "Segoe UI", sans-serif;
}

.c-breadcrumb .l-inner {
  max-width: 1080px;
}

.c-breadcrumb + .l-brandwrap {
  padding-top: 0;
}

.c-breadcrumb .l-brandwrap {
  padding: 0;
}

/*======= contents layout =======*/
.l-main {
  font-family: Verdana, メイリオ, Meiryo, 游ゴシック, YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif !important;
}

/*======= brand top layout =======*/
.p-productwrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.p-productwrap__block {
  width: 100%;
}

.p-productwrap__block.-small {
  width: 260px;
  font-family: "游ゴシック体", YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, "Segoe UI", sans-serif;
}

.p-productwrap__block.-small .l-block__item {
  margin-bottom: 30px;
}

.p-productwrap__block.-small .l-block__item:last-child {
  margin-bottom: 0;
}

.p-productwrap__block.-large {
  width: 770px;
}

.p-productwrap__block.-large .p-searchcat__title {
  position: relative;
  padding: 11px 30px 11px 10px;
  background-color: #404040;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0;
  cursor: pointer;
}

.p-productwrap__block.-large .p-searchcat__title:after {
  content: 'から選ぶ';
}

.p-productwrap__block.-large .p-searchcat__title:before {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: '';
  display: block;
  width: 17px;
  height: 17px;
  background: url("/shopping/common/image/brand/icn_square-minus-w.png") no-repeat center/cover;
}

.p-productwrap__block.-large .p-searchcat__title.-close:before {
  background-image: url("/shopping/common/image/brand/icn_square-plus-w.png");
}

.p-productwrap__block.-large .p-searchcat .p-searchcatlist__box:first-child {
  display: none !important;
}

.p-productwrap__block.-large .p-searchcat .p-searchcatlist__box__item {
  border-color: #c1c1c1;
}

.p-productwrap__block.-large .p-searchcat .p-searchcatlist__box__item a {
  display: block;
  width: 100%;
  padding: 15px 35px 15px 10px;
  background: url("/shopping/common/image/brand/icn_linkarrow.png") no-repeat right center/19px auto;
  font-size: 15px;
}

.p-productwrap__block.-large .p-searchcat .p-searchcat__openbtn.-is_sp,
.p-productwrap__block.-large .p-searchcat .p-searchcatmodal {
  display: none !important;
}

.p-productwrap__block.-large .p-sidenav__head,
.p-productwrap__block.-large .p-sidenavbtn--open {
  display: none !important;
}

/*======= dropdown block =======*/
.c-branddrop {
  display: block;
  width: 100%;
}

.c-branddrop__title {
  position: relative;
  display: block;
  width: 100%;
  padding: 11px 30px 11px 10px;
  font-size: 16px;
  font-weight: bold;
  background-color: #404040;
  text-align: left;
}

.c-branddrop__title span {
  color: #fff;
}

.c-branddrop__title i {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 17px;
  height: 17px;
  background: url("/shopping/common/image/brand/icn_square-plus-w.png") no-repeat center/cover;
}

.c-branddrop__title.-open i {
  background-image: url("/shopping/common/image/brand/icn_square-minus-w.png");
}

/*======= link list block =======*/
.c-brandlinklist {
  display: block;
  width: 100%;
}

.c-brandlinklist__item {
  display: block;
  width: 100%;
}

.c-brandlinklist__item a {
  display: block;
  width: 100%;
  padding: 15px 35px 15px 10px;
  border-bottom: 1px solid #c1c1c1;
  background: url("/shopping/common/image/brand/icn_linkarrow.png") no-repeat right center/19px auto;
  font-size: 15px;
}

/*======= mailmagazine setting =======*/
.c-mailmag {
  display: block;
  width: 100%;
  padding: 15px 20px;
  height: 50px;
  font-size: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #7f7f7f;
  color: #fff;
}

.c-mailmag__btn {
  margin-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-mailmag__btn:last-child {
  display: none;
}

.c-mailmag__icn {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  display: inline-block;
  background: url("/shopping/common/image/brand/icn_mailmag-w.png") no-repeat center;
  background-size: 18px auto;
}

.c-mailmag.-add {
  background-color: #eee;
  color: #000;
}

.c-mailmag.-add .c-mailmag__btn {
  cursor: text;
}

.c-mailmag.-add .c-mailmag__btn:first-child {
  display: none;
}

.c-mailmag.-add .c-mailmag__btn:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-mailmag.-add .c-mailmag__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-mailmag.-add .c-mailmag__txt:hover {
  text-decoration: none;
}

.c-mailmag.-add .c-mailmag__icn {
  width: 18px;
  height: 18px;
  background: url("/shopping/common/image/brand/icn_mailmag-b.png") no-repeat center 3px;
  background-size: 18px auto;
}

/*======= default link setting =======*/
.c-brandmodal__title {
  display: block;
  width: 100%;
  background: #f2f2f2;
  padding: 10px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.c-brandmodal .c-button {
  margin: 0 auto;
}

/*======= default link setting =======*/
.c-brandlink {
  color: #134bbc;
  display: inline-block;
}

.c-brandlink.-gray {
  color: #333;
}

.c-brandlink.-arrow__red:before {
  content: ">";
  display: inline-block;
  color: #b70000;
  margin-right: 4px;
}

.c-brandlink:visited {
  color: #3666C6;
}

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

 product detail page

=============================================================== */
/*======= get point block =======*/
.c-point__title {
  font-size: 16px;
}

.c-point__image {
  text-align: right;
}

.c-point__image img {
  width: 147px;
}

.c-point__card {
  font-size: 12px;
  font-weight: bold;
}

.c-point__percent {
  display: inline-block;
  padding: 2px 1px 4px;
  margin-right: 2px;
  border: solid 1px #666;
  color: #666;
  font-size: 13px;
}

.c-point__get {
  font-size: 17px;
  font-weight: bold;
}

/*======= product detail block =======*/
.c-productdetail {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-productdetail__title {
  width: 230px;
  padding: 15px 20px;
  background-color: #f1f1f1;
}

.c-productdetail__title:not(last-child) {
  margin-bottom: 2px;
}

.c-productdetail__content {
  width: 750px;
  padding: 15px 20px;
  line-height: 1.5em;
}

/*======= gift detail block =======*/
.c-brandgift__head {
  display: block;
  width: 100%;
  border-top: 1px solid #000000;
  margin-bottom: 30px;
}

.c-brandgift__head.-open {
  background-color: #efefef;
}

.c-brandgift__head.-close {
  background-color: #ffffff;
}

.c-brandgift__main.-hide {
  display: none;
}

.c-brandgift__wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-brandgift__title {
  width: 230px;
  padding: 15px 20px;
  background-color: #f1f1f1;
  border-bottom: 1px solid #dddddd;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.c-brandgift__title:first-child {
  border-top: 1px solid #dddddd;
}

.c-brandgift__content {
  width: 750px;
  padding: 15px 20px;
  line-height: 1.5em;
  border-top: 1px solid #dddddd;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.c-brandgift__content:last-child {
  border-bottom: 1px solid #dddddd;
}

/*======= お届け日/ギフト体裁… =======*/
.p-otherdetailblock__item {
  background: #f2f2f2;
}

.p-otherdetailblock__tabnav .-tabbtn {
  background: #fff;
}

.p-otherdetailblock__tabnav .-tabbtn.-current {
  background: #000;
}

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

 style

=============================================================== */
.p-brandchloetop {
  margin-bottom: 10px;
}

.p-brandchloetop__mv {
  display: block;
  width: 100%;
  font-size: 0;
  line-height: 0;
}

.p-brandchloetop__mv img {
  width: 100%;
}

.p-brandchloetop__headnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 355px;
  margin: 0 auto;
}

.p-brandchloetop__headnav__item {
  position: relative;
  display: block;
  font-size: 0;
  line-height: 0;
}

.p-brandchloetop__headnav__item > a {
  display: block;
  height: 15px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: top center;
}

.p-brandchloetop__headnav__item > a span {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.p-brandchloetop__headnav__item > a.-newlink {
  width: 95px;
  background-image: url("/shopping/common/image/brand/chloe/tx_newproduct.jpg");
}

.p-brandchloetop__headnav__item > a.-fragrancelink {
  width: 202px;
  background-image: url("/shopping/common/image/brand/chloe/tx_fragrance.jpg");
  background-position: top 1px center;
}

.p-brandchloetop__headnav--float {
  position: absolute;
  top: 90%;
  left: 1px;
  display: none;
  width: 248px;
  padding: 10px 5px 15px 15px;
  background: rgba(255, 255, 255, 0.9);
  z-index: 1;
}

.p-brandchloetop__headnav--float__item {
  margin-bottom: 5px;
}

.p-brandchloetop__headnav--float__item:last-child {
  margin-bottom: 0;
}

.p-brandchloetop__headnav--float__item a {
  display: block;
  width: 100%;
  padding-left: 10px;
  color: #000;
  font-size: 13px;
  line-height: 1.5em;
}

.p-brandchloetop__head {
  margin-bottom: 10px;
}

.p-brandchloetop__head__logo {
  display: block;
  width: 100%;
  padding-top: 18px;
  margin-bottom: 15px;
  font-size: 0;
  line-height: 0;
  text-align: center;
}

.p-brandchloetop__head__logo a {
  display: inline-block;
}

.p-brandchloetop__head__logo img {
  width: 160px;
}

.p-brandchloetop__head__nav {
  margin-bottom: 20px;
}

.p-brandchloetop__head__mv {
  margin-bottom: 10px;
}

.p-brandchloetop__linkblock {
  margin-bottom: 40px;
}

.p-brandchloetop__linkblock__text a {
  display: block;
  line-height: 0;
  font-size: 0;
  margin: 0 0 0 auto;
  background: no-repeat top center / 100% auto;
}

.p-brandchloetop__linkblock__text a span {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.p-brandchloetop__linkblock__text a.-allitems {
  width: 170px;
  height: 15px;
  background-image: url("/include/shopping/beauty/chloe/chloe_tx01.jpg");
}

.p-brandchloetop__logo {
  display: block;
  margin-bottom: 10px;
  text-align: center;
  font-size: 0;
  line-height: 0;
}

.p-brandchloetop__logo a {
  display: inline-block;
  font-size: 0;
  line-height: 0;
}

.p-brandchloetop__mailmag {
  margin-bottom: 40px;
}

.p-brandchloetopitem__imagelink {
  position: relative;
  display: block;
  width: 240px;
  height: 240px;
  margin-bottom: 10px;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}

.p-brandchloetopitem__imagelink img {
  width: 100%;
  -webkit-transition: opacity .25s ease;
  transition: opacity .25s ease;
}

.p-brandchloetopitem__detail {
  display: block;
  width: 100%;
  color: #000;
  text-align: center;
}

.p-brandchloetopitem__detail__title {
  margin-bottom: 4px;
  font-size: 13px;
  line-height: 1.5em;
}

.p-brandchloetopitem__detail__price {
  font-size: 12px;
  line-height: 1.3em;
}

.p-brandchloetopitem__detail__other {
  font-size: 13px;
  line-height: 1.3em;
}

.p-brandchloetopblock {
  display: block;
  overflow: hidden;
}

.p-brandchloetopblock__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.p-brandchloetoppager {
  padding-top: 10px;
  margin-bottom: 10px;
}

.p-brandchloetoppager:last-child {
  margin-bottom: 0;
}

/*======= ポイントカードのフォントサイズ =======*/
.p-subcontent__point .-content .-cardname {
  font-size: 15px !important;
}

/*======= ラベルの色 =======*/
.p-mainarea__soldout {
  border: 2px solid #000;
}

/*======= NEWラベルの色 =======*/
.c-label.-new {
  background: #ddd;
  color: #000;
}
@media screen and (min-width: 371px) and (max-width: 768px) {
  .p-searchnavitem.-colorselect .-colorselect__block__item {
    width: calc(100% / 4);
  }
}
@media screen and (min-width: 769px) {
  html, body {
    min-width: 1200px;
  }
  body {
    overflow: auto;
  }
  .p-brandlistmodal__initial__head .-tabbtn:hover {
    background: #f2ebeb;
  }
  .p-brandlistmodal__initial__btn:hover {
    background: #f2ebeb;
  }
  .p-brandlistmodal__result__block {
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid #ededed;
    margin-bottom: 30px;
    margin-top: -31px;
  }
  .p-searchnavfoot {
    position: static;
    margin-top: 30px;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .p-searchnav--openbtn {
    display: none;
  }
  .p-searchnav__block {
    position: relative;
  }
  .p-searchnav__block__item .c-tagblock.-selectlist .c-tag.-close:hover {
    opacity: .5;
  }
  .p-searchnav__block__item {
    position: relative;
  }
  .p-searchnav__block__item .p-searchnavmodal {
    position: absolute;
    top: 0;
    left: 100%;
    width: 300px;
    border-radius: 5px;
    -webkit-box-shadow: 0 3px 6px rgba(49, 49, 49, 0.16);
            box-shadow: 0 3px 6px rgba(49, 49, 49, 0.16);
    opacity: 0;
    visibility: hidden;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    pointer-events: none;
  }
  .p-searchnav__block__item .p-searchnavmodal.-large {
    width: 768px;
  }
  .p-searchnav__block__item .p-searchnavmodal.-simple {
    padding: 20px;
  }
  .p-searchnav__block__item .p-searchnavmodal.-simple .c-checkbox {
    margin-bottom: 4px;
  }
  .p-searchnav__block__item .p-searchnavmodal.-simple .c-checkbox:last-child {
    margin-bottom: 0;
  }
  .p-searchnav__block__item .p-searchnavmodal.-medium {
    width: 460px;
  }
  .p-searchnav__block__item .p-searchnavmodal.-is_pc--nomodal {
    position: static;
    width: 100%;
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    opacity: 1;
    visibility: visible;
    -webkit-user-select: inherit;
       -moz-user-select: inherit;
        -ms-user-select: inherit;
            user-select: inherit;
    pointer-events: inherit;
  }
  .p-searchnav__block__item.-hover:hover > .p-searchnavitem.-button {
    background: #f2ebeb;
  }
  .p-searchnav__block__item.-hover:hover .p-searchnavmodal {
    -webkit-user-select: inherit;
       -moz-user-select: inherit;
        -ms-user-select: inherit;
            user-select: inherit;
    pointer-events: inherit;
    opacity: 1;
    visibility: visible;
  }
  .p-searchnavitem.-button:hover, .p-searchnavitem.-link:hover {
    background: #f2ebeb;
  }
  .p-searchnavitem.-colorselect .-colorselect__block__item {
    margin-top: 4px;
  }
  .p-searchnavitem.-colorselect .-colorselect__block__item:nth-child(1), .p-searchnavitem.-colorselect .-colorselect__block__item:nth-child(2) {
    margin-top: 0;
  }
  .p-sidenav__head {
    display: none;
  }
  .p-sidenavbtn--open {
    display: none;
  }
  .p-searchcatmodal__head {
    display: none;
  }
  .p-searchcatmodal {
    position: absolute;
    top: 0;
    left: 100%;
    width: 300px;
    padding: 20px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.175s;
    transition: 0.175s;
  }
  .p-searchcatmodal .p-searchcatlist__box {
    margin-bottom: 10px;
  }
  .p-searchcatmodal .p-searchcatlist__box:last-child {
    margin-bottom: 0;
  }
  .p-searchcatmodal .p-searchcatlist__box__item a {
    display: inline-block;
    width: auto;
    padding: 0;
    text-decoration: underline;
  }
  .p-searchcatmodal .p-searchcatlist__box__item a:hover {
    background: transparent;
    opacity: .5;
  }
  .p-searchcat {
    border-bottom: 1px solid #dedede;
  }
  .p-searchcat:last-child {
    border-bottom: 0;
  }
  .p-searchcat__title {
    margin-bottom: 10px;
    padding: 7px 0;
    background: transparent;
    font-size: 17px;
    line-height: 1.3em;
  }
  .p-searchcatlist__box {
    position: relative;
  }
  .p-searchcatlist__box:hover .p-searchcatmodal {
    opacity: 1;
    visibility: visible;
  }
  .p-searchcatlist__box__item {
    border-bottom: none;
  }
  .p-searchcatlist__box__item a {
    -webkit-transition: 0.175s;
    transition: 0.175s;
  }
  .p-searchcatlist__box__item a:hover {
    background: #f2f2f2;
  }
  .p-searchcatlist__box__item a.u-fw__bold {
    font-weight: normal;
    text-decoration: underline;
  }
  .p-searchcatlist__box__item a.u-fw__bold:hover {
    background: transparent;
    opacity: .5;
  }
  .p-productwrap__block.-small .-is_sp {
    display: none !important;
  }
  .p-productwrap__block.-small .-is_pc {
    display: block !important;
  }
  .p-productwrap__block.-large .p-searchcat {
    display: none !important;
  }
  .c-brandlink:hover {
    text-decoration: underline;
  }
  .p-brandchloetop__headnav__item > a.-newlink:hover {
    background-position: bottom center;
  }
  .p-brandchloetop__headnav--float__item a:hover {
    text-decoration: underline;
  }
  .p-brandchloetop__head {
    margin-bottom: 40px;
  }
  .p-brandchloetop__linkblock__text a.-allitems:hover {
    background-position: bottom center;
  }
  .p-brandchloetopitem__imagelink:hover img {
    opacity: .8;
  }
  .p-brandchloetopitem__detail__title a:hover {
    text-decoration: underline;
  }
  .p-brandchloetopblock__item {
    width: 240px;
    margin: 0 0 3.24675% 3.24675%;
  }
  .p-brandchloetopblock__item:nth-child(3n+1) {
    margin-left: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 768px) {
  .p-searchcatmodal {
    max-width: 375px;
  }
}
@media screen and (min-width: 770px) {
  .c-mailmag__txt:hover {
    text-decoration: underline;
  }
}
@media screen and (max-width: 768px) {
  .p-brandlistmodal {
    padding: 10px;
  }
  .p-brandlistmodal .-is_pc {
    display: none !important;
  }
  .p-brandlistmodal__block.-spfixed {
    position: fixed;
    right: 0;
    bottom: 0;
    width: 100%;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-box-shadow: 3px 0 10px rgba(49, 49, 49, 0.16);
            box-shadow: 3px 0 10px rgba(49, 49, 49, 0.16);
  }
  .-show > .p-searchnavmodal__content .p-brandlistmodal__block.-spfixed {
    opacity: 1;
    visibility: visible;
  }
  .-is_pc + .p-brandlistmodal__block {
    margin-top: 0;
  }
  .p-brandlistmodal__button {
    margin-top: 14px;
  }
  .p-brandlistmodal__initial__head .-tabbtn {
    width: 50%;
  }
  .p-brandlistmodal__initial__head .-tabbtn:nth-child(n+2) {
    width: calc(50% + 1px);
  }
  .p-brandlistmodal__initial__head .-tabbtn span {
    position: relative;
  }
  .p-brandlistmodal__initial__body {
    padding: 10px;
  }
  .p-brandlistmodal__initial__tabcont {
    display: none;
  }
  .p-brandlistmodal__initial__tabcont.-current {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-brandlistmodal__initial__btn {
    width: 47px;
    height: 47px;
    font-size: 14px;
  }
  .p-brandlistmodal__initial__btn.-large {
    width: 104px;
  }
  .p-brandlistmodal__result {
    width: calc(100% + 20px);
    margin-left: -10px;
    border: none;
    height: auto;
  }
  .p-brandlistmodal__result .c-title__sub {
    padding: 7px 10px 5px;
    margin-bottom: 0;
    background: #f2ebeb;
  }
  .p-brandlistmodal__result .c-title__sub .-main {
    font-size: 14px;
  }
  .p-brandlistmodal__result .c-scrollbox__content {
    padding: 0;
  }
  .p-brandlistmodal__result .l-columnblock__inner {
    margin: 0;
  }
  .p-brandlistmodal__result .l-columnblock__item {
    width: 100%;
    border-bottom: 1px solid #dedede;
    padding: 10px;
    margin: 0;
  }
  .p-brandlistmodal__result .l-columnblock__item:nth-child(n+2) {
    margin-top: -1px;
  }
  .p-brandlistmodal__submit {
    height: 50px;
    padding: 6px 24px;
  }
  .p-brandlistmodal__block.-spfixed {
    max-width: 100%;
  }
  .p-searchnavhead, .p-searchnavfoot {
    max-width: 100%;
  }
  .p-searchnavfoot {
    height: 50px;
    padding: 6px 24px;
  }
  .p-searchnav {
    position: fixed;
    top: 0;
    right: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    width: 100%;
    max-width: 100%;
    height: 100%;
    background: #fff;
    -webkit-box-shadow: 0 3px 6px rgba(49, 49, 49, 0.16);
            box-shadow: 0 3px 6px rgba(49, 49, 49, 0.16);
    z-index: 14;
    -webkit-transition: 0.35s;
    transition: 0.35s;
  }
  .p-searchnav.-show {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .p-searchnav > .l-inner {
    height: auto;
    max-height: calc(100% - 60px);
    padding: 40px 0 60px;
    overflow-y: auto;
  }
  .p-searchnavmodal {
    width: 100%;
    height: 100%;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  .p-searchnavmodal.-show {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .p-searchnavmodal.-brand {
    z-index: 21;
  }
  .p-searchnavmodal.-favorite {
    z-index: 16;
  }
  .p-searchnavmodal__content {
    height: 100%;
    max-height: 100%;
    padding: 40px 0 0;
    overflow: hidden;
    overflow-y: auto;
  }
  .p-searchnavmodal__content .l-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
    height: auto;
    padding-bottom: 60px;
  }
  .p-searchnavmodal__content .l-inner .l-inner {
    padding-bottom: 0;
  }
  .p-searchnavmodal__content .c-checkbox {
    padding: 10px;
    border-bottom: 1px solid #ededed;
  }
  .p-searchnavmodal__content .c-checkbox.-color {
    border-bottom: none;
  }
  .p-searchnavmodal__content .c-checkbox.-color .c-checkbox__label {
    display: block;
  }
  .p-searchnavmodal__content .c-checkbox.-color .c-checkbox__label .c-icon {
    display: block;
    width: 40px;
    height: 40px;
    margin: 0 auto;
  }
  .p-searchnavmodal__content .c-checkbox.-color .c-checkbox__label .c-icon:after {
    border-width: 3px;
  }
  .p-searchnavmodal__content .c-checkbox.-color .c-checkbox__label span {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    text-align: center;
  }
  .p-searchnavmodal__content .c-checkbox.-color .c-checkbox__label span span {
    display: inline;
  }
  .p-searchnavmodal__content .-category .p-searchnavitem.-button {
    border-top: 1px solid #ededed;
  }
  .p-searchnavmodal__content .-category .p-searchnavitem.-button:first-child {
    border-top: none;
  }
  .p-searchnavmodal__content .-category .-category .l-inner {
    position: relative;
  }
  .p-searchnavmodal__content .-category .-category .l-inner:after {
    position: absolute;
    bottom: 0;
    right: 0;
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    border-bottom: 1px solid #ededed;
  }
  .p-searchnavmodal__content .-category .-category .c-checkbox {
    width: 100%;
  }
  .p-searchnavmodal__content .-category .-category .c-checkbox:nth-child(n+2) {
    width: 50%;
    border-right: 1px solid #ededed;
  }
  .p-searchnavitem.-button, .p-searchnavitem.-link {
    padding-right: 24px;
  }
  .p-searchnavitem.-button:after, .p-searchnavitem.-link:after {
    opacity: 1;
  }
  .p-searchnavitem.-colorselect .-colorselect__block__item {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .p-searchnavitem.-colorselect {
    padding: 0;
  }
  .p-sidenav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    -webkit-box-shadow: 0 3px 6px rgba(49, 49, 49, 0.16);
            box-shadow: 0 3px 6px rgba(49, 49, 49, 0.16);
    -webkit-transform: translateX(102%);
            transform: translateX(102%);
    -webkit-transition: 0.35s;
    transition: 0.35s;
  }
  .p-sidenav.-open {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .p-sidenav__body {
    height: auto;
    max-height: calc(100% - 60px);
    padding: 40px 0 40px;
    overflow-y: auto;
  }
  .p-searchcatmodal {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    -webkit-transform: translateX(102%);
            transform: translateX(102%);
    -webkit-transition: 0.35s;
    transition: 0.35s;
  }
  .p-searchcatmodal.-show {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .p-searchcatmodal__body {
    height: auto;
    max-height: calc(100% - 40px);
    padding: 40px 0 40px;
    overflow-y: auto;
  }
  .c-breadcrumb .l-brandwrap {
    padding: 0;
  }
  .l-main > .l-block {
    padding-right: 0;
    padding-left: 0;
  }
  .p-productwrap__block.-small .-is_sp {
    display: block !important;
  }
  .p-productwrap__block.-small .-is_pc {
    display: none !important;
  }
  .p-productwrap__block.-small, .p-productwrap__block.-large {
    width: 100%;
  }
  .p-productwrap__block.-small {
    display: none;
  }
  .c-mailmag {
    font-size: 14px;
    background-color: #fff;
    color: #333;
    font-family: "Lucida Grande", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
  }
  .c-mailmag__txt:after {
    content: "";
    margin-left: 7px;
    display: inline-block;
    background: url("/shopping/common/image/brand/icn_linkarrow.png") no-repeat center 5px;
    background-size: 17px auto;
    width: 20px;
    height: 17px;
  }
  .c-mailmag__icn {
    background: url("/shopping/common/image/brand/icn_mailmag-g.png") no-repeat center 3px;
    background-size: 18px auto;
  }
  .c-mailmag.-add {
    background-color: #fff;
  }
  .c-mailmag.-add .c-mailmag__btn:last-child {
    display: block;
  }
  .c-mailmag.-add .c-mailmag__btn .c-brandlink:visited {
    color: #333;
  }
  .c-mailmag.-add .c-mailmag__btn .c-brandlink:before {
    content: "";
    display: inline-block;
    background: url("/shopping/common/image/brand/icn_linkarrow.png") no-repeat center 5px;
    background-size: 17px auto;
    width: 15px;
    height: 17px;
    margin-right: 3px;
  }
  .c-mailmag.-add .c-mailmag__btn .c-brandlink {
    color: #333;
  }
  .c-mailmag.-add .c-mailmag__wrap {
    margin-bottom: 10px;
  }
  .c-mailmag.-add .c-mailmag__txt:after {
    display: none;
  }
  .c-mailmag.-add .c-mailmag__txt {
    color: #333;
  }
  .c-mailmag.-add .c-mailmag__icn {
    background: url("/shopping/common/image/brand/icn_mailmag-g.png") no-repeat center 3px;
    background-size: 18px auto;
  }
  .c-productdetail__title {
    width: 100%;
    background-color: #ffffff;
    border-bottom: 2px solid #cccccc;
    font-size: 17px;
    padding: 10px 0 5px;
  }
  .c-productdetail__content {
    width: 100%;
    font-size: 15px;
    padding: 10px 0 15px;
  }
  .p-brandchloetop {
    margin-bottom: 5px;
  }
  .p-brandchloetop__head__mv {
    margin-bottom: 5px;
  }
  .p-brandchloetop__linkblock {
    margin-bottom: 15px;
  }
  .p-brandchloetop__linkblock__text {
    padding-right: 3.125%;
    padding-left: 3.125%;
  }
  .p-brandchloetop__logo {
    padding-right: 3.125%;
    padding-left: 3.125%;
  }
  .p-brandchloetop__mailmag {
    margin-bottom: 10px;
  }
  .p-brandchloetopitem__imagelink {
    width: 100%;
    height: auto;
    text-align: center;
  }
  .p-brandchloetopitem__imagelink img {
    max-width: 240px;
    margin: 0 !important;
  }
  .p-brandchloetopblock__inner {
    padding-right: 3.125%;
    padding-left: 3.125%;
  }
  .p-brandchloetopblock__item {
    width: 100%;
    margin-top: 20px;
  }
  .p-brandchloetopblock__item:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 370px) {
  .p-searchnavitem.-colorselect .-colorselect__block__item {
    width: 33.3%;
  }
}
