/* --------------공용---------------- */
.evt_wp {overflow: hidden;}
.evt_wp * {word-break: keep-all;}
.mo{display: none;}
.pc {display: block;}
.sub_txt {
  font-size: 14px;
  font-weight: 300;
  color: #808080;
  line-height: 1.5;
}
.underline {
  text-decoration: underline;
  text-underline-offset: 5px;
}
img {
  max-width: 100%;
  width: auto;
}
.inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
h2 {
  font-size: 50px;
  font-weight: 900;
  text-align: center;
  padding-bottom: 40px;
  line-height: 1.3;
}
.point_color {
  color: #2f5ae9;
}
.red {
  color: #e14734;
}

/* --------------윙배너---------------- */
.wing_banner {
  position: fixed;
  z-index: 1000;
}

/* 윙배너 왼쪽 */
.wing_banner_left {
  left: 5%;
  top: 20%;
  width: clamp(160px, 17vw, 250px);
  height: clamp(160px, 17vw, 250px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: linear-gradient(145deg, #d4564e 0%, #962f28 100%);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(139, 46, 40, 0.45);
  animation: wing-float 2.5s ease-in-out infinite;
}
.wing_banner_left::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(250, 248, 42, 0.7);
  animation: wing-ring 2s ease-out infinite;
  pointer-events: none;
}
.wing_banner_left .wing_date {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}
.wing_banner_left .wing_dday {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.04em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.wing_banner_left .sub_txt {
  color: #eee;
}
@keyframes wing-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes wing-ring {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.12);
    opacity: 0;
  }
}

/* 윙배너 오른쪽 */
.wing_banner_right {
  right: 0;
  bottom: 16%;
}
.wing_banner_1_wrap,
.wing_banner_item_3 {
  width: 188px;
  border-radius: 16px 0 0 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}
.wing_banner_right a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  text-align: center;
  transition:
    filter 0.2s ease,
    transform 0.2s ease;
}
.wing_banner_right .wing_date {
  font-size: 22px;
  font-weight: 700;
}
.wing_banner_right .wing_cta {
  width: 80%;
  margin-top: 4px;
  padding: 7px 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  border-radius: 20px;
  background: #222;
  color: #1cfa70;
}

.wing_banner_1_wrap {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.wing_banner_1_wrap a {
  gap: 4px;
}
.wing_banner_1_wrap a:hover {
  filter: brightness(1.08);
}
.wing_banner_item_1 {
  background: #1cfa70;
  color: #222;
}
.wing_banner_item_1 .wing_dday {
  font-size: 40px;
  font-weight: 800;
}
.wing_banner_item_2 {
  color: #fff;
  background: rgb(50, 71, 58);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.wing_banner_item_2 .wing_date {
  line-height: 1.3;
}
.wing_banner_item_2 .wing_cta {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.wing_banner_item_3 {
  gap: 6px;
  margin-top: 14px;
  box-sizing: border-box;
  background: #e4207e;
  color: #fff;
}
.wing_banner_item_3 .wing_date {
  line-height: 1.35;
}
.wing_banner_item_3 .wing_cta {
  background: #fff;
  color: #e4207e;
}
.wing_banner_item_3:hover {
  filter: brightness(1.06);
  transform: translateX(-4px);
}

/* -------------비주얼배너------------- */
.visual {
  position: relative;
}
.visual video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.visual::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
  pointer-events: none;
}
.visual img {
  z-index: 2;
  position: relative;
}

/* --------------컨텐츠 공통----------------- */
/* 필수신청 */
.required_title {
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  margin: 0 auto 20px;
  padding: 10px 20px;
  background: #2f5ae9;
  max-width: 350px;
  color: #fff;
  border-radius: 99px;
}
.tab_panel {
  display: block;
  padding: 150px 0;
}
#section-1,
#section-3 {
  background: #f3f6fa;
}
.tab_panel .img_box {
  display: flex;
  justify-content: center;
}
/* 버튼 */
.btn_wrap {
  display: flex;
  justify-content: center;
  margin-top: 70px;
  width: 100%;
  height:86px;
}
.btn_wrap .btn_text {
  display: flex;
  gap: 10px;
  align-items: center;
}
.btn_wrap a {
  display: flex;
  padding: 0 20px;
  width: 60%;
  align-items: center;
  background: #09c654;
  border-radius: 90px;
  color: #fff;
  position: relative;
  box-shadow:
    inset 2px 3px 2px rgba(255, 255, 255, 0.4),
    inset -2px -3px 10px -5px rgba(0, 0, 0, 0.4);
}
.btn_wrap a .sub_txt {
  font-size: 24px;
  font-weight: 700;
  color: #00bc3f;
  background: #fff;
  padding: 5px 20px;
  border-radius: 99px;
}
.btn_wrap a .typo {
  font-size: clamp(16px, 12.4px + 1.125vw, 34px);
  font-weight: 700;
  margin: 0 auto;
}
.cursor_wrap {
  z-index: 1;
  position: absolute;
  right: 30px;
}
.cursor_wrap i {
  font-size: 25px;
}
.cursor_wrap img {
  bottom: -15px;
  right: -9px;
  position: absolute;
  animation: cursor-move 1s infinite;
}
@keyframes cursor-move {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(10px, 10px);
  }
  100% {
    transform: translate(0, 0);
  }
}
/* 개인정보 수집 동의 */
.agree_wrap {
  margin-top: 25px;
  background: #f7f9fc;
  border: 1px solid #d2d2d7;
  padding: 40px;
}
.agree_wrap .sub_txt {
  padding-bottom: 20px;
}
.agree_wrap .agree label {
  display: block;
  padding: 3px 0;
}
.agree_wrap_2 {
  margin-top: 80px;
}

