/*################################################################################
グッズ専用CSS
################################################################################*/
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP&display=swap');
/*
↓明朝*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700&display=swap');

:root{

	
	--red:#a93f41;
	--brown:#713a40;
	--brown_bg:#efe3e3;
	--line:#a67f7e;



}

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: #fff;
	color:#732820;
	}
#spec{
	padding: 1em 1.5em;
	border-top: 5px solid var(--red);
	border-bottom: 2px dotted #732820;
	background-size: cover;
	background-position: center;
	background-color:var(--brown_bg);
}
/*商品名*/
h1 {
	margin: 0;
	font-size: 1.6em;
	line-height: 1.3em;
	font-weight: normal;
	padding:  1em;
	background-color: var(--red);
	color:#fff;
	border-bottom: #fff 3px solid;
	}
/*価格*/
h2 {
	/*padding-bottom: 25px;*/
	color: #732820;
	letter-spacing:1px;
    margin:0.5em 0 1em;
	font-size: 1.5em;
	font-weight: normal;
}
small {
	line-height: 1.2em;
	font-weight: normal;
	display: inline-block;
	padding-left:5px;
}

/*販売店舗*/
h3 {
	background-color: var(--brown);
	color: #732820;
	padding: 5px 10px;
	letter-spacing: 1px;
	margin-bottom: 20px;
	border-radius: 5px;
	font-weight: normal;
	font-size: 14px;
	line-height: 1.4em;
}
.shop{
	background-color: var(--brown);
	color: #732820;
	padding: 0.5em;
	letter-spacing: 1px;
	margin-bottom: 1em;
	border-radius: 5px;
	font-weight: normal;
	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%;
	border-spacing: 0;
}
 td{
	/*border-right: 1px solid #bda85d;
	border-bottom: 1px solid #bda85d;*/
	padding: 10px;
	background-color: #fff;
	 border-bottom: 1px solid  #732820;
}
.cat{
	width: 100px;
	background-color:  var(--brown);
	color:#fff;
}
a{
	text-decoration:none;
	word-break: break-all;
}

a.txtLink{
	border-bottom: #732820 1px dashed;
	color:#732820;
	border-spacing: 2px;
	padding: 0 0.2em;

}

a.txtLink:hover{

	border-bottom:var(--brown) 1px dashed;
	color:var(--brown);
}

/*画像*/
.image{
	text-align: center;
	padding: 1em 0;
	background-color:#fff;
   
}

.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: 0.9em;
	line-height: 1.5em;
}
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;
}

}


