@charset "UTF-8";

/*
********************************************************************************
■ YUI Fonts CSS
********************************************************************************
*/

/*
Copyright (c) 2010, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.com/yui/license.html
version: 3.3.0
build: 3167
*/
/**
 * Percents could work for IE, but for backCompat purposes, we are using keywords.
 * x-small is for IE6/7 quirks mode.
 */

/*
 フォントサイズの指定はYUI Fontsに基づき
 下記テーブルで指定します

 |px|%|
 |10|77|
 |11|85|
 |12|93|
 |13|100|
 |14|108|
 |15|116|
 |16|123.1|
 |17|131|
 |18|138.5|
 |19|146.5|
 |20|153.9|
 |21|161.6|
 |22|167|
 |23|174|
 |24|182|
 |25|189|
 |26|197|

 ex) 12px
 element {
        font-size: 93%;
 }
*/



/*
********************************************************************************
■ reset
********************************************************************************
*/

body, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
}

ul, li {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

dl, dt, dd {
	margin: 0;
	padding: 0;
}

table, caption, tr, th, td {
	margin: 0;
	padding: 0;
	text-align: left;
}

area {
	outline: none;
}


/*
********************************************************************************
■ regular style set
********************************************************************************
*/

body {
	font-family:'Lucida Grande', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, 'ＭＳ Ｐゴシック', sans-serif;
	line-height: 1.8;
	color: #333333;
	font-size: 13px;
	word-wrap: break-word;

	/* iOS4でのテキスト右の隙間対策 */
	letter-spacing: -0.001em;

	/* iOSでの文字サイズ自動調整の解除 */
	-webkit-text-size-adjust: 100%;
}

a {
	color: #333333;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

a:focus {
	outline: none;
}

.ul-disc li {
	list-style-type: disc;
	margin-left: 2em;
}

.ul-decimal li {
	list-style-type: decimal;
	margin-left: 2em;
}

.ul-attention {
	margin-left: 1em;
	text-indent: -1em;
}

.ul-horizontal li {
	float: left;
}

.dl-horizontal dt {
	float: left;
	clear: both;
}

.dl-regular dt {
	margin-bottom: 0.3em;
}

.dl-regular dd {
	margin-left: 1em;
	margin-bottom: 0.8em;
}

.table-border {
	border: 1px solid #333333;
}

.table-border th,
.table-border td {
	border: 1px solid #333333;
}

.position-left {
	text-align: left;
}

.position-right {
	text-align: right;
}

.position-center {
	text-align: center;
}

.text-underline {
	text-decoration: underline;
}

.text-strong {
	font-weight: bold;
}


/*********************************************************************************
■ hover opacity
********************************************************************************
*/

.hover-op:hover {
	opacity: 0.8;
	filter: alpha(opacity=80);
}

.ie6 .hover-op:hover,
.ie7 .hover-op:hover,
.ie8 .hover-op:hover {
	opacity: none;
	filter: none;
}


/*
********************************************************************************
■ clearfix
********************************************************************************
*/

.clearfix:after {content: ".";display: block;clear: both;height: 0;visibility: hidden;}
.clearfix {min-height: 1px;}
* html .clearfix {height: 1px; /*\*//*/height: auto;overflow: hidden;/**/}