/* 안내 섹션 */
.notice_wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.notice_item {
  font-size: clamp(14px, 12.8px + 0.375vw, 20px);
}
.notice_title {
  font-weight: 600;
  color: #111;
  padding-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.notice_badge {
  display: inline-block;
  background: #111;
  color: #fff;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 3px;
  white-space: nowrap;
}
.notice_list li {
  color: #222;
  padding-left: 12px;
  position: relative;
  line-height: 1.6;
  font-weight: 300;
}
.notice_list li::before {
  content: "-";
  position: absolute;
  left: 0;
}

.notice_list_2 li {
  line-height: 1.6;
  font-weight: 700;
}

.notice_list li a {
  color: #2f5ae9;
  text-decoration: none;
  font-weight: 600;
}
.notice_list li a:hover {
  text-decoration: underline;
}
.notice_benefit {
  display: flex;
  flex-direction: column;
}
.benefit_sub_title:first-child {
  padding-top: 5px;
}
.benefit_sub_title {
  font-weight: 700;
  color: #111;
  padding-top: 15px;
}

/* --------------컨텐츠1----------------- */
#form_title {
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  padding-top: 40px;
}
.info_table {
  width: 100%;
  margin-top: 25px;
}
.info_table tr {
  display: grid;
  grid-template-columns: 30% auto;
  gap: 10px;
  padding: 5px;
}
.info_table td {
  font-size: 28px;
  font-weight: 400;
  text-align: left;
  padding: 22px 0;
  border: 2px solid #111;
}
.info_table td a {
  font-size: 28px;
  color: #2f5ae9;
}
.info_table td:first-child {
  background: #f5f8fb;
  text-align: center;
}
.info_table td:last-child {
  background: #fff;
  padding-left: 80px;
}
.info_table label {
  font-size: 28px;
}
.info_table input {
  width: 100%;
  border: 0;
  border-radius: 5px;
  font-size: 28px;
}
.info_table input[type="radio"] {
  width: 20px;
  height: 20px;
}
.info_table input[type="radio"]:checked {
  background: #2f5ae9;
}
.info_table input[type="radio"]:not(:checked) {
  background: #ccc;
}
.info_table input[type="radio"]:not(:checked):hover {
  background: #2f5ae9;
}
.info_table input[type="radio"]:not(:checked):hover {
  background: #2f5ae9;
}
.youtube_sub_wrap {
  display: flex;
  gap: 20px;
}
/* 사전신청 종료 안내 */
.form_closed_wrap {
  text-align: center;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 20px;
  padding: 70px 40px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
  word-break: keep-all;
}
.form_closed_badge {
  display: inline-block;
  background: #dc1d00;
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 18px;
  border-radius: 99px;
  margin-bottom: 24px;
}
.form_closed_title {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.form_closed_desc {
  font-size: 40px;
  font-weight: 700;
  color: #00bf48;
}
/* 상품 팝업 (쿠폰 안내) */
.popup_wrap {
  display: none;
}
.popup_wrap.is-open {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 9998;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.popup_wrap .free_popup {
  height: 75vh;
  overflow-y: auto;
  width: 100%;
  max-width: 520px;
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
  border-radius: 16px;
  position: relative;
  z-index: 1;
  color: #222;
}
.free_popup h4 {
  margin: 0 0 20px;
  padding: 0 0 18px;
  font-size: clamp(20px, 20px + 0.3125vw, 25px);
  font-weight: 800;
  color: #0d0e11;
  text-align: center;
  border-bottom: 1px solid #e8ebed;
}
.free_popup .popup_section {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid #eef1f4;
}
.free_popup .section_label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 14px;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  background: #dc1d00;
  border-radius: 999px;
}
.free_popup .benefit_info {
  padding: 4px 2px 0;
}
.free_popup .benefit_info p {
  font-size: 14px;
  line-height: 1.6;
}
.free_popup .benefit_info p:last-child {
  margin-bottom: 0;
}
.free_popup .popup_buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 26px;
  padding-top: 4px;
}
.free_popup .btn_close {
  display: block;
  width: 100%;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  color: #555;
  background: transparent;
}
.free_popup .btn_close:hover {
  background: #f6f8fa;
  color: #222;
}
#products_popup .products_popup_section {
  margin-top: 16px;
  padding-top: 0;
  border-top: none;
}
#products_popup .products_popup_section .section_label {
  margin-bottom: 14px;
}
#products_popup .products_popup_section .benefit_info {
  text-align: left;
  margin: 0;
  padding: 18px 18px 16px;
  background: linear-gradient(180deg, #f6f8fa 0%, #fff 100%);
  border: 1px solid #e4e8ec;
  border-radius: 10px;
  box-sizing: border-box;
}
#products_popup .products_popup_section .benefit_info > p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.55;
  color: #333;
}
#products_popup .products_popup_section .benefit_info > p:last-child {
  margin-bottom: 0;
}
#products_popup .products_popup_section .benefit_info b {
  color: #0d0e11;
  font-weight: 800;
}
#products_popup .product_list {
  margin: 4px 0 16px;
  padding: 14px 16px;
  max-height: 320px;
  overflow-y: auto;
  border: 1px solid #e4e8ec;
  border-radius: 10px;
  background: #fff;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
}
#products_popup .product_list p {
  margin: 0 0 10px;
  padding: 8px 4px 10px;
  font-size: 14px;
  line-height: 1.5;
  color: #222;
  border-bottom: 1px dashed #e8ebed;
}
#products_popup .product_list p:last-child {
  margin-bottom: 0;
  padding-bottom: 8px;
  border-bottom: none;
}
#products_popup .product_list_empty {
  color: #5a6169;
  font-size: 14px;
  border-bottom: none !important;
  padding: 12px 4px !important;
}
#products_popup .popup_buttons {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #eef1f4;
}

