@charset "UTF-8";

body{
    color: #070;
    background-color: #ffffff;
	padding: auto;
	text-align: left;
    width: 900px;
    margin: auto;
}
/* ここからヘッダー要素 */
header{
	height: 50px;  /* ヘッダーの高さ */
	margin: 0;
	position: fixed;
	top: 0;
	width: 900px;
    height: 50px;
	z-index: 999;
    border-bottom: 3px #007700 solid;
	background-color: #fff;
    overflow: hidden;  
    font-family: "Chakra Petch", sans-serif;
    font-weight: 700;
    font-style: normal;
}
.example{
    position: absolute;
    display: block;
    background: #ffeded;
}
.menu{
    position: relative;
    border: 1px solid #9d9;
    background: #fff;
    width: 70px;
    margin: 20px 0 0;
    padding: 0 auto;
    text-align: center;
    float: right;
}
a{
    display: block;
    text-decoration: none;
}
a:link {color: #070; }
a:visited { color: #070; }
a:hover { color: #7b7; }
a:active { color: #7b7; }
.logo{
    background: #fff;
    width: 285px;
    float: left;
}
.logo img{
    width: 285px;
}
.sns{
    position: relative;
    background-color: #fff;
    width: 40px;
    margin: 20px 0 0;
    padding: 0 auto;
    text-align: center;
    float: right;
}
.sns img{
    border: none;
    width: 20px;
    height: 20px;
}
/* ヘッダー要素ここまで */

/* ここからメイン要素 */
main{
	width: 100%;
	margin: 60px 0 50px;/* ヘッダーの高さ分をマージンで空けておく */
	overflow: auto;
	padding: 0;
    background-color: #ffffff;
}
main>h1{
    border-bottom: 3px solid #007700;
    font-size: x-large;
    font-family: "Chakra Petch", sans-serif;
}
main>h2{
    text-decoration: underline;
}
main>h3{
    font-size: medium;
}
main>h4{
    font-size: medium;
    text-decoration: underline;
}
main>h5{
    font-size: medium;
    font-weight: bold;
    text-decoration: underline;
}
h1, h2, h3, h4, h5{
    margin-bottom: 0;
}
main>a{
    display: inline;
    clear: both;
}
/* ここからギャラリー要素 */
table{
    margin: auto;
}
td, th{
    border-spacing: 4px;
    text-align: center;
}
td{
    width: 150px;
    height: 150px;
}
th{
    width: 150px;
    height: 30px;
}
img.thum{
    width: 120px;
}
.gall{
    text-align: center;
}
.gall>h2{
    text-decoration: underline;
}
/* ギャラリー要素ここまで */
/* メイン要素ここまで */

/* ここからフッター要素 */
footer{
    width: 900px;
    height: 40px;
    background-color: #fff;
    position: fixed;
    bottom: 0;
    border-top: 3px #007700 solid;
    text-align: center;
    padding: 0 auto 20px;
    margin-top: 0;
    margin-bottom: 0;
}
/* フッター要素ここまで */