@charset "utf-8";
/* CSS Document */
/* 共通設定 */
body {
/*    font-size: 12pt;*/
    font-size: 10pt;
	font-family: Arial, Helvetica, "sans-serif";
}
hr {
    margin-top: 20px;
    margin-bottom: 20px;
}
a {
    color: #0000ff;
}
a:hover {
    text-decoration: underline;
}
li {
    list-style: none;
}
/* パソコン用 */
@media screen and (min-width:1024px) {
}
/* タブレット用 */
@media screen and (min-width:768px) and (max-width:1023px) {
}
/* スマホ用 */
@media screen and (max-width:767px) {
}