/*################################################################################
グッズ専用CSS
################################################################################*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700&display=swap');

:root{

}
body{
	/*background-image: none;*/
	font-family: 'Noto Serif JP',"游明朝", YuMincho, "ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
	margin: 0;
	padding: 0;
	font-size: 16px;
	line-height: 1.8em;
	overflow: auto;
	background-image:url("../../img/colorbox_bg.jpg");
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #000;
/*	position: relative;
	background-image:url("../../img/smp/bottom_bg.jpg");
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: 100% auto;
*/
	
	}
body:before{
	content: "";
	position: fixed;
	display:block;
	width: 100%;
	bottom:0;
	height: 100%;
	left: 0;
	right: 0;
	background-color: #000;
	background-image:url("../../img/colorbox_bg.jpg");
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 1;

}
	.fontChange{
	/*font-family: 'M PLUS Rounded 1c', sans-serif;*/
}
body,nav,header,div,p,a,ul,li,section,article,dl,dt,dd,h1,h2,h3,h4,h5,h6,img{
	margin:0;
	padding:0;
	font-weight:normal;
	list-style-type:none;	
	box-sizing:border-box;
	font-size: 1em;
}

img{
	width: 100%;
}
/*-----------------------------------------------
カウントダウン
-------------------------------------------------*/
.countBox{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	bottom:0;
	overflow-y:auto;

	display: grid;
	align-items: center;
	padding: 1em;
}
.countBox .itemArea{
}


.normalBox{
	width: 100%;
	display: block;
	padding: 0;
	text-align: center;
	max-width: 500px;
	margin: 0 auto;
	background-color: #000;
}
.normalBox.spSize{
	max-width: 700px;
}
.contBox .btArea{
	padding: 0.5em;
	color: #fff;
}
.contBox .btArea .playBT{
	width: 4em;
	height: 4em;
	display:block;
	padding: 1em;
	border:#fff 3px solid;

	color: #fff;
	margin: 0 0 0 auto;
	cursor: pointer;
	border-radius: 50%;
	text-align: center;
	position: relative;
}
.contBox .btArea .playBT span:after{
	content: "▲";
	display: block;
	position: absolute;
	font-size: 1.5em;
	line-height: 1em;
	transform: rotate(90deg);
	width: 100%;
	left: 0;
	text-align: center;
	top:50%;
	margin-top: -0.5em;
}
.contBox .btArea .playBT.selected span:after{
	content: "■";
	transform: rotate(0);
}


.contBox .btArea .playBT:hover,.btArea .playBT.selected{
	background-color:  var(--gold);

}
.contBox .btArea{
	position: relative;
}
.contBox .btArea.english:before{
	content: "COUNTDOWN VOICE";
	position: absolute;
	display: block;
	right:5.5em;
	margin-top: -0.5em;
	line-height: 1em;
	top:50%;
	letter-spacing: 1px;
}
.contBox .btArea.japanese:before{
	content: "カウントダウンボイス";
	position: absolute;
	display: block;
	right:5em;
	margin-top: -0.5em;
	line-height: 1em;
	top:50%;
	letter-spacing: 1px;
}
/*################################################################################
  media query
################################################################################*/

/* タブレット */
@media screen and (max-width: 786px) {
body{
	font-size: max(2.2vw,14px);
	line-height: 1.8em;
}


}

/* スマホ */
@media screen and (max-width: 480px) {	
body{
	font-size:  max(3.3vw,12px);
	line-height: 1.8em;
}


}


