@charset "UTF-8";
/* 共通；スライダー
---------------------------------------------------------- */
.opfSlider:not(.slick-initialized) {
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.opfSlider .sliderItem {
  width: 100%;
  height: auto;
}

.opfSlider .sliderItem:focus {
  outline: none !important;
}

.opfSlider .sliderArrow {
  margin: auto 0;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  bottom: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 100;
  cursor: pointer;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

@media screen and (min-width: 600px), print {
  .opfSlider .sliderArrow {
    width: 46px;
    height: 46px;
  }
}

.opfSlider .sliderArrow.slick-disabled {
  opacity: 0;
  pointer-events: none;
}

@media screen and (min-width: 600px), print {
  .opfSlider .sliderArrow:hover {
    opacity: .7;
  }
}

.opfSlider .sliderArrow:after {
  content: "";
  display: block;
  margin: auto;
  width: 6px;
  height: 6px;
  color: #c8172f;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.opfSlider .sliderArrow._prev {
  left: -15px;
}

@media screen and (min-width: 600px), print {
  .opfSlider .sliderArrow._prev {
    left: -23px;
  }
}

.opfSlider .sliderArrow._prev:after {
  left: 3px;
  border-bottom: 1px solid;
  border-left: 1px solid;
}

.opfSlider .sliderArrow._next {
  right: -15px;
}

@media screen and (min-width: 600px), print {
  .opfSlider .sliderArrow._next {
    right: -23px;
  }
}

.opfSlider .sliderArrow._next:after {
  right: 3px;
  border-top: 1px solid;
  border-right: 1px solid;
}

.opfSlider:not(._thumbnail) .sliderArrow {
  border-radius: 50%;
  border: 1px solid #707070;
  background-color: #fff;
}

.opfSlider._thumbnail {
  margin-top: 10px;
}

@media screen and (min-width: 600px), print {
  .opfSlider._thumbnail {
    margin-top: 20px;
  }
}

.opfSlider._thumbnail > div:first-child:not(.slick-arrow) .slick-track {
  -webkit-transform: none !important;
  transform: none !important;
}

@media screen and (min-width: 600px), print {
  .opfSlider._thumbnail .slick-track {
    margin: 0;
  }
}

.opfSlider._thumbnail .sliderItem {
  width: 32px;
  height: 32px;
  position: relative;
  cursor: pointer;
}

@media screen and (max-width: 599px) {
  .opfSlider._thumbnail .sliderItem img {
    display: none;
  }
  .opfSlider._thumbnail .sliderItem:before {
    content: "";
    display: block;
    margin: auto;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    background-color: #CCCCCC;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

@media screen and (min-width: 600px), print {
  .opfSlider._thumbnail .sliderItem {
    margin-right: 20px;
    width: 72px;
    height: 72px;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
    opacity: .4;
    overflow: hidden;
  }
  .opfSlider._thumbnail .sliderItem img {
    margin: auto;
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  @supports ((-o-object-fit: cover) or (object-fit: cover)) {
    .opfSlider._thumbnail .sliderItem img {
      height: 100%;
      -o-object-fit: cover;
      object-fit: cover;
    }
  }
  .opfSlider._thumbnail .sliderItem:hover {
    opacity: 1;
  }
}

.opfSlider._thumbnail .sliderItem:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

@media screen and (min-width: 600px), print {
  .opfSlider._thumbnail .sliderItem:after {
    width: 100%;
    height: 100%;
    border: 2px solid #c8172f;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: opacity .3s,-webkit-transform .3s;
    transition: opacity .3s,-webkit-transform .3s;
    transition: opacity .3s,transform .3s;
    transition: opacity .3s,transform .3s,-webkit-transform .3s;
    opacity: 0;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@media screen and (max-width: 599px) {
  .opfSlider._thumbnail .sliderItem.slick-current:before {
    background-color: #c8172f;
  }
}

@media screen and (min-width: 600px), print {
  .opfSlider._thumbnail .sliderItem.slick-current {
    opacity: 1;
  }
  .opfSlider._thumbnail .sliderItem.slick-current:after {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

.opfSlider._thumbnail .sliderArrow {
  background: none;
  border: 0;
}

.opfSlider._thumbnail .sliderArrow._prev:after {
  left: -50%;
}

.opfSlider._thumbnail .sliderArrow._next:after {
  right: -50%;
}

/* 共通；タブ切り替え（sp時はアコーディオン化）
---------------------------------------------------------- */
.opfTabContents .tab {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #707070;
}

@media screen and (max-width: 599px) {
  .opfTabContents .tab {
    display: none;
  }
}

.opfTabContents .tabItem {
  width: 100%;
}

@media screen and (min-width: 600px), print {
  .opfTabContents .tabItem:not(.active) a:hover:after {
    opacity: 1;
    background-color: #707070;
  }
}

.opfTabContents .tabItem a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  height: 60px;
  position: relative;
}

.opfTabContents .tabItem a:focus {
  outline: none;
}

.opfTabContents .tabItem a:after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #c8172f;
  position: absolute;
  bottom: -1px;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity .3s,background .3s;
  transition: opacity .3s,background .3s;
}

.opfTabContents .tabItem.active a:after {
  opacity: 1;
}

@media screen and (min-width: 600px), print {
  .opfTabContents .spTabAccordionName {
    display: none;
  }
}

.opfTabContents .tabTarget {
  display: none;
}

@media screen and (max-width: 599px) {
  .opfTabContents .tabTarget.spActive {
    display: block;
  }
  .opfTabContents .tabTarget + .spTabAccordionName {
    margin-top: 20px;
  }
}

@media screen and (min-width: 600px), print {
  .opfTabContents .tabTarget.pcActive {
    display: block;
  }
}

.opfTabContents .spTabAccordionName {
  padding: 15px 50px 15px 15px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  background-color: #1A1A1A;
  position: relative;
}

@media screen and (min-width: 600px), print {
  .opfTabContents .spTabAccordionName {
    display: none !important;
  }
}

.opfTabContents .spTabAccordionName:before, .opfTabContents .spTabAccordionName:after {
  content: "";
  display: block;
  margin: auto 0;
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
}

.opfTabContents .spTabAccordionName:before {
  width: 21px;
  height: 2px;
  right: 15px;
}

.opfTabContents .spTabAccordionName:after {
  width: 2px;
  height: 20px;
  right: 24px;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.opfTabContents .spTabAccordionName.active:after {
  opacity: 0;
}

/* 共通；化粧品使用注意
---------------------------------------------------------- */
.productSkincheckNotification {
  margin-top: 15px;
}

@media screen and (min-width: 600px), print {
  .productSkincheckNotification {
    margin-top: 30px;
  }
}

.productSkincheckNotification .content-skincheck-errorMsg {
  background-image: url("/omiseplus/assets/img/icon_notification.svg");
  background-repeat: no-repeat;
  background-size: 22px 22px;
  background-position: 20px center;
  padding: 20px 20px 20px 60px;
  background-color: #FAE7E9;
}

@media screen and (min-width: 600px), print {
  .productSkincheckNotification .content-skincheck-errorMsg {
    padding: 20px 30px 20px 70px;
    background-position: 30px center;
  }
  .productSkincheckNotification .content-skincheck-errorMsg br.sp {
    display: none;
  }
}

/* 共通；プロダクトページ内のfooterの上のmargin
---------------------------------------------------------- */
.productFooter {
  margin-top: 80px;
}

/* =========================================================================

商品一覧(C-01) ここから

========================================================================= */
body {
  overflow: visible;
}

@media screen and (max-width: 599px) {
  #topicPathArea {
    display: none;
  }
}

.page_title {
  margin-top: 20px;
  font-size: 24px;
  font-weight: bold;
}

@media screen and (max-width: 599px) {
  .page_title {
    margin: 25px 0 0;
  }
}

@media screen and (min-width: 600px), print {
  .page_title {
    margin-top: 20px;
  }
}

/* PCレイアウトの左右振り分け */
.productListContainer {
  margin-top: 25px;
  position: static;
}

@media screen and (min-width: 600px), print {
  .productListContainer {
    padding-bottom: 90px;
  }
}

@media screen and (min-width: 600px), print {
  .productListContainer > .ly_inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .productListContainer > .ly_inner .-pcR {
    width: calc(100% - 216px - 34px);
  }
  .productListContainer > .ly_inner .-pcL {
    width: 216px !important;
  }
}

/* ====================================
.productListSideFilter Start
==================================== */
.productListSideFilter {
  background-color: #fff;
}

@media screen and (max-width: 599px) {
  .productListSideFilter {
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    position: fixed;
    overflow-y: scroll;
    overflow-x: hidden;
    z-index: 9989;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .productListSideFilter:not(.__active) {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@media screen and (min-width: 600px), print {
  .productListSideFilter {
    position: relative;
    background-color: #F5F5F5;
    padding: 50px 15px 40px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .productListSideFilter + .productListSideFilter {
    display: none;
  }
}

.productListSideFilter .spFilterHead {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-bottom: 1px solid #ccc;
  width: 100%;
  height: 60px;
  background: #fff;
  top: 0;
  position: -webkit-sticky;
  position: sticky;
  z-index: 100000;
}

@media screen and (min-width: 600px), print {
  .productListSideFilter .spFilterHead {
    display: none;
  }
}

.productListSideFilter .spFilterHead .filterName {
  font-size: 20px;
  font-weight: bold;
}

.productListSideFilter .spFilterHead .filterClose {
  width: 60px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.productListSideFilter .spFilterHead .filterClose:before, .productListSideFilter .spFilterHead .filterClose:after {
  content: "";
  display: block;
  margin: auto;
  height: 2px;
  width: 50%;
  background-color: #333;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.productListSideFilter .spFilterHead .filterClose:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.productListSideFilter .spFilterHead .filterClose:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.productListSideFilter .spFilterHead .filterClear {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100px;
  height: 100%;
  font-size: 16px;
  font-weight: bold;
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (max-width: 599px) {
  .productListSideFilter .productListSideFilterContainer {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 20px 30px 100px;
  }
}

@media screen and (min-width: 600px), print {
  .productListSideFilter .filterWrapper {
    position: relative;
  }
}

@media screen and (min-width: 600px), print {
  .productListSideFilter #productListSideFilterForm:before {
    content: "商品の絞り込み";
    color: #1A1A1A;
    position: absolute;
    top: -30px;
    left: 0;
  }
}

.productListSideFilter #productListSideFilterLinks .heading {
  color: #1A1A1A;
  position: absolute;
  top: -30px;
  left: 0;
}

.productListSideFilter .filterLinkCPB {
  padding: 10px 0 20px;
}

.productListSideFilter .filterLinkCPB a {
  position: relative;
  width: 100%;
  display: block;
}

.productListSideFilter .filterLinkCPB a::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  margin: auto;
  width: 5px;
  height: 5px;
  border-top: #c8172f 1px solid;
  border-right: #c8172f 1px solid;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  right: 20px;
  margin: auto 0;
  right: 0;
}

.productListSideFilter .filterLinkCPB a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 599px) {
  .productListSideFilter .filterLinkCPB {
    padding-top: 0;
  }
}

.productListSideFilter .filterSearchClear {
  margin-bottom: 20px;
}

.productListSideFilter .filterItem + .filterItem {
  margin-top: 20px;
}

.productListSideFilter .filterItem._limit-1:not(.__limit-active) > .itemContents > *:nth-child(n+2) {
  display: none !important;
}

.productListSideFilter .filterItem._limit-2:not(.__limit-active) > .itemContents > *:nth-child(n+3) {
  display: none !important;
}

.productListSideFilter .filterItem._limit-3:not(.__limit-active) > .itemContents > *:nth-child(n+4) {
  display: none !important;
}

.productListSideFilter .filterItem._limit-4:not(.__limit-active) > .itemContents > *:nth-child(n+5) {
  display: none !important;
}

.productListSideFilter .filterItem._limit-5:not(.__limit-active) > .itemContents > *:nth-child(n+6) {
  display: none !important;
}

.productListSideFilter .filterItem._limit-6:not(.__limit-active) > .itemContents > *:nth-child(n+7) {
  display: none !important;
}

.productListSideFilter .filterItem._limit-7:not(.__limit-active) > .itemContents > *:nth-child(n+8) {
  display: none !important;
}

.productListSideFilter .filterItem._limit-8:not(.__limit-active) > .itemContents > *:nth-child(n+9) {
  display: none !important;
}

.productListSideFilter .filterItem._limit-9:not(.__limit-active) > .itemContents > *:nth-child(n+10) {
  display: none !important;
}

.productListSideFilter .filterItem._limit-10:not(.__limit-active) > .itemContents > *:nth-child(n+11) {
  display: none !important;
}

.productListSideFilter .filterItem._limit-11:not(.__limit-active) > .itemContents > *:nth-child(n+12) {
  display: none !important;
}

.productListSideFilter .filterItem._limit-12:not(.__limit-active) > .itemContents > *:nth-child(n+13) {
  display: none !important;
}

.productListSideFilter .filterItem._limit-13:not(.__limit-active) > .itemContents > *:nth-child(n+14) {
  display: none !important;
}

.productListSideFilter .filterItem._limit-14:not(.__limit-active) > .itemContents > *:nth-child(n+15) {
  display: none !important;
}

.productListSideFilter .filterItem._limit-15:not(.__limit-active) > .itemContents > *:nth-child(n+16) {
  display: none !important;
}

.productListSideFilter .filterItem._limit-16:not(.__limit-active) > .itemContents > *:nth-child(n+17) {
  display: none !important;
}

.productListSideFilter .filterItem._limit-17:not(.__limit-active) > .itemContents > *:nth-child(n+18) {
  display: none !important;
}

.productListSideFilter .filterItem._limit-18:not(.__limit-active) > .itemContents > *:nth-child(n+19) {
  display: none !important;
}

.productListSideFilter .filterItem._limit-19:not(.__limit-active) > .itemContents > *:nth-child(n+20) {
  display: none !important;
}

.productListSideFilter .filterItem._limit-20:not(.__limit-active) > .itemContents > *:nth-child(n+21) {
  display: none !important;
}

.productListSideFilter .itemLimitBtn {
  display: none;
  padding: 10px 15px 10px 0;
  font-size: 12px;
  text-align: right;
  position: relative;
  cursor: pointer;
}

.productListSideFilter .itemLimitBtn:after {
  content: "";
  display: block;
  margin: auto 0;
  width: 5px;
  height: 5px;
  border-bottom: 1px solid #c8172f;
  border-right: 1px solid #c8172f;
  text-decoration: underline;
  position: absolute;
  top: -2px;
  bottom: 0;
  right: 2px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.productListSideFilter .__limit-active .itemLimitBtn {
  padding-right: 20px;
}

.productListSideFilter .__limit-active .itemLimitBtn:after {
  -webkit-transform: rotate(225deg) translate(-1px, -1px);
  transform: rotate(225deg) translate(-1px, -1px);
}

.productListSideFilter .itemContents {
  padding-top: 15px;
}

.productListSideFilter .itemContents._links:not(._linkItemchildren) {
  padding-left: 0;
}

.productListSideFilter .itemContents._links._linkItemchildren {
  padding: 5px 0 0 15px;
}

.productListSideFilter .itemContents._supports > li a, .productListSideFilter .itemContents._links > li a {
  display: block;
  padding: .5em 1em .5em 0;
  font-size: 13px;
  position: relative;
}

.productListSideFilter .itemContents._supports > li a:after, .productListSideFilter .itemContents._links > li a:after {
  content: "";
  margin: auto 0;
  border-top: 1px solid;
  border-right: 1px solid;
  width: 6px;
  height: 6px;
  color: #c8172f;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2px;
}

@media screen and (max-width: 599px) {
  .productListSideFilter .itemContents._supports > li a {
    border-bottom: 1px solid #ccc;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 14px;
  }
}

.productListSideFilter .itemContents._cpb {
  padding: 0 0 15px;
}

.productListSideFilter .itemContents._cpb .btn_cpb {
  white-space: nowrap;
  background: #081f2c;
  border-color: #081f2c;
  color: #fff !important;
  padding: 12px;
}

.productListSideFilter .itemContents._cpb .btn_cpb.btn_icon_arrow::after {
  border-color: #fff;
}

@media screen and (min-width: 600px), print {
  .productListSideFilter .itemContents._cpb .btn_cpb {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 599px) {
  .productListSideFilter .itemContents._cpb {
    padding: 0 0 20px;
  }
}

.productListSideFilter .itemName {
  padding: 5px 0;
  font-size: 16px;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
}

.productListSideFilter .itemName._min {
  font-size: 13px;
  font-weight: 300;
}

.productListSideFilter .checkItem label {
  display: block;
  padding: 7px 0 7px 30px;
  font-size: 13px;
  line-height: 1.8;
}

.productListSideFilter .checkItem label:before {
  top: 6px;
  width: 20px;
  height: 20px;
  left: 0;
}

.productListSideFilter .checkItem label:after {
  left: 6px;
  top: 6px;
  border-bottom-color: #c8172f;
  border-right-color: #c8172f;
}

.productListSideFilter .checkItem .__accordion-btn {
  width: 60px;
  height: 100%;
  position: absolute;
  top: 0;
  right: -30px;
}

.productListSideFilter .radioItem label {
  display: block;
  padding: 7px 0 7px 30px;
  font-size: 13px;
  line-height: 1.8;
}

.productListSideFilter .radioItem label:before {
  left: 0;
}

.productListSideFilter .radioItem label:after {
  left: 5px;
}

.productListSideFilter .linkItemGroup .itemName {
  border-bottom: none;
}

.productListSideFilter .linkItemGroup + .linkItemGroup {
  margin-top: 5px;
}

.productListSideFilter .checkItemChildren {
  padding-left: 20px;
}

.productListSideFilter .filterSearchWrap {
  margin: 0px 0 0 -15px;
  padding: 30px 0;
  width: calc(100% + 30px);
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  z-index: 500;
}

@media screen and (max-width: 599px) {
  .productListSideFilter .filterSearchWrap {
    bottom: 0;
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 30px, white calc(100% - 30px), white 100%);
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 30px, white calc(100% - 30px), white 100%);
  }
}

@media screen and (min-width: 600px), print {
  .productListSideFilter .filterSearchWrap {
    background-image: -webkit-linear-gradient(top, rgba(245, 245, 245, 0) 0%, whitesmoke 30px, whitesmoke calc(100% - 30px), whitesmoke 100%);
    background-image: linear-gradient(to bottom, rgba(245, 245, 245, 0) 0%, whitesmoke 30px, whitesmoke calc(100% - 30px), whitesmoke 100%);
  }
}

.productListSideFilter .filterSearchWrap .parts_btn {
  margin: 0 15px;
  min-width: 0;
  padding-left: 10px;
  padding-right: 10px;
}

.productListSideFilter ._accordion > *:first-child {
  padding-right: 15px;
  position: relative;
  cursor: pointer;
  position: relative;
}

.productListSideFilter ._accordion > *:first-child:after {
  content: "";
  display: block;
  margin: auto 0;
  border-right: 1px solid;
  border-bottom: 1px solid;
  width: 6px;
  height: 6px;
  color: #c8172f;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  position: absolute;
  top: -6px;
  right: 2px;
  bottom: 0;
  pointer-events: none;
}

.productListSideFilter ._accordion > *:first-child + * {
  display: none;
}

.productListSideFilter ._accordion._pattern2 > *:first-child:before {
  content: "";
  display: block;
  margin: auto 0;
  width: 9px;
  height: 9px;
  background-image: -webkit-linear-gradient(top, rgba(200, 23, 47, 0) 4px, #c8172f 4px, #c8172f 5px, rgba(200, 23, 47, 0) 5px), -webkit-linear-gradient(left, rgba(200, 23, 47, 0) 4px, #c8172f 4px, #c8172f 5px, rgba(200, 23, 47, 0) 5px);
  background-image: linear-gradient(to bottom, rgba(200, 23, 47, 0) 4px, #c8172f 4px, #c8172f 5px, rgba(200, 23, 47, 0) 5px), linear-gradient(to right, rgba(200, 23, 47, 0) 4px, #c8172f 4px, #c8172f 5px, rgba(200, 23, 47, 0) 5px);
  background-size: 9px 9px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 3px;
}

.productListSideFilter ._accordion._pattern2 > *:first-child:after {
  width: 13px;
  height: 13px;
  border: 1px solid #c8172f;
  -webkit-transform: none;
  transform: none;
  top: 0;
  right: 0;
}

.productListSideFilter ._accordion.__accordion-active > *:first-child {
  position: relative;
}

.productListSideFilter ._accordion.__accordion-active > *:first-child:after {
  -webkit-transform: rotate(225deg) translate(-2px, -2px);
  transform: rotate(225deg) translate(-2px, -2px);
}

.productListSideFilter ._accordion.__accordion-active._pattern2 > *:first-child {
  position: relative;
}

.productListSideFilter ._accordion.__accordion-active._pattern2 > *:first-child:before {
  background-image: -webkit-linear-gradient(top, rgba(200, 23, 47, 0) 4px, #c8172f 4px, #c8172f 5px, rgba(200, 23, 47, 0) 5px);
  background-image: linear-gradient(to bottom, rgba(200, 23, 47, 0) 4px, #c8172f 4px, #c8172f 5px, rgba(200, 23, 47, 0) 5px);
}

.productListSideFilter ._accordion.__accordion-active._pattern2 > *:first-child:after {
  -webkit-transform: none;
  transform: none;
}

.productListSideFilter .supportAreaWrap {
  margin-top: 30px;
}

#zeta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  padding: 0;
}

@media screen and (max-width: 599px) {
  #zeta {
    width: 100%;
    font-size: 16px;
    background-color: #fff;
  }
  #zeta[close="false"] {
    height: calc(100vh - 60px);
    margin-top: 60px;
    top: 0;
    left: 0;
    position: fixed;
    overflow-y: scroll;
    z-index: 999999999999999;
  }
}

@media screen and (min-width: 600px), print {
  #zeta {
    position: relative;
    background-color: #F5F5F5;
    padding: 20px 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

#zeta #btn-area-wrap {
  border-bottom: 1px solid #ccc;
  height: 59px;
  position: fixed;
  top: 0;
  left: 0;
}

@media screen and (min-width: 600px), print {
  #zeta #btn-area-wrap {
    display: none;
  }
}

#zeta #zs_mod_form {
  background-color: #fff;
}

@media screen and (max-width: 599px) {
  #zeta #zs_mod_form {
    padding: 0 5%;
    max-width: 100%;
    height: auto;
    overflow: visible;
    position: relative;
  }
}

@media screen and (min-width: 600px), print {
  #zeta #zs_mod_form {
    background-color: rgba(245, 245, 245, 0.5);
  }
}

#zeta #zs_mod_form > div:first-of-type {
  margin-top: 10px;
}

#zeta #zs_mod_form > div + div {
  margin-top: 15px;
}

#zeta #zs_mod_form .index {
  width: 100% !important;
}

#zeta #zs_mod_form .item-name {
  width: 100% !important;
}

@media screen and (max-width: 599px) {
  #zeta #zs_mod_form .item-name {
    padding: 15px 0 !important;
  }
}

@media screen and (max-width: 599px) {
  #zeta #zs_mod_form .tree {
    padding: 0;
  }
}

