@media (max-width: 768px) {
  #head_search{ display:none;}
}

/* パンくず*/
.breadcrumb-list-pdetail {
  padding-bottom: 5px;
}
.product__section {
  margin-bottom: 40px;
}
.product-explain {
  margin-bottom: 40px;
}

/* 商品画像 */
#product-image{
  container-name:product_image;
  container-type:inline-size;
}
#product-image.full-view {
  position: fixed;
  inset: 0;
  background:rgb(0 0 0 /.6);
  overflow-y:scroll;
  overscroll-behavior: contain;
  z-index: 999999;
}
#main_images{
  background:rgb(255 255 255 /.8);
  padding-bottom:12px;
}
#main_images > .main_images-item:not(:first-child){
  display:none
}
#main_images .main_images-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
  position:relative;
}
#product-image.full-view .main_images-item {
  height: calc(100vh - 108px);
}

#main_images .slick-slide img {
  display:inline;
  width: auto;
  height: auto;
  max-height:100%
}
#main_images .slick-arrow::before {
  font-size: clamp(40px,3.5vw,40px);
  color:#00ae6d
}
#main_images .slick-prev {
  left: clamp(-16px,1.5vw - 20px,0px);
  z-index:1;
}
#main_images .slick-next {
  right:clamp(6px,5.7vw - 32px,32px);
}
#thumb_images {
  --column: 4;
  display: grid;
  grid-template-columns: repeat(var(--column), minmax(0,1fr));
  justify-content: space-between;
  gap: clamp(8px,1vw,12px);
  width: min(1000px,100%);
  margin-inline: auto;
  padding: 8px 8px 5px;
  background: #efefef;
}
#product-image.full-view #thumb_images{
  padding-bottom:12px;
}
@container product_image (width > 400px){
  #thumb_images{
    --column: 5;
  }
}
@container product_image (width > 600px){
  #thumb_images{
    --column: 8;
  }
}
@container product_image (width > 800px){
  #thumb_images{
    --column: 12;
  }
}
.thumb_images-item{
  border-bottom:3px solid #efefef;
  cursor:pointer;
  aspect-ratio:1/1
}
.thumb_images-item[aria-selected="true"]{
  border-color: #00ae6d
}
#product-image-closer {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 64px;
  height: 64px;
  color: #000;
  z-index: 99999;
}
#product-image-closer svg{
  width:56px;
  height:56px
}
#product-image:not(.full-view) #product-image-closer{
  display:none
}

#main_images {
	touch-action: auto;
}


/* 商品名 */
.product-name {
	font-size: clamp(20px,2.4vw,22px);
	font-weight: 700;
	margin: 0;
	padding: 24px 0 8px;
}
/* 品番 */
.product-model {
	color: #aaa;
	font-size: 11px;
}
/* 価格 */
.product-price {
  font-size: 1.42em;
  font-weight: bold;
  margin: 0;
	padding: 10px 0;
}

.product-price-discount {
  color: #f00;
}
.product-price-discount-rate {
  color: #f00;
}
.product-price-establish {
  color: #999;
  font-size: .93em;
}
/* ポイント還元 */
.point-kangen {
	margin: 0;
	padding: 4px 0;
}
/* 在庫状況 */
.product-stock-str {
  margin: 0;
  font-size: 1.1em;
  font-weight: bold;
}

/* カートボタン エリア*/
.product-order-box {
  background: #f0f0f0;
  margin-top: 30px;
  padding: 20px clamp(20px,3vw,40px) 30px;
}
/*　数量*/
.try-product-order {
	font-size: clamp(14px,1vw + 4px,16px);
	display: grid;
	grid-template-columns: 128px auto;
	grid-template-areas: "label label" "input btns ";
	gap: 0;
	align-items: center;
	padding-bottom: 24px;
}
.try-product-order__label{
  font-size: inherit;
	grid-area: label;
}
#order-num {
	grid-area: input;
	font-size: inherit;
	width: 100px;
	height: 32px;
	border: 2px solid #333;
	text-align: center;
}
/* 数量のアップダウンボタン */
.order-num-changer {
	grid-area: btns;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 48px;
}
.order-num-changer > [role="button"] {
	width: 32px;
	height: 20px;
  cursor: pointer;
}
/* カートに入れるボタン */
.btn--addcart {
  display: block;
  position: relative;
  padding: 1.2em 0;
  color: #fff;
  border: none;
  background-color: #CC0000;
  border-bottom: 5px solid #980000;
  border-radius: 3vh;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
  box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
  text-decoration: none;
  overflow: hidden;
}

