/*################################################################################
グッズ専用CSS
################################################################################*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400&display=swap');/*
/*
↓明朝*/
/*@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700&display=swap');*/

:root{

--txt:#000;
--mainColor:#000;

--bg:#fff;


--red:#d52f56;
}

body{
	/*background-image: none;*/
	font-family:'Noto Sans JP', "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	padding: 0;
	font-size: 16px;
	line-height: 1.4em;
	background-color: var(--bg);
	}
	body::-webkit-scrollbar {/*chrome : edge　幅*/
  width: 10px;
  height: 10px;
}
 
body::-webkit-scrollbar-track {/*chrome : edge　背景*/
   background: var(--mainColor);
}
 
body::-webkit-scrollbar-thumb {/*chrome : edge :つまみ*/
  background: #d0b154;
  border-radius:5px;
}

#spec{
	padding: 1em 1.5em;
	/*background-image: url(../../img/bg.jpg);*/
	background-color: var(--bg);
	color:var(--txt);
	border-right: var(--mainColor) 0.5em solid;
}
/*商品名*/
h1 {
	margin: 0;
	font-size: 1.6em;
	line-height: 1.3em;
	font-weight: normal;
	padding:  1em;
	color:#d0b154;
	background-color: var(--mainColor);
	border-bottom:#9f1222 0.3em solid;
	}
/*価格*/
h2 {
	/*padding-bottom: 25px;*/
	color: var(--txt);
	letter-spacing:1px;
    margin:0 0 1em;
	font-size: 1.2em;
	line-height: 1.5em;
	font-weight:bold;
	padding:0 0.5em 0.5em;
	border-bottom: var(--mainColor) 1px dashed;
}
small {
	line-height: 1.2em;
	font-weight: normal;
	display: inline-block;
	padding-left:5px;
}

/*販売店舗*/
h3 {
	background-color: #ffcb63;
	color: #472058;
	padding: 5px 10px;
	letter-spacing: 1px;
	margin-bottom: 20px;
	border-radius: 5px;
	font-weight: normal;
	font-size: 14px;
	line-height: 1.4em;
}

/*本文*/
/*種類などのテーブル*/
 table{
	/*border-top: 1px solid #bda85d;
	border-left: 1px solid #bda85d;*/
	margin-top: 30px;
	margin-bottom: 20px;
	font-size: 0.8em;
	line-height: 1.4em;
	/*border: 1px solid #bda85d;*/
	
	width:100%;
	color: var(--txt);
	background-color: var(--bg);
	border-spacing: 0;
}
 td{
	border-right: 1px solid var(--txt);
	border-bottom: 1px solid var(--txt);
	padding: 10px;
	
}
.cat{
	width: 100px;
	background-color:  var(--mainColor);
	color:#d0b154;
	border-right: #d0b154 5px solid;
}

/*画像*/
.image{
	text-align: center;
	padding: 1em 0;
	border-right: var(--mainColor) 0.5em solid;
   
}

.image img{
     width:100%;
	 max-width: 710px;
}

/*前のページへ戻る（スマホとタブレット用）*/
.historyBack{
	text-decoration: none;
	font-size:1.3em;
	padding:1em 1em 3em;
	background-color: var(--line);
	letter-spacing: 3px;
	display: none;

}
a.historyBack{
	color: #fdf9ea;
}
a.historyBack:hover{
	color: #dde2b4;
}
ul.notes{
	padding: 0;
	margin:1em 0 0;
	margin-left: 1em;
	font-size: max(0.9em,11px);
	line-height: 1.5em;
	color: var(--red);
	font-weight: normal;
}
ul.notes li{
	list-style-type: none;
	text-indent: -1em;
}
/*################################################################################
  media query
################################################################################*/

/* タブレット */
@media screen and (max-width: 786px) {
body{
	font-size: 2.2vw;
}
/*商品名*/
h1 {
	line-height: 1.3em;
}

}

/* スマホ */
@media screen and (max-width: 480px) {	
body{
	font-size: 3vw;
}

#spec{
	padding: 1em;

}
/*商品名*/
h1 {
	line-height: 1.2em;
	padding: 0.8em 0.5em;
	font-size: 1.5em;
}/*価格*/
h2 {
	line-height: 1.2em;
	letter-spacing: 0px;
	padding-bottom: 1em;
	font-size:  1.3em;
}
 .cat{
width: 5em;
}
/*販売店舗*/
h3 {
	letter-spacing: 0px;
}
/*種類などのテーブル*/
table{
	margin-top: 20px;
	margin-bottom: 0px;
}
.image{

	border-right:0;
   
}
#spec{
	border-right:0;

}

}


