@charset "UTF-8";

* {
  margin: 0px;
  padding: 0px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'メイリオ', 'Exo', sans-serif;
  color: #181818;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

input,
select,
textarea,
button {
  font-size: 14px;
  padding: 5px;
  font-family: inherit;
  color: #666666;
  background: #fff;
  box-sizing: border-box;
  border: solid 1px #D1D1D1;
  border-radius: 5px;
  max-width: 100%;
  -moz-box-sizing: border-box;
  /* Firefox */
  -webkit-box-sizing: border-box;
  /* Chrome, Safari */
}

span,
a,
img,
em,
strong,
big,
small,
cite,
input,
textarea,
legend,
label {
  font-size: 14px;
  font-style: inherit;
  font-weight: inherit;
  vertical-align: baseline;
  max-width: 100%;
}

input[type=text] {
  width: 100%;
}

label {
  font-size: 14px;
  color: #181818;
}

select:focus {
  border: 1px solid #1B898D;
  outline: 0;
}

.container {
  position: relative;
}

select {
  -webkit-appearance: none;
  appearance: none;
  /* デフォルトのスタイルを無効 */
}

select::-ms-expand {
  display: none;
  /* デフォルトのスタイルを無効(IE用) */
}

/* セレクトボックスの矢印デザイン変更 */

select {
  padding: 5px 23px 5px 5px;
}

.select-custom {
  position: relative;
  display: inline-block;
}

.select-custom::after {
  content: "";
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTM4IDc5LjE1OTgyNCwgMjAxNi8wOS8xNC0wMTowOTowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTcgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjA4MzYwMjQyOTc3NTExRTc5OTJCOUJCQjU5MjkyRDEwIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjA4MzYwMjQzOTc3NTExRTc5OTJCOUJCQjU5MjkyRDEwIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MDgzNjAyNDA5Nzc1MTFFNzk5MkI5QkJCNTkyOTJEMTAiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MDgzNjAyNDE5Nzc1MTFFNzk5MkI5QkJCNTkyOTJEMTAiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7HPqo2AAAAe0lEQVR42mL8//8/AyWAiYFCQLEBLDCGiYkJSRrPnDmD1QUbgPg/AbwBnxdygPgLHou/QNXgNOAJENfgMaAGqgZvIE4B4nNYxM9B5QjGwl8gToXS+MTwRiO6bbhchTcdwPyLN1xYiAhxRnwxw0IgvWwklKAYh35mAggwAMvOKAM1LXlxAAAAAElFTkSuQmCC) center no-repeat;
  display: block;
  width: 1.8em;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  pointer-events: none;
}

input:focus {
  border: 1px solid #1B898D;
  outline: 0;
}

/* チェックBOX */

input[type=checkbox] {
  display: none;
}

.checkbox {
  margin: 5px 5px 5px 0;
}

.checkbox label {
  padding-left: 23px;
  display: inline-block;
  cursor: pointer;
  position: relative;
}

.checkbox label:before {
  content: '';
  width: 18px;
  height: 18px;
  display: inline-block;
  position: absolute;
  left: 0;
  border: 1px solid #ddd;
  background-color: #f9f9f9;
}

.checkbox input[type=checkbox]:checked+label:before {
  content: '\2713';
  font-size: 14px;
  color: #fff;
  background-color: #1B898D;
  text-align: center;
}

.property_contents_checkbox {
  position: absolute;
  top: 10px;
  right: 10px;
}

.property_contents_checkbox label {
  padding-left: 23px;
  display: inline-block;
  cursor: pointer;
  position: relative;
}

.property_contents_checkbox label:before {
  content: '';
  width: 18px;
  height: 18px;
  display: inline-block;
  position: absolute;
  top: -17px;
  right: -1px;
  border: 1px solid #ddd;
  background-color: #f9f9f9;
}

.property_contents_checkbox input[type=checkbox]:checked+label:before {
  content: '\2713';
  font-size: 14px;
  color: #fff;
  background-color: #1B898D;
  text-align: center;
}

p {
  font-size: 14px;
  color: #181818;
  line-height: 1.7;
}

h2 {
  font-size: 18px;
}

h3 {
  font-size: 16px;
}

table {
  width: 100%;
  word-break: break-all;
  word-wrap: break-all;
}

th {
  font-size: 16px;
  padding: 5px 0;
  color: #181818;
}

td {
  font-size: 16px;
  color: #181818;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: #181818;
}

a:hover {
  opacity: 0.7;
}

li {
  list-style: none;
}

#contents {
  max-width: 1230px;
  margin: 0 auto;
  padding: 50px 20px 0;
}

