﻿@charset "UTF-8";
:root{
	--goods-radius-base:4px;
	--goods-detail-radius-base:4px;
	--goods-detail-margin-y-lg:50px;
}

/* --------------------------------------------------------------------
	商品詳細
--------------------------------------------------------------------- */
.pg_goods_ #spec_goods_comment{
	margin-bottom: 20px;
	font-size: 0.8125rem;
	font-weight: 400;
}
.pg_goods_ .goodsproductdetail_ {
	width: 100%;
	display: flex;
	align-items: stretch;
	gap: 0 80px;
}
.pg_goods_ .goodsproductdetail_left_{
	flex-shrink: 0;
	width: 400px;
}
.pg_goods_ .goodsproductdetail_right_{
	flex-grow: 1;
}
.pg_goods_ .js-goods-detail-goods-slider{
	visibility: hidden;
}
.pg_goods_ .js-goods-detail-goods-slider :where(.swiper-target,.swiper-thumbnail-target) .swiper-slide{
	display: flex;
	align-items: center;
	justify-content: center;
	height: auto;
}
.pg_goods_ .js-goods-detail-goods-slider :where(.swiper-target,.swiper-thumbnail-target) .comment_{
	display: none;
}
.pg_goods_ .js-goods-detail-goods-slider .swiper-target .swiper-wrapper{
	align-items: stretch;
}
.pg_goods_ .js-goods-detail-goods-slider .swiper-thumbnail-target .swiper-wrapper{
	display: flex;
	flex-wrap: wrap;
	gap: 5px 5px;
	align-items: stretch;
}
.pg_goods_ .js-goods-detail-goods-slider .swiper-thumbnail-target{
	margin-top: 20px;
}
.pg_goods_ .js-goods-detail-goods-slider .swiper-thumbnail-target .swiper-slide{
	width: calc((100% - 20px) / 5);
	height: 0;
	padding: 0 0 calc((100% - 20px) / 5);
	position: relative;
}
.pg_goods_ .js-goods-detail-goods-slider .swiper-thumbnail-target .swiper-slide figure{
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.pg_goods_ .js-goods-detail-goods-slider .swiper-thumbnail-target .swiper-slide figure img{
	object-fit: contain;
	width: 100%;
	height: 100%;
}
.pg_goods_ .js-goods-detail-goods-slider .swiper-thumbnail-target .swiper-slide.swiper-slide-thumb-active::after{
	display: block;
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 1;
	border: 1px solid var(--g-theme-color-secondary);
	border-radius: var(--goods-detail-radius-base);
}
.pg_goods_ .js-goods-detail-goods-slider .swiper-thumbnail-target .for-swiper-img{
	vertical-align: middle;
	border-radius: var(--goods-detail-radius-base);
}
.pg_goods_ .js-goods-detail-goods-slider .swiper-thumbnail-target .swiper-slide .for-swiper-annotation{
	content:'';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #bebebe;
	opacity: 0.8;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--g-text-color-primary);
	font-size: 0.75rem;
	border-radius: var(--goods-detail-radius-base);
	cursor: default;
}
.pg_goods_ .js-goods-detail-goods-slider .swiper-target{
	position: relative;
	border: 1px solid var(--g-theme-color-secondary);
	border-radius: var(--goods-detail-radius-base);
}
.pg_goods_ .js-goods-detail-goods-slider .swiper-target .swiper-slide{
	padding: 30px;
	aspect-ratio: 1 / 1;
}
.pg_goods_ .js-goods-detail-goods-slider .swiper-target .swiper-slide img {
	object-fit: contain;
    width: 100%;
    height: 100%;
}
.pg_goods_ .js-goods-detail-goods-slider .swiper-target :where(.button-next,.button-prev){
	position: absolute;
	cursor: pointer;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	visibility:visible;
	width: calc(38px + 13px);
	height:calc(38px + 13px);
	display: flex;
	align-items: center;
	justify-content: center;
}
.pg_goods_ .js-goods-detail-goods-slider .swiper-target .swiper-button-disabled{
	visibility:hidden;
}
.pg_goods_ .js-goods-detail-goods-slider .swiper-target :where(.button-next,.button-prev):hover{
	opacity: 0.7;
}
.pg_goods_ .js-goods-detail-goods-slider .swiper-target :where(.button-next,.button-prev)::before{
	content: '';
	background-image: url('../img/usr/common/arrow-black-right-thin.png');
	background-repeat: no-repeat;
	background-size: contain;
	width: 13px;
	height: 24px;
	display: block;
}
.pg_goods_ .js-goods-detail-goods-slider .swiper-target .button-prev{
	left: 0;
}
.pg_goods_ .js-goods-detail-goods-slider .swiper-target .button-next{
	right: 0;
}
.pg_goods_ .js-goods-detail-goods-slider .swiper-target .button-prev::before{
	transform: scale(-1,1);
}
.pg_goods_ .js-goods-detail-goods-slider .swiper-target .button-next::before{
	transform: scale(1,1);
}
.pg_goods_ .js-goods-detail-goods-slider .js-goods-detail-zoom{
	position: absolute;
	bottom: 10px;
	right: 10px;
	z-index: 1;
}
.pg_goods_ .js-goods-detail-goods-slider .js-goods-detail-zoom::before{
	content:'';
	background-image: url('../img/usr/common/zoom-gray.png');
	background-repeat: no-repeat;
	background-size: contain;
	width: 40px;
	height: 40px;
	display: block
}
.pg_goods_ .goods_detail_icon_wrapper_{
	display: flex;
	flex-wrap: wrap;
	gap: 5px 5px;
	position: absolute;
	top: 10px;
	left: 10px;
}
.pg_goods_ .goods_detail_icon_wrapper_ > img{
	width: auto;
	height: 19px;
	image-rendering: pixelated;
}
.pg_goods_ .goods_detail_gallery_inner_{
	position: relative;
}
body:has(.pg_goods_) #js-goods-detail-lightbox{
	display: none;
}
body:has(.pg_goods_) .uk-lightbox [uk-close]{
	position: fixed;
	visibility: hidden;
	padding: 0;
	width: 21px;
	height: 21px;
}
body:has(.pg_goods_) .uk-lightbox [uk-close] > svg{
	width: 21px;
	height: 21px;
}
body:has(.pg_goods_) .uk-lightbox-button{
	margin: 0;
	padding: 0;
	visibility: hidden;
	top: 50%!important;
}
body:has(.pg_goods_) .uk-lightbox-button > svg{
	width: 15px;
	height: 28px;
}
body:has(.pg_goods_) .uk-lightbox-caption{
	display: none;
}
body:has(.pg_goods_) .uk-lightbox-toolbar{
	background: none;
}
.pg_goods_ .goodsproductdetail_right_ .goods_name_{
	font-weight: 500;
	font-size: 1rem;
	line-height: calc(23 / 16);
	padding-bottom: 6px;
	border-bottom: 1px solid var(--g-form-border-color);
	margin-bottom: 10px;
}
.pg_goods_ .goodsproductdetail_right_ .goods_price_wrapper_{
	display: flex;
	flex-direction: column;
	gap: 2px 0;
	padding: 10px 0;
	margin: 10px 0;
	border-top: 1px solid var(--g-form-border-color);
	border-bottom: 1px solid var(--g-form-border-color);
}
.pg_goods_ .goods_spec_wrapper_{
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid var(--g-form-border-color);
	& .goods_brand_wrapper_{
		display: flex;
		flex-direction: column;
		gap: 10px 0;
	}
}
.pg_goods_ .goods_stock_wrapper_{
	gap: 0 10px;
}
.pg_goods_ .goods_price_wrapper_ .tax{
	display: none;
}
.pg_goods_ .gd-flex-wrapper,
.pg_goods_ .gd-price-wrapper{
	display: flex;
	align-items: center;
	font-size: 1rem;
	font-weight: 500;
}
body:has(.pg_goods_) #goods-detail-follow-cart .goods-detail-maker-price-wrapper,
.pg_goods_ .goods-detail-maker-price-wrapper{
	display: flex;
	gap: 0 13px;
	align-items: center;
}
body:has(.pg_goods_) #goods-detail-follow-cart .goods-detail-price.for-sale,
.pg_goods_ .gd-price-wrapper.for-sale{
	color: var(--g-theme-color-quinary);
}
.pg_gppds_ .gd-flex-wrapper .title,
.pg_goods_ .gd-price-wrapper .title{
	flex-shrink: 0;
}
.pg_goods_ :is(.goods-detail-stock-inner,.goods_stock_wrapper_),
.pg_goods_ .goods-detail-price{
	align-items: flex-end;
}
.pg_goods_ .goods-detail-brand {
	align-items: center;
}

.pg_goods_ #js-goods-detail-stock-help,
.pg_goods_ .goods-detail-stock-inner >*:not(.value){
	position: relative;
	top: -2px;
}
.pg_goods_ .goods-detail-brand >*:not(.value),
.pg_goods_ .goods-detail-price >*:not(.value){
	position: relative;
	top: -4px;
}
.pg_goods_ .goods_qty_wrapper_{
	margin-top: 4px;
}
.pg_goods_ .goods-detail-qty-catrton .value + .title{
	margin-left: 4px;
}
.pg_goods_ .goods-detail-price .value{
	font-size: 1.54375rem;
}
.pg_goods_ .goods_price_inner_ :where(.title,.value){
	font-weight: 600;
}
.pg_goods_ .goods-detail-stock-inner .value{
	min-width: 50px;
	font-size: 1.21875rem;
	font-weight: 600;
}
.pg_goods_ .question{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid var(--g-theme-color-primary);
	width: 18px;
	height: 18px;
	margin-right: 4px;
}


