@charset "UTF-8";
.property-flex.item4 li {
  /* height: 676px; */
  border: 0.5px solid #D8D8D8;
  border-radius: 10px;
  box-shadow: 0 0 6px rgb(0 0 0 / 16%);
  overflow: hidden;
}

.p-indexPropertyListItem {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.area-button-container {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.area-scroll-button {
  width: 29%;
  height: 72px;
  border: none;
  border-radius: 6px;
  background-color: #DBC993;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  gap: 8px;
}

.area-scroll-button:hover {
  background-color: #e0e0e0;
}

.area-scroll-button.active {
  background-color: #C7A956;
  color: #fff;
  border-color: #C7A956;
  font-weight: bold;
}

.property-flex {
  margin-top: 20px;
}

.imgWrap {
  width: 100%;
  height: 358px;
  position: relative;
  overflow: hidden;
}

.slide-content {
  width: 302%;
  height: 100%;
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide-content div {
  width: 33.33%;
  height: 100%;
  flex-shrink: 0;
}

.slide-content div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide1 {
  transform: translateX(0);
}
.slide2 {
  transform: translateX(-33.33%);
}
.slide3 {
  transform: translateX(-66.66%);
}

.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  border: none;
  user-select: none;
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

.prev-btn::before,
.next-btn::before {
  content: '';
  display: block;
  width: 19px;
  height: 19px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.prev-btn::before {
  background-image: url(/common/img/pc/prev_arrow.svg);
}
.next-btn::before {
  background-image: url(/common/img/pc/next_arrow.svg);
}

.indicator-nav {
  width: 100%;
  position: absolute;
  bottom: 20px;
  display: flex;
  column-gap: 10px;
  z-index: 10;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  display: none;
}

.indicator-nav li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  list-style: none;
  background-color: #fff;
  border: 1px solid #000;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.p-indexPropertyListItem__tag {
  position: absolute;
  z-index: 10;
  background-color: white;
  padding: 6px 8px;
  line-height: 1;
  font-size: 11px;
  font-weight: 500;
  border-radius: 100px;
  box-shadow: 0 1px 4px rgb(0 0 0 / 50%);
  bottom: 8px;
  left: 10px;
  border: none;
  cursor: pointer;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.textWrap{
  flex-grow: 1;
  padding: 16px 16px 0;
}

.item__name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  max-width: 100%;
  word-break: break-all;
  white-space: normal;
  margin-bottom: 16px;
  color: #C7A956;
  font-size: 18px;
  font-weight: bold;
  text-decoration: underline;
}
.item__name:hover {
  color: #DBC993;
}

.item__info {
  font-size: 13px;
  color: #3C3C3C;
}

.item__info-icon{
  align-items: center;
  justify-content: center;
  margin-right: 3px;
}

.c-indexIcon {
  width: 19px;
  align-items: center;
  justify-content: center;
  display: inline-flex;
}

.item__info-content{
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}
.item__info-content:last-child {
  margin-bottom: 0;
}
.item__info-content span{
  width: 3em;
}
.item__info-content p{
  margin-left: 8px;
}

.linkWrap {
  display: flex;
  gap: 6px;
  margin-top: 16px;
  padding: 0 16px 16px;
}
.noRoom {
  display: block;
}

.propertyLink {
  width: 50%;
  background-color: #FBF8F2;
  padding: 4px 8px 8px;
  gap: 14px;
  border-radius: 4px;
  box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.propertyLink a {
  color: #595757;
}

.propertyCount, .propertyPrice {
  font-size: 13px;
}
.propertyPrice {
  font-weight: bold;
}

.propertyCount .count {
  color: #DF5252;
  font-size: 22px;
  font-weight: bold;
}

.propertyPrice .price{
  color: #DF5252;
  font-size: 24px;
  font-weight: bold;
}

.contactLink {
  width: 50%;
}
.noRoom .contactLink {
  display: flex;
  width: 100%;
  margin-bottom: 4px;
}

.contactLink a, .notificationLink a {
  color: #FFFFFF;
}
.contactLink a{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  gap: 6px;
  border-radius: 4px;
  font-size: 13px;
}
.noRoom .contactLink a{
  width: 50%;
}

.link_detail {
  background-color: #FBF8F2;
}
.link_inquiry {
  background-color: #C7A956;
}
.link_baikyaku {
  background-color: #83734D;
}
.noRoom .notificationLink a{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #DF5252;
  width: 100%;
  height: 48px;
  border-radius: 4px;
  gap: 6px;
}

.contactLink {
  display: grid;
  gap: 4px;
}

@media screen and (max-width: 1024px) {
  .imgWrap {
    height: 35.8vw;
  }
}

@media screen and (max-width: 769px) {
  .area-scroll-button{
    height: 60px;
    font-size: 16px;
  }

  .propertyLink {
  width: 45%;
  }

  .contactLink {
  width: 55%;
  }

  .imgWrap {
    height: 88vw;
  }
}
