/* ================================================================
================================================================
 * ▼▼▼ 基本テンプレート ※一切触らない ▼▼▼
================================================================
================================================================== */
/*  クイックカートイン 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: 0.5em;
}
/*--------------------------------
  商品画像 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: var(--kk-font-medium);
}
/*--------------------------------
  商品購入 product
--------------------------------*/
/* 商品オプション 表形式 */
.table-bordered {
	border: 0;
	border-top: 1px solid #ddd;
	border-collapse: separate;
}
.table-bordered th, .table-bordered td {
	border: 0;
	border-bottom: 1px solid #dddddd;
	background-color: #FFF;
	padding: 1em;
	font-size: var(--kk-font-medium);
}
.table_price {
	font-size: var(--kk-font-medium);
	font-weight: 600;
	background: linear-gradient(transparent 60%, #FFFF99 60%);
}
.product-option-table table div {
	display: inline-block !important;
	position: relative;
	bottom: 0.5em;
}
.product-option-table label {
	display: inline-block !important;
	padding-left: 0.5em;
}
/* 商品オプション プルダウン（不使用） */
.product-option-list__select {
	background-color: #FFFF99;
	font-size: var(--kk-font-medium);
	color: #000;
	font-weight: bold;
}
/* 値引率（不使用） */
.pricedown {
	color: #fff;
	background-color: #ff0000;
	padding: 0.5em;
	border-radius: 5px;
}
/*--------------------------------
  商品説明文 product-explain
--------------------------------*/
.product-explain {
	margin-top: 2em;
}
.product-explain p {
	margin-bottom: 2em;
}
/* LP画像（border-radius:0） */
.product-explain .lp img {
	display: block;
	width: 650px;
	max-width: 100%;
	margin: 0 auto 2em;
	border-radius: 0;
}
/* LP画像（border-radius:10px） */
.product-explain .lp_bdr img {
	display: block;
	width: 650px;
	max-width: 100%;
	margin: 0 auto 2em;
	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 1em;
	}
}
/* 注目・注意書き */
.attention {
	margin: 1em 0;
	padding: 1em;
	background-color: #dd3333;
	border-radius: 5px;
	font-size: var(--kk-font-large);
	color: #FFF;
}
/* title_00（見出し 色地） */
.title_00,
.title_orange {
	margin: 1.5em 0;
	padding: 0.7em 1em;
	background-color: #3d1b0f;
	font-size: var(--kk-font-large);
	color: #FFF;
}
/* title_01（商品の特徴 上下線） */
.title_01 {
	margin: 1em 0 !important;
	padding: 1em 0.5em;
	border-top: 1px solid #DFCEB6;
	border-bottom: 1px solid #DFCEB6;
	font-size: var(--kk-font-large);
	line-height: 1.8;
	color: #3d1b0f;
}
/* title_01 ul（リスト） */
.title_01 ul, .title_01 ol {
	padding-top: 1em
}
.title_01 li {
	list-style: disc;
	margin-left: 1em;
	line-height: 1.8;
}
/* 商品の特徴（番号付きリスト） */
.list9, .defaultlist {
	counter-reset: li;
	margin: 0 0 2em;
	padding: 0;
	list-style: none;
}
li.list9-count {
	position: relative;
	margin: 0.5em 0;
	padding: 0.5em 1em 0.5em 4em;
	border-radius: 5px;
	background: #FAF7F3;
	color: #3d1b0f;
}
li.list9-count:after {
	counter-increment: li;
	content: counter(li);
	position: absolute;
	left: 0;
	top: 0;
	padding: 0.5em;
	height: 2em;
	width: 2em;
	background: #b49c6f;
	border-radius: 50%;
	font-weight: bold;
	color: #FFF;
	text-align: center;
	line-height: 2.0;
	vertical-align: middle;
	font-size: var(--kk-font-medium);
}
/* title_02（見出し 左ボーダー） */
.title_02 {
	margin: 2em 0 1.5em;
	padding: 1em 1em;
	border-left: 6px solid #b49c6f;
	border-bottom: 1px solid #DFCEB6;
	font-size: var(--kk-font-large);
	line-height: 1.6;
}
/* 商品詳細 */
.products {
	font-size: 90%;
	line-height: 1.8;
}
/*--------------------------------
  おすすめ商品 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;
	}
}