@charset "utf-8";

h1,h2,h3,h4,h5,h6,p,ul,ol,dl,dt,dd{
	padding: 0;
	margin: 0;
}

ol,ul{
	list-style-type: none;
}

/*-----------------------------------------------
 root
-----------------------------------------------*/

html{
	overflow-y: scroll;
}

body{
	overflow:hidden;
	font-family: 'Lucida Grande', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, 'メイリオ', sans-serif;
}

/*-----------------------------------------------
 font
-----------------------------------------------*/

html{
	overflow-x: hidden;
	overflow-x: scroll;
	font-size: medium;
}

body{
	min-width: 1200px;
	font-size: 62.5%; /* 16px -> 10px */
}

div{
	line-height: 0;
}

dt,dd,li,
caption,th,td,
input,button,textarea,select,
h1,h2,h3,h4,h5,h6,address{
	line-height: 0;
	font-size: 140%;
	margin: 0;
	padding: 0;
}

p{
	line-height: 1.5;
	font-size: 140%;
	margin: 0;
	padding: 0;
}

h1 *,h2 *,h3 *,h4 *,h5 *,h6 *,
p input,p button,p select,
li h1,li h2,li h3,li h4,li h5,li h6,li p,li dt,li dd,li li,li th,li td,li input,li button,li textarea,li select,
dd h1,dd h2,dd h3,dd h4,dd h5,dd h6,dd p,dd dt,dd dd,dd li,dd th,dd td,dd input,dd button,dd textarea,dd select,
tr h1,tr h2,tr h3,tr h4,tr h5,tr h6,tr p,tr dt,tr dd,tr li,            tr input,tr button,tr textarea,tr select{
	font-size: 100%;
}

input,button,select,option,textarea{
	font-size: 14px;
}

figure{
	margin: 0;
}

a,
a:link,
a:visited{
	color: #479cf2;
	text-decoration: none;
}

a:hover{
	text-decoration: underline;
}

section{
	position: relative;
}

@media only screen and (max-width: 640px) {
	body{
		min-width: 0;
	}	
}

/*-----------------------------------------------
 cf 
-----------------------------------------------*/

