

@charset "UTF-8";

/*

	Aflac CSS
	Base Setting

	* File Organization:
		スタイルリセット
		基本要素
			Body 設定
			基本フォント設定
			a 設定
			list 設定
			Table 設定
			form 設定
		装飾フォント
		ブラウザ設定
			iPhoneの文字サイズ自動調整機能をキャンセル
			IE6のa:hover時の背景画像チラつき防止
			音声ブラウザ 読み上げ対応

*/


/* -----------------------------------------------

	Reset CSS
	スタイルリセット

----------------------------------------------- */
body, div, h1, h2, h3, h4, h5, h6, pre, fieldset, p, ul, ol, dl, dt, dd, ins, blockquote, th, td, a {
	margin: 0;
	padding: 0;
	border: none;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
	font-size: 100%;
	clear: both;
}
img, a img {
	border: 0;
	vertical-align: top;
}
hr {
	display: none;
}



/* -----------------------------------------------

	Default Elements
	基本要素

----------------------------------------------- */

/* Body 設定
----------------------------------------------- */
body {
	font-size: 82%;
	font-weight: normal;
	font-style: normal;
	font-family: 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', Verdana, Osaka, sans-serif;
	text-align: center;
	line-height: 1.45;
	color: #333333;
	background: #FFFFFF url("../images/common/back_body.gif") repeat-x 0 0;
}


/* 基本フォント設定
----------------------------------------------- */
p {}
blockquote {}
ins {}
address { font: normal normal 100% /1.5; }
em { font-style: normal; font-weight: bold; }
strong { font-weight: bold; }
abbr { border-bottom: 1px dotted #cccccc; cursor: help; }
sup { line-height: 0.5; }
pre { word-wrap: break-word; white-space: pre-wrap; }
object {}


/* a 設定
----------------------------------------------- */
a:link,
a:visited {
	color: #003366;
	text-decoration: underline;
}
a:active,
a:hover,
a:focus {
	color: #003366;
	text-decoration: underline;
}


/* List 設定
----------------------------------------------- */
ul {
	list-style-type: none;
}


/* Table 設定
----------------------------------------------- */
table {
	margin: 0;
	padding: 0;
	border: none;
	width: 100%;
	font-size: 100%;
}
table td,
table th {
	margin: 0;
	padding: 0;
	border: none;
	text-align: left;
	vertical-align: top;
	font-weight: normal;
	word-wrap: break-word;
	word-break: break-all;
}
table thead th {
	text-align: center;
	vertical-align: middle;
	font-weight: bold;
}
table tbody th {
	text-align: left;
	vertical-align: middle;
}
caption {
	text-align: left;
}

/* form 設定
----------------------------------------------- */
fieldset {
	border: none;
}
legend {
	display: none;
}
button,
input,
label,
legend,
select,
textarea {
	vertical-align: middle;
	font-family: 'メイリオ', Meiryo, "ＭＳ Ｐゴシック", 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', Verdana, Osaka, sans-serif;
}



/* -----------------------------------------------

	Decoration Font
	装飾フォント

----------------------------------------------- */
/*- 注意文 -*/
.txAttention {
	color: #FF0000;
}
/*- 注釈系 -*/
.txAnnotation {
	line-height: 1.4;
	color: #777777;
}
/*- 装飾系 -*/
.txBold   { font-weight: bold !important; }
.txItalic { font-style: italic !important; }/* メイリオ非対応 */
.txNormal { font-weight: normal !important; }
.txXLarge { font-size: 147%; }
.txLarge  { font-size: 124%; }
.txMedium { font-size: 100%; }
.txSmall  { font-size: 85%; }
.txUnderLine { text-decoration: underline; }

.txOrange { color: #EE7600; }
.txPacificBlue { color: #0a98d3; }

.txLeft   { text-align: left !important; }
.txRight  { text-align: right !important; }
.txCenter { text-align: center !important; }

/*- 回り込み -*/
.fLeft { float: left; }
.fRight { float: right; }

/*- クリア -*/
.clBoth  { clear: both; }
.clLeft  { clear: left; }
.clRight { clear: right; }

/*- マージン -*/
.m0 { margin: 0 !important; }
.p0 { padding: 0 !important; }
.mb0em  { margin-bottom: 0 !important;}
.mb05em { margin-bottom: 0.5em !important; }
.mb1em  { margin-bottom: 1em !important; }
.pb0em  { padding-bottom: 0 !important;}
.pb05em { padding-bottom: 0.5em !important; }
.pb1em  { padding-bottom: 1em !important; }
/* 下マ－ジンの設定は無闇に増やさないでください */

/* -----------------------------------------------

	Browser Setting
	ブラウザ設定

----------------------------------------------- */

/* Browser	iPhoneの文字サイズ自動調整機能をキャンセル
----------------------------------------------- */
@media screen and (max-device-width: 480px) {
	body {
		-webkit-text-size-adjust: none;
	}
}

/* Browser	IE6のa:hover時の背景画像チラつき防止
----------------------------------------------- */
html {
	filter: expression(document.execCommand("BackgroundImageCache", false, true));
}

/* Browser	音声ブラウザ読み上げ対応
----------------------------------------------- */
.non_visual {
	display:none;
}


