@charset "utf-8";

/*
	* Name: character.css
	* License: MIT License
	  - http://sourceforge.jp/projects/opensource/wiki/licenses%2FMIT_license
	* Author URI: http://www.3050grafix.com/
	* Author E-mail: hiro@3050grafix.com
*/


/* Stylesheet Document */

@media all {

	/* ========================================
	   * 初期設定 - 文字 -
	======================================== */

	h1,
		h2,
			h3,
				h4,
					h5,
						h6 {
							font-weight: bold;
							margin: 0;
							padding: 0;
	}

	h1 {
		font-size: 160%;
	}

	h2 {
		font-size: 140%;
	}

	h3 {
		font-size: 120%;
	}

	h4 {
		font-size: 100%;
	}

	h5 {
		font-size: 100%;
	}

	h6 {
		font-size: 100%;
	}

	em {
		font-style: normal;
		font-weight: bold;
	}

	strong {
		color: #FF0000;
		font-weight: bold;
	}

	p {
		margin: 0;
		padding: 0;
	}

	address {
		font-style: normal;
	}


	/* ========================================
	   * 初期設定 - リンク -
	======================================== */

	a {
		overflow: hidden;
	}

	/* 未訪問リンク */
	a:link {
		color: #147fd0;
		text-decoration: underline;
	}

	/* 訪問済みリンク */
	a:visited {
		color: #147fd0;
		text-decoration: underline;
	}

	/* リンクにマウスが重なった際の処理 */
	a:hover {
		color: #147fd0;
		text-decoration: underline;
	}

	a:focus {
		color: #147fd0;
		text-decoration: underline;
	}

	a:active {
		color: #70b014;
		text-decoration: underline;
	}


	/* ========================================
	   * 初期設定 - 位置 -
	======================================== */

	.txt_c {
		text-align: center;
	}

	.txt_l {
		text-align: left;
	}

	.txt_r {
		text-align: right;
	}


	/* ========================================
	   * 初期設定 - 文字サイズ -
	======================================== */

	.fs10 {
		font-size: 80%;
	}

	.fs12 {
		font-size: 100%;
	}

	.fs14 {
		font-size: 120%;
	}

	.fs16 {
		font-size: 140%;
	}

	.fs18 {
		font-size: 160%;
	}


	/* ========================================
	   * 初期設定 - 書体 -
	======================================== */

	.f_bold {
		font-weight: bold;
	}

	.f_italic {
		font-style: italic;
	}


	/* ========================================
	   * 初期設定 - 色 -
	======================================== */

	.fc_red {
		color: #ec412f;
	}

	.fc_green {
		color: #389904;
	}

}