@charset "utf-8";

/* CSS Document */


/* タイトル h2 */

.ttlLv2 {
  border-bottom: #A19059 1px solid;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .block-top-event--header::before {
    content: "";
    width: 16px;
    height: 16px;
    margin: 0 10px 0 0;
    display: inline-block;
    background: url(/img/usr/common/eye_catch.png) left top no-repeat;
    -webkit-background-size: 16px 16px;
    background-size: 16px 16px;
  }
}

/* タイトル マージン調整 */
.block-top-event--header {
  margin-top: 60px;
}

/* ステップラベル */
.stepLabel {
  font-size: 16px!important;
  background-color: #cc0000;
  display: inline-block;
  color: #fff;
  padding: 3px 20px 3px 22px;
  font-weight: bold;
  position: relative;
  margin-right: 30px;
  vertical-align: middle;
  margin-bottom: 10px;
  line-height: 1.5;
}
.stepLabel::after {
  position: absolute;
  top: 0;
  right: -20px;
  bottom: 0;
  display: block;
  width: 0;
  content: '';
  border-width: 30px 0 0 20px;
  border-style: solid;
  border-color: transparent transparent transparent #cc0000;
}
/* タイトル h3 */
.ttlLv3 {
  border-bottom: #A19059 1px solid;
  margin: 40px 0 20px;
}

.ttlLv3 .heading {
    display: inline-block;
    border: none;
    margin-bottom: 0;
    font-size: 18px;
    font-weight: bold;
}

/* ボタン */
.action .btn {
    max-width: 400px;
    display: block;
    padding: 16px 10px;
    position: relative;
}

/* ボタン アンカー */
.action .btn_anc::before {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 1px solid #fff;
    border-top: 1px solid #fff;
    position: absolute;
    right: 40px;
    top: calc(50% - 6px);
    display: block;
    transform: rotate(135deg);
}
.action .btn_anc::after {
    content: "";
    width: 8px;
    height: 1px;
    background: #fff;
    position: absolute;
    right: 40px;
    top: calc(50% + 6px);
    display: block;
}
/* ボタン 別窓 */
.action .btn_other_w::before {
	position: absolute;
    content: "";
    width: 11px;
    height: 10px;
	background-image: url("/img/usr/common/icon_othersite_white.png");
	background-size: contain;
	right: 40px;
    top: calc(50% - 6px);
    background-repeat: no-repeat;
}

/* ボタン アンカーリスト */

.anc_btn_list {
  display: flex;
  justify-content: space-between;
  margin: 30px auto;
}

.anc_btn_list li a {
  width: 350px;
  height: 60px;
  padding: 0 15px 0 0;
  margin: 0 auto;
  border-radius: 5px;
  background: #333333;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  position: relative;
}

.anc_btn_list li a:before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  position: absolute;
  right: 40px;
  top: calc(50% - 6px);
  display: block;
  transform: rotate(135deg);
}

.anc_btn_list li a:after {
  content: "";
  width: 8px;
  height: 1px;
  background: #fff;
  position: absolute;
  right: 40px;
  top: calc(50% + 6px);
  display: block;
}

.anc_btn_list li a:hover {
  background: #A19059;
}

[data-browse-mode="S"] .anc_btn_list li a {
  width: 100%;
  height: 50px;
  padding: 0 15px 0 0;
  margin: 0 auto;
  border-radius: 5px;
  background: #333333;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  position: relative;
}

[data-browse-mode="S"] .anc_btn_list li a:before {
  right: 20px;
}

[data-browse-mode="S"] .anc_btn_list li a:after {
  right: 20px;
}

@media screen and (max-width: 767px) {
  .anc_btn_list {
    margin: 40px 20px;
    flex-wrap: wrap;
  }
  .anc_btn_list li {
    width: 100%;
  }
  .anc_btn_list li:not(:first-child) {
    margin-top: 20px;
  }
}

/* リスト */

.noteList > li:before {
    top: 0.8em;
}
.List > li:before {
    top: 0.8em;
}
.numList > li:before {
    top: 0.8em;
}
.numList_br > li:before {
    top: 0.8em;
}


/* カラム */

.clm {
  justify-content: space-between;
}

.clm_7 {
  width: calc((100% - 30%) - 20px);
}

.clm_3 {
  width: 30%;
}

.clm_5 {
  width: calc((100% - 50%) - 20px);
}

@media screen and (max-width: 767px) {
  .clm {
    flex-wrap: wrap;
  }
  .clm_7 {
    width: 100%;
  }
  .clm_3 {
    width: 100%;
  }
  .clm_5 {
    width: 100%;
  }
  .clm>div:not(:first-child) {
    margin-top: 20px;
  }
}

/* カラムセット */

.clm_set {
  display: flex;
  justify-content: space-between;
  margin: 30px auto;
}
.clm_3set > .col {
    width: calc((100% / 3) - 20px);
}
.clm_4set > .col {
    width: calc((100% / 4) - 20px);
}
.clm_5set > .col {
    width: calc((100% / 5) - 20px);
}

@media screen and (max-width: 767px) {
  .clm_set  {
    flex-wrap: wrap;
  }
  .clm_set .col {
    width: 100% !important;
  }
  .clm_set > .col:not(:first-child) {
    margin-top: 20px;
  }
}

/* 商品リスト */

.block-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.block-list li {
  width: calc((100% - 80%) - 8px);
  margin-right: 10px;
}

.block-list li:nth-child(5n) {
  margin-right: 0;
}

.block-list li a:hover {
  text-decoration: underline;
}

.block-list .nostock .block--goods-image {
  position: relative;
}

.block-list .nostock .block--goods-image::after {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3) url("../../img/sys/soldout.png") left top no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.block-list--goods-image {
  margin: 0 0 10px 0;
}

.block-list--goods-image figure {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFF;
}
.block-list-goods-name-wrap {
	margin: 0 0 10px 0;
	height: 42px;
}
.block-list-goods-name-wrap_mail {
	height: 82px;
}
.block-list--goods-description {
  margin: 0;
}
.block-list--goods-mail{
	margin-top: 2px;
	margin-bottom: 8px;
}
.block-list--goods-mail span{
	border: 1px solid;
    padding: 2px 6px;
    font-size: 13px;
}
.block-list--goods-name-wrap {
  margin: 0 0 10px 0;
}

.block-list--goods-name-wrap .block-list--goods-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.block-list--goods .price {
  font-weight: normal;
}

.block-list--goods .price, .block-list--goods .default-price {
  text-align: right;
}

.img-center img {
  flex-shrink: 0;
  text-align: center;
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
}

@media screen and (max-width: 767px) {
  .block-list {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .block-list li {
    width: calc(50% - 7.5px);
    margin: 0 0 20px 0;
  }
  .block-list--goods-image {
    width: calc(50vw - 29px);
    height: calc(50vw - 29px);
    margin: 0 0 10px 0;
  }
  .block-list--goods-image figure {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFF;
  }
  .block-list--goods-description {
    margin: 0;
  }

  .block-list-goods-name-wrap .block-list--goods-name {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  .block-list--price-items .price {
    font-weight: normal;
  }
  .block-list--price-items .price, .block-list--price-items .default-price {
    text-align: right;
  }
  .block-list--price-items .mile {
    font-size: 10px;
  }
}