body:has(.pg_goods_) #js-goods-detail-stock-tooltip{
	border: 1px solid var(--g-form-border-color);
	padding: 12px 10px;
	background-color: #fff;
	width: auto;
}
body:has(.pg_goods_) #js-goods-detail-stock-tooltip::before{
	content:'';
	position: absolute;
	background-color:var(--g-form-border-color);
	clip-path: polygon(0 0, 100% 0,50% 100%);
	width: 10px;
	height: 10px;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
}
body:has(.pg_goods_) #js-goods-detail-stock-tooltip::after{
	content:'';
	position: absolute;
	background-color:#fff;
	clip-path: polygon(0 0, 100% 0,50% 100%);
	width: 9px;
	height: 9px;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
}
body:has(.pg_goods_) #js-goods-detail-stock-tooltip .title{
	font-size: 0.9375rem;
	line-height: calc(22 / 15);
	font-weight: 500;
	margin-bottom: 6px;
}
body:has(.pg_goods_) #js-goods-detail-stock-tooltip .text{
	font-size: 0.75rem;
	line-height: calc(18 / 12);
	font-weight: 400;
}
.pg_goods_ .mainframe_ .g-qty-wrapper{
	height: 44px;
	margin-left: 8px;
}
.pg_goods_ .mainframe_ .g-qty-wrapper button{
	width: 25px;
}
.pg_goods_ .mainframe_ .g-qty-wrapper .g-qty-minus{
	border-top-left-radius: var(--goods-detail-radius-base);
	border-bottom-left-radius: var(--goods-detail-radius-base);;
}
.pg_goods_ .mainframe_ .g-qty-wrapper .g-qty-plus{
	border-top-right-radius: var(--goods-detail-radius-base);
	border-bottom-right-radius: var(--goods-detail-radius-base);
}
.pg_goods_ .mainframe_ .g-qty-wrapper [name="qty_"]{
	width: 60px;
	text-align: center;
}
.pg_goods_ .goods-detail-cart-qty-wrapper{
	display: flex;
	align-items: center;
}
.pg_goods_ .goodsproductdetail_right_ .goods_cart_area_ .cartbox_{
	display: flex;
	flex-direction: column;
	gap: 10px 0;
}
.pg_goods_ .goods-detail-cart-flex{
	display: flex;
	gap: 0 10px;
	align-items: flex-start;
}
.pg_goods_ .goods-detail-cart-flex-left{
	display:flex;
	flex-direction: column;
	gap: 10px 0;
}
.pg_goods_ .goods-detail-cart-flex > *:first-child{
	flex-shrink: 0;
}
.pg_goods_ .goods-detail-bookmark-link{
	border: 1px solid var(--g-form-border-color);
	border-radius: var(--goods-radius-base);
	width: 77px;
	height: 49px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 3px 0;
}
.pg_goods_ .goods-detail-bookmark-link .text{
	font-size: 0.625rem;
	font-weight: 500;
	line-height: 1;
}
.pg_goods_ .goods-detail-bookmark-link::before{
	content:'';
	background-image: url('../img/usr/common/mylist-black@2x.png');
	background-repeat: no-repeat;
	background-size: contain;
	width: 21px;
	height: 24px;
	display: block;
}
.pg_goods_ .goods-detail-cart-flex .replacement_item_ a{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	vertical-align: middle;
	width: fit-content;
	border-radius: var(--goods-detail-radius-base);
	background-color: #509925;
	color: #fff;
	font-weight: 500;
	width: 249px;
	height: 49px;
	gap: 0 0;
}
.pg_goods_ .goods-detail-cart-flex .replacement_item_ a::before{
	content:'';
	background-image: url('../img/usr/common/alt-white@2x.png');
	background-repeat: no-repeat;
	background-size: contain;
	width: 24px;
	height: 21px;
	display: block;
	margin-right: 14px;
}
.pg_goods_ .goods-detail-cart-flex .replacement_item_ a::after{
	content:'';
	background-image: url('../img/usr/common/arrow-white-down.png');
	background-repeat: no-repeat;
	background-size: contain;
	width: 11px;
	height: 7px;
	margin-left: 13px;
}
.pg_goods_ .rightmenuframe_ #jscart_replace_{
	visibility: hidden;
	width: 0;
}
.pg_goods_ .rightmenuframe_ .js-cart-drop-toggle{
	position: relative;
	left: 14px;
}
.pg_goods_ .goods_anchor_area_{
	display: flex;
	gap: 0 10px;
	margin: 10px 0;
}
.pg_goods_ .goods_download_area_{
	margin: 10px 0;
}
.pg_goods_ .goods_anchor_area_ > a{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 32px;
	border: 1px solid var(--g-form-border-color);
	padding: 0 12.5px;
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	border-radius: var(--goods-detail-radius-base);
	gap: 0 6px;
}
.pg_goods_ .goods_anchor_area_ > a::after{
	content:'';
	background-image: url('../img/usr/common/arrow-black-down.png');
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	width: 9px;
	height: 6px;
}
.pg_goods_ .goods_anchor_area_ .goods-detail-to-size{
	width: 200px;
}
.pg_goods_ .goods_anchor_area_ .goods-detail-to-fit{
	width: 128px;
}
.pg_goods_ .goods-detail-to-download{
	color: #3994d4;
	font-size: 0.8125rem;
	line-height: calc(18 / 13);
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 0 7px;
}
.pg_goods_ .goods-detail-to-download::after{
	content:'';
	background-image: url('../img/usr/common/arrow-blue-right.png');
	background-repeat: no-repeat;
	background-size: contain;
	width: 5px;
	height: 10px;
	display: block;
}
.pg_goods_ .goods_section_wrapper_{
	margin-top: var(--goods-detail-margin-y-lg);
}
.pg_goods_ .goods_section_wrapper_ section .common_headline2_{
	margin-bottom: 30px;
	text-align: center;
}
.pg_goods_ .goods_section_wrapper_{
	display: flex;
	flex-direction: column;
	gap: var(--goods-detail-margin-y-lg) 0;
}
.pg_goods_ .gd-table{
	width: 100%;
}
.pg_goods_ .gd-table th{
	background-color: #f2f3f4;
	font-size: 0.8125rem;
	font-weight: 500;
	border: 1px solid var(--g-form-border-color);
	border-left: none;
	min-width: 120px;
	text-align: center;
}
.pg_goods_ .gd-table td{
	background-color: #fff;
	font-size: 0.8125rem;
	font-weight: 500;
	border: 1px solid var(--g-form-border-color);
	border-right: none;
	padding:12px 24px;
}
.pg_goods_ .goods-detail-baseinfo-inner .gd-table th{
	width: 120px;
}
.pg_goods_ .goods-detail-other-inner .gd-table th{
	width: 144px;
}
.pg_goods_ .goods-detail-other-inner .th-item-certification{
	border-left: 1px solid var(--g-form-border-color);
}
.pg_goods_ .goods-detail-water-faucet-list{
	display: flex;
	flex-wrap: wrap;
	gap: 10px 10px;
	align-items: stretch;
}
.pg_goods_ .goods-detail-water-faucet-list > li{
	padding: 4px 5px;
	border: 1px solid #5fb2ed;
	font-weight: bold;
	border-radius: var(--goods-detail-radius-base);
}
.pg_goods_ .goods-detail-water-faucet-list > li >*{
	font-size: 0.625rem;
	color: #5fb2ed;
}
.pg_goods_ .goods-detail-info-link{
	display: flex;
	justify-content: flex-end;
	margin-top: 8px;
}
.pg_goods_ .goods-detail-info-link > a{
	font-size: 0.8125rem;
	font-weight: 400;
	display: flex;
	align-items: center;
	gap: 0 7px;
}
.pg_goods_ .goods-detail-info-link > a::after{
	content:'';
	background-image: url('../img/usr/common/arrow-black-right.png');
	background-repeat: no-repeat;
	background-size: contain;
	width: 6px;
	height: 10px;
	display: block;
}
.pg_goods_ .gd-comment-flex,
.pg_goods_ .goods-detail-feature-inner{
	display: flex;
	align-items: stretch;
	gap: 0 50px;
}
.pg_goods_ .goods-detail-feature-inner:has(.goodscomment6_) >.goodscomment1_{
	flex-shrink: 0;
	width: calc(100% - 410px);
}
.pg_goods_ .goods-detail-feature-inner:has(.goodscomment6_) >.goodscomment6_{
	width: 360px;
}
.pg_goods_ .gd-h3{
	font-size: 0.875rem;
	font-weight: bold;
	color: #3994d4;
	margin-bottom: 10px;
	line-height: calc(23 / 14);
}
.pg_goods_ .gd-comment-text{
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: calc(22 / 13);
}
.pg_goods_ .goods-detail-other-inner{
	display: flex;
	flex-direction: column;
	gap:28px 0;
}
.pg_goods_ .goods-detail-spec-saving-water-list{
	display: flex;
	flex-wrap: wrap;
	gap: 5px 5px;
}
.pg_goods_ :where(.goodscomment2_+.goodscomment3_,.goodscomment4_+.goodscomment5_){
	margin-top: 12px;
}
.pg_goods_ #js-goods-detail-other-more-target{
	display:none;
}
.pg_goods_ #js-goods-detail-variation-more-toggle,
.pg_goods_ #js-goods-detail-other-more-toggle{
	border: 1px solid var(--g-form-border-color);
	border-radius: var(--goods-detail-radius-base);
	margin: 0 auto;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.875rem;
	font-weight: 500;
	width: 140px;
	padding: 0 20px;
	background-color: #fff;
	gap:0 10px;
}
.pg_goods_ #js-goods-detail-variation-more-toggle[aria-expanded="true"],
.pg_goods_ #js-goods-detail-other-more-toggle[aria-expanded="true"]{
	width: 140px;
}
.pg_goods_ #js-goods-detail-variation-more-toggle[aria-expanded="false"]::after,
.pg_goods_ #js-goods-detail-other-more-toggle[aria-expanded="false"]::after{
	content:'\ff0b';
	display: block;
}
.pg_goods_ #js-goods-detail-other-more-toggle[aria-expanded="true"]{
	margin-top: 30px;
}
.pg_goods_ #goods_replacement_item{
	font-size: 1rem;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0 8px;
	padding: 18px 0;
}
.pg_goods_ #goods_size_select{
	font-size: 1rem;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0 8px;
	margin: 30px 0;
}
.pg_goods_ #goods_size_select::before{
	content:'';
	background-image: url('../img/usr/common/book-black.png');
	background-repeat: no-repeat;
	background-size: contain;
	width: 35px;
	height: 24px;
	display: block;
}
.pg_goods_ .goods-detail-section-replacement,
.pg_goods_ .goods-detail-size-select{
	background-color: var(--g-theme-color-septenary);
	border-radius: 6px;
}
.pg_goods_ .goods-detail-catalog-wrapper{
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
}
.pg_goods_ .semiclosed-login-form{
	margin-bottom:30px;
}
.pg_goods_ .semiclosed-login-form [type="submit"]{
	width: 100%;
	height: 49px;
}
.pg_goods_ .g-goods-user-review-wrapper,
.pg_goods_ .goodsset_,
.pg_goods_ .g-goods-accessorylist.for-bottom,
.pg_goods_ .g-goods-accessorylist.for-middle{
	margin: var(--goods-detail-margin-y-lg) 0;
}
.pg_goods_ .g-goods-accessorylist.for-bottom{
	display: flex;
	flex-direction: column;
	gap: var(--goods-detail-margin-y-lg) 0;
}
.pg_goods_ .g-goods-accessorylist.for-bottom .head{
	background-color:rgba(80,153,37,0.8);
	color: #fff;
	padding:10px;
	margin-bottom: 20px;
	font-size: 1rem;
}
.pg_goods_ .goodsset_ .head,
.pg_goods_ .g-goods-accessorylist.for-middle .head{
	background-color:rgba(80,153,37,0.8);
	color: #fff;
	padding:10px;
	margin-bottom: 10px;
	font-size: 0.875rem;
}
.pg_goods_ .goods-detail-friend-comment-1-wrapper,
.pg_goods_ .goods-detail-attr-wrapper{
	display: none;
}
.pg_goods_ .goods-detail-attr,
.pg_goods_ .good-detail-set-table{
	width: 100%;
}
.pg_goods_ .good-detail-set-table col[data-index="1"]{
	width: 40%;
}
.pg_goods_ .good-detail-set-table col[data-index="2"]{
	width: 20%;
}
.pg_goods_ .good-detail-set-table col[data-index="3"]{
	width: auto;
}
.pg_goods_ .goods_variation_{
	margin: 30px 0;
}
.pg_goods_ .goods-detail-replacement-inner,
.pg_goods_ .goods_variation_ > form{
	display: flex;
	flex-direction: column;
	gap: 28px 0;
	width: 815px;
	margin: 0 auto;
}
.pg_goods_ .goods-detail-replacement-inner{
	margin-bottom: 20px;
}
.pg_goods_ .goods_variation_ .goods-variation-cart{
	display: flex;
	justify-content: flex-end;
}
.pg_goods_ .goods_variation_ .goods-variation-cart .btn_cart_l_{
	width: 178px;
}
.pg_goods_ .goods-detail-replacement-table,
.pg_goods_ .goods-detail-variation-table{
	width: 100%;
}
.pg_goods_ .goods-detail-replacement-table col[data-index="1"]{
	width: 80px;
}
.pg_goods_ .goods-detail-replacement-table col[data-index="2"]{
	width: 190px;
}
.pg_goods_ .goods-detail-replacement-table col[data-index="3"]{
	width: 108px;
}
.pg_goods_ .goods-detail-replacement-table col[data-index="4"]{
	width: 154px;
}
.pg_goods_ .goods-detail-replacement-table col[data-index="5"]{
	width: 90px;
}
.pg_goods_ .goods-detail-replacement-table col[data-index="6"]{
	width: auto;
}


