.rental_page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

.rental_page img {
  width: 100%;
  height: auto;
  display: block;
}

.rental_page section {
  margin-bottom: 70px;
}

.rental_page h2 {
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
}

.rental_page h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.rental_page p,
.rental_page li,
.rental_page dt,
.rental_page dd {
  font-size: 16px;
  line-height: 1.8;
}

.rental_mv {
  position: relative;
  text-align: center;
}

.rental_mv_txt {
  margin-bottom: 25px;
}

.rental_mv_txt h2 {
  margin-bottom: 10px;
}

.rental_mv_txt p {
  font-size: 22px;
}

.rental_price_badge {
  max-width: 180px;
  margin: 20px auto 0;
}

.rental_intro {
  text-align: center;
}

.floor_map .imgbox {
  max-width: 800px;
  margin: 0 auto;
}

.room_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.room_item {
  background: #fff;
}

.room_item .imgbox {
  margin-bottom: 15px;
}

.room_item dl {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 8px 10px;
}

.room_item dt {
  font-weight: bold;
}

.room_item dd {
  margin: 0;
}

.photo_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.photo_grid p {
  text-align: center;
  margin-top: 8px;
}

.rental_price table {
  width: 100%;
  border-collapse: collapse;
}

.rental_price th,
.rental_price td {
  border: 1px solid #ccc;
  padding: 14px;
  font-size: 16px;
  text-align: left;
}

.rental_price th {
  width: 35%;
  background: #f7f7f7;
}

.rental_option ul,
.rental_notes ul {
  padding-left: 1.5em;
}

.rental_benefit ol {
  padding-left: 1.5em;
}

@media screen and (max-width: 768px) {
  .rental_page {
    padding: 30px 15px;
  }

  .rental_page h2 {
    font-size: 26px;
  }

  .rental_page h3 {
    font-size: 20px;
  }

  .room_list,
  .photo_grid {
    grid-template-columns: 1fr;
  }

  .rental_price th,
  .rental_price td {
    display: block;
    width: 100%;
  }
}