@charset "utf-8";

/* -------------------------------------------------------------

- 基本設定

------------------------------------------------------------- */
* { margin: 0; padding: 0; }


/*-- リンクカラー設定 --*/

a:link {
	color:#9073c8;
	text-decoration:none;
}

a:visited {
	color:#5fa3ea;
	text-decoration:none;
}

a:active {
	color:#9073c8;
	text-decoration:none;
}

a:hover {
	color:#000000; text-decoration:underline; 
	background-color:#fff47a;
}



/* -------------------------------------------------------------

- 汎用クラス群

------------------------------------------------------------- */

/*-- フォントサイズ --*/
.ex_text10{ font-size:10px; }
.ex_text11{ font-size:11px; }
.ex_text12{ font-size:12px; }
.ex_text14{ font-size:14px; }
.ex_text16{ font-size:16px; }
.ex_text18{ font-size:18px; }
.ex_text20{ font-size:20px; }
.ex_text22{ font-size:22px; }
.ex_text32{ font-size:32px; }


/*-- 水平方向揃え --*/
.ex_hl{ text-align:left; }
.ex_hc{ text-align:center; }
.ex_hr{ text-align:right; }


/*-- 垂直方向揃え --*/
.ex_vt{ vertical-align:top; }
.ex_vm{ vertical-align:middle; }
.ex_vb{ vertical-align:bottom; }


/*-- ボックス配置位置 --*/
.ex_psl{ margin-right:auto; }
.ex_psc{ margin:0 auto; }
.ex_psr{ margin-left:auto; }


/*--------------------------
リセット
----------------------------*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
	list-style:none;
}

