@charset "utf-8";

/* /////////////////////////////
      下層共通
///////////////////////////// */
.common_info a{
  border: 7px solid #0B308E;
  box-sizing: border-box;
  display: block;
  margin: 20px auto;
  max-width: 300px;
  padding: 20px;
  position: relative;
  text-align: center;
}
.common_info a::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 1px;
  background-color: #5A5A5A;
  right: 20px;
  top: calc(50% + 3px);
  transition: .3s;
}
.common_info a::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 1px;
  transform: rotate(45deg);
  transform-origin: bottom right;
  background-color: #5A5A5A;
  right: 20px;
  top: calc(50% + 3px);
  transition: .3s;
}
.common_info a:hover{
  color: #fff;
  background: #0B308E;
  opacity: 1 !important;
}
.common_info a:hover::before, .common_info a:hover::after {
  right: 5px;
  background-color: #fff;
}
.page_mv .abs{
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

@media screen and (max-width:1000px){
}
@media screen and (max-width:768px){
}

/* /////////////////////////////
      下層ページ
///////////////////////////// */
/* 採用情報 */
/* #container .recruit_detail{
   margin-top:-130px;
   padding-top:130px;
} */
.recruit_mv_bg{
  background: url(../img/recruit/recruit_mv.jpg) right / cover no-repeat;
  height: 480px;
  margin-left: auto;
  width: 50%;
}
.recruit .bg_blue{
  background: #0b308e;
}
.recruit_detail li {
  border: 7px solid #787878;
  box-sizing: border-box;
  color: #787878;
  padding: 20px;
  width: calc(30% - 10px);
}
.recruit_detail li:hover{
  cursor: pointer;
  opacity: 0.7;
}
.recruit_detail li.is-active {
  background-color: #0b308e;
  border: none;
  border: 7px solid #0b308e;
  color: #fff;
}
.recruit_detail table{
  margin: 0 auto;
  max-width: 700px;
  width: 100%;
}
.recruit_detail tr{
  border-bottom: 1px solid #898989;
}
.recruit_detail tr:last-child{
  border: none;
}
.recruit_detail th,.recruit_detail td{
  padding: 20px 0;
}
.recruit_detail th{
  box-sizing: border-box;
  padding-right: 20px;
  width: 80px;
}
.recruit_detail th span{
  font-weight: bold;
}
.recruit_detail .line{
  border-right: 4px solid #969696;
  position: relative;
}
.recruit_detail .line::after,.recruit_detail .line::before{
  content: "";
  border: 4px solid #fff;
  height: 10px;
  position: absolute;
}
.recruit_detail .line::after{
  top: 0;
}
.recruit_detail .line::before{
  bottom: 0;
}
.recruit_detail td:last-child{
  padding-left: 20px;
  width: calc(100% - 84px);
}
.entry{
  background: #f0f0f0;
  padding: 40px 0;
}
.stepArea{
   background: #fff;
   box-sizing: border-box;
   padding: 20px;
}
.stepArea li{
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.stepArea .eng{
  align-items: center;
  background: #969696;
  color: #fff;
  display: flex;
  font-weight: bold;
  justify-content: center;
  letter-spacing: 2px;
  height: 130px;
  position: relative;
  width: 130px;
}
.stepArea .eng::after{
  content: "";
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 20px solid #969696;
  bottom: -20px;
  height: 0;
  position: absolute;
  width: 0;
}
.stepArea li:last-child .eng::after{
  display: none;
}

/* 不動産所有者様 */
.owner_mv_bg{
  background: url(../img/owner/owner_mv.jpg) right / cover no-repeat;
  height: 480px;
  margin-left: auto;
  width: 50%;
}
.iconArea li{
  width: calc(100% / 7);
}
.iconArea img{
  max-height: 120px;
}
.owner_img{
  display: block;
  margin: 10px auto;
  max-width: 620px;
}
.faq li{
  margin-bottom: 30px;
}
.faq .faq_q{
  background: #0b308e;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding: 4px 10px 4px 40px;
  margin-bottom: 10px;
}
.faq .faq_a{
  border: 1px solid #0b308e;
  color: #0b308e;
  font-size: 24px;
  font-weight: bold;
  height: 40px;
  text-align: center;
  margin-right: 10px;
  max-width: 40px;
  width: 100%;
}
/* 青いリンクボタン */
.blue_btn{
  box-sizing: border-box;
  background: #0b308e;
  color: #fff;
  outline: 2px solid #fff;
  outline-offset: -6px;
  margin-left: auto;
  max-width: 450px;
  padding:2%;
  text-align: center;
  width:100%;
}
.blue_btn:hover{
  background: #fff;
  color: #0b308e;
  outline: 2px solid #0b308e;
}
.blue_btn a{
  display: block;
  position: relative;
  opacity: 1 !important;
}
.blue_btn a::before {
    position: absolute;
    content: "";
    width: 40px;
    height: 1px;
    background-color: #fff;
    right: 20px;
    top: calc(50% + 3px);
    transition: .3s;
}
.blue_btn a::after {
    position: absolute;
    content: "";
    width: 24px;
    height: 1px;
    transform: rotate(45deg);
    transform-origin: bottom right;
    background-color: #fff;
    right: 20px;
    top: calc(50% + 3px);
    transition: .3s;
}
.blue_btn a:hover::before, .blue_btn a:hover::after {
    right: 5px;
    background-color: #0b308e;
}

/* 出店企業者様 */
.store_mv_bg{
  background: url(../img/store/store_mv.jpg) right / cover no-repeat;
  height: 480px;
  margin-left: auto;
  width: 50%;
}
.store_img{
  display: block;
  margin: 20px auto;
  max-width: 280px;
}
.store_detail .w-45{
  border: 5px solid #0b308e;
  border-radius: 25px;
  box-sizing: border-box;
  box-shadow:0px 0px 10px;
  padding: 30px;
}
.store_ttl{
  border: solid #0b308e;
  border-width: 7px 1px 7px 1px;
  padding: 10px;
  text-align: center;
}
.store_detail02{
  border-bottom: 1px solid #0b308e;
  border-left: 1px solid #0b308e;
  border-right: 1px solid #0b308e;
  padding: 40px 30px;
}
.store .arrow{
  width: 0;
  height: 0;
  border-left: 35px solid transparent;
  border-right: 35px solid transparent;
  border-top: 20px solid #787878;
  margin: 30px auto;
}
/* お問い合わせ */
.step3{
  list-style-type: none;
  display:table;
  width:100%;
  padding:0;
  margin:0;
  overflow:hidden;
}
.step3 li:last-child{
  padding-right: 1em;
}
.step3 li:last-child:before,
.step3 li:last-child:after{
  display:none;
}
.step3 li:before,
.step3 li:after{
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  margin: auto;
}
.step3 .current{
  background: #787878;
  color: #fff;
}
.step3 .current:after{
  border-color: transparent transparent transparent #787878;
}
.step3 li{
  background: #dcdcdc;
  color: #000;
  display:table-cell;
  font-weight: bold;
  padding: 1em 0.5em 1em 2em;
  position:relative;
  text-align: center;
}
.step3 li:before{
  top:-15px;
  right:-1em;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  border-width: 40px 0 40px 1em;
  z-index: 10;
}
.step3 li:after{
  top:-15px;
  right:-.8em;
  border-style: solid;
  border-color: transparent transparent transparent #dcdcdc;
  border-width: 40px 0 40px 1em;
  z-index: 10;
}
.contact table{
  margin-top: 20px;
  width: 100%;
}
.contact tr:first-child{
  border-top: 1px solid #e6e6e6;
}
.contact tr{
  border-bottom: 1px solid #e6e6e6;
}
.contact th{
  border-right: 1px solid #e6e6e6;
  width: 300px;
}
.contact td{
  width: calc(100% - 300px);
}
.contact th ,.contact td{
  box-sizing: border-box;
  padding: 10px 20px;
}
.contact th ,.contact td ,.contact table p ,.contact span{
  font-weight: bold;
  text-align: left;
}
.contact table table tr,.contact table table th,.contact table table tr:first-child{
  border: none;
}
.contact table table th,.contact table table td{
  padding: 5px;
}
.contact table table{
  margin: 0;
}
.contact table table th{
  width: 200px;
}
.contact table table td{
  width: calc(100% - 200px);
}
.must{
  color: #e60012;
}
.contact_policy{
  border: 1px solid #e6e6e6;
  height: 200px;
  max-width: 1000px;
  margin: 30px auto;
  overflow-y: auto;
  resize: both;
}
input[type="button"], input[type="text"],input[type="password"], input[type="submit"], input[type="image"], textarea, input[type="email"],input[type="tel"]{
  border: 1px solid #e6e6e6;
  height: 24px;
  width: 100%;
}
.wpcf7-select{
  width: 110px;
  height: 30px;
}
input[type="reset"]{
  border: 1px solid;
  border-radius: 6px;
  background: #fff;
  display: block;
  font-weight: bold;
  margin: 20px auto;
  padding: 4px 20px;
  text-align: center;
}
input[type="submit"]{
  background: #000;
}
input[type="button"]{
  background: #787878;
}
input[type="submit"],input[type="button"]{
  border: none;
  border-radius: 6px !important;
  color: #fff;
  cursor: pointer;
  display: block;
  height: 45px;
  margin: auto;
  max-width: 240px;
  padding: 4px 20px;
  width: 100%;
}
input[type="submit"]:hover,input[type="button"]:hover{
  opacity: 0.7;
}
.wpcf7 form.sent .wpcf7-response-output,.wpcf7-form .sent .wpcf7c-elm-step2{
  display: none !important;
}

/* お問い合わせページ */
.lineArea{
  border: 10px solid #969696;
  padding: 10px;
  box-sizing: border-box;
}
.numbers{
  background: #009944;
  color: #fff;
  margin-right: 5px;
  padding: 2px 6px;
  border-radius: 6px;
}
.contact .bg_green{
  box-sizing: border-box;
  padding: 20px;
}
.contact .bg_white{
  border-radius: 30px;
  box-sizing: border-box;
  padding: 10px;
  max-width: 340px;
  margin: 10px auto;
}
.qr{
  max-width: 150px;
  width: 100%;
}
span.wpcf7-list-item{
  margin: 0 6px 0 0 !important;
}
.contact textarea{
  max-width: 520px;
  width: 100%;
  height: 90px;
}
.contact label{
  vertical-align: middle;
}

/* 企業情報 */
.company_mv_bg{
  background: url(../img/company/company_mv.jpg) right / cover no-repeat;
  height: 480px;
  margin-left: auto;
  width: 50%;
}
.white_line{
  border-bottom: 1px solid #fff;
  max-width: 130px;
  width: 100%;
  margin: auto;
}
.company_detail li {
  border: 7px solid #787878;
  box-sizing: border-box;
  color: #787878;
  padding: 20px 10px;
  width: calc(50% - 10px);
}
.company_detail li:hover{
  cursor: pointer;
  opacity: 0.7;
}
.company_detail li.is-active {
  background-color: #0b308e;
  border: none;
  border: 7px solid #0b308e;
  color: #fff;
}
.company_detail table{
  margin: 0 auto;
  max-width: 700px;
  width: 100%;
}
.company_detail tr{
  border-bottom: 1px solid #898989;
}
.company_detail tr:first-child{
  border-top:  1px solid #898989;
}
.company_detail th,.company_detail td{
  padding: 30px;
}
.company_detail th{
  background: #E6E6E6;
  box-sizing: border-box;
  text-align: center;
  vertical-align: middle;
  width: 180px;
}
.company_detail td{
  width: calc(100% - 180px);
}
.map iframe{
  max-width: 1000px;
  width: 100%;
  height: 450px;
}
.staff-item01 .w-48{
  box-sizing: border-box;
  padding: 20px;
}
.staff-item02{
  padding: 140px 0;
}
.message_item01{
  background: #969696;
  box-sizing: border-box;
  color: #fff;
  padding: 50px 80px;
  margin-top: 320px;
  height: 300px;
  width: 40%;
  z-index: 1;
}
.message_item01 .abs{
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.message_item02{
  bottom: 0;
  box-sizing: border-box;
  padding: 20px;
  position: absolute;
  right: 0;
  width: 55%;
}
.message01 img{
  max-width: 300px;
  right: 130px;
  position: absolute;
  top: -255px;
  width: 100%;
}

.messageArea{
  width: 800px;
  margin: 20px auto;
  padding-top: 40px;
}

.messageArea li:first-child img{
  max-width: 300px;
  right: 130px;
  position: absolute;
  top: -300px;
  width: 100%;
}
/* .messageArea li:nth-child(2) .message_item01{
  margin-left: auto;
}
.messageArea li:nth-child(2) .message_item02{
  left: 0;
}
.messageArea li:nth-child(2) .message01 img{
  right: 450px;
} */
/* ページ下部のリンク */
.bottom_menu02 a{
  position: relative;
}
.bottom_menu02 .right a::before {
  position: absolute;
  content: "";
  width: 80px;
  height: 1px;
  background-color: #5A5A5A;
  right: -100px;
  top: calc(50% + 3px);
  transition: .3s;
}
.bottom_menu02 .right a::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 1px;
  transform: rotate(45deg);
  transform-origin: bottom right;
  background-color: #5A5A5A;
  right: -100px;
  top: calc(50% + 3px);
  transition: .3s;
}
.bottom_menu02 .right a:hover::before, .bottom_menu02 .right a:hover::after {
  right: -110px;
}
.bottom_menu02 .left a::before {
  position: absolute;
  content: "";
  width: 80px;
  height: 1px;
  background-color: #5A5A5A;
  left: -100px;
  top: calc(50% + 3px);
  transition: .3s;
}
.bottom_menu02 .left a::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 1px;
  transform: rotate(135deg);
  transform-origin: bottom right;
  background-color: #5A5A5A;
  left: -125px;
  top: calc(50% + 3px);
  transition: .3s;
}
.bottom_menu02 .left a:hover::after{
  left: -135px;
}
.bottom_menu02 .left a:hover::before{
  left: -110px;
}
@media screen and (max-width:768px){
  .messageArea{
    margin: 0 auto;
    width: 100%;
  }

  .messageArea .message01:first-child img{
    margin: 0 auto;
    width: 50%;
    right: 25%;
    top: -220px;
  }

  .message_item01{
    padding: 20px;
    height: 100px;
    margin-top: 52vw;
    width: 100%;
  }
  .message_item02 {
    position: static;
    width: 100%;
  }

  .message01{
    margin-top: 30px;
  }
  .message01 img{
    right: 25%;
    height: auto;
    width: 50%;
  }
}
@media screen and (max-width:768px){
  .recruit_mv_bg,.owner_mv_bg,.company_mv_bg{
    height: 200px;
  }
  .recruit_detail li,.company_detail li{
    margin-bottom: 10px;
    padding: 10px;
    width: 100%;
  }
  .recruit_detail .font27,.company_detail .font27{
    font-size: 16px;
  }
  .company_detail th,.company_detail td{
    display: block;
    width: 100%;
    padding: 10px;
  }
  .company_detail tr{
    display: block;
    width: 100%;
  }
  .map iframe{
    height: 250px;
  }
  .stepArea .eng{
    margin-bottom: 20px;
    height: 30px;
    width: 100%;
  }
  .stepArea li {
    display: block;
    text-align: center;
  }
  .stepArea .eng::after {
    content: "";
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 14px solid #969696;
    bottom: -14px;
  }
  .stepArea li .w-65{
    width: 100%;
  }
  .bottom_menu02 .left a::before{
    left: -40px;
    width: 20px;
  }
  .bottom_menu02 .left a::after{
    left: -55px;
    width: 14px;
  }
  .bottom_menu02 .right a::before{
    right: -40px;
    width: 20px;
  }
  .bottom_menu02 .right a::after{
    right: -40px;
    width: 14px;
  }
  .iconArea li{
    margin-bottom: 30px;
    width: calc(100% / 4);
  }
  .owner_detail .w-45,.store_detail .w-45,.contact .w-48{
    margin-top: 20px;
    width: 100%;
  }
  .blue_btn{
    margin: 0 auto;
  }
  .owner .font17{
    font-size: 14px;
  }
  .blue_btn{
    padding: 10px;
  }
  .blue_btn.font23{
    font-size: 16px !important;
  }
  .blue_btn a::before{
    width: 20px;
  }
  .blue_btn a::after{
    width: 14px;
  }
  .faq .faq_q{
    padding: 10px;
    font-size: 16px;
  }
  .faq .faq_a {
    font-size: 16px;
    height: 20px;
    max-width: 20px;
    line-height: 1.2;
  }
  .contact th{
    padding: 10px 10px 0 10px;
    border: none;
  }
  .contact td{
    padding: 10px;
  }
  .contact th,.contact td{
    box-sizing: border-box;
    display: block;
    width: 100%;
  }
  .step3 li{
    padding: 1em 0px 1em 20px;
  }
  .staff-item01 .w-50, .staff-item01 .w-48{
    width: 100%;
  }
  .staff-item02{
    padding: 30px 0;
  }
}

@media screen and (max-width:420px){
  .message_item01{
    margin-top: 220px;
  }
  .message01 img{
    top: -220px;
  }
}



/* /////////////////////////////
      物件情報建物_売買
///////////////////////////// */

.single_ttl{
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  margin-bottom: 100px;
}

.property .head{
  margin-bottom: 40px;
}

.property .head .left{
  width: 440px;
}

.property .head .right{
  width: 510px;
}


.property .head p span.num{
  width: 150px;
  background:#0b308e;
  color: #fff;
  line-height: 40px;
  text-align: center;
  display: block;
}


.property .head p span.cat{
  width: 150px;
  background:#c4002c;
  color: #fff;
  line-height: 40px;
  text-align: center;
  display: block;
}

.property .head p span.cat_2{
  width: 150px;
  border: 1px solid #c4002c;
  color: #c4002c;
  line-height: 40px;
  text-align: center;
  display: block;
}

.property .head .print-area{
  width: 150px;
  background:#0b308e;
  color: #fff;
  line-height: 40px;
  text-align: center;
  display: block;
}

.property table tr{
  border: 1px solid #000;
  padding: 10px 20px;
  width: 100%;
  border-spacing: 10px 10px;
}


.property table td{
  border: 1px solid #000;
  padding: 10px 20px;
}

.property table th{
  background-color: #e1e1e1;
  border: 1px solid #000;
  padding: 10px 20px;
  width: 100px;
}

.property table{
  margin-bottom: 20px;
  width: 100%;
  font-size: 13px;
}


.property .inner .left{
  width: 440px;
  margin-right: 50px;
}

.property .inner .right{
  width: 510px;
}

.property .outview{
  margin-bottom: 30px;
}

.property .inview{
  margin-bottom: 30px;
}

.property .map{
  margin-bottom: 30px;
}

@media screen and (max-width:767px ){
  .single_ttl{
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  margin-bottom: 100px;
}

.property .head{
  margin-bottom: 40px;
}

.property .head .left{
  width: 100%;
}

.property .head .right{
  width: 100%;
}


.property .head p span.num{
  width: 150px;
  background:#0b308e;
  color: #fff;
  line-height: 40px;
  text-align: center;
  display: block;
}


.property .head p span.cat{
  width: 150px;
  background:#c4002c;
  color: #fff;
  line-height: 40px;
  text-align: center;
  display: block;
}

.property .head p span.cat_2{
  width: 150px;
  border: 1px solid #c4002c;
  color: #c4002c;
  line-height: 40px;
  text-align: center;
  display: block;
}

.property .head .print-area{
  display: none;
}

.property table tr{
  border: 1px solid #000;
  padding: 10px 20px;
  width: 100%;
  border-spacing: 10px 10px;
}


.property table td{
  border: 1px solid #000;
  padding: 10px 20px;
}

.property table th{
  background-color: #e1e1e1;
  border: 1px solid #000;
  padding: 10px 20px;
  width: 65px;
}

.property table{
  margin-bottom: 20px;
  width: 100%;
  font-size: 13px;
}

.property .inner{
  width: 100%;

}


.property .inner .left{
  width: 100%;

}

.property .inner .right{
  width: 87%;
}

.property .outview{
  width: 100%;
  margin: 30px auto;
}

.property .inview{
  width: 100%;
  margin: 30px auto;
}

.property .outview img{
  width: 100%;
  display: block;
  margin: 10px auto;
}

.property .inview img{
  width: 100%;
  display: block;
  margin: 10px auto;
}

.property .map{
  margin-bottom: 30px;
}
}


/* /////////////////////////////
      物件情報建物_賃貸
///////////////////////////// */

.single_ttl{
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  margin-bottom: 100px;
}

.property_rent .head{
  margin-bottom: 40px;
}

.property_rent .head .left{
  width: 440px;
}

.property_rent .head .right{
  width: 510px;
}


.property_rent .head p span.num{
  width: 150px;
  background:#0b308e;
  color: #fff;
  line-height: 40px;
  text-align: center;
  display: block;
}


.property_rent .head p span.cat{
  width: 150px;
  background:#0b308e;
  color: #fff;
  line-height: 40px;
  text-align: center;
  display: block;
}

.property_rent .head p span.cat_2{
  width: 150px;
  border: 1px solid #0b308e;
  color: #0b308e;
  line-height: 40px;
  text-align: center;
  display: block;
}

.property_rent .head .print-area{
  width: 150px;
  background:#0b308e;
  color: #fff;
  line-height: 40px;
  text-align: center;
  display: block;
}

.property_rent table tr{
  border: 1px solid #000;
  padding: 10px 20px;
  width: 100%;
  border-spacing: 10px 10px;
}


.property_rent table td{
  border: 1px solid #000;
  padding: 10px 20px;
}

.property_rent table th{
  background-color: #e1e1e1;
  border: 1px solid #000;
  padding: 10px 20px;
  width: 100px;
}

.property_rent table{
  margin-bottom: 20px;
  width: 100%;
  font-size: 13px;
}


.property_rent .inner .left{
  width: 440px;
  margin-right: 50px;
}

.property_rent .inner .right{
  width: 510px;
}

.property_rent .outview{
  margin-bottom: 30px;
}

.property_rent .inview{
  margin-bottom: 30px;
}

.property_rent .map{
  margin-bottom: 30px;
}

@media screen and (max-width:767px ){
  .single_ttl{
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  margin-bottom: 100px;
}

.property_rent .head{
  margin-bottom: 40px;
}

.property_rent .head .left{
  width: 100%;
}

.property_rent .head .right{
  width: 100%;
}


.property_rent .head p span.num{
  width: 150px;
  background:#0b308e;
  color: #fff;
  line-height: 40px;
  text-align: center;
  display: block;
}


.property_rent .head p span.cat{
  width: 150px;
  background:#0b308e;
  color: #fff;
  line-height: 40px;
  text-align: center;
  display: block;
}

.property_rent .head p span.cat_2{
  width: 150px;
  border: 1px solid #0b308e;
  color: #0b308e;
  line-height: 40px;
  text-align: center;
  display: block;
}

.property_rent .head .print-area{
  display: none;
}

.property_rent table tr{
  border: 1px solid #000;
  padding: 10px 20px;
  width: 100%;
  border-spacing: 10px 10px;
}


.property_rent table td{
  border: 1px solid #000;
  padding: 10px 20px;
}

.property_rent table th{
  background-color: #e1e1e1;
  border: 1px solid #000;
  padding: 10px 20px;
  width: 65px;
}

.property_rent table{
  margin-bottom: 20px;
  width: 100%;
  font-size: 13px;
}

.property_rent .inner{
  width: 100%;

}


.property_rent .inner .left{
  width: 100%;

}

.property_rent .inner .right{
  width: 87%;
}

.property_rent .outview{
  width: 100%;
  margin: 30px auto;
}

.property_rent .inview{
  width: 100%;
  margin: 30px auto;
}

.property_rent .outview img{
  width: 100%;
  display: block;
  margin: 10px auto;
}

.property_rent .inview img{
  width: 100%;
  display: block;
  margin: 10px auto;
}

.property_rent .map{
  margin-bottom: 30px;
}
}

/* /////////////////////////////
      物件一覧
///////////////////////////// */



.property_list .ttl {
  width: 100%;
  border:1px solid #000;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 700;
}

.property_list .ttl p{
  text-align: center;
}

.property_list ul {
  width: 100%;
  padding-top: 60px;
  margin: 0 auto;
}

.property_list ul li{
  width: 28%;
}

.property_list ul li img{
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
	 width: 300px;
    height: 170px;
}

.property_list ul li p{
  padding-top: 10px;
}

@media screen and (max-width: 768px){
  .property_list .ttl {
    width: 100%;
    border:1px solid #000;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 700;
  }

  .property_list .ttl p{
    text-align: center;
  }

  .property_list ul {
    width: 100%;
    padding-top: 30px;
    margin: 0 auto;
  }

  .property_list ul li{
    padding-top: 30px;
    width: 100%;
  }

  .property_list ul li img{
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .property_list ul li p{
    padding-top: 10px;
  }
}

.result_text{
  border: 2px #0b308e solid;
  width: 1000px;
  line-height: 100px;
  text-align: center;
  font-size: 34px;
  position: relative;
}

.result_text img{
  top: 30%;
  left: 25%;
  position: absolute;
  width: 40px;
}

.search {
  width: 1000px;
  margin-bottom: 60px;
}

span#search-result{
  padding-left: 10px;
  padding-right: 10px;
  font-weight: bold;
  font-size: 40px;
  color: #0b308e;
}

span#search-result span{
  font-weight: bold;
  font-size: 40px;
  color: #0b308e;
}