.clearfix:after {
	content: " "; 
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

.clearfix {
	min-height: 1px;
}

* html .clearfix {
	height: 1px;
	/*¥*//*/
	height: auto;
	overflow: hidden;
	/**/
}

/*-----------------------------------------------
 hover
-----------------------------------------------*/

.hover :hover{
	opacity: 0.8;
	animation: btn 0.5s;
	-webkit-animation: btn 0.5s;
	-moz-animation: btn 0.5s;
}

@keyframes btn {
	0% { 
		opacity: 1;
	}
	10% { 
		opacity: 0.4;
	}
	100% {
		opacity: 0.8;
	}
}

@-webkit-keyframes btn {
	0% { 
		opacity: 1;
	}
	10% { 
		opacity: 0.4;
	}
	100% {
		opacity: 0.8;
	}
}
@-moz-keyframes btn {
	0% { 
		opacity: 1;
	}
	10% { 
		opacity: 0.4;
	}
	100% {
		opacity: 0.8;
	}
}

/*-----------------------------------------------
 keyframe animation
-----------------------------------------------*/

.flash{
	-webkit-animation: flash 1s linear infinite;
	animation: flash 1s linear infinite;
}

@-webkit-keyframes flash {
	0% {
		opacity: 1;
	}
	25% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	75% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes flash {
	0% {
		opacity: 1;
	}
	25% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	75% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.spin{
	-webkit-animation: spin 1s linear infinite;
	animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
	0% {-webkit-transform: rotate(0deg);}
	100% {-webkit-transform: rotate(360deg);}
}
@keyframes spin {
	0% {transform: rotate(0deg);}
	100% {transform: rotate(360deg);}
}

@-webkit-keyframes fuwafuwa {
	0% {-webkit-transform: translate(0, 0);}
	50% {-webkit-transform: translate(0, -10px);}
	100% {-webkit-transform: translate(0, 0);}
}
@keyframes fuwafuwa {
	0% {transform: translate(0, 0);}
	50% {transform: translate(0, -10px);}
	100% {transform: translate(0, 0);}
}

@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
/*-----------------------------------------------
 nextBtn
-----------------------------------------------*/
.nextBtn{
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 70px;
	border: 1px solid #1da1f2;
	background-color: #fff;
}

.nextBtn::before{
	content: "";
	position: absolute;
	z-index: 0;
	top: 0;
	right: -100%;
	width: 100%;
	height: 70px;
	background-color: #1da1f2;
	-webkit-transition: all 0.35s;
	transition: all 0.35s;
	-webkit-transition-timing-function: cubic-bezier(0.31, -0.105, 0.43, 1.59);
	transition-timing-function: cubic-bezier(0.31, -0.105, 0.43, 1.59);
}

.nextBtn:hover::before,
.nextBtn:focus::before{
	z-index: 0;
	right: 0;
	background-color: #1da1f2;
}

.nextBtn a{
	display: block;
	position: relative;
	z-index: 1;
	height: 70px;
	font-size: 22px;
	text-align: center;
	text-decoration: none;
	line-height: 70px;
	color: #1da1f2;
	-webkit-transition: all 0.35s;
	transition: all 0.35s;
}

.nextBtn a:hover{
	color: #fff;
}

.nextBtn a::before{
	content: "";
	position: absolute;
	top: 0;
	right: 20px;
	bottom: 0;
	margin: auto;
	width: 15px;
	height: 15px;
	border: 1px solid;
	border-color: #1da1f2 #1da1f2 transparent transparent;
	transform: rotate(45deg);
	-webkit-transition: all 0.35s;
	transition: all 0.35s;
}

.nextBtn a:hover::before{
	right: 15px;
	border-color: #fff #fff transparent transparent;
}

/*-----------------------------------------------
 content
-----------------------------------------------*/
@media only screen and (max-width: 640px) {
	#content{
		min-width: 640px;
	}
}
/*-----------------------------------------------
 keyvisual
-----------------------------------------------*/
#keyvisual{
	position: relative;
	background-image: url(../img/keyvisual/bg.jpg);
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
	padding-bottom: 70px;
}
#keyvisual h1{
	display: none;
	position: absolute;
	z-index: 10;
	bottom: -10px;
	width: 100%;
	text-align: center;
}
#keyvisual h1 img{
	width: 23%;
}
#keyvisual .characterList{
	border-top: 6px solid #000;
	border-right: 3px solid #000;
	border-bottom: 6px solid #000;
	border-left: 3px solid #000;
	font-size: 0;	
}
#keyvisual .characterList li{
	overflow: hidden;
	display: inline-block;
	width: 16.665%;
	box-sizing: border-box;
	border-left: 3px solid #000;
	border-right: 3px solid #000;
	background-color: #fff;
}
#keyvisual .characterList li img{
	width: 100%;
}
#keyvisual .characterList li .image{
	opacity: 0;
	position: absolute;
	top: 0;
	width: 100%;
}
#keyvisual .characterList li{
	position: relative;
	background-position: center top;
	background-size: 100% auto;
	background-repeat: no-repeat;
}
#keyvisual .characterList li:nth-child(1){
	background-image: url(../img/keyvisual/character1-bg.png);
}
#keyvisual .characterList li:nth-child(2){
	background-image: url(../img/keyvisual/character2-bg.png);
}
#keyvisual .characterList li:nth-child(3){
	background-image: url(../img/keyvisual/character3-bg.png);
}
#keyvisual .characterList li:nth-child(4){
	background-image: url(../img/keyvisual/character4-bg.png);
}
#keyvisual .characterList li:nth-child(5){
	background-image: url(../img/keyvisual/character5-bg.png);
}
#keyvisual .characterList li:nth-child(6){
	background-image: url(../img/keyvisual/character6-bg.png);
}
#keyvisual .characterList li .bg{
	position: absolute;
	z-index: 20;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
#keyvisual .characterList li:nth-child(1) .bg{
	background-color: #c5b98c;
}
#keyvisual .characterList li:nth-child(2) .bg{
	background-color: #7d001a;
}
#keyvisual .characterList li:nth-child(3) .bg{
	background-color: #00214b;
}
#keyvisual .characterList li:nth-child(4) .bg{
	background-color: #231815;
}
#keyvisual .characterList li:nth-child(5) .bg{
	background-color: #000121;
}
#keyvisual .characterList li:nth-child(6) .bg{
	background-color: #fcc800;
}
#keyvisual .characterList .logo{
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
}
#keyvisual .main{
	position: absolute;
    top: 10px;
    left: 328px;
}
#keyvisual > .logo{
	position: absolute;
	z-index: 10;
	left: 0;
	bottom: -100px;
}

