@charset "UTF-8";

/* スマートフォン対策用設定　*/

@media screen and (max-device-width: 480px) {
	html {
		/*zoom: 70%;*/
	}
	body {
		font-size: 100% !important;
	}
}

/* input textbox size */
input[type="button"] {
        
        width:  60px;
        height: 30px;
 }
table { /* セルの隙間を無くす */
        border-collapse: collapse;
        border-spacing: 0;
      }

body {
        text-align: center;
        font-family: "Hiragino Kaku Gothic Pro",Osaka,"メイリオ","Helvetica Neue",Helvetica,Arial,YuGothic,'Yu Gothic','游ゴシック',"Hiragino Kaku Gothic ProN","ヒラギノ角ゴ ProN W3","ヒラギノ角ゴ Pro W3", Meiryo,sans-serif;
        font-weight: 500;
        font-style: normal;
        font-size:16px;    /* 基本サイズ */
        background-color: #f2ffe6;      /* 背景色 */
        margin:0 auto;      /* センター表示指示 */
        width: 500px;
    }

/*-------------------------*/
/* --- 文字スタイル --- */
/* h タグの初期化 */

h1 { margin:0; padding:0; }

 h1 { color:blue; font-size: 16px; line-height:1.6; font-weight:  normal;}
/*-------------------------*/


div#wrapper {
        width: 500px;
        margin: 0 auto;
        text-align: center;
        border: 1px solid #FF0000;
    }

/* 右側 */
.td-R  { 
    border-right: 1px solid #FF0000;
}
/* 左側 */
.td-L  { 
    border-left: 1px solid #FF0000;
}
/* 左・下側 */
.td-LB  { 
    border-left: 1px solid #FF0000;
    border-bottom: 1px solid #FF0000;
}
/* 右・下側 */
.td-RB  { 
    border-right: 1px solid #FF0000;
    border-bottom: 1px solid #FF0000;
}
/* 上側 */
.td-T  { 
    border-top: 1px solid #FF0000;
}
/* 下側 */
.td-B  { 
    border-bottom: 1px solid #FF0000;
}
/* 上下側 */
.td-TB  { 
    border-bottom: 1px solid #FF0000;
    border-top: 1px solid #FF0000;
}
/* 左・上側 */
.td-LT  { 
    border-top: 1px solid #FF0000;
    border-left: 1px solid #FF0000;
}
/* 右・上側 */
.td-RT  { 
    border-top: 1px solid #FF0000;
    border-right: 1px solid #FF0000;
}

.Moji_R {text-align:right;}   /* 右側表示 */
.Moji_M {text-align:center;}  /* 中央表示 */