#zeta #zs_mod_form .tree .index:not([close="false"]) .accordion > div {
  margin: 0;
}

#zeta #zs_mod_form .tree .item-name {
  font-weight: 400;
}

#zeta #zs_mod_form .accordion {
  padding-left: 0;
}

@media screen and (max-width: 599px) {
  #zeta #zs_mod_form .accordion {
    border-bottom: 1px solid #ccc;
  }
}

#zeta #zs_mod_form .accordion .accordion {
  padding-left: 20px;
}

@media screen and (max-width: 599px) {
  #zeta #zs_mod_form .accordion .accordion {
    border-top: 1px solid #ccc;
    border-bottom: 0;
  }
}

@media screen and (max-width: 599px) {
  #zeta #zs_mod_form .accordion:not([close="true"]) > div:not(.tree) {
    padding: 15px 0;
  }
}

@media screen and (max-width: 599px) {
  #zeta #zs_mod_form div:not(.tree) > .index > input[type="checkbox"]:not(:checked) ~ .accordion > div:not(.tree):nth-child(n+7) {
    padding: 0;
  }
  #zeta #zs_mod_form div:not(.tree) > .index > input[type="checkbox"]:not(:checked) ~ .accordion > div:not(.tree):nth-child(6) {
    height: auto;
  }
}

