body{
  color:#800000
}
h1 {
  color:#330000;
  font-size:14px;
  line-height:150%;
}
.big img {
max-height:360px;
}
.thumbnail img {
height:79px;
}
.a{ text-decoration: underline;
  }

img {
	-webkit-transition: all 1s;
	transition: all 1s;
}
.expand img:hover{
	-webkit-transform: scale(1.5);
	transform: scale(1.5);
}
.cart.disable_cartin {
	cursor: pointer;
}

/* クイックカートのスタイル*/
#cart-popup{
  width:100vw;
  height:100vh;
  max-width:100vw;
  max-height:100vh;
  margin:0;
  padding:0;
  background:none;
  -ms-scroll-chaining:none;
  overscroll-behavior: contain;
}
#cart-popup::backdrop {
	background: rgb(0 0 0 /.3);
}
.dialog-inner {
	display: flex;
	justify-content: center;
	height: calc(100vh + .5px);
	padding: var(--contentGap);
	overflow-y: scroll;
	position: absolute;
	inset: clamp(8px,2vw,24px);
}
.dialog-body {
	width: clamp(300px,90%,900px);
	padding: 64px 40px 40px;
	background: #f5f5f5;
  position: relative;
	overflow-y: scroll;
}
.dialog__title{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  font-size: clamp(20px,3vw,26px);
  margin-bottom:16px;
  padding:clamp(12px,2vw,30px) 0;
  line-height:1.4;
}
.dialog__product {
  margin-bottom:40px;
  padding:1em;
  background:#fff;
	text-align: center;
}
@media(min-width:768px){
  .dialog__product {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1em;
    align-items: center;
    width: min(700px,90%);
    margin-inline:auto
  }
  .dialog__name{
    text-align:left;
  }
}
.dialog__image{
  aspect-ratio:1/1;
  object-fit:contain;
}
.dialog__name{
  font-size: clamp(16px,2.2vw,18px);
  line-height: 1.4;
}
.dialog-close.icon {
	position: absolute;
	top: 8px;
	right: 8px;
  background:none;
  border:none;
}
.dialog-close.icon > svg{
	width: 40px;
	height: 40px;
	fill: #555;
}
@media(min-width:768px){
  .btn-wrap {
    display: grid;
    grid-template-areas: 'continue cart';
    justify-content: center;
    align-items: center;
    gap: 40px;
  }
}
.dialog__btn {
	min-width: 240px;
	font-size: 16px;
	color: #333;
	margin: 20px auto;
	padding: 15px 0;
	border: none;
  background: linear-gradient(to bottom,#eee,#EAE8E8);
	box-shadow: 0 0 0px 5px #D6D3D3;
	border-radius: 4px;
	cursor: pointer;
}
.dialog__btn.cart_view_with_async {
	font-size: 17px;
	font-weight: 600;
	color: #fff;
	background: linear-gradient(to bottom,#db2c2c,#B10000);
	border: none;
	grid-area: cart;
	box-shadow: 0 0 0 4px rgba(230, 150, 150, 0.6);
}
.dialog__btn.dialog-close {
  grid-area: continue;
}
.dialog__btn.cart_view_with_async svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
	vertical-align: -3px;
	margin-right: 5px;
}
/*クイックカートの送料無料テキスト*/
.dialog__caution {
	font-size: 14px;
	text-align: center;
	margin: 8px 0 0;
}
/* クイックカートの関連商品*/
.dialog__related {
  margin-top: 20px;
  padding-bottom:40px;
  border-top: 1px solid #aaa;
}
.dialog__related__title {
  font-size: 20px;
  font-weight: 500;
  padding: 24px 0;
  text-align: center;
}
.related-list {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  width: min(700px,90%);
  margin:0 auto;
  margin-inline: auto;
}
.related__link {
  font-size: inherit;
  font-weight: 500;
  text-decoration: none !important;
  line-height: 1.3;
}
.related__image {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 4/3;
	object-fit: contain;
}