.pg_goods_ .goods-detail-variation-table col[data-index="1"]{
	width: 80px;
}
.pg_goods_ .goods-detail-variation-table col[data-index="2"]{
	width: 190px;
}
.pg_goods_ .goods-detail-variation-table col[data-index="3"]{
	width: 108px;
}
.pg_goods_ .goods-detail-variation-table col[data-index="4"]{
	width: 108px;
}
.pg_goods_ .goods-detail-variation-table col[data-index="5"]{
	width: 80px;
}
.pg_goods_ .goods-detail-variation-table col[data-index="6"]{
	width: 80px;
}
.pg_goods_  .goods-detail-variation-table col:last-child{
	width: auto
}
.pg_goods_  .goods-detail-variation-table td{
	border: 1px solid #e1e2e2;
}
.pg_goods_ .goods-detail-replacement-table th,
.pg_goods_ .goods-detail-variation-table th{
	background-color: #9ccef1;
	text-align: center;
	font-size: 0.8125rem;
	font-weight: 400;
}
.pg_goods_ .goods-detail-replacement-table tr:nth-child(2) td,
.pg_goods_ .goods-detail-variation-table tr:nth-child(2) td{
	border-top: none;
}
.pg_goods_ .goods-detail-replacement-table th,
.pg_goods_ .goods-detail-variation-table th{
	border: none;
}
.pg_goods_ .goods-detail-replacement-table th:nth-child(1),
.pg_goods_ .goods-detail-variation-table th:nth-child(1){
	border-left:1px solid #9ccef1;
}
.pg_goods_ .goods-detail-replacement-table th:nth-child(n+2),
.pg_goods_ .goods-detail-variation-table th:nth-child(n+2){
	border-left: 1px solid #e1e2e2;
}
.pg_goods_ .goods-detail-replacement-table th:last-child,
.pg_goods_ .goods-detail-variation-table th:last-child{
	border-right:1px solid #9ccef1;
}
.pg_goods_ .goods-detail-replacement-table td,
.pg_goods_ .goods-detail-variation-table td{
	font-size: 0.875rem;
	font-weight: 400;
	padding-left: 15px;
	padding-right: 15px;
}
.pg_goods_ .goods-detail-variation-table tr:nth-child(n+9){
	display: none;
}
.pg_goods_ .goods-detail-replacement-table td[data-index="2"],
.pg_goods_ .goods-detail-variation-table td[data-index="2"]{
	background-color: #f2f3f4;
	text-align: center;
	text-decoration: underline;
}
.pg_goods_ .goods-detail-replacement-table td:not([data-index="2"]),
.pg_goods_ .goods-detail-variation-table td:not([data-index="2"]){
	text-align: right;
}
.pg_goods_ .goods-detail-variation-table td[data-index="1"] img {
	object-fit: contain;
	width: 50px;
	height: 50px;
}
.pg_goods_ .goods-detail-replacement-table td[data-index="4"]{
	& :where(.for-normal,.for-sale){
		font-weight: 600;
		font-size: 1rem;
	}
	& .for-sale{
		color: var(--g-theme-color-quinary);
	}
	& .for-normal.g-price-wrapper-under-sale{
		font-weight: 400;
		font-size: 0.8125rem;
		text-decoration: line-through;
	}
}
.pg_goods_ .goods-detail-variation-table td[data-index="4"]{
	& :where(.for-normal,.for-sale){
		font-weight: 600;
		font-size: 1rem;
	}
	& .for-sale{
		color: var(--g-theme-color-quinary);
	}
	& .for-normal.g-price-wrapper-under-sale{
		font-weight: 400;
		font-size: 0.75rem;
		text-decoration: line-through;
	}
}
.pg_goods_ .goods-detail-replacement-table td[data-index="5"],
.pg_goods_ .goods-detail-variation-table td[data-index="5"]{
	font-weight: 600;
	font-size: 1rem;
}
.pg_goods_ .goods-detail-replacement-table td[data-index="6"]{
	text-align: left;
}
.pg_goods_  .goods-detail-variation-table .g-qty-wrapper{
	justify-content: center;
	height: 28px;
}
.pg_goods_  .goods-detail-variation-table .g-qty-wrapper [name="qty"]{
	font-size: 0.8125rem;
}
.pg_goods_ .etc_goodsimg_item_{
	text-align: center;
}
.pg_goods_ .etc_goodsimg_item_ .comment_{
	display: none;
}
body:has(.pg_goods_) .goods-detail-agree-form-inner{
	display: flex;
	align-items: flex-start;
	justify-content: center;
}
/* 添付ファイル */
.pg_goods_ .goods-affix-list {
	display: flex;
	flex-direction: column;
	margin-top: 30px;
	gap: 0 5px;
}
.pg_goods_ .goods-affix-list >*:first-child{
	border-top: 1px solid var(--g-form-border-color);
}
.pg_goods_ .goods-affix-list >*{
	border-bottom: 1px solid var(--g-form-border-color);
	display: flex;
	flex-direction: column;
	gap: 5px 0;
	padding: 5px 0;
}
.pg_goods_ .goods-affix-list--item--comment{
	padding-left: 31px;
}
.pg_goods_ .goods-affix-list--item--name a {
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 0 10px;
}
.pg_goods_ .goods-affix-list--item--name a::before{
	content:'';
	background: url(../img/sys/file.gif) 0 0 no-repeat;
	background-size: contain;
	width: 21px;
	height: 28px;
	display: block;
}
body:has(.pg_goods_) #goods-detail-follow-cart{
	background-color: #fff;
	border-top: 1px solid var(--g-form-border-color);
	border-bottom: 1px solid var(--g-form-border-color);
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: calc(var(--g-uk-drop-z-index) + 1);
	width: 100%;
	transform: translateY(100dvh);
	transition: transform .4s;
	display: none;
}
body:has(.pg_goods_) #goods-detail-follow-cart.js-slide-up{
	transform: translateY(0);
}
body:has(.pg_goods_) #goods-detail-follow-cart .goods-detail-follow-inner{
	display: flex;
	width: var(--g-layout-width-lg);
	justify-content: center;
	align-items: stretch;
	margin: 0 auto;
	padding: 18px 0;
}
body:has(.pg_goods_) #goods-detail-follow-cart .goods-detail-follow-frame-1{
	width: 305px;
	display: flex;
	flex-direction: column;
	gap: 4px 0;
	justify-content: center;
}
body:has(.pg_goods_) #goods-detail-follow-cart .goods-detail-follow-frame-2{
	width: 197px;
	border-right: 1px solid var(--g-form-border-color);
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
body:has(.pg_goods_) #goods-detail-follow-cart .goods-detail-follow-frame-3{
	width: 327px;
	padding:0 10px 0 30px;
}
body:has(.pg_goods_) #goods-detail-follow-cart .goods-detail-follow-frame-4{
	flex-grow: 1;
	padding:0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
body:has(.pg_goods_) #goods-detail-follow-cart .goods-detail-follow-frame-2 .goods_stock_wrapper_{
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	width: 100%;
	flex-direction: column;
	gap: 0 0;
	padding-left: 30px;
	position: relative;
	top: -6px;
}
body:has(.pg_goods_) #goods-detail-follow-cart .goods_name_{
	font-size: 1.125rem;
	font-weight: 500;
	line-height: calc(23 / 18);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
