@charset "shift_jis";

/*
---------------------------------------------------------------------------
■css
---------------------------------------------------------------------------*/

body {
	color: #666666;	/*全体の文字色*/
	margin: 0px;
	padding: 0px;
	text-align: center;
	font: 75%/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
	background: #FFF url(../images/bg.gif) repeat-x center top;	/*全体の背景色、背景画像の読み込み＆X軸(横軸)にリピート＆上部に配置*/
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form{
	margin: 0px;
	padding: 0px;
}
ul{
	list-style-type: none;
}
img {
	border: none;
}
input,textarea,select {
	font-size: 1em;
}
form {
	margin: 0px;
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #666666;
}
a:hover {
	color: #DE638C;	/*マウスオン時の文字色*/
	text-decoration: none;
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	text-align: left;
	width: 975px;
	margin-right: auto;
	margin-left: auto;
}

/*ヘッダー（ロゴなどが入ったブロック）
---------------------------------------------------------------------------*/
#header {
	text-align: left;
	height: 85px;	/*ヘッダーの高さ*/
	width: 100%;
	position: relative;
	background: url(../images/header_bg.gif) no-repeat right center;	/*ヘッダー背景画像の読み込み＆右側に配置*/
}
/*ロゴ画像設定*/
#header #logo {
	position: absolute;
	left: 0px;	/*ヘッダーブロックに対して左から0pxの位置に配置*/
	top: 25px;	/*ヘッダーブロックに対して上から25pxの位置に配置*/
}
/*h1見出しタグ設定*/
#header h1 {
	font-size: 9px;	/*文字サイズ*/
	line-height: 30px;
	font-weight: normal;
	color: #999;		/*文字色*/
	position: absolute;
	left: 5px;	/*ヘッダーブロックに対して左から5pxの位置に配置*/
	top: 6px;	/*ヘッダーブロックに上して下から6pxの位置に配置*/
}
#header h1 a {
	text-decoration: none;
	color: #999;	/*文字色*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
ul#menu {
	height: 43px;
	padding-top: 3px;
}
ul#menu li {
	float: left;
	padding-right: 3px;
}
ul#menu li.last {
	padding-right: 0px;
}
ul#menu img {
	vertical-align: bottom;
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	clear: left;
	width: 100%;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: right;	/*メインコンテンツを右(right)に回り込み*/
	width: 720px;	/*メインコンテンツ幅*/
	padding: 20px 0px 30px;	/*左から、上、左右、下への余白*/
}
/*トップページのみの設定*/
#top #main {
	padding: 0px 0px 30px;	/*左から、上、左右、下への余白*/
}
/*h2タグ設定*/
#main h2 {
	font-size: 120%;	/*文字サイズ*/
	color: #FFFFFF;		/*文字色*/
	clear: both;
	width: 710px;
	line-height: 40px;
	height: 40px;
	background: url(../img/bg3.gif) no-repeat;	/*背景画像の読み込み、背景画像をリピートしない(no-repeat)*/
	padding-left: 10px;
	overflow: hidden;
}
/*段落タグの余白設定*/
#main p {
	padding: 0.5em 10px 1em;	/*左から、上、左右、下への余白*/
}
#main p.img {
	padding: 0.5em 0px 1em;	/*左から、上、左右、下への余白*/
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: left;	/*サブコンテンツを左(left)に回り込み*/
	width: 240px;	/*サブコンテンツ幅*/
	padding: 20px 0px 30px;	/*左から、上、左右、下への余白*/
}
/*h3タグ設定*/
#sub h3 {
	font-size: 100%;
	color: #FFFFFF;	/*文字色*/
	border-bottom: 4px solid #DE638C;	/*下部の線の幅、線種、色の設定*/
	background: #C5C5C5 url(../images/bg1.gif) repeat-x bottom;	/*背景色、背景画像の読み込み＆X軸(横軸)にリピート＆下部に配置*/
	padding: 5px;
}
/*段落タグの余白設定*/
#sub p {
	padding: 0.5em 0px 1em;	/*左から、上、左右、下への余白*/
}

