:root {
  --ease-linear: cubic-bezier(0.250, 0.250, 0.750, 0.750);
  --ease: cubic-bezier(0.250, 0.100, 0.250, 1.000);
  --ease-in: cubic-bezier(0.420, 0.000, 1.000, 1.000);
  --ease-out: cubic-bezier(0.000, 0.000, 0.580, 1.000);
  --ease-in-out: cubic-bezier(0.420, 0.000, 0.580, 1.000);
  --ease-in-quad: cubic-bezier(0.550, 0.085, 0.680, 0.530);
  --ease-in-cubic: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  --ease-in-quart: cubic-bezier(0.895, 0.030, 0.685, 0.220);
  --ease-in-quint: cubic-bezier(0.755, 0.050, 0.855, 0.060);
  --ease-in-sine: cubic-bezier(0.470, 0.000, 0.745, 0.715);
  --ease-in-expo: cubic-bezier(0.950, 0.050, 0.795, 0.035);
  --ease-in-circ: cubic-bezier(0.600, 0.040, 0.980, 0.335);
  --ease-in-back: cubic-bezier(0.600, -0.280, 0.735, 0.045);
  --ease-out-quad: cubic-bezier(0.250, 0.460, 0.450, 0.940);
  --ease-out-cubic: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  --ease-out-quart: cubic-bezier(0.165, 0.840, 0.440, 1.000);
  --ease-out-quint: cubic-bezier(0.230, 1.000, 0.320, 1.000);
  --ease-out-sine: cubic-bezier(0.390, 0.575, 0.565, 1.000);
  --ease-out-expo: cubic-bezier(0.190, 1.000, 0.220, 1.000);
  --ease-out-circ: cubic-bezier(0.075, 0.820, 0.165, 1.000);
  --ease-out-back: cubic-bezier(0.175, 0.885, 0.320, 1.275);
  --ease-in-out-quad: cubic-bezier(0.455, 0.030, 0.515, 0.955);
  --ease-in-out-cubic: cubic-bezier(0.645, 0.045, 0.355, 1.000);
  --ease-in-out-quart: cubic-bezier(0.770, 0.000, 0.175, 1.000);
  --ease-in-out-quint: cubic-bezier(0.860, 0.000, 0.070, 1.000);
  --ease-in-out-sine: cubic-bezier(0.445, 0.050, 0.550, 0.950);
  --ease-in-out-expo: cubic-bezier(1.000, 0.000, 0.000, 1.000);
  --ease-in-out-circ: cubic-bezier(0.785, 0.135, 0.150, 0.860);
  --ease-in-out-back: cubic-bezier(0.680, -0.550, 0.265, 1.550);
}

:root {
  --z-content: 0;
  --z-floating: 1000;
  --z-header: 10000;
  --z-popup: 100000;
  --c-paige-green-light: #56C1B3;
  --c-paige-green-lighter: #38A395;
  --c-paige-green: #00736A;
  --c-paige-green-darker: #174445;
  --c-paige-green-dark: #033031;
  --c-paige-hilight: #CEDC00;
  --c-red: #F74A4A;
  --c-warn: var(--c-red);
  --c-bg: #F0F1EF;
  --topbar-height-pc: 4rem;
  --topbar-height-pc-s: 3rem;
  --topbar-height-mob: 3rem;
  --ar-listing-photo: 16 / 9;
}

#homePage #homeAboutBlock .textLogo .name, .msg h1, .working .name, #footer .c1 .textLogo {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

*, *::before, *::after {
  box-sizing: border-box;
}

[class*=fa-]::before {
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-align: center;
}

@media (max-width: 767.99px) {
  .-pc {
    display: none;
  }
}

@media (min-width: 768px) {
  .-mob {
    display: none;
  }
}

html, body {
  font-family: "PT Sans", sans-serif;
}

a {
  text-decoration: none;
}

b {
  font-weight: 700;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(0.5rem);
          backdrop-filter: blur(0.5rem);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (min-width: 768px) {
  #header {
    height: var(--topbar-height-pc);
  }
}
@media (min-width: 768px) and (max-width: 1199.99px) {
  #header {
    height: var(--topbar-height-pc-s);
  }
}
@media (max-width: 767.99px) {
  #header {
    height: var(--topbar-height-mob);
  }
}
#header .bg {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: darken;
  background-color: var(--c-paige-green);
  opacity: 0.75;
}
#header .logo {
  position: absolute;
  left: 0;
  top: 0;
  aspect-ratio: 4/1;
  height: 100%;
  background-image: url("../img/logo.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
#header .mainmenu {
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  color: #fff;
}
@media (min-width: 768px) {
  #header .mainmenu {
    top: 1rem;
    font-size: 1.25rem;
    line-height: 2rem;
  }
}
@media (min-width: 768px) and (max-width: 1199.99px) {
  #header .mainmenu {
    top: 0.5rem;
    font-size: 1rem;
    line-height: 2rem;
  }
}
@media (max-width: 767.99px) {
  #header .mainmenu {
    display: none;
  }
}
#header .mainmenu .menuGroup {
  position: relative;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  #header .mainmenu .menuGroup {
    padding: 0 1.5rem;
    gap: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 959.99px) {
  #header .mainmenu .menuGroup {
    padding: 0 1rem;
    gap: 1rem;
  }
}
#header .mainmenu .menuGroup + .menuGroup::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 1px;
  height: 1rem;
  background-color: #fff;
}
#header .mainmenu .menuGroup.-tags {
  font-weight: bold;
}
#header .mainmenu .menuGroup.-tags a {
  position: relative;
}
#header .mainmenu .menuGroup.-tags a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.25rem;
  width: 100%;
  height: 1px;
  opacity: 0;
  transform: scaleX(0);
  border-bottom: 2px solid var(--c-paige-hilight);
  transition: transform 0.5s var(--ease-out-expo), opacity 0.5s var(--ease-out-expo);
}
#header .mainmenu .menuGroup.-tags a:hover {
  opacity: 1;
}
#header .mainmenu .menuGroup.-tags a:hover::before {
  opacity: 1;
  transform: scaleX(1);
}
#header .mainmenu .menuGroup a {
  color: inherit;
  transition: color 0.5s var(--ease-out-expo);
}
#header .mainmenu .menuGroup a:hover {
  color: var(--c-paige-hilight);
}
#header .menuTrigger {
  position: absolute;
  right: 0;
  top: 0;
  aspect-ratio: 1/1;
  align-content: center;
}
@media (min-width: 768px) {
  #header .menuTrigger {
    display: none;
  }
}
@media (max-width: 767.99px) {
  #header .menuTrigger {
    height: 100%;
    font-size: 1.5rem;
    text-align: center;
    color: #fff;
    cursor: pointer;
  }
}

#footer {
  background-color: var(#fff);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (min-width: 768px) {
  #footer .wrapper {
    display: flex;
    align-items: flex-end;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media (max-width: 767.99px) {
  #footer .wrapper {
    padding-top: 2rem;
    padding-bottom: 1rem;
  }
}
@media (min-width: 768px) {
  #footer .c1 {
    flex: 1 1 auto;
  }
}
@media (max-width: 767.99px) {
  #footer .c1 {
    margin-bottom: 2rem;
  }
}
#footer .c1 .textLogo {
  color: #999;
}
@media (min-width: 768px) {
  #footer .c1 .textLogo {
    margin-bottom: 0.25rem;
    font-size: 2rem;
  }
}
@media (max-width: 767.99px) {
  #footer .c1 .textLogo {
    margin-bottom: 0.25rem;
    font-size: 1.5rem;
  }
}
#footer .c1 .slogan {
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.025em;
  color: #999;
}
@media (min-width: 768px) {
  #footer .c1 .slogan {
    font-size: 0.9375rem;
  }
}
@media (max-width: 767.99px) {
  #footer .c1 .slogan {
    font-size: 0.75rem;
  }
}
@media (min-width: 768px) {
  #footer .c2 {
    flex: 0 0 20rem;
  }
}
@media (max-width: 767.99px) {
  #footer .c2 {
    margin-top: 2rem;
  }
}
#footer .copy {
  font-weight: 400;
  text-align: right;
  line-height: 1.2;
  letter-spacing: 0.025em;
  color: #999;
}
@media (min-width: 768px) {
  #footer .copy {
    font-size: 0.9375rem;
  }
}
@media (max-width: 767.99px) {
  #footer .copy {
    font-size: 0.625rem;
  }
}

.body {
  background-color: var(--c-bg);
}
@media (min-width: 768px) {
  .body {
    margin-top: var(--topbar-height-pc);
  }
}
@media (min-width: 768px) and (max-width: 1199.99px) {
  .body {
    margin-top: var(--topbar-height-pc-s);
  }
}
@media (max-width: 767.99px) {
  .body {
    margin-top: var(--topbar-height-mob);
  }
}

