.c_inner {
  padding: unset;
}
.promotion_plan_area {
  position: relative;
}

.promotion_category {
  background-color: #484848;
  text-align: center;
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  padding: 2.4rem 8rem;
}
@media screen and (max-width: 768px) {
  .promotion_category {
    font-size: 2.8rem;
    padding: 2.4rem 2rem;
  }
}
@media screen and (max-width: 480px) {
  .promotion_category {
    font-size: 2.4rem;
    padding: 2rem;
  }
}
@media screen and (max-width: 375px) {
  .promotion_category {
    font-size: 2rem;
  }
}
.promotion_category[class^="bg-variant-"] {
  color: #fff;
}
/* 24개월 요금제*/
.bg-variant-01 {
  background-color: #e99b1f;
}
/* 평생 요금제*/
.bg-variant-02 {
  background-color: #4fae53;
}
/* 프로모션 요금제*/
.bg-variant-03 {
  background-color: #1d7dff;
}
.bg-variant-04 {
  background-color: #6c43c4;
}
/* 5G 요금제 */
.bg-variant-05 {
  background-color: #d63c67;
}
/*  */
.bg-variant-06 {
  background-color: #188f86;
}
.bg-variant-07 {
  background-color: #ff7a42;
}
/* 데이터 요금제 */
.bg-variant-08 {
  background-color: #179de0;
}
/* 태블릿 요금제 */
.bg-variant-09 {
  background-color: #476173;
}
.bg-variant-10 {
  background-color: #8cbf26;
}

.promotion_list {
  background-color: #f7f7f7;
  padding: 8rem;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .promotion_list {
    padding: 6rem 4rem;
  }
}
@media screen and (max-width: 768px) {
  .promotion_list {
    padding: 4rem 2rem;
  }
}