span.ken{
  font-weight: bold;
  font-size: 34px;
  color: #0b308e;
}

.search .item_ttl_map{
  margin-top: 42px;
  margin-bottom: 20px;
  background: #0b308e;
  color: #fff;
  line-height: 30px;
  width: 520px;
  text-align: center;
}

.search .item_ttl{
  margin-bottom: 10px;
  margin-top: 20px;
  background: #0b308e;
  color: #fff;
  line-height: 30px;
  width: 440px;
  text-align: center;
}


.search select {
  height: 40px;
  width: 175px;
  border-radius: 5px;
  border: 1px solid #000000;
}


.search select#use{
  height: 40px;
  width: 440px;
  border-radius: 5px;
  border: 1px solid #000000;
}

.search select#genre{
  height: 40px;
  width: 440px;
  border-radius: 5px;
  border: 1px solid #000000;
}

.map{
  width: 520px;
}

@media screen and (max-width: 768px){
  .result_text{
    border: 2px #0b308e solid;
    width: 100%;
    line-height: 50px;
    text-align: center;
    font-size: 20px;
    position: relative;
    margin-top: 60px;
  }
  .result_text img{
    top: 34%;
    left: 2%;
    position: absolute;
    width: 25px;
  }
  .search {
    width: 100%;
    margin-bottom: 60px;
  }
  span#search-result{
    padding-left: 10px;
    padding-right: 10px;
    font-weight: bold;
    font-size: 40px;
    color: #0b308e;
  }

  span#search-result span{
    font-weight: bold;
    font-size: 40px;
    color: #0b308e;
  }

  span.ken{
    font-weight: bold;
    font-size: 34px;
    color: #0b308e;
  }

  .search .item_ttl_map{
    margin-top: 42px;
    margin-bottom: 20px;
    background: #0b308e;
    color: #fff;
    line-height: 30px;
    width: 100%;
    text-align: center;
  }

  .search .item_ttl{
    margin-bottom: 10px;
    margin-top: 20px;
    background: #0b308e;
    color: #fff;
    line-height: 30px;
    width: 100%;
    text-align: center;
  }


  .search select {
    height: 40px;
    width: 175px;
    border-radius: 5px;
    border: 1px solid #000000;
  }


  .search select#use{
    height: 40px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #000000;
  }

  .search select#genre{
    height: 40px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #000000;
  }

  .map{
    width: 100%;
  }
}



