@charset "utf-8";
/**
 * Reset
 */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
    margin: 0;
    padding: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

fieldset, img {
    border: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
    font-style: normal;
    font-weight: normal;
}

ol, ul {
    list-style: none;
}

caption, th {
    text-align: left;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: normal;
}

q:before, q:after {
    content: '';
}

abbr, acronym {
    border: 0;
}

/**
 * Basic Style
 */
body {
    background: #FFFFFF;
    color: #555;
    font-size: 12px;
    font-family: "Tahoma", "メイリオ", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "Meiryo", "ＭＳ Ｐゴシック", "sans-serif";
}

h1 {
    font-size: 2em;
    margin: 20px 0;
}

h2 {
    font-size: 1.5em;
    margin: 15px 0;
}

h3 {
    font-size: 1.2em;
    margin: 10px 0;
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearfix {
    display: inline-block;
    min-height: 1%; /* for IE 7*/
}

/**
 * dropnav
 */

h1 {
    margin: 20px;
}

#dropnav {
    margin: 0 auto;
	width:auto;
}

#dropnav li {
    float: left;
    list-style: none;
}

#dropnav li a {
    display: block;
    background: #060;
    padding: 7px 14px;
    text-decoration: none;
    border-right: 1px solid #fff;
    width: 90px;
    color: #fff;
    white-space: nowrap
}/*何もしないときのnavibarの色*/

#dropnav li a:hover {
    background: #090;
}/*マウスが上にきたときのnavibarの色*/

#dropnav li ul {
    margin: 0;
    padding: 0;
    position: absolute;
    visibility: hidden;
    border-top: 1px solid white
}

#dropnav li ul li {
    float: none;
    display: inline
}

#dropnav li ul li a {
    width: 90px;
    background: #ff8104
}/*navibarのサブメニューの色（ただプルダウンしたとき）*/

#dropnav li ul li a:hover {
    background: #fe9e40
}/*navibarのサブメニューの色（マウスが上にきたとき）*/