@media only screen and (max-width: 640px) {
	#keyvisual{
		height: auto;
		padding-bottom: 350px;
	}
	#keyvisual .characterList li{
		width: 33.33%;
	}
	#keyvisual .characterList li:nth-child(1),
	#keyvisual .characterList li:nth-child(2),
	#keyvisual .characterList li:nth-child(3){
		border-bottom: 6px solid #000;
	}
	#keyvisual h1 img{
		width: 466px;
	}
	#keyvisual > .logo{
		bottom: -40px;
	}
	#keyvisual .characterList li:nth-child(1){
		background-image: url(../img/keyvisual/character1-bg-sp.png);
	}
	#keyvisual .characterList li:nth-child(2){
		background-image: url(../img/keyvisual/character2-bg-sp.png);
	}
	#keyvisual .characterList li:nth-child(3){
		background-image: url(../img/keyvisual/character3-bg-sp.png);
	}
	#keyvisual .characterList li:nth-child(4){
		background-image: url(../img/keyvisual/character4-bg-sp.png);
	}
	#keyvisual .characterList li:nth-child(5){
		background-image: url(../img/keyvisual/character5-bg-sp.png);
	}
	#keyvisual .characterList li:nth-child(6){
		background-image: url(../img/keyvisual/character6-bg-sp.png);
	}
}
/*-----------------------------------------------
 navigation
-----------------------------------------------*/
#navigation{
	height: 118px;
	background-color: #42b5e6;
}
#navigation ul{
	min-width: 900px;
	padding: 10px 0;
	background-color: #42b5e6;
	font-size: 0;
	text-align: center;
}

#navigation ul li{
	display: inline-block;
	margin: 0 30px;
	font-size: 26px;
	font-weight: bold;
	text-align: center;
	line-height: 98px;
}

#navigation ul li a{
	color: #fff;
}

#navigation div.fixed{
	position: fixed;
	z-index: 20;
	top: 0;
	width: 100%;
	animation: slideInDown .3s forwards linear;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}

@keyframes slideInDown {
	0% {
		visibility: visible;
		transform: translate3d(0, -100%, 0);
	}
	100% {
		transform: translateZ(0);
	}
}

@media only screen and (max-width: 640px) {
	#navigation{
		margin-top: 0;
	}
	#navigation ul{
		min-width: 640px;
	}
	#navigation ul li{
		margin: 0 15px;
		font-size: 24px;
	}
}
/*-----------------------------------------------
 about
-----------------------------------------------*/
#about{
	padding: 60px 0;
	background-image: url(../img/about/bg.jpg);
	background-attachment: fixed;
	background-size:  cover;
	background-position: center top;
	background-repeat: no-repeat;
}
#about .inner{
	width: 1000px;
    margin: 0 auto;
}
#about h2{
	margin-bottom: 60px;
	text-align: center;
}
#about .catch{
	margin-bottom: 30px;
	font-size: 34px;
	font-weight: bold;
	text-align: center;
	color: #42b5e6;
}
#about .catch span{
	color: #f54e20;
}
#about .text{
	margin-bottom: 30px;
	font-size: 24px;
	text-align: center;
	color: #42b5e6;
}
#about .box{
	padding: 40px 0 40px;
	background-color: rgba(255,255,255,0.8)
}
#about .box ul li{
	margin-bottom: 30px;
	text-align: center;
}
#about .box ul li:last-child{
	margin-bottom: 0;
}
@media only screen and (max-width: 640px) {
	#about{
		padding: 60px 0 0;
		background-attachment: scroll;
	}
	#about .inner{
		width: auto;
	}
	#about h2 img{
		max-width: 100%;
	}
	#about .catch{
		font-size: 28px;
	}
	#about .text{
		margin: 0 20px 20px;
		text-align: left;
	}
	#about .box{
		padding: 25px;
	}
	#about .box ul li img{
		max-width: 100%;
	}
}