/* --------------컨텐츠2----------------- */
.item_panel_2 .item_list .item_list_wrap li {
  position: relative;
  filter: drop-shadow(0 0 10px rgba(55, 122, 249, 0.2));
  margin-top: 10px;
}
/* 특별할인 뱃지 */
.item_panel_2 .item_list .item_list_wrap li .discount_circle {
  position: absolute;
  right: -40px;
  top: -60px;
  background: #e14734;
  width: 100px;
  height: 100px;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.item_panel_2 .item_list li .discount_circle h3 {
  font-size: 30px;
  font-weight: 700;
}
.item_panel_2 .item_list li .discount_circle p {
  font-size: 20px;
}

.item_panel_2 .sub_txt {
  padding-top: 20px;
}
.item_panel_2 .sub_txt ul li {
  position: relative;
  padding-left: 20px;
}
.item_panel_2 .sub_txt ul li::before {
  content: "-";
  position: absolute;
  left: 10px;
}
/* 문항적중 슬라이드 */
.conts_wrap {margin-top: 40px;}
.slide_box {
  position: relative;
  height: 100%;
  text-align: center;
}
.slide_box.pc .swiper-container {
  width: 1200px;
  padding-top: 0;
  margin-left: auto;
  margin-right: auto;
}
.slide_box.pc .swiper-arrow-prev,
.slide_box.pc .swiper-arrow-next {
  color: #111;
}
.slide_box.pc .swiper-arrow-prev {
  left: -48px;
}
.slide_box.pc .swiper-arrow-next {
  right: -48px;
}
.slide_box.pc .swiper-pagination {
  padding-top: 40px;
  position: relative;
}
.slide_box.pc .swiper-pagination span {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 5px;
}
.slide_box.pc .swiper-pagination span.active {
  background: #fff;
}

/* --------------컨텐츠3----------------- */
.item_panel_3 .tit_wrap {
  position: relative;
}
/* 말풍선 */
.item_panel_3 .tit_wrap .speech_wrap {
  position: absolute;
  right: 0;
  top: -44px;
}
.speech-bubble {
  position: relative;
  background: #e14734;
  border-radius: 50%;
  padding: 40px;
}
.speech_wrap p {
  color: #fff;
  font-size: 20px;
  text-align: center;
  font-weight: 700;
  line-height: 1.3;
}
.speech-bubble:after {
  content: "";
  position: absolute;
  left: 24px;
  top: 50%;
  width: 0;
  height: 0;
  border: 42px solid transparent;
  border-right-color: #e14734;
  border-left: 0;
  border-bottom: 0;
  margin-top: -1px;
  margin-left: -23px;
  z-index: -1;
}
.kakao_list ul {
  display: flex;
  justify-content: space-between;
}

/* --------------컨텐츠4----------------- */
.item_panel_4 .required_title {
  background: #e14734;
}
.item_panel_4 .btn_wrap a {
  width: 100%;
  justify-content: center;
}
.item_panel_4 .fire_wrap a {
  background: #fff;
  border: 1px solid #ab443d;
  color: #ab443d;
}
/* 롤링 리뷰 */
.roll_review {
  overflow: hidden;
  width: 100%;
  padding: 80px 0 50px;
}
.review_wrap {
  display: flex;
  width: max-content;
  animation: reviewScroll 28s linear infinite;
}
.review_wrap:hover {
  animation-play-state: paused;
}
.rv-item {
  scale: 0.92;
  transition: all 0.2s ease;
}
.rv-item:hover {
  scale: 1;
}
.rv-item img {
  width: 100%;
  display: block;
  border-radius: 10px;
  box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.2);
}
@keyframes reviewScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}