.working {
  aspect-ratio: 4/1;
  align-content: center;
  text-align: center;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (min-width: 768px) {
  .working {
    width: 40rem;
  }
}
@media (max-width: 767.99px) {
  .working {
    width: 20rem;
  }
}
.working .name {
  color: var(--c-paige-green);
}
@media (min-width: 768px) {
  .working .name {
    margin-bottom: 0.5rem;
    font-size: 4rem;
  }
}
@media (max-width: 767.99px) {
  .working .name {
    margin-bottom: 0.25rem;
    font-size: 2rem;
  }
}
.working .slogan {
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.025em;
  color: #666;
}
@media (min-width: 768px) {
  .working .slogan {
    font-size: 1.25rem;
  }
}
@media (max-width: 767.99px) {
  .working .slogan {
    font-size: 0.625rem;
  }
}

.msg h1 {
  margin-bottom: 0.5em;
  color: var(--c-paige-green);
}
@media (min-width: 768px) {
  .msg h1 {
    font-size: 3rem;
  }
}
@media (max-width: 767.99px) {
  .msg h1 {
    font-size: 1.5rem;
  }
}
.msg p {
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5em;
  letter-spacing: 0.025em;
}
@media (min-width: 768px) {
  .msg p {
    font-size: 1rem;
  }
}
@media (max-width: 767.99px) {
  .msg p {
    font-size: 0.875rem;
  }
}

#msgPage #msgBlock {
  text-align: center;
  align-content: center;
}
@media (min-width: 768px) {
  #msgPage #msgBlock {
    height: calc(100vh - var(--topbar-height-pc));
  }
}
@media (max-width: 767.99px) {
  #msgPage #msgBlock {
    height: calc(100vh - var(--topbar-height-mob));
  }
}

@media (min-width: 768px) {
  .section {
    margin: 0 auto;
    padding: 0 3rem;
  }
}
@media (min-width: 768px) and (max-width: 1199.99px) {
  .section {
    padding: 0 2rem;
  }
}
@media (max-width: 767.99px) {
  .section {
    margin: 0 1rem;
  }
}
@media (min-width: 768px) {
  .section .wrapper {
    max-width: 60rem;
    margin: 0 auto;
  }
}
.mMrtLineIcon {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  padding: 0 0.25em;
  line-height: 1.5em;
  border-radius: 0.25em;
  width: 2em;
}

#homePage {
  margin-top: 0;
}
#homePage #homeWorkingBlock {
  text-align: center;
  align-content: center;
}
@media (min-width: 768px) {
  #homePage #homeWorkingBlock {
    height: calc(100vh - var(--topbar-height-pc));
  }
}
@media (max-width: 767.99px) {
  #homePage #homeWorkingBlock {
    height: calc(100vh - var(--topbar-height-mob));
  }
}
#homePage #homeWorkingBlock .working {
  margin-left: auto;
  margin-right: auto;
}
#homePage #homeSearchBlock {
  position: relative;
  background-color: #00665E;
}
@media (min-width: 768px) {
  #homePage #homeSearchBlock {
    height: calc(var(--topbar-height-pc) + 36rem);
  }
}
@media (min-width: 768px) and (max-width: 1199.99px) {
  #homePage #homeSearchBlock {
    height: calc(var(--topbar-height-pc-s) + 36rem);
  }
}
@media (max-width: 767.99px) {
  #homePage #homeSearchBlock {
    height: 40rem;
  }
}
#homePage #homeSearchBlock .bgimg {
  position: absolute;
  z-index: calc(var(--z-content) + 10);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-image: url("../img/home-search-bg.jpg");
}
#homePage #homeSearchBlock .overlay {
  position: absolute;
  z-index: calc(var(--z-content) + 11);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00665E;
  mix-blend-mode: multiply;
}
#homePage #homeSearchBlock #homeSearchPane {
  position: relative;
  z-index: calc(var(--z-content) + 20);
  flex-direction: column;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  #homePage #homeSearchBlock #homeSearchPane {
    padding-top: calc(8rem + var(--topbar-height-pc));
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (min-width: 960px) and (max-width: 1199.99px) {
  #homePage #homeSearchBlock #homeSearchPane {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 768px) and (max-width: 959.99px) {
  #homePage #homeSearchBlock #homeSearchPane {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (max-width: 767.99px) {
  #homePage #homeSearchBlock #homeSearchPane {
    padding-top: calc(16rem + var(--topbar-height-mob));
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    max-width: 30rem;
  }
}
#homePage #homeSearchBlock #homeSearchPane h2 {
  margin-bottom: 1rem;
  color: #fff;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (min-width: 768px) {
  #homePage #homeSearchBlock #homeSearchPane h2 {
    font-size: 3.5rem;
    line-height: 3rem;
  }
}
@media (min-width: 768px) and (max-width: 1199.99px) {
  #homePage #homeSearchBlock #homeSearchPane h2 {
    font-size: 2.3333333333rem;
    line-height: 2rem;
  }
}
@media (max-width: 767.99px) {
  #homePage #homeSearchBlock #homeSearchPane h2 {
    font-size: 2.25rem;
    line-height: 3rem;
  }
}
#homePage #homeSearchBlock #homeSearchPane h3 {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5rem;
  margin-bottom: 1.5rem;
  color: #fff;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 767.99px) {
  #homePage #homeSearchBlock #homeSearchPane h3 {
    display: none;
  }
}
#homePage #homeSearchBlock #homeSearchPane[pgr-search-method=property] #searchByPropertyTab {
  color: #000;
  background-color: var(--c-paige-hilight);
}
@media (max-width: 767.99px) {
  #homePage #homeSearchBlock #homeSearchPane[pgr-search-method=property] #searchByTagsPane {
    display: none;
  }
}
#homePage #homeSearchBlock #homeSearchPane[pgr-search-method=tags] #searchByTagsTab {
  color: #000;
  background-color: var(--c-paige-hilight);
}
@media (max-width: 767.99px) {
  #homePage #homeSearchBlock #homeSearchPane[pgr-search-method=tags] #searchByPropertyPane {
    display: none;
  }
  #homePage #homeSearchBlock #homeSearchPane[pgr-search-method=tags] #searchByTagsPane {
    display: block;
  }
}
@media (min-width: 768px) {
  #homePage #homeSearchBlock #homeSearchPane .searchMethodPaneGroup {
    display: flex;
  }
}
@media (max-width: 767.99px) {
  #homePage #homeSearchBlock #homeSearchPane .searchMethodPaneGroup {
    display: block;
  }
}
#homePage #homeSearchBlock #homeSearchPane .searchMethodTab {
  margin: 0 -0.25rem 1.5rem;
}
@media (min-width: 768px) {
  #homePage #homeSearchBlock #homeSearchPane .searchMethodTab {
    display: none;
  }
}
@media (max-width: 767.99px) {
  #homePage #homeSearchBlock #homeSearchPane .searchMethodTab {
    display: flex;
  }
}
#homePage #homeSearchBlock #homeSearchPane .searchMethodTab.-active {
  color: #000;
  background-color: var(--c-paige-hilight);
}
#homePage #homeSearchBlock #homeSearchPane .searchMethodTab .tabItem {
  padding: 0 0.75rem;
  font-weight: bold;
  font-size: 1rem;
  line-height: 2rem;
  color: #fff;
  border-radius: 6.25rem;
  cursor: pointer;
}
#homePage #homeSearchBlock #homeSearchPane #searchByPropertyPane {
  position: relative;
  flex: 0 0 auto;
}
@media (min-width: 768px) {
  #homePage #homeSearchBlock #homeSearchPane #searchByPropertyPane {
    margin-right: calc(3rem - 1px);
    padding-right: calc(3rem - 1px);
  }
}
@media (min-width: 768px) {
  #homePage #homeSearchBlock #homeSearchPane #searchByPropertyPane::before {
    content: "";
    position: absolute;
    right: 0;
    top: 3rem;
    bottom: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
  }
}
@media (min-width: 768px) and (max-width: 959.99px) {
  #homePage #homeSearchBlock #homeSearchPane #searchByPropertyPane .homeSearchField.-focused .display, #homePage #homeSearchBlock #homeSearchPane #searchByPropertyPane .homeSearchField.-focused .button {
    display: none;
  }
}
#homePage #homeSearchBlock #homeSearchPane #searchByPropertyPane .homeSearchField.-blured {
  opacity: 0.5;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
