@charset "utf-8";

/*
	* Name: character.css
	* License: MIT License
	  - http://sourceforge.jp/projects/opensource/wiki/licenses%2FMIT_license

	* Contents:
	  - 初期設定 - 文字 -
	    - 01. 初期設定 - リンク -
	    - 02. 初期設定 - 位置 -
	    - 03. 初期設定 - 文字サイズ -
	    - 04. 初期設定 - 書体 -
	    - 05. 初期設定 - 色 -
*/


/* Stylesheet Document */

@media all {

	/* ========================================
	   * 初期設定 - 文字 -
	======================================== */

	h1,
		h2,
			h3,
				h4,
					h5,
						h6 {
							font-weight: bold;
							margin: 0;
							padding: 0;
	}

	h1 {
		float: left;
		margin-top: 3px;
	}

	h2 {
		margin-bottom: 1px;
	}

	h3 {
		background: url("../../../img/pc/common/bg_title.gif") left bottom repeat-x;
		border-bottom: 2px solid #18B9DB;
		border-top: 1px dotted #DCDCDC;
		clear: both;
		font-size: 120%;
		font-weight: normal;
		margin-bottom: 14px;
		padding-bottom: 10px;
		padding-top: 10px;
		position: relative;
	}

	h4 {
		font-size: 100%;
	}

	h5 {
		font-size: 100%;
	}

	h6 {
		color: #2D8CD2;
		font-size: 100%;
	}

	em {
		font-style: normal;
		font-weight: bold;
	}

	strong {
		color: #A31313;
		font-weight: bold;
	}

	p {
		margin: 0;
		padding: 0;
	}

	address {
		font-style: normal;
	}


	/* ========================================
	   * 01. 初期設定 - リンク -
	======================================== */

	a {
		overflow: hidden;
	}

	/* 未訪問リンク */
	a:link {
		color: #11518A;
		text-decoration: underline;
	}

	/* 訪問済みリンク */
	a:visited {
		color: #7D0D95;
		text-decoration: underline;
	}

	/* リンクにマウスが重なった際の処理 */
	a:hover {
		color: #1F881A;
		text-decoration: underline !important;
	}

	a:focus {
		color: #3C3C39;
		text-decoration: underline;
	}

	a:active {
		color: #3C3C39;
		text-decoration: underline;
	}


	/* ========================================
	   * 02. 初期設定 - 位置 -
	======================================== */

	.txt_c {
		text-align: center;
	}

	.txt_l {
		text-align: left;
	}

	.txt_r {
		text-align: right;
	}


	/* ========================================
	   * 03. 初期設定 - 文字サイズ -
	======================================== */

	.fs10 {
		font-size: 80%;
	}

	.fs12 {
		font-size: 100%;
	}

	.fs14 {
		font-size: 120%;
	}

	.fs16 {
		font-size: 140%;
	}

	.fs18 {
		font-size: 160%;
	}


	/* ========================================
	   * 04. 初期設定 - 書体 -
	======================================== */

	.f_bold {
		font-weight: bold;
	}

	.f_italic {
		font-style: italic;
	}


	/* ========================================
	   * 05. 初期設定 - 色 -
	======================================== */

	.fc_red {
		color: #C61E1E;
	}

	.fc_orange {
		color: #FF8D06;
	}

}