@charset "UTF-8";
.area_left{
	width: 50%;
	height: auto;
	position: fixed;
	text-align: left;
	left: 0;
	bottom: 0;
	float: left;
}

.area_right{
	width: 50%;
	height: auto;
	text-align: right;
	right: 0;
	bottom: 0;
	position: fixed;
	float: left;
}

.guide{
	width: 178px;
	height: 23px;
	padding-top: 177px;
	color: #ffffff;
	text-align: center;
	background-image: url(../images/guide.png);
	background-size: 178px;
	animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
    cursor:pointer;
	display: none;
}

.frame_box{
	width: 350px;
	height: 600px;
	background-color: #321213;
	right: 22px;
	bottom: 0;
	position: fixed;
	animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
	display: none;
}
	
.cancel{
	position: absolute;
	right: -22px;
	top: -22px;
}

.fukidashi{
	position: absolute;
	width: 122px;
	height: 68px;
	padding: 15px;
	left: 120px;
	top: -30px;
	font-size: 16px;
	background-image: url(../images/fukidashi.png);
	text-align: center;
	display: none;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

/* Tablet
---------------------------------*/
@media screen and (max-width: 768px) {

.guide{
	width: 140px;
	height: 21px;
	padding-top: 137px;
	color: #ffffff;
	text-align: center;
	background-image: url(../images/guide.png);
	background-size: 140px;
	animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
    cursor:pointer;
}
	
}