/*-----------------------------------------------
 character
-----------------------------------------------*/
#character{
	padding: 60px 0 0;
	background-image: url(../img/character/bg.png);
	background-attachment: fixed;
	background-size:  cover;
	background-position: center top;
	background-repeat: no-repeat;
}
#character h2{
	text-align: center;
}
#character .catch{
	margin-bottom: 30px;
	font-size: 34px;
	font-weight: bold;
	text-align: center;
	color: #42b5e6;
}
#character .map{
	position: relative;
	width: 1000px;
	height: 540px;
	margin: 0 auto 20px;
	background-image: url(../img/character/map.png);
}
#character .map li{
	position: absolute;
}
#character .map li a{
	display: block;
}
#character .map li a img{
	-webkit-transition: all 0.35s;
	transition: all 0.35s;
}
#character .map li a:hover img{
	opacity: 0.5;
	transform: translateY(-10px);
}
#character .map li.icon1{
    top: -15px;
    left: 698px;
}
#character .map li.icon2{
	top: 167px;
    left: 608px;
}
#character .map li.icon3{
    top: 304px;
    left: 576px;
}
#character .map li.icon4{
    top: 278px;
    left: 472px;
}
#character .map li.icon5{
	top: 340px;
	left: 266px;
}
#character .map li.icon6{
    top: 319px;
    left: -6px;
}
#character .characterList{
	font-size: 0;
}
#character .characterList.sp{
	display: none;
}
#character .characterList li{
	height: 350px;
}
#character .characterList li > .inner{
	position: relative;
	width: 1200px;
	height: 350px;
	margin: 0 auto;
}
#character .characterList li:nth-child(1){background-color: #00508e}
#character .characterList li:nth-child(2){background-color: #7d001a}
#character .characterList li:nth-child(3){background-color: #00214b}
#character .characterList li:nth-child(4){background-color: #231815}
#character .characterList li:nth-child(5){background-color: #b8a536}
#character .characterList li:nth-child(6){background-color: #f5cb00}
#character .characterList li:nth-child(1) > .inner{background-image: url(../img/character/character1-pc.png);}
#character .characterList li:nth-child(2) > .inner{background-image: url(../img/character/character2-pc.png);}
#character .characterList li:nth-child(3) > .inner{background-image: url(../img/character/character3-pc.png);}
#character .characterList li:nth-child(4) > .inner{background-image: url(../img/character/character4-pc.png);}
#character .characterList li:nth-child(5) > .inner{background-image: url(../img/character/character5-pc.png);}
#character .characterList li:nth-child(6) > .inner{background-image: url(../img/character/character6-pc.png);}

#character .characterList .block{
	position: absolute;
	top: 80px;
    left: 188px;
}
#character .characterList .block > div{
	display: inline-block;
	font-size: 0;
}
#character .characterList .block > div:first-child{
	margin-right: -60px;
}
#character .characterList .block > div:nth-child(2){
	margin-right: -61px;
}