.btn--addcart:hover{
  padding: 1.2em 0;
  margin-top: 5px;
  color: #fff;
  border: none;
  background: #ff0062;
  border-bottom: 0px solid #980000;
  border-radius: 3vh;
  
}
.btn--addcart::before {
  position: absolute;
  content: '';
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  animation: btn--addcart 3s ease-in-out infinite;
}
@keyframes btn--addcart {
  0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}
.btn--addcart:focus {
  background: var(--addcartbtn-color-hover);
  border: 1px solid var(--addcartbtn-color-hover);
  color: #fff;
}
.btn--quick-order {
  padding: 1.2em 0;
  border-radius: 0;
  background: #0079ff;
  border: 1px solid #0079ff;
  color: #fff;
}
.btn--quick-order:hover,
.btn--quick-order:focus {
  background: #62adff;
  border: 1px solid #62adff;
  color: #fff;
}
/* 売り切れ時ボタン */
.btn--soldout {
  padding: 1.4em 0;
  border-radius: 0;
  border: 1px solid #cf0400;
}
.btn--soldout.disabled,
.btn--soldout[disabled] {
  background-color: #cf0400;
  color: #fff;
}
/* カートに入れるボタン　追加スタイル */
.try-product-order__btn {
	width: min(540px,80cqi);
	font-size: clamp(16px,1vw + 6px,19px);
	font-weight: 600;
}
.try-product-order__btn.btn--soldout {
	color: #fff;
	background-color: rgba(207,4,0 ,.65);
	text-align: center;
}
#try-product-order > :nth-child(3) {
  width: clamp(290px,90%,480px);
  padding-top: 24px;
  margin-inline: auto;
}
@media (min-width: 768px){
  #try-product-order{
    display:grid;
    grid-template-columns: 160px 1fr;
    align-items:center;
    column-gap: min(64px,6%);
    max-width: 768px;
    margin-inline: auto;
  }
  .try-product-order {
    padding-bottom: 0;
  }
  #try-product-order > :nth-child(3) {
    grid-column: 2/3;
  }
}


/* レビュー */
.product-review__section {
  margin-bottom: 60px;
}
.product-review-send-list {
  text-align: right;
  margin-bottom: 20px;
}
.product-review {
  font-size: .93em;
  margin-bottom: 40px;
}
.product-review-star {
  float: left;
  margin-right: 10px;
  padding-top: 1px;
}
.product-review-poster-list {
  margin: 0;
}
.product-review-poster-list__unit {
  display: inline-block;
  margin-right: 10px;
}

.product-review-content-list__unit img {
  max-width: 100px;
}

.product-review-content-list__title {
  font-weight: bold;
  padding-top: 10px;
}

.product-review-content-list__img {
  float: left;
  padding: 10px 10px 0 0;
}

.product-review-content-list__comment {
  padding-top: 10px;
}

.product-review-res-list {
  background: #f6f6f6;
  padding: 20px;
}

.product-review-res-list__title {
  font-weight: bold;
}

.product-review-res-list__comment {
  padding-top: 10px;
}


.stock_error {
  text-align: center;
  padding-top: 5px;
  font-size: .93em;
}

.reviewlist_datas {
  overflow: hidden;
  zoom: 1;
  margin-bottom: 10px;
}
.icon_star {
  float: left;
  width: 75px;
  overflow: hidden;
}
.icon_star img {
  max-width: inherit;min-height:1em;
}
.review_poster li {
  float: left;
  margin-left: 10px;
}
.review_poster li {
  list-style: none;
}
.reviewlist {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px dotted #ccc;
}
.review_ttl,
.shopcomment_ttl {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}
.review_img {
  float: right;
  margin: 0 0 10px 10px
}
.reviewlist_content {
  overflow: hidden;
  zoom: 1;
}
.shopcomment {
  margin-top: 10px;
  margin-bottom: 10px;
  background: #eee;
  padding: 15px;
  border-radius: 6px;
}
.product__fav-item {
	padding: 12px 0;
}

@media screen and (min-width: 960px) {
  .sp-br {
    display: none;
  }
}

/* エクスプロージョン　レコメンド */
[id^="fsrecommenddiv"]:empty{
 display:none;
}
[id^="fsrecommenddiv"] .try-section-title,
.section-title-h2{
  --font-color:#222;
  --theme-color:transparent;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}


