@charset "UTF-8";

@import url(base.css);
@import url(textsettings.css);


/*--------------------------------------------------------------


textsetting.css
各ブラウザでのフォントサイズの違いをなくすcss

base.css
bodyの余白や、h1h2...の余白、clearfixなど、

【common.css】
上記cssのimportや、レイアウト（大枠）を記載したcss




--------------------------------------------------------------*/


/*  フォントサイズ早見表
	以下のようにサイズを指定することで各ブラウザでのフォントサイズを揃えることが出来ます。
	左記のパーセントで指定してください。

	77% = 10px	|	122% = 16px	|	167% = 22px	
	85% = 11px	|	129% = 17px	|	174% = 23px 
	92% = 12px	|	136% = 18px	|	182% = 24px 
	100% = 13px	|	144% = 19px	|	189% = 25px 
	107% = 14px	|	152% = 20px	|	197% = 26px 
	114% = 15px	|	159% = 21px	| 	

*/

/* ------------------------------------------------------------ */
/* リンク色 */
/* ------------------------------------------------------------ */

a:link{
	color:#555;
	text-decoration:none;
}
a:visited{
	color:#555;
	text-decoration:none;
}
a:hover{
	color:#6CBF65;
	text-decoration:underline;
}
a:active{
	color:#6CBF65;
	text-decoration:underline;
}




/* ------------------------------------------------------------ */
/* 基本、レイアウト指定 */
/* ------------------------------------------------------------ */
body{
	}


#container{
	width:900px;
	margin:0 auto;
	position:relative;
	color:#555;
	clear:both;
}


/* 右レイアウト、左レイアウト */

#main-area{
	width:650px;
	float:left;
}

#submenu-area{
	width:220px;
	float:right;
}

/* コンテンツの枠 */
.section{
	width:650px;
}

#comment{
	background:#E3E3E3;
	border-bottom:1px solid #CCCCCC;
	margin:0;
	padding:0;
	}
	
#comment p{
	width:900px;
	margin:0 auto;
	text-align:left;
	padding:0;
	}
	
.line{
	margin:0 0 5px 0;
	padding:0;
	}
	
.line a:link,
.line a:visited{
	color:#6CBF65;
	text-decoration:underline;
}
.line a:hover,
.line a:active{
	color:#006600;
	text-decoration:underline;
}

.care{
	font-size:100%;
	margin:0;
	padding:5px 0 0 0 !important;
	}

.care span{
	color:#CA0F0F;
	}

/* ------------------------------------------------------------ */
/* ヘッダー */
/* ------------------------------------------------------------ */
#header-area{
	position:relative;
	width:900px;
	margin:0 auto;
	position:relative;
	color:#555;
}

#identity{
	padding:25px 0 25px 0;
}

#identity a:hover img{
	opacity		: 0.7;
	filter		: alpha(opacity=70);
}

#header-area .header-utility{
	float:right;
	margin:5px 10px 0 0;
	font-size:77%;
}

#header-area .header-utility li{
	float:left;
	margin:0px 0 0 10px;
	background:url(../img/common/ic_green.gif) left center no-repeat;
	padding:0 0 0 15px;
}

#header-area .header-link{
	clear:both;
	float:right;
	top:0;
	margin:14px 0 0 0;
	padding:0;
}

#header-area .header-link a:hover img{
	opacity		: 0.7;
	filter		: alpha(opacity=70);
}
	
#header-area .header-link li{
	float:right;
	margin:0 0 0 10px;
}

.globalmenu{
	background:url(../img/common/bg_menu.jpg) left top repeat-x;
	margin:0 0 20px 0;
	padding:0;
}

.globalmenu ul{
	width:900px;
	margin:0 auto;
	}

.globalmenu li{
	float:left;
	line-height:1;
	text-align:center;
}

/* ------------------------------------------------------------ */
/* 第2階層 */
/* ------------------------------------------------------------ */