@media only screen and (max-width: 640px) {
	#character{
		padding: 60px 0 0;
		background-attachment: scroll;
	}
	#character h2{
		margin-bottom: 30px;
	}
	#character h2 img{
		max-width: 100%;
	}
	#character .map{
		width: 640px;
		height: 348px;
		background-image: url(../img/character/map-sp.png);
	}
	#character .map li.icon1{
		top: -33px;
		left: 485px;
	}
	#character .map li.icon2 {
		top: 79px;
		left: 390px;
	}
	#character .map li.icon3 {
		top: 217px;
		left: 387px;
	}
	#character .map li.icon4 {
	    top: 134px;
	    left: 307px;
	}
	#character .map li.icon5 {
	    top: 153px;
	    left: 184px;
	}
	#character .map li.icon6 {
		top: 225px;
		left: 65px;
	}
	#character .characterList.pc{
		display: none;
	}
	#character .characterList.sp{
		display: block;
	}
	#character .characterList li{
		height: 204px;
	}
	#character .characterList li:nth-child(1) > .inner{background-image: url(../img/character/character1-sp.png);}
	#character .characterList li:nth-child(2) > .inner{background-image: url(../img/character/character2-sp.png);}
	#character .characterList li:nth-child(3) > .inner{background-image: url(../img/character/character3-sp.png);}
	#character .characterList li:nth-child(4) > .inner{background-image: url(../img/character/character4-sp.png);}
	#character .characterList li:nth-child(5) > .inner{background-image: url(../img/character/character5-sp.png);}
	#character .characterList li:nth-child(6) > .inner{background-image: url(../img/character/character6-sp.png);}
	#character .characterList .block {
	    position: absolute;
	    top: 46px;
	    left: 57px;
	}
	#character .characterList .block > div:first-child {
	    margin-right: -34px;
	}
	#character .characterList .block > div:nth-child(2) {
	    margin-right: -37px;
	}
}
/*-----------------------------------------------
 topic
-----------------------------------------------*/
#topic{
	padding: 60px 0 0;
	background-image: url(../img/bg.jpg);
	background-attachment: fixed;
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
}
#topic .inner{
	width: 1000px;
    margin: 0 auto;
}
#topic h2{
	margin-bottom: 60px;
	text-align: center;
}
#topic .box{
	padding: 40px 0 40px;
	background-color: rgba(239,227,122,0.8)
}
#topic .topic2{
	margin-bottom: 40px;
}
#topic .topic2,
#topic .topic3{
	text-align: center;
}
#topicSlider{
	position: relative;
	margin-bottom: 40px;
}
#topicSlider .slick-slider{
	position: static;
}
#topic p{
	margin-bottom: 10px;
	font-size: 40px;
	font-weight: bold;
	text-align: center;
	color: #050039;
}
#topicSlider ul.slick-dots{
	height: 25px;
	line-height: 25px;
	letter-spacing: -.40em;
	text-align: center;
}
#topicSlider ul.slick-dots li{
	display: inline-block;
    opacity: 0.6;
	position: relative;
	margin: 0 6px;
	letter-spacing: normal;
	vertical-align: middle;
}
#topicSlider .slick-dots li button
{
    width: 11px;
    height: 11px;
    font-size: 0;
    line-height: 0;
    display: block;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
#topicSlider .slick-dots li button:hover,
#topicSlider .slick-dots li button:focus
{
    outline: none;
}
#topicSlider .slick-dots li button:hover:before,
#topicSlider .slick-dots li button:focus:before
{
    opacity: 0.8;
}
#topicSlider .slick-dots li button:before
{
	content: '';
    line-height: 25px;
    position: absolute;
    top: 0;
    left: 0;
    width: 14px;
    height: 14px;
    border-radius: 7px;
    text-align: center;
    color: #fff;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
#topicSlider .slick-dots li.slick-active button:before{
	color: #f5004e;
	background: #f5004e;
}
#topicSlider .slick-slide{
	margin: 0 30px;
}
#topicSlider .slick-slide img{
	margin: 0 auto;
	width: 100%;
}
#topicSlider .slick-next {
	display: block;
    cursor: pointer;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -42px;
    z-index: 10;
    width: 84px;
    height: 84px;
    margin: auto;
    padding: 0;
    border: none;
    background-image: url(../img/topic/next.png);
    background-color: transparent;
    appearance: none;
    text-indent: 100%;
    white-space: nowrap;
    outline: 0;
    overflow: hidden;
}
#topicSlider .slick-disabled{
	display: none !important;
}
#topicSlider .slick-prev {
	display: block;
    cursor: pointer;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -42px;
    z-index: 10;
    width: 84px;
    height: 84px;
    margin: auto;
    padding: 0;
    border: none;
    background-image: url(../img/topic/prev.png);
    background-color: transparent;
    appearance: none;
    text-indent: 100%;
    white-space: nowrap;
    outline: 0;
    overflow: hidden;
}
#topicSlider .slick-next:hover,
#topicSlider .slick-prev:hover{
	opacity: 0.8;
	animation: btn 0.5s;
	-webkit-animation: btn 0.5s;
	-moz-animation: btn 0.5s;
}

