@charset "utf-8";
/**
* 無料査定 PC フォーム部分
*/

@charset "utf-8";
/* CSS Document */

/*フォーム要素のスタイルを初期化*/
button,
textarea {
  -webkit-appearance: none;
}
/*type="number"のスピンボタンを非表示*/
input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* フォームの大枠 */
#formid {
  width: 1000px;
  margin: 0 0 50px;
  background: #fff;
  border: 1px solid #e2e2e2;
  box-sizing: border-box;
  padding: 20px 50px 60px;
}

/* ---- tablet ------------- */
@media only screen and (max-width: 1024px) {
  #formid {
    width: 100%;
    padding-inline: 30px;
  }
}

/* ===================================
上部共通文言
=================================== */
#mainSub #formid h3 {
  color: #333;
  font-size: 20px;
  text-align: center;
  line-height: 1.6;
  margin: 20px 0 0;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 30px;
}

/* ===================================
フォーム内部 .formArea
=================================== */
.formArea dt,
.formArea dd {
  position: relative;
}
.formArea dt {
  font-weight: bold;
  box-sizing: border-box;
}
.formArea dt label {
  display: block;
  margin-bottom: -10px;
  margin-left: 10px;
}

/* 任意、必須アイコン */
.formArea dt:after {
  content: '任意';
  text-align: center;
  text-indent: 1px;
  color: #fff;
  background: #898989;
  display: block;
  position: absolute;
  right: 0;
  box-sizing: border-box;
  font-size: 13px;
  font-size: 1.3rem;
}
.formArea dt.req:after {
  content: '必須';
  background: #d83a3a;
}

/* 項目の下の注釈部分 */
.formArea dt span {
  font-size: 11px;
  display: block;
  font-weight: normal;
  line-height: 1.3;
  position: relative;
  display: inline-block;
  border: 1px solid #d6d6d6;
  border-radius: 20px;
  padding: 2px 10px 0;
}

.formArea dd {
  border-top: none;
}
.formArea dd table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.formArea dd table th,
.formArea dd table td {
  padding: 0;
  font-size: 14px;
}

.formArea p {
  line-height: 1.8;
  margin: 10px 0 5px;
}

/* ---- sp 767-------------- */
@media only screen and (max-width: 879px) {
  .formArea dd table {
    width: 100%;
  }
}

/* 入力部分共通 */
.formArea input[type='text'],
.formArea input[type='number'],
.formArea select,
.formArea textarea,
.formArea input[type='radio'] + label,
.formArea input[type='checkbox'] + label {
  height: 50px;
  margin: 0;
  padding: 0 15px;
  color: #1f1f1f;
  border: 1px solid #ddd;
  border-radius: 0px;
  background: #fff;
  box-sizing: border-box;
}
/* 必須項目のinputの背景 */
.formArea .req + dd input[type='text'],
.formArea .req + dd input[type='number'],
.formArea .req + dd textarea {
  background: #fafaf6;
}
/* disabled属性が付いている場合 */
.formArea input[type='text']:disabled,
.formArea input[type='number']:disabled,
.formArea select:disabled,
.formArea textarea:disabled,
.formArea input[type='radio']:disabled + label,
.formArea input[type='checkbox']:disabled + label {
  background: #ddd !important;
}
/* セレクトボックス */
.formArea select {
  padding-right: 0;
  cursor: pointer;
}
.formArea select.inputbox-error {
  background: #fbf0e6;
}

/* ラジオボタン、チェックボックス */
.formArea input[type='radio'],
.formArea input[type='checkbox'] {
  visibility: hidden;
  position: absolute;
}
.formArea input[type='radio'] + label,
.formArea input[type='checkbox'] + label {
  padding: 0 0 0 42px;
  line-height: 38px;
  background-size: 22px auto;
  display: inline-block;
  cursor: pointer;
}
.formArea input[type='radio'] + label {
  background: url(../img/bg_radio_01_off.png) no-repeat 7px 50% #fff;
}
.formArea input[type='radio']:checked + label {
  background: url(../img/bg_radio_01_on.png) no-repeat 7px 50% #fff;
}
.formArea input[type='checkbox'] + label {
  background: url(../img/bg_checkbox_01_off.png) no-repeat 10px 50% #fff;
}
.formArea input[type='checkbox']:checked + label {
  background: url(../img/bg_checkbox_01_on.png) no-repeat 10px 50% #fff;
}

