@charset "utf-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
  color: inherit;
  outline: none;
}
.section02 img {
  max-width: 100%;
  object-fit: cover;
}
.block1200 {
  display: none !important;
}
@media (max-width: 1200px) {
  .block1200 {
    display: block !important;
  }
  .none1200 {
    display: none !important;
  }
}
.section02 {
  width: 100%;
  position: relative;
}
.roomlist-wrap { 
  display: flex;
  flex-direction: column;
}
.roomlist-wrap .row {
  display: flex;
  gap: 50px;
}
.roomlist-wrap .row.right {
  justify-content: flex-end;
}
.roomlist-wrap .box {
  width: 40%;
  max-width: 520px;
  margin-bottom: 68px;
  position: relative;
}
.roomlist-wrap .row.bottom .box {
  margin-bottom: 0;
}
.roomlist-wrap .box p {
  font-size: 18px;
  transform: translateY(-26px);
}
.roomlist-wrap .box p strong {
  font-size: 60px;
  font-weight: 400;
}
.roomlist-wrap .box p span {
  font-size: 13px;
}

/***** 반응형 ******/

@media (max-width: 768px) {
  .roomlist-wrap .box p {
    transform: translateY(-16px);
  }
  .roomlist-wrap .box p strong {
    font-size: 40px;
  }
}

@media (max-width: 650px) {
  .section02 {
      padding: 40% 0 0;
  }
  .roomlist-wrap .row {
    flex-direction: column;
    gap: 0;
  }
  .roomlist-wrap .box {
    width: 75%;
    margin-bottom: 45px !important;
  }
  .roomlist-wrap .row .box:nth-of-type(2n) {
    margin-left: auto;
  }
  .roomlist-wrap .row.bottom .box:nth-of-type(2n) {
    margin-bottom: 0 !important;
  }
  .roomlist-wrap .box p {
    transform: translateY(-16px);
    padding-left: 7px;
  }
  .roomlist-wrap .box p strong {
    font-size: 40px;
    margin-left: 9px;
    margin-right: 9px;
  }
}


/* section02 끝*/