#homePage #homeSearchBlock #homeSearchPane #searchByPropertyPane .homeSearchField {
  display: flex;
  align-items: center;
  height: 2.5rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: opacity 0.25s var(--ease-out-expo);
}
@media (min-width: 768px) {
  #homePage #homeSearchBlock #homeSearchPane #searchByPropertyPane .homeSearchField {
    width: 20rem;
  }
}
@media (min-width: 768px) and (max-width: 1199.99px) {
  #homePage #homeSearchBlock #homeSearchPane #searchByPropertyPane .homeSearchField {
    width: 18rem;
  }
}
#homePage #homeSearchBlock #homeSearchPane #searchByPropertyPane .homeSearchField .label {
  display: flex;
  flex: 0 0 6.5rem;
  align-items: center;
  height: 100%;
  color: #000;
  background-color: var(--c-paige-hilight);
}
#homePage #homeSearchBlock #homeSearchPane #searchByPropertyPane .homeSearchField .label i {
  width: 2rem;
  text-align: center;
}
#homePage #homeSearchBlock #homeSearchPane #searchByPropertyPane .homeSearchField .display {
  flex: 1 1 auto;
  overflow: hidden;
  padding: 0 0.5rem;
  line-height: 2.5rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #999;
  background-color: #fff;
}
#homePage #homeSearchBlock #homeSearchPane #searchByPropertyPane .homeSearchField .button {
  flex: 0 0 2rem;
  text-align: center;
  line-height: 2.5rem;
  color: var(--c-paige-green);
  background-color: #fff;
}
#homePage #homeSearchBlock #homeSearchPane #searchByPropertyPane .homeSearchField .button i::before {
  transition: transform 0.25s var(--ease-out-expo);
}
#homePage #homeSearchBlock #homeSearchPane #searchByPropertyPane .homeSearchField:hover .button i::before {
  transform: translateX(0.25rem);
}
#homePage #homeSearchBlock #homeSearchPane #searchByPropertyPane .homeSearchField.-hasValue .display {
  color: #000;
}
#homePage #homeSearchBlock #homeSearchPane #searchByPropertyPane .homeSearchButton {
  display: flex;
  width: 6rem;
  height: 2.5rem;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #000;
  background-color: var(--c-paige-hilight);
  cursor: pointer;
}
#homePage #homeSearchBlock #homeSearchPane #searchByPropertyPane .homeSearchButton span {
  flex: 1 1 auto;
  margin-right: -0.5rem;
  text-align: center;
}
#homePage #homeSearchBlock #homeSearchPane #searchByPropertyPane .homeSearchButton i {
  flex: 0 0 2rem;
  text-align: center;
}
#homePage #homeSearchBlock #homeSearchPane #searchByPropertyPane .homeSearchButton i::before {
  transition: transform 0.25s var(--ease-out-expo);
}
#homePage #homeSearchBlock #homeSearchPane #searchByPropertyPane .homeSearchButton:hover i::before {
  transform: translateX(0.25rem);
}
#homePage #homeSearchBlock #homeSearchPane #searchByTagsPane {
  position: relative;
}
#homePage #homeSearchBlock #homeSearchPane #searchByTagsPane .tagList {
  display: flex;
  flex-wrap: wrap;
  max-width: 30rem;
}
@media (min-width: 768px) {
  #homePage #homeSearchBlock #homeSearchPane #searchByTagsPane .tagList {
    gap: 1rem 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 959.99px) {
  #homePage #homeSearchBlock #homeSearchPane #searchByTagsPane .tagList {
    gap: 0.5rem 1rem;
  }
}
@media (max-width: 767.99px) {
  #homePage #homeSearchBlock #homeSearchPane #searchByTagsPane .tagList {
    gap: 0rem 1rem;
  }
}
#homePage #homeSearchBlock #homeSearchPane #searchByTagsPane .tagItem {
  position: relative;
  font-weight: bold;
  color: var(--c-paige-hilight);
  transition: color 0.25s var(--ease-out-expo), text-shadow 1.5s var(--ease-out-expo);
}
@media (min-width: 768px) {
  #homePage #homeSearchBlock #homeSearchPane #searchByTagsPane .tagItem {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
}
@media (min-width: 768px) and (max-width: 959.99px) {
  #homePage #homeSearchBlock #homeSearchPane #searchByTagsPane .tagItem {
    font-size: 1.25rem;
    line-height: 2rem;
  }
}
@media (max-width: 767.99px) {
  #homePage #homeSearchBlock #homeSearchPane #searchByTagsPane .tagItem {
    font-size: 1.25rem;
    line-height: 2.5rem;
  }
}
#homePage #homeSearchBlock #homeSearchPane #searchByTagsPane .tagItem::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0.25rem;
  border-bottom: 2px solid var(--c-paige-hilight);
  opacity: 0;
  transform: scaleX(0);
  transition: transform 0.25s var(--ease-out-expo), opacity 0.25s var(--ease-out-expo);
}
#homePage #homeSearchBlock #homeSearchPane #searchByTagsPane .tagItem:hover {
  text-shadow: 0 0 1.5rem color-mix(in srgb, var(--c-paige-hilight) 75%, transparent);
}
#homePage #homeSearchBlock #homeSearchPane #searchByTagsPane .tagItem:hover::before {
  opacity: 1;
  transform: scaleX(1);
}
#homePage #homeSearchBlock #homeSearchPane .searchWidget {
  position: absolute;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transform: translateX(-100vw);
  transition: transform 0s 0.5s var(--ease-out-expo);
}
@media (min-width: 768px) {
  #homePage #homeSearchBlock #homeSearchPane .searchWidget {
    top: calc(8rem + var(--topbar-height-pc) + 3rem + 1rem + 1.5rem + 1.5rem);
    left: 10.5rem;
    right: 4rem;
    height: 12rem;
  }
}
@media (min-width: 960px) and (max-width: 1199.99px) {
  #homePage #homeSearchBlock #homeSearchPane .searchWidget {
    top: calc(8rem + var(--topbar-height-pc) + 2rem + 1rem + 1.5rem + 1.5rem);
    left: 9.5rem;
    right: 3rem;
  }
}
@media (min-width: 768px) and (max-width: 959.99px) {
  #homePage #homeSearchBlock #homeSearchPane .searchWidget {
    top: calc(8rem + var(--topbar-height-pc) + 2rem + 1rem + 1.5rem + 1.5rem + 2.5rem);
    left: 2rem;
    right: 2rem;
  }
}
@media (max-width: 767.99px) {
  #homePage #homeSearchBlock #homeSearchPane .searchWidget {
    left: 1.5rem;
    right: 1.5rem;
    height: 30rem;
    bottom: 0;
  }
}
#homePage #homeSearchBlock #homeSearchPane .searchWidget .widgetBg {
  position: absolute;
  z-index: calc(var(--z-content) + 10);
  background-color: #fff;
  transition: width 0.25s 0.25s var(--ease-out-expo), height 0.25s 0.25s var(--ease-out-expo);
}
@media (min-width: 768px) {
  #homePage #homeSearchBlock #homeSearchPane .searchWidget .widgetBg {
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
  }
}
@media (max-width: 767.99px) {
  #homePage #homeSearchBlock #homeSearchPane .searchWidget .widgetBg {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
  }
}
#homePage #homeSearchBlock #homeSearchPane .searchWidget .widgetWrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: calc(var(--z-content) + 11);
  opacity: 0;
  transition: opacity 0.25s var(--ease-out-expo);
}
#homePage #homeSearchBlock #homeSearchPane .searchWidget.-active {
  transform: translateX(0);
  transition: transform 0s var(--ease-out-expo);
}
#homePage #homeSearchBlock #homeSearchPane .searchWidget.-active .widgetBg {
  transition: width 0.25s var(--ease-out-expo), height 0.25s var(--ease-out-expo);
}
@media (min-width: 768px) {
  #homePage #homeSearchBlock #homeSearchPane .searchWidget.-active .widgetBg {
    width: 100%;
  }
}
@media (max-width: 767.99px) {
  #homePage #homeSearchBlock #homeSearchPane .searchWidget.-active .widgetBg {
    height: 100%;
  }
}
#homePage #homeSearchBlock #homeSearchPane .searchWidget.-active .widgetWrapper {
  opacity: 1;
  transition: opacity 0.25s 0.25s var(--ease-out-expo);
}
#homePage #homeSearchBlock #homeSearchPane .searchWidget .colWrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  #homePage #homeSearchBlock #homeSearchPane .searchWidget .colWrapper {
    display: flex;
  }
}
@media (max-width: 767.99px) {
  #homePage #homeSearchBlock #homeSearchPane .searchWidget .colWrapper {
    display: block;
    overflow-y: auto;
  }
}
#homePage #homeSearchBlock #homeSearchPane .searchWidget .col {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
#homePage #homeSearchBlock #homeSearchPane .searchWidget .col .label {
  margin: 0 1rem;
  font-size: 1rem;
  font-weight: bold;
  line-height: 2.5rem;
  border-bottom: 1px solid #ccc;
}
#homePage #homeSearchBlock #homeSearchPane .searchWidget .col .listWrapper {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 1rem 1rem;
  scrollbar-color: var(--c-paige-green) #fff;
}
@media (max-width: 767.99px) {
  #homePage #homeSearchBlock #homeSearchPane .searchWidget .col .listWrapper {
    display: flex;
    flex-wrap: wrap;
  }
}
#homePage #homeSearchBlock #homeSearchPane .searchWidget .col .listWrapper .listItem {
  display: flex;
  align-items: center;
  padding: 0;
  font-size: 1rem;
  line-height: 2.5rem;
  cursor: pointer;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
