@charset "utf-8";

/* 文書全体 */
*{
	margin: 0px;
}

/* 全てのスクリーンサイズで適用する設定 */
/* body */
body{
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.max_width{
	max-width: 1000px;
	margin-right: auto;
	margin-left: auto;
}

/* header */
header{
	background-image : url(bg1.png),url(photo1.jpg); /* メイン画像（幅 2000px 高さ 800px）の指定箇所 1/2 */
	background-repeat: repeat-x, no-repeat;
	background-position: center, center;
	height: 320px;
	text-align: center;
	background-size: 120px 100px, 800px 320px;
	background-color:#eae9e9;
}
.ie8_under header{
	background-image : url(photo1.jpg); /* メイン画像（幅 2000px 高さ 800px）の指定箇所 2/2 */
	background-repeat: no-repeat;
	background-position: center;
	height: 800px;
	text-align: center;
	background-size: 2000px 800px;
}
#site_title{
	padding-top: 140px;
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #000000;
	text-shadow: 1px 1px 0px #FFFFFF;
	font-size: 40px;
}
#menu_button{
	position:fixed;
	right:0px;
}

/* nav */
#nav{
	position:fixed;
	top:0px;
	margin-left:-200px;
	width:200px;
}
#nav ul{
	padding: 0px;
	background-color:rgba(0,0,0,0.90);
}
#nav ul li{
	list-style-type: none;
}
#nav ul li a:link{
	padding-top: 15px;
	padding-right: 10px;
	padding-left: 11px;
	padding-bottom: 15px;
	border-bottom: 1px solid #424242;
	display:block;
	text-align:left;
	color: #FFFFFF;
	text-decoration: none;
	-webkit-transition: color 0.5s ease-in-out 0s;
	-moz-transition: color 0.5s ease-in-out 0s;
	-ms-transition: color 0.5s ease-in-out 0s;
	-o-transition: color 0.5s ease-in-out 0s;
	transition: color 0.5s ease-in-out 0s;
}
#nav ul li a:visited{
	color: #FFFFFF;
	text-decoration: none;
}
#nav ul li a:hover{
	color: #B9B9B9;
	text-decoration: none;
}

/* article */
.content_wrap1{
	background-image : url(bg2.png);
	padding-top:40px;
	padding-bottom:40px;
}
.content_wrap2{
	background-image : url(bg3.png);
	padding-top:40px;
	padding-bottom:40px;
}
.content{
	width: 100%;
}
.content a:link{
	color: #515151;
	-webkit-transition: color 0.5s ease-in-out 0s;
	-moz-transition: color 0.5s ease-in-out 0s;
	-ms-transition: color 0.5s ease-in-out 0s;
	-o-transition: color 0.5s ease-in-out 0s;
	transition: color 0.5s ease-in-out 0s;
}
.content a:visited{
	color: #464646;
}
.content a:hover{
	color: #B5B5B5;
}
.content h1{
	margin-left: 5px;
	margin-right: 5px;
	clear: both;
	color:#464646;
	font-size:170%;
}
.content h2{
	margin-left: 5px;
	margin-right: 5px;
	clear: both;
	color:#464646;
	font-size:140%;
}
.content p{
	margin-top: 10px;
	margin-right: 5px;
	margin-bottom: 10px;
	margin-left: 5px;
}
.img_frame{
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	border: 1px solid #C9C9C9;
	background-color:#F7F7F7;
	padding: 4px;
	max-width: 100%;
	height: auto;
	vertical-align:bottom;
}
img{
	border-style: none;
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

.column_block {
}
.column2_1 {
}
.column2_2 {
}
.column2_1_box{
	padding-bottom:15px;
}
.column2_2_box{
	padding-bottom:15px;
}

.column3_1 {
}
.column3_2 {
}
.column3_3 {
}
.column3_1_box{
	padding-bottom:15px;
}
.column3_2_box{
	padding-bottom:15px;
}
.column3_3_box{
	padding-bottom:15px;
}

.color1{
	color:#FF0000; /* 赤色 */
}
.color2{
	color:#FF6600; /* 橙色 */
}
.color3{
	color:#9900CC; /* 紫色 */
}
.supplement{
	font-size:90%;
	color:#6C6C6C; /* 補足 */
}

/* footer */
.footer_wrap{
	background-image : url(bg4.png);
	padding-top:60px;
	padding-bottom:60px;
}
footer{
	color: #FFFFFF;
	text-align:center;
}
footer p{
	margin-top: 10px;
	margin-right: 5px;
	margin-bottom: 10px;
	margin-left: 5px;
}
footer a:link{
	color: #FFFFFF;
	text-decoration: none;
	-webkit-transition: color 0.5s ease-in-out 0s;
	-moz-transition: color 0.5s ease-in-out 0s;
	-ms-transition: color 0.5s ease-in-out 0s;
	-o-transition: color 0.5s ease-in-out 0s;
	transition: color 0.5s ease-in-out 0s;
}
footer a:visited{
	color: #FFFFFF;
	text-decoration: none;
}
footer a:hover{
	color: #B9B9B9;
	text-decoration: none;
}



/* スクリーンサイズ 幅 600px 以上で適用する設定・上から継承したスタイルを上書き */
@media only screen and (min-width: 600px) {

/* header */
header{
	height: 600px;
	background-size: 300px 250px, 1600px 640px;
}
#site_title{
	padding-top: 240px;
	font-size: 55px;
	text-shadow: 2px 1px 0px #FFFFFF;
}
#menu_button{
	display:none;
}