@media only screen and (max-width: 640px) {
	#topic{
		background-attachment: scroll;
	}
	#topic .inner{
		width: auto;
	}
	#topic h2{
		margin-bottom: 60px;
	}
	#topic h2 img{
		max-width: 100%;
	}
	#topic .box{
		padding: 25px;
	}
	#topic .topic2{
		margin-bottom: 25px;
	}
	#topic .topic2 img,
	#topic .topic3 img{
		width: 100%;
	}
	#topicSlider{
		margin-bottom: 25px;
	}
	#topic p{
		font-size: 30px;
	}
	#topicSlider .img{
		width: 100%;
	}
	#topicSlider .slick-slide{
		margin: 0;
	}
	#topicSlider .slick-next,
	#topicSlider .slick-prev{
		width: 42px;
		height: 42px;
		background-size: 42px;
	}
	#topicSlider .slick-next{
		right: -10px;
	}
	#topicSlider .slick-prev{
		left: -10px;
	}
}
/*-----------------------------------------------
 game
-----------------------------------------------*/
#game{
	padding: 60px 0;
	background-image: url(../img/game/character3.png) , url(../img/bg.jpg);
	background-attachment: scroll , fixed;
	background-size:  auto , cover;
	background-position: center top , center top;
	background-repeat: no-repeat;
}
#game.bg0{
	background-image: url(../img/game/character1.png) , url(../img/bg.jpg);
}
#game.bg1{
	background-image: url(../img/game/character2.png) , url(../img/bg.jpg);
}
#game.bg2{
	background-image: url(../img/game/character3.png) , url(../img/bg.jpg);
}
#game .inner{
	width: 1000px;
    margin: 0 auto;
}
#game h2{
	margin-bottom: 60px;
	text-align: center;
}
#game .tabs{
	font-size: 0;
	text-align: center;
}
#game .tabs li{
	overflow: hidden;
	display: inline-block;
	position: relative;
	cursor: pointer;
	width: 300px;
}
#game .tabs li.current img.tab{
	transform: translateY(0);
}
#game .tabs li img.tab{
	transform: translateY(11px);
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}

#game .tabs li img.chara{
	position: absolute;
	z-index: 0;
	transform: translateY(38px);
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}
#game .tabs li.current img.chara{
	transform: translateY(0);
	z-index: 1;
}

#game .tabs li img.chara{
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
}

#game .tabs li:nth-child(1) span{
	display: block;
	position: absolute;
	z-index: 1;
	top: -58px;
	left: 0;
	width: 300px;
	height: 62px;
	background-image: url(../img/game/tab1-current.png);
}

#game .box{
	display: none;
	padding: 40px 0 40px;
	background-color: rgba(5,0,57,0.7)
}
#game .box h3{
	margin-bottom: 30px;
	text-align: center;
}
#game .box h4{
	margin-bottom: 30px;
	text-align: center;
}
#game .box ul li{
	margin-bottom: 20px;
	text-align: center;
}
#game .box ul li:last-child{
	margin-bottom: 0;
}

#game .box3{display:block;}
@media only screen and (max-width: 640px) {
	#game{
		padding: 60px 0 0;
		background-image: url(../img/game/character3-sp.png),url(../img/bg.jpg);
		background-attachment: scroll;
		background-size: 100% auto , 100% auto;
		background-position: center top , center top;
	}
	#game.bg0{
		background-image: url(../img/game/character1-sp.png) , url(../img/bg.jpg);
	}
	#game.bg1{
		background-image: url(../img/game/character2-sp.png) , url(../img/bg.jpg);
	}
	#game.bg2{
		background-image: url(../img/game/character3-sp.png) , url(../img/bg.jpg);
	}
	#game .inner{
		width: auto;
	}
	#game h2 img{
		max-width: 100%;
	}
	#game h3 img{
		max-width: 100%;
	}
	#game .tabs li{
		width: 30%;
	}
	#game .tabs li img{
		width: 100%;
	}
	#game .box{
		padding: 25px;
	}
	#game .box ul li img{
		max-width: 100%;
	}
	#game .tabs li img.tab{
		transform: translateY(6px);
		-webkit-transition: all 0.2s;
		transition: all 0.2s;
	}
}
/*-----------------------------------------------
 twitter
-----------------------------------------------*/
#twitter{
	padding: 60px 0;
	background-image: url(../img/twitter/bg.png);
	background-attachment: fixed;
	background-size: cover;
}
#twitter .inner{
	width: 1000px;
	margin: 0 auto;
}
#twitter h2{
	margin-bottom: 60px;
	text-align: center;
	line-height: 1;
}
#twitter .box{
	padding: 25px 0;
	background-color: #b3e1fd;
}
#twitter .timeline{
	overflow: scroll;
	width: 590px;
	height: 560px;
	margin: 0 auto 25px;
}
#twitter .nextBtn{
	position: relative;
	width: 400px;
	margin: 0 auto;
}
@media only screen and (max-width: 640px) {
	#twitter{
		background-size: 100% auto;
		background-attachment: scroll;
	}
	#twitter h2 img{
		max-width: 100%;
	}
	#twitter .inner{
		width: auto;
	}
	#twitter .timeline{
		width: auto;
		height: 400px;
		margin: 0 20px 25px;
	}
	#twitter .nextBtn{
		width: auto;
		margin: 0 20px;
	}
	#twitter .nextBtn a{
		font-size: 30px;
	}
}
/*-----------------------------------------------
 appInfo
-----------------------------------------------*/