/* テキストエリア */
.formArea textarea {
  padding: 5px 10px;
  resize: vertical;
}

/* バリデーション */
.formArea input::-webkit-input-placeholder {
  color: #999;
}
.formArea input:-ms-input-placeholder {
  color: #999;
}
.formArea input::-moz-placeholder {
  color: #999;
}
.formError {
  z-index: 1;
}

/* .formName .formName2 */

/* .formOccupation */
.formArea .formOccupation + dd li {
  float: left;
}

.formArea .formOccupation + dd input[type='radio'] + label {
  display: block;
}

/* .formAsset */
.formArea .formAsset + dd {
  padding-bottom: 27px;
}

/* 個人情報の取扱について */
#formPrivacy {
  position: relative;
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
  margin: 35px 0 25px 0;
}
#formPrivacy a {
  color: #407a93;
  text-decoration: underline;
}
#formPrivacy a:hover {
  text-decoration: none;
}

/* 送信ボタン */
#submitButton {
  position: relative;
  width: 500px;
  margin: 0 auto;
}
#submitButton input {
  width: 500px;
  height: 70px;
  line-height: 1.8;
  /*background: #333;*/
  border-radius: 3px;
  padding: 0;
  border: none;
  color: #fff;
  font-size: 20px;
  display: block;
  cursor: pointer;
  position: relative;
}
#submitButton:after {
  position: absolute;
  content: '';
  top: 30px;
  right: 32px;
  width: 100px;
  height: 100px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 5;
}
#submitButton input:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 879px) {
  #submitButton,
  #submitButton input {
    width: 100%;
  }
}

/*------------------------------
#formContents
------------------------------*/
#formContents {
  width: 950px;
  margin: 20px auto;
}

#formContents #formTit {
  margin: 20px 0;
  font-size: 20px;
  font-weight: bold;
}

/* .formArea */
.formArea {
  margin: 0 auto;
}

.formArea dt,
.formArea dd {
  text-align: left;
}

.formArea dt {
  width: 260px;
  margin-top: 22px;
  padding: 10px 0 0 10px;
  line-height: 34px;
  float: left;
  position: relative;
  box-sizing: border-box;
  font-size: 15px;
  color: #333;
  font-weight: 400;
  z-index: 50;
}

.formArea dt:after {
  width: 40px;
  height: 20px;
  line-height: 20px;
  letter-spacing: 2px;
  font-size: 12px;
  border-radius: 3px;
  top: 17px;
}

@media only screen and (max-width: 879px) {
  .formArea dt:after {
    top: 5px;
  }
}

.formArea dd {
  padding: 25px 0 25px 285px;
  border-bottom: 1px solid #ddd;
  margin-left: 0;
}

.formArea dd table th,
.formArea dd table td {
  font-size: 13px;

  font-weight: normal;
}
.formArea dd table th {
  margin-right: 10px;
}

/* ---- sp 767-------------- */
@media only screen and (max-width: 879px) {
  .formArea dt {
    width: 100%;
    float: unset;
    padding: 0;
    font-size: 16px;
    font-weight: bold;
  }

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

  .formArea dt label {
    margin: 0;
  }

  .formArea dd {
    padding-left: 0;
  }

  .formArea dd table th,
  .formArea dd table td {
    display: block;
  }
}

.formArea input[type='text'],
.formArea input[type='number'],
.formArea select,
.formArea textarea,
.formArea input[type='radio'] + label,
.formArea input[type='checkbox'] + label {
  width: 197px;
  height: 45px;
  line-height: 45px;
  font-size: 15px;
  font-family: inherit;
  border-radius: 3px;
  vertical-align: middle;
}
/* IE用 プレースホルダーの色変更 */
.formArea textarea::-webkit-input-placeholder {
  color: #999;
}
.formArea textarea::placeholder {
  color: #999;
}
.formArea textarea::-ms-input-placeholder {
  color: #999;
}
.formArea textarea:-ms-input-placeholder {
  color: #999;
}