.item_wrap {
	display: flex;
	flex-flow: column;
}

.more_btn {
	display: block;
	width: auto;
	margin: 1em auto;
	background: #008000;
	text-align: center;
	padding: 15px 1em;
	color: #fff;
  cursor: pointer;
}

.review_box .space {
  flex-grow: 1;
}

.star_icon {
  word-break: keep-all;
  overflow: hidden;
  color: #ff7714;
  font-size: 15px;
  position: absolute;
  top: 0;
}
.star_space::before {
  content: "";
  font-size: 15px;
  position: relative;
  z-index: 0;	
  background: url(https://img07.shop-pro.jp/PA01446/246/etc/star_icon_off.png?cmsp_timestamp=20220317201313);
  width: 5em;	
  display: block;	
  height: 1em;
}
.star_space {
  position: relative;
}
.star_icon::before {
  content: "";
  display: block;	
  background: url(https://img07.shop-pro.jp/PA01446/246/etc/star_icon.png);
  height: 1em;
}
.star_point {
  font-size: 1.2em;
  font-weight: bold;
  color: #f00;
}
.review_box {
  display: flex;	
  align-items: center;
}
.star_point {
  margin: 0 0.2em;
}

.reviewlist_content {
  clear: both;
}

.teika_price {color: #aaa;	font-size: 0.8em;font-weight: normal;}
.pre_order {list-style: none;}
.pre_order .head {	display: inline-block;	width: 100px;font-weight: bold; }
.p_o_date span {display: inline-block;}


.shiny-btn5 {
  display: block;
  position: relative;
  width: 80%;/*ボタンの幅*/
  padding: 10px 0;
  margin: 30px auto;
  background-color: #F8B62D;/*ボタンの色*/
  box-shadow: 0 3px 0 0 rgba(221, 136, 45, 1);/*影の色(rgbaの値を変更)*/
  border-radius: 5px;
  font-weight: bold;
  font-size: 18px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  transition: 0.2s;
}
.shiny-btn5:hover {
  text-decoration: none;
  color: #fff;
  box-shadow: 0 3px 0 0 rgba(221, 136, 45, 1),   0 8px 15px 0px rgba(0, 0, 0, 0.4);
}

/* yamashita サイドバナー追加分非表示　ここから */
.side-nav-box2.visible-desktop {
  display: none !important;
}
/* yamashita サイドバナー追加分非表示　ここまで */



.product-info-box .product-related-list {
	padding: 8px 0;
}
@media(min-width:768px){
  .product-info-box .product-related-list {
	display: flex;
	column-gap: 8px;
  }
}

/* お気に入りボタン */
#product .favorite-button {
	font-size: 14px !important;
	padding: 12px 0 !important;
}
/* 商品情報*/
.product-infomation{
  container-name:product-info;
  container-type :inline-size; 
}
/* 返品 */
.law-list{
	list-style: inside disc;
	padding: 12px 0;
}
@media(min-width:768px){
	.law-list{
		display: flex;
		column-gap: clamp(12px,2vw,24px);
	}
}
.law-list-item {
	padding: clamp(4px,1vw,12px) 0;
}
.law-list__link {
	font-size: clamp(12px,1vw + 4px,14px);
	color: #004D9E;
}

/* グループタグ */
.group-navi {
	margin: 12px 0;
	padding: 12px 0;
	border-top: 1px solid #777;
	border-bottom: 1px solid #777;
}
.group-navi-list {
	display: flex;
	flex-wrap: wrap;
	column-gap: 8px;
	row-gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.group-navi-item {
	background: #339900;
	padding: 4px 8px;
	border-radius: 8px;
}
.group-navi-item a {
	font-size: 14px;
	color: #fff;
}
.group-navi-item span{
	font-size:13px;
	color: #ddd;
	margin-right:4px
}
@media(min-width:768px){
	.group-navi {
		display: grid;
		grid-template-columns: 80px 1fr;
		align-items: center;
	}
	#group-navi-title::after {
		content: ":";
		margin-left: 20px;
	}
}

/* SNS */
.share-icons-wrap {
	display: grid;
	grid-template-columns: repeat(3,100px);
	gap: 8px;
	margin:20px 0;
}
.share-icon {
	padding: 4px;
	background: rgb(24, 119, 242);
	border-radius: 4px;
}
.share-icon.tw {
	background: #000;
}
.share-icon.line {
	background: rgb(6, 199, 85);
}
.share-icon a {
	display: grid;
	grid-template-columns: 18px 1fr;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: #fff;
}
@media(hover:hover){
	.share-icon a:hover {
		text-decoration: none;
		transform: scale(1.1);
		transform-origin: left;
		transition: transform .3s;
	}
}

/* 商品説明 */
/* 広告バナー*/
.ad_block{
  max-width:1260px;
  text-align:center;
}
.ad_block > :not(:last-child) {
  display:block;
  margin-bottom: 12px;
}

/* PC時、表示順を変更する */	
@media(min-width:981px){
	.product-infomation {
		display: grid;
		grid-template-columns: 100%;
	}
	.someclass {
		order: 3;
	}
	.ad_block {
		order: 2;
		margin-bottom: 24px;
	}
}
@container product-info (width > 640px){
  .ad_block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(8px,1cqi, 12px);
  }
}
@container product-info (width > 1000px){
  .ad_block{
    grid-template-columns: repeat(2,1fr);
    align-items: center;
    max-width:1012px;
  }
  /*
  .ad_block :last-child {
    grid-row: 1/3;
    grid-column: 3/4;
  }
  */
}
/* 開閉するコンテンツ（商品説明とレビュー） */
.details[open]{
  padding-bottom: 48px;
}
.details summary{
  display:block;
}
.details summary::-webkit-details-marker{
  display:none
}
.details summary::marker{
  display:none
}
.summary-title {
  display: flex;
  align-items: center;
  font-size: 19px;
  margin: 0;
  padding-block: 16px;
  border-top: 1px solid #aaa;
  position: relative;
}
.summary-title::before{
  content: "(ひらく)";
  position: absolute;
  right: 8px;
  font-size: 12px;
  color: #777
}
.summary-title::after {
  content: "＋";
  position: absolute;
  right: -12px;
  color: #777;
}
#review-anchor .review-summary-container { /*u-komiイベント無効化*/
  margin-left:1em;
  pointer-events: none !important;
}
.details:not([open]) #review-title.summary-title{
  border-bottom:1px solid #aaa
}
.details[open] .summary-title::after {
  rotate: 45deg;
  transition: rotate .2s;
}
details[open] .summary-title::before{
  content: "(とじる)";
}
@media(max-width:980px){
  .review-container .reviewWidget_title_container::before{
    display:none !important;
  }
  .reviewWidget_inner{
    padding-top: 0 !important
  }
}
@media(min-width:981px){
  #description-title::before {
    content: "【";
    position: initial;
    font-size: initial;
    color: initial;
  }
  #description-title::after {
    content: "】";
    position: initial;
    rotate: initial;
    color: initial;
  }
  .details{
    pointer-events: none;
  }
  .details :is(.numberReviewDropDown, .u-komi-sorting-btn-form-data, .reviewFilterBtn-btn, .uKomiWidget-btn, button, a,iframe, #voice){/* details内の無効化除外指定*/
    pointer-events:auto;
  }
  #review-title {
    display: none;
  }
}

