html,body{
	height: 100%;
}
#contents {
	margin: 0;
	position: relative;
}
#contents,#map{
	width: 100%;
	height: 800px;
}
.menuBox {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
    width: 0px;
    background: #FB4E09;
    z-index: 1;
	overflow: hidden;
	transition: 0.3s;
}
.menuBox.active {
	width: 200px;
	transition: 0.3s;
	overflow: auto;
}
.menuBox .inner{
	padding: 20px;
	min-width: 150px;
}
.menuBox .title {
	margin: 15px 0 5px;
	font-size: 14px;
	color: #FFC7C7;
}
#header{
}
#header #logo{
	position: absolute;
	top: 15px !important;
	left:20px !important;
}
#header #logo img {
	width: 200px;
}
#header_wrap {
	position: absolute;
	z-index: 1;
	border-top: 4px solid #FB4E09;
	width: 100%;
}

#copyright {
	font-size:12px;
	width:100%;
	height:40px;
	line-height:40px;
	background: none;
	text-align:center;
	color:#fff;
	margin:0;
	padding:0;
	position: absolute;
	bottom: 0;
}
#copyright a {
	color: white;
	text-decoration: none;
}

padding: 6px;
}
.menuBox input[type=radio],
.menuBox input[type=checkbox] {
display: inline-block;
margin-right: 6px;
}
.menuBox input[type=radio] + label,
.menuBox input[type=checkbox] + label {
position: relative;

display: inline-block;
margin-right: 12px;

font-size: 14px;
line-height: 30px;

cursor: pointer;
}

@media (min-width: 1px) {
.menuBox input[type=radio],
.menuBox input[type=checkbox] {
	display: none;
	margin: 0;
}
.menuBox input[type=radio] + label,
.menuBox input[type=checkbox] + label {
	padding: 0 0 0 24px;
}
.menuBox input[type=radio] + label::before,
.menuBox input[type=checkbox] + label::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;

	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	width: 18px;
	height: 18px;
	margin-top: -9px;

	background: #FFF;
}
.menuBox input[type=radio] + label::before {
	border: 2px solid #ccc;
	border-radius: 30px;
}
.menuBox input[type=checkbox] + label::before {
	border: 2px solid #ccc;
}
.menuBox input[type=radio]:checked + label::after,
.menuBox input[type=checkbox]:checked + label::after {
	content: "";
	position: absolute;
	top: 50%;

	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
}
.menuBox input[type=radio]:checked + label::after {
	left: 5px;

	width: 8px;
	height: 8px;
	margin-top: -4px;

	background: #FB4E09;
	border-radius: 8px;
}
.menuBox input[type=checkbox]:checked + label::after {
	left: 3px;

	width: 16px;
	height: 8px;
	margin-top: -8px;

	border-left: 3px solid #FB4E09;
	border-bottom: 3px solid #FB4E09;

	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.menuBox button{
	padding: 10px 40px;
    border: 1px solid;
    border-radius: 5px;
	background: #fff;
    margin-top: 20px;
}

label {
	color: white;
    font-weight: bold;
    font-size: 20px;
}


 /* menuIcon */
 /*  menuIcon
 ----------------------------------------------- */

 .menuIcon {
position: absolute;
    z-index: 2;
    display: block;
    float: left;
    width: 24px;
    height: 20px;
    cursor: pointer;
    right: 20px;
    top: 15px;
  transition: 0.3s;
}
 .menuIcon::before {
   width: 24px;
   height: 4px;
   -webkit-box-shadow: #FB4E09 0 8px 0;
   box-shadow: #FB4E09 0 8px 0;
   -webkit-transform-origin: left top;
   -ms-transform-origin: left top;
   transform-origin: left top;
}
 .menuIcon::after {
   bottom: 0;
   width: 24px;
   height: 4px;
   -webkit-transform-origin: left bottom;
   -ms-transform-origin: left bottom;
   transform-origin: left bottom;
}
 .menuIcon::before ,
 .menuIcon::after {
   position: absolute;
   display: block;
   background: #FB4E09;
   content: '';
   -webkit-transition: -webkit-box-shadow 0.2s linear, -webkit-transform 0.4s 0.2s;
   transition: box-shadow 0.2s linear, transform 0.4s 0.2s;
}
  .menuIcon.active {
	  right: 210px;
	  transition: 0.3s;
}
 .menuIcon.active::before {
     -webkit-box-shadow: transparent 0 8px 0;
     box-shadow: transparent 0 8px 0;
     -webkit-transform: rotate(45deg) translate3d(3px, -3px, 0);
     transform: rotate(45deg) translate3d(3px, -3px, 0);
}
 .menuIcon.active::after {
  -webkit-transform: rotate(-45deg) translate3d(3px, 3px, 0);
       transform: rotate(-45deg) translate3d(3px, 3px, 0);
}
.windowBox {
	margin-top: 8px;
	border-top: 1px solid #E8E8E8;
	padding-top: 10px;
}
.windowBox:first-child {
	margin-top: 0;
	border-top: none;
	margin-top: 0;
}
.windowBox .imgBox {
	float: left;
    width: 20%;
}
.windowBox .imgBox img {
	width: 100%;
	height: auto;
}
.windowBox .textBox {
    float: left;
    width: 75%;
    margin-left: 3%;
	font-size: 12px;
	line-height: 1.5;
}
.windowBox .toMap ,
.windowBox .toDetail {
	background: #D24029;
	display: inline-block;
	color: white;
	padding: 4px 8px;
	border-radius: 3px;
	text-decoration: none;
	font-size: 10px;
	font-weight: bold;
	margin-top: 5px;
	margin-right: 10px;
}