/* ---- sp 767-------------- */
@media only screen and (max-width: 879px) {
  .formArea input[type='text'],
  .formArea input[type='number'],
  .formArea select,
  .formArea textarea,
  .formArea input[type='radio'] + label,
  .formArea input[type='checkbox'] + label {
    width: 100%;
  }
}

/* お問合せ内容(種別) */
.formArea .divContent {
  overflow: hidden;
}
.formArea .divContent li {
  float: left;
  margin: 0 5px 5px 0;
}
.formArea .divContent li:nth-child(even) {
  margin-right: 0;
}
.formArea .divContent input[type='checkbox'] + label {
  width: 295px;
}
.formArea .divContent p {
  padding: 15px 0 10px;
}

/* お問合せ内容(種別) */
.formArea .listBox {
  overflow: hidden;
  padding-left: 0;
}
.formArea .listBox li {
  float: left;
  margin: 0 5px 5px 0;
}
.formArea .listBox li:last-child {
  margin-right: 0;
}
.formArea .listBox input[type='checkbox'] + label {
  width: 295px;
}

/* .formChoice */
.formArea .formChoice + dd tr:first-child th,
.formArea .formChoice + dd tr:first-child td {
  padding-bottom: 15px;
}

.formArea .formChoice + dd tr:first-child td {
  padding-right: 15px;
}

.formArea .formChoice + dd select {
  width: 80px;
}

/* .formName .formName2 */
.formArea .formName + dd tr:first-child td,
.formArea .formName2 + dd tr:first-child td {
  padding-right: 10px;
  padding-bottom: 5px;
}

.formArea .formName + dd input {
  background: #fafaf6;
  width: 300px;
  height: 45px;
}

/* ---- sp 767-------------- */
@media only screen and (max-width: 879px) {
  .formArea .formName + dd tr:first-child td,
  .formArea .formName2 + dd tr:first-child td {
    padding-right: 0;
  }

  .formArea .formName + dd input {
    width: 100%;
  }
}

/* tel・fax */
.formArea .formTel,
.formArea .formFax {
  margin-top: 22px;
  padding-top: 3px;
}
.formArea .formFax {
  margin-top: 22px;
}

.formArea .formTel + dd input,
.formArea .formFax + dd input {
  width: 298px;
  height: 55px;
  background: #fafaf6;
  font-size: 20px;
}

.formArea .formTel.req:after {
  top: 10px;
}

/* ---- sp 767-------------- */
@media only screen and (max-width: 879px) {
  .formArea .formTel + dd input,
  .formArea .formFax + dd input {
    width: 100%;
  }
}

/* .formEmail */
.formArea dt.formEmail {
  margin-top: 15px;
}
.formArea .formEmail + dd {
  /* padding-bottom: 10px; */
}
.formArea .formEmail + dd input {
  max-width: 600px;
  width: 100%;
  height: 55px;
  font-size: 19px;
  background: #fafaf6;
}

/* ---- sp 767-------------- */
@media only screen and (max-width: 879px) {
  .formArea .formEmail + dd input {
    width: 100%;
  }
}

/* .formContact */
.formArea .formContact + dd li {
  display: inline-block;
}

.formArea .formContact + dd #otherRadio + label {
  width: 170px;
}

/* .テキストボックス */
.formArea .formNotes + dd textarea,
.formArea .formOthers + dd textarea {
  height: 150px;
  min-height: 150px;
  max-width: 600px;
  width: 100%;
  margin-bottom: -5px;
  border-radius: 3px;
  line-height: 1.8;
}

/* ---- sp 767-------------- */
@media only screen and (max-width: 879px) {
  .formArea .formNotes + dd textarea,
  .formArea .formOthers + dd textarea {
    width: 100%;
  }
}