@media (max-width: 767.99px) {
  #homePage #homeSearchBlock #homeSearchPane .searchWidget .col .listWrapper .listItem {
    flex: 0 0 100%;
    font-size: 0.875rem;
  }
}
#homePage #homeSearchBlock #homeSearchPane .searchWidget .col .listWrapper .listItem .mMrtLineIcon {
  margin-right: 0.5rem;
}
#homePage #homeSearchBlock #homeSearchPane .searchWidget .col .listWrapper .listItem > i {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  font-size: 0.75rem;
  margin-right: 0.75rem;
  line-height: 1rem;
  text-align: center;
  background-color: var(--c-paige-hilight);
}
#homePage #homeSearchBlock #homeSearchPane .searchWidget .col .listWrapper .listItem > i::before {
  color: #fff;
  opacity: 0;
}
#homePage #homeSearchBlock #homeSearchPane .searchWidget .col .listWrapper .listItem.-selected > i {
  background-color: var(--c-paige-green);
}
#homePage #homeSearchBlock #homeSearchPane .searchWidget .col .listWrapper .listItem.-selected > i::before {
  opacity: 1;
}
#homePage #homeSearchBlock #homeSearchPane .searchWidget .accept {
  position: absolute;
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.5rem;
  line-height: 2.5rem;
  text-align: center;
  color: #000;
  background-color: var(--c-paige-hilight);
  cursor: pointer;
}
@media (min-width: 768px) {
  #homePage #homeSearchBlock #homeSearchPane .searchWidget .accept {
    bottom: 100%;
  }
}
@media (max-width: 767.99px) {
  #homePage #homeSearchBlock #homeSearchPane .searchWidget .accept {
    top: 100%;
  }
}
#homePage #homeSearchBlock #homeSearchPane #locationSearchWidget .cityCol {
  flex: 0 0 12rem;
}
@media (min-width: 768px) and (max-width: 959.99px) {
  #homePage #homeSearchBlock #homeSearchPane #locationSearchWidget .cityCol {
    flex: 0 0 10rem;
  }
}
#homePage #homeSearchBlock #homeSearchPane #locationSearchWidget .areaCol {
  flex: 0 0 14rem;
  border-left: 1px solid #ccc;
}
@media (max-width: 767.99px) {
  #homePage #homeSearchBlock #homeSearchPane #locationSearchWidget .areaCol .listItem {
    flex: 0 0 50%;
  }
}
#homePage #homeSearchBlock #homeSearchPane #locationSearchWidget .mrtCol {
  flex: 1 1 auto;
  border-left: 1px solid #ccc;
}
#homePage #homeSearchBlock #homeSearchPane #propertySearchWidget .numBedroomCol {
  flex: 1 1 100%;
}
@media (min-width: 768px) {
  #homePage #homeAboutBlock .wrapper {
    margin-left: auto;
    margin-right: auto;
    padding-top: 6rem;
    padding-bottom: 6rem;
    max-width: 40rem;
  }
}
@media (min-width: 768px) and (max-width: 1199.99px) {
  #homePage #homeAboutBlock .wrapper {
    padding-top: 4rem;
    padding-bottom: 4rem;
    max-width: 40rem;
  }
}
@media (max-width: 767.99px) {
  #homePage #homeAboutBlock .wrapper {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
#homePage #homeAboutBlock .textLogo {
  margin-bottom: 4rem;
  aspect-ratio: 4/1;
  align-content: center;
  text-align: left;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (min-width: 768px) {
  #homePage #homeAboutBlock .textLogo {
    width: 40rem;
  }
}
@media (max-width: 767.99px) {
  #homePage #homeAboutBlock .textLogo {
    width: 20rem;
  }
}
#homePage #homeAboutBlock .textLogo .name {
  color: var(--c-paige-green);
}
@media (min-width: 768px) {
  #homePage #homeAboutBlock .textLogo .name {
    margin-bottom: 0.5rem;
    font-size: 4rem;
  }
}
@media (max-width: 767.99px) {
  #homePage #homeAboutBlock .textLogo .name {
    margin-bottom: 0.25rem;
    font-size: 2rem;
  }
}
#homePage #homeAboutBlock .textLogo .slogan {
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.025em;
  color: #666;
}
@media (min-width: 768px) {
  #homePage #homeAboutBlock .textLogo .slogan {
    font-size: 1.25rem;
  }
}
@media (max-width: 767.99px) {
  #homePage #homeAboutBlock .textLogo .slogan {
    font-size: 0.625rem;
  }
}
#homePage #homeAboutBlock .text {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#homePage #homeAboutBlock .text h2 {
  margin-bottom: 2rem;
  font-weight: 700;
  line-height: 1.33em;
}
@media (min-width: 768px) {
  #homePage #homeAboutBlock .text h2 {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 959.99px) {
  #homePage #homeAboutBlock .text h2 {
    font-size: 1.2rem;
  }
}
@media (max-width: 767.99px) {
  #homePage #homeAboutBlock .text h2 {
    font-size: 1.25rem;
  }
}
#homePage #homeAboutBlock .text p {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.6em;
}
@media (min-width: 768px) {
  #homePage #homeAboutBlock .text p {
    font-size: 1.25rem;
    margin-right: 1.6em;
  }
}
@media (min-width: 768px) and (max-width: 959.99px) {
  #homePage #homeAboutBlock .text p {
    font-size: 1rem;
  }
}
@media (max-width: 767.99px) {
  #homePage #homeAboutBlock .text p {
    margin-right: 0;
    font-size: 0.875rem;
  }
}

#searchPage {
  margin-top: 0;
}
#searchPage #searchHeaderBlock {
  position: relative;
  background-color: #00665E;
}
@media (min-width: 768px) {
  #searchPage #searchHeaderBlock {
    height: calc(var(--topbar-height-pc) + 12rem);
  }
}
@media (min-width: 768px) and (max-width: 1199.99px) {
  #searchPage #searchHeaderBlock {
    height: calc(var(--topbar-height-pc-s) + 12rem);
  }
}
@media (max-width: 767.99px) {
  #searchPage #searchHeaderBlock {
    height: calc(var(--topbar-height-pc-s) + 8rem);
  }
}
#searchPage #searchHeaderBlock .bgimg {
  position: absolute;
  z-index: calc(var(--z-content) + 10);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-image: url("../img/home-search-bg.jpg");
}
#searchPage #searchHeaderBlock .overlay {
  position: absolute;
  z-index: calc(var(--z-content) + 11);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00665E;
  mix-blend-mode: multiply;
}
#searchPage #searchHeaderBlock h1 {
  position: absolute;
  z-index: calc(var(--z-content) + 100);
  font-size: 2.5rem;
  line-height: 3rem;
  bottom: 1.5rem;
  color: #fff;
}
@media (min-width: 768px) {
  #searchPage #searchHeaderBlock h1 {
    left: 4rem;
  }
}
@media (min-width: 768px) and (max-width: 1199.99px) {
  #searchPage #searchHeaderBlock h1 {
    left: 2rem;
  }
}
@media (max-width: 767.99px) {
  #searchPage #searchHeaderBlock h1 {
    left: 1rem;
  }
}
#searchPage #searchFilterBlock .wrapper {
  position: relative;
  padding: 1.5rem 0;
  border-bottom: 1px solid #ccc;
}
@media (min-width: 768px) {
  #searchPage #searchFilterBlock .wrapper {
    padding: 1.5rem 0;
  }
}
@media (max-width: 767.99px) {
  #searchPage #searchFilterBlock .wrapper {
    padding: 0.5rem 0 1rem;
  }
}
@media (min-width: 768px) {
  #searchPage #searchFilterBlock .wrapper .filterList {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 1199.99px) {
  #searchPage #searchFilterBlock .wrapper .filterList {
    gap: 0.5rem;
  }
}
@media (max-width: 767.99px) {
  #searchPage #searchFilterBlock .wrapper .filterList {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
}
@media (max-width: 767.99px) {
  #searchPage #searchFilterBlock .wrapper .filterList {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.5rem;
  }
}
@media (min-width: 768px) {
  #searchPage #searchFilterBlock .wrapper .filterItemSpacer {
    flex: 1 1 0;
  }
}
@media (min-width: 768px) and (max-width: 1199.99px) {
  #searchPage #searchFilterBlock .wrapper .filterItemSpacer {
    flex: 1 1 0;
  }
}
@media (max-width: 767.99px) {
  #searchPage #searchFilterBlock .wrapper .filterItemSpacer {
    display: none;
  }
}
#searchPage #searchFilterBlock .wrapper .filterItem {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (min-width: 768px) {
  #searchPage #searchFilterBlock .wrapper .filterItem {
    flex: 0 0 auto;
    min-width: 0;
  }
}
@media (min-width: 768px) and (max-width: 1199.99px) {
  #searchPage #searchFilterBlock .wrapper .filterItem {
    font-size: 0.875rem;
  }
}
@media (max-width: 767.99px) {
  #searchPage #searchFilterBlock .wrapper .filterItem {
    min-width: 0;
  }
}
#searchPage #searchFilterBlock .wrapper .filterItem .label {
  display: block;
  font-size: 1rem;
  line-height: 2.5rem;
  transition: opacity 0.25s 0.25s var(--ease-out-expo);
}
#searchPage #searchFilterBlock .wrapper .filterItem .label i {
  display: inline-block;
  width: 1.5rem;
  height: 2.5rem;
  text-align: center;
  transition: width 0.25s 0.25s var(--ease-out-expo);
}
#searchPage #searchFilterBlock .wrapper .filterItem .display {
  position: relative;
  display: block;
  overflow: hidden;
  font-size: 1rem;
  line-height: 2.5rem;
  height: 2.5rem;
  min-width: 0;
  background-color: var(--c-paige-hilight);
  cursor: pointer;
}
#searchPage #searchFilterBlock .wrapper .filterItem .display span {
  display: block;
  padding: 0 2rem 0 0.5rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
