/*
iradeza style.css
url:http://iradeza.com/
*/

@charset "UTF-8" ;

/*全体の設定
---------------------------------------*/

*{
	margin:0;
	padding:0;
}

html{
	background:#fff;
}

body{
	font: 12px/18px "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",Helvetica,Arial,Sans-Serif;
	color:#000;
}

img{
	border:none;
}

/*細部（見出しとか）
---------------------------------------*/
h1{
		width : 600px;
		font-size : 16px;
		font-weight : bold;
		border-bottom : dashed 1px #000000;
		margin-bottom : 20px;
		line-height : 30px;
}

h2{
		font-size : 12px;
		font-weight : bold;
		color : #000000;
		line-height : 25px;
		padding-left : 8px;
}

h3{
		font-size : 12px;
		color : #000000;
		border-bottom : solid 2px #c0c0c0;
		padding : 7px 0 5px ;
}

h4{
		font-size : 12px;
		color : #000000;
		line-height : 25px;
		padding-left : 8px;
}

address{
	color:#ccc;
	font-size:80%;
	text-decoration:none;
}

/*ページレイアウト
------------------------------------------*/

#container{
	width:100%;
	margin:0 auto;
	overflow:hidden;
}

#header{
	width:100%;
	height:40px;
	padding:10px 40px;
	background:#fff;
	position:fixed;
	z-index:0;
	border-bottom:1px solid #000000;
}

#header>img{
	padding-left:30px;
}

#copy{
	float:right;
	width:250px;
	margin-right:30px;
	background:none;
	color:#999;
}

#main{
	width:100%;
	margin-top:40px;
	overflow:hidden;
}

#navi{
	float:left;
	width:16%;
	height:100%;
	position:fixed;
	margin-top:30px;
	padding:30px 12px;
	border-right:1px dashed #999;
	text-align:right;
	line-height:2em;
	font-size: 18px;
	font-family: 'PT Sans Caption', sans-serif;
	background-color:#ffffff;
}

#navi ul{
	list-style-type:none;
	position:relative;
	margin-bottom:180px;
	padding : 0;
	height : 30px;
	background : none;
}

#navi ul li a{
	text-decoration: none;
	color: #000;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}

#navi ul li a:hover {
	color: #ccc;
}


#navi>p{
	margin-top:100px;
}

#content{
	float:right;
	width:78%;
	height:100%;
	margin-left:22%;
	padding:30px 40px;
	border:none;
	text-align:left;
}

#topics{
	padding:20px;
}

#topics table{
		border: 0;
		border-collapse: separate;
		border-spacing: 20px 5px;
}

[EOF]