/****************************** mobile,cpmmon ******************************/

/* -------------------- 一覧 -------------------- */
.product_list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.product_item {
	width: 47.5%;
	margin-bottom: 30px;
	position: relative;
}

.product_item_img {
	margin-bottom: 10px;
}
.product_item_img img {
	border-radius: 10px;
}

.product_item h3 {
	margin-bottom: 7px;
	font-size: 14px;
	line-height: 18px;
}

.product_item_size {
	margin-bottom: 7px;
	font-size: 11px;
	letter-spacing: 0px;
}

.product_item_price {
	font-weight: 600;
}
.product_item_price span:first-child {
	font-size: 14px;
}
.product_item_price span:last-child {
	font-size: 10px;
}

/* タグ */
.product_item_tag {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 6px;
}
.product_item_tag li {
	justify-content: center;
	align-items: center;
	margin: 0 6px 6px 0;
	letter-spacing: 0px;
	border-radius: 12px;
	padding: 5px 12px;
	font-size: 10px;
	font-weight: 600;
	background-color: #E1F9E5;
}

/* ラベル */
.product_label {
	position: absolute;
	left: -10px;
	top: -10px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.05em;
	z-index: 1;
	pointer-events: none;
}

/* soldout */
.product_so {
	text-align: center;
	padding-top: 2px;
}


/* -------------------- 詳細 -------------------- */
/* ラベル */
.pd_detail_hd {
	display: flex;
	margin-bottom: 12px;
}
.pd_detail_hd span {
	display: block;
	font-size: 13px;
	font-weight: 700;
	height: 30px;
	line-height: 30px;
	border-radius: 30px;
	text-align: center;
}

.pd_detail_hd_label {
	padding: 0 20px;
	color: #fff;
	letter-spacing: 0.05em;
	margin-right: 10px;
}

.pd_detail_hd_tw {
	width: 130px;
	display: flex;
  justify-content: center;
  align-items: center;
  color: #002E5D;
  box-shadow: 0px 2px 8px rgb(1 71 147 / 30%);
}
.pd_detail_hd_tw i {
	color: #1DA1F2;
	margin-right: 5px;
	font-size: 16px;
}

.pd_img_con {
  margin-bottom: 20px;
}
.pd_img_con img,
.pd_img_con video,
.pd_video_icon {
  border-radius: 10px;
}
.pd_img_main {
  margin-bottom: 11px;
}
.pd_img_sub {
  display: flex;
  justify-content: space-between;
	flex-wrap: wrap;
}

.pd_img_sub a {
	position: relative;
	margin-bottom: 11px;
}

/* 再生アイコン */
.pd_video_icon {
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.3);
	width: 100%;
	height: 100%;
}
.pd_video_icon:before,
.pd_video_icon:after {
  position: absolute;
  top: 50%;
  transform: translate(-50%,-50%);
  box-sizing: border-box;
  content: '';
}
.pd_video_icon:before {
  left: 57%;
  width: 0px;
  height: 0px;
  border: 12px solid transparent;
  border-left: 20px solid #fff;
}
.pd_video_icon:after {
  left: 50%;
	width: 50px;
	height: 50px;
	border: 3px solid #fff;
	border-radius: 50%;
	color: #fff;
}

.pd_img_sub:after,
.pd_img_sub a {
	/* コンテンツの.itemに指定したwidthと同じ幅を指定する */
	width: calc(100% / 3 - 7px);
}
.pd_img_sub:after {
	content: "";
	display: block;
	height: 0;
}

.pd_cntnt_con {
	line-height: 24px;
}
.pd_cntnt_con dl {
  border-bottom: 1px dotted #1f9c3a;
  display: flex;
  padding: 8px 0;
  font-size: 13px;
  letter-spacing: 0px;
}
.pd_cntnt_con dt {
  width: 30%;
  font-weight: 700;
}
.pd_cntnt_con dd {
  width: 70%;
}
.pd_cntnt_con ul {
  list-style: inherit;
	padding-left: 13px;
}


/****************************** tablet ******************************/
@media (min-width: 600px){

  /* -------------------- 一覧 -------------------- */
	.product_list:after,
	.product_item {
		/* コンテンツの.itemに指定したwidthと同じ幅を指定する */
    width: calc(100% / 3 - 13px);
	}
	.product_list:after {
    content: "";
    display: block;
    height: 0;
	}

  /* -------------------- 詳細 -------------------- */
	/* ラベル */
	.pd_detail_hd {
		margin-bottom: 20px;
	}

  .pd_con {
    display: flex;
    justify-content: space-between;
  }
  .pd_img_con {
    width: 30%;
  }
  .pd_cntnt_con {
    width: 65%;
  }
  .pd_cntnt_con dl {
    padding: 12px 0;
    font-size: 14px;
  }

}

/****************************** PC ******************************/
@media (min-width: 1025px){


}
