html{
	height: 100%;
	overflow: hidden;
}
body{
	width: 100%;
	height: 100%;
	padding: 0 40px;
	margin: 0;
	position: relative;
	background-color: #000;
	box-sizing: border-box;
	overflow: hidden;
	font-family: sans-serif;
}
.logo{
	width: 80%;
	max-width: 383px;
	margin:auto;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
}

.info{
	position: absolute;
	margin:auto;
	bottom: 60px;
	right: 0;
	left: 0;
	text-align: center;
}
.info img{
	margin-bottom: 9px;
}

.shop_link, .btn_cal,.btn_map{
	width: 168px;
	height: 40px;
	margin: 0 10px 0 15px;
	display: inline-block;
	transition: background 0.3s ease-in;
}
.shop_link img, .btn_cal img,.btn_map img{
	width: 100%;	
}
.shop_link:hover, .btn_cal:hover,.btn_map:hover{
	background: rgba(255,255,255,0.3);
}
a.shop_link:hover img,a.btn_cal:hover img,.btn_map:hover img{
	opacity: 1;
}

.btn{
  margin-bottom: 20px;
  text-align: center;
}

.btn_cal,.btn_map{
  margin-left: 0;
}

.btn_cal img{width: 100%:}

img{
	opacity: 1;
	transition: opacity 0.2s ease-in;
}
a img{
	border-style: none;
}
a:hover img{
	opacity: 0.8;
}

.modal{
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
  transition: all 0.2s ease-in;
}

.modal.is_active{
  opacity: 1;
  z-index: 100;
}

.modal_bg{
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.7);
}

.modal_wrap{
  width: 90%;
  height: 90%;
  max-width: 850px;
  margin: auto;
  padding: 30px;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  transition: all 0.2s ease-in;
}

.modal_wrap.is_active{
  opacity: 1;
  z-index: 100;
}

.modal_inner{
  width: 100%;
  height: 100%;
  position: relative;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
}

.modal_close{
  position: absolute;
  top: 0;
  right: 0;
  padding: 2px 2px;
  background: #fff;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease-in;
}

.modal_close span{
  padding: 8px 28px;
  font-size: 12px;
  font-weight: bold;
  display: block;
  border: 1px solid;
}

.modal_close:hover{
  opacity: 0.7;
}


.cal_img{
  width: 100%;
  max-width: 600px;
  display: block;
  margin: auto;
}

.map{
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}


@media screen and (max-width: 460px){
	.logo{
		margin-top: 70px;
	}
	.info{
		bottom: 20px;
	}
	.info img{
		width: 50% !important;
	}
	.shop_link, .btn_cal,.btn_map{
		width: 100%;
		height: 50px;
		margin: 0;
	}
	.shop_link:hover, .btn_cal:hover, .btn_map:hover{
		background: transparent;
	}
	.btn{
  	margin-bottom: 5px;
	}
	.modal_wrap{
  	padding: 0;
	}
}