#zeta #zs_mod_form div:not(.tree) > .index > .item-name {
  border-bottom: 1px solid #CCCCCC;
  padding: 15px 0;
}

@media screen and (min-width: 600px), print {
  #zeta #zs_mod_form div:not(.tree) > .index > .item-name {
    margin-bottom: 10px;
    padding: 10px 0;
  }
}

#zeta #zs_mod_form input[type="checkbox"] + .item-name label {
  position: relative;
  padding: 0 1em 0 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1.4;
}

#zeta #zs_mod_form .index input:checked ~ .accordion:not([close="true"]) > div,
#zeta #zs_mod_form .index:not([close="true"]) .brnd_cd .accordion > div:nth-child(-n+8) {
  line-height: 1.6;
}

@media screen and (min-width: 600px), print {
  #zeta #zs_mod_form .index input:checked ~ .accordion:not([close="true"]) > div,
  #zeta #zs_mod_form .index:not([close="true"]) .brnd_cd .accordion > div:nth-child(-n+8) {
    margin: 1em 0;
  }
}

#zeta #zs_mod_form .index input:checked ~ .accordion:not([close="true"]) > div .accordion:not([close="true"]),
#zeta #zs_mod_form .index:not([close="true"]) .brnd_cd .accordion > div:nth-child(-n+8) .accordion:not([close="true"]) {
  margin-top: 10px;
}

@media screen and (min-width: 600px), print {
  #zeta #zs_mod_form .index input:checked ~ .accordion:not([close="true"]) > div .accordion:not([close="true"]) > div,
  #zeta #zs_mod_form .index:not([close="true"]) .brnd_cd .accordion > div:nth-child(-n+8) .accordion:not([close="true"]) > div {
    margin: 1em 0;
  }
}

#zeta #zs_mod_form input[type="checkbox"] + .item-name label::after {
  content: "";
  margin: auto 0;
  border-right: 1px solid;
  border-bottom: 1px solid;
  width: 6px;
  height: 6px;
  color: #c8172f;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2px;
}