#appInfo{
	padding: 20px 0;
	background-color: #098cf3;
	background-image: url(../img/appinfo/bg.jpg);
	background-repeat: no-repeat;
	background-position: center center;
}
#appInfo .info{
	width: 320px;
	margin: 0 auto 20px;
}
#appInfo .info .icon{
	float: left;
	width: 64px;
	margin-right: 15px;
}
#appInfo .info .spec{
	float: left;
}
#appInfo .info .spec p{
	font-size: 14px;
	color: #fff;
}
#appInfo .info .icon img{
	width: 100%;
}
#appInfo ul.app{
	font-size: 0;
	text-align: center;
}
#appInfo ul.app li{
	display: inline-block;
}
#appInfo ul.app li img{
	width: 100%;
}
#appInfo ul.app li:first-child{
	width: 137px;
	margin-right: 14px;
}
#appInfo ul.app li:last-child{
	width: 169px;
}
@media only screen and (max-width: 640px) {
	#appInfo .info{
		width: 500px;
		margin: 0 auto 20px;
	}
	#appInfo .info .spec p{
		font-size: 20px;
		line-height: 1.2;
	}
}
/*-----------------------------------------------
 footer
-----------------------------------------------*/
#footer{
	padding: 20px 0;
	text-align: center;
}
#footer .sns{
	margin-bottom: 20px;
	font-size: 0;
	text-align: center;
}
#footer .sns li{
	display: inline-block;
	width: 41px;
	height: 41px;
	margin-right: 20px;
}
#footer .sns li img{
	width: 100%;
}
#footer .sns li:last-child{
	margin-right: 0;
}
#footer .logo{
	margin-bottom: 20px;
	font-size: 0;
	text-align: center;
}
#footer .logo li{
	display: inline-block;
	margin: 0 17px;
}
#footer .logo li:first-child{
	width: 142px;
}
#footer .logo li:last-child{
	width: 157px;
}
#footer .logo li img{
	width: 100%;
	vertical-align: top;
}
#footer small{
	font-size: 14px;
	color: #999999;
}
#pagetop{
	position: fixed;
	z-index: 100;
	bottom: -80px;
	right: 0;
}
@media only screen and (max-width: 640px) {
	#footer .logo li:first-child{
		width: 113px;
	}
	#footer .logo li:last-child{
		width: 125px;
	}
	#pagetop{
		right: -20px;
	}
}