/* .住所 */
.formArea .formAddress + dd th,
.formArea .formAddress + dd td {
  padding-top: 5px;
}
.formArea .formAddress + dd th {
  text-align: left;
  width: 100px;
}
.formArea .formAddress + dd tr:first-child th,
.formArea .formAddress + dd tr:first-child td {
  padding-top: 0;
}
.formArea .formAddress + dd tr:nth-child(n + 2) td input {
  max-width: 500px;
  width: 100%;
}
.formArea .formAddress + dd .singleBox {
  margin-bottom: 10px;
}

/* ---- tablet ------------- */
@media only screen and (max-width: 1024px) {
  .formArea .formAddress + dd th,
  .formArea .formAddress + dd td {
    display: block;
  }
}

/* ---- sp 767-------------- */
@media only screen and (max-width: 879px) {
  .formArea .formAddress + dd th,
  .formArea .formAddress + dd td {
    display: block;
  }

  .formArea .formAddress + dd tr:nth-child(n + 2) td input {
    width: 100%;
  }
}

/* 連絡希望時間 */
.formArea dd .telTime {
  margin-top: 15px;
}
.formArea dd .telTime th {
  width: 8em;
}

/* ご希望の連絡方法 */
.formArea .listBox {
  overflow: hidden;
}
.formArea .listBox li {
  float: left;
  margin-right: 5px;
}

@media only screen and (max-width: 879px) {
  .formArea .listBox li {
    width: 100%;
  }
}

/* 面談希望日時 */
.formArea .formConsultation {
}
.formArea .formConsultation + dd div {
  margin: 5px 0 0;
  font-size: 13px;
}
.formArea .formConsultation + dd p {
  margin: 14px 0 12px;
  font-size: 13px;
}
.formArea .formConsultation + dd span {
  margin-left: 10px;
}

/* .年齢 */
.formArea .formAge + dd input {
  width: 100px;
}

/* .formOccupation */
.formArea .formOccupation + dd ul {
  width: 580px;
}

.formArea .formOccupation + dd ul:after {
  content: '';
  display: block;
  clear: both;
}

.formArea .formOccupation + dd li {
  margin-right: 10px;
}

.formArea .formOccupation + dd li:nth-child(n + 4) {
  padding-top: 15px;
}

.formArea .formOccupation + dd input[type='radio'] + label {
  margin-right: 0;
}

.formArea .formOccupation + dd input[type='radio']#occupation05 + label {
  width: 220px;
}

.formArea .formOccupation + dd input[type='radio']#occupation03 + label,
.formArea .formOccupation + dd input[type='radio']#occupation06 + label {
  width: 170px;
}

.formArea .formOccupation + dd .occupation00:before {
  content: '：';
  width: 20px;
  line-height: 40px;
  display: block;
  float: left;
}

.formArea .formOccupation + dd input#occupation00 {
  width: 380px;
}

/* .formDelivery */
.formArea .formDelivery + dd li {
  display: inline-block;
}

/* ===================================
物件無料査定で追記
=================================== */
#formid .txtBox {
  font-size: 20px;
  color: #333;
  background: #e6e6e6;
  text-align: center;
  line-height: 60px;
  margin: 15px 0 5px;
}
.formArea dd.last {
  border: none;
}
.formArea dd span {
  padding-left: 10px;
  vertical-align: middle;
}
.formArea dd span.firstTxt {
  padding-left: 0;
}

/*  物件種別  */
.formArea .formDiv + dd table th {
  font-size: 14px;
  width: 4em;
  vertical-align: top;
  padding: 15px 0 0;
}
.formArea .formDiv + dd input[type='radio'] + label,
.formArea .formDiv + dd input[type='checkbox'] + label {
  width: 270px;
}
.formArea .formDiv + dd #divDetail p {
  margin: 15px 0 5px;
}
.formArea .formDiv + dd #divDetail textarea {
  height: 75px;
  min-height: 75px;
  max-width: 600px;
  width: 100%;
  margin-bottom: -5px;
  border-radius: 3px;
  line-height: 1.8;
}