#searchPage #searchFilterBlock .wrapper .filterItem .display i {
  display: block;
  font-size: 1rem;
  line-height: 2.5rem;
  height: 2.5rem;
  width: 1.5rem;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
}
#searchPage #searchFilterBlock .wrapper .filterItem .select {
  position: absolute;
  z-index: calc(var(--z-content) + 100);
  left: 0;
  top: 2.5rem;
  width: 15rem;
  max-width: calc(100% + 4rem);
  scrollbar-color: var(--c-paige-green) #fff;
  transform: translateX(-100vw);
}
#searchPage #searchFilterBlock .wrapper .filterItem .select::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0%;
  background-color: #fff;
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.2);
  transition: height 0.25s 0.15s var(--ease-out-expo);
}
#searchPage #searchFilterBlock .wrapper .filterItem .select .listWrapper {
  position: relative;
  z-index: calc(var(--z-content) + 10);
  width: 100%;
  max-height: 17.5rem;
  overflow-x: hidden;
  overflow-y: auto;
  opacity: 0;
}
#searchPage #searchFilterBlock .wrapper .filterItem .select .option {
  position: relative;
  vertical-align: middle;
  font-size: 1rem;
  line-height: 2.5rem;
  height: 2.5rem;
  padding: 0 0.5rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
}
#searchPage #searchFilterBlock .wrapper .filterItem .select .option .mMrtLineIcon {
  vertical-align: middle;
  margin-right: 0.5rem;
}
#searchPage #searchFilterBlock .wrapper .filterItem .select .option > i {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 1rem;
  height: 1rem;
  flex-basis: 1rem;
  font-size: 0.75rem;
  margin-right: 0.75rem;
  line-height: 1rem;
  text-align: center;
  background-color: var(--c-paige-hilight);
}
#searchPage #searchFilterBlock .wrapper .filterItem .select .option > i::before {
  color: #fff;
  opacity: 0;
}
#searchPage #searchFilterBlock .wrapper .filterItem .select .option.-selected > i {
  background-color: var(--c-paige-green);
}
#searchPage #searchFilterBlock .wrapper .filterItem .select .option.-selected > i::before {
  opacity: 1;
}
#searchPage #searchFilterBlock .wrapper .filterItem .select .accept {
  position: relative;
  z-index: calc(var(--z-content) + 10);
  display: block;
  margin: 0 0.5rem;
  font-size: 1rem;
  line-height: 2.5rem;
  height: 2.5rem;
  text-align: center;
  cursor: pointer;
  opacity: 0;
  border-top: 1px solid #ccc;
}
#searchPage #searchFilterBlock .wrapper .filterItem .select .accept i {
  display: inline-block;
  width: 1.5rem;
  height: 2.5rem;
  text-align: center;
  margin-left: 0.25rem;
}
#searchPage #searchFilterBlock .wrapper .filterItem.-selected .select {
  transform: translateX(0);
}
#searchPage #searchFilterBlock .wrapper .filterItem.-selected .select::before {
  height: 100%;
  transition: height 0.15s var(--ease-out-expo);
}
#searchPage #searchFilterBlock .wrapper .filterItem.-selected .select .listWrapper,
#searchPage #searchFilterBlock .wrapper .filterItem.-selected .select .accept {
  opacity: 1;
  transition: opacity 0.25s 0.15s var(--ease-out-expo);
}
@media (min-width: 768px) {
  #searchPage #searchFilterBlock .wrapper .filterItem[pgr-filter=city] {
    flex: 1 1 10%;
  }
}
@media (min-width: 768px) {
  #searchPage #searchFilterBlock .wrapper .filterItem[pgr-filter=area] {
    flex: 1 1 10%;
  }
}
@media (min-width: 768px) {
  #searchPage #searchFilterBlock .wrapper .filterItem[pgr-filter=mrt] {
    flex: 1 1 10%;
  }
}
@media (min-width: 768px) {
  #searchPage #searchFilterBlock .wrapper .filterItem[pgr-filter=tag] {
    flex: 1 1 10%;
  }
}
@media (min-width: 768px) {
  #searchPage #searchFilterBlock .wrapper .filterItem[pgr-filter=property] {
    flex: 1 1 10%;
  }
}
#searchPage #searchFilterBlock .wrapper .filterItem.-button {
  align-self: end;
}
@media (min-width: 768px) {
  #searchPage #searchFilterBlock .wrapper .filterItem.-button {
    flex: 0 0 auto;
  }
}
@media (min-width: 768px) {
  #searchPage #searchFilterBlock .wrapper .filterItem.-button .pgrButton {
    width: 5rem;
  }
}
@media (max-width: 767.99px) {
  #searchPage #searchFilterBlock .wrapper .filterItem.-button .pgrButton {
    width: 100%;
  }
}
#searchPage #searchFilterBlock .wrapper .filterItem .pgrButton {
  display: inline-block;
  font-size: 1rem;
  line-height: 2.5rem;
  height: 2.5rem;
  text-align: center;
  color: #fff;
  background-color: var(--c-paige-green);
}
#searchPage #searchFilterBlock .wrapper .filterItem .pgrButton i {
  margin-left: 0.5rem;
}
@media (min-width: 768px) {
  #searchPage #searchResultListBlock {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
@media (max-width: 767.99px) {
  #searchPage #searchResultListBlock {
    padding-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  #searchPage #searchResultListBlock .searchResultList {
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  }
}
@media (min-width: 768px) and (max-width: 959.99px) {
  #searchPage #searchResultListBlock .searchResultList {
    gap: 1.5rem;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
#searchPage #searchResultListBlock .searchResultList .noResult {
  grid-column: 1/-1;
  text-align: center;
  font-size: 2rem;
  line-height: 2rem;
  padding: 3rem 0;
  color: #999;
}
#searchPage #searchResultListBlock .searchResultItem {
  position: relative;
  background-color: #fff;
  cursor: pointer;
  transition: box-shadow 0.5s var(--ease-out-expo);
}
@media (max-width: 767.99px) {
  #searchPage #searchResultListBlock .searchResultItem {
    margin: 1.5rem 0;
  }
}
#searchPage #searchResultListBlock .searchResultItem:hover {
  box-shadow: 0 0.125rem 1.5rem rgba(0, 0, 0, 0.2);
}
#searchPage #searchResultListBlock .searchResultItem:hover .thumbnail .img {
  transform: scale(1.05);
}
#searchPage #searchResultListBlock .searchResultItem .thumbnail {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
#searchPage #searchResultListBlock .searchResultItem .thumbnail .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 1s var(--ease-out-expo);
}
#searchPage #searchResultListBlock .searchResultItem .tagList {
  margin: 0.5rem 1rem;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#searchPage #searchResultListBlock .searchResultItem .tagList .tag {
  display: inline-block;
  margin-right: 0.25rem;
  color: var(--c-paige-green);
}
#searchPage #searchResultListBlock .searchResultItem .name {
  padding: 1.5rem 1rem 0;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.5rem;
  height: 4.5rem;
  overflow: hidden;
}
#searchPage #searchResultListBlock .searchResultItem .info {
  padding: 1.5rem 1rem 0;
  font-size: 0.8125rem;
  line-height: 1.5rem;
}
#searchPage #searchResultListBlock .searchResultItem .info i {
  display: inline-block;
  width: 1rem;
  margin-right: 0.5rem;
  text-align: center;
  color: var(--c-paige-green);
}
#searchPage #searchResultListBlock .searchResultItem .info .addr {
  margin-bottom: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#searchPage #searchResultListBlock .searchResultItem .info .mrt {
  margin-bottom: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#searchPage #searchResultListBlock .searchResultItem .price {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  line-height: 1.5rem;
}
@media (min-width: 768px) {
  #searchPage #searchResultListBlock .searchResultItem .price {
    padding: 1rem 1rem 0.5rem;
  }
}
@media (max-width: 767.99px) {
  #searchPage #searchResultListBlock .searchResultItem .price {
    padding: 1rem 1rem 1rem;
  }
}
#searchPage #searchResultListBlock .searchResultItem .price .currency {
  margin-right: 0.25rem;
  font-size: 0.8125rem;
}
#searchPage #searchResultListBlock .searchResultItem .price .value {
  margin-right: 0.25rem;
  font-size: 2rem;
  font-weight: 600;
  color: var(--c-paige-green);
}
#searchPage #searchResultListBlock .searchResultItem .price .period {
  font-size: 0.8125rem;
}
#searchPage #searchResultListBlock .searchResultItem .price .period::before {
  content: " / ";
}
#searchPage #searchResultListBlock .searchResultItem .link {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#searchPage #searchResultListBlock .searchResultPager {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 767.99px) {
  #searchPage #searchResultListBlock .searchResultPager {
    margin-top: 2rem;
    gap: 0.25rem;
  }
}
#searchPage #searchResultListBlock .searchResultPager span, #searchPage #searchResultListBlock .searchResultPager a {
  display: block;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  color: #000;
  border-radius: 6.25rem;
}
@media (max-width: 767.99px) {
  #searchPage #searchResultListBlock .searchResultPager span, #searchPage #searchResultListBlock .searchResultPager a {
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
  }
}
#searchPage #searchResultListBlock .searchResultPager span.-current, #searchPage #searchResultListBlock .searchResultPager a.-current {
  background-color: var(--c-paige-hilight);
}