#zeta #zs_mod_form input[type="checkbox"]:checked + .item-name > label::after,
#zeta #zs_mod_form .index:not([close="true"]) > input[type="checkbox"]:checked + .item-name > label::after,
#zeta #zs_mod_form .brnd_cd .index:not([close="true"]) > .item-name > div > label::after,
#zeta #zs_mod_form .index:not([close="true"]) > input[type="checkbox"]:checked + .item-name > div > label::after,
#zeta #zs_mod_form input[type="checkbox"]:not([id*="_open"]):checked + .item-name label::after {
  content: "";
  color: #c8172f;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

@media screen and (max-width: 599px) {
  #zeta #zs_mod_form .bi > .index:not([close="true"]) > .item-name > label::after {
    content: "";
    color: #c8172f;
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
  }
}

#zeta #zs_mod_form .accordion-open label:after {
  opacity: 0;
}

@media screen and (max-width: 599px) {
  #zeta #zs_mod_form .tree .index:not([close="true"]) .accordion-open::after,
  #zeta #zs_mod_form .index[close="true"] div.accordion-open::after,
  #zeta #zs_mod_form .item-name .accordion-open::after,
  #zeta #zs_mod_form .tree > .index[close="false"] .accordion-open::after,
  #zeta #zs_mod_form input[type="checkbox"]:checked + .accordion-open::after {
    content: "" !important;
  }
}

#zeta #zs_mod_form .parent-cb,
#zeta #zs_mod_form .view-cb {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 30px;
  line-height: 1.4;
}

#zeta #zs_mod_form .parent-cb::after, #zeta #zs_mod_form input[type="checkbox"] {
  margin-left: 0;
}

#zeta #zs_mod_form .parent-cb::before,
#zeta #zs_mod_form [status="none"] .parent-cb::before,
#zeta #zs_mod_form input[type="checkbox"]::before,
#zeta #zs_mod_form input[type="checkbox"] + .view-cb::before {
  content: "";
  display: block;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  width: 12px;
  height: 4px;
  margin: auto 0;
  opacity: 0;
  -webkit-transform: rotate(-37deg);
  transform: rotate(-37deg);
  z-index: 1;
  position: absolute;
  top: -4px;
  bottom: 0;
  left: 4px;
}

#zeta #zs_mod_form .parent-cb::after,
#zeta #zs_mod_form [status="none"] .parent-cb::after,
#zeta #zs_mod_form input[type="checkbox"]::after,
#zeta #zs_mod_form input[type="checkbox"] + .view-cb::after {
  margin: auto 0;
  width: 20px;
  height: 20px;
  background-color: #fff;
  color: #fff;
  border: 1px solid #C8C8C8;
  border-radius: 3px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}

#zeta #zs_mod_form [status="all"].parent-cb::before,
#zeta #zs_mod_form .index ~ div input:checked + .view-cb::before,
#zeta #zs_mod_form .index input:checked + .view-cb::before,
#zeta #zs_mod_form .index input:checked + .view-cb::before {
  opacity: 1;
}

#zeta #zs_mod_form [status="all"].parent-cb::after,
#zeta #zs_mod_form .index ~ div input:checked + .view-cb::after,
#zeta #zs_mod_form .index input:checked + .view-cb::after,
#zeta #zs_mod_form .index input:checked + .view-cb::after {
  content: "";
  background-color: #c8172f;
}

#zeta #zs_mod_form .more_brand, #zeta #zs_mod_form .more_accordion {
  background: none;
  font-weight: normal;
  text-decoration: underline;
}

@media screen and (max-width: 599px) {
  #zeta #zs_mod_form .more_brand, #zeta #zs_mod_form .more_accordion {
    border: 0;
    margin-top: 20px;
  }
}

#zeta #zs_mod_form .more_brand:after, #zeta #zs_mod_form .more_accordion:after {
  background: none !important;
  text-decoration: underline;
}

#zeta #zs_mod_form .ui-widget-header {
  background-color: #c8172f;
}

#zeta #zs_mod_form .price #price_range {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

#zeta #zs_mod_form .price #price_range div {
  width: calc(100% - 20px);
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

#zeta #zs_mod_form .price #price_range div + div {
  margin-top: 1em;
}

#zeta #zs_mod_form .price #price_range input {
  margin-right: 10px;
  width: calc(100% - 30px);
}

@media screen and (min-width: 600px), print {
  #zeta #zs_mod_form div.etc > .index > .item-name {
    padding: 0;
  }
}

@media screen and (max-width: 599px) {
  #zeta #zs_mod_form div.etc > .index ~ div {
    border-bottom: 1px solid #ccc;
    padding: 15px 0;
  }
}

@media screen and (min-width: 600px), print {
  #zeta #zs_mod_form div.etc > .index ~ div {
    margin: 1em 0;
  }
}

@media screen and (max-width: 599px) {
  #zeta #zs_mod_form #background-btn {
    width: 90%;
    margin: 0 auto;
    bottom: 50px;
    left: 0;
    right: 0;
  }
}

@media screen and (min-width: 600px), print {
  #zeta #zs_mod_form #background-btn {
    background-color: rgba(245, 245, 245, 0.5);
  }
}

#zeta #zs_mod_form #zs_search {
  border-radius: 100px;
  padding: 10px 0;
  width: 100%;
  background-color: #c8172f;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 599px) {
  #zeta .more_brand, #zeta .more_accordion {
    color: #c8172f;
  }
  #zeta .more_brand:after, #zeta .more_accordion:after {
    color: #c8172f !important;
  }
}

#zeta .supportAreaWrap {
  margin-top: 20px;
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
  -ms-flex-order: 4;
  order: 4;
}

@media screen and (max-width: 599px) {
  #zeta .supportAreaWrap {
    padding: 0 5% 200px 5%;
  }
}

#zeta .supportAreaWrap .item-name {
  border-bottom: 1px solid #CCCCCC;
}

@media screen and (max-width: 599px) {
  #zeta .supportAreaWrap .item-name {
    margin: 0;
    padding: 15px 0;
  }
}

@media screen and (min-width: 600px), print {
  #zeta .supportAreaWrap .item-name {
    margin-bottom: 10px;
  }
}

#zeta .supportAreaWrap a {
  display: block;
  padding: .5em 1em .5em 0;
  font-size: 13px;
  position: relative;
}

@media screen and (max-width: 599px) {
  #zeta .supportAreaWrap a {
    padding: 15px 0;
    border-bottom: 1px solid #ccc;
    font-size: 14px;
  }
}

#zeta .supportAreaWrap a:after {
  content: "";
  margin: auto 0;
  border-top: 1px solid;
  border-right: 1px solid;
  width: 6px;
  height: 6px;
  color: #c8172f;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2px;
}

/* ====================================
/.productListSideFilter End
==================================== */
/* ====================================
.productListHeadFilter
==================================== */
@media screen and (max-width: 599px) {
  .productListHeadFilter {
    position: -webkit-sticky;
    position: sticky;
    top: -40px;
    z-index: 1000;
  }
}

@media screen and (min-width: 600px), print {
  .productListHeadFilter {
    margin-top: 25px;
    height: 0;
  }
}

@media screen and (min-width: 600px), print {
  .productListHeadFilter .ly_inner {
    position: relative;
  }
}

@media screen and (min-width: 600px), print {
  .productListHeadFilter .ly_inner .listFilterWrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    right: 0;
    width: calc(100% - 216px - 34px);
  }
}

.productListHeadFilter .ly_inner .view-header {
  font-size: 16px;
}

@media screen and (max-width: 599px) {
  .productListHeadFilter .ly_inner .view-header {
    margin-top: 20px;
  }
}

@media screen and (min-width: 600px), print {
  .productListHeadFilter .ly_inner .view-search {
    display: none;
  }
}

@media screen and (max-width: 599px) {
  .productListHeadFilter .ly_inner .view-search .btnProductSearch {
    width: 100%;
    padding: 10px;
  }
}

.productListHeadFilter .ly_inner .view-filter .clear {
  display: none;
}

