@charset "UTF-8";


body#page-question{
	font-size:15px;
}

#page-question ol{
	padding-left:1.5em;
}
#page-question .ul_style li{
	/* border-bottom: 1px dotted #ccc; */
	margin-left:5px;
}
#page-question .ul_style ol li{
    margin-top:0.2em;
}
#page-question .ul_style li p{
    font-size:14px;
    padding: 1em 0 1em 0em;
    margin:0 0 0 0;
}
#page-question .ul_style li div{
    font-size:14px;
}
#page-question .ul_style li a.menu{
/*     display: block;
    position: relative;
    padding: 15px 25px 10px 0px;
    font-weight: normal;
    text-decoration: none;
    border-bottom: 1px solid #ccc; */
display: block;
width: 90%;
height: 30px;
margin: 0 0 7px 0;
background: #F7F5F2 url(data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAABsAAAAcCAYAAACQ0cTtAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAcVJREFUSEvtVtFNxDAM7QiMwAiMwAiMwAhs4PZSic8bgRFuhI5wI3QERjjyYjuJrnaagoSExElRT4njZzvPLxmG/99vVIBofhrHcB6neYnjM46bfBfME4XnH8cBJwIA5zoAqKOaD+u3QSUTdjaGD6LTixU95rGeg4mZHsqybO6PNpV6ClcNrguQpjBylOFKRA9dm8QI9hVgO0OOjg/fA6LT/IqA8LXLWgCbZ6hkaBlVhFm8rIVYCNq2IXp/lKxcJ3DeAyZ2F/hDtTZB0TS/pUWnPLqhFyyxFP5iyTdgykBk2CKFBeadr1spdWIB1cy8B1MGOvtW89zaYKUVarCa6jYYK822jCxBN2eTyBKaVhqX7RMJGvugowYYC63JHpCm0sZaJ9N/i1ScdQrksmWjOAQrzWZ1AE22RQcaoOmvRBJWt1mzlMkNEAXYsy0C4bA709/JLjWrKnwDSHsMtm4bSXY41KiNRuer4DYaX/RVfLR7dshR7QDaIpyEPN3ke0qU99fs8whwDyZydwxInUiG8t4Iq/XWgLozSFzXq2lHW5tnKJepgOZ3yKbX+Omwc0Yt0a3XkKkAQzWSDKVLFPMHb/RezL9l9wWuQAy9JbrovAAAAABJRU5ErkJggg==) 97% center no-repeat;
font-size: 16px;
color: #333;
padding: 5px 0 0 20px;
text-decoration: none;
}
ol{
    counter-reset: li; /* Initiate a counter */
    list-style: none; /* Remove default numbering */
    *list-style: decimal; /* Keep using default numbering for IE6/7 */
    font: 15px 'trebuchet MS', 'lucida sans';
    padding: 0;
    margin-bottom: 2em;
    text-shadow: 0 1px 0 rgba(255,255,255,.5);
    margin-right:0.5em;
}

.rounded-list a{
    position: relative;
    display: block;
    padding: .4em .4em .4em 2em;
    *padding: .4em;
    margin: .5em 0;
    background: #ddd;
    color: #444;
    text-decoration: none;
    border-radius: .3em;
    transition: all .3s ease-out;
    list-style-type: decimal;
}
 
.rounded-list a:hover{
    background: #eee;
}
 
.rounded-list a:hover:before{
    transform: rotate(360deg);
}
 
.rounded-list a:before{
    content: counter(li);
    counter-increment: li;
    position: absolute;
    left: -1.3em;
    top: 50%;
    margin-top: -1.3em;
    background: #87ceeb;
    height: 2em;
    width: 2em;
    line-height: 2em;
    border: .3em solid #fff;
    text-align: center;
    font-weight: bold;
    border-radius: 2em;
    transition: all .3s ease-out;
}

ol ol {
    margin: 0;
    counter-reset: item;
    list-style-type: none;
    padding-left: 0;
}
  
ol ol li{
    text-indent: -1.3em;
    /* padding-left: 1.3em; */
}
  
ol ol li:before {
    counter-increment: item;
    content: counter(item)'.';
    /* 以下は自由に装飾... */
    padding-right: .5em;
    font-weight: bold;
    color: #b40000;
}