body:has(.pg_goods_) #goods-detail-follow-cart .goods-detail-item-code{
	display: flex;
	align-items: center;
	font-size: 0.8125rem;
	font-weight: 400;
	line-height: calc(22/ 13);
}
body:has(.pg_goods_) #goods-detail-follow-cart .goods-detail-stock-inner{
	font-size: 0.8125rem;
	font-weight: 500;
	padding: 0 30px 0 0;
	text-align: right;
}
body:has(.pg_goods_) #goods-detail-follow-cart .goods-detail-price .value,
body:has(.pg_goods_) #goods-detail-follow-cart .goods-detail-stock-inner .value{
	font-size: 1.54375rem;
	font-weight: 600;
}
body:has(.pg_goods_) #goods-detail-follow-cart .goods-detail-price .title{
	font-weight: 600;
}
body:has(.pg_goods_) #goods-detail-follow-cart .goods-detail-qty-catrton,
body:has(.pg_goods_) #goods-detail-follow-cart .tax,
body:has(.pg_goods_) #goods-detail-follow-cart .goods-detail-sales-comment{
	display: none;
}
body:has(.pg_goods_) #goods-detail-follow-cart .goods-detail-maker-price{
	font-size: 0.8125rem;
	font-weight: 400;	
}
body:has(.pg_goods_) #goods-detail-follow-cart .goods-detail-price{
	font-size: 0.8125rem;
	font-weight: 500;
}
body:has(.pg_goods_) #goods-detail-follow-cart .g-qty-wrapper{
	height: 44px;
}
body:has(.pg_goods_) #goods-detail-follow-cart .g-qty-wrapper button{
	width: 25px;
}
body:has(.pg_goods_) #goods-detail-follow-cart .g-qty-wrapper .g-qty-minus{
	border-top-left-radius: var(--goods-detail-radius-base);
	border-bottom-left-radius: var(--goods-detail-radius-base);;
}
body:has(.pg_goods_) #goods-detail-follow-cart .g-qty-wrapper .g-qty-plus{
	border-top-right-radius: var(--goods-detail-radius-base);
	border-bottom-right-radius: var(--goods-detail-radius-base);
}
body:has(.pg_goods_) #goods-detail-follow-cart .g-qty-wrapper [name="qty_"]{
	width: 60px;
	text-align: center;
}
body:has(.pg_goods_) #goods-detail-follow-cart .goods-detail-cart-qty-wrapper{
	display: flex;
	align-items: center;
}
body:has(.pg_goods_) #goods-detail-follow-cart .goods_cart_area_ .cartbox_{
	display: flex;
	gap: 0 20px;
	align-items: center;
}
body:has(.pg_goods_) #goods-detail-follow-cart .goods-detail-cart-flex{
	display: flex;
	gap: 0 10px;
	align-items: center;
}

body:has(.pg_goods_) #goods-detail-follow-cart .goods-detail-cart-flex > *:first-child{
	flex-shrink: 0;
}
body:has(.pg_goods_) #goods-detail-follow-cart .goods-detail-cart-flex .replacement_item_ a{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	vertical-align: middle;
	width: fit-content;
	border-radius: var(--goods-detail-radius-base);
	background-color: #509925;
	color: #fff;
	font-weight: 500;
	width: 250px;
	height: 44px;
	gap: 0 5px;
}
body:has(.pg_goods_) #goods-detail-follow-cart .goods-detail-cart-flex .replacement_item_ a::after{
	content:'';
	background-image: url('../img/usr/common/arrow-white-down.png');
	background-repeat: no-repeat;
	background-size: contain;
	width: 11px;
	height: 7px;
}
/* カートボタン関係 */

div.cartbox_ span.variationlist_ {
	padding-right: 4px;
	vertical-align: middle;
}

/**/
/* バリエーションプルダウン */
div.cartbox_ .variation_pulldown_ {
	margin-bottom: 10px;
}

/**/
/* バリエーションボックス */
div.cartbox_ div.colors_ {
	margin-bottom: 5px;
	width: 100%;
	overflow: hidden;
}

div.cartbox_ div.colors_ div.color_ {
	float: left;
	margin: 2px 5px 2px 5px;
	white-space: nowrap;
	width: 30px;
	height: 30px;
}

div.cartbox_ div.colors_ div.color_EnableStock_ {
	border: solid 2px #d0d0d0;
	background-color: #FFF;
	cursor: pointer;
}

div.cartbox_ div.colors_ div.color_DisableStock_ {
	border: dashed 2px #d0d0d0;
	background-color: #909090;
	cursor: pointer;
}

div.cartbox_ div.colors_ div.color_Selected_ {
	border: solid 2px #ffc0c0;
	background-color: #ffe0e0;
}

div.cartbox_ div.colors_ div.color_DisableSelected_ {
	border: dashed 2px #ffc0c0;
	background-color: #909090;
	color: #ffc0c0;
}

div.cartbox_ div.colors_ br {
	clear: left;
}

div.cartbox_ div.sizes_ {
	margin-bottom: 5px;
	width: 100%;
	overflow: hidden;
}

div.cartbox_ div.sizes_ div.size_ {
	float: left;
	padding: 2px 5px 2px 5px;
	margin: 2px 5px 2px 5px;
	white-space: nowrap;
	width: auto;
	height: auto;
	text-align: center;
}

div.cartbox_ div.sizes_ div.size_EnableStock_ {
	border: dotted 1px #d0d0d0;
	background-color: #FFF;
	cursor: pointer;
}

div.cartbox_ div.sizes_ div.size_DisableStock_ {
	border: dotted 1px #d0d0d0;
	background-color: #909090;
	cursor: pointer;
}

div.cartbox_ div.sizes_ div.size_Selected_ {
	border: solid 1px #ffc0c0;
	background-color: #ffe0e0;
}

div.cartbox_ div.sizes_ div.size_DisableSelected_ {
	border: dotted 1px #d0d0d0;
	background-color: #909090;
	color: #ffc0c0;
}

.goodsproductdetail_ .goodsimg_ div.mask_ {
	position: absolute;
	z-index: 10;
	color: #ff4a4a;
	font-weight: bold;
}




.goods_photo {
	position: relative;
	top: 0;
	left: 0;
	width: auto;
}

.goods_photo a .goods_large {
	display: block;
	position: absolute;
	width: 1px;
	height: 1px;
	top: 0;
	left: 0;
}

.goods_photo a.goods_popup,
.goods_photo a.goods_popup:visited {
	display: block;
	width: auto;
	top: 0;
	left: 0;
}

.goods_photo a.goods_popup:hover {
	background-color: #fff;
}

.goods_photo a.goods_popup:hover .goods_large {
	display: block;
	position: absolute;
	width: auto;
	height: auto;
	top: 0;
	left: 0;
}



/*** 商品分類SKU対応　ここから ***/

/* 商品画像 */
div.goodsimg2_ {
	float: left;
	display: inline;
	width: 600px;
	overflow: hidden;
}

td.goodsimg2_ {
	padding-right: 10px;
}

div.goodsimg2_ .img_6_ {
	margin-bottom: 10px;
}

div.goodsimg2_ .img_6_ .comment_ {
	margin-top: 5px;
}

div.goodsimg2_ div.etc_goodsimg2_ {
	width: 100%;
	overflow: hidden;
	margin-bottom: 10px;
	text-align: center;
}

div.goodsimg2_ div.etc_goodsimg2_item_ {
	display: inline;
	overflow: hidden;
	padding: 4px;
}

div.goodsimg2_ div.etc_goodsimg2_item_ img {
	height: 60px;
	border: solid 2px #cfcfcf;
}

div.goodsimg2_ div.etc_goodsimg2_item_ img.active_ {
	cursor: pointer;
	border: solid 2px #0060ff;
}

/**/

/* バリエーション情報 */
div.variationbox_ {
	width: 100%;
}

div.variationbox_ table.val_info {
	width: 100%;
}

div.variationbox_ table.val_info tr th {
	background-color: #eeffee;
	font-weight: normal;
	width: 40%;
}

#val_goods_name {
	font-size: 14px;
	font-weight: bold;
}

div.variationbox_ div.variationlist_ {
	padding-top: 10px;
}

/**/

/* バリエーション商品情報 */
div.variationbox_ div.var_goods_info {
	margin-top: 10px;
}

div.variationbox_ table.var_goods_info tr td {
	padding-bottom: 5px;
}

#val_goods_name {
	font-size: 14px;
	font-weight: bold;
}

div.variationbox_ div.original_price_ {
	font-size: 11px;
}

/**/

/* バリエーションプルダウン */
div.variationbox_ .variation_pulldown_title_ {
	margin-top: 10px;
}

div.variationbox_ .variation_pulldown_ {
	margin-bottom: 10px;
	width: 100%;
}

div.variationbox_ .variation_pulldown_ .variation_selected_ {
	background-color: #ffeeff;
}

div.variationbox_ .variation_pulldown_btn_ {
	margin-bottom: 10px;
	text-align: right;
}

/**/

/* バリエーション項目 */
div.variationbox_ .onProcess_ {
	width: 30px;
	height: 30px;
	background-image: url(../img/usr/ajax-loader.gif);
	background-repeat: no-repeat;
}

div.variationbox_ div.tags_ {
	margin-bottom: 10px;
	width: 100%;
	overflow: hidden;
}

div.variationbox_ div.tags_ div.title_ {
	padding-top: 10px;
	border-top: solid 1px #cccccc;
	padding-bottom: 2px;
}

div.variationbox_ div.tags_ div.title_Text_ {
	color: #000000;
}

div.variationbox_ div.tags_ div.tag_ {
	float: left;
	margin: 2px 5px 2px 5px;
	white-space: nowrap;
	border: dotted 2px #f0cccc;
	background-color: #ffffff;
}

div.variationbox_ div.tags_ div.tag_ .inner_ {
	white-space: nowrap;
	border: solid 2px #ffffff;
}

div.variationbox_ div.tags_ div.tag_ div.tag_Text_ {
	text-align: center;
	width: 30px;
	height: 30px;
	line-height: 32px;
	background-color: #cfcfcf;
	color: #ffffff;
}

div.variationbox_ div.tags_ div.tag_Enable_ {
	border: solid 2px #cfcfcf;
}

div.variationbox_ div.tags_ div.tag_Enable_ div.tag_Text_ {
	background-color: #001099;
	color: #ffffff;
}

div.variationbox_ div.tags_ div.tag_NoStock_ {
	border: dashed 2px #cfcfcf;
}

div.variationbox_ div.tags_ div.tag_NoStock_ div.tag_Text_ {
	background-color: #606060;
	color: #ffffff;
}

div.variationbox_ div.tags_ div.tag_Selected_ {
	border: solid 2px #000000;
}

div.variationbox_ div.tags_ div.tag_Selected_ div.tag_Text_ {
	background-color: #000000;
	color: #ffffff;
}

div.variationbox_ div.tags_ div.tag_Selected_NoStock_ {
	border: dashed 2px #000000;
}