/*-----------------------------------------------
 modal
-----------------------------------------------*/
#hiddenContent{
	display: none;
}
.tos-wrapper.tos-fixed .tos-slide.tos-html>div{
	padding: 0;
	background: transparent;
}
.voice{
	position: absolute;
	right: 20px;
	bottom: 20px;
}
#c1-1{
	position: relative;
	width: 920px;
	height: 596px;
	background-image: url(../img/character/character1-1-modal.png);
}
#c1-2{
	position: relative;
	width: 920px;
	height: 581px;
	background-image: url(../img/character/character1-2-modal.png);
}
#c1-3{
	position: relative;
	width: 920px;
	height: 593px;
	background-image: url(../img/character/character1-3-modal.png);
}
#c2-1{
	position: relative;
	width: 920px;
	height: 570px;
	background-image: url(../img/character/character2-1-modal.png);
}
#c2-2{
	position: relative;
	width: 920px;
	height: 582px;
	background-image: url(../img/character/character2-2-modal.png);
}
#c2-3{
	position: relative;
	width: 920px;
	height: 574px;
	background-image: url(../img/character/character2-3-modal.png);
}
#c3-1{
	position: relative;
	width: 920px;
	height: 582px;
	background-image: url(../img/character/character3-1-modal.png);
}
#c3-2{
	position: relative;
	width: 920px;
	height: 574px;
	background-image: url(../img/character/character3-2-modal.png);
}
#c3-3{
	position: relative;
	width: 920px;
	height: 571px;
	background-image: url(../img/character/character3-3-modal.png);
}
#c4-1{
	position: relative;
	width: 920px;
	height: 596px;
	background-image: url(../img/character/character4-1-modal.png);
}
#c4-2{
	position: relative;
	width: 920px;
	height: 550px;
	background-image: url(../img/character/character4-2-modal.png);
}
#c4-3{
	position: relative;
	width: 920px;
	height: 568px;
	background-image: url(../img/character/character4-3-modal.png);
}
#c5-1{
	position: relative;
	width: 920px;
	height: 536px;
	background-image: url(../img/character/character5-1-modal.png);
}
#c5-2{
	position: relative;
	width: 920px;
	height: 573px;
	background-image: url(../img/character/character5-2-modal.png);
}
#c5-3{
	position: relative;
	width: 920px;
	height: 596px;
	background-image: url(../img/character/character5-3-modal.png);
}
#c6-1{
	position: relative;
	width: 920px;
	height: 566px;
	background-image: url(../img/character/character6-1-modal.png);
}
#c6-2{
	position: relative;
	width: 920px;
	height: 556px;
	background-image: url(../img/character/character6-2-modal.png);
}
#c6-3{
	position: relative;
	width: 920px;
	height: 574px;
	background-image: url(../img/character/character6-3-modal.png);
}
#c1-1-sp{
	position: relative;
	width: 640px;
	height: 798px;
	background-image: url(../img/character/character1-1-modal-sp.png);
}
#c1-2-sp{
	position: relative;
	width: 640px;
	height: 727px;
	background-image: url(../img/character/character1-2-modal-sp.png);
}
#c1-3-sp{
	position: relative;
	width: 640px;
	height: 738px;
	background-image: url(../img/character/character1-3-modal-sp.png);
}
#c2-1-sp{
	position: relative;
	width: 640px;
	height: 696px;
	background-image: url(../img/character/character2-1-modal-sp.png);
}
#c2-2-sp{
	position: relative;
	width: 640px;
	height: 696px;
	background-image: url(../img/character/character2-2-modal-sp.png);
}
#c2-3-sp{
	position: relative;
	width: 640px;
	height: 696px;
	background-image: url(../img/character/character2-3-modal-sp.png);
}
#c3-1-sp{
	position: relative;
	width: 640px;
	height: 733px;
	background-image: url(../img/character/character3-1-modal-sp.png);
}
#c3-2-sp{
	position: relative;
	width: 640px;
	height: 696px;
	background-image: url(../img/character/character3-2-modal-sp.png);
}
#c3-3-sp{
	position: relative;
	width: 640px;
	height: 696px;
	background-image: url(../img/character/character3-3-modal-sp.png);
}
#c4-1-sp{
	position: relative;
	width: 640px;
	height: 749px;
	background-image: url(../img/character/character4-1-modal-sp.png);
}
#c4-2-sp{
	position: relative;
	width: 640px;
	height: 696px;
	background-image: url(../img/character/character4-2-modal-sp.png);
}
#c4-3-sp{
	position: relative;
	width: 640px;
	height: 696px;
	background-image: url(../img/character/character4-3-modal-sp.png);
}
#c5-1-sp{
	position: relative;
	width: 640px;
	height: 696px;
	background-image: url(../img/character/character5-1-modal-sp.png);
}
#c5-2-sp{
	position: relative;
	width: 640px;
	height: 696px;
	background-image: url(../img/character/character5-2-modal-sp.png);
}
#c5-3-sp{
	position: relative;
	width: 640px;
	height: 795px;
	background-image: url(../img/character/character5-3-modal-sp.png);
}
#c6-1-sp{
	position: relative;
	width: 640px;
	height: 696px;
	background-image: url(../img/character/character6-1-modal-sp.png);
}
#c6-2-sp{
	position: relative;
	width: 640px;
	height: 696px;
	background-image: url(../img/character/character6-2-modal-sp.png);
}
#c6-3-sp{
	position: relative;
	width: 640px;
	height: 696px;
	background-image: url(../img/character/character6-3-modal-sp.png);
}
