@charset "UTF-8";
/* CSS Document */
.process_now {
  background-image: url("../images/process_now.png");
  background-position: center center;
  background-repeat: no-repeat;
  color: white;
  text-align: center;
  height: 32px;
  line-height: 32px;
}
.process_yet {
  background-image: url(../images/process_further.png);
  background-position: center center;
  background-repeat: no-repeat;
  color: black;
  text-align: center;
  height: 32px;
  line-height: 32px;
}
.process_done {
  background-image: url("../images/process_done.png");
  background-position: center center;
  background-repeat: no-repeat;
  color: black;
  text-align: center;
  height: 32px;
  line-height: 32px;
}
.img_radio input[type="radio"] {
  display: none;
}
/* 未選択の場合、 */
.img_radio label img {
  border: 1px solid #cccccc;
}
/* 選択済みの場合、 */
.img_radio input[type="radio"]:checked + label img {
  border: 6px solid #9E1191;
}
.form-control-address:disabled, .form-control[readonly] {
  border: none;
  transition: none;
}
.address_radio input[type="radio"] {
  display: none;
}
/* 未選択の場合、 */
.address_radio label {
  border: 1px solid #7892F8;
  border-radius: 5px;
  background-color: lightgray;
  padding: 3px;
}
/* 選択済みの場合、 */
.address_radio input[type="radio"]:checked + label {
  border: 4px solid #0C1275;
  border-radius: 5px;
  padding: 3px;
  background-color: white;
}

/*基本の吹き出し*/
.balloon{
  position: relative;
  background: #C3F2FE;
  padding: 2em;
}
.balloon:after{
  content: "";
  position: absolute;
  right: 0;
  bottom: -20px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #C3F2FE transparent transparent transparent;
  border-width: 20px 20px 0 20px;
}

/*基本の吹き出し2*/
.balloon2{
  position: relative;
  background: #8AFEF2;
  padding: 2em;
}
.balloon2:after{
  content: "";
  position: absolute;
  right: 0;
  bottom: -20px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #8AFEF2 transparent transparent transparent;
  border-width: 20px 20px 0 20px;
}

.display-none{
 display:none;
}