a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font:inherit;font-size:100%;vertical-align:baseline}html{line-height:1}ol,ul{list-style:none}table{border-collapse:collapse;border-spacing:0}caption,td,th{text-align:left;font-weight:400;vertical-align:middle}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:"";content:none}a img{border:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}table{border-spacing:0;border-collapse:inherit}
html{
	font-size:62.5%;
}
body {
    font-family: "Noto Sans Japanese", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
    font-size: 1.5rem;
    line-height: 1.8;
	color: #111;
	background-color: #fff;
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;
}
.wrapper{
	max-width: 1500px;
	margin: 0 auto;
	padding: 10px;
}

h1{
	text-align: center;
	font-weight: bold;
	font-size: 32px;
}

#jankenArea{
	width: 1500px;
	height: 800px;
	box-sizing: border-box;
	margin: 0 auto;
}

#jankenCanvas{
	margin: 10px auto 0;
	height: calc(100vh - 120px);
	line-height: 0;
	box-sizing: border-box;
	/*border: 1px solid #000;*/
}

#jankenCanvas canvas{
	width: 100%;
}

#round{
	position: fixed;
	top: 20vh;
	left: 0;
	width: 100%;
	text-align: center;
	font-weight: bold;
	line-height: 1;
	font-family: 'Public Sans', sans-serif;
}
#roundText{
	background: linear-gradient(to bottom, #fff7cb 0%, #ffb18d 50%, #f27e7a 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 70px;
	font-style: italic;
	filter: drop-shadow(1px 1px 1px #8f2210);
	padding-right: 5px;
}
#roundNum{
	font-size: 82px;
	font-style: italic;
	background: linear-gradient(to bottom, #ff9888 0%, #ff4d35 45%, #8c222c 90%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	filter: drop-shadow(1px 1px 1px #5e3d4a);
}



#playerNumInputWrap{
	display: flex;
	align-items: center;
}

#playerNum{
	border: 1px solid #999;
	box-sizing: border-box;
	width: 80px;
	border-radius: 5px;
	padding: 8px;
	margin: 0 8px 0 3px;
}
#startBtn{
	cursor: pointer;
}




.tartan{
	font-size: 120px;
	text-align:center;
	line-height:0.95em;
	font-weight:bold;
	color: transparent;
	background-color : #FFF;
	background-image:
		repeating-linear-gradient( 0deg,
			rgba(	 13,  71, 161, .6) 0px 6px, /*青*/
			rgba( 255, 255, 255, .6) 6px 8px, /*白*/
			rgba(	 13,  71, 161, .6) 8px 10px, /*青*/
			rgba(	255, 214,   0, .6) 10px 12px, /*黄*/
			rgba(	 13,  71, 161, .6) 12px 18px, /*青*/
			rgba( 213,   0,   0, .6) 18px 34px /*赤*/
		),
			repeating-linear-gradient( 90deg,
			rgba(	 13,  71, 161, 1) 0px 6px, /*青*/
			rgba( 255, 255, 255, 1) 6px 8px, /*白*/
			rgba(	 13,  71, 161, 1) 8px 10px, /*青*/
			rgba(	255, 214,   0, 1) 10px 12px, /*黄*/
			rgba(	 13,  71, 161, 1) 12px 18px, /*青*/
			rgba( 213,   0,   0, 1) 18px 34px /*赤*/
		);
	-webkit-background-clip: text;
	-webkit-text-stroke: 1px #000;
	margin-bottom: 30px;
}


.modal{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.8);
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
}
.modal .inner{
	background-color: #fff;
	padding: 50px;
	border-radius: 5px;
	box-shadow: 0 0 5px rgba(0,0,0,0.8);
}
.modal .inner >*:first-child{
	margin-top: 0 !important;
}
.modal .inner >*:last-child{
	margin-bottom: 0 !important;
}
.modal.hide{
	display: none;
}





@media screen and (max-width: 1540px){
	#jankenArea{
		width: auto;
	}
}

@media screen and (max-width: 800px){
	#jankenArea{

	}

	.modal .inner{
		padding: 30px;
	}
}

@media screen and (max-width: 480px){
	#round{
		top: 13vh;
	}
	#roundText{
		font-size: 35px;
		padding-right: 3px;
	}
	#roundNum{
		font-size: 41px;
	}

	.tartan{
		font-size: 80px;
		margin-bottom: 20px;
	}
}



