@charset "UTF-8";
/* arguments inittial */
/* font style */
/* site style */
/* [ opacity ]
-------------------------------------------------*/
/* [ display style ]
-------------------------------------------------*/
/* [ background-image ]
-------------------------------------------------*/
/* [ writing-mode ]
-------------------------------------------------*/
/* [ illustrator & photoshop letter spacing ]
-------------------------------------------------*/
/* [ easy breakpoint ]
-------------------------------------------------*/
/* [ easy transform ]
-------------------------------------------------*/
.fv-content {
  width: 100%;
  height: 100vh;
}
.fv-content-img {
  object-fit: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-size: cover;
  background-position: center center;
  background-image: url("../img/top/fv-img05.webp");
}
.fv-content-img .caption {
  position: absolute;
  right: 25px;
  bottom: 70px;
  font-size: 10px;
  z-index: 3;
}
.fv-content-img:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
  top: 0;
  left: 0;
}
@media (min-width: 768px) {
  .fv-content-img {
    background-image: url("../img/top/fv-img05-pc.webp");
  }
}
.fv-content-img:after {
  background: rgba(0, 0, 0, 0.5);
}
.fv-content .bottomline {
  position: absolute;
  width: 100%;
  height: 15px;
  bottom: 0;
  left: 0;
  z-index: 3;
}
.fv-content-title {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .fv-content-title {
    font-size: 48px;
    line-height: 1.2;
  }
}
.fv-content-title-img {
  max-width: 60%;
}
@media (min-width: 768px) {
  .fv-content-title-img {
    max-width: 100%;
  }
}
.fv-content-text {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 50px 15px;
  pointer-events: none;
  justify-content: center;
  height: 100%;
}
@media (min-width: 768px) {
  .fv-content-text {
    padding: 100px 50px;
    /*max-width: 1200px;*/
    margin: 0 auto;
    justify-content: flex-end;
  }
}
.fv-content .scroll {
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 12px;
  height: 60px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .fv-content .scroll {
    bottom: 0;
  }
}
.fv-content .scroll:after {
  content: "";
  top: 0;
  left: 50%;
  width: 1px;
  height: 90px;
  position: absolute;
  background: #fff;
  animation: scrollanimation 1.3s infinite;
}

.main {
  padding: 50px 15px;
  padding-right: 0;
}
@media (min-width: 768px) {
  .main {
    padding: 70px 15px;
  }
}
.main-subtitle {
  padding: 15px;
  padding-left: 0;
}
@media (min-width: 768px) {
  .main-subtitle {
    padding: 30px;
  }
}

