@charset "UTF-8";
.container p {
  text-align: justify;
  font-weight: normal;
  margin: 0;
}
.container a {
  text-decoration: none;
  color: black;
}

.title_box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.title_box .icon {
  font-size: 14px;
  color: #fff;
  padding: 0.2rem 0.5rem;
}
.title_box .icon.new {
  background-color: #1375b4;
}
.title_box .icon.land {
  background-color: #d13532;
}
.title_box .icon.old {
  background-color: #3cc27c;
}
.title_box .icon.apart {
  background-color: #214604;
}
.title_box .icon.ainvestpart {
  background-color: #ccc;
}

.contact_row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  grid-gap: 1rem;
  width: 100%;
  padding: 1rem;
  margin: 0 auto;
  background-color: #1375b4;
}
.contact_row .col {
  width: 100%;
  text-align: center;
}
.contact_row .col span {
  display: inline-block;
  color: #fff;
}
.contact_row .flex_row {
  width: 100%;
  display: flex;
  grid-gap: 1rem;
  align-items: stretch;
  justify-content: center;
}
.contact_row .flex_row .con_box {
  flex: 1;
  height: 100%;
}
.contact_row .flex_row .con_box .button {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 0.5rem;
  width: 100%;
  height: 100%;
  padding: 0.4rem 0.5rem;
  border: 1px solid #1375b4;
  background-color: #fff;
  transition: all 0.5s;
}
.contact_row .flex_row .con_box .button svg {
  width: auto;
  height: 24px;
  fill: #1375b4;
  transition: all 0.5s;
}
.contact_row .flex_row .con_box .button .txt {
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  transition: all 0.5s;
  color: #1375b4;
}
.contact_row .flex_row .con_box .button .num {
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
  transition: all 0.5s;
  color: #1375b4;
}
.contact_row .flex_row .con_box .button:hover {
  background-color: #1375b4;
  border: 1px solid #fff;
}
.contact_row .flex_row .con_box .button:hover span {
  color: #fff;
}
.contact_row .flex_row .con_box .button:hover svg {
  fill: #fff;
}

.mainImage {
  position: relative;
  padding-bottom: 3rem;
}
.mainImage .mainslider {
  width: 100%;
  margin: 0 auto 2rem;
  overflow: hidden;
  position: relative;
}
.mainImage .mainslider .slider .swiper-slide {
  text-align: center;
}
.mainImage .mainslider .slider .swiper-slide img {
  width: auto;
  max-width: 100%;
  height: 50vw;
  max-height: 650px;
  -o-object-fit: contain;
     object-fit: contain;
}
.mainImage .subslider {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.mainImage .subslider .slider {
  width: 100%;
  height: clamp(5rem, 2.778rem + 4.63vw, 6.25rem);
}
.mainImage .subslider .slider .swiper-slide {
  text-align: center;
  opacity: 0.5;
}
.mainImage .subslider .slider .swiper-slide img {
  width: auto;
  height: 100%;
}
.mainImage .subslider .slider .swiper-slide-thumb-active {
  opacity: 1;
}
.mainImage .swiper-pagination {
  bottom: -3vw;
}

.detail_area {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0.2rem;
}
.detail_area .detail_row {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  grid-gap: 0.5rem;
}
.detail_area .detail_row dt, .detail_area .detail_row dd {
  display: flex;
  align-items: center;
  margin: 0;
}
.detail_area .detail_row dt {
  padding: 0.5rem 1rem;
  width: 8rem;
  background-color: #f8f9fa;
}
.detail_area .detail_row dd {
  width: calc(100% - 8.5rem);
}

/* ----------------------------------------------

  sp設定

  ------------------------------------------------*/
@media all and (min-width: 769px) {
  .container a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
/* ----------------------------------------------

  SP設定

  ------------------------------------------------*/
@media all and (max-width: 768px) {
  .container .col span {
    font-size: 14px;
    display: inline;
  }
  .container .contact_row .flex_row {
    grid-gap: 0.5rem;
    flex-direction: column;
    align-items: center;
  }
  .container .contact_row .flex_row .con_box {
    width: 100%;
    flex: unset;
  }
  .container .mainImage {
    position: relative;
    padding-bottom: 3rem;
  }
  .container .mainImage .mainslider .slider .swiper-slide img {
    height: 60vw;
    max-height: unset;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .container .mainImage .swiper-pagination {
    bottom: 0;
  }
  .container .detail_area {
    grid-template-columns: repeat(1, 1fr);
  }
  .detail_area .detail_row dt {
    width: 7rem;
  }
  .detail_area .detail_row dd {
    width: calc(100% - 7.5rem);
  }
}