@import "basic.css";

* {
 line-height: 1.5;
 font-family:"ＭＳ Ｐゴシック","平成角ゴシック",sans-serif;
}

strong{font-weight:bold;}

/*リンクの色（全体）*/
a { color: #0000ff; text-decoration: underline; }
a:hover { color: #ff0000; text-decoration: none;}

hr{
 color:#CCCCCC;
 margin: 10px 20px;
}

.none{
font-weight:normal;
}


/*【文字】*/

/*太字*/
.bold{ font-weight: bold;}

/*赤文字*/
.red{ color:#f00;}

/*大文字１*/
.large{ font-size: large;}

/*大文字２*/
.x-large{ font-size: x-large;}

/*大文字３*/
.xx-large{ font-size: xx-large;}

/*黄色マーカー*/
.y-marker{ background:#ff0;}

/*下線*/
.underline{ text-decoration:underline;}

/*文字左寄せ*/
.text-left{ text-align:left;}

/*文字中央*/
.text-center{ text-align:center;}

/*文字右寄せ*/
.text-right{ text-align:right;}

/*画像左＆文字右*/
.image-left{
 float:left;
 margin:0 20px 0 0;
}

/*画像右＆文字左*/
.image-right{
 float:right;
 margin:0 0 0 20px;
}

/*回り込み解除*/
.clear_both{ clear:both;}


/*【全体レイアウト】*/

#container{
 width:820px;
 margin-left: auto;
 margin-right: auto;
 background: url(../img/background.gif);
}


/*【ヘッダー】*/

#header{
 width:810px;
 margin:0 auto;
}

#header-image{
 height: 200px;
 background: url(../img/header-image.jpg) no-repeat;
 margin-bottom:10px;
 border-top: #d3d3d3 solid 2px;
 border-bottom: #d3d3d3 solid 2px;
}

h1{
 font-size:260%;
 font-weight:bold;
 margin:0 48px;
 padding:33px 0;
}

h1 a{
 color: #cb0167;
 text-decoration: none;
}


/*【メイン】*/

h2{
 height: 35px;
 background: url(../img/h2_check.gif) no-repeat left;
 line-height: 35px;
 font-size: 136%;
 font-weight:bold;
 margin:10px 60px;
 padding-left:30px;
 border-bottom: 1px dotted #cd0067;
 clear:both;
}

#main{
 width:780px;
 padding: 0px 20px;
}

.contents{
 margin:10px 40px;
 padding-bottom: 10px;
}

.contents p{
	padding-top: 5px;
	padding-bottom: 5px;
	/*background-image: url(../img/note_line.gif);*/
	margin-right: 30px;
	margin-left: 30px;
	line-height: 20px;
	padding-right: 10px;
	padding-left: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
	font-size:14px;
}


/*【フッター】*/

#footer{
 text-align: center;
 clear: both;
 overflow:hidden;
}

#footer a{
 text-decoration: none;
}

address {
 font-style: normal;
 color: #999999;
 text-align: center;
 padding: 5px 0;
 display: block;
 background: #990033;
 font-size: 92%;
 margin: 30px 5px 0;
 border-left: #a1a1a1 solid 1px;
 border-right: #a1a1a1 solid 1px;
}

/*リンク*/

#footer-link{
 margin: 0 15px 15px;
 padding:15px 0;
 font-size:100%;
 border-top:1px #ccc solid;
 clear:both;
}

#footer-link ul{
 margin:0 35px;
}

#footer-link a{color:#333;text-decoration:underline;}
#footer-link a:hover{color:#f00;text-decoration:none;}