@media screen and (max-width: 599px) {
  .productListHeadFilter .ly_inner .view-filter {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .productListHeadFilter .ly_inner .view-filter > * {
    width: calc(50% - 5px);
  }
  .productListHeadFilter .ly_inner .view-filter .clear {
    display: block;
    margin: 10px auto 5px;
  }
  .productListHeadFilter .ly_inner .view-filter .clear .parts_btn {
    padding: 8px 30px;
    min-width: 0;
  }
}

@media screen and (max-width: 599px) {
  .productListHeadFilter .ly_inner button {
    border: none;
    border-radius: 6px;
    color: #fff;
    background-color: #c8172f;
  }
  .productListHeadFilter .ly_inner button::before {
    font-family: 'svgicon' !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    content: "\e912";
    color: #fff;
    font-size: 1.8rem;
    margin-right: 10px;
  }
}

@media screen and (min-width: 600px), print {
  .productListHeadFilter .ly_inner button {
    display: none;
  }
}

@media screen and (max-width: 599px) {
  .productListHeadFilter.-noItem {
    top: 10px;
  }
  .productListHeadFilter.-addSearchBtn {
    top: 0;
    background-color: #fff;
  }
  .productListHeadFilter.-addSearchBtn .listFilterWrapper {
    padding-top: 4%;
  }
  .productListHeadFilter.-addSearchBtn .ly_inner .view-filter {
    margin-top: 0;
  }
  .productListHeadFilter.-addSearchBtn .ly_inner .view-header {
    margin-bottom: 20px;
  }
}

/* ====================================
/ #block-shangpinyilanspjiansuojieguo-binghetie End
==================================== */
/* ====================================
.product-none
==================================== */
.product-none {
  text-align: center;
  padding: 50px 10px;
  margin-bottom: 300px;
  border: 1px solid #666;
}

.product-none span {
  font-size: 14px;
  display: inline-block;
}

.product-none span::before {
  font-family: 'svgicon' !important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  content: "\e90f";
  font-size: 3rem;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  vertical-align: middle;
  margin: 0 0 20px;
}

@media screen and (min-width: 600px), print {
  .product-none span::before {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    display: inline-block;
    margin: 0 20px 0 0;
  }
  .product-none span br {
    display: none;
  }
}

/* ====================================
.product-list Start
==================================== */
.product-list {
  margin-top: 20px;
  padding-top: 20px;
}

@media screen and (max-width: 599px) {
  .product-list {
    position: relative;
  }
  .product-list:before {
    content: "";
    border-top: 1px solid #cccccc;
    width: calc(100% + 30px);
    margin-left: -15px;
    position: absolute;
    top: 0;
    left: 0;
  }
}

@media screen and (min-width: 600px), print {
  .product-list {
    border-top: 1px solid #cccccc;
    padding-top: 30px;
    margin-top: 70px;
  }
}

.product-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: solid 1px #cccccc;
  position: relative;
  padding-bottom: 30px;
  /* 画像幅指定用変数 */
  /* ------------------------------------
.imageWrapper Start
------------------------------------ */
  /* ------------------------------------
.imageWrapper End
------------------------------------ */
  /* ------------------------------------
.informationWrapper Start
------------------------------------ */
}

.product-item + .product-item {
  margin-top: 30px;
}

@media screen and (min-width: 600px), print {
  .product-item + .product-item {
    margin-top: 30px;
  }
}

@media screen and (max-width: 599px) {
  .product-item {
    padding-bottom: 130px;
  }
}

@media screen and (min-width: 600px), print {
  .product-item {
    text-align: left;
    padding-bottom: 30px;
    position: relative;
  }
}

.product-item:not(.show):nth-child(n + 30) {
  display: none;
}

.product-item .imageWrapper {
  width: 29%;
}

@media screen and (min-width: 600px), print {
  .product-item .imageWrapper {
    width: 272px;
  }
}

.product-item .imageWrapper > * {
  width: 100%;
}

.product-item .imageWrapper img {
  margin: 0 auto;
  max-width: 100%;
}

@media screen and (max-width: 599px) {
  .product-item .product-image {
    padding-top: 0;
  }
}

.product-item .brand-logo {
  margin-top: 20px;
  text-align: center;
}

@media screen and (max-width: 599px) {
  .product-item .informationWrapper {
    width: calc(100% - 29% - 20px);
  }
}

@media screen and (min-width: 600px), print {
  .product-item .informationWrapper {
    width: calc(100% - 272px - 20px);
  }
  .product-item .informationWrapper:after {
    content: "";
    display: block;
    clear: both;
  }
}

@media screen and (max-width: 599px) {
  .product-item .product-brand p {
    font-size: 14px;
  }
}

.product-item .product-name {
  margin-top: 15px;
  line-height: 1.6;
  font-size: 16px;
}

.product-item .product-name * {
  font-weight: bold;
}

@media screen and (min-width: 600px), print {
  .product-item .product-name {
    margin-top: 15px;
    font-size: 16px;
  }
}

.product-item .product-description {
  margin-top: 20px;
  line-height: 1.6;
}

@media screen and (max-width: 599px) {
  .product-item .product-description p {
    font-size: 14px;
  }
}

@media screen and (min-width: 600px), print {
  .product-item .product-description {
    margin-top: 20px;
  }
}

@media screen and (min-width: 600px), print {
  .product-item .product-quasidrug {
    color: #999;
  }
  .product-item .product-quasidrug.product-display-hover {
    display: none;
  }
}

@media screen and (min-width: 600px), print {
  .product-item .product-category {
    color: #666;
  }
}

.product-item .product-category p {
  font-size: 11px;
  display: block;
  margin-right: 0;
}

@media screen and (min-width: 600px), print {
  .product-item .product-category p {
    display: inline;
    margin-right: 1em;
  }
}

.product-item .product-category p:nth-child(1) {
  display: none;
}

.product-item .product-tag {
  min-height: 2em;
}

@media screen and (min-width: 600px), print {
  .product-item .product-tag li {
    font-size: 13px;
    display: inline-block;
    color: #808080;
  }
  .product-item .product-tag li + li {
    margin-left: 1em;
  }
}

.product-item .product-price {
  margin-top: 14px;
}

@media screen and (min-width: 600px), print {
  .product-item .product-price br {
    display: none;
  }
}

.product-item .product-price em {
  font-weight: bold;
}

@media screen and (min-width: 600px), print {
  .product-item .product-price em {
    display: inline-block;
  }
}

@media screen and (min-width: 600px), print {
  .product-item .product-price span {
    font-size: 85%;
  }
}

.product-item .product-rating .point-icon {
  padding-left: 75px;
}

@media screen and (min-width: 600px), print {
  .product-item .product-rating .point-icon {
    padding-left: 100px;
    font-style: normal;
  }
  .product-item .product-rating .point-icon span {
    display: none;
  }
}

.product-item .product-free-icon {
  top: 0;
  right: 0;
  width: 24px;
  height: 20px;
  background-size: 24px 20px;
}

@media screen and (min-width: 600px), print {
  .product-item .product-free-icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 27px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    background: url(/omiseplus/shared/assets/img/drupal/icon_heart.png) no-repeat center;
    display: none;
  }
}

@media screen and (max-width: 599px) {
  .product-item .product-free-icon.off {
    background-size: 24px 20px;
  }
}

@media screen and (min-width: 600px), print {
  .product-item .product-free-icon.off {
    background: url(/omiseplus/shared/assets/img/drupal/icon_heart_off.png) no-repeat center;
  }
}

.product-item .productTypeAndLimitedWrapper {
  margin-top: 16px;
}

.product-item .productTypeAndLimitedWrapper > * {
  display: inline-block;
  vertical-align: middle;
}

.product-item .productTypeAndLimitedWrapper > * + * {
  margin-left: 14px;
}

@media screen and (min-width: 600px), print {
  .product-item .productTypeAndLimitedWrapper p {
    font-size: 12px;
  }
}

.product-item .product-limited p {
  border: 1px solid;
  padding: 7px;
  color: #c8172f;
}

.product-item .btnWrapper {
  margin-top: 30px;
  max-width: 100%;
  float: right;
}

@media screen and (max-width: 599px) {
  .product-item .btnWrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    position: absolute;
    bottom: 55px;
    right: 0;
    width: 100%;
  }
}

@media screen and (min-width: 600px), print {
  .product-item .btnWrapper {
    margin-top: 30px;
    width: 300px;
  }
}

.product-item .parts_btn {
  min-width: 0;
}

@media screen and (max-width: 599px) {
  .product-item .parts_btn {
    padding-left: 10px;
    padding-right: 20px;
    width: auto;
    margin: 0;
    width: 37%;
    min-width: 130px;
  }
  .product-item .parts_btn + .parts_btn {
    margin-left: 10px;
    width: 46%;
    min-width: 150px;
  }
}

@media screen and (min-width: 600px), print {
  .product-item .parts_btn {
    width: 100%;
  }
  .product-item .parts_btn + .parts_btn {
    margin-top: 20px;
  }
}

@media screen and (min-width: 600px), print {
  .product-item .campaign-now {
    display: none !important;
  }
}

.product-item .campaign-now p a {
  position: static;
  width: 34.2%;
  padding-top: 0;
  padding-bottom: 0;
}

@media screen and (max-width: 599px) {
  .product-item .campaign-now p a {
    margin-left: 2.9%;
    margin-top: 10px;
    float: right;
    height: 36px;
    font-size: 11px;
    line-height: 34px;
  }
}

@media screen and (min-width: 600px), print {
  .product-item .campaign-now p a {
    width: 160px;
    text-align: center;
    position: absolute;
    bottom: 28px;
    right: 0;
    border: solid 1px #ccc;
    border-radius: 5px;
    padding: 6px 0;
    color: #df0269;
  }
}

