﻿.style3 {
	text-align: center;
}
.style24 {
	margin-top: 9px;
	text-decoration: none;
	color: #003300;
}
body {
	font-family:"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	font-size:large;
	background-color:#351f10;
	margin-top:5px;
}
#container {
	width: 590px;
	height: 100%;
	background-color: #ffffcc;
	margin-left:auto;
	margin-right:auto;
	padding-left:25px;
	padding-right:25px;
	padding-top:1px;
}
#masthead {
	width: 590px;
	height:172px;
	text-align: left;
	background-color: #ffffcc;
	background-image:url('../headerddx.png');
	border-bottom:1px solid #351f10;		
}
#content {
	margin-left: auto;
	margin-right:auto;
	padding: 10px;
	background-color: #ffffcc;
	float:right;
	width:560px;
}
footer {
	clear: both;
	width: 99%;
	overflow: hidden;
	padding-top: 1%;
	padding-right: 0;
	padding-bottom: 1%;
	padding-left: 1%;
	background-color: #ffffcc;
	border-top:1px solid #351f10;
}
#masthead p {
	font-family:"メイリオ", Arial, sans-serif;
	color: #003300;
	line-height:18px;
}
h3 {
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	color: #003300;
   
}

h2 {
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	color: #003300;
	font-size:x-large;
}
h1 {
    font-size:x-large;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	color: #003300;
	margin-bottom: 5px;
	padding-top:25px;
	padding-left:10px;
}
/* フッターのスタイル */
footer p {
	font-size: x-small;
	font-family:"メイリオ", Arial, sans-serif;
	}
footer a {
	color: #393939;
	text-decoration: underline;
}
footer a:hover {
	color: #393939;
	text-decoration: none;
}
a {
	color: #393939;
	text-decoration: underline;
}
a:hover {
	color: #78a;
	text-decoration: underline;
}
.style4 {
    width:520px;
    line-height:27px;
	text-align: left;
	margin-left: 17px;
	margin-left:auto;
	margin-right:auto;
}
.style5 {
	width:511px;
	text-align: right;
	font-size: large;
	margin-left:auto;
	margin-right:auto
}
.style6 {
	width:450px;
	font-size:x-large;
	text-align: left;
	margin-bottom: 5px;
	margin-top:0px;
	margin-left:auto;
	margin-right:auto
}
.style7 {
	text-decoration: none;
	color: #003300;
	font-size: medium;
}
.style8 {
    width:520px;
    line-height:27px;
	text-align: left;
	margin-left: 17px;
	margin-left:auto;
	margin-right:auto;
	list-style-type:decimal
}
.style26 {
	font-size: small;
	text-align: right;
	padding-right:15px;
	width: 330px;
	margin-top: 0px;
	margin-bottom:0px;
	float:right;
}
.menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #003300;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffcc;
    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 {
    display: none;
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
.menu-content {
overflow:auto;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #ffffcc;
}
.menu-content ul {
    padding: 70px 10px 0;
}
.menu-content ul li {
    border-bottom: solid 1px #003300;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#003300;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #003300;
    border-right: solid 2px #003300;
    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: ffffcc;
    transition: all 0.5s;/*アニメーション設定*/
    box-shadow: -7px 0 7px -7px #777;
    text-align:left;
}
#menu-btn-check:checked ~ .menu-content {
    left: 60%;/*メニューを画面内へ*/
}
}
@media screen and (min-width: 768px) {
.menu-btn {
    display: none;
}
#container {
	width: 720px;
}
#masthead {
	width: 718px;
	background-image:url('../headerdx.png');
}
.menu-content {
    margin-top:5px;
	float: left;
	width: 140px;
	background-color: #ffffcc;
	font-size: 14px;
	font-family:"メイリオ", Arial, sans-serif;
}
/* ナビゲーションのスタイル */
.menu-content ul {
	list-style-type: none;
	width: 100%;
	display: block;
	margin: 0;
	padding: 0;
}
.menu-content li {
	display: block;
}
.menu-content a {
	font-weight: normal;
	text-decoration: none;
	color: #393939;
	padding: 5%;
	display: block;
	border-bottom: 1px solid #7B633E;
}
.menu-content a:hover {
	font-weight: normal;
	text-decoration: none;
	color: #78a;
	border-bottom: 1px solid #7B633E;
}
}