/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  text-align: center;
  background: rgba(0,0,0,50%);
  padding: 20% 20px 0;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
	z-index: 100;
}
/*モーダル本体の擬似要素の指定*/
/*.modal-container:before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}*/
/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active{
  opacity: 1;
  visibility: visible;
}
/*モーダル枠の指定*/
.modal-body{
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    /*left: 50%;
    top: 17%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);*/
}
/*モーダルを閉じるボタンの指定*/
.modal-close{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -40px;
  right: 0px;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
	background-color: #b4b4b4;
}
/*モーダル内のコンテンツの指定*/
.modal-content{
  background: #fff;
  text-align: left;
}
.gold .modal-content {
	background-image: url("../img/top/modal_gold_bg.png");
	background-size: 100% auto;
	background-repeat: no-repeat;
	padding-bottom: 6.2%;
}

.btn_area {
	padding: 28% 0 0;
}

.map_img {
	margin: 0 auto;
	padding: 30px 0 15px;
	width: 100%;
}
.map_img img{
	width: 100%;
}
.mapBnr_img{
	text-align: center;
}
.mapBnr_img img{
	width: 50%;
}
.cta_btn_gold {
	width: 88%;
	margin: 0 auto;
	margin-top: 55%;
	text-align: center;
	
}