/* nav */
#nav{
	position: fixed;
	top: 300px;
	left: 0px;
	margin-left: 0px;
	width: 100%;
	padding-top: 30px;
	padding-bottom: 30px;
}
#nav ul{
	background-color:rgba(0,0,0,0);
}
#nav ul li{
	display:inline-block;
}
#nav ul li a:link{
	color: #000000;
	text-align: center;
	padding: 10px;
	border-bottom: 0px solid #424242;
	background-image : url(bg5.png);
	background-repeat: repeat-x;
	border-radius: 5px;
	-webkit-box-shadow: 1px 1px 3px #848484;
	box-shadow: 1px 1px 3px #848484;
	-webkit-transition: background-color 0.5s ease-in-out 0s;
	-moz-transition: background-color 0.5s ease-in-out 0s;
	-ms-transition: background-color 0.5s ease-in-out 0s;
	-o-transition: background-color 0.5s ease-in-out 0s;
	transition: background-color 0.5s ease-in-out 0s;
}
#nav ul li a:visited{
	color: #000000;
}
#nav ul li a:hover{
	text-decoration: none;
	background-color: rgba(255,255,255,1.00);
}

.ie6 #nav ul li{
	display: inline;
	zoom: 1;
	padding-top: 10px;
	padding-right: 10px;
}
.ie7 #nav ul li{
	display: inline;
	zoom: 1;
}

/* article */
.content_wrap1{
	padding-top:60px;
	padding-bottom:60px;
}
.content_wrap2{
	padding-top:60px;
	padding-bottom:60px;
}

.column_block{
	display:block;
	clear:both;
	height:auto;
	overflow:hidden;
	margin-bottom:20px;
}
.column2_1{
	width: 50%;
	float:left;
}
.column2_2{
	width: 50%;
	display:inline-block;
}
.column2_1_box{
	padding-bottom: 0px;
	padding-right: 30px;
}
.column2_2_box{
	padding-bottom: 0px;
	padding-left: 30px;
}

.column3_1{
	width: 33.3%;
	float:left;
}
.column3_2{
	width: 33.3%;
	float:left;
}
.column3_3{
	width: 33.4%;
	display:inline-block;
}
.column3_1_box{
	padding-bottom: 0px;
	padding-right: 30px;
}
.column3_2_box{
	padding-bottom: 0px;
	padding-left: 15px;
	padding-right: 15px;
}
.column3_3_box{
	padding-bottom: 0px;
	padding-left: 30px;
}

.ie6 .column_block{
	margin-bottom: 0px;
}

.ie6 .column2_1{
	width: 100%;
}
.ie6 .column2_2{
	width: 100%;
}
.ie6 .column2_1_box{
	padding-right: 0px;
	padding-bottom: 15px;
}
.ie6 .column2_2_box{
	padding-left: 0px;
	padding-bottom: 15px;
}

.ie6 .column3_1{
	width: 100%;
}
.ie6 .column3_2{
	width: 100%;
}
.ie6 .column3_3{
	width: 100%;
}
.ie6 .column3_1_box{
	padding-right: 0px;
	padding-bottom: 15px;
}
.ie6 .column3_2_box{
	padding-left: 0px;
	padding-right: 0px;
	padding-bottom: 15px;
}
.ie6 .column3_3_box{
	padding-left: 0px;
	padding-bottom: 15px;
}

/* footer */
.footer_wrap{
	padding-top:70px;
	padding-bottom:70px;
}

}



/* スクリーンサイズ 幅 2000px 以上で適用する設定・上から継承したスタイルを上書き */
@media only screen and (min-width: 2000px) {

header{
	height: 800px;
	background-size: 300px 250px, 2000px 800px;
}
#site_title{
	padding-top: 340px;
}

/* nav */
#nav{
	top: 400px;
}

}