@charset "utf-8";

.modalArea {
  display: block;
  padding: 65px 25px 50px;
  text-align: left;
  position: relative;
}

.modalArea .scrollBlock {
  max-height: 600px;
  overflow: auto;
  padding:0 25px 25px;
}

.modalArea h4 {
  margin: 0 25px 20px;
  padding: 0;
}

.modalArea a {
  color: #000;
  text-decoration: none;
}

.modalArea label {
  cursor: pointer;
}

.modalArea input[type=checkbox] {
  margin-right: 1em;
}

.modalArea .btn_close {
  position: absolute;
  top: 65px;
  right: 50px;
  border: 2px solid #49aae7;
  border-radius: 10px;
  padding: 5px 25px;
  font-size: 16px;
  box-shadow: 0 1px 2px 0 #bbb6a8;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.modalArea .other {
  display: none;
}

.modalArea .areaName {
  font-size: 16px;
  font-weight: normal;
  margin:20px 0;
}

.modalArea .areaName em {
  font-style: normal;
  font-weight: bold;
  font-size: 30px;
  color: #2561b8;
  margin-right: 0.75em;
}

.modalArea .prefList {
  margin: 0;
  padding: 0;
  font-size: 16px;
}

.modalArea .prefList dt {
  margin: 50px 0 15px;
  background: #cbeefa;
  border-radius: 4px;
  padding: 10px 10px;
  font-weight: bold;
}

.modalArea .prefList dt:first-of-type {
  margin-top: 0;
}

.modalArea .prefList dt a.toggleCity {
  display: none;
}

.modalArea .prefList dd {
  margin: 0;
  padding: 0;
}

.modalArea .cityList {
  list-style-type: none;
  font-size: 0;
  margin: 0;
  padding: 0;
}

.modalArea .cityList li {
  box-sizing: border-box;
  font-size: 16px;
  margin: 0;
  padding: 0 10px;
  display: inline-block;
  width: 185px;
  /*200*/
  margin: 0 15px 10px 0;
}

.modalArea .cityList li:nth-child(4) {
  /*margin-right: 0;*/
}

.modalArea .cityList li.otherCity {
  display: none;
}

.modalArea .otherCities {
  text-align: right;
}

.modalArea .otherCities a {
  display: inline-block;
  border: 2px solid #49aae7;
  border-radius: 20px;
  font-size: 14px;
  padding: 3px 10px 3px 32px;
  position: relative;
  margin: -15px 0 5px;
}

.modalArea .otherCities a::before {
  content: '';
  width: 9px;
  height: 9px;
  border: 0px;
  border-bottom: solid 2px #49aae7;
  border-right: solid 2px #49aae7;
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  bottom: 9px;
  left: 10px;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.modalArea .otherCities a.expanded::before {
  transform: translateY(-1px) rotate(45deg);
  -webkit-transform: translateY(-1px) rotate(45deg);
  /*bottom: 11px;
  left: 15px;*/
}

.modalArea a.modalSubmit {
  display: block;
  /*padding:10px 50px;*/
  background: #ec4426;
  color: #fff;
  border-radius: 35px;
  vertical-align: middle;
  width: 335px;
  height: 70px;
  text-align: center;
  margin: 25px auto 0;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.modalArea a.modalSubmit:hover {
  -webkit-animation: tremble .3s ease-in-out;
  animation: tremble .3s ease-in-out;
}

.modalArea a.modalSubmit img {
  margin-top: 23px;
}

/* モーダル コンテンツエリア */

#modal-main {

  width: 950px;
  margin: 0;
  padding: 0;
  background-color: #fff;
  background-image: url(../img/bg_modal.png);
  background-repeat: repeat-x;
  border-radius: 10px;
  position: fixed;
  z-index: 9999;
}

/* モーダル 背景エリア */

#modal-bg {
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
}
