main{
  padding-top: 0;
}

/* ===== トリプルZEROキャンペーン ===== */
#campaign{
  padding: 80px 0 245px;
}
.campaign__inner{
  width: 980px;
  max-width: 90%;
  margin-inline: auto;
}

#mv{
  position: relative;
  z-index: 1;
}

.mv_under{
  position: relative;
  margin-top: -1.92926045vw;
}

/* ===== 物件ブロック ===== */
.property{
  --accent: #417954; /* 物件ごとのアクセント色。section の style="--accent:..." で上書き */
  padding-bottom: 160px;
}

/* 外観写真（全幅） */
.property__photo img{
  width: 100%;
}

/* タイトル */
.property__title{
  width: 500px;
  max-width: 90%;
  margin: 80px auto 0;
}

/* 室内写真 ＋ 間取り図 */
.property__gallery{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 56px;
}
.property__rooms{
  width: 453px;
  flex-shrink: 0;
}
.property__floorplan{
  width: 371px;
  flex-shrink: 0;
}

/* 間取り・賃料 */
.property__price{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 64px;
}
.property__type{
  width: 137px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}
.property__rent{
  font-size: 40px;
  font-weight: 400;
  color: #000;
  line-height: 1;
  letter-spacing: 0;
}

/* 物件概要 */
.property__info{
  width: 980px;
  max-width: 90%;
  margin: 48px auto 0;
  padding: 20px;
  border: 1px solid var(--accent);
  background: #fff;
  box-sizing: border-box;
}
.property__info p{
  font-size: 14px;
  line-height: 24px;
  color: #000;
  letter-spacing: 0;
  text-align: justify;
}

/* 地図 */
.property__map{
  width: 800px;
  max-width: 90%;
  margin: 100px auto 0;
}
.property__map img{
  width: 100%;
}
.property__address{
  margin-top: 24px;
  font-size: 18px;
  color: #000;
  text-align: center;
}

/* ===== マンションプラザ長浜本店 案内 ===== */
#mansion-plaza{
  width: 769px;
  max-width: 90%;
  margin: 0 auto;
  padding-bottom: 120px;
}
.mp__lead{
  font-size: 16px;
  color: #333;
  text-align: center;
}
.mp__logo{
  width: 270px;
  margin: 34px auto 0;
}
.mp__shop{
  font-size: 24px;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-top: 24px;
}
.mp__map{
  margin-top: 12px;
}
.mp__map img{
  width: 100%;
}
.mp__address{
  font-size: 14px;
  color: #333;
  text-align: center;
  margin-top: 12px;
}

/* ===== 狭めのPC（〜1040px） ===== */
@media(max-width:1040px){
  #campaign{
    padding: 5.7vw 0 17.5vw;
  }
  .property{
    padding-bottom: 11.4vw;
  }
  .property__title{
    margin-top: 5.7vw;
  }
  .property__gallery{
    gap: 4vw;
    margin-top: 4vw;
  }
  .property__rooms{
    width: 44vw;
  }
  .property__floorplan{
    width: 36vw;
  }
  .property__price{
    margin-top: 4.5vw;
  }
  .property__info{
    margin-top: 3.4vw;
  }
  .property__map{
    margin-top: 7vw;
  }
}

/* ===== スマホ（〜770px） ===== */
@media(max-width:770px){
  #campaign{
    padding: 10vw 0 14vw;
  }
  .property{
    padding-bottom: 16vw;
  }
  .property__title{
    width: 70%;
    margin-top: 10vw;
  }
  .property__gallery{
    flex-direction: column;
    align-items: center;
    gap: 5vw;
    margin-top: 8vw;
  }
  .property__rooms{
    width: 80%;
  }
  .property__floorplan{
    width: 64%;
  }
  .property__price{
    gap: 5vw;
    margin-top: 8vw;
  }
  .property__type{
    width: 30vw;
    height: 13vw;
    font-size: 8vw;
  }
  .property__rent{
    font-size: 8vw;
  }
  .property__info{
    margin-top: 8vw;
    padding: 4vw;
  }
  .property__info p{
    font-size: 3.2vw;
    line-height: 2;
  }
  .property__map{
    margin-top: 12vw;
  }
  .property__address{
    margin-top: 5vw;
    font-size: 3.7vw;
  }

  #mansion-plaza{
    padding-bottom: 16vw;
  }
  .mp__lead{
    font-size: 3.7vw;
  }
  .mp__logo{
    width: 40vw;
    margin-top: 5vw;
  }
  .mp__shop{
    font-size: 5vw;
    margin-top: 4vw;
  }
  .mp__address{
    font-size: 2.9vw;
  }
}

/* ===== レスポンシブ表示切替 ===== */
.pc{
  display: block !important;
}
@media screen and (max-width: 770px){
  .pc{
    display: none !important;
  }
}
.sp{
  display: none !important;
}
@media screen and (max-width: 770px){
  .sp{
    display: block !important;
  }
}
