:root{
	--maxwidth:480px;
}
*{
	outline: none;
}

html,body{
	padding:0;
	margin:0;
	width: 100%;
	height: 100%;
	overflow-x:hidden;
	font-size: 0;
}

body{
	max-width: var(--maxwidth);
	margin:0 auto;
}

img{
	max-width: 100%;
	max-height:100%;
}
div.rel{
	position: relative;

}
a.download{
	position: absolute;
	z-index: 2;
	top: 12.3%;
	left: 11%;
	width: 46%;
	height: 4%;
	border-radius: 24px;
	background-repeat: no-repeat;
	background-position: center center;
	display: none;
	background-image: url('download.png');
}

body.ios a.download.ios{
	display: block;
}

body.apk a.download.apk{
	display: block;
}

/*a.download:hover{
	box-shadow: 0 1px 3px #fff;
}*/

img.logo{
	position: absolute;
	z-index: 1;
	left: 33%;
	top: 3%;
	width: 20%;
	margin-left: -10%;
	border-radius: 5px;
	overflow: hidden;
	font-size: initial;
}

/*=============================================================*/
/*ios guide*/
div.guide{
	position: fixed;
	z-index: 10;
	top: 0;
	height: 100vh;
	max-width: var(--maxwidth);
	overflow: auto;
	display: none;
}
div.guide i.a{
	color: #333;
    position: absolute;
    top: 47.85%;
    font-size: 14px;
    font-style: normal;
    left: 27%;
}
div.guide i.b{
	color: #333;
    position: absolute;
    top: 59.6%;
    font-size: 14px;
    font-style: normal;
    left: 30%;
}
div.guide i.c{
	bottom: 4%;
    color: #fff;
    position: absolute;
    font-size: 14px;
    font-style: normal;
    left: 19%;
}
div.guide img.read{
	display: block;
	width: 100%;
	height: 100%;
}

div.guide img.ico{
	position: absolute;
    width: 58px;
    height: 58px;
    top: 93.5%;
    left: 18.2%;
    border-radius: 5px;
}

/*close*/
span.close{
	position: fixed;
    z-index: 10;
    top: 2%;
    width: 0em;
    height: 0em;
    left: 50%;
    font-size:0;
    margin-left:calc(var(--maxwidth) / 3);
    cursor: pointer;
}
span.close b{
	position: relative;
    border-radius: 50%;
    border: 2px solid #fff;
    padding: 4em;
    width: 32px;
    height: 32px;
    display: block;
	background: rgba(0,0,0,0.5);
}
span.close b::before{
	content: "";
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #fff;
    left: 16px;
    top: 16px;
    transform: rotate(45deg);
    margin-left: -12px;
}
span.close b::after{
	content: "";
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #fff;
    left: 16px;
    top: 16px;
    transform: rotate(135deg);
    margin-left: -12px;
}

@media screen and (max-width: 480px) {
	span.close{
		left:40%;
	}
	div.guide img.ico{
		width: 12vw;
		height: 12vw;
	}
}