#listingTopbar {
  display: none;
}

#listingPage {
  --photosec-padding: 2rem;
  --photo-thumblist-width: 20rem;
  --photo-thumblist-width-s: 10rem;
  background-image: var(--c-bg);
}
@media (min-width: 768px) and (max-width: 959.99px) {
  #listingPage {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767.99px) {
  #listingPage {
    padding-bottom: 1.5rem;
  }
}

#listingHeaderSection {
  position: relative;
  overflow: hidden;
  background-color: var(--c-paige-green-darker);
}
@media (min-width: 768px) {
  #listingHeaderSection {
    padding: var(--photosec-padding);
  }
}
@media (min-width: 960px) {
  #listingHeaderSection {
    margin-top: calc(var(--topbar-height-pc) * -1);
    padding-top: calc(var(--topbar-height-pc) + var(--photosec-padding));
  }
}
@media (min-width: 768px) and (max-width: 1199.99px) {
  #listingHeaderSection {
    margin-top: calc(var(--topbar-height-pc-s) * -1);
    padding-top: calc(var(--topbar-height-pc-s) + var(--photosec-padding));
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 767.99px) {
  #listingHeaderSection {
    padding: 1rem;
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 767.99px) {
  #listingHeaderSection .bgImageWrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scaleY(-1);
  }
}
#listingHeaderSection .bgImage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
  transition: opacity 0.5s ease-out, transform 1s ease-out;
}
#listingHeaderSection .bgOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#listingHeaderSection .bgOverlay.-image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: transform 0.25s ease-out;
}
#listingHeaderSection .bgOverlay.-effect {
  background-color: rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) {
  #listingHeaderSection .bgOverlay.-effect {
    -webkit-backdrop-filter: blur(1rem);
            backdrop-filter: blur(1rem);
  }
}
@media (max-width: 767.99px) {
  #listingHeaderSection .bgOverlay.-effect {
    -webkit-backdrop-filter: blur(1rem);
            backdrop-filter: blur(1rem);
  }
}
@media (max-width: 399.99px) {
  #listingHeaderSection .bgOverlay.-effect {
    -webkit-backdrop-filter: blur(0.6rem);
            backdrop-filter: blur(0.6rem);
  }
}
#listingHeaderSection .bgOverlay.-color {
  mix-blend-mode: overlay;
  background-image: linear-gradient(to bottom, var(--c-paige-green-darker) 50%, var(--c-paige-green) 80%, var(--c-paige-green-lighter) 95%, var(--c-paige-green-light) 100%);
}

#photoDisplaySection {
  position: relative;
  margin-bottom: var(--photosec-padding);
}
@media (max-width: 767.99px) {
  #photoDisplaySection {
    margin-top: 3rem;
  }
}
@media (min-width: 768px) {
  #photoDisplaySection .photoWrapper {
    aspect-ratio: 2.25/1;
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    max-height: calc(100vh - var(--topbar-height-pc) - 18rem);
    overflow: hidden;
  }
}
@media (min-width: 768px) and (max-width: 1199.99px) {
  #photoDisplaySection .photoWrapper {
    max-height: calc(100vh - var(--topbar-height-pc-s) - 18rem);
  }
}
#photoDisplaySection .mainDisplay {
  position: relative;
  aspect-ratio: 16/9;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  box-shadow: 0 0.125rem 1rem rgba(0, 0, 0, 0.5);
  background-color: var(--c-paige-green);
}
#photoDisplaySection .mainDisplay .mainDisplayImage {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 0.25s ease-out;
}
#photoDisplaySection .mainDisplay .arrow {
  position: absolute;
  top: 50%;
  text-align: center;
  color: #fff;
  background-color: color-mix(in srgb, var(--c-paige-green) 50%, rgba(0, 0, 0, 0.9) 10%);
  -webkit-backdrop-filter: blur(1rem);
          backdrop-filter: blur(1rem);
  cursor: pointer;
  transition: all 0.25s ease-out;
  transform: translateY(-50%);
  border-radius: 100%;
}
@media (min-width: 768px) {
  #photoDisplaySection .mainDisplay .arrow {
    width: 2rem;
    height: 2rem;
    font-size: 1.25rem;
    line-height: 2rem;
    opacity: 0.2;
  }
}
@media (max-width: 767.99px) {
  #photoDisplaySection .mainDisplay .arrow {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
    line-height: 2.5rem;
    color: var(--c-paige-green);
    background-color: var(--c-paige-hilight);
  }
}
@media (min-width: 768px) {
  #photoDisplaySection .mainDisplay .arrow:hover {
    color: var(--c-paige-hilight);
    background-color: var(--c-paige-green);
  }
}
#photoDisplaySection .mainDisplay .arrow::before {
  content: "";
  display: block;
  position: absolute;
  top: -0.5rem;
  left: -4rem;
  right: -0.5rem;
  bottom: -4rem;
  border-radius: 100%;
  background-color: var(--c-paige-green);
  opacity: 0;
  transition: opacity 0.25s ease-out;
}
#photoDisplaySection .mainDisplay .arrow i {
  display: block;
}
@media (min-width: 768px) {
  #photoDisplaySection .mainDisplay .arrow.prev {
    left: 0.25rem;
  }
}
@media (max-width: 767.99px) {
  #photoDisplaySection .mainDisplay .arrow.prev {
    left: -1.5rem;
  }
}
@media (min-width: 768px) {
  #photoDisplaySection .mainDisplay .arrow.next {
    right: 0.25rem;
  }
}
@media (max-width: 767.99px) {
  #photoDisplaySection .mainDisplay .arrow.next {
    right: -1.5rem;
  }
}
#photoDisplaySection .mainDisplay:hover .arrow {
  opacity: 1;
}
#photoDisplaySection .thumbList {
  position: relative;
  overflow-y: scroll;
}
@media (min-width: 768px) {
  #photoDisplaySection .thumbList {
    flex: 1 1 auto;
    margin-left: 1rem;
    scrollbar-width: 0.5rem;
    scrollbar-color: var(--c-paige-green-lighter) transparent;
  }
}
@media (max-width: 767.99px) {
  #photoDisplaySection .thumbList {
    margin-top: 1rem;
  }
}
@media (min-width: 768px) {
  #photoDisplaySection .thumbList .thumbListInner {
    position: absolute;
    display: grid;
    grid-gap: 0.5rem;
    grid-template-columns: 100%;
    width: calc(100% - 0.5rem);
  }
}
@media (max-width: 767.99px) {
  #photoDisplaySection .thumbList .thumbListInner {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
  }
}
#photoDisplaySection .thumbList .thumbItem {
  position: relative;
  cursor: pointer;
}
@media (min-width: 768px) {
  #photoDisplaySection .thumbList .thumbItem {
    aspect-ratio: var(--ar-listing-photo);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
}
@media (max-width: 767.99px) {
  #photoDisplaySection .thumbList .thumbItem {
    width: 0.75rem;
    height: 0.75rem;
    background-color: rgba(255, 255, 255, 0.5);
    background-image: none !important;
    border-radius: 50%;
  }
}
@media (min-width: 768px) {
  #photoDisplaySection .thumbList .thumbItem::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0.25rem solid var(--c-paige-hilight);
    opacity: 0;
  }
}
@media (max-width: 767.99px) {
  #photoDisplaySection .thumbList .thumbItem.-active {
    background-color: var(--c-paige-hilight);
  }
}
#photoDisplaySection .thumbList .thumbItem.-active::before {
  opacity: 1;
}