.contents {
  margin-top: 20px;
}

.bk_color {
  background: #E9F4F5;
}

.contentbox {
  padding: 10px;
  background-color: #fff;
  filter: drop-shadow(1px 2px 1px rgba(0, 0, 0, 0.2));
  border-radius: 5px;
  position: relative;
}

.side_contentbox {
  padding: 10px;
  background-color: #fff;
  filter: drop-shadow(1px 2px 1px rgba(0, 0, 0, 0.2));
  border-radius: 5px;
}

.modal-box {
  margin: 0 auto;
}

.text-under {
  text-decoration: underline !important;
}

.displayb{
  display: block;
}

.displayn{
  display: none;
}

/* font */

.bold {
  font-weight: bold;
}

.color_mint {
  color: #1B898D;
}

.color_red {
  color: #F80404;
}

.color_white {
  color: #fff;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right !important;
}

.text-left {
  text-align: left !important;
}

.font18 {
  font-size: 18px;
}

.font15 {
  font-size: 15px;
}

.font14 {
  font-size: 14px;
}

.fontwun {
  font-weight: unset !important;
}

.yen {
  text-align: right !important;
}

.whitesp {
  white-space: nowrap;
}

.title1 {
  font-weight: bold;
  font-size: 18px;
}

.sub_tltle1 {
  background: #1B898D;
  color: #fff;
  font-size: 12px;
  padding: 0 3px;
  display: inline-block;
}

.sub_tltle2 {
  background: #E9F4F5;
  margin-bottom: 5px;
  border-radius: 5px;
  padding: 3px 5px;
  display: inline-block;
  color: #1B898D;
  font-weight: bold;
}

.property_fee {
  font-weight: bold;
  font-size: 18px;
  color: #F80404;
}

/*flex*/

