@charset "UTF-8";

BODY{
 background:#ffffff;

}

PRE{
 font-family:monospace;
 font-size:125%;
 line-height:1.25em;
}
A{
 line-height:1.5em;
 font-weight:bold;
}

/* スマホ（画面幅640px以下） */
@media screen and (max-device-width:640px){
	/* フォントサイズをＰＣより大きく */
	PRE{
	 font-size:133%;
	}
	/*リンクをブロック化 */
	A{
	 display:inline-block;
	 width:100%;
	 margin-bottom:0.5em;
	 line-height:1.5em;
	 color:black;
	 text-align:center;
	 text-decoration:none;
	 border:1px solid #999;
	 border-radius:4px;
	 background:linear-gradient(#eee,#fff,#fff,#ddd);
	 box-shadow:0px 2px #999;
	}
	A:active{
	 background:linear-gradient(#ddd,#fff,#fff,#eee);
	 box-shadow:none;
	 font-weight:bold;
	 transform: translateY(2px);
	}
}