/* 全体 */
body{
	font-family:"MS明朝";,
	"Hiragino Kaku Gothic Pro",
	sans-serif;
	background-color:#edede3;
	margin:0;
}

h1{
	font-size:38px;
	margin-top:0;
	margin-bottom:0;
}

h2{
	font-size:30px;
	margin-top:0;
	margin-bottom:0;
}

h3{
	font-size:20px;
	margin-top:0;
	padding-top:10px;
}

h4{
	font-size:20px;
	margin-top:0;
	padding-top:10px;
}

p{
	font-size:18px;
	margin-top:0;
	padding-top:10px;
}

a:hover img{
	filter:alpha(opacity=70);/* カーソル乗せたら画像が半透明になる */
	-moz-opacity:0.7;
	opacity:0.7;
}

/* ヘッダー */
header{
	background-color:white;
	width:950px;
	margin-bottom:30px;
	margin-left:auto;
	margin-right:auto;
	border:solid 1px #aaaaaa;
	box-shadow:5px 5px 3px #aaaaaa;
	-webkit-box-shadow:5px 5px 3px #aaaaaa;
	padding:10px;
}

.symbol{
	float:left;
}

/* ハンバーガーメニュー */
.menu-btn {
    position: fixed;
    top: 25px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: silver;
    border:solid 1px #aaaaaa;
    box-shadow:1px 1px 2px #aaaaaa;
    -webkit-box-shadow:1px 1px 2px #aaaaaa;
    border-radius:10px;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

#menu-btn-check {
    display: none;
}

.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: silver;
}
.menu-content ul {
    padding: 70px 10px 0;
}
.menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color: #ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-content ul li a:hover {
    color:black;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}

.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: silver;
    transition: all 0.5s;/*アニメーション設定*/
}

#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}

/* 記事 */
/* 題名 */
.au{
        font-size:40px;
	font-weight:bold;
	text-align:center;
	color: darkred;
        text-align:center;
}
strong{
	font-size:60px;
}

/* 地図 */
iframe{
	display: block;
  	margin:0 auto;
	max-width:80%;
	padding-bottom:30px;
}

/* フッター */
.footer-1{
	background-color:gray;
	width:950px;
	border-top:solid 1px #aaaaaa;
	border-bottom:solid 1px #aaaaaa;
	height:50px;
	margin-top:0;
	margin-bottom:0;
	margin-left:auto;
	margin-right:auto;
	padding:5px;
}


.footer-1 ul{
	list-style-type:none;
	padding-left:0;
}


.footer-1 ul li{
	width:50px;
	height:50px;
	padding:10px;
	margin:20px;
}

.footer-1 ul li a{
	color:white;
	text-decoration:none;
}

.footer-1 ul li a:hover{
	color:red;
	text-decoration:none;
}

.inline{
	text-align:center;
}

.inline li{
	display:inline;
}

.footer-2{
	background-color:silver;
	height:60px;
	width:960px;
	margin-top:0;
	margin-bottom:0;
	margin-left:auto;
	margin-right:auto;
	padding:0;
	text-align:center;
}