.promotion_card {
  position: relative;
  margin-top: 4rem;
  border: 4px solid transparent;
  border-bottom: none;
  border-radius: 0 2.8rem 2.8rem 2.8rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.promotion_card.default {
  margin-top: unset;
  border: unset;
  border-radius: 2.8rem;
}
/* 네이버 N페이 요금제 일 경우 */
.promotion_card.nPay {
  background: linear-gradient(180deg, #01de5b 40%, var(--color-sub) 60%)
    border-box;
}
/* 밀리의서재 요금제 일 경우 */
.promotion_card.millie {
  background: linear-gradient(180deg, #feeb60 40%, var(--color-sub) 60%)
    border-box;
}
/* 평생 요금제 일 경우 */
.promotion_card.lifetime {
  background: linear-gradient(
      180deg,
      var(--color-main) 40%,
      var(--color-sub) 60%
    )
    border-box;
}
.promotion_card .card_inner {
  background: #ffffff;
  padding: 3.6rem 3.2rem;
  border-radius: 2.6rem 2.6rem 0 0;
}
@media screen and (max-width: 480px) {
  .promotion_card .card_inner {
    padding: 2.8rem 2.4rem;
  }
}
.img_promotion {
  position: absolute;
  bottom: calc(100% + 4px);
  left: 0;
  height: 4rem;
  padding: 0.6rem 1.2rem;
  border-radius: 1.2rem 1.2rem 0 0;
}
.promotion_card.nPay .img_promotion {
  background-color: #01de5b;
  outline: 4px solid #01de5b;
}
.promotion_card.millie .img_promotion {
  background-color: #feeb60;
  outline: 4px solid #feeb60;
}
.promotion_card.lifetime .img_promotion {
  background-color: var(--color-main);
  outline: 4px solid var(--color-main);
}
.img_promotion img {
  display: none;
  height: 100%;
}
.promotion_card.nPay .img_nPay {
  display: block;
}
.promotion_card.millie .img_millie {
  display: block;
}
.promotion_card.lifetime .img_lifetime {
  display: block;
}
.label_area {
  display: none;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}
.label_area.on {
  display: flex;
}

/* 라벨 스타일 */
.label_area .label {
  display: none;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border-radius: 0.8rem;
  font-size: 1.4rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .label_area .label {
    font-size: 1.2rem;
  }
}
.label_area .label.on {
  display: flex;
}
.label_area .label.best {
  background-color: #ffeacb;
  color: #ff9c07;
}
.label_area .label.special {
  background-color: #e9cbff;
  color: #a135ff;
}
.label_area .label.recommend {
  background-color: #ffdfe9;
  color: #ff6795;
}
.label_area .label.period {
  background-color: #d6edff;
  color: #3fabff;
}
.label_area .label.dataSize {
  background: linear-gradient(to bottom, #ff9999, #ff5353);
  color: #fff;
}
.label_area .label.dataSize::before {
  content: "+";
  margin-right: -0.2rem;
}
.label_area .label.dataSize .text {
  font-weight: 400;
  display: none;
}
.label_area .label.dataSize.add .text {
  display: block;
}
.card_content .plan_name {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1024px) {
  .card_content .plan_name {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .card_content .plan_name {
    font-size: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .card_content .plan_name {
    font-size: 1.8rem;
    margin-bottom: 1.6rem;
  }
}
@media screen and (max-width: 375px) {
  .card_content .plan_name {
    font-size: 1.6rem;
  }
}
.card_content .info_wrap {
  display: flex;
  justify-content: space-between;
  gap: 3.2rem;
}
@media screen and (max-width: 768px) {
  .card_content .info_wrap {
    flex-direction: column;
    gap: 1.6rem;
  }
}
.card_content .info_wrap .category_list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .card_content .info_wrap .category_list {
    padding: 2.4rem;
    background-color: #f7f7f7;
    border-radius: 1.6rem;
  }
}
@media screen and (max-width: 480px) {
  .card_content .info_wrap .category_list {
    padding: 1.6rem;
  }
}
.card_content .info_wrap .category_list .item_list {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  font-size: 1.8rem;
  color: #6e6e6e;
  font-weight: 500;
  white-space: nowrap;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .card_content .info_wrap .category_list .item_list {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .card_content .info_wrap .category_list .item_list {
    padding-bottom: 0.7rem;
    border-bottom: 1px solid #d2d2d2;
  }
  .card_content .info_wrap .category_list .item_list:last-child {
    padding-bottom: unset;
    border-bottom: unset;
  }
}
@media screen and (max-width: 480px) {
  .card_content .info_wrap .category_list .item_list {
    font-size: 1.4rem;
    line-height: 1.3;
  }
}
.card_content .info_wrap .category_list .item_list .label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 7rem;
  min-width: fit-content;
}
@media screen and (max-width: 480px) {
  .card_content .info_wrap .category_list .item_list .label img {
    width: 1.4rem;
  }
}
.card_content .info_wrap .category_list .item_list .value {
  color: #1950a2;
  white-space: normal;
  word-break: break-word;
}
@media screen and (max-width: 768px) {
  .card_content .info_wrap .category_list .item_list .value {
    width: 100%;
    text-align: right;
  }
}

.card_content .info_wrap .price_area {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 1.2rem;
  white-space: nowrap;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .card_content .info_wrap .price_area {
    align-items: center;
  }
}
@media screen and (max-width: 375px) {
  .card_content .info_wrap .price_area {
    gap: 0.8rem;
  }
}
.card_content .info_wrap .price_area .wrap {
  display: flex;
  align-items: flex-end;
  gap: 1.2rem;
}
.card_content .info_wrap .price_area .wrap .original {
  font-size: 2.4rem;
  font-weight: 300;
  color: #a0a0a0;
  line-height: 1;
  text-decoration: line-through;
}
.card_content .info_wrap .price_area .wrap .original::after {
  /*content: "원";*/
}
.card_content .info_wrap .price_area .wrap .discount {
  font-size: 3.6rem;
  font-weight: 700;
  color: #ff0077;
  line-height: 1;
}
.card_content .info_wrap .price_area .wrap .discount::after {
  /*content: "원";*/
  font-size: 2.4rem;
  margin-left: 0.2rem;
  font-weight: 400;
  color: #222;
}
.card_content .info_wrap .price_area .wrap .discount::before {
  content: "월";
  font-size: 2.4rem;
  margin-right: 0.6rem;
  font-weight: 600;
  color: #222;
}
@media screen and (max-width: 1024px) {
  .card_content .info_wrap .price_area .wrap .original {
    font-size: 2rem;
  }
  .card_content .info_wrap .price_area .wrap .discount {
    font-size: 3.2rem;
  }
  .card_content .info_wrap .price_area .wrap .discount::after {
    font-size: 2rem;
  }
  .card_content .info_wrap .price_area .wrap .discount::before {
    font-size: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .card_content .info_wrap .price_area .wrap .original {
    font-size: 1.6rem;
  }
  .card_content .info_wrap .price_area .wrap .discount {
    font-size: 2.8rem;
  }
  .card_content .info_wrap .price_area .wrap .discount::after {
    font-size: 1.6rem;
  }
  .card_content .info_wrap .price_area .wrap .discount::before {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 375px) {
  .card_content .info_wrap .price_area .wrap .original {
    font-size: 1.4rem;
  }
  .card_content .info_wrap .price_area .wrap .discount {
    font-size: 2rem;
  }
  .card_content .info_wrap .price_area .wrap .discount::after {
    font-size: 1.4rem;
  }
  .card_content .info_wrap .price_area .wrap .discount::before {
    font-size: 1.4rem;
  }
}
.card_content .info_wrap .price_area .after_price {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem;
  line-height: 1;
  color: #6e6e6e;
  font-weight: 500;
}
@media screen and (max-width: 375px) {
  .card_content .info_wrap .price_area .after_price {
    font-size: 1.4rem;
  }
}
.card_content .info_wrap .price_area .after_price .info_area {
  position: relative;
}
.card_content .info_wrap .price_area .after_price .info_area .help_text {
  width: 1.8rem;
  height: 1.8rem;
  margin-top: 0.15rem;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .card_content .info_wrap .price_area .after_price .info_area .help_text {
    cursor: unset;
  }
}
.card_content
  .info_wrap
  .price_area
  .after_price
  .info_area
  .help_text:hover
  + .info_text {
  display: block;
}
@media screen and (max-width: 768px) {
  .card_content
    .info_wrap
    .price_area
    .after_price
    .info_area
    .help_text:hover
    + .info_text {
    display: none;
  }
}
.card_content .info_wrap .price_area .after_price .info_area .info_text {
  position: absolute;
  top: calc(1.8rem + 4px);
  left: 0;
  background-color: #fff;
  padding: 1.2rem;
  font-size: 1.2rem;
  border-radius: 0.8rem;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.3);
  display: none;
  color: #414141;
  font-weight: 400;
  z-index: 400;
}
.card_content .info_wrap .price_area .uPlus_bundled_plan {
  display: none;
  padding: 0.6rem 2.4rem;
  min-height: 3.6rem;
  width: fit-content;
  align-items: center;
  gap: 0.2rem;
  border-radius: 9999px;
  background: linear-gradient(to right, #f643bb, #1630ce);
  color: #fff;
  transition: opacity 0.2s;
}
.promotion_card .card_content .info_wrap .price_area.uPlus .uPlus_bundled_plan {
  display: flex;
}
.card_content .info_wrap .price_area .uPlus_bundled_plan:hover {
  opacity: 0.9;
}
.nPay_info {
  display: none;
  text-align: right;
  color: #00b84b;
  font-weight: 500;
  margin-top: 1.6rem;
}
.promotion_card.nPay .nPay_info {
  display: block;
}
.millie_info {
  display: none;
  text-align: right;
  color: #a451f7;
  font-weight: 500;
  margin-top: 1.6rem;
}
@media screen and (max-width: 768px) {
  .nPay_info {
    text-align: center;
  }
  .millie_info {
    text-align: center;
  }
}
@media screen and (max-width: 375px) {
  .nPay_info {
    font-size: 1.4rem;
  }
  .millie_info {
    font-size: 1.4rem;
  }
}
.promotion_card.millie .millie_info {
  display: block;
}
.card_btn_area {
  display: block;
  padding: 1.4rem 2rem;
  background: var(--color-sub);
  cursor: pointer;
  text-align: center;
  border-radius: 0 0 2.6rem 2.6rem;
  transition: opacity 0.2s;
}
@media screen and (max-width: 768px) {
  .card_btn_area {
    padding: 1.2rem 1.6rem;
  }
}
.card_btn_area .btn_wrap {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .card_btn_area .btn_wrap {
    font-size: 1.6rem;
  }
}
/* 유의사항 START */
.notice_area {
  display: none;
}
.notice_area.kt,
.notice_area.skt,
.notice_area.lg {
  display: block;
}
.notice_wrap {
  padding: 8rem;
  color: #fff;
  background-color: #1a1a1a;
}
.notice_wrap .notice_list .list_item {
  font-weight: 300;
  opacity: 0.8;
  margin-bottom: 1.6rem;
}
.notice_wrap .notice_list .list_item:last-child {
  margin-bottom: unset;
}
.notice_wrap .notice_list .list_item .sub_list {
  margin-left: 2.8rem;
  margin-top: 0.8rem;
  opacity: 0.7;
}
.notice_wrap .notice_list .list_item .subTitle {
  display: block;
  margin-left: 2.8rem;
  margin-top: 1.6rem;
}

@media screen and (max-width: 1024px) {
  .notice_wrap {
    padding: 6rem 4rem;
  }
}
@media screen and (max-width: 768px) {
  .notice_wrap {
    padding: 4rem 2rem;
  }
  .notice_wrap .notice_list .list_item {
    margin-bottom: 1.2rem;
  }
  .notice_wrap .notice_list .list_item .subTitle {
    margin-top: 1.2rem;
  }
}
@media screen and (max-width: 480px) {
  .notice_wrap .notice_list .list_item {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }
  .notice_wrap .notice_list .list_item .sub_list {
    margin-left: 2.4rem;
    margin-top: 0.4rem;
  }
  .notice_wrap .notice_list .list_item .subTitle {
    margin-left: 2.4rem;
    margin-top: 0.8rem;
  }
}
/* 유의사항 END */
