
.deka{ font-size: 1.4em; font-weight: bold;}


#header h1{
	margin: 0px 10px 0px;
	color: black;
	text-align: left;
	z-index: 1;
	font-size: 0.9em;
}

#header h2{
	margin: 0px 10px 0px;
	color: #fff;
	text-align: center;
	font-size: 1.5em;
	line-height: 30px;
	background-color: blue;
	font-weight: bold;
	padding: 8px;

}

#header h2 a{ color: white; }

#header p{
	margin: 7px 10px 0px;
	font-size: 0.9em;
	color: black;
	padding: 3px;
}

#pankuzu p{
	margin: 5px 10px 0px;
	font-size: 0.9em;
	text-align: right;
	border-bottom: 1px blue solid;
	padding: 3px;
}

#entry{ margin: 0px 5px 0px; }

#entry h3{
	margin: 30px 5px 0px;
	padding: 0px 0px 0px 15px;
	font-size: 1.3em;
	line-height: 30px;
	color: #000;
	border-top: 2px double blue;
	border-right: 2px solid blue;
	border-bottom: 2px double blue;
	border-left: 10px double blue;
}

#entry h4{
	margin: 30px 5px;
	padding: 0px 0px 0px 15px;
	font-size: 1.2em;
	line-height: 30px;
	color: #454545;
	border-bottom: 1px blue solid;
	border-left: 5px solid blue;
	border-top: 1px dotted blue;
	border-right: 1px dotted blue;
}

#entry p{
	margin: 20px 10px;
	color: #000;
	line-height: 160%;
}


#entry hr{
        border-top: 2px blue dashed;

}


#entry ul{
	margin: 20px 10px 20px 5px;
}

#entry ul li{
	margin: 7px 0px 0px 0px;
	color: #454545;
	list-style: circle none outside;
	font-size: 1.3em;
}

#footer address{
	margin: 0px;
	padding: 10px 0px 0px;
	font-size: 0.9em;
	border-top: 1px blue solid;
	text-align: center;
}

#footer p{
	margin: 0px;
	padding: 0px 0px 10px;
	font-size: 0.8em;
	text-align: center;
}

@media only screen and (min-width:768px){
.ad_sp {
display: none;
}
}
@media only screen and (max-width:767px){
.ad_pc {
display: none;
}
}


/*メニュー部分*/
#ham-menu {
    background-color: #fff; /*メニュー背景色*/
    box-sizing: border-box;
    height: 100%;
    padding: 10px 40px; /*メニュー内部上下左右余白*/
    position: fixed;
    right: -300px; /*メニュー横幅@と合わせる*/
    top: 0;
    transition: transform 0.3s linear 0s; /*0.3s は変化するのにかかる時間*/
    width: 300px; /*メニュー横幅@*/
    z-index: 1000;
}

/*メニューアイコン部分は疑似要素で*/
#ham-menu::before {
    background-color: #fff; /*ボタン部分背景色*/
    border-radius: 0 0 0 10px; /*左下角丸*/
    color: #333; /*アイコン（フォント）色*/
    content: "≡"; /*メニューアイコン*/
    display: block;
    font-size: 50px; /*アイコン（フォント）サイズ*/
    height: 50px;
    line-height: 50px; /*縦位置中央化*/
    position: absolute;
    right: 100%;
    text-align: center;
    top: 0;
    width: 50px;
}

/*透過背景部分*/
#menu-background {
    background-color: #333; /*黒背景部分背景色*/
    display: block;
    height: 100%;
    opacity: 0;
    position: fixed;
    right: 0;
    top: 0;
    transition: all 0.3s linear 0s; /*0.3s は変化するのにかかる時間*/
    width: 100%;
    z-index: -1;
}

/*hover 時の処理*/
#ham-menu:hover {
    transform: translate(-300px); /*メニュー横幅@と合わせる*/
}

#ham-menu:hover + #menu-background {
    opacity: 0.5; /*黒背景部分透過度*/
    z-index: 999;
}


#ham-menu ul{
	margin: 20px 10px 20px 5px;
}

#ham-menu ul li{
	margin: 7px 0px 0px 0px;
	color: #454545;
	list-style: circle none outside;
	font-size: 1.3em;
}
