@charset "utf-8";

/*
* vw 단위 사용법
* 80px => calc(80 * var(--vw));
*/
/* 레이아웃 */
[class*='members__section'] {
  position: relative;
}
.main__btn {
   z-index: 1;
   position: absolute;
   font-size: 0;
 }
/* 혜택 모음 영역 */
.members__section--coupon {
  margin-top: calc(45 * var(--vw));
}
.members__section--coupon .coupon__packPopup {
  top: 43.6%;
  left: 47%;
  width: calc(114 * var(--vw));
  height: calc(30 * var(--vw));
}
.members__section--coupon .coupon__packDownload {
  top: 46.85%;
  left: 46.3%;
  width: calc(142 * var(--vw));
  height: calc(50 * var(--vw));
}
.members__section--coupon .coupon__list {
  position: absolute;
  top: 60.8%;
  left: 11.65%;
  right: 11.65%;
  height: 22.5%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(30 * var(--vw));
}
.members__section--coupon .coupon__list > li {
  position: relative;
}
.members__section--coupon .coupon__list .list__btn {
  top: 100%;
  left: 0;

  width: calc(95 * var(--vw));
  height: calc(30 * var(--vw));
  margin-top: calc(13 * var(--vw));
}
.members__section--coupon .coupon__list .list__download {
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.members__section--coupon .coupon__link {
  left: 42%;
  bottom:0;
  width: calc(305 * var(--vw));
  height: calc(53 * var(--vw));
}
