@charset "utf-8";

/*(フォントに関する記述/ブラウザ間の差異再定義)

■目次：

・リンクカラーの設定
・テキストカラーの設定
・テキストサイズの設定
・テキストの配置
・リンク時装飾
・表組
・フォーム
・装飾box

*/

/*======================================

	YUI Fonts

=======================================*/



/**
 * Percents could work for IE, but for backCompat purposes, we are using keywords.
 * x-small is for IE6/7 quirks mode.
 * 
 */
body {font:13px arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;}
table {font-size:inherit;font:100%;}

/**
 * 99% for safari; 100% is too large
 */
select, input, textarea {font:99% arial,helvetica,clean,sans-serif;}

/**
 * Bump up !IE to get to 13px equivalent
 */
pre, code {font:115% monospace;*font-size:100%;}

/**
 * Default line-height based on font-size rather than "computed-value"
 * see: http://www.w3.org/TR/CSS21/visudet.html#line-height
 */
body * {}



/*=========================================

	リンクカラーの設定

===========================================*/

a:link {
	color: #1111FF;
}

a:visited {
	color: #2266FF;
}

a:hover {
	color: #2222FF;
}

a:active {
	color: #FF2222;
}

/*=========================================

	テキストカラーの設定

===========================================*/

.txt-attention {
	color: #FF0000;
}

.txt-attention2 {
	color: #F55555;
	font-weight: bold;
}

.txt-attention3 {
	color: #F55555;
	font-size: 18px;
	font-weight: bold;
}


/*=========================================

	テキストサイズの設定

===========================================*/

.txt-strong {
	font-size: 1.2em;
}

.txt-small {
	font-size: 0.85em;
}

/*=========================================

	テキストの配置

===========================================*/

.txt-center {
	text-align: center;
}

.txt-right {
	text-align: right;
}



/*=========================================
=============

	Module

=============
===========================================*/
/*=========================================

	Visible

===========================================*/

.hidden{
  visibility : hidden;
  font-size : 0.0001%;
  font-size : 0%;
  position : absolute;
  top : -10px;
  margin:0px;
  padding:0px;
  border:none 0px;
}
/*=========================================

	layout

===========================================*/
.to_top{
  margin-left:80px;
}
.float_right{
  float:right;
  margin:0px;
  padding:0px;
}
.float_left{
  float:left;
}
.center{
  text-align:center;
}
.clear{
  clear:both;
}
.clear_left{
  clear: left;
}
.clear_right{
  clear: right;
}
.up{
  vertical-align : top;
}
.space{
  visibility : hidden;
  height: 25px;
}
.valign_top{
  vertical-align: top;
}
.valign_bottom{
  vertical-align: bottom;
}
.valign_middle{
  vertical-align: middle;
}
.align_right{
  text-align:right;
}
.align_left{
	text-align:left;
	float: left;
}
.align_center{
  text-align:center;
}
/*=========================================

	Color

===========================================*/

.bg_green {
  background-color: #E9F5EE;
}
.bg_red {
  background-color:#FDD0D0;
}
.bg_blue {
  background-color:#B8DAE4;
}
.bg_gray {
  background-color: #eeeeee;
}
.bg_white {
  background-color:#FFFFFF;
}
.color_red1{
  color: #FF3333;
}
.color_red2{
  color: #FF0066;
}
.color_red3{
  color: #CC0000;
}
.color_orange1{
  color: #FF6600;
}
.color_orange2{
  color: #FF9933;
}
.color_orange3{
  color: #CC3300;
}
.color_yellow1{
  color: #FFCC00;
}
.color_yellow2{
  color: #FFFF33;
}
.color_yellow3{
  color: #CC9900;
}
.color_green1{
  color: #33CC00;
}
.color_green2{
  color: #33AA88;
}
.color_green3{
  color: #339900;
}
.color_blue1{
  color: #0066CC;
}
.color_blue2{
  color: #00CCFF;
}
.color_blue3{
  color: #0033CC;
}
.color_purple1{
  color: #CC33FF;
}
.color_purple2{
  color: #FF99FF;
}
.color_purple3{
  color: #9900CC;
}
.color_mono1{
  color: #FFFFFF;
}
.color_mono2{
  color: #999999;
}
.color_mono3{
  color: #666666;
}
/*=========================================

	FontSize

===========================================*/

.font_s1{
  font-size:85%;
}
.font_s2{
  font-size:0.7em;
}
.font_s3{
  font-size:0.6em;
}
.font_8pt{
  font-size:8pt;
}
.font_l1{
  font-size:1.2em;
}
.font_l2{
  font-size:1.4em;
}
.font_l3{
  font-size:1.6em;
}
.font_l4{
  font-size:1.8em;
}
.font_l5{
  font-size:2em;
}
.font_flex{
  font-size:inherit;
}

/*=========================================

	FontWeight

===========================================*/

.font_bold{
	font-weight:bold;
}

