

@charset "UTF-8";
/* CSS Document */

/*

	Aflac CSS	
	Base Setting		
	
	* File Organization:
		Reset CSS
		Default Elements
			body
			body.ifix(iphone文字サイズ自動調整機能をキャンセル)
			fontサイズ
			a リンク
		.clearfix
*/


/* --------------------------------------------------------------------------------------

	Reset CSS
	スタイルリセット

--------------------------------------------------------------------------------------- */
body,div,
h1,h2,h3,h4,h5,h6,
dl,dt,dd,ul,ol,li,
p,blockquote,pre,cite,code,caption,
form,fieldset,legend,input,textarea,select,option,label{
	margin: 0px;
	padding: 0px;	
}

img,table{
	border: none;
}

img{
	vertical-align: bottom;
}

ol,ul{
	list-style: none;
}

address,em,cite{
	font-style: normal;
}

fieldset{
	border: none;
}
input,textarea,select{
	font-size: 100%;
}

h1,h2,h3,h4,h5,h6{
	font-size: 100%;
	font-weight: normal;
}


/* -----------------------------------------------

	Default Elements
	基本要素

----------------------------------------------- */


/* Body 設定
----------------------------------------------- */
body{
	color: #333333;
	line-height: 1.5;
	background:#009cde;
	font-family: sans-serif, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3";
	font-size: 14px;
	-webkit-text-size-adjust:none;
}


/* fontサイズ 指定
----------------------------------------------- */
.text8 { font-size:58%; }
.text9 { font-size:64%; }
.text10 { font-size:72%; }
.text11 { font-size:79%; }
.text12 { font-size:86%; }
.text13 { font-size:93%; }
.text14 { font-size:100%; }
.text15 { font-size:108%; }
.text16 { font-size:115%; }
.text17 { font-size:122%; }
.text18 { font-size:129%; }
.text19 { font-size:136%; }
.text20 { font-size:143%; }
.text21 { font-size:150%; }
.text22 { font-size:158%; }
.text23 { font-size:165%; }
.text24 { font-size:172%; }
.text25 { font-size:179%; }
.text26 { font-size:186%; }





/*	a リンク 設定
----------------------------------------------- */
a:link{
	outline: none;
	color:#003366;
	text-decoration:underline;
}
a:visited{
	color:#003366;
	text-decoration:underline;
}
a:active{
	color:#003366;
	text-decoration:underline;
}
a:hover{
	color:#003366;
	text-decoration:underline;
}
a:focus{
	color:#003366;
	text-decoration:underline;
}

/* --------------------------------------------------------------------------------------

	.clearFix
 
--------------------------------------------------------------------------------------- */
.clearfix:after{
	 content:".";
	 display:block;
	 height:0;
	 clear:both;
	 visibility:hidden;
}



