@charset "utf-8";

/*=================================
  レイアウト
=================================*/
*{
	margin: 0;
	padding: 0;
	list-style: none;
	text-decoration: none;
}

body{
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}

div#wrapper{
	display: flex;
}

/*=================================
  google fontsを使用したCSS
=================================*/
.dotgothic16-regular {
  font-family: "DotGothic16", sans-serif;
  font-weight: 800;
  font-style: normal;
}

/*=================================
  ヘッダー
=================================*/
div#header_html{
	width: 700px;
	height: 100%;
	background-color: rgba(255,255,255,0.7);
	border-right: 5px solid #A64005;
	box-shadow: 0px 1px 3px rgba(0,0,0,0.2);
	padding: 15px 0;
	line-height: 1.3;
	text-align: center;
	position: fixed;
	top: 0;
	left: 0;
}

h1.dotgothic16-regular{
	font-size: 50px;
	margin: 0 auto;
}

nav ul{
	margin-top: 50px;
}

div#header_html nav ul li{
	border-top: 1px solid #A64005;
	padding: 20px 0;
}

div#header_html nav ul li:first-child{
	border-top: none;
}

nav ul li a{
	font-size: 24px;
	font-weight: bold;
	color: #000;
}

div#header_html nav ul li a:hover{
	color: #D9A60D;
}

/*=================================
  コンテンツ
=================================*/
div#container_html{
	width: 100%;
	margin-left: 705px;
	background: url("images/html_bg.jpg");
}

.h2_title_html{
	margin-bottom: 20px;
	border-bottom: 1px solid #A64005;
	line-height: 1.5;
}

h2{
	font-size: 36px;
}

article{
	background-color: rgba(255,255,255,0.7);
	border-radius: 15px;
	margin: 20px;
	padding: 20px;
}

article dl dt{
	font-size: 24px;
	font-weight: bold;
	margin-top: 15px;
}

article dl dd{
	font-size: 18px;
	line-height: 1.3;
	margin-top: 5px;
}

/*=================================
  フッター
=================================*/
footer{
	width: 100%;
	height: 150px;
	font-size: 20px;
	display: flex;
	justify-content: center;
	background-color: #fff;
}

footer ul li{
	margin-top: 10px;
}

footer ul li a{
	background: url("images/top_icon.png") no-repeat;
	display: block;
	line-height: 90px;
	font-weight: bold;
	color: #fff;
	padding: 0px 20px 40px 10px;
	margin-right: 220px;
	margin-left: 10px;
}

ul#footer_html li a:hover{
	color: #D9A60D;
}

footer p{
	line-height: 150px;
}

/*=================================
  ここからCSSチートシート
=================================*/

div#header_css{
	width: 700px;
	height: 100%;
	background-color: rgba(255,255,255,0.7);
	border-right: 5px solid #D9A60D;
	box-shadow: 0px 1px 3px rgba(0,0,0,0.2);
	padding: 15px 0;
	line-height: 1.3;
	text-align: center;
	position: fixed;
	top: 0;
	left: 0;
}

div#header_css nav ul li{
	border-top: 1px solid #D9A60D;
	padding: 20px 0;
}

div#header_css nav ul li:first-child{
	border-top: none;
}

div#header_css nav ul li a:hover{
	color: #A64005;
}

div#container_css{
	width: 100%;
	margin-left: 705px;
	background: url("images/css_bg.jpg");
}

.h2_title_css{
	margin-bottom: 20px;
	border-bottom: 1px solid #D9A60D;
	line-height: 1.5;
}

ul#footer_css li a:hover{
	color: #A64005;
}