div.variationbox_ div.tags_ div.tag_Selected_NoStock_ div.tag_Text_ {
	background-color: #000000;
	color: #ffffff;
}

div.variationbox_ div.tags_ .cursor_ {
	cursor: pointer;
}

div.variationbox_ div.tags_ br {
	clear: left;
}

#gallery div.mask_ {
	position: absolute;
	z-index: 10;
	color: #ff4a4a;
	font-weight: bold;
}

/**/

/* 商品カート2 */
div.cartbox2_ {
	margin-top: 10px;
	padding: 5px 0;
	padding-top: 10px;
}

div.cartbox2_ .cartqty2_ {
	padding: 5px 0;
}

/**/

/* 商品スペック2 */
div.goodsspec2_ {
	display: inline;
	width: 100%;
	overflow: hidden;
}

table.goodsspec2_ {
	margin: 0 0 10px 0;
	width: 100%;
	border-top: 1px solid #cfcfcf;
	border-bottom: 1px solid #cfcfcf;
}

table.goodsspec2_ th {
	width: 180px;
	text-align: left;
	padding: 3px 5px;
	vertical-align: top;
	background-color: #f3f3f3;
	border-top: 1px solid #e9e9e9;
	border-bottom: 1px solid #e9e9e9;
}

table.goodsspec2_ td {
	text-align: left;
	padding: 3px 5px;
	vertical-align: top;
	border-top: 1px solid #e9e9e9;
	border-bottom: 1px solid #e9e9e9;
	word-break: break-all;
}

/* セミクローズドサイト時ログインボタン */
.btn_login {
	background-color: #577cc6;
  color: white;
  border: none;
  border-radius: 3px;
}
.btn_login_s {
  font-size: 11px;
  height: 30px;
  width: 60px;
}
.btn_login_m {
  font-size: 14px;
  height: 40px;
  width: 160px;
}
.btn_login_l {
  font-size: 15px;
  height: 50px;
  width: 220px;
}
.btn_login_0 {
  font-size: 14px;
  height: 40px;
  width: 200px;
}

/* サイドメニューイベント欄 */
div.leftmenuframe_ div.StyleT_Line_,
div.rightmenuframe_ div.StyleT_Line_ {
	width: 100%;
}

div.leftmenuframe_ div.StyleT_Item_,
div.rightmenuframe_ div.StyleT_Item_ {
	margin: 0;
	width: 100%;
}
/* --------------------------------------------------------------------
	閲覧履歴
--------------------------------------------------------------------- */
#block_of_history_follow{
	position: fixed;
	max-width: var(--g-layout-width-lg);
	width: min(90%,var(--g-layout-width-lg));
	background-color: #fff;
	left: 50%;
	transform: translateX(-50%);
	z-index:calc(var(--g-uk-drop-z-index) + 1);
	border-radius: 6px;
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.35);
	display: none;
}
#block_of_history{
	margin: 34px 0;
	padding: 0;
}
#block_of_history_follow .head_{
	font-size: 1.125rem;
	font-weight: 500;
	line-height: calc(20 / 18);
	display: flex;
	gap: 0 10px;
	align-items: center;
	background-color: #ffe4be;
	height: 54px;
	margin:0;
	justify-content: center;
	position: relative;
	padding: 0 10px;
}
#block_of_history_follow .head_::before{
	content:'';
	background-image: url('../img/usr/common/history-black.png');
	background-repeat: no-repeat;
	background-size: contain;
	width: 23px;
	height: 23px;
	display: block;
}
#block_of_history .head_::before{
	content:'';
	background-image: url('../img/usr/common/history-black.png');
	background-repeat: no-repeat;
	background-size: contain;
	width: 34px;
	height: 34px;
	display: block;
}
#block_of_history_follow .g-goods-style-frame,
:is(.g-event-list,.g-goods-accessorylist.for-bottom) .StyleT_Frame_,
#block_of_history .g-goods-style-frame{
	visibility: hidden;
}
:is(.g-event-list,.g-goods-accessorylist.for-bottom) .StyleT_Frame_ .swiper-target-wrapper,
#block_of_history .g-goods-style-frame .swiper-target-wrapper{
	padding: 0 20px;
	position: relative;
	margin: 0 auto;
}
.pg_top_ .g-event-list .StyleT_Frame_ .swiper-target-wrapper,
.pg_top_ #block_of_history .g-goods-style-frame .swiper-target-wrapper{
	padding: 0 var(--g-event-padding-x);
}
#block_of_history_follow:has(.g-goods-style-item) .history-follow-no-data{
	display: none;
}
#block_of_history_follow .history-follow-no-data{
	padding: 40px 70px;
	text-align: center;
}
#block_of_history_follow .g-goods-style-frame .swiper-target-wrapper{
	padding: 20px 70px;
	position: relative;
	margin: 0 auto;
}
:is(.g-event-list,.g-goods-accessorylist.for-bottom) .StyleT_Frame_ .swiper-target,
#block_of_history_follow .g-goods-style-frame .swiper-target,
#block_of_history .g-goods-style-frame .swiper-target {
	overflow: hidden;
}
:is(.g-event-list,.g-goods-accessorylist.for-bottom) .StyleT_Frame_ .swiper-target a.swiper-no-swiping,
#block_of_history_follow .g-goods-style-frame a.swiper-no-swiping,
#block_of_history .g-goods-style-frame a.swiper-no-swiping{
	user-select: all;
}
:is(.g-event-list,.g-goods-accessorylist.for-bottom) .StyleT_Frame_ :where(.button-next,.button-prev),
#block_of_history_follow .g-goods-style-frame :where(.button-next,.button-prev),
#block_of_history .g-goods-style-frame :where(.button-next,.button-prev) {
	position: absolute;
	cursor: pointer;
	top: calc((190px - 9px) / 2);
	z-index: 1;
	visibility:visible;
}
.pg_top_ .g-event-list .StyleT_Frame_ :where(.button-next,.button-prev),
.pg_top_ #block_of_history_follow .g-goods-style-frame :where(.button-next,.button-prev),
.pg_top_ #block_of_history .g-goods-style-frame :where(.button-next,.button-prev) {
	position: absolute;
	cursor: pointer;
	top: calc((170px - 9px) / 2);
	z-index: 1;
	visibility:visible;
}
:is(.g-event-list,.g-goods-accessorylist.for-bottom) .g-event-list .StyleT_Frame_ .swiper-button-disabled,
#block_of_history_follow .g-goods-style-frame .swiper-button-disabled,
#block_of_history .g-goods-style-frame .swiper-button-disabled {
	visibility:hidden;
}
:is(.g-event-list,.g-goods-accessorylist.for-bottom) .StyleT_Frame_ :where(.button-next,.button-prev):hover,
#block_of_history_follow .g-goods-style-frame :where(.button-next,.button-prev):hover,
#block_of_history .g-goods-style-frame :where(.button-next,.button-prev:hover):hover {
	opacity: 0.7;
}
#block_of_history_follow .g-goods-style-frame .button-prev{
	left: 34px;
}
#block_of_history_follow .g-goods-style-frame .button-next{
	right: 34px;
}
:is(.g-event-list,.g-goods-accessorylist.for-bottom) .StyleT_Frame_ .button-prev,
#block_of_history .g-goods-style-frame .button-prev {
	left: 0px;
}
:is(.g-event-list,.g-goods-accessorylist.for-bottom) .StyleT_Frame_ .button-next,
#block_of_history .g-goods-style-frame .button-next {
	right: 0px;
}
.pg_top_ .g-event-list .StyleT_Frame_ .button-prev,
.pg_top_ #block_of_history .g-goods-style-frame .button-prev {
	left: 38px;
}
.pg_top_ .g-event-list .StyleT_Frame_ .button-next,
.pg_top_ #block_of_history .g-goods-style-frame .button-next {
	right: 38px;
}
:is(.g-event-list,.g-goods-accessorylist.for-bottom) .StyleT_Frame_ :where(.button-next,.button-prev)::before,
#block_of_history_follow .g-goods-style-frame :where(.button-next,.button-prev)::before,
#block_of_history .g-goods-style-frame :where(.button-next,.button-prev)::before {
	content: '';
	background-repeat: no-repeat;
	background-size: contain;
	width: 9px;
	height: 16px;
	display: block;
}
:is(.g-event-list,.g-goods-accessorylist.for-bottom) .StyleT_Frame_ .button-prev::before,
#block_of_history_follow .g-goods-style-frame .button-prev::before,
#block_of_history .g-goods-style-frame .button-prev::before {
	content: '';
	background-image: url('../img/usr/common/arrow-black-right.png');
	transform: scale(-1,1);
}
:is(.g-event-list,.g-goods-accessorylist.for-bottom) .StyleT_Frame_ .button-next::before,
#block_of_history_follow .g-goods-style-frame .button-next::before,
#block_of_history .g-goods-style-frame .button-next::before {
	content: '';
	background-image: url('../img/usr/common/arrow-black-right.png');
	transform: scale(1,1);
}
:is(.g-event-list,.g-goods-accessorylist.for-bottom) .StyleT_Frame_ .g-goods-style-item-inner,
#block_of_history_follow .g-goods-style-item-inner,
#block_of_history .g-goods-style-item-inner{
	display: flex;
	flex-direction: column;
}
#block_of_history_follow .g-goods-style-item .img_ img{
	border-radius: var(--goods-radius-base);
	width: 100%;
	height: auto;
	margin-bottom: 10px;
}
.pg_goods_ .StyleA_Frame_ .g-goods-style-item .img_ img{
	border-radius: var(--goods-radius-base);
	width: 100%;
	height: auto;	
}
:is(.g-event-list,.g-goods-accessorylist.for-bottom) .StyleT_Frame_ .g-goods-style-item .img_ img,
#block_of_history .g-goods-style-item .img_ img{
	border-radius: var(--goods-radius-base);
	width: 100%;
	height: auto;
	margin-bottom: 20px;
}
:is(.g-event-list,.g-goods-accessorylist.for-bottom) .StyleT_Frame_ .g-goods-style-item .img_.g-goods-style-img-wrapper,
#block_of_history .g-goods-style-item .img_.g-goods-style-img-wrapper{
	margin-bottom: 20px;
}
:is(.g-event-list,.g-goods-accessorylist.for-bottom) .StyleT_Frame_ .g-goods-style-item .img_ img,
#block_of_history .g-goods-style-item .img_.g-goods-style-img-wrapper img{
	margin-bottom: 0;
}

