/*################################################################################
グッズ専用CSS
################################################################################*/
@charset "utf-8";
@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@500;700&display=swap');
/* CSS Document */
*{zoom:1;}
:root{
	--bgP:#dbcbf2;
	--bgG:#efeae0;
	--darkP:#392b3c;
	--red:#f33574;
	--lineG:#d9ceb6;
	--lineP:#eee8f1;
	--grad:linear-gradient(90deg,#fadeed,#e5e8fb);
}
body {
	/*font-family:'Noto Sans JP', "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/
	font-family: 'Noto Serif JP',"游明朝", YuMincho, "ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", serif; 
    background-color:#fff;
	color:#333;
    width:100%;
   	font-size: max(3.3vw, 13px);
	line-height: 1.5em;
    overflow-y:scroll;
	overflow-x:hidden;
	margin:0;
	padding:0;
	box-sizing:border-box;
	text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
nav,header,div,p,a,ul,li,section,article,dl,dt,dd,h1,h2,h3,h4,h5,h6,img,table{
	margin:0;
	padding:0;
	font-weight:normal;
	list-style-type:none;	
	box-sizing:border-box;
	font-size: 1em;
	
}
a{
	text-decoration:none;
	word-break: break-all;
	outline: none;
}
a:hover{
}


a.txtLink{
	border-bottom: var(--darkP) 1px dashed;
	border-spacing: 2px;
	color:  var(--darkP);
	padding: 0 0.2em;
}
a.txtLink:hover{
	background: var(--grad);
}

#spec{
	padding: 1em 1.5em;
	border-bottom: 2px dotted var(--darkP);
	background-size: cover;
	background-position: center;
	/*background-color:var(--blue);*/
}
.limit{
	background-color: var(--lineG);
	padding:0.5em 1em;
}
/*商品名*/
h1 {
	margin: 0;
	font-size: 1.6em;
	line-height: 1.3em;
	font-weight: normal;
	padding:  1em;
	background: var(--grad);
	color:#333;

	}
/*価格*/
h2 {
	/*padding-bottom: 25px;*/
	/*color: #111;*/
	letter-spacing:1px;
    margin:0.5em auto;
	font-size: 1.3em;
	font-weight: normal;
	background-color: var(--bgG);
	padding: 1em;
	border-radius: 50px;
	width: calc(100% - 1em);
	
}
.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;
}
.shop{
	background-color: var(--lightGold);
	color: #000;
	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 var(--darkP);
}
.cat{
	width: 100px;
	background-color: var(--darkP);
	color:#fff;
	border-bottom: 1px solid var(--darkP);
}

/*画像*/
.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;
}
.bottomTxt{
	background-color:#eee8f1;
	padding: 0.5em;
	margin-top: 0.5em;
}

/*################################################################################
  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;
}

}


