.bgBox{
	position: fixed;
	width: 100%;
	z-index: -1;
}
.bg{
	max-width: 640px;
	margin: 0 auto;
}
/**/
.mainBox{
	max-width: 	640px;
	padding: 3% 1%;
	margin: 	0 auto;
	text-align: center;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

.cardList > .card {
		display: inline-block;
	opacity: 0;
	width: 48%;
	vertical-align: top;
	-webkit-transition: 1s;
	   -moz-transition: 1s;
	    -ms-transition: 1s;
	     -o-transition: 1s;
	        transition: 1s;
}
.cardList > .card.is-on{
	opacity: 1;

}

.tab{
    display: inline-block;
    margin: 2px 0;
    text-align: center;
    width: 45%;
    font-size: 1.6rem;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px 20px;
    border: 2px solid #9a0000;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background: #a22421;
    color: #fff;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-box-shadow: 1px 1px 5px #222;
    box-shadow: 1px 1px 5px #222;
}

.itemBox{
	display: none;
}
.itemBox.is-on{
	display: block;
}
.loadingBox{
	text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;

    margin-top: -25px;
    margin-left: -25px;
}
.circle {
	display: inline-block;
    width: 50px;
    height: 50px;
    border: 10px solid #00c4ff;
    border-right-color: transparent;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-animation: circle 2s infinite linear;
    -moz-animation: circle 2s infinite linear;
    -o-animation: circle 2s infinite linear;
    animation: circle 2s infinite linear;
}
@-webkit-keyframes circle{
	0%   { transform: rotate(0deg); }
	100%  { transform: rotate(360deg); }
}
@-webkit-keyframes circleRevese{
	0%   { transform: rotate(0deg); }
	100%  { transform: rotate(-360deg); }
}
.btnBox{
	padding: 5% 0;
}
.tabBox{
	padding-top: 5%;	
}