.search {
  padding: 50px 0;
}
.search-title {
  padding: 30px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid #969696;
  max-width: 800px;
  margin: 0 auto;
}
.search-wrap {
  padding: 0 15px;
}
.search-criteria-group {
  display: flex;
  flex-direction: row;
  gap: 15px;
  padding: 15px 0;
  align-items: center;
  flex-wrap: wrap;
}
.search-criteria-group .title {
  width: 100%;
  border-bottom: 1px solid #969696;
  text-align: center;
  padding-bottom: 10px;
  color: #969696;
}
@media (min-width: 768px) {
  .search-criteria-group .title {
    border: none;
    width: auto;
    padding: 0;
  }
  .search-criteria-group .title:after {
    content: "：";
  }
}
.search .checkboxItem {
  display: flex;
  align-items: center;
  column-gap: 4px;
  line-height: 1;
  cursor: pointer;
  width: calc(50% - 15px);
  font-size: 12px;
  color: #969696;
}
@media (min-width: 768px) {
  .search .checkboxItem {
    font-size: 16px;
    width: auto;
  }
}
.search .checkbox {
  appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid #969696;
  border-radius: 2px;
  cursor: pointer;
}
.search .checkbox:checked::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 3px;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #000000;
  border-left: 2px solid #000000;
  transform: rotate(-45deg);
}
.search #searchButton {
  background: #000;
  color: #fff;
  padding: 5px 40px;
  transition: all 0.4s ease;
  cursor: pointer;
  width: 100%;
}
.search #searchButton:hover {
  opacity: 0.6;
}
@media (min-width: 768px) {
  .search #searchButton {
    width: auto;
  }
}
.search-result {
  background: linear-gradient(106.5deg, rgba(58, 161, 239, 0.1) 0%, rgba(148, 227, 181, 0.1) 100%);
  position: relative;
  margin-top: 20px;
  padding: 30px 15px;
}
@media (min-width: 768px) {
  .search-result {
    margin-top: 20px;
  }
}
.search-result:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 15px;
  background: linear-gradient(90deg, rgb(58, 162, 240) 0%, rgb(149, 228, 182) 100%);
}
.search-result-wrap {
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .search-result-wrap {
    padding-bottom: 50px;
  }
}
.search-result-title, .search-result-title2 {
  font-size: 24px;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 20px;
  display: none;
}
@media (min-width: 768px) {
  .search-result-title, .search-result-title2 {
    font-size: 30px;
  }
}
.search-result-title2 {
  display: block;
}
.search-result-text {
  text-align: center;
  font-size: 16px;
}
@media (min-width: 768px) {
  .search-result-text {
    font-size: 20px;
  }
}
.search-result-text .big {
  font-size: 2em;
}
.search-result-flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}
.search-result__item {
  background: #fff;
  width: 100%;
}
@media (min-width: 768px) {
  .search-result__item {
    width: calc((100% - 16px) / 3);
  }
}
.search-result-pref {
  font-size: 15px;
}
.search-result-pref-header {
  font-size: 28px;
  width: 100%;
  margin-top: 30px;
}
.search-result-col {
  display: flex;
  gap: 8px;
  padding: 10px;
  flex-direction: column;
  position: relative;
  height: 100%;
}
@media (min-width: 768px) {
  .search-result-col {
    flex-direction: column;
  }
}
.search-result-col .new:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 42px;
  background: url("../img/common/new-left-top.svg") no-repeat left top;
  background-size: contain;
}
.search-result-col .typename {
  font-size: 12px;
  padding: 5px 0;
  font-weight: bold;
}
.search-result-col .frame {
  display: flex;
  flex-direction: column;
  position: relative;
  flex-grow: 1;
}
.search-result-col .thumb {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .search-result-col .thumb {
    width: 100%;
    padding: 0;
    margin-bottom: 10px;
  }
}
.search-result-col .thumb img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .search-result-col .thumb img {
    object-fit: contain;
  }
}
.search-result-col .thumb p {
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 10px;
  font-weight: 500;
}
.search-result-col .thumb p.shadow {
  text-shadow: 0 0 5px rgb(0, 0, 0), 0 0 5px rgb(0, 0, 0), 0 0 5px rgb(0, 0, 0), 0 0 5px rgb(0, 0, 0);
}
.search-result-col .thumb p.bottom {
  top: none;
  bottom: 5px;
}
.search-result-col .thumb.soldout:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.search-result-col .title {
  padding-bottom: 15px;
  flex-grow: 1;
}
.search-result-col .title__inner {
  padding-bottom: 10px;
}
.search-result-col dl {
  position: relative;
  display: flex;
  flex-direction: row;
}
.search-result-col dl:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background: #00ceff;
}
.search-result-col dl:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
  background: #00ceff;
}
@media (min-width: 768px) {
  .search-result-col dl {
    flex-direction: row;
  }
}
.search-result-col dl dt {
  font-size: 10px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  padding-left: 0;
  text-wrap: nowrap;
  padding: 5px;
  min-width: 100px;
}
@media (min-width: 768px) {
  .search-result-col dl dt {
    font-size: 11px;
    padding: 8px;
    min-width: calc(38px + 2.5rem);
  }
}
.search-result-col dl dt:before {
  content: "";
  width: 17px;
  height: 24px;
  position: relative;
  background: url("../img/common/pin-h.svg") no-repeat center center;
  background-size: contain;
}
.search-result-col dl dd {
  font-size: 11px;
  padding: 5px;
  display: flex;
  align-items: center;
  font-weight: bold;
  border-left: 1px solid #6dc7d0;
}
@media (min-width: 768px) {
  .search-result-col dl dd {
    font-size: 14px;
  }
}
.search-result-col .text {
  width: 100%;
  font-size: 11px;
  display: flex;
  gap: 15px;
  flex-direction: column;
  line-height: 1.5;
  font-feature-settings: "palt";
}
@media (min-width: 768px) {
  .search-result-col .text {
    width: 100%;
  }
}
.search-result-col .text .small {
  font-size: 0.8em;
}
.search-result-col .detail {
  padding: 0 10px;
}
.search-result-col .detail-lead br {
  display: none;
}
@media (min-width: 768px) {
  .search-result-col .detail-lead br {
    display: inline-block;
  }
}
.search-result-col .detail p {
  font-size: 10px;
  line-height: 1.2;
  padding-top: 5px;
  letter-spacing: -0.2px;
  padding-bottom: 15px;
}
@media (min-width: 768px) {
  .search-result-col .detail p {
    font-size: 13px;
    line-height: 1.5;
    padding: 8px 5px;
    letter-spacing: 0;
  }
}
.search-result-col .bottombtn {
  justify-self: flex-end;
}
.search-result-col .modelroomopen {
  text-align: center;
  padding-top: 5px;
}
.search-result-col .modelroomopen-bg {
  color: #fff;
  font-size: 10px;
  padding: 8px 5px;
  text-align: center;
  background: #005fac;
  display: inline-block;
  min-width: 75%;
}
@media (min-width: 768px) {
  .search-result-col .modelroomopen-bg {
    font-size: 11px;
  }
}
.search-result .apartment dl:before {
  background: #00ceff;
}
@media (min-width: 768px) {
  .search-result .apartment dl:before {
    background: #00ceff;
  }
}
.search-result .apartment dl dt:before {
  background-image: url(../img/common/pin-h.svg);
}
.search-result .apartment dl dd {
  border-left: 1px solid #00ceff;
}
.search-result .apartment .bottombtn {
  text-align: center;
  padding-top: 5px;
}
.search-result .apartment .bottombtn .bg {
  color: #fff;
  font-size: 10px;
  padding: 8px 5px;
  text-align: center;
  background: #00ceff;
  display: inline-block;
  min-width: 75%;
}
@media (min-width: 768px) {
  .search-result .apartment .bottombtn .bg {
    font-size: 11px;
  }
}
.search-result .house dl:before {
  background: #005ea9;
}
.search-result .house dl:after {
  background: #005ea9;
}
@media (min-width: 768px) {
  .search-result .house dl:before {
    background: #005ea9;
  }
}
.search-result .house dl dt:before {
  background-image: url(../img/common/pin-sekisuiheim.svg);
}
.search-result .house dl dd {
  border-left: 1px solid #005ea9;
}
.search-result .house .bottombtn {
  text-align: center;
  padding-top: 15px;
}
.search-result .house .bottombtn .bg {
  color: #fff;
  font-size: 10px;
  padding: 8px 5px;
  text-align: center;
  background: #005fac;
  display: inline-block;
  min-width: 75%;
}
@media (min-width: 768px) {
  .search-result .house .bottombtn .bg {
    font-size: 11px;
  }
}
.search-result .leadtown dl:before {
  background: linear-gradient(90deg, #3aa2f0 0%, #95e4b6 100%);
}
.search-result .leadtown dl:after {
  background: linear-gradient(90deg, #3aa2f0 0%, #95e4b6 100%);
}
.search-result .leadtown dl dt:before {
  background-image: url(../img/common/pin-leadtown.svg);
}
.search-result .leadtown .bottombtn {
  text-align: center;
  padding-top: 15px;
}
.search-result .leadtown .bottombtn .bg {
  color: #fff;
  font-size: 10px;
  padding: 8px 5px;
  text-align: center;
  background: linear-gradient(90deg, #3aa2f0 0%, #95e4b6 100%);
  display: inline-block;
  min-width: 75%;
}
@media (min-width: 768px) {
  .search-result .leadtown .bottombtn .bg {
    font-size: 11px;
  }
}
.search-result .rental dl:before {
  background: #0091ca;
}
.search-result .rental dl:after {
  background: #0091ca;
}
@media (min-width: 768px) {
  .search-result .rental dl:before {
    background: #0091ca;
  }
}
.search-result .rental dl dt:before {
  background-image: url(../img/common/pin-rental.svg);
}
.search-result .rental dl dd {
  border-left: 1px solid #0091ca;
}
.search-result .rental .bottombtn {
  text-align: center;
  padding-top: 15px;
}
.search-result .rental .bottombtn .bg {
  color: #fff;
  font-size: 10px;
  padding: 8px 5px;
  text-align: center;
  background: #0091ca;
  display: inline-block;
  min-width: 75%;
}
@media (min-width: 768px) {
  .search-result .rental .bottombtn .bg {
    font-size: 11px;
  }
}
.search-result .soldout {
  font-size: 12px;
}
.search-result .soldout .big {
  font-size: 1.5em;
  font-weight: bold;
}

@keyframes scrollanimation {
  0% {
    top: 15px;
    height: 1px;
  }
  50% {
    top: 15px;
    height: 70px;
  }
  100% {
    top: 80px;
  }
}/*# sourceMappingURL=search.css.map */