/* ================================================================
================================================================
 * ▼▼▼ 基本テンプレート ※一切触らない ▼▼▼
================================================================
================================================================== */
/*  クイックカートイン CSS  */
.cart_in_modal,
.cart_in_error_modal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, .7);
  z-index: 20000;
  display: flex;
  overflow: auto;
}

@media screen and (min-width: 960px) {
  .cart_in_modal,
  .cart_in_error_modal {
    align-items: center;
  }
}

.cart_in_modal__bg {
  background-color: rgba(0, 0, 0, .7);
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 20000;
}

.cart_in_modal__outline {
  width: 90%;
  margin: 20px 5%;
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .4);
  box-sizing: border-box;
  text-align: center;
  position: absolute;
}

@media screen and (min-width: 960px) {
  .cart_in_modal__outline {
    width: 900px;
    margin: auto;
    padding: 20px 70px;
    position: relative;
  }
}

.cart_in_modal__heading {
  font-size: 20px;
  font-weight: bold;
  margin: 20px 0;
  line-height: 1.4;
}

@media screen and (min-width: 960px) {
  .cart_in_modal__heading {
    font-size: 26px;
    margin: 30px 0;
    line-height: 1.2;
  }
}

.cart_in_error_modal__heading {
  font-size: 20px;
  font-weight: bold;
  margin: 40px 0 20px;
  line-height: 1.4;
}

@media screen and (min-width: 960px) {
  .cart_in_error_modal__heading {
    margin: 30px 0;
    line-height: 1.2;
  }
}

.cart_in_modal__detail {
  display: flex;
  padding: 20px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  align-items: center;
  flex-direction: column;
}

@media screen and (min-width: 960px) {
  .cart_in_modal__detail {
    flex-direction: row;
  }
}

.cart_in_modal__name {
  font-size: 16px;
  flex: 1;
  line-height: 1.4;
  text-align: left;
  margin: 0;
}

@media screen and (min-width: 960px) {
  .cart_in_modal__name {
    font-size: 18px;
  }
}

.cart_in_modal__image-wrap {
  padding: 5px;
  width: 170px;
  height: 170px;
  background: rgba(0, 0, 0, .1);
  position: relative;
  border: 5px solid transparent;
  box-sizing: border-box;
}

@media screen and (min-width: 960px) {
  .cart_in_modal__image-wrap {
    margin: 0 30px 0 0;
    flex-basis: 170px;
  }
}

.cart_in_modal__image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.cart_in_modal__text-link {
  color: #2169f3;
  cursor: pointer;
  position: relative;
  display: inline-block;
  margin: 20px 0 0;
  padding: 0 0 0 20px;
  line-height: 1.15;
}
.cart_in_modal__text-link::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #2169f3;
  border-right: 2px solid #2169f3;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

.cart_in_modal__button-wrap {
  width: 100%;
  margin: 30px auto;
  font-size: 17px;
}