.flex {
  display: flex;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-end {
  justify-content: flex-end;
}

.align-center {
  align-items: center;
}

.flex-end {
  align-items: flex-end;
}

.wrap {
  flex-wrap: wrap;
}

.wrapre {
  flex-wrap: wrap-reverse;
}

.no-wrap {
  flex-wrap: nowrap;
}

/*color*/

.bg_white {
  background-color: #fff;
}

/*margin*/

.mar0auto {
  margin: 0 auto;
}

.mar20 {
  margin: 20px;
}

.mart0 {
  margin-top: 0 !important;
}

.mart5 {
  margin-top: 5px;
}

.mart10 {
  margin-top: 10px;
}

.mart15 {
  margin-top: 15px;
}

.mart20 {
  margin-top: 20px;
}

.mar20tb {
  margin: 20px 0;
}

.mar30tb {
  margin: 30px 0;
}

.mar10tb {
  margin: 10px 0;
}

.mar5lr {
  margin: 0 5px;
}

.marl20 {
  margin-left: 20px;
}

.marl5 {
  margin-left: 5px;
}

.marl10 {
  margin-left: 10px;
}

.marr8 {
  margin-right: 10px;
}

.marr10 {
  margin-right: 10px;
}

.marr5 {
  margin-right: 5px;
}

.marb0 {
  margin-bottom: 0 !important;
}

.marb5 {
  margin-bottom: 5px !important;
}

.marb10 {
  margin-bottom: 10px;
}

.marb20 {
  margin-bottom: 20px;
}

.marb30 {
  margin-bottom: 30px;
}

.mart30 {
  margin-top: 30px;
}

/*padding*/

.pad5 {
  padding: 5px !important;
}

.pad10 {
  padding: 10px;
}

.pad20 {
  padding: 20px;
}

.pad30 {
  padding: 30px;
}

.pad60 {
  padding: 60px;
}

.padt0 {
  padding-top: 0 !important;
}

.padb0 {
  padding-bottom: 0 !important;
}

.padb20 {
  padding-bottom: 20px;
}

.padb30 {
  padding-bottom: 30px;
}

.pad0 {
  padding: 0 !important;
}

.pad0010 {
  padding: 0 0 10px !important;
}

.pad20bt {
  padding: 0 20px;
}

.pad30tb {
  padding: 30px 0;
}

.pad3020 {
  padding: 30px 20px;
}

.padtrlb20 {
  padding: 0 20px 20px;
}

.pa100tb {
  padding: 100px 50px;
}

/* width */

.maxw950 {
  max-width: 950px;
}

.wid15 {
  width: 15%;
}

.wid10 {
  width: 10%;
}

.widauto {
  width: auto;
}

/* button */

.btn_ptn2 {
  display: inline-block;
  border-radius: 30px;
  background: #1B898D;
  box-shadow: 1px 1px 1px 1px #a0b9bb;
  width: 110px;
  text-align: center;
}

.btn_ptn2:hover {
  opacity: 0.7;
}

.btn_ptn2 a {
  color: #fff;
  font-size: 12px;
  display: block;
  padding: 7px 15px;
}

.btn_ptn3 {
  display: inline-block;
  border-radius: 30px;
  background: #fff;
  border: solid 1px #666666;
  box-shadow: 1px 1px 1px 1px #d1d1d1;
}

.btn_ptn3:hover {
  opacity: 0.7;
}

.btn_ptn3 a {
  color: #666666;
  font-size: 12px;
  display: block;
  padding: 7px 15px;
}

.btn_ptn4 {
  display: inline-block;
  border-radius: 5px;
  background: #fff;
  border: solid 1px #1B898D;
  box-shadow: 1px 1px 1px 1px #a0b9bb;
}

.btn_ptn4:hover {
  opacity: 0.7;
}

.btn_ptn4 a {
  color: #1B898D;
  font-size: 12px;
  display: block;
  padding: 5px 10px;
}

.btn_ptn5 {
  display: inline-block;
  border-radius: 30px;
  background: #1B898D;
  box-shadow: 1px 1px 1px 1px #a0b9bb;
  color: #fff;
  font-size: 14px;
  padding: 7px 30px;
  cursor: pointer;
}

.btn_ptn5:hover {
  opacity: 0.7;
}

.btn_ptn6 label {
  border-radius: 5px;
  background: #fff;
  display: inline-block;
  cursor: pointer;
  border: solid 1px #1B898D;
  padding: 5px 10px;
  color: #1B898D;
  font-size: 14px;
  padding: 5px 10px;
}

.btn_ptn6 input:checked+label {
  background: #1B898D;
  color: #fff !important;
}

.btn_ptn7 {
  background-color: #1B898D;
  color: #fff;
  border-color: #1B898D;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  display: block;
  width: 115px;
  text-align: center;
}

.btn_ptn7:hover {
  opacity: 0.7;
}

/*header*/

.header_pc {
  max-width: 1230px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px 5px;
}

header img {
  max-width: 80%;
}

header .logo {
  width: 10%;
}

.header_menu_pc {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.header_menu_pc li {
  display: block;
  border: solid 1px #1B898D;
  border-radius: 5px;
  text-align: center;
  margin-right: 5px;
  min-width: 120px;
}

.header_menu_pc li:hover {
  background: #1B898D;
}

.header_menu_pc li a:hover {
  color: #fff;
  opacity: 1;
}

.header_menu_pc li a {
  display: block;
  padding: 7px;
  font-weight: bold;
  color: #1B898D;
}

.droppy--header {
  min-width: 200px;
  margin-left: 5px;
  text-align: right;
}

.droppy--header li a {
  font-weight: bold;
  font-size: 12px;
}

header {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 99
}

.header_menu_sp {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 5px 0 0;
}

.header_menu_sp li {
  position: relative;
  background: #1B898D;
  text-align: center;
  width: 25%;
  border: solid 1px #fff;
}

.header_menu_sp li a {
  color: #fff;
  font-size: 12px;
  display: block;
  padding: 6px;
}

.header_menu_sp img {
  width: 30px;
}

/* search-box */

.search-form {
  margin-bottom: 5px;
}

.wrap-search-header .search-form {
  width: 290px;
}

.search-form__input {
  position: relative;
  margin-right: 10px;
  display: inline-block;
}

input[type=search] {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.search-form__submit {
  border-radius: 0 4px 4px 0;
}

.search-form__submit {
  position: absolute;
  right: -1px;
  top: 0;
  bottom: 0;
  font-size: 13px;
  color: #fff;
  background-color: #1B898D;
  text-shadow: none;
  background-image: none;
  font-weight: 600;
  padding: 10px 16px;
  border: unset;
  cursor: pointer;
}

.search-form__text-field {
  border: solid 1px #1B898D;
  margin-bottom: 0;
  border-radius: 3px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 14px;
  width: 260px;
  padding: 6px;
}

.search-form__submit i {
  font-size: 15px;
}

.fa-user.icon--first {
  border-radius: 50%;
  width: 25px;
  height: 25px;
  background: #ebebeb;
  top: 7px;
  line-height: 24px;
  color: #979797;
  font-size: 14px;
  text-align: center;
  margin-right: 5px;
}

.side_linkbtn ul {
  margin-top: 10px;
}

.side_linkbtn li p {
  margin: 5px auto 0;
  background: #E9F4F5;
  border-radius: 15px;
  text-align: center;
  width: 200px;
}

.side_linkbtn li a {
  color: #1B898D;
  font-weight: bold;
  font-size: 12px;
  display: block;
  padding: 5px;
}

.side_linkbtn li a:hover {
  color: #fff;
  background: #1B898D;
  border-radius: 15px;
  opacity: 1;
}

.active_btn_color {
  color: #fff !important;
  background: #1B898D;
  border-radius: 15px;
}

.searchbox {
  line-height: 30px;
  background: #363636;
  margin: 10px 0;
  text-align: center;
}

.searchbox a {
  color: #fff;
  font-size: 14px;
  padding: 5px 0;
  display: block;
}

.title {
  display: block;
  color: #1B898D;
  margin-top: 10px;
  border-bottom: 1px solid #1B898D;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
}

.sbtitle1 p {
  display: block;
  color: #1B898D;
  padding: 20px 0 0;
  border-bottom: 1px solid #1B898D;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
}

aside::-webkit-scrollbar {
  width: 12px;
}

aside::-webkit-scrollbar-track {
  background: #fff;
  border: none;
  border-radius: 10px;
  box-shadow: inset 0 0 2px #777;
}

aside::-webkit-scrollbar-thumb {
  background: #1B898D;
  border-radius: 10px;
  box-shadow: none;
}

/*条件検索*/

.side_search_conditions p {
  background: #E9F4F5;
  padding: 5px;
  border-radius: 5px;
  font-size: 14px;
  color: #1B898D;
  font-weight: bold;
  margin: 10px 0 5px;
}

.side_search_conditions_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.side_search_conditions_inner label:after {
  content: unset !important;
}

.side_search_conditions_inner input[type=text] {
  width: 100%;
}

.address_details {
  border-radius: 50px !important;
  display: inline-block;
  background-color: #f9f9f9 !important;
  font-weight: normal !important;
  color: #666666 !important;
  padding: 2px 10px !important;
  position: relative;
  cursor: pointer;
  margin-top: 10px;
}

.address_details::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f057";
  margin-left: 5px;
}

.side_search_conditions_inner label {
  font-size: 14px !important;
  color: #666666;
  font-weight: normal !important;
  margin: 0 !important;
}

.property_type {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.side_property_type_inner {
  margin: 0 5px 5px 0;
}

.side_property_type_inner label {
  color: #1B898D;
  padding: 3px 10px;
  border-radius: 20px;
  background: #fff;
  border: solid 1px #1B898D;
  text-align: center;
  font-size: 12px !important;
  cursor: pointer;
  display: block;
  width: 77px;
}

.side_property_type_inner input:checked+label {
  background: #1B898D;
  color: #fff !important;
}

.invalid_btn {
  color: #666666 !important;
  border: solid 1px #666666 !important;
}

.invalid_search-form_submit {
  background-color: #666666 !important;
}

.property_type2 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.side_property_type_inner2 {
  margin: 0 5px 5px 0;
  position: relative;
}

.side_property_type_inner2 label {
  color: #1B898D !important;
  padding: 3px 7px;
  border-radius: 5px;
  background: #fff;
  border: solid 1px #1B898D;
  text-align: center;
  font-size: 14px !important;
  cursor: pointer;
  display: block;
  width: 15px;
  min-height: 150px;
}

.side_property_type_inner2::after {
  border-top: 2px solid #1B898D !important;
  content: "";
  flex-grow: 1 !important;
  min-width: 5px !important;
  position: absolute;
  top: 50%;
  left: -5px;
}

.side_property_type_inner2 input:checked+label {
  background: #1B898D;
  color: #fff !important;
}

.search_result {
  border: solid 2px #65A4A7;
  background: #fff;
  text-align: center;
  padding: 10px;
  position: fixed;
  bottom: 90px;
  width: 207px;
  border-radius: 2px;
  filter: drop-shadow(1px 2px 1px rgba(0, 0, 0, 0.2));
}

.search_result p {
  text-align: left;
  margin-bottom: 10px;
  font-size: 12px;
}

.detailedsearch_menu {
  margin-bottom: 190px;
}

/*モーダル*/

.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2000;
}

.modal__bg {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}

.modal__content {
  background: #fff;
  left: 50%;
  padding: 20px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 65%;
  border-radius: 5px;
}

.modal-close {
  text-align: center;
  margin-top: 20px;
}

.modal-close a {
  color: #1B898D;
}

/*詳細条件検索*/

/*アコーディオン*/

/*====================================================================
.s_02 .accordion_one
====================================================================*/

.s_02 .accordion_one .accordion_header {
  color: #1B898D;
  font-size: 26px;
  font-weight: bold;
  position: relative;
  z-index: +1;
  cursor: pointer;
  transition-duration: 0.2s;
}

.s_02 .accordion_one:nth-of-type(2) .accordion_header {
  background-color: #ff9a05;
}

.s_02 .accordion_one:nth-of-type(3) .accordion_header {
  background-color: #1c85d8;
}

.s_02 .accordion_one .accordion_header:hover {
  opacity: .8;
}

.s_02 .accordion_one .accordion_header .i_box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 7px;
  margin-top: -10px;
  box-sizing: border-box;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
}

.s_02 .accordion_one .accordion_header .i_box .one_i {
  display: block;
  width: 18px;
  height: 18px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
}

.s_02 .accordion_one .accordion_header.open .i_box {
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
}

.s_02 .accordion_one .accordion_header .i_box .one_i:before,
.s_02 .accordion_one .accordion_header .i_box .one_i:after {
  display: flex;
  content: '';
  background-color: #1B898D;
  border-radius: 10px;
  width: 18px;
  height: 4px;
  position: absolute;
  top: 7px;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transform-origin: center center;
}

.s_02 .accordion_one .accordion_header .i_box .one_i:before {
  width: 4px;
  height: 18px;
  top: 0;
  left: 7px;
}

.s_02 .accordion_one .accordion_header.open .i_box .one_i:before {
  content: none;
}

.s_02 .accordion_one .accordion_header.open .i_box .one_i:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.s_02 .accordion_one .accordion_inner {
  display: none;
  box-sizing: border-box;
}

.s_02 .accordion_one:nth-of-type(2) .accordion_inner {
  border-left: 2px solid #ff9a05;
  border-right: 2px solid #ff9a05;
  border-bottom: 2px solid #ff9a05;
}

.s_02 .accordion_one:nth-of-type(3) .accordion_inner {
  border-left: 2px solid #1c85d8;
  border-right: 2px solid #1c85d8;
  border-bottom: 2px solid #1c85d8;
}

.s_02 .accordion_one .accordion_inner p.txt_a_ac {
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .s_02 .accordion_one .accordion_header {
    font-size: 18px;
  }

  .s_02 .accordion_one .accordion_header .i_box {
    width: 30px;
    height: 30px;
    margin-top: -15px;
  }
}

@media screen and (max-width: 767px) {
  .s_02 .accordion_one .accordion_header {
    font-size: 16px;
    text-align: left;
  }
}

/* main */

main {
  width: calc(100% - 260px);
  margin-left: 260px;
  margin-top: 15px;
  margin-bottom: 80px;
}

aside {
  width: 240px;
  height: 70vh;
  margin-top: 10px;
  padding-right: 10px;
  position: fixed;
  overflow: scroll;
  overflow-x: hidden;
}

/* 物件 */

.pager {
  flex-grow: 1;
}

.pager .pagination {
  text-align: right;
}

.pager .pagination li.pre,
.pager .pagination li.next {
  background: #1B898D;
  color: #fff;
}

.pager .pagination li {
  display: inline;
  margin: 0 2px;
  padding: 0;
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  position: relative;
  border-radius: 50px;
}

.pager .pagination li.pre a,
.pager .pagination li.next a {
  color: #fff;
}

.pager .pagination li a {
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: table;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.pager .pagination li a span {
  display: table-cell;
  vertical-align: middle;
  font-weight: bold;
}

.pager .pagination li a:hover,
.pager .pagination li a.active {
  color: #000;
  background: #fff;
  border-radius: 10px;
  border-radius: 50px;
  animation: animScale 0.4s ease-out;
  transform-origin: 50% 50%;
  -webkit-animation: animScale 0.4s ease-out;
  -webkit-transform-origin: 50% 50%;
  -moz-animation: animScale 0.4s ease-out;
  -moz-transform-origin: 50% 50%;
}

.property_contents {
  display: flex;
  justify-content: space-between;
}

.property_contents_inner {
  width: 45%;
}

.property_contents_innerbtn {
  width: 140px;
  text-align: center;
  margin-top: 40px;
}

.property_contents_inner_details {
  margin-top: 10px;
  line-height: 1.8;
}

.property_contents_inner_details p {
  line-height: 1.8;
}

.property_contents_inner_details a {
  text-decoration: underline;
}

.property_photo {
  display: flex;
  align-items: center;
  width: 460px;
}

.property_photo li {
  width: calc(50% - 10px);
  margin: 0 10px 0 0;
  position: relative;
}

.property_photo_inner {
  position: relative;
  width: 100%;
  background-color: #f9f9f9;
  border: 1px solid #dddddd;
}

.property_photo_inner::before {
  content: "";
  display: block;
  padding-top: calc(185/185*100%);
}

.property_photo_inner img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.icon-search {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 99em;
  font-size: 20px;
  line-height: 1.5em;
  position: absolute;
  right: 3px;
  bottom: 3px;
  width: 25px;
  height: 25px;
  text-align: center;
  z-index: 1000;
}

.icon-search:before {
  color: #1B898D;
  font-size: 16px;
}

.propertylist_profile {
  border: solid 2px #E9F4F5;
  padding: 10px 10px 5px;
  border-radius: 5px;
  box-sizing: border-box;
  margin-top: 10px;
  table-layout: fixed;
}

.propertylist_profile_inner {
  display: flex;
  align-items: center;
  font-size: 14px;
  flex-wrap: wrap;
}

.propertylist_profile_inner li:nth-child(1) {
  background: #E9F4F5;
  border-radius: 5px;
  color: #1B898D;
  font-weight: normal;
  padding: 1px 10px;
  width: 105px;
  text-align: center;
  white-space: nowrap;
  margin-bottom: 5px;
  margin-right: 5px;
}

.propertylist_profile_inner li:nth-child(2) {
  min-width: 95px;
}

.selkey {
  color: #1B898D;
  border: solid 1px #1B898D;
  border-radius: 5px;
  padding: 0 5px;
}

/* content-footer */

#content-footer {
  margin: 0;
  padding: 0;
}

#content-footer .inq-fixed {
  background-color: rgba(0, 0, 0, .4);
  color: #fff;
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.content-footer-box {
  padding: 10px;
  background-color: #fff;
  filter: drop-shadow(1px 2px 1px rgba(0, 0, 0, 0.2));
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px;
}

.select-result {
  display: flex;
  align-items: center;
  margin: 10px 0 0;
  flex-wrap: wrap;
}

.selected_property {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: 10px;
  border-left: solid 1px #1B898D;
}

.select-result_inner {
  color: #fff;
  margin-right: 10px;
}

#searchCount {
  font-weight: bold;
  font-size: 20px;
}

.select-area {
  display: flex;
  align-items: center;
  margin-right: 10px;
  flex-wrap: wrap;
}

.select-area p {
  color: #1B898D;
  margin: 0 5px;
}

.select-area a {
  color: #1B898D;
}

.select-area_inner span {
  color: #F80404;
  font-weight: bold;
}

#search_result_title {
  cursor: pointer;
  color: #1B898D;
  font-weight: bold;
}
.fa-chevron-down{
  margin-left: 10px;
}
.fa-chevron-up{
  margin-left: 10px;
}

/* footer */

footer {
  padding: 20px 0 0;
  background: #1B898D;
  margin-top: 20px;
}

.copy {
  text-align: center;
  padding-bottom: 20px;
}

.copy p {
  color: #fff;
  font-size: 12px;
}

.copy p a {
  color: #fff;
  font-size: 14px;
}

/* Back to top */

#PageTopBtn {
  position: fixed;
  bottom: 5px;
  right: 10px;
}

#PageTopBtn a {
  display: block;
  outline: none;
}

#PageTopBtn a:hover {
  text-decoration: none;
}

#PageTopBtn {
  z-index: 1000;
}

#PageTopBtn img {
  width: 30px;
  z-index: 200;
}