
/* CSSの文字セット */
/*****************************************/
@charset "shift_jis";
/*****************************************/

/* メイン設定 */
/*****************************************/

#title{
 width: 100%;
 min-height: 250px;
 background-image: url(top.jpg);
 background-repeat: no-repeat;
 background-size: 100% 250px;
 margin: 0px auto 0px auto;	/* 上・右・下・左 */
}

#welcom{
 background-color: #3CB371;
 font-size: 18px;
 text-align: center;
 padding: 10px 0px 10px 0px;	/* 上・右・下・左 */
}

#main{
 width: 400px;
 margin: 0px auto 0px auto;	/* 上・右・下・左 */
}

#label{
 width: 400px;
 margin: 40px auto 20px -8px;	/* 上・右・下・左 */
 padding-left: 10px;
 border-bottom: solid 5px #A0522D;
 border-left: solid 10px #A0522D;
 font-size: 22px; 
}

#con{
 width: 400px;
 margin: 0px auto 40px -12px;	/* 上・右・下・左 */
 padding-left: 15px;
 font-size: 16px; 
}

#notify{
 width: 400px;
 margin: 0px auto 20px -3px;	/* 上・右・下・左 */
 font-size: 16px;
 padding-left: 5px;
 line-height: 2;
 overflow: auto;
 white-space: nowrap;
}

#char{
 width: 400px;
 margin: 30px auto 5px auto;	/* 上・右・下・左 */
 text-align: center; 
}

#cut{
 clear: both;
}

#footer{
 clear: both;
 width: 100%;
 background-color: #808080;
 text-align: center;
 font-size: 10pt;
 color: #FFFFFF;
 margin-right: auto;
 margin-left: auto;
 padding-top: 10px;
 padding-bottom: 10px;
}

/*****************************************/

/* 細かいところの設定 */
/*****************************************/
body{
 width: 100%;
 min-width: 450px;
 font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
 color: #424242;
 background-color: #F5DEB3;
 -webkit-text-size-adjust: 100%;
 animation: fadeIn 2s ease 0s 1 normal;
 -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

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

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

*{
 padding: 0px;
 margin: 0px;
}

a:link{
 color: black;
 text-decoration: underline;
}

a:visited{
 color: black;
 text-decoration: none;
}

a:hover{
 color: black;
 text-decoration: none;
}

li{
 font-size: 16px;
 margin-left: 10px;
}
/*****************************************/