#listingMetaSection {
  position: relative;
}
@media (min-width: 960px) {
  #listingMetaSection {
    display: flex;
    justify-content: flex-start;
  }
}
@media (min-width: 960px) {
  #listingMetaSection .wrapper {
    width: 100%;
    display: flex;
    padding: 0;
    max-width: 60rem;
  }
}
@media (min-width: 960px) {
  #listingMetaSection .c1 {
    flex: 1 1 100%;
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.5);
  }
}
@media (max-width: 959.99px) {
  #listingMetaSection .c1 {
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  }
}
@media (min-width: 960px) {
  #listingMetaSection .c2 {
    flex: 0 0 auto;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  }
}
@media (max-width: 959.99px) {
  #listingMetaSection .c2 {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: flex-end;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  }
}
@media (min-width: 960px) {
  #listingMetaSection .c3 {
    flex: 0 0 auto;
  }
}
@media (min-width: 960px) {
  #listingMetaSection .cr1 {
    margin-bottom: 0.5rem;
    min-height: 3.5rem;
  }
}
@media (min-width: 768px) and (max-width: 959.99px) {
  #listingMetaSection .cr1 {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767.99px) {
  #listingMetaSection .cr1 {
    margin-bottom: 1rem;
  }
}
#listingMetaSection .name {
  font-weight: bold;
  color: #fff;
}
@media (min-width: 960px) {
  #listingMetaSection .name {
    font-size: 1.75rem;
    line-height: 2rem;
    color: #fff;
  }
}
@media (min-width: 768px) and (max-width: 959.99px) {
  #listingMetaSection .name {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
}
@media (max-width: 767.99px) {
  #listingMetaSection .name {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}
@media (min-width: 400px) and (max-width: 767.99px) {
  #listingMetaSection .name {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
}
#listingMetaSection .cr2 {
  display: flex;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1rem;
  align-items: center;
}
@media (max-width: 767.99px) {
  #listingMetaSection .cr2 {
    font-size: 0.875rem;
    line-height: 1rem;
  }
}
#listingMetaSection .transType {
  color: #fff;
  margin-right: 1rem;
}
@media (max-width: 399.99px) {
  #listingMetaSection .transType {
    margin-right: 0.5rem;
  }
}
#listingMetaSection .mrt {
  margin-right: 1rem;
}
@media (max-width: 399.99px) {
  #listingMetaSection .mrt {
    margin-right: 0.5rem;
  }
}
#listingMetaSection .mrt .mMrtLineIcon {
  font-size: 0.75rem;
  line-height: 1rem;
  padding: 0 0.25rem;
}
#listingMetaSection .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--c-paige-hilight);
}
@media (max-width: 399.99px) {
  #listingMetaSection .tags {
    gap: 0.5rem;
  }
}
#listingMetaSection .c2 .price {
  text-align: right;
}
@media (max-width: 959.99px) {
  #listingMetaSection .c2 .price {
    flex: 0 0 auto;
    text-align: right;
  }
}
#listingMetaSection .c2 .price .currency {
  margin-right: 0.25rem;
  font-size: 1rem;
  line-height: 2rem;
  color: #fff;
}
#listingMetaSection .c2 .price .value {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 2rem;
  color: var(--c-paige-hilight);
}
#listingMetaSection .c2 .price .period {
  font-size: 1rem;
  line-height: 1.25rem;
  color: #fff;
}
@media (min-width: 960px) {
  #listingMetaSection .c2 .price .period {
    display: block;
    margin-top: -0.5rem;
  }
}
#listingMetaSection .c2 .mgeFee {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #ccc;
  text-align: right;
}
@media (max-width: 959.99px) {
  #listingMetaSection .c2 .mgeFee {
    flex: 0 0 auto;
    text-align: left;
  }
}
#listingMetaSection .c2 .mgeFee .value {
  display: block;
}

#contentSection .wrapper {
  display: flex;
}
@media (min-width: 960px) {
  #contentSection .wrapper {
    display: flex;
  }
}
@media (min-width: 768px) and (max-width: 959.99px) {
  #contentSection .wrapper {
    display: block;
    max-width: 40rem;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 767.99px) {
  #contentSection .wrapper {
    display: block;
  }
}
@media (min-width: 960px) {
  #contentSection .c1 {
    align-items: flex-end;
    flex: 1 1 auto;
  }
}
@media (min-width: 960px) {
  #contentSection .c2 {
    position: relative;
    flex: 0 0 18rem;
    margin-left: 4rem;
    padding-top: 2rem;
  }
}
@media (min-width: 960px) {
  #contentSection .block {
    padding: 2rem 0;
  }
}
@media (min-width: 768px) and (max-width: 959.99px) {
  #contentSection .block {
    padding: 2rem 0;
  }
}
@media (max-width: 767.99px) {
  #contentSection .block {
    padding: 1.5rem 0;
  }
}
#contentSection .block .title {
  font-size: 1.5rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  #contentSection .block .title {
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 767.99px) {
  #contentSection .block .title {
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin-bottom: 1rem;
  }
}
#contentSection .block + .block {
  border-top: 0.0625rem solid #ddd;
}
@media (min-width: 768px) {
  #contentSection .propListCols {
    display: flex;
    flex-wrap: wrap;
  }
}
#contentSection .propList {
  display: flex;
  flex-wrap: wrap;
  flex: 1 1 100%;
}
#contentSection .propList.-topLine {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 0.0625rem solid #ddd;
}
@media (min-width: 768px) {
  #contentSection .propList.-wide {
    flex: 0 0 100%;
  }
}
@media (min-width: 768px) {
  #contentSection .propList[pr-width=FULL] .propItem {
    flex: 0 0 100%;
  }
}
@media (min-width: 768px) {
  #contentSection .propList[pr-width=HALF] .propItem {
    flex: 0 0 50%;
  }
}
@media (min-width: 768px) {
  #contentSection .propList[pr-width=ONE_THIRD] .propItem {
    flex: 0 0 33.33%;
  }
}
#contentSection .propList .propItem {
  display: flex;
  font-size: 0.875rem;
  line-height: 1.5rem;
  padding: 0.5rem 0;
}
@media (max-width: 767.99px) {
  #contentSection .propList .propItem {
    flex: 1 1 100%;
  }
}
#contentSection .propList .propItem .label {
  flex: 0 0 5rem;
  font-weight: 700;
  color: #999;
}
#contentSection .propList .propItem .value {
  flex: 1 1 auto;
}
#contentSection .propList .propItem .value i {
  display: inline-block;
  width: 1rem;
  text-align: center;
  margin-right: 0.5em;
}
#contentSection .propList .propItem .value[pr-value="1"] {
  color: var(--c-paige-green);
}
#contentSection .propList .propItem .value[pr-value="0"] {
  color: #ccc;
}
#contentSection .incItemList .incItemGroup {
  display: flex;
  flex-wrap: wrap;
}
#contentSection .incItemList .incItem {
  padding: 0.5rem 0;
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: #ccc;
}
@media (min-width: 768px) {
  #contentSection .incItemList .incItem {
    flex: 0 0 33.33%;
  }
}
@media (max-width: 767.99px) {
  #contentSection .incItemList .incItem {
    font-size: 0.8125rem;
    line-height: 1.25rem;
  }
}
@media (min-width: 400px) and (max-width: 767.99px) {
  #contentSection .incItemList .incItem {
    flex: 0 0 33.33%;
  }
}
@media (max-width: 399.99px) {
  #contentSection .incItemList .incItem {
    flex: 0 0 50%;
  }
}
@media (min-width: 768px) {
  #contentSection .incItemList .incItem i {
    display: inline-block;
    width: 1rem;
    text-align: center;
    margin-right: 0.5em;
  }
}
#contentSection .incItemList .incItem.-hasItem {
  color: #333;
}
#contentSection .incItemList .incItem.-hasItem i {
  color: var(--c-paige-green);
}

