@charset "utf-8";
/* CSS Document */

.cls-1{
    fill:#6a5900;
}
.cls-1,.cls-2,.cls-3,.cls-4,.cls-5{/*ここ*/
    fill:none;stroke:aqua;stroke-linecap:round;stroke-linejoin:round;opacity:1;}.cls-1{stroke-width:6px;}.cls-2{stroke-width:5px;}.cls-3{stroke-width:7px;}.cls-4{stroke-width:10px;}.cls-5{stroke-width:8px;
}
/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/
#svgall {
    /*fixedで全面に固定*/
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 999;
	background: #ccc/*rgba(207,223,222,1)*/;
	text-align:center;
	color:#fff;
}

/* Loading画像中央配置　*/
.mask {
    width: 300px;/* Loading アイコンの大きさ設定　*/
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
/*========= SVG操作手書き風にするためのCSS ===============*/

#mask .st0{
    fill:none;
    stroke:#fff;
    stroke-width:90;/*線の太さを指定する*/
    stroke-linecap:round;
    stroke-linejoin:round;
    stroke-miterlimit:10;
    stroke-dasharray: 1500; /* 線の間隔を指定する */
    stroke-dashoffset:1500; /* 線の位置を指定する */
}