@media screen and (min-width: 600px), print {
  .product-item .views-field-field-is-comming-soon {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
  }
}

.product-item .views-field-field-is-comming-soon .field-content p {
  background-size: 50px 50px;
}

@media screen and (min-width: 600px), print {
  .product-item .views-field-field-is-comming-soon .field-content p {
    display: inline-block !important;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    width: 64px;
    height: 64px;
    background: url(/omiseplus/shared/assets/img/drupal/ico_comingsoon.png) left top no-repeat;
    background-size: 64px 64px;
  }
}

.product-item .views-field-field-is-new {
  position: absolute;
  top: 0;
  left: 0;
}

.product-item .views-field-field-is-new .field-content p {
  display: inline-block !important;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  width: 64px;
  height: 64px;
  background: url(/omiseplus/shared/assets/img/drupal/ico_new.png) left top no-repeat;
  background-size: 64px 64px;
}

@media screen and (max-width: 599px) {
  .product-item .views-field-field-is-new .field-content p {
    width: 32px;
    height: 32px;
    background-size: 32px 32px;
  }
}

/* ------------------------------------
/ .product-item End
------------------------------------ */
/* ====================================
/ .product-list End
==================================== */
@media screen and (max-width: 599px) {
  .productsMoreWrapper {
    margin: 50px 0 130px;
  }
}

@media screen and (min-width: 600px), print {
  .productsMoreWrapper {
    margin-top: 30px;
  }
}

.productsMoreWrapper .products-more {
  display: none;
  width: 300px;
}

.productsMoreWrapper .products-more:after {
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
}

.productsMoreWrapper .pagenationWrapper {
  display: none;
  margin-top: 50px;
}

.productsMoreWrapper .pagenationWrapper .parts_btn {
  width: 300px;
}

.productsMoreWrapper .pagenationWrapper .omsPagenation {
  margin-top: 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

/* =========================================================================

商品詳細(C-02) ここから

========================================================================= */
/* ====================================
/ .productDetailContainer Start
==================================== */
.productDetailContainer {
  margin-top: 20px;
}

@media screen and (min-width: 600px), print {
  .productDetailContainer {
    margin-top: 50px;
  }
}

@media screen and (min-width: 600px), print {
  .productDetailContainer > .ly_inner:after {
    content: "";
    display: block;
    clear: both;
  }
  .productDetailContainer > .ly_inner > .pcL {
    float: left;
    width: 440px;
  }
  .productDetailContainer > .ly_inner > .pcR {
    float: right;
    width: calc(100% - 440px - 50px);
  }
}

@media screen and (min-width: 599px) and (max-width: 960px) {
  .productDetailContainer > .ly_inner > .pcL {
    margin: 20px auto 20px;
    float: none;
  }
  .productDetailContainer > .ly_inner > .pcR {
    margin: 0 auto;
    width: 440px;
    float: none;
  }
}

/* ------------------------------------
.produstNameWrapper Start
------------------------------------ */
.productNameWrapper .product-brand {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.productNameWrapper .product-brand-txt {
  margin-left: 20px;
}

.productNameWrapper .product-name {
  margin-top: 15px;
}

.productNameWrapper .product-name h2 {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
}

.productNameWrapper .product-quasidrug {
  margin-top: 10px;
}

.productNameWrapper .product-quasidrug p {
  font-size: 12px;
}

/* ------------------------------------
/.produstNameWrapper End
------------------------------------ */
/* ------------------------------------
.produstImageWrapper Start
------------------------------------ */
.produstImageWrapper {
  position: relative;
}

@media screen and (max-width: 599px) {
  .produstImageWrapper {
    margin: 30px 20px 0;
  }
}

.produstImageWrapper #productImageSlider .sliderItem {
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 599px) {
  .produstImageWrapper #productImageSlider .sliderItem {
    height: calc(100vw - 80px);
  }
}

@media screen and (min-width: 600px), print {
  .produstImageWrapper #productImageSlider .sliderItem {
    width: 440px;
    height: 440px;
  }
}

.produstImageWrapper #productImageSlider .sliderItem img {
  margin: auto;
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

@supports ((-o-object-fit: cover) or (object-fit: cover)) {
  .produstImageWrapper #productImageSlider .sliderItem img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.produstImageWrapper .product-comment {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.5;
}

@media screen and (min-width: 600px), print {
  .produstImageWrapper .product-comment {
    margin-top: 20px;
  }
}

.produstImageWrapper .slick-dots {
  display: none !important;
}

.produstImageWrapper .views-field-field-is-new {
  position: absolute;
  top: 0;
  left: 0;
}

.produstImageWrapper .views-field-field-is-new .field-content p {
  display: inline-block !important;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  width: 64px;
  height: 64px;
  background: url(/omiseplus/shared/assets/img/drupal/ico_new.png) left top no-repeat;
  background-size: 64px 64px;
}

/* ------------------------------------
/.produstImageWrapper End
------------------------------------ */
/* ------------------------------------
.produstDescriptionWrapper Start
------------------------------------ */
.produstDescriptionWrapper {
  margin-top: 20px;
}

.produstDescriptionWrapper .product-description p {
  line-height: 1.8;
}

.produstDescriptionWrapper .product-category {
  margin-top: 20px;
}

.produstDescriptionWrapper .product-category p {
  font-size: 12px;
}

.produstDescriptionWrapper .product-annotation {
  margin-top: 20px;
}

.produstDescriptionWrapper .product-annotation p {
  font-size: 12px;
  line-height: 2;
}

@media screen and (min-width: 600px), print {
  .produstDescriptionWrapper .product-annotation p {
    line-height: 1.5;
  }
}

.produstDescriptionWrapper .product-price {
  margin-top: 20px;
}

@media screen and (min-width: 600px), print {
  .produstDescriptionWrapper .product-price {
    margin-top: 40px;
  }
}

.produstDescriptionWrapper .product-price p {
  font-weight: bold;
  font-size: 20px;
}

.produstDescriptionWrapper .product-price .taxIncluded-msg {
  font-size: 14px;
}

.produstDescriptionWrapper .product-price .product-capacity {
  font-size: 12px;
}

.produstDescriptionWrapper .select-header {
  font-size: 16px;
  font-weight: bold;
}

.produstDescriptionWrapper .select-header span {
  font-size: 12px;
  font-weight: normal;
}

@media screen and (max-width: 599px) {
  .produstDescriptionWrapper .select-header span {
    display: block;
    margin-top: 20px;
  }
}

.produstDescriptionWrapper .product-select {
  margin-top: 25px;
}

.produstDescriptionWrapper .product-select .product-select-wrapper {
  margin-top: 20px;
}

.produstDescriptionWrapper .product-select .product-select-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid #CCCCCC;
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
  cursor: pointer;
  position: relative;
}

.produstDescriptionWrapper .product-select .product-select-item.disabled {
  pointer-events: none !important;
}

.produstDescriptionWrapper .product-select .product-select-item.disabled:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #666;
  position: absolute;
  top: 0;
  left: 0;
  opacity: .3;
}

.produstDescriptionWrapper .product-select .product-select-item:before {
  content: "";
  display: block;
  margin: auto;
  border: 3px solid #c8172f;
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
  pointer-events: none;
}

@media screen and (min-width: 600px), print {
  .produstDescriptionWrapper .product-select .product-select-item {
    padding: 24px;
  }
  .produstDescriptionWrapper .product-select .product-select-item:hover {
    background-color: rgba(200, 23, 47, 0.05);
  }
}

.produstDescriptionWrapper .product-select .product-select-item.select:before {
  opacity: 1;
}

.produstDescriptionWrapper .product-select .product-select-item .select-img {
  width: 100px;
  height: 100px;
  position: relative;
}

.produstDescriptionWrapper .product-select .product-select-item .select-img img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