#mapBlock #listingMap {
  border: 0.25rem solid var(--c-paige-hilight);
  width: 100% !important;
}
@media (min-width: 768px) {
  #mapBlock #listingMap {
    aspect-ratio: 3/2 !important;
  }
}
@media (min-width: 400px) and (max-width: 767.99px) {
  #mapBlock #listingMap {
    aspect-ratio: 2/3 !important;
  }
}
@media (max-width: 399.99px) {
  #mapBlock #listingMap {
    aspect-ratio: 2/3 !important;
  }
}

@media (min-width: 768px) and (max-width: 959.99px) {
  .contactFloatingPlaceholder.-side {
    display: none;
  }
}
@media (max-width: 767.99px) {
  .contactFloatingPlaceholder.-side {
    display: none;
  }
}
@media (min-width: 960px) {
  .contactFloatingPlaceholder.-bottom {
    display: none;
  }
}
@media (min-width: 960px) {
  .contactFloatingPlaceholder {
    position: sticky;
    z-index: var(--z-floating);
    right: 0;
    top: 0;
    width: 100%;
    top: calc(var(--topbar-height-pc) + 3rem);
  }
}
@media (min-width: 960px) and (max-width: 1199.99px) {
  .contactFloatingPlaceholder {
    top: calc(var(--topbar-height-pc-s) + 3rem);
  }
}
@media (min-width: 768px) and (max-width: 959.99px) {
  .contactFloatingPlaceholder {
    position: sticky;
    z-index: var(--z-floating);
    display: flex;
    justify-content: center;
    bottom: 0;
    left: 0;
    right: 0;
  }
}
@media (max-width: 767.99px) {
  .contactFloatingPlaceholder {
    position: sticky;
    z-index: var(--z-floating);
    display: flex;
    justify-content: center;
    bottom: 0;
  }
}
.contactFloatingPlaceholder .contactFloating {
  position: relative;
  background: #fff;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
}
.contactFloatingPlaceholder .contactFloating.-active {
  display: block;
}
@media (min-width: 960px) {
  .contactFloatingPlaceholder .contactFloating {
    width: 18rem;
  }
}
@media (min-width: 768px) and (max-width: 959.99px) {
  .contactFloatingPlaceholder .contactFloating {
    z-index: var(--z-floating);
    display: inline-flex;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    max-width: 40rem;
    height: 3rem;
  }
}
@media (max-width: 767.99px) {
  .contactFloatingPlaceholder .contactFloating {
    z-index: var(--z-floating);
    display: flex;
    align-items: center;
    width: 100%;
    height: 3rem;
    margin: 0 1rem;
  }
}
.contactFloatingPlaceholder .contactFloating > .title {
  font-weight: 700;
  color: #fff;
  background-color: var(--c-paige-green);
}
@media (min-width: 960px) {
  .contactFloatingPlaceholder .contactFloating > .title {
    padding: 0 1rem;
    font-size: 1.5rem;
    line-height: 4rem;
  }
}
@media (min-width: 768px) and (max-width: 959.99px) {
  .contactFloatingPlaceholder .contactFloating > .title {
    flex: 0 0 auto;
    padding: 0 1rem;
    font-size: 1rem;
    line-height: 3rem;
  }
}
@media (max-width: 767.99px) {
  .contactFloatingPlaceholder .contactFloating > .title {
    display: none;
  }
}
.contactFloatingPlaceholder .contactFloating > .agent {
  position: relative;
}
@media (min-width: 960px) {
  .contactFloatingPlaceholder .contactFloating > .agent {
    height: 5rem;
    padding: 0 2rem;
    align-content: center;
  }
}
@media (min-width: 768px) and (max-width: 959.99px) {
  .contactFloatingPlaceholder .contactFloating > .agent {
    flex: 1 1 auto;
    padding: 0 1rem;
  }
}
@media (max-width: 767.99px) {
  .contactFloatingPlaceholder .contactFloating > .agent {
    flex: 1 1 auto;
    padding: 0 1rem;
  }
}
.contactFloatingPlaceholder .contactFloating > .agent .agentTitle {
  color: #999;
}
@media (min-width: 960px) {
  .contactFloatingPlaceholder .contactFloating > .agent .agentTitle {
    font-size: 0.875rem;
    line-height: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 959.99px) {
  .contactFloatingPlaceholder .contactFloating > .agent .agentTitle {
    font-size: 0.75rem;
    line-height: 1rem;
    margin-right: 0.5rem;
  }
}
@media (max-width: 767.99px) {
  .contactFloatingPlaceholder .contactFloating > .agent .agentTitle {
    font-size: 0.75rem;
    line-height: 1rem;
    margin-right: 0.5rem;
  }
}
.contactFloatingPlaceholder .contactFloating > .agent .agentName {
  font-weight: 700;
}
@media (min-width: 960px) {
  .contactFloatingPlaceholder .contactFloating > .agent .agentName {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 959.99px) {
  .contactFloatingPlaceholder .contactFloating > .agent .agentName {
    font-size: 1rem;
    line-height: 1.25rem;
  }
}
@media (max-width: 767.99px) {
  .contactFloatingPlaceholder .contactFloating > .agent .agentName {
    font-size: 1rem;
    line-height: 1.25rem;
  }
}
@media (min-width: 960px) {
  .contactFloatingPlaceholder .contactFloating > .contact {
    margin-top: -1rem;
    padding: 0.5rem 1rem;
  }
}
@media (min-width: 768px) and (max-width: 959.99px) {
  .contactFloatingPlaceholder .contactFloating > .contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-right: 0.5rem;
  }
}
@media (max-width: 767.99px) {
  .contactFloatingPlaceholder .contactFloating > .contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-right: 0.5rem;
  }
}
@media (min-width: 960px) {
  .contactFloatingPlaceholder .contactFloating > .contact .contactItem {
    display: block;
    margin: 0.5rem 0;
    padding: 0 0.5rem;
    font-size: 1rem;
    line-height: 3rem;
    color: #000;
    background-color: #e8e8e8;
  }
}
@media (min-width: 768px) and (max-width: 959.99px) {
  .contactFloatingPlaceholder .contactFloating > .contact .contactItem {
    width: 6rem;
    font-size: 1rem;
    line-height: 2rem;
    text-align: center;
    color: #fff;
    background-color: var(--c-paige-green);
    border-radius: 0.25rem;
  }
}
@media (max-width: 767.99px) {
  .contactFloatingPlaceholder .contactFloating > .contact .contactItem {
    width: 5rem;
    font-size: 0.875rem;
    line-height: 2rem;
    text-align: center;
    color: #fff;
    background-color: var(--c-paige-green);
    border-radius: 0.25rem;
  }
}
.contactFloatingPlaceholder .contactFloating > .contact .contactItem i {
  display: inline-block;
  text-align: center;
}
@media (min-width: 960px) {
  .contactFloatingPlaceholder .contactFloating > .contact .contactItem i {
    width: 2rem;
  }
}
@media (min-width: 768px) and (max-width: 959.99px) {
  .contactFloatingPlaceholder .contactFloating > .contact .contactItem i {
    width: 2rem;
  }
}
@media (max-width: 767.99px) {
  .contactFloatingPlaceholder .contactFloating > .contact .contactItem i {
    width: 1.5rem;
  }
}
@media (min-width: 960px) {
  .contactFloatingPlaceholder .contactFloating > .contact .contactItem .label::after {
    content: " / ";
  }
}
@media (min-width: 768px) and (max-width: 959.99px) {
  .contactFloatingPlaceholder .contactFloating > .contact .contactItem .value {
    display: none;
  }
}
@media (max-width: 767.99px) {
  .contactFloatingPlaceholder .contactFloating > .contact .contactItem .value {
    display: none;
  }
}

#adminPanel {
  position: fixed;
  left: 50%;
  bottom: 0;
  width: auto;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  line-height: 2em;
  transform: translateX(-50%);
  box-shadow: 0 0 rgba(0, 0, 0, 0.1);
  color: #fff;
  background-color: var(--c-red);
}