@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP&display=swap');

/*################################################################################
グッズ専用CSS
################################################################################*/
:root{
	--blue:#1f2849;
	--gold:#debd5c;
	--lightGold:#a98a6b;
	--purple:#574d7f;
	--red:#800;
}


body{
	font-family:'Noto Sans JP', "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	margin: 0;
	padding: 0;
	line-height: 1.4em;
	color:  var(--gold);
}

#spec{
	padding: 1.5em;
	border-bottom: 2px dotted #9DA8B7;
	line-height: 1.5em;
	background-color:  var(--blue);
	}

/*商品名*/
 .itemName {
	color:  #cec8e6;
	font-size: 120%;
	line-height: 1.3em;
	font-weight: normal;
	padding: 0.5em 1em;
	background-color: var(--purple);
}

/*価格*/
.price {
	color:  var(--gold);
	padding-bottom: 1em;
	letter-spacing:1px;
	font-size: 110%;
}
 small {
	line-height: 1.2em;
	font-weight: normal;
	display: inline-block;
	padding-left:5px;
}
.br2{display: inline-block;}
/*販売店舗*/

 .shop {
	background-color: var(--purple);
	color:  #cec8e6;
	padding: 0.5em;
	letter-spacing: 1px;
	margin-bottom: 1em;
	border-radius: 5px;
	font-weight: normal;
	font-size: 90%;
	line-height: 1.4em;
}

/*種類などのテーブル*/ table{
	border-top: 1px solid var(--purple);
	border-left: 1px solid var(--purple);
	margin-top: 1.5em;
	margin-bottom: 1.3em;
	font-size: 80%;
	line-height: 1.4em;

	width:100%;
} td{
	border-right: 1px solid var(--purple);
	border-bottom: 1px solid var(--purple);
	padding: 10px;
	color:  var(--blue);
	background-color: #faebdc;

} .cat{
	width: 100px;
	background-color:var(--purple);
	color:  #cec8e6;
	font-weight: bold;
}

/*画像*/
.image{
	text-align: center;
	padding: 30px 0 0;
	background-color:#fff;
}

.image img{
     width:100%;
 }

.notes{
	color:  #cec8e6;
}

.indent{
	padding-left: 1em;
}

.indent li{
	text-indent: -1em;
	margin-bottom: 5px;
	padding: 0;
	margin: 0;
	border: 0;
	list-style: none;
	font-size: 75%;
	line-height: 1.6em;
}



/*################################################################################
  media query
################################################################################*/

/* タブレット */
@media screen and (max-width: 786px) {

/*商品名*/
 .itemName {
	line-height: 1.3em;
	padding-top: 17px;
	padding-bottom: 15px;
}

}

/* タブレット */
@media screen and (max-width: 786px) {

/*商品名*/
.itemName {
	line-height: 1.3em;
}
}

/* スマホ */
@media screen and (max-width: 480px) {	
body{
	font-size:12px;
}
	
#spec{
	padding: 1em;

}
/*商品名*/
.itemName {
	line-height: 1.2em;
	padding: 0.8em;
	
}/*価格*/.price {
	line-height: 1.2em;
	letter-spacing: 0px;
	padding-bottom: 1em;
}
 .shop {
}
	
/*画像*/
.image{
	padding: 30px 0;
}

 .cat{
width: 5em;
}
/*販売店舗*/
.shop {
	letter-spacing: 0px;
}
/*種類などのテーブル*/
table{
	margin-top: 20px;
	margin-bottom: 0px;
}


}


