@charset "utf-8";/* = ui-modalcommon
----------------------------------------------- *
 * ui-modalcommon
----------------------------------------------- */
body.is-scrollLocked {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: fixed;
}

.ui-modal {
  position: fixed;
  user-select: none;
  pointer-events: none;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(38, 38, 38, 0.4);
  transition: opacity 250ms 150ms, z-index 250ms 150ms ease-in-out;
  opacity: 0;
  overflow-y: scroll;
}
.ui-modal.is-open {
  user-select: auto;
  pointer-events: auto;
  opacity: 1;
  z-index: 100;
}
.ui-modal .bg {
  position: fixed;
  top: 0;
  z-index: 200;
  width: 100%;
  height: 100%;
}
.ui-modal .content {
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 48px;
  box-sizing: border-box;
  z-index: 300;
}
.ui-modal .content .closeButton {
  display: block;
  position: absolute;
  top: -15px;
  right: -15px;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background-color: #333;
}
.ui-modal .content .closeButton::before, .ui-modal .content .closeButton::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: calc(50% - 1px);
  left: calc(50% - 9px);
  transform-origin: center;
}
.ui-modal .content .closeButton::before {
  transform: rotate(45deg);
}
.ui-modal .content .closeButton::after {
  transform: rotate(-45deg);
}
.sec-contents {
  background-color: #f5f5f5;
}
@charset "UTF-8";
/* = mod-realtorHeading
----------------------------------------------- *
 * 会社検索:見出し
----------------------------------------------- */
/*.mod-realtorHeading {}*/
.mod-realtorHeading .title {
  padding: 15px 64px 15px 10px;
  line-height: 1.2;
  font-size: 1.12rem; /* 18px */
  font-weight: bold;
  border-bottom: 1px solid #d8d8d8;
  position: relative;
}

.mod-realtorHeading .title:after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 0;
  width: 44px;
  height: 44px;
  background-image: url('/smp/assets/img/smartphone/page/realtor/flow/kodate/homeskun.svg?v=3ddf4a0e4a9eb8ef3f309277f97757a8');
}

.mod-realtorHeading .explain {
  margin: 15px 10px;
  line-height: 1.4;
  font-size: 0.87rem; /* 14px */
}
@charset "UTF-8";
/* = mod-realtorPrefSelect
----------------------------------------------- *
 * 会社検索:都道府県で絞り込む
----------------------------------------------- */
.mod-realtorPrefSelect {
  margin: 0 10px 25px 10px;
}

.mod-realtorPrefSelect .prefHeading {
  line-height: 1.6;
  font-weight: bold;
  font-size: 1rem; /* 16px */
  margin-bottom: 10px;
}

.mod-realtorPrefSelect .selectForm {
  position: relative;
}

/* arrow */
.mod-realtorPrefSelect .selectForm:before {
  position: absolute;
  right: 12px;
  bottom: 0;
  top: 0;
  margin: auto;
  width: 6px;
  height: 6px;
  content: "";
  border-top: 2px solid #6b6b6b;
  border-right: 2px solid #6b6b6b;
  transform: rotate(135deg);
}

/* selectの装飾 */
.mod-realtorPrefSelect .selectForm .areaSelect {
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  padding: 12px;
  font-size: 0.87rem; /* 14px */
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  width: 50%;
}
@charset "UTF-8";
/* = mod-realtorList
----------------------------------------------- *
 * 会社検索:不動産会社名一覧
----------------------------------------------- */
.mod-realtorList {
  margin: 0 10px;
  font-size: 1rem; /* 16px */
  padding-bottom: 5px;
}

.mod-realtorList .listHeading {
  line-height: 1.6;
  font-weight: bold;
  font-size: 1rem; /* 16px */
  margin-bottom: 10px;
}

.mod-realtorList .list {
  width: 100%;
  margin-bottom: 10px;
  line-height: 1.4;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}

.mod-realtorList .list .heading {
  font-weight: bold;
  padding: 15px 10px;
  font-size: 1rem; /* 16px */
  position: relative;
  text-decoration: none;
  color: #000;
  display: block;
}

.mod-realtorList .list .heading:after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 0;
  top: 0;
  margin: auto;
  width: 6px;
  height: 6px;
  border-top: 2px solid #6b6b6b;
  border-right: 2px solid #6b6b6b;
  transform: rotate(135deg);
}

.mod-realtorList .list .is-selected:after {
  transform: rotate(-45deg);
}

.mod-realtorList .list .companyList {
  display: none;
}

.mod-realtorList .list .is-selected + .companyList {
  display: block;
}

.mod-realtorList .list .companyList .item {
  position: relative;
  border-bottom: 1px dotted #d9d9d9;
}

.mod-realtorList .list .companyList .item:first-child {
  border-top: 1px solid #d9d9d9;
}

.mod-realtorList .list .companyList .item:last-child {
  border-bottom: none;
}

.mod-realtorList .list .companyList .item a {
  display: block;
  padding: 15px 25px 15px 10px;
  font-size: 1rem; /* 16px */
  text-decoration: none;
  color: #000;
  position: relative;
}

.mod-realtorList .list .companyList .item a:after {
  position: absolute;
  right: 12px;
  bottom: 0;
  top: 0;
  margin: auto;
  width: 6px;
  height: 6px;
  content: "";
  border-top: 2px solid #6b6b6b;
  border-right: 2px solid #6b6b6b;
  transform: rotate(45deg);
}
@charset "UTF-8";
/* = kks-kodateFeatureList
----------------------------------------------- *
 * 
----------------------------------------------- */
/*.kks-kodateFeatureList {}*/
.kks-kodateFeatureList .featureList {
  margin-bottom: -1px;
  border-bottom: 1px solid #c4c4c4;
}

/*.kks-kodateFeatureList .listItem {}*/
.kks-kodateFeatureList .listItem:not(:first-child) {
  border-top: 1px solid #c4c4c4;
}

.kks-kodateFeatureList .listItem .title {
  font-weight: normal;
}

/* もっと見る：遷移 */
.kks-kodateFeatureList .goto {
  border-bottom: 1px solid #c4c4c4;
  text-align: right;
}

.kks-kodateFeatureList .goto .anchor {
  display: block;
  padding: 0.87rem 0.43rem;
  color: inherit;
  text-decoration: none;
  font-size: 1rem;
}

.kks-kodateFeatureList .listItem:last-child {
  border-bottom: 1px solid #c4c4c4;
}
/* Realtor Category Link */
.mod-realtorOtherLink + .mod-realtorCategoryLink {
  margin-top: -10px;
}

.mod-realtorCategoryLink {
  margin: 10px 0;
}
.mod-realtorCategoryLink li.listItem {
  border-bottom: 1px solid #c4c4c4;
}