.pg_goods_ .StyleA_Frame_ .g-goods-style-item .name1_,
:is(.g-event-list,.g-goods-accessorylist.for-bottom) .StyleT_Frame_ .g-goods-style-item .name1_,
#block_of_history_follow .g-goods-style-item .name1_,
#block_of_history .g-goods-style-item .name1_{
	font-size: 0.875rem;
	font-weight: 500;
	line-height: calc(20 / 14);
}
.pg_goods_ .StyleA_Frame_ .g-goods-style-item .for-stock,
:is(.g-event-list,.g-goods-accessorylist.for-bottom) .StyleT_Frame_ .g-goods-style-item .for-stock,
#block_of_history_follow .g-goods-style-item .for-stock,
#block_of_history .g-goods-style-item .img_ .for-stock{
	display: none;
}
.pg_goods_ .StyleA_Frame_ .g-goods-style-item :where(.price_wrapper_,.item_code_),
:is(.g-event-list,.g-goods-accessorylist.for-bottom) .StyleT_Frame_ .g-goods-style-item :where(.price_wrapper_,.item_code_),
#block_of_history_follow .g-goods-style-item :where(.price_wrapper_,.item_code_),
#block_of_history .g-goods-style-item :where(.price_wrapper_,.item_code_){
	font-size: 0.8125rem;
	font-weight: 400;
	line-height: calc(22 / 13);
}
.pg_goods_ .StyleA_Frame_ .g-goods-style-item .price_wrapper_.for-sale,
:is(.g-event-list,.g-goods-accessorylist.for-bottom) .StyleT_Frame_ .g-goods-style-item .price_wrapper_.for-sale,
#block_of_history_follow .g-goods-style-item .price_wrapper_.for-sale,
#block_of_history .g-goods-style-item .price_wrapper_.for-sale{
	font-weight: 600;
	color: var(--g-theme-color-quinary);
	font-size: 0.9375rem;
}
.pg_goods_ .StyleA_Frame_ .g-goods-style-item .cart_:has(*),
:is(.g-event-list,.g-goods-accessorylist.for-bottom) .StyleT_Frame_ .g-goods-style-item .cart_:has(*),
#block_of_history_follow .g-goods-style-item .cart_:has(*),
#block_of_history .g-goods-style-item .cart_:has(*){
	margin-top: 10px;
	display: none;
}
#block_of_history #itemHistoryButton{
	padding: 0 var(--g-event-padding-x);
	margin-top: 20px;
	display: none!important;
}
.pg_goods_ #block_of_history #itemHistoryButton{
	padding:0 20px;
}
#block_of_history #itemHistoryButton a{
	color: var(--g-theme-color-secondary);
}
#block_of_history #historyCaution{
	display: none;
}
#block_of_history :where(#messNothing,#messRedraw){
	padding: 40px 0;
	text-align: center;
}
#goods-detail-cart-fixed-btn{
	position: fixed;
	width: 80px;
	height: 80px;
	right: 0;
	z-index: 2;
}
#goods-detail-cart-fixed-btn .inner_{
	display: flex;
	flex-direction: column;
	background-color: var(--g-theme-color-quinary);
	color: #fff;
	font-size: 0.875rem;
	line-height: calc(16 / 14);
	font-weight: 500;
	align-items: center;
	justify-content: center;
	border-radius: var(--goods-radius-base);
	text-align: center;
	padding: 0;
	gap: 6px 0;
	width: 100%;
	height: 100%;
}
#goods-detail-cart-fixed-btn .inner_::before{
	content:'';
	background-image: url('../img/usr/common/cart-search-white.png');
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	width: 39px;
	height: 20px;
}
#item-history-fixed-btn{
	position: fixed;
	width: 80px;
	height: 80px;
	right: 0;
	z-index: 2;
	display: none;
}
#item-history-fixed-btn .inner_{
	display: flex;
	flex-direction: column;
	background-color: var(--g-theme-color-quinary);
	color: #fff;
	font-size: 0.875rem;
	line-height: calc(16 / 14);
	font-weight: 500;
	align-items: center;
	justify-content: center;
	border-radius: var(--goods-radius-base);
	text-align: center;
	padding: 0;
	gap: 4px 0;
	width: 100%;
	height: 100%;
}
#item-history-fixed-btn .inner_::before{
	content:'';
	background-image: url('../img/usr/common/history-white.png');
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	width: 23px;
	height: 23px;
}
#block_of_history_follow .history-follow-close-btn{
	width: 26px;
	height: 26px;
	background-color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 10px;
}
#goods-detail-cart-fixed-btn .goods-detail-cart-fixed-close-btn,
#item-history-fixed-btn .item-history-close-btn{
	width: 26px;
	height: 26px;
	background-color: #fff;
	border-radius: 50%;
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.35);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	position: absolute;
	top: -31px;
	right: 0;
}
#goods-detail-cart-fixed-btn .goods-detail-cart-fixed-close-btn::before,
#block_of_history_follow .history-follow-close-btn::before,
#item-history-fixed-btn .item-history-close-btn::before{
	content:'';
	background-image: url('../img/usr/common/times-black.png');
	background-repeat: no-repeat;
	background-size: contain;
	width: 12px;
	height: 14px;
	display: block;
}
/* --------------------------------------------------------------------
	商品一覧　詳細一覧
--------------------------------------------------------------------- */
div.StyleD_Frame_ {
	width: 100%;
	overflow: hidden;
	text-align: center;
}

div.StyleD_Item_ {
	margin: 0 0 5px 0;
	padding: 5px 0 5px 5px;
	width: 98%;
	overflow: hidden;
	border: 1px solid #cccccc;
	background-color: #ffffff;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	font-size: 13px;
}

div.StyleD_Item_ div.name_ {
	display: inline-block;
	margin-right: 1em;
	font-size: 13px;
}

div.StyleD_Item_ div.name_ .name1_ a {
	font-size: 13px;
}

div.StyleD_Item_ .small_ {
	font-size: inherit;
}
div.StyleD_Frame_ div.img_ {
	padding: 0 5px 5px 0;
	float: left;
	display: inline;
	width: 100px;
}

div.StyleD_Frame_ div.desc_ {
	margin: 0 0 0 5px;
	float: left;
	display: inline;
	width: 96%;
	overflow: hidden;
}

div.StyleD_Frame_ div.detail_ {
	width: 100%;
	overflow: hidden;
}

div.StyleD_Frame_ div.detail_ div.spec_ {
	float: left;
	display: inline;
	text-align: left;
	width: 50%;
}

div.StyleD_Frame_ div.cart_ {
	float: right;
	display: inline;
	text-align: right;
	width: 50%;
}

div.StyleD_Frame_ .goodscomment1_ {
	margin-top: 10px;
}