/* カテゴリー売上ランキング*/
#rank_list-container:has(> #rank_list:empty) {
  display: none;
}
#rank_list-container {
  container-name: free;
  container-type: inline-size;
  padding-left: 8px;
}
#rank_list{
  display: flex;
  column-gap:4px;
  height:auto;
  min-height: calc(clamp(150px, 20cqi - 8px , 200px) + 38px + 38px);
  font-size:14px;
  overflow-x: scroll;
  overflow-y:hidden;
}
#rank_list .img_box {
  min-width: clamp(150px, 20cqi - 8px, 265px);
  height:100%;
}
[data-rank]::before {
  content: attr(data-rank);
  width: 100%;
  display: flex;
  background: url(https://img07.shop-pro.jp/PA01446/246/etc_base64/Y19ibG9jaw.png) no-repeat center bottom;
  height: 23px;
  background-size: 50px;	
  justify-content: center;
  color: #fff;	
  padding:15px 0 0 0;
}
[data-rank="1"]::before {background: url(https://img07.shop-pro.jp/PA01446/246/etc_base64/Y19nb2xk.png) no-repeat center bottom;background-size: 50px;}
[data-rank="2"]::before {background: url(https://img07.shop-pro.jp/PA01446/246/etc_base64/Y19zaWx2ZXI.png) no-repeat center bottom;background-size: 50px;}
[data-rank="3"]::before {background: url(https://img07.shop-pro.jp/PA01446/246/etc_base64/Y19jb3Blcg.png) no-repeat center bottom;background-size: 50px;}
#rank_list p{
  line-height: 1.1;
  margin:0;
  padding-top:7px;
  padding-inline:2px;
}
@container free (width > 770px){
  #rank_list{
    overflow-x:initial;
  }
}
@media(hover:hover){
  .img_box:hover,.img_box:focus {
	text-decoration: none;
  }
}

/* こんな商品も見ています　スタイル上書き */
#fsrecommenddiv1 .history-list {
	--list-column: 2;
	display: grid;
	grid-template-columns: repeat( var(--list-column), 1fr);
	padding: 0 var(--list-gap) calc( var(--list-gap) * 5);
	gap: 8px 4px;
}
@media(min-width:768px){
	#fsrecommenddiv1 .history-list {
		--list-column: 3;
	}
}
@media(min-width:981px){
	#fsrecommenddiv1 .history-list {
		--list-column: 6;
	}
}
#fsrecommenddiv1 .history-list__unit {
	--list-gap: 8px;
	padding: 12px var(--list-gap) calc(var(--list-gap) * 5);
	position: relative;
	box-shadow: 0 0 0 1px #e4e6eb;
	border-radius: var(--list-gap);
	width: auto;
}
#fsrecommenddiv1 .product-list__name {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	font-size: 14px;
	line-height: 1.4;
	font-weight: 400;
	margin: 12px 0 4px;
  padding:0;
	overflow: hidden;
}
#fsrecommenddiv1 .history-list .product-list__price {
	font-size: 14px;
	font-weight: 600;
	margin: 8px 0 12px;
}
#fsrecommenddiv1 .product-list__fav-items {
	position: absolute;
	bottom: 4px;
}