/* ---- sp 767-------------- */
@media only screen and (max-width: 879px) {
  .formArea .formDiv + dd input[type='radio'] + label,
  .formArea .formDiv + dd input[type='checkbox'] + label {
    width: 100%;
  }
}

/*  間取り  */
.formArea .formMadori + dd select {
  width: 280px;
  display: block;
}
.formArea .formMadori + dd input[type='text'] {
  width: 95%;
}
.formArea .formMadori + dd p {
  margin: 18px 0 5px;
}
/* 間取り テキストボックス */
.formArea .formMadori + dd textarea {
  height: 75px;
  min-height: 75px;
  max-width: 600px;
  width: 100%;
  margin-bottom: -5px;
  border-radius: 3px;
  line-height: 1.8;
}

/*  面積  */
.formArea .formMenseki + dd td {
  margin-bottom: 5px;
  display: block;
}
.formArea .formMenseki + dd .conversion {
  display: inline-block;
  margin-left: 50px;
  padding-left: 20px;
  background: url(../img/ico_conversion_01.png) no-repeat 0 0;
  background-size: 13px;
}
.formArea .formMenseki + dd .conversion:hover {
  cursor: pointer;
  opacity: 0.7;
}
.formArea .formMenseki + dd input[type='text'] {
  width: 150px;
}

/*  築年  */
.formArea .formTikunen + dd input[type='text'],
.formArea .formTikunen + dd input[type='number'] {
  width: 100px;
}
.formArea .formTikunen + dd .singleBox {
  display: inline-block;
  margin-left: 40px;
}

/* 建物の向き */
.formArea .formDirection + dd select {
  width: 300px;
}

/* 土地権利 */
.formArea .formLandRight + dd input[type='radio'] + label {
  width: 300px;
}
.formArea .formLandRight + dd input[type='text'],
.formArea .formLandRight + dd input[type='number'] {
  width: 600px;
}

/* 名義 */
.formArea .formName + dd input[type='radio'] + label,
.formArea .formName + dd input[type='checkbox'] + label {
  width: 300px;
}

/* 売却予定時期 */
.formArea .formSeason + dd input[type='radio'] + label,
.formArea .formSeason + dd input[type='checkbox'] + label {
  width: 300px;
}
.formArea .formSeason + dd select {
  width: 140px;
}

/* 売却理由 */
.formArea .formReason + dd select {
  width: 300px;
}

/* 構造 */
.formArea .formConstruction + dd select {
  width: 300px;
}

/* 所在階 */
.formArea .formFloor + dd input[type='text'],
.formArea .formFloor + dd input[type='number'] {
  width: 100px;
}

/* 現況 */
.formArea .formStatus.rent02 + dd .listBox li input[type='radio'] + label,
.formArea .formStatus.invest01 + dd .listBox li input[type='radio'] + label,
.formArea .formStatus.invest02 + dd .listBox li input[type='radio'] + label {
  width: 300px;
}
.formArea .formStatus.rent02 + dd input[type='text'] {
  width: 100%;
}
.formArea .formStatus.invest01 + dd input[type='text'] {
  width: 140px;
}
.formArea .formStatus.invest01 + dd tr:first-child td {
  padding-bottom: 5px;
}
/* 現況 テキストボックス */
.formArea .formStatus + dd textarea {
  height: 75px;
  min-height: 75px;
  max-width: 600px;
  width: 100%;
  margin-bottom: -5px;
  border-radius: 3px;
  line-height: 1.8;
}

/* 修繕・管理費等 */
.formArea .formManagementFee + dd td {
  margin-bottom: 5px;
  display: block;
}
.formArea .formManagementFee + dd tr:last-child td {
  margin-bottom: 0;
}

/* 追加修正 */
/* 物件の所在地 */
select#state2 {
  padding-left: 10px;
}

/* ===================================
会員登録で追記
=================================== */
.formArea .formReqPrice + dd span {
  padding: 0 10px;
}