/* --------------------------------------------------------------------
	商品一覧　ピックアップ
--------------------------------------------------------------------- */
.g-goods-style-no-slider div.StyleT_Frame_,
div.StyleP_Frame_ {
	width: 100%;
}
.g-goods-style-no-slider div.StyleT_Frame_ .g-goods-style-list,
div.StyleP_Frame_  .g-goods-style-list{
	display: flex;
	flex-wrap: wrap;
	gap: 25px 25px;
	align-items: stretch;
}
.g-goods-style-no-slider div.StyleT_Frame_ .g-goods-style-item,
div.StyleP_Frame_  .g-goods-style-item{
	width: calc((100% - 75px) / 4);
}
.g-goods-style-no-slider div.StyleT_Frame_ .g-goods-style-item-inner,
div.StyleP_Frame_ .g-goods-style-item-inner{
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.g-goods-style-no-slider div.StyleT_Frame_ .img_,
div.StyleP_Frame_  .g-goods-style-item .img_{
	border-radius: 6px;
	border: 1px solid var(--g-theme-color-secondary);
	aspect-ratio: 1 / 1;
	width: 100%;
	padding: 10px;
	margin-bottom: 20px;
	display: block;
}
.g-goods-style-no-slider div.StyleT_Frame_ .img_ img,
div.StyleP_Frame_ .g-goods-style-item .img_ img {
	width: 100%;
	height: auto;
}
.g-goods-style-no-slider div.StyleT_Frame_ .name1_,
div.StyleP_Frame_ .g-goods-style-item .name1_{
	font-size: 0.875rem;
	font-weight: 600;
	line-height: calc(20 / 14);
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.g-goods-style-no-slider div.StyleT_Frame_ .item_code_,
.g-goods-style-no-slider div.StyleT_Frame_ .for-stock,
.g-goods-style-no-slider div.StyleT_Frame_ .for-maker,
.g-goods-style-no-slider div.StyleT_Frame_ .for-default,
div.StyleP_Frame_ .g-goods-style-item .item_code_,
div.StyleP_Frame_ .g-goods-style-item .for-stock,
div.StyleP_Frame_ .g-goods-style-item .for-maker,
div.StyleP_Frame_ .g-goods-style-item .for-default{
	font-size: 0.8125rem;
	line-height: calc(22 / 13);
}
.g-goods-style-no-slider div.StyleT_Frame_ .for-stock .value,
div.StyleP_Frame_ .g-goods-style-item .for-stock .value{
	font-weight: 600;
}
.pg_goods_ .StyleA_Frame_ .g-goods-style-item .price_wrapper_.for-normal:not(.g-price-wrapper-under-sale),
div.StyleT_Frame_ .price_wrapper_.for-normal:not(.g-price-wrapper-under-sale),
.g-goods-style-no-slider div.StyleT_Frame_ .price_wrapper_.for-normal:not(.g-price-wrapper-under-sale),
div.StyleP_Frame_ .g-goods-style-item .price_wrapper_.for-normal:not(.g-price-wrapper-under-sale){
	font-weight: 600;
	font-size: 0.9375rem;
	line-height: calc(24 / 15);
}
body:has(.pg_goods_) #goods-detail-follow-cart .for-normal.g-price-wrapper-under-sale,
.pg_goods_ .gd-price-wrapper.for-normal.g-price-wrapper-under-sale,
.pg_goods_ .StyleA_Frame_ .g-goods-style-item .for-normal.g-price-wrapper-under-sale,
div.StyleT_Frame_ .for-normal.g-price-wrapper-under-sale,
div.StyleP_Frame_ .g-goods-style-item .for-normal.g-price-wrapper-under-sale{
	text-decoration: line-through;
}
.g-goods-style-no-slider div.StyleT_Frame_  .price_wrapper_.for-sale,
div.StyleP_Frame_ .g-goods-style-item .price_wrapper_.for-sale{
	font-weight: 500;
	font-size: 0.9375rem;
	line-height: calc(24 / 15);
	color: var(--g-theme-color-quinary);
}
.g-goods-style-no-slider div.StyleT_Frame_  .cart_:has(*),
div.StyleP_Frame_ .g-goods-style-item .cart_:has(*){
	margin-top: 10px;
	display: none;
}


/* --------------------------------------------------------------------
	商品一覧　一覧
--------------------------------------------------------------------- */
table.StyleL_Frame_ {
	margin: 0 0 20px 0;
	border: none;
	width: 100%;
	font-size: 13px;
}
table.StyleL_Frame_ td.name_ .name1_ a {
	font-size: 13px;
}

table.StyleL_Frame_ td.maker_price_ {
	text-align: right;
}

table.StyleL_Frame_ td.g_price_ {
	text-align: right;
}

table.StyleL_Frame_ td.comment_ .small_ {
	font-size: 13px;
}

table.StyleL_Frame_ td.tax_class_name_ {
	text-align: center;
}

/* --------------------------------------------------------------------
	商品一覧　メーカー
--------------------------------------------------------------------- */
table.StyleM_Frame_ {
	margin: 0 0 20px 0;
	border: none;
	width: 100%;
}

table.StyleM_Frame_ tr {
	vertical-align: top;
}

table.StyleM_Frame_ th {
	text-align: center;
	font-weight: bold;
}

table.StyleM_Frame_ td {
	vertical-align: middle;
}

table.StyleM_Frame_ td.name_ {
	width: 180px;
}

table.StyleM_Frame_ td.price_ {
	white-space: nowrap;
	text-align: right;
}

table.StyleM_Frame_ td.maker_price_ {
	white-space: nowrap;
	text-align: right;
}

table.StyleM_Frame_ td.stock_ {
	text-align: center;
}

table.StyleM_Frame_ td.cart_ {
	width: 50px;
	text-align: right;
}

/* --------------------------------------------------------------------
	商品一覧　リスト
--------------------------------------------------------------------- */
ul.StyleS_Frame_ {
	margin: 0 0 20px 0;
	padding: 0;
}

li.StyleS_Line_ {
	margin: 0;
	padding: 5px 0;
	list-style: none;
	width: 100%;
	overflow: hidden;
	border-bottom: 1px dotted #CCC;
}

li.StyleS_Line_ span {
	padding-right: 1em;
}

li.StyleS_Line_ .name_ {
	display: inline;
}

li.StyleS_Line_ .name1_ {
	padding-right: 1em;
	display: inline;
}

li.StyleS_Line_ .name2_ {
	padding-right: 1em;
	display: inline;
}

/* --------------------------------------------------------------------
	商品一覧　商品名
--------------------------------------------------------------------- */
table.StyleN_Frame_ {
	margin: 0 0 20px 0;
	width: 100%;
}

table.StyleN_Frame_ th {
	width: 40%;
}

/* --------------------------------------------------------------------
	商品一覧　一括購入
--------------------------------------------------------------------- */
table.StyleB_Frame_ {
	margin: 0 0 10px 0;
	border: none;
	width: 100%;
}

div.goods_ table.StyleL_Frame_,
div.goods_ table.StyleB_Frame_ {
	border: 1px solid #CCC;
}

table.StyleB_Frame_ .name1_ a {
	font-size: 13px;
}

table.StyleB_Frame_ tr {
	vertical-align: top;
}

table.StyleB_Frame_ th {
	text-align: center;
	font-weight: bold;
	border-style: none;
	border-top: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
	background-color: #EEF8F5;
}

table.StyleB_Frame_ th.name_ {
	border-right: 1px dotted #CCC;
}

table.StyleB_Frame_ th.gprice_ {
	border-right: 1px dotted #CCC;
}

table.StyleB_Frame_ th.comment_ {
	border-right: 1px dotted #CCC;
}

table.StyleB_Frame_ th.maker_price_ {
	border-right: 1px dotted #CCC;
}

table.StyleB_Frame_ th.stock_ {
	border-right: 1px dotted #CCC;
}

table.StyleB_Frame_ td {
	vertical-align: middle;
}

table.StyleB_Frame_ td.name_ {
	width: 180px;
}

table.StyleB_Frame_ td.g_price_ {
	text-align: right;
}

table.StyleB_Frame_ td.maker_price_ {
	text-align: right;
}

table.StyleB_Frame_ td.stock_ {
	text-align: center;
}

table.StyleB_Frame_ td.qty_ input {
	width: 4em;
}

div.StyleB_Cart_ {
	margin: 0 0 20px 0;
	text-align: right;
}

/* --------------------------------------------------------------------
	関連商品グループ　商品詳細(買い物かごのフォーム)
--------------------------------------------------------------------- */
.StyleA_Frame_ {
	display: flex;
	flex-direction: column;
	gap: 10px 0;
}
.StyleA_Item_ {
	width: 100%;
}
.StyleA_Item_ td {
	vertical-align: middle;
}
.StyleA_Item_ td.img_ {
	width: 120px;
}
.StyleA_Frame_ div.checkbox_ label {
	font-weight: 500;
	font-size: 0.8125rem;
}
.StyleA_Frame_ .checkbox_{
	margin-top: 10px;	
}
.g-goods-accessorylist.for-ajax .StyleA_Frame_ .checkbox_{
	display: none;
}

/* チェックリスト(子商品追加) */
div.goods_ table.StyleC_Frame_ td.price_ {
	text-align: right;
	white-space: nowrap;
}

div.goods_ table.StyleC_Frame_ td.stock_ {
	text-align: right;
	white-space: nowrap;
}

div.goods_ table.StyleC_Frame_ td.checkbox_ {
	text-align: right;
	white-space: nowrap;
}

/* --------------------------------------------------------------------
	商品一覧　写真付き
--------------------------------------------------------------------- */
table.StyleI_Frame_ {
	margin: 0 0 20px 0;
	border: none;
	width: 100%;
}

table.StyleI_Frame_ tr {
	vertical-align: top;
}

table.StyleI_Frame_ th {
	text-align: center;
	font-weight: bold;
}

table.StyleI_Frame_ td {
	vertical-align: middle;
}

table.StyleI_Frame_ td.img_ img {
	width: 50px;
}

table.StyleI_Frame_ td.name_ {
	width: 180px;
}

table.StyleI_Frame_ td.price_ {
	white-space: nowrap;
	text-align: right;
}

table.StyleI_Frame_ td.maker_price_ {
	white-space: nowrap;
	text-align: right;
}

table.StyleI_Frame_ td.stock_ {
	text-align: center;
}

table.StyleI_Frame_ td.cart_ {
	width: 50px;
	text-align: right;
}

/* --------------------------------------------------------------------
	商品一覧　ランキング
--------------------------------------------------------------------- */
div.StyleR_Frame_ {
	margin: 0 0 20px 0;
	width: 100%;
	overflow: hidden;
}

div.StyleR_Item_ {
	margin: 0;
	float: left;
	display: inline;
	text-align: center;
	width: 33%;
}

div.StyleR_Item_ div.img_ {
	margin-bottom: 5px;
}

div.StyleR_Item_ div.name_,
div.StyleR_Item_ div.price_,
div.StyleR_Item_ div.maker_price_,
div.StyleR_Item_ div.semiclosed_value_ {
	margin: 0 10px 5px 10px;
}

div.StyleR_Item_ div.cart_ {
	margin: 0 10px;
}

.StyleR_List_ {
	float: right;
	display: inline;
	width: 66%;
	overflow: hidden;
}

.StyleR_List_ li {
	padding: 5px 5px 5px 0;
	overflow: hidden;
	border-bottom: 1px dotted #CCC;
}

.StyleR_List_ li dl {
	width: 100%;
	overflow: hidden;
}

.StyleR_List_ li dl dt {
	float: left;
	text-align: center;
	font-weight: bold;
	width: 3em;
}

.StyleR_List_ li dl dd {
	margin-left: 3em;
}

.StyleR_List_ #rank1 {
	font-size: 20px;
	font-weight: bold;
	line-height: 140%;
}

.StyleR_List_ #rank2 {
	font-size: 18px;
	font-weight: bold;
	line-height: 140%;
}

.StyleR_List_ #rank3 {
	font-size: 16px;
	font-weight: bold;
	line-height: 140%;
}

.StyleR_List_ #rank4 {
	font-size: 14px;
	font-weight: bold;
	line-height: 140%;
}

.StyleR_List_ #rank5 {
	font-size: 14px;
	font-weight: bold;
	line-height: 140%;
}

/* --------------------------------------------------------------------
	商品一覧　バリエーション
--------------------------------------------------------------------- */

table.variation_ {
	margin: auto auto;
	border: none;
	background-color: #ffffff;
	width: 900px;
}

table.variation_ tbody {
	vertical-align: top;
}

table.variation_ td {
	margin: 0;
	padding: 20px 0;
	border-bottom: 1px solid #B9B9B9;
}

table.variation_ td.comment_ span.small_ {
	font-size: 14px;
}

table.variation_ td.img_s_ {
	min-width: 100px;
}

table.variation_ td.img_s_ img {
	width: 100px;
	height: 100px;
}

table.variation_ td.msg_ {
	max-width: 320px;
}

table.variation_ td.msg_ .name_ {
	margin-bottom: 8px;
}

table.variation_ td.msg_ .name_ a {
	font-size: 13px;
	color: #333333;
	font-weight: normal;
}

table.variation_ td.msg_ .g_price_ .price_ {
	color: #FE4242;
	font-size: 15px;
	font-weight: bold;
}

table.variation_ td.cartbox_ {
	text-align: right;
	height: 100%;
}

table.variation_ td.cartbox_ div.cartbutton_ {
	vertical-align: bottom;
}

table.variation_ td.cartbox_ div.variation_ {
	height: 40px;
	vertical-align: top;
	font-weight: bold;
	font-size: 14px;
}

/* --------------------------------------------------------------------
	商品一覧　バリエーション（マトリックス）
--------------------------------------------------------------------- */
div.variation_matrix_ {
	margin-bottom: 10px;
	padding: 0;
}

div.variation_matrix_>table {
	margin: auto auto;
	border: 1px solid #cccccc;
	background-color: #ffffff;
}

div.variation_matrix_>table td {
	margin: 0;
	padding: 5px;
	width: 130px;
	border: 1px solid #cccccc;
	vertical-align: top;
}

div.variation_matrix_>table td.col_title_ {
	width: auto;
	background-color: #f0f0f0;
}

div.variation_matrix_>table td.row_title_ {
	max-width: 50px;
	background-color: #f0f0f0;
}