/*サブメニュー
---------------------------------------------------------------------------*/
ul.submenu {
	margin-bottom: 1em;
}
ul.submenu li a {
	display: block;
	width: 230px;
	padding: 8px 4px;	/*左から、上下、左右への余白*/
	text-decoration: none;
	border-bottom: 1px solid #c9c9c9;	/*下側の線の幅、線種、色*/
	border-right: 1px solid #c9c9c9;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #c9c9c9;		/*左側の線の幅、線種、色*/
	color: #666666;	/*文字色*/
	background: #F2F2F2 url(../images/bg2.gif) repeat-x bottom;	/*背景色、背景画像の読み込み＆X軸にリピートする(repeat-x)＆下部に配置(bottom)*/
}
ul.submenu li a:hover {
	background-color: #ffffff;	/*マウスオン時の背景色*/
	color: #DE638C;	/*マウスオン時の文字色*/
	background-image: none;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
#main .new {
	overflow: auto;
	height: 150px;
	width: 710px;
	padding-left: 10px;
}
#main .new dl {
	clear: left;
	width: 690px;
	border-bottom: 1px solid #cccccc;	/*お知らせごとの境界線の幅、線種、色*/
	overflow: hidden;
}
#main .new dt {
	font-weight: bold;	/*日付を太字に*/
	float: left;
	width: 100px;
}
#main .new dd {
	float: left;
	width: 590px;
}
#main .new dd img {
	vertical-align: middle;
}
*html #main .new dd img {
	margin-top:0.5em;
	vertical-align: baseline;
}

/*フッター
---------------------------------------------------------------------------*/
#footer {
	clear: both;
	width: 100%;
	text-align: right;	/*文字を右寄せ*/
	padding-top: 10px;
	padding-bottom: 10px;
}
#footer a {
	text-decoration: none;
}

/*よくあるご質問ページ設定
---------------------------------------------------------------------------*/
/*Q（質問）*/
dl.faq dt {
	background: url(../images/faq_q.gif) no-repeat left top;	/*Qアイコンの読み込み*/
	padding-left: 25px;
	font-weight: bold;	/*文字を太字に*/
	color: #DE638C;		/*文字色*/
}
/*A（回答）*/
dl.faq dd {
	background: url(../images/faq_a.gif) no-repeat left top;	/*Aアイコンの読み込み*/
	padding-left: 25px;
	border-bottom: 1px solid #c9c9c9;	/*回答の下の線の幅、線種、色*/
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 720px;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #c9c9c9;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta1 td{
	width: 477px;
	padding: 10px;
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 150px;
	padding: 10px;
	text-align: center;
	background-color: #E5E5E5;	/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	color: #FFFFFF;			/*文字色*/
	background: #65b3d1;	/*背景色*/
}

/*テーブル（サブコンテンツ内の予定表）
---------------------------------------------------------------------------*/
.cal {
	width: 240px;
}
.cal, .cal td, .cal th{
	border: 1px solid #c9c9c9;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
	text-align: center;
}
/*曜日*/
.cal th{
	background-color: #E5E5E5;	/*背景色*/
}
.cal .sat{
	color: #09F;	/*「土」の文字色*/
}
.cal .sun{
	color: #C33;	/*「日」の文字色*/
}

/*その他
---------------------------------------------------------------------------*/
.look {
	background-color: #E9E9E9;
}
.mb1em {
	margin-bottom: 1em;
}
.pt0 {
	padding-top: 0 !important;
}
.mini {
	font-size: 10px;
}
.fr {
	float: right;
	padding-left: 10px;
	padding-bottom: 10px;
}
.fl {
	float: left;
	padding-right: 10px;
	padding-bottom: 10px;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
}
.color1 {
	color: #DE638C;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