#harder_img{
	margin:0 0 20px 0;
	}

/* ------------------------------------------------------------ */
/* コンテンツ大枠 */
/* ------------------------------------------------------------ */

#contents-area{

}

#contents-area .sitepath{
	font-size:77%;
	padding:5px;
	margin:0;
}

#contents-area .sitepath a:link,
#contents-area .sitepath a:visited{
	color:#333;
}
#contents-area .sitepath a:hover,
#contents-area .sitepath a:active{
	color:#666;
}



/* ------------------------------------------------------------ */
/* サイドメニュー */
/* ------------------------------------------------------------ */

#submenu-area{
}

#submenu-area .submenu{
	margin:0 0 20px 0;
	padding:0;
}

#submenu-area .sub_top{
	background:url(../img/common/bg_sidetop.gif) top center no-repeat;
	padding:7px 0 0 0;
	}
	
#submenu-area .sub_bottom{
	background:url(../img/common/bg_sidebottom.gif) bottom center no-repeat;
	padding:0px 0 7px 0;
	}

#submenu-area .submenu .profile{
	background:url(../img/common/bg_sidecenter.gif) center top repeat-y;
	margin:0;
	padding:0 10px 7px 10px;
}

#submenu-area .submenu .profile h2{
	background:url(../img/common/subborder.jpg) bottom center no-repeat;
	margin:0;
	padding:0 0 5px 0;
	font-size:92%;
	letter-spacing:-2px;
	text-align:center;
}

#submenu-area .submenu .profile p{
	margin:0;
	padding:10px 0 0px 0;
	font-size:80%;
	line-height:20px;
	width:200px;
}

#submenu-area .submenu .profile p span{
	letter-spacing:-1px;
}

#submenu-area .submenu a:hover img{
	opacity		: 0.7;
	filter		: alpha(opacity=70);
}

#submenu-area .submenu li{
	display:block;
	width:220px;
	height:80px;
	line-height:39px;
	padding:0 0 15px 0;
	color:#333;
}

.sidebottom{
	margin:0 0 0 0;
	padding:0;
	}

.submenu-title{
	margin:0;
}

/* ------------------------------------------------------------ */
/* 第2階層 */
/* ------------------------------------------------------------ */

.side_bt{
	margin:0 0 20px 0;
	padding:0;
	}

.side_bt .submenu-title{
	margin:0;
	padding:0;
	}
	
.side_bt ul{
	margin:0;
	padding:0;
	}
	
.side_bt li{
	margin:0;
	padding:0;
	display:inline;
	}
	
/* ------------------------------------------------------------ */
/* メイン */
/* ------------------------------------------------------------ */
#main-area{
	padding:0 0 0px 0;
	font-size:85%;
}

#main-area .pagetitle{
	margin:0 0 30px 0;
}

.reason{
	font-weight:bold;
	font-size:100%;
	color:#CA0F0F;
	padding:0;
	margin:0;
	}

.subtitle{
	background:url(../img/common/bg_h3.jpg) bottom left no-repeat;
	padding:0 0 5px 0;
	margin:0 0 10px 0;
	font-size:129%;
	}
	
.subicon{
	background:url(../img/common/ic_h3.gif) center left no-repeat;
	padding:0 0 0 30px;
	}
	
.section{
	margin:0 auto 20px auto;
	padding:0 0 0px 0;
	clear:both;
}
	
.section h3 span{
	color:#3CA835;
	padding:0 5px 0 0;
}
	
.main_top{
	background:url(../img/common/bg_maintop.gif) top center no-repeat;
	padding:7px 0 0 0;
	width:650px;
	}
	
.main_bottom{
	background:url(../img/common/bg_mainbottom.gif) bottom center no-repeat;
	padding:0px 0 7px 0;
	}
	
.main{
	background:url(../img/common/bg_maincenter.gif) top center repeat-y;
	margin:0;
	padding:7px 15px 0px 15px;
	overflow:hidden;
	overflow:hidden;
	width:620px;
	}
	
