@charset "utf-8";

body {
  position: relative;
}


/* ===============================================
メインビジュアル
=============================================== */

/* メインビジュアル */
.mv {
  height: 100vh;
  position: relative;
  background: url(../image/mv/mv.jpg);
  background-size: cover;
  background-position: center;
  margin-bottom: 150px;
}

.catch {
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


.catch h2 {
  color: #fff;
  font-size: clamp(27px, 5vw, 72px);
  font-weight: 700;
  font-family: var(--ff_zen);
  text-align: center;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.38);
  margin-bottom: 20px;
  overflow: hidden;
}

.catch h2 span {
  display: inline-block;
}

@media screen and (max-width: 1200px) {
  .mv {
    height: 80vh;
    position: relative;
    background: url(../image/mv/mv.jpg);
    background-size: cover;
    background-position: center;
    margin-bottom: 150px;
    margin-top: 153px;
  }
}

/* @media screen and (max-width: 1024px) {
  .mv {
    height: 60vh;
    position: relative;
    background: url(../image/mv/mv.jpg);
    background-size: cover;
    background-position: center;
    margin-bottom: 150px;
    margin-top: 153px;
  }
} */

/* @media screen and (max-width: 750px) {
  .mv {
    height: 70vh;
    background: url(../image/mv/mv_sp.jpg?=2023);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 215px;
  }

  .catch {
    top: 52%;
  }
} */

@media screen and (max-width: 750px) {
  .mv {
    width: 100%;
    aspect-ratio: 1/0.595;
    height: auto;
    position: relative;
    background: url(../image/mv/mv.jpg);
    background-size: cover;
    background-position: center;
    margin-bottom: clamp(310px, 10vh, 400px);
    margin-top: 153px;
  }
}

@media screen and (max-width: 530px) {
  .mv {
    margin-top: 170px;

  }
}

/* ===============================================
Service
=============================================== */
.service {
  background: #95b74d;
  padding: clamp(40px, 7%, 100px) 0;
}

.service_wrap {
  /* width: calc(100% - 100px);
  margin: 0 auto; */
  padding: 0 2.5vw;
}

.banner_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, calc(20 / 1200 * 100vw), 40px);
  margin: clamp(30px, 5%, 80px) 0;
}

.banner_grid li {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.banner_grid li a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.banner_grid li:hover svg {
  right: 3%;
}

.banner_grid li svg {
  width: 8%;
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5%;
  transition: all .3s;
}

/* 共通 */
.cls-2 {
  stroke-width: 0px;
}

.cls-2 {
  fill: #fff;
}

/* circleオレンジ */
.c_orange {
  fill: #f7931e;
}


/* むらさき */
.c_purple {
  fill: #6269bd;
}

/* みどり */
.c_green {
  fill: #76a315;
}

/* あお */
.c_blue {
  fill: #00a3bd;
}

/* あお */
.c_pink {
  fill: #e4777a;
}

.banner_grid li {
  aspect-ratio: 1/0.306;
}

.banner_grid li img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media screen and (max-width: 960px) {
  .banner_grid {
    grid-template-columns: 1fr;
  }

  .banner_grid li {
    aspect-ratio: 1/0.37;
  }

  .banner_grid li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 11%;
  }

  .banner_grid li svg {
    display: none;
  }
}

/* ===============================================
pick up
=============================================== */
.pickup {
  /* width: calc(100% - 100px); */
  margin: 0 auto;
  padding: clamp(40px, 7%, 100px) 2.5vw;
}

.pickup .section_ttl h2, .pickup .section_ttl p {
  color: var(--cl_main);
}

.pickup .section_ttl h2::after {
  background: var(--cl_main);
}

/* グリッド */
.pickup_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(12px, calc(20 / 1200 * 100vw), 35px);
  margin: clamp(40px, 7%, 100px) 0;
}

.pickup_item {
  position: relative;
  background: #fff;
  border-radius: 15px;
}

.pickup_item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* カテゴリー */
.pickup_category {
  padding: 5px 30px;
  position: absolute;
  top: -16px;
  left: 23px;
  border-radius: 5px;
  font-size: 15px;
  color: #fff;

}

.tochi_green {
  background: #5dc9a4;
}

.tochi_orange {
  background: #f37433;
}

/* サムネイル部分 */
.pickup_img {
  aspect-ratio: 3/2;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}

.pickup_img img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: all .3s;
}

.pickup_item:hover .pickup_img img {
  transform: scale(1.1);
}


/* 物件情報の部分 */
.pickup_txt {
  padding: 40px 25px;
  position: relative;
}

.pickup_txt hr {
  background-color: #a5a5a530;
  height: 1px;
  border: none;
  margin: 10px 0;
}

/* 物件名 */

.pickup_txt h3 {
  font-size: clamp(17px, 1.8vw, 19px);
  font-weight: 500;
}

/* 価格 */

.pickup_price {
  color: var(--cl_main);
  font-family: var(--ff_en);
  font-size: 30px;
  font-weight: 700;
}

.pickup_price span {
  font-size: 20px;
}

/* 住所、面積など詳細テーブル */

.pickup_txt td {
  font-size: 15px;
  color: #7d7d7d;
  font-weight: 400;
  margin: 3px 0;
  margin-right: 10px;
}

.icon_td {
  display: flex;
  align-items: center;
  gap: 3px;
  min-width: 83px;
  white-space: nowrap;
  margin-right: 10px;
}

.pickup_txt td img {
  width: 15px;
  aspect-ratio: 1/1;
}

/* moreボタン */
.pickup_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(50px, 10vw, 100px);
}

@media screen and (max-width: 1050px) {
  .pickup_grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 750px) {
  .pickup_grid {
    grid-template-columns: 1fr;
  }

  .pickup_btn {
    gap: clamp(20px, 4vw, 100px);
  }
}

@media screen and (max-width: 620px) {
  .pickup_btn {
    flex-direction: column;
    gap: clamp(20px, 4vw, 100px);
  }

  .pickup_txt {
    padding: 25px 20px;
  }
}