/*==================
 ▼ブレイクポイントのルール▼
 -スマホを基本設計にする-
 *〜479px：SP縦
 *480px〜：SP横
 *600px〜タブレット
 *960px〜小型PC
 *1280px〜大型PC
==================*/

/*  画面サイズが480pxまで  */
p {
 color:red;
}
.wrapper .map {
	width: 80%;
	height: auto;
	min-width: 250px;
	min-height: 200px;
	max-width: 770px;
	max-height: 700px;
	display: block;
}
.wrapper .topright {
	width: 90%;
	overflow-y: hidden;
}
.wrapper .footer {
	width: 90%;
	height: auto;
	overflow-y: hidden;
	font-style: oblique;
	font-size: 9px;
	min-width: 220px;
	min-height: 80px;
	max-width: 950px;
	max-height: 300px;
	display: block;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	float: left;
}


@media screen and (min-width:600px) and ( max-width:960px) {
    /*　画面サイズが600pxから960pxまではここを読み込む　*/
p {
	width: auto;
}
}


@media screen and (min-width:960px) and ( max-width:1280px) {
    /*　画面サイズが960pxから1280pxまではここを読み込む　*/
p {}
}

@media screen and (min-width:1280px) {
    /*　画面サイズが1280pxからはここを読み込む　*/
p {}
}


#menu {
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	padding: 0;
	clear: both;
	background-color: #FFFFFF;
}
#menu li{
	display: block;
	float: left;
	width: 14%;
	margin-top: 0px;
	margin-right: 1px;
	margin-left: 0px;
	margin-bottom: 0px;
	padding: 0;
	text-decoration: none;
	list-style-type: none;
	color: #FFFFFF;
	font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	border-collapse: collapse;
	text-indent: px;
	font-style: normal;
	font-variant: small-caps;
	font-size: medium;
	text-align: center;
s}
#menu li a {
	display: block;
	padding-top: 6px;
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 6px;
	background-color: #FFFFFF;
	color: #535353;
	text-align: center;
	text-decoration: none;
	border-radius: 0px;
	font-size: 14px;
	background-image: -webkit-linear-gradient(270deg,rgba(250,207,85,1.00) 0%,rgba(244,230,147,1.00) 100%);
	background-image: -moz-linear-gradient(270deg,rgba(250,207,85,1.00) 0%,rgba(244,230,147,1.00) 100%);
	background-image: -o-linear-gradient(270deg,rgba(250,207,85,1.00) 0%,rgba(244,230,147,1.00) 100%);
	background-image: linear-gradient(180deg,rgba(250,207,85,1.00) 0%,rgba(244,230,147,1.00) 100%);
	width: auto;
	font-family: "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-style: normal;
}

#menu li a:hover{
	background-image: -webkit-linear-gradient(270deg,rgba(243,228,179,1.00) 0%,rgba(235,181,55,1.00) 100%);
	background-image: -moz-linear-gradient(270deg,rgba(243,228,179,1.00) 0%,rgba(235,181,55,1.00) 100%);
	background-image: -o-linear-gradient(270deg,rgba(243,228,179,1.00) 0%,rgba(235,181,55,1.00) 100%);
	background-image: linear-gradient(180deg,rgba(243,228,179,1.00) 0%,rgba(235,181,55,1.00) 100%);
	color: #FFFFFF;
}
#toggle {
	display: none;
}
 
/* 画面サイズが768px以下の場合に適用 */
@media only screen and (max-width: 768px) {
	#menu li {
			
		width: 25%;
	}
}

/* 画面サイズが480px以下の場合に適用 */
@media only screen and (max-width: 480px) {
	#menu {
				display:none;
	}
	#menu li {
		width: 100%;
	}
	#toggle {
	display: block;
	position: relative;
	width: 100%;
	background-color: #F0C562;
	}
	#toggle a{
	display: block;
	position: relative;
	padding: 20px 0 20px;
	border-bottom-style: solid;
	color: #FFF;
	text-align: center;
	text-decoration: none;
	}
	#toggle:before {
		display: block;
		content: "";
		position: absolute;
		top: 50%;
		left: 10px;
		width: 30px;
		height: 30px;
		margin-top: -15px;
		background: #FFF;
	}
	#toggle a:before, #toggle a:after {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 10px;
	width: 30px;
	height: 6px;
	background-color: #F6ECBF;
	}
	#toggle a:before {
		margin-top:-9px;
	}
	#toggle a:after {
		margin-top: 3px;
	}
}