.inquiry{
	margin:0;
	padding:0;
	}

	
.inquiry li{
	display:inline;
	margin:0 10px 0 0;
	}
	
.inquiry h3{
	background:url(../img/common/ic_green.gif) left center no-repeat;
	padding:0 0 0 15px !important;
	}
	
.inquiry .tel{
	background:url(../img/common/ic_tel.gif) left center no-repeat    !important;
	font-size:189%;
	font-weight:bold;
	padding:0 0 0 45px;
	color:#6CBF65;
	margin:0 0 0 10px;
	}
	
.inquiry .fax{
	background:url(../img/common/ic_fax.gif) left center no-repeat;
	font-size:189%;
	font-weight:bold;
	padding:5px 0 0 45px;
	color:#6CBF65;
	margin:0 0px 0 10px;
	}
	
.inquiry a{
	background:url(../img/common/ic_list.gif) left center no-repeat;
	padding:0 0 0 15px;
	margin:0 0 0 20px;
	font-size:13px;
	}
	
.inquiry a:link,
.inquiry a:visited{
	color:#6CBF65;
	text-decoration:underline;
}
.inquiry a:hover,
.inquiry a:active{
	color:#9ED69A;
	text-decoration:underline;
}

.pagetop{
	width:650px;
	margin:10px 0 20px 0;
	text-align:right;
	font-family: 'Verdana',"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
	font-size:85%;
	clear:both;
}

.pagetop span{
	color:#3CA835;
	}
	


/* ------------------------------------------------------------ */
/* フッター */
/* ------------------------------------------------------------ */

#footer-area{
	border-top:2px solid #3BAA32;
	margin:0px auto 20px auto;
	font-size:82%;
	}
	
#footer-area a:hover img{
	opacity		: 0.7;
	filter		: alpha(opacity=70);
}

.footer_menu{
	width:1000px;
	margin:0 auto;
	overflow:hidden;
	padding:10px 0 10px 100px;
	}
	
.footer_menu .icon{
	padding:0 10px 0 0;
	float:left;
	}
	
.footer_profile{
	border-right:1px dashed #888;
	margin:0 5px 0 0;
	padding:8px 5px 8px 0;
	line-height:15px;
	}
	
.footer_menu .footerlist{
	font-size:100%;
	margin:10px 0 0 0;
	padding:0 0px 0 0;
	}
	
.footer_menu ul{
	float:left;
	}
	
.footer_menu .footerlist li{
	margin:0;
	padding:0;
	}
	
.copyright{
	clear:both;
	text-align:center;
	background:url(../img/common/bg_copy.jpg) left top repeat-x #D9F2D7;
	margin:0;
	padding:0
	}


/* ------------------------------------------------------------ */
/* 文字サイズ変更ボタン */
/* ------------------------------------------------------------ */

.letter_size {
	width:187px;
	height:27px;
	background:url(../img/letter-size/ti_textsize.jpg) no-repeat;
	float:right;
	overflow:hidden;
}

.letter_size ul {
	padding:0px 0px 0px 93px;
}

.no_js ul {
	padding:0px;
}

.no_js li {
	float:left;
	margin-left:0px;
}

.no_js ul li img {
	padding:0px;
	display:block;
}

#fontNavi img {
	display:inline;
	padding-left:0px;
}


/* ------------------------------------------------------------ */
/* デザインパーツ */
/* ------------------------------------------------------------ */

.section h3{
	margin:0 0 5px 0;
	font-size:122%;
	color:#555;
}

.dotto_top{
	border-top:1px dotted #CCC;
}
.dotto_bottom{
	border-bottom:1px dotted #CCC;
}


.section table{
	border-collapse: collapse;
}

img.left {
	float: left;
	margin: 0 12px 5px 0;
}

img.right {
	float: right;
	margin: 0 0 5px 12px;
}
