<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/*2021/05/25 latest update*/
/* CSS Document */
#shopArea .shopWrap{
	width: 100%;
	display: grid;
	grid-template-columns:repeat(3, 1fr);
	column-gap: 1em;
	row-gap: 1em;
	font-size: 16px;
	padding: 1em 0;
	
}
#shopArea hr{
	border: 0;
	border-top: #000 1px dashed;
}
#shopArea .contTitle{
	display: block;
	width: 100%;
	background-color: #ccc;
	margin: 2em 0 0.5em;
	padding: 1em;
}
#shopArea .shopBox{/*店舗箱*/
	padding:0.5em;
	border:#443930 3px solid;
	font-size: 0.9em;
	display: block;
	position: relative;
	border-radius: 6px;
	background-color: var(--yellow);
}
#shopArea .shopBox.wide{/*店舗箱*/
	}

#shopArea .shopBox .img{/*画像*/
	width:100%;
	padding:1% 0;

}
#shopArea .shopBox img{
	width:100%;
	display:block;
	margin:0 auto;
}
#shopArea .shopBox .nameShop{/*店舗名*/
	border-bottom:shop_book 1px dashed;
	margin-bottom:2px;
	padding:0.5em;
	font-weight: bold;
	font-size: 1.2em;
}
#shopArea .shopBox .nameMidashi{/*セット名*/
	padding:0.5em;
	background-color: var(--red);
	color: #fff;
	letter-spacing:1px;
	margin-bottom:0.5em;
}

/*セットボックス*/
#shopArea .shopBox .shopTxt .setBox{
	padding:0.5em 0.5em;
	margin-bottom: 0.5em;
}

#shopArea .shopBox .shopTxt .setBox.bg{
	background-color: #FFB5B5;
}
#shopArea .shopBox .shopTxt .setBox.bg2{
	background-color:#E5EBAD;
}

#shopArea .shopBox .shopTxt{/*画像より下のテキストエリア*/
	width:100%;
	padding:0.5em 0 0;
	line-height: 1.5em;

}
#shopArea .shopBox .shopTxt strong{/*アイテム名*/
	padding:0.5em;
	margin-bottom:0.5em;
	font-weight:normal;
	display: block;
		background-color: var(--deepBlue);
		color: #fff;

}



/*アイテム説明テキストエリア*/
#shopArea .shopBox .shopTxt .shopTxtBox{
	padding:0.5em 0.5em;
	margin-bottom: 0.5em;
	

}
/*テキストエリア装飾*/
#shopArea .shopBox .shopTxt .shopTxtBox.border{
border: #000 1px solid;
}
#shopArea .shopBox .shopTxt .shopTxtBox.color{
	background-color: #fff;
	border: 0;
}

/*注釈*/
#shopArea .shopWrap ul.notes{
	margin:0.5em 0;
	padding-left:1em;
}

#shopArea .shopWrap ul.notes li{
	text-indent:-1em;
	line-height:1.5em;
}
/*店舗リンク*/
#shopArea .shopBox a{
	width: 100%;
	max-width: 500px;
	margin: 0.3em auto 0;
	background-color: #fff;
	color: var(--deepBlue);
	padding:1em ;
	text-align: center;
	display: block;
	font-weight: bold;
	border-radius: 50px;
}
 #shopArea .shopBox a:hover{
	text-decoration: none;
	 background-color: var(--deepBlue);
	color: #fff;
}
/*個別対応*/
.wideShop:first-child{
	margin-bottom: 1em;
}

#shopArea .wideShop.shopBox .shopTxt{
	width: 50%;
	display: inline-block;
	vertical-align: top;
	padding-left: 0.5em;
}
.wideShop .slideBox{
	width: 50%;
	display: inline-block;
	vertical-align: top;
}


@media (max-width: 960px) {

}
@media (max-width: 786px) {
#shopArea .shopWrap{
	display: grid;
	grid-template-columns:repeat(2, 1fr);
	column-gap: 10px;
	row-gap: 1em;
	font-size: max(2vw,11px);
}

}

@media (max-width: 480px) {
	
#shopArea .shopWrap{
	display:block;
	font-size: max(3vw,11px);
}
#shopArea .shopBox{
	margin: 0.5em 0;
	font-size: 1em;
}
#shopArea .shopBox .nameShop{/*店舗名*/
	font-size: 1em;
}
#shopArea .wideShop.shopBox .shopTxt{
	width: 100%;
	display:block;
	padding-left: 00;
}
.wideShop .slideBox{
	width: 100%;
	display:block;
}

}

</pre></body></html>