@charset "utf-8";
/* CSS Document */

/* gameページ */


#gametitle h2 {
  background: linear-gradient(to right top, #52db35, #a2b9dd);
  border-radius: 8px;
  font-size: 20px;
  line-height: 40px;
  font-family:"Times New Roman", Times, serif;
  font-weight: bold;
  color: #ffffff;
  padding-left: 10px;
  letter-spacing: 0.05em;
}

#game{
	overflow: hidden;
	margin-top: 40px;
}



.webgl-content{
	float: right;
}

#unity-container{
	float: right;
}

/* スマホだけに適用するCSS */
@media screen and ( max-width:640px )
{
	.webgl-content
	{
		float: none;
	}
	
	#unity-container
	{
		float: none;
	}
	
}

#credit{
	overflow: hidden;
	margin: 30px 0 0 350px;
	background-color: #92cca3;
	width: 350px;
	border-radius: 15px;
}

#credit h1{
	padding: 30px ;
}

#credit p{
	padding: 0 30px 30px 30px ;
}


/* スマホだけに適用するCSS */
@media screen and ( max-width:640px )
{
	#credit
	{
		margin-left: 0;
	}
}


/* mainの吹き出しスペース */ 
#balloon {
    position: relative;
    margin: 2em 0 2em 40px;
    padding: 15px;
    background: #f7e8c6;
    border-radius: 30px;
}

#balloon:before{    
    content: "";
    position: absolute;
    left: -38px;
    width: 13px;
    height: 12px;
    bottom: 0;
    background: #f7e8c6;
    border-radius: 50%;
}

#balloon:after{
    content: "";
    position: absolute;
    left: -24px;
    width: 20px;
    height: 18px;
    bottom: 3px;
    background: #f7e8c6;
    border-radius: 50%;
}

#balloon p {
    margin: 0; 
    padding: 0;
}

/* gameのリンク文字 */

#game .unity-container a{
	color:#fff;
}

