@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.subcatch {
  font-size: 1em;
  line-height: 1.7;
  color: #444;
  text-align: center;
  margin: 20px auto 30px;
  max-width: 700px;
  padding: 0 15px;
}

.subcatch span {
  display: block;
  font-size: 1.4em;
  font-weight: bold;
  color: #2c3e50;
}

.property-videos {
  width: 70%;
  margin: 30px auto 0;
  padding: 15px;
  background-color: #f7f4f1;
}

.property-title {
  font-weight: bold;
  font-size: 1.4em;
  margin-bottom: 30px;
  border-left: solid 20px #678d91;
  padding-left: 5px;
}

.swiper-container-wrap {
  position: relative;
  overflow: hidden;
}

.swiper.mySwiper {
  width: 90%;
  padding-bottom: 40px;
}

.swiper-slide.property-item {
  width: calc((100% - 30px) / 3);
  height: auto;
  background-color: #fff;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.property-item:hover {
  background-color: #fffcc8;
}

.property-item h3 {
  margin-top: 10px;
  font-size: 1.2em;
  font-weight: bold;
  font-family: "FuturaMaxiStd-Book", "DNPShueiGoGinStd-M", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", "sans-serif";
}

.tour-badge {
  background-color: #e0f0ff;
  color: #0066cc;
  padding: 3px 8px;
  margin: 2px 4px 2px 0;
  font-weight: 600;
  border-radius: 12px;
  font-size: 1.4rem;
}

.mom-badge {
  background-color: #6eb7b0;
  color: #fff;
  padding: 3px 8px;
  margin: 2px 4px 2px 0;
  font-weight: 600;
  border-radius: 12px;
  font-size: 1.4rem;
}

.property-info li {
  font-size: 1.5rem;
  margin: 10px 0;
}

.label {
  font-size: 1.5rem;
  background-color: rgba(151, 151, 151, 0.3);
  padding: 2px 6px;
  margin-right: 5px;
  font-weight: bold;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", "sans-serif";
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.swiper-button-prev {
  position: absolute;
  left: -40px;
}

.swiper-button-next {
  position: absolute;
  right: -40px;
}

.swiper {
  overflow: hidden;
}


@media screen and (max-width: 768px) {

  .subcatch {
    margin-top: 15px;
  }

  .property-videos {
    width: 95%;
    padding: 10px;
    margin-top: 10px;
  }

  .property-title {
    margin-bottom: 20px;
  }

  .swiper.mySwiper {
    width: 100%;
    padding: 0;
  }

  .swiper-wrapper {
    flex-direction: column;
  }

  .swiper-slide.property-item {
    width: 100%;
    background-color: #fff;
    padding: 10px;
    margin-bottom: 15px;
  }

  .card-link {
    text-decoration: none;
    color: inherit;
    display: block;
  }

  .card-inner {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
  }

  .image-wrap img {
    width: 150px;
    height: auto;
    object-fit: cover;
    margin: 0;
  }

  .text-content {
    flex: 1;
  }

  .property-item h3 {
    margin-bottom: 10px;
    font-size: 1.2em;
  }

  li:nth-of-type(1) {
    display: flex;
    flex-direction: row;
  }

  .tour-badge {
    font-size: 1.2rem;
  }

  .mom-badge {
    font-size: 1.2rem;
  }

  .property-info li {
    font-size: 1.2rem;
  }

  .label {
    font-size: 1.2rem;
  }

  .swiper-button-prev,
  .swiper-button-next,
  .swiper-pagination {
    display: none !important;
  }
}