/*********************************************************
訪問予約用（202604改正）
*********************************************************/

.postal_modal h2 {
  margin: 70px 0 20px;
}

.postal_modal .modaal-container {
  max-width: 100% !important;
  width: 375px !important;
}

.postal_modal .modaal-content {
  overflow-y: auto !important;
}

.postal_modal .modaal-content-container {
  padding: 20px 15px;
}

.postal_modal .h2__header_title {
  font-size: 1.25rem;
  line-height: 1.5em;
}

.postal_modal .h2__header_title span.header_title__midashi::before {
  width: 8px;
}

.postal_modal .list__panel > li {
  margin: 0 0 15px 0;
}

.btn__open_modal {
  background-size: 33px auto;
  height: 50px;
  padding: 0 50px;
  margin: 0 0 15px 0;
  min-width: initial;
  min-height: 55px;
  width: 100%;
  align-items: center;
  font-size: 18px;
}

@media screen and (max-width: 400px) {
  .postal_modal .modaal-container {
    width: 100% !important;
  }
  .postal_modal .modaal-content-container {
    padding: 20px 15px;
  }
}

/*********************************************************
radio
*********************************************************/
label.radio,
label.radio__txt {
  position: relative;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
label.radio {
  width: 18px;
  height: 18px;
  border: 1px solid #b3b3b3;
  border-radius: 100%;
  background-color: #ffffff;
}
label.radio__txt {
  margin: 5px 0 0;
  min-height: calc(18px + 5px);
  /*margin-right: calc(18px + 5px);*/
  padding-left: calc(18px + 5px);
  line-height: calc(18px + 5px);
}

label.radio:before,
label.radio__txt:before,
label.radio__txt:after {
  content: "";
  position: absolute;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
label.radio:before,
label.radio__txt:before {
  border-radius: 100%;
}
label.radio:before {
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  display: block;
  width: 10px;
  height: 10px;
  z-index: 1;
  background-color: #0061d5;
}

label.radio__txt:before,
label.radio__txt:after {
  top: 0px;
  bottom: 0px;
  margin-top: auto;
  margin-bottom: auto;
}

label.radio__txt:before {
  width: 18px;
  height: 18px;
  border: 1px solid #b3b3b3;
  left: 0px;
  z-index: 3;
}

label.radio__txt:after {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  left: calc(((18px / 2) - (10px) / 2));
  background-color: #0061d5;
  z-index: 1;
}

label.radio input[type="radio"],
label.radio__txt input[type="radio"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  margin: 0px;
  width: 20px;
  height: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  left: calc(18px * -1);
  width: 18px;
  height: 18px;
  top: 0px;
  bottom: 0px;
  margin-top: auto;
  margin-bottom: auto;
  border-radius: 100%;
}

label.radio input[type="radio"] {
  display: block;
  -webkit-box-shadow: 18px 0px #ffffff;
  box-shadow: 18px 0px #ffffff;
}
label.radio__txt input[type="radio"] {
  -webkit-box-shadow: 18px 0px #ffffff;
  box-shadow: 18px 0px #ffffff;
}

label.radio__txt input[type="radio"]:checked,
label.radio input[type="radio"]:checked {
  -webkit-box-shadow: none;
  box-shadow: none;
}

label.radio__txt input[type="radio"]:focus,
label.radio input[type="radio"]:focus {
  opacity: 0.2;
  -webkit-box-shadow: 18px 0px #ffffff;
  box-shadow: 18px 0px #ffffff;
}

.address-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.postal_input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-height: 34px;
  height: 100%;
  margin: 0;
  width: 100%;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 0;
  padding: 0.5rem;
}

.radio__address {
  width: 95%;
  padding: 0.75rem 0rem 0.5rem 1.5rem !important;
  margin: 0 0.5rem !important;
}

#now_loading {
  position: fixed;       
  top: 0;
  left: 0;
  width: 100vw;           
  height: 100vh;          
  background: rgba(0, 0, 0, 0.5); 
  z-index: 20000;
  display: flex;
  align-items: center; 
  justify-content: center;
}

#now_loading img {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 20000;
}

.d-none {
  display: none !important;
}