/* --------------마지막----------------- */
.item_panel_6 {
  background: url("https://image.engineerlab.co.kr/data/www/engr/promotion/2026/exam_archive/7/bg.jpg")
    no-repeat center center / cover;
  padding: 100px 0;
}
.item_panel_6 .typo h2 {
  color: #fff;
  padding-bottom: 0;
}


@media screen and (max-width: 1200px) {
  .wing_banner {display: none;}
}

/* 미디어쿼리 1200px ~ 721px */
@media screen and (max-width: 1200px) and (min-width: 821px) {
  .inner {
    padding: 0 20px;
  }
  img {
    max-width: 100%;
    width: auto;
  }
  .btn_wrap {
    height:68px;
  }
  .btn_wrap a {
  }
  .cursor_wrap img {
    bottom: -20px;
    right: -12px;
  }
  .item_panel_2 .item_list .item_list_wrap li .discount_circle{
    right:0;
  }
}

/* 모바일 */
@media screen and (max-width: 820px) {
  /* --------------공통---------------- */
  .mo {display: flex;}
  .pc {display: none !important;}
  h2 {padding-bottom: 20px;font-size: 24px;}
  .required_title {
    font-size: 16px;
    max-width: 215px;
  }
  h3 {
    font-size: 18px;
    padding-top: 18px;
    word-break: keep-all;
  }
  .inner {padding: 0 16px;}
  .sub_txt {font-size: 12px;}
  .tab_panel {padding: 40px 0;}
  /* 버튼 */
  .btn_wrap {
    margin-top: 28px;
    height:43px;
  }
  .btn_wrap a {
    padding: 14px 20px;
    gap: 15px;
    border-radius: 60px;
    width: 100%;
    display: flex;
    justify-content: center;
    font-weight: 700;
  }
  .btn_wrap a .sub_txt {
    font-size: 12px;
    padding: 4px 8px;
    color: #00bc3f;
    background: #fff;
  }
  .cursor_wrap i {
    font-size: 20px;
  }
  .cursor_wrap img {
    width: 26px;
  }

  /* 개인정보 동의 */
  .agree_wrap {
    padding: 16px;
    margin-top: 18px;
    word-break: keep-all;
  }
  .agree_wrap .agree label {
    font-size: 13px;
  }
  .agree_wrap_2 {
    margin-top: 30px;
  }

  /* 공지 섹션 */
  .notice_title {
    flex-wrap: wrap;
    gap: 6px;
  }
  .notice_badge {
    padding: 2px 8px;
  }
  .notice_list li::before {
    margin-left: 2px;
  }
  .benefit_sub_title {
    padding-top: 5px;
  }

  /* --------------비주얼배너---------------- */
  .visual .inner {padding: 0;}

  /* --------------컨텐츠1---------------- */
  #form_title {font-size: 22px;}
  /* 사전신청 폼 */
  .form_closed_badge {font-size: 22px;}
  .form_closed_title {font-size: 30px;}
  .form_closed_desc {font-size: 22px;}
  .info_table {margin-top: 16px;}
  .info_table tr {
    grid-template-columns: 30% auto;
    gap: 4px;
    padding: 2px 0;
  }
  .info_table td {
    font-size: 14px;
    padding: 12px 0;
    border-width: 1px;
  }
  .info_table td:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .youtobe_wrap {
    flex-direction: column;
  }
  .youtube_sub_wrap {
    display: flex;
    gap: 7px;
  }
  .info_table td:last-child {
    padding-left: 12px;
    display: flex;
    gap: 5px;
  }
  .info_table td .icon_ch {
    width: 10%;
  }
  .youtube_sub a.red {
    color: #dc1d00;
  }
  .info_table td a {
    font-size: 14px;
    display: flex;
    gap: 3px;
    align-items: center;
  }
  .info_table label {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 2px;
  }
  .info_table input[type="radio"] {
    width: 16px;
    height: 16px;
  }
  .info_table input {
    font-size: 14px;
  }

  /* --------------컨텐츠2---------------- */
  .item_panel_2 .item_list .item_list_wrap li .discount_circle {
    right: -9px;
    top: -23px;
    width: 60px;
    height: 60px;
  }
  .item_panel_2 .item_list li .discount_circle h3 {
    font-size: 18px;
    padding-top: 0;
  }
  .item_panel_2 .item_list li .discount_circle p {
    font-size: 11px;
  }

  /* 문항적중 */
  .slide_box.mo {
    display: block !important;
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
  .slide_box.mo .swiper-container {
    width: 90%;
    max-width: 100%;
    padding-top: 0;
    margin: 0 auto;
    box-sizing: border-box;
  }
  .slide_box.mo .swiper-arrow-prev,
  .slide_box.mo .swiper-arrow-next {
    display: none !important;
  }
  .slide_box.mo .swiper-pagination {
    position: relative;
    width: 100%;
    text-align: center;
    padding: 15px 0 0;
  }
  .slide_box.mo .swiper-pagination span {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 5px;
  }
  .slide_box.mo .swiper-pagination span.active {
    background: #fff;
  }

  /* --------------컨텐츠3---------------- */
  .item_panel_3 .tit_wrap .speech_wrap {
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: end;
  }
  .speech-bubble {
    display: inline-block;
    padding: 15px;
  }
  .speech_wrap p {font-size: 14px;}
  .speech-bubble:after {
    content: "";
    position: absolute;
    top: 5px;
    left: 50%;
    width: 0;
    height: 0;
    border: 20px solid transparent;
    border-bottom-color: #e14734;
    border-top: 0;
    border-left: 0;
    margin-left: -30px;
    margin-top: -20px;
  }


  /* --------------컨텐츠4---------------- */
  .roll_review {padding: 30px 0;}
  .rv-item {width: 200px;}
  .kakao_list ul {gap: 7px;}
  .kakao_list li {margin-top: -15px;}

  /* 마지막 섹션 */
  .item_panel_6 {padding: 40px 0;}
}
