* {
	margin: 0;
}

img {
	max-width: 100%;
	height: auto;
	margin: 7px 10px;
}



/* ヘッダ／フッタ */



.header {
	margin: 0;
}

footer {
	background: #69573a;
	text-align: center;
	color: #ffffff;
	padding: 12px 0;
	margin: 0px 0 0;
	font-size: smaller;
}

footer a:link {
	color: #ffffff;
}
footer a:visited {
	color: #ffffff;
}
footer a:hover {
	color: orangered;
}
footer a:active {
	color: orangered;
}



/* 全体 */



#all {
	max-width:86%;
	margin: 0 auto;
	padding: 0 20px 20px;
}

hr {
	margin: 0 0 25px;
}



/* 文字、見出し */



.center {
	text-align: center;
}

h1 {
font-size: 1px;
}

h2 {
	color: orangered;
	font-size: 150%;
	margin: 0 0 15px;
}

h3 {
	color: #003366;
	font-size: 105%;
	background: #fa9069;
	padding: 10px 15px;
	margin: 0 0 15px;
}

h4 {
	color: #003366;
	font-size: 105%;
	background: #ccfcff;
	padding: 10px 15px;
	margin: 0 0 15px;
}

h5 {
	font-weight: bold;
	color: orangered;
	font-size: 100%;
	margin: 0 0 15px;
}

p {
	color: #003366;
	font-size: 93%;
	line-height: 1.5em;
	margin: 1.2em 0 1.5em;
}

ul {
	margin: 0 0 1.5em;
}

ol {
	margin: 0 0 1.5em;
}

.migi {
	text-align: right;
}

strong {
	color: orangered;
}

li {
	line-height: 1.5em;
}

.line {
	text-decoration: underline;
}

#map {
	margin: 20px 0 20px;
font-size: 85%;
}



/* テーブル関係 */



table {
	border-collapse: collapse;
	margin: 1.4em 0;
}

td {
	border: 1px solid #003366;
	line-height: 1.5em;
	font-size: 95%;
	padding: 3px 7px;
}



/* 画像回り込み */



.right {
	float: right;
	margin: 7px 0 7px 15px;
}

.left {
	float: left;
	margin: 7px 15px 7px 0;
}

.two {
	width: 45%;
	height: auto;
	float: left;
	margin: 10px 2%;
}

.clear {
	content:"";
	display: block;
	clear: both;
}



/* ナビメニュー関係 */



header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  background: #fff;
}

/*------------------------------

  ここから下がハンバーガーメニュー
  に関するCSS

------------------------------*/
  
/* チェックボックスは非表示に */
.drawer-hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer-open {
  display: flex;
  margin: 0;
  height: 0;
  width: 28px;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 100;/* 重なり順を一番上に */
  cursor: pointer;
  color: #ffffff;
}

/* ハンバーガーメニューのアイコン */
.drawer-open span,
.drawer-open span:before,
.drawer-open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #333;
  transition: 0.5s;
  position: absolute;
}

/* 三本線のうち一番上の棒の位置調整 */
.drawer-open span:before {
  bottom: 8px;
}

/* 三本線のうち一番下の棒の位置調整 */
.drawer-open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer-check:checked ~ .drawer-open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer-check:checked ~ .drawer-open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer-check:checked ~ .drawer-open span::after {
  top: 0;
  transform: rotate(-45deg);
}
  
/* メニューのデザイン*/
.drawer-content {
  width: 75%;
  height: 412px;
  position: fixed;
  top: 7px;
  left: 100%;/* メニューを画面の外に飛ばす */
  z-index: 99;
  background: #fff;
  transition: .5s;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer-check:checked ~ .drawer-content {
  left: 0;/* メニューを画面に入れる */
}

#menu {
	margin: 0 0 20px;
	padding: 0;
}

#menu li {
	list-style: none;
	padding: 0;
	background-color: #ffe89e;
	line-height: 1.5em;
}

#menu li a{
	padding: 0.25em 0em;
	margin-bottom: 0.2em;
	display: block;
	text-align: center;
	font-size: 88%;
}



/* イメージのモバイル対応 */



@media(max-width: 750px){
.big {
	margin: 0;
	float: none;
	text-align: center;
}
}

@media(max-width: 550px){
.yoko {
	margin: 0;
	float: none;
	text-align: center;
}
}

@media(max-width: 500px){
.tate {
	margin: 0;
	float: none;
	text-align: center;
}
}



/* ＰＣ対応 */

@media(min-width: 800px) {

body {
	background-image: url(../gazou/haikei.jpg);
	background-repeat: repeat;
	background-size: 90px 82px;
	background-attachment: fixed;
}

#all {
	max-width:100%;
	width: 800px;
	padding: 0;
  background-color: #fff; /* 要素自体の背景色 */
  overflow: hidden; /* 必要に応じて、はみ出した部分を隠す */
}

header {
  display: block;
  justify-content: normal;
}

.drawer-open {
  display: none;
}

/* メニューのデザイン*/

#navi {
	width: 220px;
	float: left;
}

.drawer-content {
  width: 205px;
  height: auto;
position: static;
padding: 0 18px;
}

main {
  width: 540px;
padding: 0 0 20px 25px;
	float: left;
}

#map {
	margin: 16px 20px 20px;
font-size: 75%;
}

}