/* カート追従ボタン */
#following-btn {
	display: none;
	position: fixed;
	bottom: 0;
	left: 8px;
	width: clamp(120px,25vw,320px);
	margin-bottom: 8px;
	opacity: 0;
	font-size: clamp(11px,2vw,14px);
	padding: clamp(8px,1vw + 4px,14px) 0;
}
#following-btn.has-cart-item{
	bottom:80px;
}	
#product.show-follow ~ #following-btn {
	display: block;
	z-index: 99999;
	animation: fadein .3s forwards;
}
@media(min-width:768px){
	#following-btn{
		left: 50vw;
		translate: -50%;
	}
}


/* 以下は使用していない可能性が高い */
.product-related-list {
  font-size: .93em;
}
.product-related-list__unit {
  padding: 0;
  margin-right: 10px;
  display: inline-block;
}
.product-related-list__txt {
 color: #004D9E;
}
.product-related-list__txt:hover,
.product-related-list__txt:focus {
  color: #004D9E;
}
.product-social-list {
  list-style: none;
}

.product-social-list__unit {
  display: inline-block;
}
.product-option {
  padding-bottom: 10px;
}
.product-option-table {
  background-color: #fff;
}
.product-option-list__unit {
  margin: 10px 0;
}
.product-option-list__unit dl {
  margin: 0;
}
.product-option-list__name {
  margin: 0;
  padding-bottom: 10px;
  font-size: .93em;
  font-weight: normal;
}
.product-option-list__detail {
  margin: 0;
}
.product-option-list__select {
  height: 40px;
  border: 2px solid #333;
  font-size: .93em;
}
.text-titles {
  padding-bottom: 10px;
}
.text-titles-list__unit {
  margin: 10px 0;
}
.text-titles-list__unit dl {
  margin: 0;
}
.text-titles-list__name {
  margin: 0;
  padding-bottom: 10px;
  font-size: .93em;
  font-weight: normal;
}
.text-titles-list__detail-text {
  height: 40px;
  border: 2px solid #333;
  font-size: .93em;
}
.product-init-list {
  margin: 0;
}
.product-init-list__name {
  margin: 0;
  padding-bottom: 10px;
  font-size: .93em;
  font-weight: normal;
}
.product-init-list__detail {
  margin: 0;
}
.product-init-list__detail-num {
  width: 100px;
  height: 28px;
  border: 2px solid #333;
  font-size: .93em;
  display: inline-block;
}
.product-init-list__detail-updw {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
}
.product-init-list__detail-updw li {
  line-height: 1.2;
}
.product-order-btn-list {
  margin: 0;
  padding-top: 15px;
}
.product-order-btn-list__unit i {
  margin-right: 10px;
}