/* ===========================================
 * 住宅購入の選択が豊富 -それぞれの特徴をみる-
 * ======================================== */

/* セクション
/* -----------------------------------------*/
.select_example_hr {
  padding: 56px 72px 0;
  border-top: 2px solid #000000;
  border-left: none;
  border-right: none;
  border-bottom: none;
}

.select_example {
  padding: 0 72px;
  margin-bottom: 100px;
}

.select_example:first-child {
  padding-top: 56px;
  border-top: 2px solid #000000;
}

.select_example:last-child {
  margin-bottom: 139px;
}

@media only screen and (max-width: 768px) {
  .select_example_hr {
    margin-top: -24px;
    padding: 20px 0;
  }
  
  .select_example {
    padding: 0 18px;
  }
  
  .select_example:last-child {
    margin-bottom: 124px;
  }
}

/* 見出し
/* -----------------------------------------*/
.select_example h2 {
  font-family: Hiragino Kaku Gothic Pro;
  font-size: 24px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0.1em;
  margin-bottom: 17px;
}

.select_example h2 span {
  font-family: Hiragino Kaku Gothic Pro;
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
  letter-spacing: 0.04em;
  display: block;
  margin-top: 8px;
}

@media only screen and (max-width: 768px) {
  .select_example h2 {
    margin-bottom: 16px;
  }
}

/* リノベーション度バナー
/* -----------------------------------------*/
.select_example_bar {
  width: 100%;
  height: auto;
  margin-bottom: 16px;
}

@media only screen and (max-width: 768px) {
  .select_example_bar {
    margin-bottom: 24px;
  }
}

/* 物件概要
/* -----------------------------------------*/
.select_example_about {
  font-family: Hiragino Kaku Gothic Pro;
  font-size: 15px;
  font-weight: 600;
  line-height: 15px;
  letter-spacing: 0.1em;
  margin-left: 16px;
  margin-bottom: 24px;
  display: flex;
}

.select_example_about dl {
  display: flex;
  margin-right: 32px;
  position: relative;
}

.select_example_about dl:before {
  content: '';
  background-color: #019BD9;
  width: 8px;
  height: 8px;
  position: absolute;
  left: -16px;
  border-radius: 50%;
  top: 10%;
}

.select_example_about dt {
  margin-right: 23px;
}

@media only screen and (max-width: 768px) {
  .select_example_about {
    margin-bottom: 16px;
    display: block;
  }
  
  .select_example_about dl {
    margin-bottom: 16px;
  }
}

/* スライダー
/* -----------------------------------------*/
.select_example_thumbs li {
  width: 164px;
  height: 152px;
  cursor: pointer;
  transition: opacity 0.3s;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.select_example_thumbs li.slick-active {
  border: 4px solid #019BD9;
  box-sizing: border-box;
}

.select_example_slider {
  position: relative;
}

.select_example_slider_inner {
  max-width: 480px;
  max-height: 320px;
}

.select_example_slider>.select_example_slider_inner {
  margin-bottom: 0 !important;
}

.select_example_slider_inner .slick-slide img {
  width: 100%;
  height: auto;
  max-height: 320px;
  margin: auto;
}

.select_example_thumbs {
  position: absolute;
  top: 0;
  right: 0;
}

.select_example_thumbs>ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.slick-slide {
  position: relative;
}

.select_example_slider_inner_caption {
  font-family: Hiragino Kaku Gothic Pro;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  position: relative;
  right: 0;
  bottom: -6px;
  text-align: right;
  color: #A2A2A2;
}

@media only screen and (max-width: 768px) {
  .select_example_thumbs li {
    width: 100%;
    height: 64px;
  }
  
  .select_example_slider_inner {
    height: 260px;
  }
  
  .select_example_slider>.select_example_slider_inner {
    margin-bottom: 0 !important;
  }
  
  .select_example_slider_inner .slick-slide img {
    width: 100%;
    height: 216px;
    object-fit: cover;
    max-height: 320px;
    margin: auto;
  }

  .select_example_slider_inner .slick-list {
    margin-bottom: 44px;
  }
  
  .select_example_thumbs {
    position: relative;
  }
  
  .select_example_thumbs>ul {
    grid-template-columns: calc(25% - 12px) calc(25% - 12px) calc(25% - 12px) calc(25% - 12px);
  }
  
  .slick-slide {
    position: relative;
    height: 260px;
  }
  
  .select_example_slider_inner_caption {
    line-height: 15px;
    bottom: -8px;
    text-align: center;
  }
}