@charset "UTF-8";
#container {
  background-color: #fff;
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/*--- MV（バルコニー写真 / 全プランページ共通） ---*/
.plan_mv {
  position: relative;
}

/*--- コンテンツ共通 ---*/
.plan_detail {
  position: relative;
  padding-top: 120px;
  padding-bottom: 160px;
}
@media screen and (max-width: 1200px) {
  .plan_detail {
    padding-top: 10vw;
    padding-bottom: 13.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .plan_detail {
    padding-top: 17.3333333333vw;
    padding-bottom: 22vw;
  }
}
.plan_detail_inner {
  max-width: 1000px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1200px) {
  .plan_detail_inner {
    max-width: none;
    width: 83.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .plan_detail_inner {
    width: 93.3%;
  }
}

/*--- タイプ別スペックシート（間取り図・面積・特長を1枚に集約した画像） ---*/
.plan_detail_sheet img {
  width: 100%;
  height: auto;
  display: block;
}

/*--- タイプ切替ナビ ---*/
.plan_detail_nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 80px;
}
@media screen and (max-width: 1200px) {
  .plan_detail_nav {
    gap: 0.8333333333vw;
    margin-top: 6.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .plan_detail_nav {
    width: 77.3%;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.6666666667vw;
    margin-top: 10.6666666667vw;
  }
  .plan_detail_nav > li:last-child {
    grid-column: 2/3;
  }
}
.plan_detail_nav_link {
  position: relative;
  display: block;
}
.plan_detail_nav_link_img {
  width: 100%;
  height: auto;
  display: block;
}
.plan_detail_nav_link_img--hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.4s;
}
@media (hover: hover) {
  .plan_detail_nav_link:hover .plan_detail_nav_link_img--hover {
    opacity: 1;
  }
}/*# sourceMappingURL=style_plan_detail.css.map */