@supports ((-o-object-fit: cover) or (object-fit: cover)) {
  .produstDescriptionWrapper .product-select .product-select-item .select-img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.produstDescriptionWrapper .product-select .product-select-item .txtWrap {
  width: calc(100% - 100px - 10px);
}

.produstDescriptionWrapper .product-select .product-select-item .select-name {
  font-weight: bold;
  line-height: 1.6;
}

.produstDescriptionWrapper .product-select .product-select-item .select-description {
  margin-top: 10px;
  line-height: 1.8;
}

@media screen and (min-width: 600px), print {
  .produstDescriptionWrapper .product-select .product-select-item .select-description {
    margin-top: 15px;
  }
}

.produstDescriptionWrapper .product-select .product-select-item .select-uvprotect-capacity {
  margin-top: 10px;
}

@media screen and (min-width: 600px), print {
  .produstDescriptionWrapper .product-select .product-select-item .select-uvprotect-capacity {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 15px;
  }
}

.produstDescriptionWrapper .product-select .product-select-item .select-uvprotect-capacity p {
  font-size: 12px;
}

@media screen and (min-width: 600px), print {
  .produstDescriptionWrapper .product-select .product-select-item .select-uvprotect {
    width: calc(100% - 100px);
  }
}

.produstDescriptionWrapper .product-select .product-select-item .campaign-tag {
  margin-top: 5px;
}

@media screen and (min-width: 600px), print {
  .produstDescriptionWrapper .product-select .product-select-item .campaign-tag {
    margin-top: 10px;
  }
}

.produstDescriptionWrapper .product-select .product-select-item .select-sales-name {
  margin-top: 10px;
  font-size: 12px;
}

.produstDescriptionWrapper .product-select-color {
  margin-top: 40px;
}

@media screen and (max-width: 599px) {
  .produstDescriptionWrapper .product-select-color {
    background-color: #F5F5F5;
    padding: 30px 20px 30px;
    width: 100%;
    margin-left: -20px;
  }
}

@media screen and (min-width: 600px), print {
  .produstDescriptionWrapper .product-select-color {
    margin-top: 25px;
  }
}

@media screen and (max-width: 599px) {
  .produstDescriptionWrapper .product-select-color .color-selector {
    margin-top: 10px;
  }
}

.produstDescriptionWrapper .product-select-color .color-selector a {
  padding-left: 0;
  padding-right: 0;
  max-width: 100%;
  width: 226px;
  min-width: 0;
}

.produstDescriptionWrapper .product-select-color-main {
  margin-top: 10px;
}

.produstDescriptionWrapper .product-select-color-main .product-select-color-main-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
}

.produstDescriptionWrapper .product-select-color-main .product-select-color-main-item:focus {
  outline: none !important;
}

.produstDescriptionWrapper .product-select-color-main .product-select-color-main-item.disabled {
  pointer-events: none !important;
}

.produstDescriptionWrapper .product-select-color-main .product-select-color-main-item.disabled:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #666;
  position: absolute;
  top: 0;
  left: 0;
  opacity: .3;
}

.produstDescriptionWrapper .product-select-color-main .product-select-color-main-item .select-img {
  width: 100px;
  height: auto;
  position: relative;
}

.produstDescriptionWrapper .product-select-color-main .product-select-color-main-item .select-img img {
  width: 100%;
  height: auto;
}

.produstDescriptionWrapper .product-select-color-main .product-select-color-main-item .txtWrap {
  width: calc(100% - 100px - 10px);
  max-width: 100% !important;
  margin: 0;
}

.produstDescriptionWrapper .product-select-color-main .product-select-color-main-item .txtWrap .select-name {
  font-weight: bold;
}

.produstDescriptionWrapper .product-select-color-main .product-select-color-main-item .txtWrap .select-date {
  color: #c8172f;
}

.produstDescriptionWrapper .product-select-color-main .product-select-color-main-item .txtWrap .select-uvprotect {
  font-size: 12px;
}

.produstDescriptionWrapper .product-select-color-main .product-select-color-main-item .txtWrap .campaign-tag {
  margin-top: 0;
}

.produstDescriptionWrapper .product-select-color-thumbnail {
  margin-top: 32px;
  margin-bottom: 40px;
}

.produstDescriptionWrapper .product-select-color-thumbnail .slick-dots {
  bottom: -25px;
}

.produstDescriptionWrapper .product-select-color-thumbnail .slick-dots li.slick-active button {
  background-color: #c8172f;
}

.produstDescriptionWrapper .product-select-color-thumbnail .slick-dots li.slick-active button:focus {
  outline: none;
}

.produstDescriptionWrapper .product-select-color-main-thumbnail-item {
  border: 1px solid #ccc;
  margin-right: 10px;
  padding: 19px;
  width: calc(100vw / 3 - 20px);
  min-height: 170px;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  -webkit-transition: background .3s;
  transition: background .3s;
}

.produstDescriptionWrapper .product-select-color-main-thumbnail-item:focus {
  outline: none !important;
}

.produstDescriptionWrapper .product-select-color-main-thumbnail-item.disabled {
  pointer-events: none !important;
}

.produstDescriptionWrapper .product-select-color-main-thumbnail-item.disabled:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #666;
  position: absolute;
  top: 0;
  left: 0;
  opacity: .3;
}

@media screen and (min-width: 600px), print {
  .produstDescriptionWrapper .product-select-color-main-thumbnail-item {
    width: 110px;
  }
  .produstDescriptionWrapper .product-select-color-main-thumbnail-item:hover {
    background-color: rgba(200, 23, 47, 0.05);
  }
}

.produstDescriptionWrapper .product-select-color-main-thumbnail-item:before {
  content: "";
  display: block;
  margin: auto;
  border: 2px solid #c8172f;
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
  pointer-events: none;
}

.produstDescriptionWrapper .product-select-color-main-thumbnail-item.thumbnail-current:before {
  opacity: 1;
}

.produstDescriptionWrapper .product-select-color-main-thumbnail-item .select-img {
  position: relative;
  max-width: 100%;
  width: 100%;
  height: auto;
}

@media screen and (min-width: 600px), print {
  .produstDescriptionWrapper .product-select-color-main-thumbnail-item .select-img {
    width: 70px;
    height: auto;
  }
}

.produstDescriptionWrapper .product-select-color-main-thumbnail-item .select-img img {
  width: 100%;
  height: auto;
}

.produstDescriptionWrapper .product-select-color-main-thumbnail-item .select-name {
  margin-top: 10px;
  font-weight: bold;
  text-align: center;
}

