@charset "utf-8";
.property_select {
  background-image: url(../img-top/image-01.jpg);
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
  height: auto;
  max-height: 575px;
  min-height: 235px;
  padding-top: 5rem;
  padding-left: 25%;
  position: relative;
}

.property_select label,
input {
  font-size: 1.5rem;
}

.property_select div {
  line-height: 2.6rem;
}

.property_select .radio_button {
  margin-top: 1rem;
}

/* ラジオボタン */
input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="radio"] {
  position: relative;
  width: 16px;
  height: 16px;
  border: 1px solid #000;
  border-radius: 50%;
  vertical-align: -2px;
}

input[type="radio"]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #000;
  content: '';
}
/* 送信ボタン */
.property_select .link .btn {
  padding: 7px 35px 7px 35px;
}

/* ラジオボタン、送信ボタン */
label,
input[type="radio"]:hover ,
input[type="button"]:hover {
  cursor:pointer;
}
input[type="radio"]:hover ,
input[type="button"]:hover {
  opacity: 0.7;
}

/* ==========================================================================
  レスポンシブ対応用メディアクエリー
   ========================================================================== */
/* タブレット横, PC */
@media only screen and (max-width: 792px) {
  .property_select {
    background-position: right;
    max-height: 575px;
    min-height: 250px;
    padding-left: 5%;
    background-size: 60vw;
  }
  
}