/* 検索機能 */
.gm-style .gm-style-iw-c {
  font-weight: bold !important;
  font-size: 18px;
  color: #000;
  border-radius:8px;
  padding:12px;
  box-shadow:0 2px 7px 1px rgba(0,0,0,0.3);
  width: 150px;
  text-align: center;
  box-sizing:border-box;
  overflow:hidden;
}
.gm-style .gm-style-iw-c a{
  font-weight: bold !important;
  font-size: 18px;
  color: #000;
  margin-bottom: 1em;
}
/*
.gm-style .gm-style-iw-c {
  position:absolute;
  box-sizing:border-box;
  overflow:hidden;
  top:0;
  left:0;
  transform:translate(-50%,-100%);
  background-color:white;
  border-radius:8px;
  padding:12px;
  box-shadow:0 2px 7px 1px rgba(0,0,0,0.3);
  width: 150px;
  height: 50px;
  text-align: center;
  line-height: 27px;
 }
*/

@media screen and (max-width: 768px) {
  .gm-style .gm-style-iw-c {
    position:absolute;
    box-sizing:border-box;
    overflow:hidden;
    top:0;
    left:0;
    transform:translate(-50%,-100%);
    background-color:white;
    border-radius:8px;
    padding:12px;
    box-shadow:0 2px 7px 1px rgba(0,0,0,0.3);
    width: 150px;
    height: 50px;
    text-align: center;
    line-height: 27px;
   }
}

.member_btn{
  display: block;
  border: 2px solid #000;
  line-height: 40px;
  width: 240px;
  margin: 0 auto;
  border-radius: 5px;
}

/* マップ調整 */
.gm-style div > img {
  position: absolute;
}

.searchBtn{
  width: 300px;
  line-height: 50px;
  border-radius: 10px;
  background: #000000;
  color: #fff;
  display: block;
  margin: 0 auto;
  text-align: center;
  border: #000 solid 1px;
}

.searchBtn:hover{
  background: #fff;
  color: #000000;
  border: #000 solid 1px;
}

#result_list::after{
  content: "";
  display: block;
  width: 28%;
  
}