.produstDescriptionWrapper .product-select-color-main-thumbnail-item .campaign-tag {
  margin: 5px 0 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.produstDescriptionWrapper .product-select-color-main-thumbnail-item .campaign-tag span {
  margin: 2px;
  font-size: 10px;
  padding: 2px 5px;
  height: 19px;
}

.produstDescriptionWrapper .product-attention {
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.5;
  color: #808080;
}

.produstDescriptionWrapper .views-field-field-purchase-inf {
  margin-top: 10px;
}

.produstDescriptionWrapper .views-field-field-purchase-inf p {
  font-weight: bold;
}

.produstDescriptionWrapper .views-field-field-purchase-inf span {
  display: none;
}

.produstDescriptionWrapper .views-field-field-purchase-inf span:not([class]) {
  font-size: 12px;
  font-weight: normal;
  color: #808080;
}

.produstDescriptionWrapper .product-allergies {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 25px;
  padding-left: 35%;
}

@media screen and (min-width: 600px), print {
  .produstDescriptionWrapper .product-allergies {
    padding-left: 170px;
  }
}

.produstDescriptionWrapper .product-allergies > ul {
  display: inline-block;
}

.produstDescriptionWrapper .product-allergies .allergies-item {
  text-indent: -12px;
  padding-left: 12px;
  font-size: 12px;
  line-height: 1.5;
}

.produstDescriptionWrapper .product-allergies .allergies-item:before {
  content: "※";
}

.produstDescriptionWrapper .product-allergies + .product-purchase {
  margin-top: 5px;
}

.produstDescriptionWrapper .product-purchase {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 25px;
}

@media screen and (max-width: 599px) {
  .produstDescriptionWrapper .product-purchase .product-purchase-btn {
    width: 66%;
  }
  .produstDescriptionWrapper .product-purchase .product-purchase-btn .parts_btn {
    margin-left: 10px;
    min-width: 110px;
  }
}

@media screen and (max-width: 599px) {
  .produstDescriptionWrapper .product-purchase .product-number {
    width: calc(33% - 10px);
  }
}

.produstDescriptionWrapper .product-promotional-msg {
  margin-top: 25px;
}

.produstDescriptionWrapper .product-promotional-msg li {
  color: #c8172f;
  padding-left: 15px;
  text-indent: -15px;
}

.produstDescriptionWrapper .product-promotional-msg li + li {
  margin-top: 5px;
}

.produstDescriptionWrapper .product-promotional-msg li:before {
  content: "";
  display: inline-block;
  margin: 3px 3px 0 0;
  border-radius: 50%;
  border: double 3px;
  width: 12px;
  height: 12px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.produstDescriptionWrapper .product-promotional-msg li a {
  color: #c8172f;
  padding-right: 10px;
  position: relative;
}

.produstDescriptionWrapper .product-promotional-msg li a:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #c8172f;
  border-right: 1px solid #c8172f;
  position: absolute;
  bottom: 7px;
  right: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.produstDescriptionWrapper .product-promotional-msg li a:after {
  content: "詳しくは";
  margin-left: 10px;
  color: #666;
  text-indent: 0;
}

@media screen and (min-width: 600px), print {
  .produstDescriptionWrapper .product-promotional-msg li a:after {
    content: "詳しくはこちら";
  }
}

@media screen and (min-width: 600px), print {
  .produstDescriptionWrapper .product-promotional-msg li a:hover:after {
    text-decoration: underline;
  }
}

.produstDescriptionWrapper .product-cp {
  margin-top: 20px;
}

.produstDescriptionWrapper .product-cp:not(.slick-initialized) {
  height: 160px;
}

.produstDescriptionWrapper .product-cp .product-cp-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #CCCCCC;
  padding-left: 100px;
  min-height: 100px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

@media screen and (min-width: 600px), print {
  .produstDescriptionWrapper .product-cp .product-cp-item {
    padding-left: 160px;
    min-height: 160px;
  }
}

.produstDescriptionWrapper .product-cp .img {
  position: absolute;
  width: 100px;
  min-height: 100px;
  height: 100%;
  left: 0;
  top: 0;
}

@media screen and (min-width: 600px), print {
  .produstDescriptionWrapper .product-cp .img {
    width: 160px;
    min-height: 160px;
    height: 100%;
  }
}

.produstDescriptionWrapper .product-cp .img img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

@supports ((-o-object-fit: cover) or (object-fit: cover)) {
  .produstDescriptionWrapper .product-cp .img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.produstDescriptionWrapper .product-cp .product-cp-item-txt {
  padding: 10px 20px 10px 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1.9;
}

@media screen and (max-width: 599px) {
  .produstDescriptionWrapper .product-cp .product-cp-item-txt {
    font-size: 12px;
  }
}

@media screen and (min-width: 600px), print {
  .produstDescriptionWrapper .product-cp .product-cp-item-txt {
    padding: 15px 40px 15px 20px;
  }
}

/* ------------------------------------
/.produstDescriptionWrapper End
------------------------------------ */
/* ------------------------------------
.productDetailTabContainer Start
------------------------------------ */
.productDetailTabContainer {
  margin-top: 40px;
}

.productDetailTabContainer .tabTarget {
  padding-top: 15px;
  /* ------------------------------------
各要素ブロック基本
------------------------------------ */
  /* ------------------------------------
.item-explanation テキストのみ（見出し+テキスト）
------------------------------------ */
  /* ------------------------------------
.item-image 画像のみ
------------------------------------ */
  /* ------------------------------------
.item-select
------------------------------------ */
  /* ------------------------------------
.item-image-text PC左右並び
------------------------------------ */
  /* ------------------------------------
詳細テーブル
------------------------------------ */
}

@media screen and (min-width: 600px), print {
  .productDetailTabContainer .tabTarget {
    padding-top: 50px;
  }
}

.productDetailTabContainer .tabTarget .itemBlock img {
  max-width: 100%;
  height: auto;
}

.productDetailTabContainer .tabTarget .itemBlock + .itemBlock {
  margin-top: 20px;
}

@media screen and (min-width: 600px), print {
  .productDetailTabContainer .tabTarget .itemBlock + .itemBlock {
    margin-top: 30px;
  }
}

.productDetailTabContainer .tabTarget .itemBlock h4 + p, .productDetailTabContainer .tabTarget .itemBlock h4 + h4, .productDetailTabContainer .tabTarget .itemBlock p + p {
  margin-top: 5px;
}

@media screen and (min-width: 600px), print {
  .productDetailTabContainer .tabTarget .itemBlock h4 + p, .productDetailTabContainer .tabTarget .itemBlock h4 + h4, .productDetailTabContainer .tabTarget .itemBlock p + p {
    margin-top: 10px;
  }
}

.productDetailTabContainer .tabTarget .itemBlock p + h4 {
  margin-top: 20px;
}

@media screen and (min-width: 600px), print {
  .productDetailTabContainer .tabTarget .itemBlock p + h4 {
    margin-top: 30px;
  }
}

.productDetailTabContainer .tabTarget .itemBlock h4 {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
}

.productDetailTabContainer .tabTarget .itemBlock p {
  line-height: 1.8;
}

.productDetailTabContainer .tabTarget .item-image {
  text-align: center;
}

.productDetailTabContainer .tabTarget .item-select {
  text-align: center;
}

.productDetailTabContainer .tabTarget .item-select .selectWrap {
  width: 100%;
}

@media screen and (max-width: 599px) {
  .productDetailTabContainer .tabTarget .item-image-text {
    text-align: center;
  }
  .productDetailTabContainer .tabTarget .item-image-text .txtWrap {
    text-align: left;
  }
}

@media screen and (min-width: 600px), print {
  .productDetailTabContainer .tabTarget .item-image-text {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .productDetailTabContainer .tabTarget .item-image-text img {
    max-width: calc(50% - 20px);
  }
}

@media screen and (max-width: 599px) {
  .productDetailTabContainer .tabTarget .item-image-text > *:nth-child(2) {
    margin-top: 20px;
  }
}

@media screen and (min-width: 600px), print {
  .productDetailTabContainer .tabTarget .item-image-text > *:nth-child(2) {
    margin-left: 20px;
  }
}

.productDetailTabContainer .tabTarget .item-detail-table#itemDetailWrap .select:not(._active) {
  display: none;
}

.productDetailTabContainer .tabTarget .item-detail-table .productTable {
  border-top: 1px solid #CCCCCC;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.productDetailTabContainer .tabTarget .item-detail-table .productTable > * {
  border-bottom: 1px solid #CCCCCC;
  padding: 18px 0;
}

.productDetailTabContainer .tabTarget .item-detail-table .productTable dt {
  padding-right: 10px;
  width: 32%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (min-width: 600px), print {
  .productDetailTabContainer .tabTarget .item-detail-table .productTable dt {
    padding-right: 20px;
    width: 320px;
  }
}

.productDetailTabContainer .tabTarget .item-detail-table .productTable dd {
  width: 68%;
}

.productDetailTabContainer .tabTarget .item-detail-table .productTable dd .point {
  width: 90px;
}

@media screen and (min-width: 600px), print {
  .productDetailTabContainer .tabTarget .item-detail-table .productTable dd {
    width: calc(100% - 320px);
  }
}

/* ------------------------------------
/.productDetailTabContainer End
------------------------------------ */
/* ------------------------------------
.productRelated Start
------------------------------------ */
.productRelated {
  margin-top: 20px;
}

@media screen and (min-width: 600px), print {
  .productRelated {
    margin-top: 50px;
  }
}

.productRelated .related_name {
  padding: 15px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  background-color: #1A1A1A;
}

.productRelated .opfSlider {
  margin-top: 20px;
}

@media screen and (min-width: 600px), print {
  .productRelated .opfSlider {
    margin: 30px 20px 0;
  }
}

.productRelated .opfSlider .sliderArrow {
  bottom: auto;
  top: calc((100vw / 3 - 25px) / 2 - 15px);
}

@media screen and (min-width: 600px), print {
  .productRelated .opfSlider .sliderArrow {
    top: calc(206px / 2 - 46px / 2);
  }
}

.productRelated .opfSlider .sliderItem {
  margin-right: 20px;
  width: calc(100vw / 3 - 25px);
}

@media screen and (min-width: 600px), print {
  .productRelated .opfSlider .sliderItem {
    margin-right: 32px;
    width: 206px;
  }
}

.productRelated .opfSlider .product-image {
  width: 100%;
  height: calc(100vw / 3 - 25px);
  position: relative;
}

@media screen and (min-width: 600px), print {
  .productRelated .opfSlider .product-image {
    height: 206px;
  }
}

.productRelated .opfSlider .product-image img {
  margin: auto;
  width: 100%;
  height: auto;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

@supports ((-o-object-fit: cover) or (object-fit: cover)) {
  .productRelated .opfSlider .product-image img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.productRelated .opfSlider .product-image.icon-new::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block !important;
  overflow: hidden;
  width: 64px;
  height: 64px;
  background: url(/omiseplus/shared/assets/img/drupal/ico_new.png) left top no-repeat;
  background-size: 64px 64px;
}

@media screen and (max-width: 599px) {
  .productRelated .opfSlider .product-image.icon-new::after {
    width: 32px;
    height: 32px;
    background-size: 32px 32px;
  }
}

.productRelated .opfSlider .product-txts {
  margin-top: 10px;
}

@media screen and (min-width: 600px), print {
  .productRelated .opfSlider .product-txts {
    margin-top: 18px;
  }
}

.productRelated .opfSlider .product-name {
  line-height: 1.8;
}

.productRelated .opfSlider .product-brand {
  margin-top: 10px;
}

@media screen and (min-width: 600px), print {
  .productRelated .opfSlider .product-brand {
    margin-top: 20px;
  }
}

.productRelated .opfSlider .product-price {
  margin-top: 10px;
  text-align: right;
}

.productRelated .opfSlider .product-price .tax {
  font-size: 12px;
}

@media screen and (max-width: 599px) {
  .productRelated .opfSlider .product-price .tax {
    display: block;
  }
}

@media screen and (min-width: 600px), print {
  .productRelated .opfSlider .product-price {
    margin-top: 20px;
  }
}

/* ------------------------------------
/.productRelated End
------------------------------------ */
/* =========================================================================

モーダル処理

========================================================================= */

@media screen and (max-width: 599px) {
  .lity-container {
    padding-right: 0;
    max-height: 100%;
    max-width: 100%;
    height: 100%;
  }
  .lity-container .lity-content {
    width: 100%;
    height: 100%;
  }
}