@media screen and (min-width: 960px) {
  .cart_in_modal__button-wrap {
    width: 350px;
  }
}
.cart_in_modal__button {
  font-size: 17px;
  font-weight: bold;
  line-height: 23px;
  display: inline-block;
  box-sizing: border-box;
  cursor: pointer;
  vertical-align: middle;
  text-decoration: none;
  color: #fff;
  border: 0;
  border-radius: 4px;
  width: 100%;
  height: 58px;
  padding: 15px;
  background: #2169f3;
  box-shadow: 0 2px 0 #1a54c2;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.cart_in_modal__button:hover,
.cart_in_modal__button:focus {
  height: 58px;
  color: #e9f0fe;
  background-color: #1e5fdb;
  box-shadow: none;
  transform: translate3d(0, 2px, 0);
}

.cart_in_modal__close-icon {
  cursor: pointer;
}

.cart_in_modal__close-icon::before,
.cart_in_modal__close-icon::after {
  content: "";
  width: 35px;
  height: 6px;
  display: block;
  position: absolute;
  top: 30px;
  right: 20px;
  background: #eee;
  border-radius: 4px;
}

.cart_in_modal__close-icon::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.cart_in_modal__close-icon::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.spinner::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100px;
  width: 100px;
  margin-top: -50px;
  margin-left: -50px;
  border-radius: 50%;
  border: 5px solid #eee;
  border-top-color: #fd7f23;
  animation: spinner 0.5s linear infinite;
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

@media screen and (min-width: 960px) {
  .sp-br {
    display: none;
  }
}
/* ================================================================
================================================================
 * ▲▲▲ 基本テンプレート ※一切触らない ▲▲▲
================================================================
================================================================== */



/* ================================================================
================================================================
 * ▼▼▼ カスタム ▼▼▼
================================================================
================================================================== */
/*--------------------------------
  クイックカートイン
--------------------------------*/
/* ショッピングを続ける */
.cart_in_modal__text-link::before {
  top: 5px;
}

/*--------------------------------
  商品画像 product-swiper
--------------------------------*/
.product-swiper {
  margin: 0 auto 50px;
  width: 650px;
  max-width:100%;
}
@media screen and (max-width: 650px) {
.product-swiper {
  width: 100%;
}}
.product-swiper .main-swiper {
  width: 100%;
  margin: 0 auto;
}
.product-swiper .main-swiper img {
  width: 100%;
  object-fit: cover;
}
.product-swiper .thumb-swiper {
  width: 100%;
  margin: 10px auto 0 auto;
}
.product-swiper .thumb-swiper img {
  width: 100%;
  object-fit: cover;
}
.product-swiper .thumb-swiper .swiper-slide {
  opacity: 0.4;
  cursor: pointer;
}
.product-swiper .thumb-swiper .swiper-slide-thumb-active {
  opacity: 1;
}
.product-swiper .slideNone {
  display: none;
}
/* swiper-button */
.product-swiper .main-swiper {
  position: relative;
  overflow: hidden;
}
.product-swiper .main-swiper .swiper-button-next, .main-swiper .swiper-button-prev {
  background-color: #333; /* 背景色 */
  width: 20px;
  height: 50px;
}
.product-swiper .main-swiper .swiper-button-next {
  right: 0; /* 右端 */
}
.product-swiper .main-swiper .swiper-button-prev {
  left: 0; /* 左端 */
}
.product-swiper .main-swiper .swiper-button-next::after,
.product-swiper .main-swiper .swiper-button-prev::after {
  color: #fff;
  font-size: 1.6rem;
}
@media screen and (max-width: 980px) {
.product-swiper .main-swiper .swiper-button-next::after,
.product-swiper .main-swiper .swiper-button-prev::after {
  font-size: 1.3rem;
}}

/*--------------------------------
  商品購入 product
--------------------------------*/
/* 商品オプション 表形式 */
.table-bordered {
  border: 0;
  border-top: 1px solid #ddd;
  border-collapse: separate;
}
.table-bordered th, .table-bordered td {
  padding: 12px 5px;
  border: 0;
  border-bottom: 1px solid #dddddd;
  background-color: #FFF;
  padding: 20px 10px;
  font-size: 18px; font-size: 1.8rem;
}
.table_price {
  font-size: 18px; font-size: 1.8rem;
  font-weight: bold;
  background: linear-gradient(transparent 60%, #FFFF99 60%);
}
.product-option-table table div {
  display: inline-block !important;
  position: relative;
  bottom: 4px;
}
.product-option-table label {
  display: inline-block !important;
  padding-left: 5px;
}
/* 商品オプション プルダウン（不使用） */
.product-option-list__select {
  background-color: #FFFF99;
  font-size: 17px; font-size: 1.7rem;
  color: #000;
  font-weight: bold;
}
/* 値引率（不使用） */
.pricedown {
  color: #fff;
  background-color: #ff0000;
  padding: 3px 8px;
  border-radius: 5px;
}

/*--------------------------------
  商品説明文 product-explain
--------------------------------*/
.product-explain {
  margin-top: 40px
}
.product-explain p {
  margin-bottom: 20px
}
/* LP画像（border-radius:0） */
.product-explain .lp img {
  display: block;
  width: 650px;
  max-width:100%;
  margin: 0 auto 40px;
  border-radius: 0;
}
/* LP画像（border-radius:10px） */
.product-explain .lp_bdr img {
  display: block;
  width: 650px;
  max-width:100%;
  margin: 0 auto 40px;
  border-radius: 10px;
}
/* LP画像（radius:0px/10px共通） */
@media screen and (max-width: 650px) {
  .product-explain .lp img,
  .product-explain .lp_bdr img {
    width: 100%;
    margin: 0 auto 20px;
}}
/* 注目・注意書き */
.attention {
  margin: 20px 0;
  padding: 10px;
  background-color: #dd3333;
  border-radius: 5px;
  font-size: 20px; font-size: 2.0rem;
  color: #FFF;
}
/* title_00（見出し 色地） */
.title_00, .title_orange {
  margin: 55px 0 30px !important;
  padding: 5px 20px !important;
  background-color: #3d1b0f;
  font-size: 22px; font-size: 2.2rem !important;
  color: #FFF;
}
@media screen and (max-width: 980px) {
  .title_00, .title_orange {
    padding: 10px 20px !important;
    font-size: 20px; font-size: 2.0rem !important;
  }
}
/* title_01（商品の特徴 上下線） */
.title_01 {
  margin: 10px 0 30px !important;
  padding: 15px 5px;
  border-top: 1px solid #DFCEB6;
  border-bottom: 1px solid #DFCEB6;
  font-size: 105%;
  line-height: 1.8;
  color: #3d1b0f;
}
@media screen and (max-width: 980px) {
  .title_01 {}
}
/* title_01 ul（リスト） */
.title_01 ul, .title_01 ol { padding-top: 10px !important; }
.title_01 li { list-style: disc; }
@media screen and (max-width:980px) {
  .title_01 li {
    margin-left: 0px;
    line-height: 1.8;
  }
}
/* 商品の特徴（リスト） */
.defaultlist { margin: 0 !important; padding: 0 !important; }
.defaultlist li {
  list-style-type: none !important;
  list-style-image: none !important;
  margin: 5px 0 !important;
}
.list9 {
  counter-reset: li;
  list-style: none;
  margin: 0;
  padding: 0;
}
.list9 li {
  position: relative;
  padding: 8px 10px 8px 60px;
  background: #FAF7F3;
  border-radius: 5px;
  color: #3d1b0f;
}
li.list9-count:after {
  counter-increment: li;
  content: counter(li);
  position: absolute;
  left: 0;
  top: 2px;
  padding: 5px 3px 0;
  height: 40px;
  width: 40px;
  background: #b49c6f;
  border-radius: 50%;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  line-height: 2.2;
  vertical-align: middle;
}
@media screen and (max-width: 980px) {
  .list9 li {
    padding: 8px 10px 8px 50px;
    line-height: 1.6;
  }
  li.list9-count:after {
    top: 4px;
    height: 30px;
    width: 30px;
    padding: 5px 3px 0;
    line-height: 1.6;
  }
}
/* title_02（見出し 左ボーダー） */
.title_02 {
  margin: 45px 0 30px !important;
  padding: 15px 0px 20px 15px !important;
  border-left: 6px solid #b49c6f !important;
  border-bottom: 1px solid #DFCEB6 !important;
  font-size: 21px; font-size: 2.1rem !important;
  line-height: 1.6;
}
/* 商品詳細 */
.products {
  font-size: 90%;
  line-height: 1.8;
}
.products .title_00 {
  margin-bottom: 20px !important;
}


/*--------------------------------
  おすすめ商品 together-list__unit
--------------------------------*/
.together-list__unit {
  font-size: 15px; font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .together-list__unit {
    font-size: 14px; font-size: 1.4rem;
    line-height: 1.5;
  }
  .together-list__unit .price_top {
    font-size: 13px; font-size: 1.3rem;
  }
}
.product__image-main img {
  max-width: 90%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .product__image-main img {
    max-width: 100%;
    height: auto;
  }
}