/* CONTENT 2 */
.page-plan main {
  margin-bottom: 1.5rem;
  padding-bottom: 40px;
  background: #fff url("../images/planning/bg.webp") top center / cover no-repeat;
}

.section--planning {
  margin-block: 1.875rem 50px;
}

.plan-layout-image {
  width: 100%;
  margin-inline: auto;
}

.room_img {
  width: 100%;
}

.page-plan .cont-title,
.page-plan .cot-title {
  color: #000;
}

/* TITLE */
.cot-title--deco {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-inline: auto;
  padding-inline: 4rem;
}

.cot-title--deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 1.4rem;
  left: 50%;
  width: 100%;
  height: 0.7rem;
  background: #1c75bc;
  transform: translateX(-50%) skew(15deg);
  opacity: 0.9;
}

/* ROOM */
.plan-room {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.plan-room__content {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.room_feature {
  width: 84.5%;
  margin-inline: auto;
}

/* PLAN POINTS */
.plan-point {
  display: grid;
  grid-template-columns: repeat(3, 30%);
  justify-content: space-between;
  margin-top: 50px;
}

.plan-point li {
  position: relative;
  display: flex;
  width: 100%;
  height: 5.5rem;
  margin: 0 auto 30px;
  padding: 20px 0;
  border: 1px solid #fff;
  background: #fff url("../images/planning/point_bg.png") center / cover no-repeat;
  color: #fff;
  font-size: 1.23rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.plan-point .plan-price {
  grid-column: 1 / span 3;
  max-width: 40%;
  height: auto;
  padding: 15px 0 10px;
  background: url("../images/planning/li1.png") center / cover no-repeat;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  align-items: baseline;
}

.plan-price::before {
  content: "";
  position: absolute;
  top: 0.28rem;
  left: 0.28rem;
  width: calc(100% - 0.56rem);
  height: calc(100% - 0.56rem);
  border: 1px solid #fff;
}

.plan-price big {
  font-size: 220%;
  transform: translateY(0.2rem);
}

.plan-price small {
  display: block;
  margin-top: -10px;
  font-size: 65%;
}

.plan-price span.plan-price-note {
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.plan_note {
  margin-top: 50px;
  color: #000;
  font-size: 14px;
  text-align: right;
}

@media (max-width: 768px) {
  .page-plan main {
    padding-bottom: 20px;
  }

  .section--planning {
    padding-inline: 5.33333vw;
  }

  .cot-title--deco {
    padding-inline: 1.25rem;
  }

  .cot-title--deco::before {
    bottom: 0.6rem;
    height: 0.4rem;
  }

  .plan-room {
    gap: 2rem;
  }

  .room_img {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin-inline: auto;
    gap: 2rem;
  }

  .room_feature {
    width: 100%;
  }

  .plan-point {
    grid-template-columns: 1fr;
    margin-block: 2rem;
  }

  .plan-point li {
    width: 100%;
  }

  .plan-point .plan-price {
    grid-column: auto;
    max-width: none;
    align-items: center;
  }

  .plan-price-pre {
    transform: translateY(0.7rem);
  }

  .plan-price-note {
    transform: translateY(0.4rem);
  }

  .plan-price span.plan-price-note {
    flex-direction: column-reverse;
  }
}