@charset "utf-8";

/* ======================================================
	common
====================================================== */
body{
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
	color: #333;
	text-align: center;
	font-size: 16px;
	line-height: 1.8;
	padding-top: 10px;
	padding-bottom: 140px;
	background: url(../image/bg.jpg);
	background-attachment: fixed;
}

img{	
	vertical-align: top;
	border-style:none;
}
/* SPのみ */
@media (max-width: 767px) { 
	img{width: 100%;}
}

li{list-style: none;}


/* ======================================================
	コンテンツ
====================================================== */
article, footer, header{ margin: 15px auto;}
article, footer{ width: 94%;}

/*header{ background: url(../image/bg_head.png);}*/

article{
	background-color: #fff;
}
footer{
	font-size: 90%;
	line-height: 1.5;
	text-align: left;
}
footer section{
	padding: 5px 20px;
}
footer p{
	margin-bottom: 7px;
}

#btn{
	width: 280px;
	opacity: 0;
	animation-name: btnAppear;
	animation-delay: 3s;
	animation-duration: 0.5s;
	animation-fill-mode: both;
}

@keyframes btnAppear{
	from{
		opacity: 0;
	}
	to{
		opacity: 1;
	}
}

/* ======================================================
	ルール
====================================================== */
#rule{margin-bottom: 30px;}

#getList dl{
	background: url(../image/bg_getList.png);
	background-size: 100%;
}
#getList dl dd{
	font-size: 140%;
	color: #ff2c59;
}
#getList dl dd:last-of-type{
	color: #919191;
}

#status{
	background-color: #fef9f3;
	border: #3d1554 3px solid;
	border-radius: 10px;
	padding: 20px;
	box-sizing: border-box;
}
#status div:first-of-type{
	margin-bottom: 13px;
}
#status span{
	color: #ff2c59;
}
#status_1{
	font-size: 130%;
}


/* ======================================================
	キャラクター紹介
====================================================== */
#chara1{ margin-bottom: 10px;}

/* ======================================================
	ストーリー
====================================================== */
#storyInfo{
	color: red;
	font-weight: bold;
	font-size: 120%;
	padding: 20px 0;
	margin-top: -15px;
}

#storySlide{
	position: relative;
	overflow: hidden;
}
#story1, #story2, #story3, #story4{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}
#story1{z-index: 5;}
#story2{z-index: 4;}
#story3{z-index: 3;}
#story4{z-index: 2;}

.slideAnim{
	animation-name: slideDown;
	animation-delay: 1s;
	animation-duration: 1s;
	animation-fill-mode: both;
}
.slideAnim2{
	animation-name: slideDown;
	animation-delay: 2s;
	animation-duration: 1s;
	animation-fill-mode: both;
}
.fadeOutAnim{
	animation-name: fadeOut;
	animation-delay: 1s;
	animation-duration: 1s;
	animation-fill-mode: both;
}


@keyframes slideDown{
	from{
		top: 0;
	}
	to{
		top: 100%;
	}
}
@keyframes fadeOut{
	from{
		opacity: 1;
	}
	to{
		opacity: 0;
	}
}


/* ======================================================
	結末
====================================================== */
#result{margin-bottom: 10px;}
#get{
	position: relative;
}
#getText{
	font-size: 140%;
	position: absolute;
	bottom: 18%;
	left: 0;
	right: 0;
}

/* ======================================================
	広告
====================================================== */
.pr_ad_text{
	font-size: 90%;
}
.spAd{ margin: 0 auto;}

/* 320_50 */
.ad320{ width: 320px;}

/* 300_250 */
.ad300{ width: 300px;}

/* 720_90 */
.ad728{ 
	width: 728px;
	margin: 0 auto;
}

.adArea{
	width: 705px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

/* オーバーレイ 320_100 */
#overlay{
	position: fixed;
	bottom: 0;
	background: rgba(0,0,0,0.7);
	width: 100%;
	padding: 10px 0;
	z-index: 50;
}


/* ======================================================
======================================================
	PC
======================================================
====================================================== */
@media only screen and (min-width: 750px) {

	body{ padding-bottom: 20px;}
	article, header, footer{ margin: 15px auto;}
	article{ width: 705px;}
	footer{ width: 705px;}
	#btn img{ width: 300px;}
	#btnStart{cursor: pointer;}

	#getList dl dd{font-size: 70px;}
	#getText{ font-size: 50px;}

	#status_1{font-size: 30px;}
	#status_2{font-size: 25px;}

}