﻿@charset "utf-8";

body {
	font-size:95%;
	margin: 50px 100px 0 100px;
	background-color: #fdf5e6;
	color: #191970;
}

h1 {
	font-size: 140%;
	font-weight: bold;
	text-align: center;
}

a {
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
	color: inherit;
}

a:visited {
	color: inherit;
}

.list_test-wrap {
        list-style:  none;  /* デフォルトのアイコンを消す */
	width: 600px;
        margin:  0 auto 0 auto;         /* デフォルト指定上書き */
        padding: 0;         /* デフォルト指定上書き */
    }
     
.list_test:before {
        content:  "";     /* 空の要素作成 */
        width: 20px;                /* 幅指定 */
        height: 20px;               /* 高さ指定 */
        display:  inline-block;     /* インラインブロックにする */
        background-color: #0000FF;  /* 背景色指定 */
        position:  relative;        /* 位置調整 */
        top: 3px;                   /* 位置指定 */
        border-radius:  50%;        /* 要素を丸くする */
        margin-right: 5px;          /* 余白指定 */
    }
     
.list_test {
        padding:  10px;             /* 余白指定 */
        background-color: #ff8c00; /* 背景色指定 */
        border-radius:  10px;       /* 角丸指定 */
        margin-bottom: 15px;         /* 要素と要素の間指定 */
        color: #0000FF;                /* 文字色指定 */
        font-size:  20px;           /* 文字サイズ指定 */
    }

p.footer {
	font-size: 85%;
	text-align: center;
}
