@charset "UTF-8";
/*Font
------------------------------------------*/
/*Color
------------------------------------------*/
/* z-index
------------------------------------------*/
/* Media queries PCファースト
------------------------------------------*/
/*
よく使用するmixin
------------------------------------------*/
.plan_contents {
  padding: 120px 0;
}
.plan_contents .inner {
  padding: 0 15px;
}
.plan_contents .titleBox {
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .plan_contents {
    padding: 80px 0;
  }
}

.planList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.planList .planList__item {
  max-width: 560px;
  width: 48%;
  margin: 0 1%;
}
.planList a {
  background: rgba(184, 173, 163, 0.2);
  border: 2px solid #b8ada3;
  border-bottom: none;
  display: block;
  position: relative;
}
.planList .frame {
  padding: 10px;
  position: relative;
}
.planList .frame .flex {
  align-items: center;
}
.planList .frame .flex dt {
  width: 42%;
}
.planList .frame .flex dd {
  width: 58%;
}
.planList .type {
  font-size: clamp(24px, 4vw, 45px);
  color: #b8ada3;
  line-height: 1;
  text-align: center;
}
.planList .ldk {
  font-size: clamp(20px, 4vw, 27px);
  color: #373737;
  line-height: 1.4;
}
.planList .text01 {
  font-size: clamp(11px, 2vw, 16px);
  color: #373737;
}
.planList .view_more {
  font-size: clamp(13px, 2vw, 16px);
  background: #b8ada3;
  color: #fff;
  text-align: center;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s;
}
.planList .view_more span {
  position: relative;
  z-index: 2;
}
.planList .planList__item.limited .frame:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(184, 173, 163, 0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.planList .planList__item.limited .frame:after {
  content: "物件エントリー限定公開";
  font-size: clamp(13px, 1.6vw, 18px);
  color: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (hover: hover) {
  .planList a:hover .view_more {
    background: #ada095;
  }
}
@media screen and (max-width: 991px) {
  .planList .planList__item {
    width: 100%;
    margin: 20px 0 0;
  }
}

.equipment .grid_contents {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 3%;
       column-gap: 3%;
  row-gap: 50px;
}
@media screen and (max-width: 991px) {
  .equipment .grid_contents {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }
}
.equipment .grid_contents .text {
  margin-top: 15px;
}
.equipment .grid_contents .text h4 {
  font-size: clamp(13px, 1.6vw, 16px);
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #b8ada3;
}
.equipment .grid_contents .text p {
  font-size: clamp(12px, 1.4vw, 14px);
  line-height: 2;
}

.living {
  background: #fff;
  box-shadow: 0 0 10px #b8ada3;
  padding: 70px 100px;
}
.living .titleBox {
  text-align: center;
}
.living .living_contents__box {
  margin-top: 40px;
  align-items: end;
}
.living .living_text {
  width: 60%;
  padding-right: 5%;
}
.living .living_text p {
  padding-top: 15px;
  line-height: 2;
}
.living .living_Img {
  width: 40%;
}
@media screen and (max-width: 991px) {
  .living {
    padding: 30px 20px;
  }
  .living .living_text {
    width: 100%;
    padding-right: 0;
  }
  .living .living_Img {
    width: 100%;
    margin-top: 20px;
  }
  .living .logo {
    width: 50vw;
    margin: 0 auto;
  }
}