@charset "utf-8";

#itempage{
	max-width: 1024px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-content: flex-start;
	align-items: flex-start;
	gap: 4%;
	margin: 0 auto;
}

.itempage_inner{
	flex: 1;
	padding: 4rem 0;
}

@media screen and (max-width: 767px) {
	.itempage_inner:nth-child(1) {
		width: 100%;
		flex: none;
		padding: 2rem 0 0;
	}
	
	.itempage_inner:nth-child(2) {
		width: 100%;
		flex: none;
		padding: 0;
	}
}

#img-box img{
	width: 100%;
}

.itemcode {
	margin: 0 !important;
	padding: 0 !important;
	border-bottom: none !important;
	line-height: 1 !important;
}

.item-name{
	font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
	font-weight: 600;
	margin: 1rem 0 !important;
}

.field_price {
	font-size: 135% !important;
	font-family: "Roboto", sans-serif;
	font-weight: 600;
	font-style: normal;
	text-align: left !important;
	padding: .5rem 0;
}

.field_price em {
	font-size: var(--font-size-1) !important;
	color: #666 !important;
}

.tax_inc_block,
.zaikostatus {
	text-align: left !important;
}

.itemprice{
	font-family: "Roboto", sans-serif;
	font-weight: 600;
	font-style: normal;
}

.zaikostatus {
	color: #666;
	padding: .5rem 0;
}

.skuform .itemsoldout {
	color: var(--red) !important;
}

.cart-button {
	display: block;
	margin: 1rem 0;
}

.skubutton {
	background-color: #333 !important;
	border-radius: 50px !important;
}

.item-info {
	padding-top: 0 !important;
}

.skuform {
	margin-bottom: 1rem !important;
}

.skuname {
	/*min-height: 30px;*/
	font-weight: normal;
	background-color: transparent !important;
	border-top: 1px solid #ccc !important;
	margin-bottom: 0 !important;
}
/* SLICK SLIDER */
.item-img-main {
	margin: 0 0 1rem 0;
	overflow: hidden;
}

.item-img-main img {
	max-width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.item-img-thumb{
	position: relative;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(80px,1fr));
	gap: 16px;
	max-width: 100%;
}

.item-img-thumb img {
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	cursor: pointer;
}
/* サムネイル矢印 */
.slide-arrow {
	position: absolute;
	top: 50%;
	transform: translate(0,-50%);
	font-weight: 600;
	font-family: "Font Awesome 6 Free";
	cursor: pointer;
	color: #fff;
	opacity: .5;
	z-index: 99;
}

.prev-arrow {
	left: 8px;
}

.next-arrow {
	right: 8px;
}

.prev-arrow::before {
	content: "\f359";
}

.next-arrow::before {
	content: "\f35a";
}