@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(images/bg1.png);
	height:200px;
	text-align:center;
}
#site_title {
	padding-top: 80px;
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #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-image: url(images/bg5.png);
}
#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(images/bg2.png);
	padding-top:40px;
	padding-bottom:40px;
}
.content_wrap2 {
	background-image:url(images/bg3.png);
	padding-top:40px;
	padding-bottom:40px;
}
.content {
	display: inline-block;
	width: 100%;
	clear: both;
}
.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;
	clear: both;
	color:#464646;
	font-size:170%;
}
.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;
}
.color1 {
	color:#FF0000; /* 赤色 */
}
.color2 {
	color:#FF6600; /* 橙色 */
}
.color3 {
	color:#9900CC; /* 紫色 */
}
.supplement {
	font-size:90%;
	color:#6C6C6C; /* 補足 */
}

/* footer */
.footer_wrap {
	background-image:url(images/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:250px;
}
#site_title {
	padding-top:85px;
}
#menu_button {
	display:none;
}

/* nav */
#nav {
	position:fixed;
	top:140px;
	left:0px;
	margin-left:0px;
	width:100%;
	background-image:url(images/bg6.png);
	padding-top:15px;
	padding-bottom:15px;
}
#nav ul {
	background-image:none;
}
#nav ul li {
	display:inline-block;
}
#nav ul li a:link {
	text-align:center;
	padding-top: 0px;
	padding-right: 10px;
	padding-left: 0px;
	padding-bottom: 0px;
	border-bottom: 0px solid #424242;
}

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

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

}