@charset "UTF-8";
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

#map {
  height: calc(100% - 60px);
  display: none;
}

.map_box {
  position: absolute;
  z-index: 101;
  top: 60px;
  overflow: hidden;
  width: 100%;
  height: auto;
  color: #222;
  background-color: #F6F6F6;
}

.map_box_1 {
  padding: 5px 10px;
  display: flex;
}
@media screen and (max-width: 480px) {
  .map_box_1 {
    padding: 3px;
    flex-wrap: wrap;
  }
}
.map_box_1 dl {
  margin-right: 25px;
}
@media screen and (max-width: 480px) {
  .map_box_1 dl {
    width: calc(50% - 10px);
    margin: 0 5px;
  }
}
.map_box_1 dl dt {
  font-size: 13px;
}
.map_box_1 dl dd select {
  padding: 5px;
  font-size: 15px;
  width: 100%;
}
.map_box_1 dl dd input {
  padding: 5px;
  font-size: 15px;
  width: 95%;
}

.area_box {
  position: absolute;
  z-index: 101;
  top: 125px;
  left: 20px;
  overflow: hidden;
  width: 310px;
  padding: 5px;
  color: #222;
  background-color: #fff;
  border: 1px solid #eee;
}
@media screen and (max-width: 480px) {
  .area_box {
    top: auto;
    bottom: 260px;
    left: 0px;
    width: 170px;
  }
}
.area_box .name_box {
  background: #01AEE8;
  color: #fff;
  font-size: 14px;
  padding: 3px;
}
@media screen and (max-width: 480px) {
  .area_box .name_box {
    font-size: 12px;
  }
}
.area_box ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 480px) {
  .area_box ul {
    display: none;
  }
}
.area_box ul li {
  padding: 3px;
  text-align: left;
  width: 50%;
  box-sizing: border-box;
}
@media screen and (max-width: 480px) {
  .area_box ul li {
    font-size: 10px;
    padding: 2px;
  }
}
.area_box ul li.age_man {
  color: #5168dc;
}
.area_box ul li.age_woman {
  color: #da51dc;
}

.cart_box {
  position: absolute;
  z-index: 101;
  bottom: 20px;
  left: 20px;
  overflow: hidden;
  width: 310px;
  padding: 5px;
  color: #222;
  background-color: #fff;
  border: 1px solid #eee;
}
@media screen and (max-width: 480px) {
  .cart_box {
    left: 0px;
    bottom: 0px;
    width: 170px;
  }
}
.cart_box dl {
  border-bottom: 1px dotted #ddd;
  margin: 0;
  padding: 14px;
  font-size: 12px;
  display: flex;
}
@media screen and (max-width: 480px) {
  .cart_box dl {
    padding: 5px;
  }
}
.cart_box dl dt {
  width: 35%;
  display: inline-block;
}
.cart_box dl dd {
  width: 65%;
  text-align: right;
  display: inline-block;
}
.cart_box dl dd span {
  font-size: 20px;
}
@media screen and (max-width: 480px) {
  .cart_box dl dd span {
    font-size: 15px;
  }
}

#loading {
  position: absolute;
  left: 50%;
  top: 20%;
  margin-left: -30px;
}

header {
  width: calc(100% - 20px);
  height: 40px;
  padding: 10px;
  display: flex;
  justify-content: flex-start;
}
header a {
  font-size: 25px;
}
header img {
  height: 100%;
}
@media screen and (max-width: 480px) {
  header img {
    height: 30px;
  }
}
header ul {
  display: flex;
}
header ul li {
  margin-right: 10px;
}
header ul li a {
  font-size: 14px;
}

.btn_map {
  text-align: center;
  padding: 10px;
}
.btn_map a {
  color: #FFFFFF;
  background: #E65A90;
  padding: 10px 40px;
  font-size: 20px;
  border-radius: 40px;
}
.btn_map a:hover {
  opacity: 0.8;
}

/*モーダルを開くボタン*/
.modal-open {
  color: #FFFFFF;
  background: #E65A90;
  padding: 10px 40px;
  font-size: 20px;
  border-radius: 40px;
  cursor: pointer;
}
@media screen and (max-width: 480px) {
  .modal-open {
    padding: 5px 8px;
    font-size: 15px;
  }
}

.modal-submit {
  color: #FFFFFF;
  background: #E65A90;
  padding: 10px 40px;
  font-size: 20px;
  border-radius: 40px;
  cursor: pointer;
}

.modal-submit:hover {
  opacity: 0.5;
}

.modal-submit_2 {
  color: #FFFFFF;
  background: #E65A90;
  padding: 10px 40px;
  font-size: 20px;
  border-radius: 40px;
  cursor: pointer;
  border: 0;
}

.modal-submit_2:hover {
  opacity: 0.5;
}

/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container, .modal-container_2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  z-index: 103;
}

/*モーダル本体の擬似要素の指定*/
.modal-container:before, .modal-container_2:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active, .modal-container_2.active {
  opacity: 1;
  visibility: visible;
}

/*モーダル枠の指定*/
.modal-body, .modal-body_2 {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 500px;
  width: 90%;
}

/*モーダルを閉じるボタンの指定*/
.modal-close, .modal-close_2 {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -40px;
  right: -40px;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

/*モーダル内のコンテンツの指定*/
.modal-content, .modal-content_2 {
  background: #fff;
  text-align: left;
  padding: 30px;
}/*# sourceMappingURL=map.css.map */