div.variation_matrix_>table td.no_item_ {
	text-align: center;
	color: #cccccc;
	font-weight: bold;
	vertical-align: middle;
}

div.variation_matrix_ .soldout_ {
	text-align: center;
	color: #999999;
	border: 1px solid #cccccc;
	margin: 3px;
	vertical-align: middle;
}

div.variation_matrix_>table td img {
	max-width: 120px;
}

div.variation_matrix_ .cart_qtyinput_ {
	padding: 2px 1px;
}

div.variation_matrix_ .cart_qtyinput_ input.input_qty_ {
	width: 4em;
	padding: 2px 1px;
}

/* --------------------------------------------------------------------
	商品検索
--------------------------------------------------------------------- */
.pg_goods_search_ .g-goods-style-no-slider + [action*="search.aspx"]{
	margin-top: 50px;
}
table.search_ {
	margin: 0 auto;
	width: 100%;
	border: 1px dotted #CCC;
}

table.search_ th {
	padding-top: 12px;
	text-align: right;
	font-weight: bold;
	white-space: nowrap;
	vertical-align: top;
}

table.search_ td {
	text-align: left;
	font-size: 12px;
	background-color: transparent;
	border-top: none;
	border-right: none;
	border-bottom: 1px dotted #CCC;
	border-left: none;
	vertical-align: top;
	overflow: hidden;
}

/* 各項目 */
#search_category select,
#search_maker select,
#search_brand select {
	width: 300px;
}

/**/
/* ジャンル */
table.search_ ul.genre_ {
	width: 100%;
	height: 160px;
	overflow: auto;
	list-style: none;
}

table.search_ ul.genre_ li {
	padding: 0 0 5px 0;
}

table.search_ ul.genre_ li.genre_depth_1 {
	font-weight: bold;
	clear: both;
}

table.search_ ul.genre_ li.genre_depth_2 {
	text-indent: 10px;
	width: 30%;
	float: left;
}

table.search_ ul.genre_ li.genre_depth_3 {
	display: none;
}

table.search_ ul.genre_ li.genre_depth_4 {
	display: none;
}

/* --------------------------------------------------------------------
	在庫補充通知
--------------------------------------------------------------------- */
.wrapper_ .pg_customer_stock_supply_{
	width: calc(100% - 250px - var(--g-layout-gap-x));
}
.wrapper_ .pg_customer_stock_supply_ h1{
	display: flex;
	align-items: center;
	gap: 0 30px;
	&::after{
		content:'';
		background-image: url('../img/usr/common/kawauso-to-notify-w400.png');
		background-repeat: no-repeat;
		background-size: contain;
		width: 100px;
		height: 100px;
		flex-shrink: 0;
	}
}
.pg_customer_stock_supply_ .StyleZ_Frame_{
	width: 100%;
}
.pg_customer_stock_supply_ .StyleZ_Frame_{
	display: flex;
	flex-direction: column;
	gap: 10px 0;
}
.pg_customer_stock_supply_ .StyleZ_Frame_ .g-goods-style-item-inner{
	display: flex;
	align-items: stretch;
	width: 100%;
	border: 1px solid var(--g-lr-border-color);
}
.pg_customer_stock_supply_ .goods_style_z_no_data_{
	padding: 10px 20px;
}
.pg_customer_stock_supply_ .StyleZ_Frame_ .item_code_wrapper_{
	font-size: 0.875rem;
	font-weight: 400;
	line-height: calc(20 / 14);
	align-items: center;
	justify-content: flex-start;
}
.pg_customer_stock_supply_ .StyleZ_Frame_ .img_{
	display: flex;
	align-items: center;
	justify-content: center;
}
.pg_customer_stock_supply_ .StyleZ_Frame_ .img_ a{
	display: block;
	margin: 0 auto;
}
.pg_customer_stock_supply_ .StyleZ_Frame_ .goods_style_z_td_inner_1_ > *{
	padding: 10px 10px;
	border-right: 1px solid var(--g-lr-border-color);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 4px 0;
}
.pg_customer_stock_supply_ .StyleZ_Frame_ .goods_style_z_td_inner_1_ > *:nth-child(1){
	width: 25%;
}
.pg_customer_stock_supply_ .StyleZ_Frame_ .goods_style_z_td_inner_1_ > *:nth-child(2){
	width: 37.5%;
}
.pg_customer_stock_supply_ .StyleZ_Frame_ .goods_style_z_td_inner_1_ > *:nth-child(3){
	width: 37.5%;
}
.pg_customer_stock_supply_ .StyleZ_Frame_ .goods_style_z_td_inner_1_{
	width: 80%;
	order: 1;
	display: flex;
	align-items: stretch;
	font-size: 0.8125rem;
	line-height: calc(20 / 13);
}
.pg_customer_stock_supply_ .StyleZ_Frame_ .goods_style_z_td_inner_1_ .img_{
	position: relative;
	width: 25%;
	height: 0;
	padding: 0 0 25%;
}
.pg_customer_stock_supply_ .StyleZ_Frame_ .goods_style_z_td_inner_1_ .img_ .name_{
	position: absolute;
	left: 10px;
	right: 10px;
	top: 10px;
	bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.pg_customer_stock_supply_ .StyleZ_Frame_ .goods_style_z_td_inner_1_ .img_ .name_ img{
	max-width: 100%;
	max-height: 100%;
}
.pg_customer_stock_supply_ .StyleZ_Frame_ .goods_style_z_td_inner_2_{
	width: 50%;
	display: flex;
	flex-direction: column;
	padding: 10px 10px;
}
.pg_customer_stock_supply_ .StyleZ_Frame_ .goods_style_z_td_inner_3_{
	order: 2;
	width: 20%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px 0;
}
.pg_customer_stock_supply_ .StyleZ_Frame_ .g-qty-wrapper [name="qty"]{
	color: var(--g-text-color-primary);
}
.pg_customer_stock_supply_ .StyleZ_Frame_ .warehouse_body_{
	display: flex;
	flex-wrap: wrap;
	margin-left: 10px;
}
.pg_customer_stock_supply_ .stocksupply_item_inner_ .g-cart-btn-complete-wrapper{
	visibility: hidden;
}
body:has(.pg_customer_stock_supply_) .stock-supply-overlay{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: calc(var(--g-uk-drop-z-index) + 2);
	width: 100vw;
	height: 100vh;
	background-color: rgba(255,255,255,0.7);
	& .uk-spinner{
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translateX(-50%) translateY(-50%);
	}
	& .text{
		padding: 20px 20px;
		background-color: #000;
		color: #fff;
		font-size: 0.875rem;
		font-weight: bold;
		border-radius: 6px;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translateX(-50%) translateY(-50%);
		display: none;
		z-index: 1;
	}
	&.complete{
		& .uk-spinner{
			display: none;
		}
		& .text{
			display: block;
		}
	}
}
#sidebox_stocksupply .StyleZ_Frame_ {
	width: 100%;
}
#sidebox_stocksupply .StyleZ_Frame_{
	display: flex;
	flex-direction: column;
	gap: 10px 0;
	background-color: var(--g-theme-color-nonary);
}
#sidebox_stocksupply .StyleZ_Frame_ .g-goods-style-item-inner{
	border: none;
	padding: 18px 18px;
	background-color: #fff;
	border: 1px solid var(--g-lr-border-color);
	border-radius: 5px;
}
#sidebox_stocksupply .StyleZ_Frame_ .item_code_{
	font-size: 0.875rem;
	font-weight: 400;
	line-height: calc(20 / 14);
	padding:0 0 8px;
	margin:0 0 8px;
	border-bottom: 1px solid var(--g-lr-border-color);
}
#sidebox_stocksupply .StyleZ_Frame_ .img_{
	width: 70px;
}
#sidebox_stocksupply .StyleZ_Frame_ .img_ img{
	object-fit: contain;
	width: 70px;
	height: 70px;
}
#sidebox_stocksupply .StyleZ_Frame_ .g-qty-wrapper .g-qty-plus,
#sidebox_stocksupply .StyleZ_Frame_ .g-qty-wrapper .g-qty-minus{
	width: 24px;
}
#sidebox_stocksupply .StyleZ_Frame_ .g-qty-wrapper > input:where([type="number"],[type="text"]){
	width: 60px;
}
#sidebox_stocksupply .StyleZ_Frame_ .alert-extension-btn{
	font-size: 0.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 208px;
	margin-top: 10px;
}
#sidebox_stocksupply .StyleZ_Frame_ .goods_style_z_td_inner_1_{
	display: flex;
	align-items: stretch;
	gap: 0 10px;
	font-size: 0.8125rem;
	line-height: calc(20 / 13);
	margin-bottom: 10px;
	& >*:nth-child(1){
		flex-shrink: 0;
	}
	& >*:nth-child(2){
		font-size: 0.8125rem;
		line-height: calc(20 / 13);
		flex-grow: 1;
	}
	& .warehouse_{
		margin: 10px 0 0;
		& .title{
			font-size: 1.0625rem;
		}
		& .value{
			font-size: 1.125rem;
			font-weight: bold;
		}
	}
}
#sidebox_stocksupply .StyleZ_Frame_ .warehouse_body_{
	display: flex;
	flex-wrap: wrap;
	margin-left: 10px;
}
.pg_customer_stock_supply_ .StyleZ_Frame_ .g-qty-wrapper,
#sidebox_stocksupply .StyleZ_Frame_ .g-qty-wrapper{
	height: 28px;
}
#sidebox_stocksupply .StyleZ_Frame_ .g-qty-wrapper [name="qty"]{
	font-size: 0.8125rem;
	font-weight: 400;
}
#sidebox_stocksupply .StyleZ_Frame_ .goods_style_z_td_inner_3_{
	display: flex;
	align-items: center;
	gap: 0 5px;
}
.pg_customer_stock_supply_ .StyleZ_Frame_ .g-qty-wrapper .g-qty-plus,
#sidebox_stocksupply .StyleZ_Frame_ .g-qty-wrapper .g-qty-plus{
	border-top-right-radius: var(--goods-radius-base);
	border-bottom-right-radius: var(--goods-radius-base);
}
.pg_customer_stock_supply_ .StyleZ_Frame_ .g-qty-wrapper .g-qty-minus,
#sidebox_stocksupply .StyleZ_Frame_ .g-qty-wrapper .g-qty-minus{
	border-top-left-radius: var(--goods-radius-base);
	border-bottom-left-radius: var(--goods-radius-base);
}