@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Nanum+Pen+Script&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Gothic+A1&family=Nanum+Pen+Script&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  font-family: pretendard, "Malgun Gothic", sans-serif;
  font-weight: 400;
  color: #000;
  font-size: 15px;
  letter-spacing: -0.5px;
  line-height: 1.5;
}

ul, ol, li {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
  padding: 0;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

input, textarea, select {
  font-family: inherit;
  color: inherit;
  letter-spacing: inherit;
}

fieldset {
  border: 0;
  min-width: 0;
}

legend {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  margin: -1px;
}

.blind {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes fadeUpCar {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeUpText {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideUpSmooth {
  0% {
    opacity: 0;
    transform: translateY(150px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes rollingRightToLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes blurFadeIn {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: scale(0.95);
  }
  50% {
    opacity: 0.5;
    filter: blur(5px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}
@keyframes blinkEffect {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
*::before,
*::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.best_review_section {
  --gap: 25px;
  --per-view: 5;
  --peek: 0px;
  --dur: 500ms;
  overflow: hidden;
}
.best_review_section .slider_container {
  position: relative;
  overflow: hidden;
  padding: 0 var(--peek);
  cursor: grab;
  touch-action: pan-y;
}
.best_review_section .slider_track {
  display: flex;
  gap: var(--gap);
  width: 100%;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transition: transform var(--dur) ease-out;
}
.best_review_section .slider_track.is_dragging {
  transition: none !important;
  cursor: grabbing;
}
.best_review_section .review_card {
  flex: 0 0 calc((100% - var(--gap) * (var(--per-view) - 1)) / var(--per-view));
  min-width: 0;
  -webkit-user-drag: none;
  user-select: none;
}
.best_review_section .slider_dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.best_review_section .slider_dots .dot {
  width: 15px;
  height: 15px;
  background: #33425b;
  border-radius: 50%;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: 0.3s;
}
.best_review_section .slider_dots .dot.active {
  background: #fff;
}
@media (max-width: 1919px) {
  .best_review_section {
    --per-view: 4;
  }
}
@media (max-width: 1439px) {
  .best_review_section {
    --per-view: 3;
  }
}
@media (max-width: 1023px) {
  .best_review_section {
    --per-view: 2;
  }
}
@media (max-width: 767px) {
  .best_review_section {
    --per-view: 1;
    --gap: 18px;
    --peek: 28px;
  }
  .best_review_section .slider_container {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0 var(--peek);
  }
  .best_review_section .review_card {
    flex: 0 0 min(425px, 100vw - var(--peek) * 2);
  }
}

.pc_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(70px, 5.2vw, 100px);
  background: #fff;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.07);
  z-index: 100;
}
@media (min-width: 768px) {
  .pc_header {
    display: block;
  }
}
@media (max-width: 767px) {
  .pc_header {
    display: none;
  }
}
.pc_header .inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pc_header .logo img {
  height: clamp(22px, 1.8vw, 30px);
  width: auto;
}
.pc_header .gnb ul {
  display: flex;
  gap: clamp(20px, 2.6vw, 50px);
  margin: 0;
}
.pc_header .gnb ul li a {
  font-size: clamp(14px, 0.95vw, 18px);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #111;
  transition: color 0.3s;
  white-space: nowrap;
}
.pc_header .gnb ul li a:hover {
  color: #1880fb;
}

.pc_footer {
  width: 100%;
  background: #192232;
  padding: clamp(50px, 4.2vw, 80px) 0 clamp(80px, 7.6vw, 145px);
  color: #fff;
}
@media (min-width: 768px) {
  .pc_footer {
    display: block;
  }
}
@media (max-width: 767px) {
  .pc_footer {
    display: none;
  }
}
.pc_footer .inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}
@media (max-width: 1023px) {
  .pc_footer .inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.pc_footer .f_left .f_logo {
  width: clamp(180px, 13.5vw, 260px);
  margin-bottom: clamp(50px, 4.7vw, 90px);
}
.pc_footer .f_left .f_logo img {
  width: 100%;
  display: block;
}
.pc_footer .f_left .f_info {
  margin-bottom: 30px;
}
.pc_footer .f_left .f_info p {
  opacity: 48%;
  font-size: clamp(13px, 0.85vw, 16px);
  color: #fff;
  line-height: 1.7;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
  word-break: keep-all;
  hyphens: auto;
}
.pc_footer .f_right {
  display: flex;
  gap: clamp(10px, 0.8vw, 15px);
  flex-wrap: wrap;
  position: relative;
  top: -25px;
}
.pc_footer .f_right .btn_cs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: clamp(160px, 11.5vw, 220px);
  min-height: clamp(140px, 9.4vw, 180px);
  padding: clamp(18px, 1.3vw, 25px);
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s;
}
.pc_footer .f_right .btn_cs:hover {
  transform: translateY(-3px);
}
.pc_footer .f_right .btn_cs .icon {
  width: clamp(32px, 2.25vw, 43px);
  margin-bottom: 15px;
}
.pc_footer .f_right .btn_cs .icon img {
  width: 100%;
  height: auto;
  display: block;
}
.pc_footer .f_right .btn_cs .txt_group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  letter-spacing: -0.02em;
}
.pc_footer .f_right .btn_cs .txt_group .lbl {
  font-size: clamp(14px, 1.05vw, 20px);
  font-weight: 400;
}
.pc_footer .f_right .btn_cs .txt_group .val {
  font-size: clamp(16px, 1.3vw, 25px);
  font-weight: 800;
}
.pc_footer .f_right .btn_cs.kakao {
  background: #fee900;
  color: #2c1504;
}
.pc_footer .f_right .btn_cs.kakao .icon {
  width: 45px;
}
.pc_footer .f_right .btn_cs.tel {
  background: linear-gradient(300deg, #5ae4b2 0%, #36dfed 21%, #1a7afb 76%);
  color: #fff;
}
.pc_footer .f_right .btn_cs.tel .val {
  font-family: "Gothic A1";
}

.quick_menu {
  position: fixed;
  top: clamp(120px, 7.5vw, 145px);
  right: clamp(15px, 1.3vw, 25px);
  width: clamp(200px, 13.3vw, 255px);
  z-index: 1000;
}
@media (min-width: 1280px) {
  .quick_menu {
    display: block;
  }
}
@media (max-width: 1279px) {
  .quick_menu {
    display: none;
  }
}
.quick_menu .inquiry_box {
  background: #fff;
  border-radius: 20px;
  padding: clamp(15px, 1vw, 20px) clamp(18px, 1.3vw, 25px) clamp(25px, 1.8vw, 35px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
  letter-spacing: -0.04em;
}
.quick_menu .inquiry_box .q_tit {
  display: flex;
  align-items: center;
  gap: clamp(10px, 0.8vw, 15px);
  margin-bottom: 15px;
  padding: 0 15px;
  font-size: clamp(18px, 1.2vw, 23px);
  font-weight: 800;
  color: #1977fb;
}
.quick_menu .inquiry_box .q_tit .icon {
  width: clamp(28px, 1.8vw, 35px);
  flex-shrink: 0;
}
.quick_menu .inquiry_box .input_wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 15px;
}
.quick_menu .inquiry_box .input_wrap .inp_comm {
  width: 100%;
  height: 40px;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  padding: 0 12px;
  font-size: 14px;
  background: #fff;
  color: #111;
  transition: 0.2s;
}
.quick_menu .inquiry_box .input_wrap .inp_comm::placeholder {
  color: #999;
  font-weight: 400;
}
.quick_menu .inquiry_box .input_wrap .inp_comm:focus {
  border-color: #1a7afb;
  box-shadow: 0 0 0 2px rgba(26, 122, 251, 0.1);
  outline: none;
}
.quick_menu .inquiry_box .radio_group {
  margin-bottom: 15px;
}
.quick_menu .inquiry_box .radio_group .lbl {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}
.quick_menu .inquiry_box .radio_group .rdo_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.quick_menu .inquiry_box .radio_group .rdo_list label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: #222;
  cursor: pointer;
  font-weight: normal;
}
.quick_menu .inquiry_box .radio_group .rdo_list label input[type=radio] {
  appearance: none;
  width: 11.6px;
  height: 11.6px;
  border: 1px solid #d7d8da;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}
.quick_menu .inquiry_box .radio_group .rdo_list label input[type=radio]:checked {
  border-color: #0068ff;
  background: #fff;
}
.quick_menu .inquiry_box .radio_group .rdo_list label input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  background: #0068ff;
  border-radius: 50%;
}
.quick_menu .inquiry_box .agree_check {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 13px;
  color: #777;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
.quick_menu .inquiry_box .agree_check label {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.quick_menu .inquiry_box .agree_check label input {
  width: 13px;
  height: 13px;
  accent-color: #0068ff;
}
.quick_menu .inquiry_box .btn_submit {
  width: 100%;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(90deg, #1880fb 0%, #22c5d6 100%);
  color: #fff;
  font-size: clamp(18px, 1.15vw, 22px);
  line-height: 24px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: 0.3s;
}
.quick_menu .inquiry_box .btn_submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #1174ed 0%, #22c5d6 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease-in-out;
}
.quick_menu .inquiry_box .btn_submit:hover {
  box-shadow: 0 8px 25px rgba(26, 122, 251, 0.5);
}
.quick_menu .inquiry_box .btn_submit:hover::before {
  opacity: 1;
}
.quick_menu .inquiry_box .btn_submit:active {
  transform: scale(0.98);
}
.quick_menu .banner_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: clamp(50px, 3.1vw, 60px);
  border-radius: 20px;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  font-size: clamp(18px, 1.15vw, 22px);
  font-weight: 700;
  letter-spacing: -0.04em;
  transition: transform 0.2s;
}
.quick_menu .banner_btn span {
  display: flex;
  align-items: center;
  margin-right: 10px;
}
.quick_menu .banner_btn span img {
  height: clamp(24px, 1.6vw, 30px);
  width: auto;
}
.quick_menu .banner_btn:hover {
  transform: translateY(-2px);
}
.quick_menu .banner_btn.type_tel {
  background: #1954fb;
  color: #f1ffa0;
  letter-spacing: normal;
}
.quick_menu .banner_btn.type_kakao {
  background: #ffe71b;
  color: #41210a;
}

.car_modal.is_open {
  display: block;
}

body.modal_open {
  overflow: hidden;
}

.car_modal.is_open {
  display: block;
}

body.modal_open {
  overflow: hidden;
}

.car_modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
}
.car_modal .dim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.car_modal .modal_panel {
  --radius: 22px;
  --pad: clamp(18px, 1.6vw, 28px);
  --gap: clamp(18px, 2vw, 28px);
  --field-h: clamp(56px, 3.5vw, 64px);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  width: min(620px, 100% - 40px);
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.car_modal .modal_panel .btn_close {
  display: none;
  background: transparent;
}
.car_modal .modal_car {
  position: relative;
  padding: 10px;
  text-align: center;
}
.car_modal .modal_car .modal_badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 7px 13px 3px 13px;
  border-radius: 10px;
  background: #d9ecff;
  color: #1880fb;
  font-weight: 800;
  font-size: 14px;
}
.car_modal .modal_car #modalCarImg {
  display: block;
  width: min(430px, 100%);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}
.car_modal .modal_car #modalCarName {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.1;
}
.car_modal .modal_car #modalCarTrim {
  margin: 20px 0 0;
  font-size: 15px;
  color: #777;
  /* 엔터(줄바꿈)와 공백을 브라우저에 그대로 반영합니다 */
  white-space: pre-line;
  /* 단어가 너무 길어 영역을 벗어나는 시비를 방지합니다 */
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.car_modal .modal_form {
  padding: calc(var(--pad) + 6px) var(--pad) var(--pad);
  letter-spacing: -0.05em;
  background: #f7f7f7;
  color: #333;
}
.car_modal .modal_form fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}
.car_modal .modal_form h3 {
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 700;
  margin-bottom: clamp(15px, 1.6vw, 20px);
  color: #222;
}
.car_modal .modal_form .input_wrap {
  display: grid;
  gap: clamp(5px, 1.2vw, 10px);
  margin-bottom: clamp(15px, 1.6vw, 20px);
}
.car_modal .modal_form .input_wrap .inp_comm {
  width: 100%;
  height: var(--field-h);
  max-height: 50px;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  padding: 0 clamp(10px, 1.6vw, 15px);
  font-size: clamp(14px, 1.3vw, 16px);
  background: #fff;
}
.car_modal .modal_form .input_wrap .inp_comm:focus {
  outline: none;
  border-color: rgba(24, 128, 251, 0.55);
  box-shadow: 0 0 0 4px rgba(24, 128, 251, 0.12);
}
.car_modal .modal_form .radio_group {
  margin-bottom: clamp(14px, 1.2vw, 18px);
}
.car_modal .modal_form .radio_group .lbl {
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
}
.car_modal .modal_form .radio_group .rdo_list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: clamp(10px, 1.6vw, 20px);
}
.car_modal .modal_form .radio_group .rdo_list label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: #222;
  cursor: pointer;
  font-weight: 500;
}
.car_modal .modal_form .radio_group .rdo_list label input[type=radio] {
  appearance: none;
  width: 11.6px;
  height: 11.6px;
  border: 1px solid #d7d8da;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  background: #fff;
  top: -1px;
}
.car_modal .modal_form .radio_group .rdo_list label input[type=radio]:checked {
  border-color: #0068ff;
  background: #fff;
}
.car_modal .modal_form .radio_group .rdo_list label input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  background: #0068ff;
  border-radius: 50%;
}
.car_modal .modal_form .agree_check {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: clamp(13px, 1.3vw, 15px);
  color: #777;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
.car_modal .modal_form .agree_check label {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  font-size: 13px;
}
.car_modal .modal_form .agree_check label input {
  width: 13px;
  height: 13px;
  accent-color: #0068ff;
}
.car_modal .modal_form .btn_submit {
  width: min(340px, 80%);
  height: clamp(40px, 4.2vw, 50px);
  margin: 0 auto;
  display: block;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(90deg, #1880fb 0%, #22c5d6 100%);
  color: #fff;
  font-size: clamp(18px, 1.7vw, 20px);
  font-weight: 700;
  cursor: pointer;
}
@media (max-width: 767px) {
  .car_modal .modal_panel {
    grid-template-columns: 1fr;
    width: min(100% - 30px, 680px);
    max-height: calc(100dvh - 30px);
    overflow-y: auto;
    border-radius: 18px;
  }
  .car_modal .modal_car {
    padding: clamp(26px, 6.5vw, 40px) clamp(18px, 4.5vw, 26px) clamp(20px, 5vw, 32px);
  }
  .car_modal .modal_car .modal_badge {
    top: 16px;
    left: 16px;
    font-size: 14px;
    border-radius: 10px;
    font-weight: 600;
  }
  .car_modal .modal_car #modalCarImg {
    width: 100%;
    height: auto;
    max-height: 200px;
    overflow: hidden;
    object-fit: contain;
  }
  .car_modal .modal_car #modalCarName {
    font-size: 19px;
    line-height: 1.1;
    letter-spacing: -0.05em;
  }
  .car_modal .modal_car #modalCarTrim {
    font-size: 15px;
    margin-top: clamp(8px, 2.8vw, 14px);
    color: #555;
    /* 엔터(줄바꿈)와 공백을 브라우저에 그대로 반영합니다 */
    white-space: pre-line;
    /* 단어가 너무 길어 영역을 벗어나는 시비를 방지합니다 */
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
  .car_modal .modal_form {
    padding: clamp(24px, 6vw, 40px) clamp(18px, 4.5vw, 26px) clamp(28px, 7vw, 46px);
  }
  .car_modal .modal_form h3 {
    font-size: 15px;
    margin-bottom: 15px;
    letter-spacing: -0.05em;
    font-weight: 600;
  }
  .car_modal .modal_form .input_wrap {
    gap: clamp(12px, 3.2vw, 18px);
    margin-bottom: clamp(18px, 4.5vw, 26px);
  }
  .car_modal .modal_form .input_wrap .inp_comm {
    max-height: none;
    height: clamp(56px, 10.5vw, 74px);
    font-size: 16px;
    padding: 0 clamp(16px, 3.8vw, 22px);
    border-width: 2px;
  }
  .car_modal .modal_form .radio_group {
    margin-bottom: clamp(18px, 4.5vw, 26px);
  }
  .car_modal .modal_form .radio_group .lbl {
    font-size: 15px;
    display: block;
    font-weight: 700;
  }
  .car_modal .modal_form .radio_group .rdo_list {
    gap: clamp(10px, 3vw, 14px);
  }
  .car_modal .modal_form .radio_group .rdo_list label {
    font-size: clamp(16px, 3.6vw, 22px);
    gap: clamp(8px, 2.2vw, 10px);
    font-weight: 500;
  }
  .car_modal .modal_form .radio_group .rdo_list label input[type=radio] {
    width: clamp(18px, 4vw, 22px);
    height: clamp(18px, 4vw, 22px);
  }
  .car_modal .modal_form .radio_group .rdo_list label input[type=radio]:checked::after {
    width: clamp(10px, 2.6vw, 14px);
    height: clamp(10px, 2.6vw, 14px);
  }
  .car_modal .modal_form .agree_check {
    margin-bottom: clamp(22px, 5vw, 30px);
  }
  .car_modal .modal_form .agree_check label {
    gap: clamp(10px, 3vw, 14px);
    font-size: 12px;
  }
  .car_modal .modal_form .agree_check .btn_view {
    font-size: 12px;
  }
  .car_modal .modal_form .btn_submit {
    height: clamp(64px, 12vw, 78px);
    font-size: clamp(20px, 4.4vw, 28px);
    box-shadow: 0 12px 22px rgba(24, 128, 251, 0.25);
  }
}

@media (max-width: 767px) {
  .mo_layout {
    display: block;
    --container-pad: 40px;
  }
}
@media (min-width: 768px) {
  .mo_layout {
    display: none;
  }
}
.mo_layout .mo_header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: #fff;
  transform: translateZ(0);
}
.mo_layout .mo_header .inner {
  width: auto;
  height: clamp(70px, 15.3vw, 110px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  padding: 0 clamp(20px, 5.5vw, 40px);
}
.mo_layout .mo_header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.07);
  z-index: 1;
  pointer-events: none;
}
.mo_layout .mo_header .logo img {
  width: clamp(150px, 34.7vw, 250px);
  height: auto;
  object-fit: contain;
}
.mo_layout .mo_header .btn_menu {
  width: clamp(40px, 7.5vw, 54px);
  height: clamp(40px, 7.5vw, 54px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: clamp(5px, 1.1vw, 8px);
}
.mo_layout .mo_header .btn_menu span {
  display: block;
  width: clamp(24px, 4.7vw, 34px);
  height: clamp(3px, 0.55vw, 4px);
  background: #111;
  border-radius: 4px;
}
.mo_layout .mo_gnb_wrap {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
}
.mo_layout .mo_gnb_wrap .dim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: 0.25s;
}
.mo_layout .mo_gnb_wrap .panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 100%;
  background: #fff;
  transform: translateX(100%);
  transition: 0.25s ease;
  padding: clamp(25px, 4.9vw, 35px) clamp(20px, 4.2vw, 30px) clamp(20px, 4.2vw, 30px);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 25px;
  overflow-y: auto;
}
.mo_layout .mo_gnb_wrap .btn_close {
  width: 44px;
  height: 44px;
  align-self: flex-end;
  position: relative;
  flex-shrink: 0;
}
.mo_layout .mo_gnb_wrap .btn_close::before, .mo_layout .mo_gnb_wrap .btn_close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 3px;
  background: #111;
  border-radius: 3px;
  transform-origin: center;
}
.mo_layout .mo_gnb_wrap .btn_close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.mo_layout .mo_gnb_wrap .btn_close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.mo_layout .mo_gnb_wrap .gnb_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mo_layout .mo_gnb_wrap .gnb_list a {
  display: block;
  font-size: clamp(17px, 4.2vw, 22px);
  font-weight: 600;
  color: #111;
  letter-spacing: -0.05em;
  padding: 7px 6px;
}
.mo_layout .mo_gnb_wrap.open {
  pointer-events: auto;
}
.mo_layout .mo_gnb_wrap.open .dim {
  opacity: 1;
}
.mo_layout .mo_gnb_wrap.open .panel {
  transform: translateX(0);
}

.mo_footer {
  width: 100%;
  background: #192232;
  padding: clamp(50px, 11.1vw, 80px) 10px clamp(180px, 34.7vw, 250px);
  color: #fff;
}
@media (max-width: 767px) {
  .mo_footer {
    display: block;
  }
}
@media (min-width: 768px) {
  .mo_footer {
    display: none;
  }
}
.mo_footer .inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mo_footer .f_left .f_logo {
  width: clamp(180px, 36.1vw, 260px);
  margin-bottom: clamp(50px, 11.1vw, 80px);
}
.mo_footer .f_left .f_logo img {
  width: 100%;
  display: block;
}
.mo_footer .f_left .f_info {
  margin-bottom: clamp(45px, 9vw, 65px);
}
.mo_footer .f_left .f_info p {
  overflow-wrap: anywhere;
  word-break: keep-all;
  hyphens: auto;
  opacity: 48%;
  font-size: clamp(18px, 3.9vw, 28px);
  color: #fff;
  line-height: 1.7;
  letter-spacing: -0.02em;
}
.mo_footer .f_right {
  display: flex;
  gap: clamp(14px, 2.8vw, 20px);
  flex-wrap: wrap;
}
.mo_footer .f_right .btn_cs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: clamp(160px, 34vw, 245px);
  padding: clamp(22px, 4.2vw, 30px);
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s;
  flex: 1;
}
.mo_footer .f_right .btn_cs:hover {
  transform: translateY(-3px);
}
.mo_footer .f_right .btn_cs .icon {
  height: clamp(42px, 8.3vw, 60px);
  margin-bottom: clamp(18px, 3.5vw, 25px);
}
.mo_footer .f_right .btn_cs .icon img {
  width: auto;
  height: 100%;
  display: block;
}
.mo_footer .f_right .btn_cs .txt_group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  letter-spacing: -0.02em;
}
.mo_footer .f_right .btn_cs .txt_group .lbl {
  font-size: clamp(20px, 3.9vw, 28px);
  font-weight: 400;
}
.mo_footer .f_right .btn_cs .txt_group .val {
  font-size: clamp(24px, 4.7vw, 34px);
  font-weight: 800;
}
.mo_footer .f_right .btn_cs.kakao {
  background: #fee900;
  color: #2c1504;
}
.mo_footer .f_right .btn_cs.kakao .icon {
  width: 45px;
}
.mo_footer .f_right .btn_cs.tel {
  background: linear-gradient(300deg, #5ae4b2 0%, #36dfed 21%, #1a7afb 76%);
  color: #fff;
}
.mo_footer .f_right .btn_cs.tel .val {
  font-family: "Gothic A1";
}

.mo_quick_menu {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 999;
}
@media (min-width: 1280px) {
  .mo_quick_menu {
    display: none;
  }
}
@media (max-width: 1279px) {
  .mo_quick_menu {
    display: block;
  }
}
.mo_quick_menu .floating_btns {
  position: absolute;
  right: clamp(10px, 2vw, 15px);
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 2vw, 15px);
}
@media (min-width: 768px) {
  .mo_quick_menu .floating_btns {
    bottom: clamp(50px, 26.4vw, 50px);
  }
}
@media (max-width: 767px) {
  .mo_quick_menu .floating_btns {
    bottom: clamp(140px, 26.4vw, 190px);
  }
}
.mo_quick_menu .floating_btns .btn_float {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
  background: #fff;
}
@media (min-width: 768px) {
  .mo_quick_menu .floating_btns .btn_float {
    width: clamp(60px, 12.5vw, 50px);
    height: clamp(60px, 12.5vw, 50px);
  }
}
@media (max-width: 767px) {
  .mo_quick_menu .floating_btns .btn_float {
    width: clamp(60px, 12.5vw, 90px);
    height: clamp(60px, 12.5vw, 90px);
  }
}
.mo_quick_menu .floating_btns .btn_float .blind {
  display: none;
}
.mo_quick_menu .floating_btns .btn_float i {
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (min-width: 768px) {
  .mo_quick_menu .floating_btns .btn_float i {
    width: clamp(28px, 5.5vw, 20px);
    height: clamp(28px, 5.5vw, 20px);
  }
}
@media (max-width: 767px) {
  .mo_quick_menu .floating_btns .btn_float i {
    width: clamp(28px, 5.5vw, 40px);
    height: clamp(28px, 5.5vw, 40px);
  }
}
.mo_quick_menu .floating_btns .btn_float .icon_talk {
  background-image: url("/assets/img/mo/cta_talk.png");
}
.mo_quick_menu .floating_btns .btn_float .icon_call {
  background-image: url("/assets/img/mo/cta_call.png");
  filter: brightness(0) invert(1);
}
.mo_quick_menu .floating_btns .btn_float:active {
  transform: scale(0.95);
}
.mo_quick_menu .floating_btns .btn_float.type_kakao {
  background-color: #ffe812;
}
.mo_quick_menu .floating_btns .btn_float.type_tel {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
}
.mo_quick_menu .btn_bottom_inquiry {
  width: 100%;
  height: 70px;
  border: none;
  background-color: #1977fb;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 70px;
  text-align: center;
  letter-spacing: -0.04rem;
  cursor: pointer;
}
@media (min-width: 768px) {
  .mo_quick_menu .btn_bottom_inquiry {
    display: none;
  }
}
@media (max-width: 767px) {
  .mo_quick_menu .btn_bottom_inquiry {
    display: block;
  }
}
.mo_quick_menu .btn_bottom_inquiry::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 8px;
  border-top: clamp(3px, 0.7vw, 5px) solid #fff;
  border-right: clamp(3px, 0.7vw, 5px) solid #fff;
  transform: rotate(45deg);
  vertical-align: 3px;
  position: relative;
  top: 1px;
}

.c1_pc .inner {
  width: min(1100px, 100% - clamp(20px, 4vw, 40px) * 2);
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  --container-pad: 0;
}
@media (min-width: 1440px) {
  .c1_pc .inner {
    max-width: 1200px;
  }
}
@media (max-width: 1279px) {
  .c1_pc .inner {
    --container-pad: 50px;
  }
}
@media (max-width: 767px) {
  .c1_pc .inner {
    --container-pad: 40px;
  }
}
.c1_pc .highlight {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.c1_pc .highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 40%;
  background-color: #5de5f0;
  opacity: 0.7;
  z-index: -1;
  transition: width 0.8s ease-in-out;
}
.c1_pc .highlight.on::after {
  width: 100%;
}
.c1_pc .hero_section {
  position: relative;
  margin-top: clamp(70px, 5.2vw, 100px);
  width: 100%;
  min-height: clamp(400px, 35vw, 675px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url("/assets/img/pc/hero_bg.png") center/cover no-repeat;
  padding: clamp(40px, 4.7vw, 90px) 0;
}
.c1_pc .hero_section .text_group {
  padding-top: 0;
  z-index: 1;
}
.c1_pc .hero_section .text_group .color_point {
  color: #1880fb;
}
.c1_pc .hero_section .text_group .badge {
  opacity: 0;
  display: inline-block;
  margin-bottom: clamp(20px, 1.8vw, 35px);
  padding: clamp(10px, 0.8vw, 15px) clamp(15px, 1vw, 20px) clamp(10px, 0.8vw, 15px) clamp(35px, 2.6vw, 50px);
  background: linear-gradient(90deg, #1174ed 0%, #22c5d6 100%);
  color: #fff;
  font-style: italic;
  font-size: clamp(18px, 1.45vw, 28px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  clip-path: polygon(50px 0%, 100% 0, 100% 100%, 0% 100%);
}
.c1_pc .hero_section .text_group .badge.start {
  animation: fadeInRight 1s ease-out forwards;
}
@media (max-width: 767px) {
  .c1_pc .hero_section .text_group .badge {
    clip-path: polygon(30px 0%, 100% 0, 100% 100%, 0% 100%);
    padding-left: 40px;
  }
}
.c1_pc .hero_section .text_group .badge span {
  display: block;
}
.c1_pc .hero_section .text_group .main_title {
  opacity: 0;
  overflow-wrap: anywhere;
  word-break: keep-all;
  hyphens: auto;
  font-size: clamp(32px, 3.9vw, 75px);
  font-weight: 900;
  margin-bottom: clamp(20px, 2.1vw, 40px);
  font-style: italic;
  letter-spacing: -0.05em;
  color: #111;
  line-height: 1.15;
}
.c1_pc .hero_section .text_group .main_title.start {
  animation: fadeUpText 0.8s ease-out forwards;
  animation-delay: 0.2s;
}
.c1_pc .hero_section .text_group .sub_title {
  opacity: 0;
  overflow-wrap: anywhere;
  word-break: keep-all;
  hyphens: auto;
  font-size: clamp(22px, 2.4vw, 46px);
  font-weight: 600;
  margin-bottom: clamp(50px, 5.7vw, 110px);
  font-style: italic;
  letter-spacing: -0.05em;
  color: #111;
  line-height: 1.2;
}
.c1_pc .hero_section .text_group .sub_title.start {
  animation: fadeUpText 0.8s ease-out forwards;
  animation-delay: 0.4s;
}
.c1_pc .hero_section .text_group .desc {
  opacity: 0;
  overflow-wrap: anywhere;
  word-break: keep-all;
  hyphens: auto;
  font-size: clamp(18px, 1.7vw, 32px);
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #3d3d3d;
  line-height: 1.3;
}
.c1_pc .hero_section .text_group .desc.start {
  animation: fadeUpText 0.8s ease-out forwards;
  animation-delay: 0.6s;
}
.c1_pc .hero_section .visual_group {
  position: absolute;
  top: 50%;
  left: 67%;
  transform: translate(-50%, -50%);
  width: clamp(300px, 34vw, 650px);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1023px) {
  .c1_pc .hero_section .visual_group {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 500px;
    margin: 30px auto 0;
  }
}
.c1_pc .hero_section .visual_group .car_img {
  opacity: 0;
  width: 100%;
  height: auto;
}
.c1_pc .hero_section .visual_group .car_img.start {
  animation: fadeUpCar 2s ease-out forwards;
}
@media (max-width: 1023px) {
  .c1_pc .hero_section {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
  }
  .c1_pc .hero_section .text_group {
    width: 100%;
    max-width: 600px;
  }
}
.c1_pc .count_section {
  width: 100%;
  min-height: clamp(100px, 7vw, 135px);
  background: #14316b;
  display: flex;
  align-items: center;
  padding: clamp(20px, 1.6vw, 30px) 0;
}
.c1_pc .count_section .counter_list {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 0 clamp(20px, 2.6vw, 50px);
  flex-wrap: wrap;
  gap: 20px;
}
.c1_pc .count_section .counter_list li {
  text-align: center;
  flex: 1;
  min-width: 150px;
}
.c1_pc .count_section .counter_list li .tit {
  display: block;
  font-size: clamp(14px, 1.15vw, 22px);
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.04em;
}
.c1_pc .count_section .counter_list li .count_num {
  display: block;
  font-size: clamp(24px, 2.1vw, 40px);
  font-weight: 700;
  color: #bbffee;
}
.c1_pc .rentlease_section {
  padding: clamp(60px, 6.5vw, 125px) 0 clamp(60px, 6.25vw, 120px);
  background: url("/assets/img/pc/rentlease_bg.png") center/cover no-repeat;
}
.c1_pc .rentlease_section .inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(30px, 2.6vw, 30px);
}
@media (max-width: 1023px) {
  .c1_pc .rentlease_section .inner {
    flex-direction: column;
    align-items: center;
  }
}
.c1_pc .rentlease_section .left_group {
  width: 45%;
  padding-top: 30px;
  flex-shrink: 0;
}
@media (max-width: 1023px) {
  .c1_pc .rentlease_section .left_group {
    width: 100%;
    max-width: 600px;
    text-align: center;
    padding-top: 0;
  }
}
.c1_pc .rentlease_section .left_group .color_point {
  color: #1977fb;
}
.c1_pc .rentlease_section .left_group .sub_badge {
  display: inline-block;
  padding: 0 5px;
  margin-bottom: 20px;
  font-family: "Nanum Pen Script", cursive;
  font-size: clamp(32px, 2.4vw, 46px);
  color: #000;
  letter-spacing: -0.025em;
  line-height: 1;
  background-image: linear-gradient(to top, #5de5f0 35%, transparent 35%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: left bottom;
  transition: background-size 0.8s ease-out;
}
.c1_pc .rentlease_section .left_group .sub_badge.active {
  background-size: 100% 100%;
}
.c1_pc .rentlease_section .left_group .section_title {
  opacity: 0;
  overflow-wrap: anywhere;
  word-break: keep-all;
  hyphens: auto;
  font-size: clamp(32px, 2.8vw, 54px);
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.c1_pc .rentlease_section .left_group .section_title.start {
  animation: fadeUpText 0.5s ease-out forwards;
  animation-delay: 0.4s;
}
.c1_pc .rentlease_section .left_group .car_object {
  width: 100%;
  margin-top: clamp(80px, 11vw, 210px);
}
@media (max-width: 1023px) {
  .c1_pc .rentlease_section .left_group .car_object {
    margin-top: 40px;
  }
}
.c1_pc .rentlease_section .left_group .car_object img {
  opacity: 0;
  width: 100%;
  max-width: 450px;
  display: block;
}
.c1_pc .rentlease_section .left_group .car_object img.start {
  animation: fadeUpCar 2s ease-out forwards;
  animation-delay: 0.5s;
}
@media (max-width: 1023px) {
  .c1_pc .rentlease_section .left_group .car_object img {
    margin: 0 auto;
  }
}
.c1_pc .rentlease_section .right_group {
  width: 55%;
  min-width: 0;
}
@media (max-width: 1023px) {
  .c1_pc .rentlease_section .right_group {
    width: 100%;
    max-width: 700px;
  }
}
.c1_pc .rentlease_section .right_group .benefit_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 479px) {
  .c1_pc .rentlease_section .right_group .benefit_list {
    grid-template-columns: 1fr;
  }
}
.c1_pc .rentlease_section .right_group .benefit_list li {
  background: #fff;
  border-radius: 20px;
  padding: clamp(20px, 1.6vw, 30px) clamp(18px, 1.3vw, 25px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.c1_pc .rentlease_section .right_group .benefit_list li:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 30px rgba(24, 128, 251, 0.15);
}
.c1_pc .rentlease_section .right_group .benefit_list li .icon_box {
  width: auto;
  height: clamp(50px, 3.9vw, 75px);
  margin-bottom: clamp(15px, 1.3vw, 25px);
  align-self: flex-end;
}
.c1_pc .rentlease_section .right_group .benefit_list li .icon_box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.c1_pc .rentlease_section .right_group .benefit_list li .txt_box h3 {
  font-size: clamp(18px, 1.45vw, 28px);
  font-weight: 700;
  color: #1977fb;
  margin-bottom: clamp(15px, 1.3vw, 25px);
  letter-spacing: -0.05em;
}
.c1_pc .rentlease_section .right_group .benefit_list li .txt_box p {
  overflow-wrap: anywhere;
  word-break: keep-all;
  hyphens: auto;
  font-size: clamp(14px, 1.15vw, 22px);
  color: #333;
  line-height: 1.45;
  letter-spacing: -0.05em;
}
.c1_pc .rentlease_section .right_group .benefit_list li .txt_box p strong {
  font-weight: 700;
}
.c1_pc .rentlease_section .right_group .benefit_list li .txt_box p .desc_sm {
  display: block;
  font-size: clamp(12px, 0.95vw, 18px);
  letter-spacing: -0.04em;
}
.c1_pc .comparison_section {
  width: 100%;
  padding: clamp(60px, 6.25vw, 120px) 0;
  background: url("/assets/img/pc/comparison_bg.png") center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}
.c1_pc .comparison_section .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 4.7vw, 90px);
}
@media (max-width: 1023px) {
  .c1_pc .comparison_section .inner {
    flex-direction: column;
    gap: 50px;
  }
}
.c1_pc .comparison_section .left_group {
  width: clamp(280px, 23.5vw, 450px);
  flex-shrink: 0;
  opacity: 0;
}
.c1_pc .comparison_section .left_group.start {
  animation: slideUpSmooth 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.2s;
}
@media (max-width: 1023px) {
  .c1_pc .comparison_section .left_group {
    width: 100%;
    max-width: 400px;
  }
}
.c1_pc .comparison_section .left_group img {
  width: 100%;
  display: block;
}
.c1_pc .comparison_section .right_group {
  width: clamp(320px, 27vw, 520px);
  min-width: 0;
}
@media (max-width: 1023px) {
  .c1_pc .comparison_section .right_group {
    width: 100%;
    max-width: 520px;
    text-align: center;
  }
}
.c1_pc .comparison_section .right_group .sec_tit {
  opacity: 0;
  overflow-wrap: anywhere;
  word-break: keep-all;
  hyphens: auto;
  font-size: clamp(28px, 2.6vw, 50px);
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: clamp(30px, 2.6vw, 50px);
  font-style: italic;
  letter-spacing: -0.04em;
}
.c1_pc .comparison_section .right_group .sec_tit.start {
  animation: fadeUpText 0.5s ease-out forwards;
  animation-delay: 0.7s;
}
.c1_pc .comparison_section .right_group .sec_tit .txt_point {
  display: block;
  color: #89e9f0;
}
.c1_pc .comparison_section .right_group .keyword_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
@media (max-width: 479px) {
  .c1_pc .comparison_section .right_group .keyword_grid {
    grid-template-columns: 1fr;
  }
}
.c1_pc .comparison_section .right_group .keyword_grid li {
  height: clamp(45px, 3.1vw, 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f7f7f7;
  font-size: clamp(14px, 1.15vw, 22px);
  font-weight: 700;
  color: #f7f7f7;
  letter-spacing: -0.04em;
  transition: all 0.3s;
  padding: 0 10px;
  text-align: center;
}
.c1_pc .comparison_section .right_group .keyword_grid li:hover {
  border-color: #89e9f0;
  color: #89e9f0;
}
.c1_pc .rolling_section {
  width: 100%;
  background: #fff;
  overflow: hidden;
}
.c1_pc .rolling_section .rolling_track {
  display: flex;
  width: fit-content;
  animation: rollingRightToLeft 30s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .c1_pc .rolling_section .rolling_track {
    animation: none;
  }
}
.c1_pc .rolling_section .rolling_track img {
  display: block;
  height: clamp(60px, 4.7vw, 90px);
  width: auto;
}
.c1_pc .review_section {
  padding: clamp(70px, 7.3vw, 140px) 0 clamp(60px, 6.25vw, 120px) 0;
  background: #fff;
}
.c1_pc .review_section .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1023px) {
  .c1_pc .review_section .inner {
    flex-direction: column;
  }
}
.c1_pc .review_section .left_group {
  width: 60%;
  min-width: 0;
}
@media (max-width: 1023px) {
  .c1_pc .review_section .left_group {
    width: 100%;
    max-width: 700px;
  }
}
.c1_pc .review_section .left_group .sec_tit {
  opacity: 0;
  margin-bottom: 30px;
  line-height: 1.5;
  letter-spacing: -0.025em;
  color: #111;
  font-weight: 700;
}
.c1_pc .review_section .left_group .sec_tit.start {
  animation: fadeUpText 0.8s ease-out forwards;
}
.c1_pc .review_section .left_group .sec_tit .color_point {
  color: #1977fb;
}
.c1_pc .review_section .left_group .sec_tit.active .highlight {
  background-size: 100% 100%;
}
.c1_pc .review_section .left_group .sec_tit .highlight {
  display: inline-block;
  font-size: clamp(24px, 2.1vw, 40px);
  padding: 0 5px;
  background-image: linear-gradient(to top, #5de5f0 35%, transparent 35%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: left bottom;
  transition: background-size 0.8s ease-out;
}
.c1_pc .review_section .left_group .sec_tit .main_txt {
  font-size: clamp(28px, 2.6vw, 50px);
}
.c1_pc .review_section .left_group .review_list li {
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  position: relative;
  background: #f1f5ff;
  padding: clamp(12px, 0.8vw, 15px) clamp(40px, 3.9vw, 75px) clamp(12px, 0.8vw, 15px) clamp(30px, 2.6vw, 50px);
  clip-path: polygon(0 0, calc(100% - 25px) 0, calc(100% - 25px) 0, 100% 0, calc(100% - 25px) 25px, calc(100% - 25px) 100%, 0 100%);
  gap: 15px;
}
.c1_pc .review_section .left_group .review_list li.start {
  animation: fadeInLeft 0.6s ease-out forwards;
}
.c1_pc .review_section .left_group .review_list li:nth-child(1) {
  animation-delay: 0.1s;
}
.c1_pc .review_section .left_group .review_list li:nth-child(2) {
  animation-delay: 0.25s;
}
.c1_pc .review_section .left_group .review_list li:nth-child(3) {
  animation-delay: 0.4s;
}
.c1_pc .review_section .left_group .review_list li:nth-child(4) {
  animation-delay: 0.55s;
}
.c1_pc .review_section .left_group .review_list li:nth-child(5) {
  animation-delay: 0.7s;
}
.c1_pc .review_section .left_group .review_list li .txt_box {
  overflow-wrap: anywhere;
  word-break: keep-all;
  hyphens: auto;
  font-size: clamp(14px, 1.15vw, 22px);
  color: #212223;
  line-height: 1.45;
  letter-spacing: -0.04em;
  flex: 1;
  min-width: 0;
}
.c1_pc .review_section .left_group .review_list li .txt_box .blue {
  color: #0068ff;
  font-weight: 700;
}
.c1_pc .review_section .left_group .review_list li .avatar_box {
  width: clamp(50px, 4.2vw, 80px);
  height: clamp(60px, 5vw, 95px);
  flex-shrink: 0;
  overflow: hidden;
}
.c1_pc .review_section .left_group .review_list li .avatar_box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.c1_pc .review_section .left_group .review_list li:nth-child(odd) {
  margin-left: clamp(15px, 1.3vw, 25px);
}
.c1_pc .review_section .right_group {
  width: clamp(280px, 21vw, 400px);
  flex-shrink: 0;
}
@media (max-width: 1023px) {
  .c1_pc .review_section .right_group {
    width: 100%;
    max-width: 350px;
  }
}
.c1_pc .review_section .right_group img {
  opacity: 0;
  width: 100%;
  display: block;
}
.c1_pc .review_section .right_group img.start {
  animation: slideUpSmooth 2s ease-out forwards;
  animation-delay: 0.2s;
}
.c1_pc .consult_section {
  padding: clamp(50px, 5vw, 95px) 0;
  background: #edf1f6;
}
.c1_pc .consult_section .inner {
  display: block;
}
.c1_pc .consult_section .consult_top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 1023px) {
  .c1_pc .consult_section .consult_top {
    flex-direction: column;
    gap: 40px;
  }
}
.c1_pc .consult_section .consult_top .stats_box {
  width: 40%;
  flex-shrink: 0;
}
@media (max-width: 1023px) {
  .c1_pc .consult_section .consult_top .stats_box {
    width: 100%;
  }
}
.c1_pc .consult_section .consult_top .stats_box .stat_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.c1_pc .consult_section .consult_top .stats_box .stat_list li {
  min-height: clamp(90px, 6.25vw, 120px);
  border-radius: 20px;
  padding: clamp(25px, 1.8vw, 35px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  font-weight: 700;
  flex-wrap: wrap;
  gap: 10px;
}
.c1_pc .consult_section .consult_top .stats_box .stat_list li:hover {
  transform: translateX(5px);
}
.c1_pc .consult_section .consult_top .stats_box .stat_list li .lbl {
  font-size: clamp(14px, 1.05vw, 20px);
}
.c1_pc .consult_section .consult_top .stats_box .stat_list li .val {
  font-size: clamp(24px, 2.1vw, 40px);
  animation: blinkEffect 1s infinite ease-in-out;
}
.c1_pc .consult_section .consult_top .stats_box .stat_list li.item_blue {
  background: #0068ff;
}
.c1_pc .consult_section .consult_top .stats_box .stat_list li.item_sky {
  background: #159afb;
}
.c1_pc .consult_section .consult_top .stats_box .stat_list li.item_mint {
  background: #23c7f6;
}
.c1_pc .consult_section .consult_top .stats_box .date_info {
  text-align: left;
  font-weight: 300;
  font-size: clamp(14px, 0.95vw, 18px);
  color: #666666;
  margin-top: 17px;
}
.c1_pc .consult_section .consult_top .live_box {
  flex: 1;
  min-width: 0;
  background: #fff;
  border: 4px solid #121212;
  border-radius: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
}
.c1_pc .consult_section .consult_top .live_box.start {
  animation: fadeUpText 0.8s ease-out forwards;
  animation-delay: 0.2s;
}
.c1_pc .consult_section .consult_top .live_box .black_badge {
  position: absolute;
  top: -30px;
  left: 23%;
  transform: translateX(-50%);
  background: #121212;
  color: #fff;
  padding: clamp(12px, 0.95vw, 18px) clamp(24px, 1.8vw, 35px);
  border-radius: 99px;
  font-size: clamp(16px, 1.25vw, 24px);
  font-weight: 700;
  white-space: nowrap;
}
.c1_pc .consult_section .consult_top .live_box .ticker_window {
  width: 100%;
  height: 300px;
  overflow: hidden;
  margin-top: 20px;
  border-radius: 20px;
}
.c1_pc .consult_section .consult_top .live_box .ticker_window .ticker_list li {
  padding: clamp(15px, 1.3vw, 25px) clamp(30px, 4.2vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  max-height: 50px;
  border-bottom: 1px solid #f2f2f2;
  font-size: clamp(14px, 0.95vw, 18px);
  color: #444;
  font-weight: 500;
  gap: 10px;
}
.c1_pc .consult_section .consult_top .live_box .ticker_window .ticker_list li:last-child {
  border-bottom: none;
}
.c1_pc .consult_section .consult_top .live_box .ticker_window .ticker_list li .col_name {
  width: 15%;
  color: #555555;
  text-align: center;
  flex-shrink: 0;
}
.c1_pc .consult_section .consult_top .live_box .ticker_window .ticker_list li .col_car {
  width: 65%;
  text-align: center;
  font-weight: 700;
  color: #000;
  overflow-wrap: anywhere;
  word-break: keep-all;
  hyphens: auto;
}
.c1_pc .consult_section .consult_top .live_box .ticker_window .ticker_list li .col_status {
  width: 20%;
  text-align: right;
  font-weight: 700;
  flex-shrink: 0;
}
.c1_pc .consult_section .consult_top .live_box .ticker_window .ticker_list li .col_status.blue {
  color: #0068ff;
}
.c1_pc .consult_section .consult_top .live_box .ticker_window .ticker_list li .col_status.navy {
  color: #002692;
}
.c1_pc .consult_section .consult_top .live_box .ticker_window .ticker_list li:nth-child(odd) {
  background: #f7f7f7;
}
.c1_pc .consult_section .consult_bottom {
  margin-top: 50px;
  width: 100%;
  opacity: 0;
}
.c1_pc .consult_section .consult_bottom.start {
  animation: blurFadeIn 1s ease-out forwards;
}
.c1_pc .consult_section .consult_bottom .form_box {
  background: #fff;
  border-radius: 30px;
  padding: clamp(40px, 3.6vw, 70px) clamp(30px, 3.4vw, 65px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  display: flex;
  gap: clamp(40px, 5.7vw, 110px);
  align-items: flex-start;
  letter-spacing: -0.05rem;
}
@media (max-width: 767px) {
  .c1_pc .consult_section .consult_bottom .form_box {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}
.c1_pc .consult_section .consult_bottom .form_box .form_head {
  width: clamp(300px, 13vw, 250px);
  flex-shrink: 0;
  padding-top: 10px;
}
@media (max-width: 767px) {
  .c1_pc .consult_section .consult_bottom .form_box .form_head {
    width: 100%;
    text-align: center;
  }
}
.c1_pc .consult_section .consult_bottom .form_box .form_head h3 {
  font-size: clamp(28px, 2.4vw, 46px);
  line-height: 1.3;
  font-weight: 800;
  color: #242424;
}
.c1_pc .consult_section .consult_bottom .form_box .form_head h3 .blue {
  color: #0068ff;
}
.c1_pc .consult_section .consult_bottom .form_box .form_head h3 .highlight {
  display: inline-block;
  background: linear-gradient(to top, #5de5f0 40%, transparent 40%);
  padding: 0 3px;
}
.c1_pc .consult_section .consult_bottom .form_box .form_body {
  flex: 1;
  min-width: 0;
  width: 100%;
}
.c1_pc .consult_section .consult_bottom .form_box .form_body .form_right {
  width: 100%;
  max-width: 430px;
}
@media (max-width: 767px) {
  .c1_pc .consult_section .consult_bottom .form_box .form_body .form_right {
    max-width: none;
  }
}
.c1_pc .consult_section .consult_bottom .form_box .form_body .inp_line {
  width: 100%;
  height: 45px;
  border: none;
  border-bottom: 2px solid #000;
  border-radius: 0;
  font-size: clamp(14px, 1.15vw, 22px);
  background: transparent;
  color: #222;
  transition: 0.2s;
}
.c1_pc .consult_section .consult_bottom .form_box .form_body .inp_line::placeholder {
  color: #aaa;
  font-weight: 400;
}
.c1_pc .consult_section .consult_bottom .form_box .form_body .inp_line:focus {
  border-color: #1880fb;
  outline: none;
}
.c1_pc .consult_section .consult_bottom .form_box .form_body .input_grid {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: clamp(20px, 1.6vw, 30px) 50px;
  margin-bottom: 30px;
}
.c1_pc .consult_section .consult_bottom .form_box .form_body .input_grid .row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  margin: 0;
}
@media (max-width: 479px) {
  .c1_pc .consult_section .consult_bottom .form_box .form_body .input_grid .row {
    flex-direction: column;
    align-items: flex-start;
  }
}
.c1_pc .consult_section .consult_bottom .form_box .form_body .input_grid .row label {
  font-weight: 700;
  font-size: clamp(14px, 1.05vw, 20px);
  color: #333333;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .c1_pc .consult_section .consult_bottom .form_box .form_body .input_grid .row label {
    width: 100%;
  }
}
.c1_pc .consult_section .consult_bottom .form_box .form_body .input_grid .row label .star {
  color: #e53935;
  margin-left: 2px;
}
.c1_pc .consult_section .consult_bottom .form_box .form_body .input_grid .row input {
  font-size: clamp(14px, 1.15vw, 22px);
  color: #333333;
  letter-spacing: -0.02em;
}
.c1_pc .consult_section .consult_bottom .form_box .form_body .input_grid .row input::placeholder {
  color: #a5a5a5;
}
.c1_pc .consult_section .consult_bottom .form_box .form_body .input_grid .chk_group {
  display: flex;
  justify-content: space-between;
  gap: clamp(10px, 1.05vw, 20px);
  flex-wrap: wrap;
}
.c1_pc .consult_section .consult_bottom .form_box .form_body .input_grid .chk_group input[type=radio].blind {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.c1_pc .consult_section .consult_bottom .form_box .form_body .input_grid .chk_group .type_btn {
  flex: 1;
  min-width: 100px;
  height: 45px;
  background: #ecf0f5;
  border-radius: 10px;
  color: #252525;
  font-size: clamp(14px, 1.15vw, 22px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
  font-weight: 400;
}
.c1_pc .consult_section .consult_bottom .form_box .form_body .input_grid .chk_group input[type=radio]:checked + .type_btn {
  background: #17adfa;
  color: #fff;
  box-shadow: 0 5px 15px rgba(23, 173, 250, 0.3);
}
.c1_pc .consult_section .consult_bottom .form_box .form_body .input_grid .rdo_list {
  display: flex;
  gap: clamp(15px, 1.3vw, 25px);
  flex-wrap: wrap;
}
.c1_pc .consult_section .consult_bottom .form_box .form_body .input_grid .rdo_list label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(14px, 1.15vw, 22px);
  font-weight: 400;
  color: #444;
  cursor: pointer;
}
.c1_pc .consult_section .consult_bottom .form_box .form_body .input_grid .rdo_list label input[type=radio] {
  appearance: none;
  width: clamp(18px, 1.3vw, 25px);
  height: clamp(18px, 1.3vw, 25px);
  color: #333333;
  border: 2px solid #d7d8da;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}
.c1_pc .consult_section .consult_bottom .form_box .form_body .input_grid .rdo_list label input[type=radio]:checked {
  background: #fff;
  border: 2px solid #0068ff;
}
.c1_pc .consult_section .consult_bottom .form_box .form_body .input_grid .rdo_list label input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: #0068ff;
  border-radius: 50%;
}
.c1_pc .consult_section .consult_bottom .form_box .form_body .agree_check {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(13px, 0.85vw, 16px);
  color: #777777;
  margin-top: 15px;
  gap: 5px;
  flex-wrap: wrap;
}
.c1_pc .consult_section .consult_bottom .form_box .form_body .agree_check label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 400;
}
.c1_pc .consult_section .consult_bottom .form_box .form_body .agree_check label input[type=checkbox] {
  appearance: none;
  width: 13px;
  height: 13px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  position: relative;
  cursor: pointer;
}
.c1_pc .consult_section .consult_bottom .form_box .form_body .agree_check label input[type=checkbox]:checked {
  background: #0078d7;
  border: none;
}
.c1_pc .consult_section .consult_bottom .form_box .form_body .agree_check label input[type=checkbox]:checked::after {
  content: "✔";
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 11px;
}
.c1_pc .consult_section .consult_bottom .form_box .form_body .btn_submit {
  width: 100%;
  height: clamp(60px, 4.2vw, 80px);
  border-radius: 10px;
  background: linear-gradient(90deg, #1880fb 0%, #22c5d6 100%);
  color: #fff;
  font-size: clamp(18px, 1.45vw, 28px);
  font-weight: 800;
  letter-spacing: -0.05em;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: 0.3s;
}
.c1_pc .consult_section .consult_bottom .form_box .form_body .btn_submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #1174ed 0%, #22c5d6 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease-in-out;
}
.c1_pc .consult_section .consult_bottom .form_box .form_body .btn_submit:hover {
  box-shadow: 0 10px 25px rgba(26, 122, 251, 0.4);
}
.c1_pc .consult_section .consult_bottom .form_box .form_body .btn_submit:hover::before {
  opacity: 1;
}
.c1_pc .consult_section .consult_bottom .form_box .form_body .btn_submit:active {
  transform: scale(0.98);
}
.c1_pc .top5_section {
  padding: clamp(70px, 6.8vw, 130px) 0 clamp(60px, 6.25vw, 120px) 0;
  background: #1c1e25;
  color: #fff;
  letter-spacing: -0.05rem;
}
.c1_pc .top5_section .inner {
  display: block;
}
.c1_pc .top5_section .sec_tit {
  margin-bottom: clamp(35px, 3.1vw, 60px);
  opacity: 0;
}
.c1_pc .top5_section .sec_tit.start {
  animation: fadeUpText 0.8s ease-out forwards;
}
.c1_pc .top5_section .sec_tit .sub {
  font-size: clamp(18px, 1.45vw, 28px);
  font-weight: 500;
  margin-bottom: clamp(5px, 1vw, 25px);
  color: #fff;
}
.c1_pc .top5_section .sec_tit h2 {
  font-size: clamp(40px, 2vw, 50px);
  font-weight: 700;
}
.c1_pc .top5_section .sec_tit h2 .blue {
  color: #0068ff;
}
.c1_pc .top5_section .ranking_container {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.6vw, 60px);
  align-items: flex-start;
  opacity: 0;
}
.c1_pc .top5_section .ranking_container.start {
  animation: fadeUpText 0.8s ease-out forwards;
  animation-delay: 0.2s;
}
@media (max-width: 767px) {
  .c1_pc .top5_section .ranking_container {
    flex-direction: column;
    align-items: center;
  }
}
.c1_pc .top5_section .ranking_container .left_detail {
  display: flex;
  gap: clamp(20px, 1.6vw, 30px);
  position: relative;
  width: 45%;
}
@media (max-width: 1279px) {
  .c1_pc .top5_section .ranking_container .left_detail {
    max-width: 550px;
  }
}
@media (max-width: 767px) {
  .c1_pc .top5_section .ranking_container .left_detail {
    width: 100%;
    justify-content: center;
  }
}
.c1_pc .top5_section .ranking_container .left_detail .rank_num {
  width: clamp(50px, 3.9vw, 75px);
  text-align: right;
  font-family: "Gothic A1";
  font-size: clamp(50px, 4.7vw, 90px);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(270deg, #5ae4b2 0%, #36dfed 21%, #1a7afb 76%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .c1_pc .top5_section .ranking_container .left_detail .rank_num {
    text-align: left;
  }
}
.c1_pc .top5_section .ranking_container .left_detail .img_detail {
  font-size: clamp(20px, 2vw, 30px);
  flex: 1;
  min-width: 0;
  max-width: 320px;
}
.c1_pc .top5_section .ranking_container .left_detail .img_detail .text_group {
  margin-bottom: clamp(30px, 2.6vw, 50px);
}
.c1_pc .top5_section .ranking_container .left_detail .img_detail .text_group .car_name {
  display: block;
  font-size: clamp(20px, 1.45vw, 28px);
  font-weight: 700;
  margin-bottom: clamp(15px, 1.45vw, 20px);
}
.c1_pc .top5_section .ranking_container .left_detail .img_detail .text_group .car_spec {
  overflow-wrap: anywhere;
  word-break: keep-all;
  hyphens: auto;
  font-size: clamp(14px, 0.95vw, 18px);
  color: #fff;
  line-height: 1.6;
  /* 엔터(줄바꿈)와 공백을 브라우저에 그대로 반영합니다 */
  white-space: pre-line;
  /* 단어가 너무 길어 영역을 벗어나는 시비를 방지합니다 */
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.c1_pc .top5_section .ranking_container .left_detail .img_detail .car_img {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.c1_pc .top5_section .ranking_container .left_detail .img_detail .car_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.5s;
}
.c1_pc .top5_section .ranking_container .left_detail .img_detail .bottom_area {
  text-align: center;
}
.c1_pc .top5_section .ranking_container .left_detail .img_detail .bottom_area .price {
  font-size: clamp(18px, 1.45vw, 28px);
  margin-bottom: clamp(25px, 2.35vw, 45px);
  letter-spacing: -0.02rem;
}
.c1_pc .top5_section .ranking_container .left_detail .img_detail .bottom_area .btn_get {
  display: inline-block;
  width: clamp(200px, 14.6vw, 280px);
  height: clamp(50px, 3.4vw, 65px);
  line-height: clamp(50px, 3.4vw, 65px);
  background: linear-gradient(90deg, #1174ed 0%, #22c5d6 100%);
  border-radius: 30px;
  font-size: clamp(16px, 1.15vw, 22px);
  font-weight: 700;
  color: #fff;
  box-shadow: 0 10px 10px rgba(17, 116, 237, 0.3);
  transition: 0.3s;
}
.c1_pc .top5_section .ranking_container .left_detail .img_detail .bottom_area .btn_get:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(24, 128, 251, 0.5);
}
.c1_pc .top5_section .ranking_container .right_list {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media (max-width: 1439px) {
  .c1_pc .top5_section .ranking_container .right_list {
    width: 45%;
    max-width: 600px;
  }
}
@media (max-width: 767px) {
  .c1_pc .top5_section .ranking_container .right_list {
    width: 100%;
  }
}
.c1_pc .top5_section .ranking_container .right_list li {
  min-height: clamp(80px, 5.7vw, 110px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 1.3vw, 40px);
  background: #fff;
  border-radius: 10px;
  padding: clamp(15px, 1.3vw, 25px) clamp(20px, 1.6vw, 30px) clamp(15px, 1.3vw, 25px) clamp(25px, 2.35vw, 45px);
  color: #1c1e25;
  cursor: pointer;
  position: relative;
  border: 4px solid transparent;
  transition: 0.3s;
  letter-spacing: -0.02rem;
  max-height: 110px;
}
.c1_pc .top5_section .ranking_container .right_list li .thumb {
  position: relative;
  z-index: 1;
  margin-top: 5px;
  flex-shrink: 0;
}
.c1_pc .top5_section .ranking_container .right_list li .thumb .num {
  position: absolute;
  top: -10px;
  left: -15px;
  z-index: -1;
  font-family: "Gothic A1";
  font-size: clamp(40px, 3.1vw, 60px);
  font-weight: 900;
  color: #a4bddf;
  opacity: 0.5;
}
.c1_pc .top5_section .ranking_container .right_list li .thumb img {
  width: clamp(90px, 7vw, 135px);
  height: auto;
  object-fit: contain;
}
.c1_pc .top5_section .ranking_container .right_list li .info {
  flex: 1 1 auto;
  min-width: 0;
  max-width: clamp(130px, 22vw, 200px);
}
.c1_pc .top5_section .ranking_container .right_list li .info strong {
  display: block;
  font-size: clamp(14px, 1.05vw, 20px);
  color: #1c1e25;
  margin-bottom: clamp(5px, 0.8vw, 10px);
  overflow-wrap: anywhere;
  word-break: keep-all;
  hyphens: auto;
}
.c1_pc .top5_section .ranking_container .right_list li .info .price {
  display: block;
  font-size: clamp(12px, 0.95vw, 18px);
  color: #1786fb;
  font-weight: 700;
}
.c1_pc .top5_section .ranking_container .right_list li .stock {
  width: clamp(90px, 6.5vw, 125px);
  height: clamp(35px, 2.35vw, 45px);
  line-height: clamp(35px, 2.35vw, 45px);
  font-size: clamp(12px, 0.85vw, 16px);
  color: #11b5de;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  text-align: center;
  flex-shrink: 0;
}
.c1_pc .top5_section .ranking_container .right_list li.active {
  border-color: #32dbf0;
  background: #f6feff;
}
.c1_pc .top5_section .ranking_container .right_list li.active .num {
  background: linear-gradient(180deg, #1880fb 0%, #32dbf0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.c1_pc .top5_section .ranking_container .right_list li.active::before {
  content: "";
  position: absolute;
  left: -23px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-right: 20px solid #32dbf0;
}
@media (max-width: 767px) {
  .c1_pc .top5_section .ranking_container .right_list li.active::before {
    display: none;
  }
}
.c1_pc .chance_section {
  padding: clamp(60px, 5.5vw, 105px) 0 clamp(65px, 6vw, 115px) 0;
  background: #fff;
  letter-spacing: -0.05rem;
}
.c1_pc .chance_section .inner {
  display: block;
}
.c1_pc .chance_section .sec_head {
  text-align: center;
  margin-bottom: clamp(35px, 3.4vw, 65px);
}
.c1_pc .chance_section .sec_head .sub_txt {
  font-size: clamp(18px, 1.45vw, 28px);
  color: #0068ff;
  margin-bottom: clamp(20px, 1.8vw, 35px);
  font-weight: 500;
  opacity: 0;
}
.c1_pc .chance_section .sec_head .sub_txt.start {
  animation: fadeUpText 0.8s ease-out forwards;
}
.c1_pc .chance_section .sec_head .tit {
  font-size: clamp(28px, 2.6vw, 50px);
  font-weight: 800;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 0.8vw, 15px);
  flex-wrap: wrap;
  opacity: 0;
}
.c1_pc .chance_section .sec_head .tit.start {
  animation: fadeUpText 0.8s ease-out forwards;
  animation-delay: 0.3s;
}
.c1_pc .chance_section .sec_head .tit img {
  height: clamp(30px, 2.6vw, 50px);
  width: auto;
  margin-top: -5px;
}
.c1_pc .chance_section .sec_head .tit .blue {
  color: #1a7afb;
}
.c1_pc .chance_section .tab_menu {
  display: flex;
  gap: clamp(10px, 1.05vw, 20px);
  margin-bottom: clamp(30px, 2.6vw, 50px);
}
.c1_pc .chance_section .tab_menu li {
  flex: 1;
}
.c1_pc .chance_section .tab_menu li button {
  font-family: inherit;
  letter-spacing: -0.05rem;
  width: 100%;
  height: clamp(45px, 3.1vw, 60px);
  border-radius: 20px;
  font-size: clamp(16px, 1.15vw, 22px);
  background: #dfe9f6;
  color: #5f5f5f;
  transition: all 0.3s;
}
.c1_pc .chance_section .tab_menu li.active button {
  background: linear-gradient(90deg, #1174ed 0%, #22c5d6 100%);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(24, 128, 251, 0.3);
  transition: all 0.3s;
}
.c1_pc .chance_section .car_grid {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 1.6vw, 30px) clamp(15px, 1.05vw, 20px);
}
@media (max-width: 1279px) {
  .c1_pc .chance_section .car_grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1023px) {
  .c1_pc .chance_section .car_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 479px) {
  .c1_pc .chance_section .car_grid {
    grid-template-columns: 1fr;
  }
}
.c1_pc .chance_section .car_grid.active {
  display: grid;
  animation: fadeUpText 0.5s ease-out forwards;
}
.c1_pc .chance_section .car_grid .car_item {
  border: 1px solid #b8babe;
  border-radius: 15px;
  background: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s;
  overflow: hidden;
  min-height: clamp(250px, 16.2vw, 310px);
  padding: clamp(15px, 1.05vw, 20px);
  cursor: pointer;
}
.c1_pc .chance_section .car_grid .car_item .badge_chance {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: clamp(6px, 0.4vw, 8px) clamp(14px, 1.05vw, 20px);
  border-radius: 5px;
  font-size: clamp(12px, 0.85vw, 16px);
  font-weight: 700;
  z-index: 1;
  background: #e4f0ff;
  color: #1a7cfb;
  transition: 0.3s;
}
.c1_pc .chance_section .car_grid .car_item .img_box {
  width: 100%;
  height: clamp(120px, 9.1vw, 175px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c1_pc .chance_section .car_grid .car_item .img_box img {
  width: auto;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}
.c1_pc .chance_section .car_grid .car_item .info_box {
  text-align: center;
  width: 100%;
}
.c1_pc .chance_section .car_grid .car_item .info_box .name {
  display: block;
  font-size: clamp(18px, 1.15vw, 22px);
  font-weight: 700;
  color: #222222;
  margin-bottom: 5px;
  overflow-wrap: anywhere;
  word-break: keep-all;
  hyphens: auto;
}
.c1_pc .chance_section .car_grid .car_item .info_box .trim {
  font-size: 16px;
  color: #666666;
  font-weight: 400;
  overflow-wrap: anywhere;
  word-break: keep-all;
  hyphens: auto;
}
.c1_pc .chance_section .car_grid .car_item .btn_consult {
  margin-top: 20px;
  width: clamp(110px, 7.6vw, 145px);
  height: 40px;
  line-height: 42px;
  background: linear-gradient(90deg, #1880fb 0%, #22c5d6 100%);
  color: #fff;
  font-size: clamp(16px, 0.85vw, 16px);
  font-weight: 700;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(0px);
  letter-spacing: -0.05rem;
  transition: 0.3s;
  pointer-events: none;
}
.c1_pc .chance_section .car_grid .car_item.active, .c1_pc .chance_section .car_grid .car_item:hover {
  opacity: 1;
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  outline: 2px solid #1880fb;
  outline-offset: 0;
}
.c1_pc .chance_section .car_grid .car_item.active .badge_chance, .c1_pc .chance_section .car_grid .car_item:hover .badge_chance {
  background: #eaf6ff;
  color: #1880fb;
}
.c1_pc .chance_section .car_grid .car_item.active .btn_consult, .c1_pc .chance_section .car_grid .car_item:hover .btn_consult {
  opacity: 1;
  transform: translateY(-5px);
  pointer-events: auto;
  cursor: pointer;
}
.c1_pc .best_review_section {
  padding: clamp(60px, 5.2vw, 100px) 0 clamp(70px, 6.25vw, 120px);
  background: url("/assets/img/pc/best_review_bg.png") center/cover no-repeat;
}
.c1_pc .best_review_section .inner {
  width: 100%;
  max-width: 1665px;
  margin: 0 auto;
  padding: 0 40px;
}
.c1_pc .best_review_section .sec_tit {
  text-align: center;
  font-size: clamp(28px, 2.6vw, 50px);
  font-weight: 700;
  color: #fff;
  margin-bottom: clamp(40px, 3.6vw, 70px);
  letter-spacing: -0.05em;
  opacity: 0;
}
.c1_pc .best_review_section .sec_tit.start {
  animation: fadeUpText 0.8s ease-out forwards;
}
.c1_pc .best_review_section .slider_container {
  margin-bottom: clamp(50px, 4.4vw, 85px);
}
.c1_pc .best_review_section .review_card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}
.c1_pc .best_review_section .review_card:hover {
  transform: translateY(-5px);
}
.c1_pc .best_review_section .review_card .img_area {
  position: relative;
  width: 100%;
  height: clamp(180px, 12.5vw, 240px);
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.c1_pc .best_review_section .review_card .img_area .badge_best {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(90deg, #1174ed 0%, #22c5d6 100%);
  color: #fff;
  font-size: clamp(12px, 0.85vw, 16px);
  padding: clamp(10px, 0.8vw, 15px) clamp(14px, 1.05vw, 20px);
  border-radius: 10px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 104, 255, 0.3);
}
.c1_pc .best_review_section .review_card .img_area img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: scale(1.1);
}
.c1_pc .best_review_section .review_card .text_area {
  padding: clamp(20px, 1.6vw, 30px) clamp(18px, 1.3vw, 25px);
}
.c1_pc .best_review_section .review_card .text_area h3 {
  font-size: clamp(16px, 1.15vw, 22px);
  font-weight: 800;
  color: #222;
  margin-bottom: clamp(12px, 1.05vw, 20px);
  margin-top: 0;
}
.c1_pc .best_review_section .review_card .text_area .desc {
  font-size: clamp(14px, 1vw, 16px);
  color: #555555;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 15px;
  letter-spacing: -0.05em;
  overflow-wrap: anywhere;
  word-break: keep-all;
  hyphens: auto;
}
.c1_pc .best_review_section .review_card .text_area .card_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e5e5e5;
  padding-top: clamp(20px, 1.6vw, 30px);
  flex-wrap: wrap;
  gap: 10px;
}
.c1_pc .best_review_section .review_card .text_area .card_bottom .stars {
  width: clamp(130px, 6.25vw, 120px);
}
.c1_pc .best_review_section .review_card .text_area .card_bottom .stars img {
  display: inline-block;
}
.c1_pc .best_review_section .review_card .text_area .card_bottom .name {
  font-size: clamp(14px, 1.05vw, 18px);
  color: #777777;
}
.c1_pc .faq_section {
  padding: clamp(100px, 9.1vw, 175px) 0 clamp(70px, 6.25vw, 120px) 0;
  background: #fff;
}
.c1_pc .faq_section .inner {
  display: block;
}
.c1_pc .faq_section .sec_tit {
  text-align: center;
  font-size: clamp(28px, 2.6vw, 50px);
  font-weight: 700;
  color: #010101;
  margin-bottom: clamp(35px, 3.1vw, 60px);
  letter-spacing: -0.05em;
  margin-top: 0;
  opacity: 0;
}
.c1_pc .faq_section .sec_tit.start {
  animation: fadeUpText 0.8s ease-out forwards;
}
.c1_pc .faq_section .faq_list {
  display: flex;
  flex-direction: column;
}
.c1_pc .faq_section .faq_list li {
  width: 100%;
  overflow: hidden;
  opacity: 0;
}
.c1_pc .faq_section .faq_list li.start {
  animation: fadeUpText 0.5s ease-out forwards;
}
.c1_pc .faq_section .faq_list li .q_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: clamp(50px, 3.6vw, 70px);
  padding: clamp(12px, 0.8vw, 15px) clamp(18px, 1.3vw, 25px);
  background: #f2f2f2;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 10px;
  gap: 15px;
}
.c1_pc .faq_section .faq_list li .q_box .txt {
  overflow-wrap: anywhere;
  word-break: keep-all;
  hyphens: auto;
  font-size: clamp(15px, 1.15vw, 22px);
  font-weight: 500;
  color: #333333;
  transition: color 0.3s;
  flex: 1;
}
.c1_pc .faq_section .faq_list li .q_box .arrow {
  width: 12px;
  height: 12px;
  border-right: 2px solid #333333;
  border-bottom: 2px solid #333333;
  transform: rotate(45deg);
  transition: transform 0.3s, border-color 0.3s;
  margin-top: -5px;
  flex-shrink: 0;
}
.c1_pc .faq_section .faq_list li .a_box {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.c1_pc .faq_section .faq_list li .a_box .ans_inner {
  padding: 20px 25px 0 25px;
  font-size: clamp(13px, 1vw, 22px);
  color: #777777;
  line-height: 1.6;
  letter-spacing: -0.025em;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: keep-all;
  hyphens: auto;
}
.c1_pc .faq_section .faq_list li.active .q_box {
  background: linear-gradient(90deg, #1880fb 0%, #22c5d6 100%);
}
.c1_pc .faq_section .faq_list li.active .q_box .txt {
  color: #fff;
}
.c1_pc .faq_section .faq_list li.active .q_box .arrow {
  border-color: #fff;
  transform: rotate(-135deg) translate(-2px, -2px);
}
.c1_pc .faq_section .faq_list li.active .a_box {
  max-height: 500px;
}
.c1_pc .faq_section .faq_list li + li {
  margin-top: clamp(12px, 1.05vw, 20px);
}

body.menu_open {
  overflow: hidden;
}

.c1_mo {
  width: 100%;
  background: #fff;
  overflow-x: hidden;
}
.c1_mo .inner {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5.5vw, 40px);
  position: relative;
}
.c1_mo .pc_header .logo img {
  display: none;
}
.c1_mo .mo_hero_section {
  background: url("/assets/img/mo/hero_bg.png") center bottom/cover no-repeat;
  padding: clamp(130px, 27.8vw, 200px) 0 clamp(30px, 5.5vw, 40px);
  overflow: hidden;
}
.c1_mo .mo_hero_section .badge {
  opacity: 0;
  display: inline-block;
  padding: clamp(12px, 2.2vw, 16px) clamp(18px, 3.6vw, 26px) clamp(12px, 2.2vw, 16px) clamp(50px, 9.7vw, 70px);
  background: linear-gradient(90deg, #1174ed 0%, #22c5d6 100%);
  color: #fff;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.04em;
  clip-path: polygon(70px 0%, 100% 0, 100% 100%, 0% 100%);
  font-size: clamp(18px, 3.9vw, 28px);
  margin-bottom: clamp(20px, 4.2vw, 30px);
  line-height: 1;
}
.c1_mo .mo_hero_section .badge.start {
  animation: fadeUpText 0.8s ease-out forwards;
}
@media (max-width: 479px) {
  .c1_mo .mo_hero_section .badge {
    clip-path: polygon(40px 0%, 100% 0, 100% 100%, 0% 100%);
    padding-left: 50px;
  }
}
.c1_mo .mo_hero_section .main_title {
  opacity: 0;
  overflow-wrap: anywhere;
  word-break: keep-all;
  hyphens: auto;
  font-style: italic;
  letter-spacing: -0.05em;
  line-height: 1.2;
  margin-bottom: clamp(25px, 5.5vw, 40px);
  font-size: clamp(40px, 10.4vw, 75px);
  font-weight: 900;
}
.c1_mo .mo_hero_section .main_title.start {
  animation: fadeUpText 0.8s ease-out forwards;
  animation-delay: 0.15s;
}
.c1_mo .mo_hero_section .main_title .blue {
  color: #1880fb;
  font-weight: 900;
}
.c1_mo .mo_hero_section .main_title .black {
  color: #111;
  font-weight: 900;
}
.c1_mo .mo_hero_section .sub_title {
  opacity: 0;
  overflow-wrap: anywhere;
  word-break: keep-all;
  hyphens: auto;
  font-style: italic;
  letter-spacing: -0.05em;
  line-height: 1.15;
  margin-bottom: clamp(50px, 12.5vw, 90px);
  font-size: clamp(28px, 6.25vw, 45px);
  font-weight: 700;
  color: #111;
}
.c1_mo .mo_hero_section .sub_title.start {
  animation: fadeUpText 0.8s ease-out forwards;
  animation-delay: 0.3s;
}
.c1_mo .mo_hero_section .sub_title .blue {
  color: #1880fb;
}
.c1_mo .mo_hero_section .desc {
  opacity: 0;
  overflow-wrap: anywhere;
  word-break: keep-all;
  hyphens: auto;
  position: relative;
  z-index: 1;
  font-size: clamp(20px, 4.4vw, 32px);
  color: #3d3d3d;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  font-weight: 500;
  line-height: 1.2;
}
.c1_mo .mo_hero_section .desc.start {
  animation: fadeUpText 0.8s ease-out forwards;
  animation-delay: 0.45s;
}
.c1_mo .mo_hero_section .hero_car_wrap {
  position: relative;
  margin-top: 10px;
  padding-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: clamp(280px, 62.5vw, 450px);
}
.c1_mo .mo_hero_section .hero_shapes {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/assets/img/mo/hero_shapes.png") center/cover no-repeat;
}
.c1_mo .mo_hero_section .hero_car {
  opacity: 0;
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: clamp(320px, 73.6vw, 530px);
  height: auto;
}
.c1_mo .mo_hero_section .hero_car.start {
  animation: fadeUpCar 1.2s ease-out forwards;
  animation-delay: 0.2s;
}
.c1_mo .mo_count_section {
  background: #14316b;
  padding: clamp(30px, 6.9vw, 50px) 0;
}
.c1_mo .mo_count_section .counter_list {
  display: flex;
  justify-content: space-between;
  text-align: center;
  flex-wrap: wrap;
  gap: 15px;
}
.c1_mo .mo_count_section .counter_list li {
  flex: 1;
  min-width: 100px;
}
.c1_mo .mo_count_section .counter_list li .tit {
  display: block;
  font-size: clamp(16px, 3.9vw, 28px);
  color: #fff;
  opacity: 0.9;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
  font-weight: 600;
  line-height: 1.2;
}
.c1_mo .mo_count_section .counter_list li .count_num {
  display: block;
  font-size: clamp(24px, 5.5vw, 40px);
  font-weight: 700;
  color: #bbffee;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.c1_mo .mo_rentlease_section {
  background: url("/assets/img/mo/rentlease_bg.png") center top/cover no-repeat;
  padding: clamp(60px, 13.9vw, 100px) 0;
}
.c1_mo .mo_rentlease_section .sub_badge_mo {
  opacity: 0;
  display: inline-block;
  font-family: "Nanum Pen Script", cursive;
  font-size: clamp(32px, 6.9vw, 50px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 auto 40px;
  padding: 0 6px;
  background-image: linear-gradient(to top, #5de5f0 40%, transparent 40%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: left bottom;
}
.c1_mo .mo_rentlease_section .sub_badge_mo.start {
  animation: fadeUpText 0.8s ease-out forwards;
}
.c1_mo .mo_rentlease_section .sub_badge_mo .blue {
  color: #1880fb;
}
.c1_mo .mo_rentlease_section .section_title_mo {
  opacity: 0;
  overflow-wrap: anywhere;
  word-break: keep-all;
  hyphens: auto;
  font-size: clamp(32px, 7.5vw, 54px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.2;
  margin-bottom: clamp(35px, 6.9vw, 50px);
  color: #000;
}
.c1_mo .mo_rentlease_section .section_title_mo.start {
  animation: fadeUpText 0.8s ease-out forwards;
  animation-delay: 0.15s;
}
.c1_mo .mo_rentlease_section .section_title_mo .blue {
  color: #1880fb;
  font-weight: 800;
}
.c1_mo .mo_rentlease_section .car_object_mo {
  opacity: 0;
  margin: 0 auto clamp(40px, 9vw, 65px);
  width: 95%;
  display: flex;
  justify-content: center;
}
.c1_mo .mo_rentlease_section .car_object_mo.start {
  animation: fadeUpCar 1.2s ease-out forwards;
  animation-delay: 0.2s;
}
.c1_mo .mo_rentlease_section .car_object_mo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.c1_mo .mo_rentlease_section .benefit_grid_mo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 4.2vw, 30px) clamp(15px, 2.8vw, 20px);
  margin-top: 20px;
}
@media (max-width: 359px) {
  .c1_mo .mo_rentlease_section .benefit_grid_mo {
    grid-template-columns: 1fr;
  }
}
.c1_mo .mo_rentlease_section .benefit_grid_mo .card {
  opacity: 0;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  padding: clamp(25px, 5.5vw, 40px) clamp(15px, 2.8vw, 20px);
  min-height: auto;
}
.c1_mo .mo_rentlease_section .benefit_grid_mo .card.start {
  animation: fadeUpText 0.7s ease-out forwards;
}
.c1_mo .mo_rentlease_section .benefit_grid_mo .card .icon_box {
  width: 100%;
  height: clamp(55px, 11.8vw, 85px);
  margin-bottom: clamp(18px, 3.5vw, 25px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.c1_mo .mo_rentlease_section .benefit_grid_mo .card .icon_box img {
  width: auto;
  height: clamp(55px, 11.8vw, 85px);
  object-fit: contain;
}
.c1_mo .mo_rentlease_section .benefit_grid_mo .card h3 {
  text-align: left;
  font-size: clamp(22px, 4.9vw, 35px);
  font-weight: 700;
  color: #1880fb;
  letter-spacing: -0.05em;
  margin-bottom: clamp(22px, 4.9vw, 35px);
  line-height: 1.15;
}
.c1_mo .mo_rentlease_section .benefit_grid_mo .card p {
  overflow-wrap: anywhere;
  word-break: keep-all;
  hyphens: auto;
  text-align: left;
  font-size: clamp(16px, 3.9vw, 28px);
  line-height: 1.5;
  color: #333;
  letter-spacing: -0.05em;
}
.c1_mo .mo_rentlease_section .benefit_grid_mo .card p strong {
  font-weight: 700;
}
.c1_mo .mo_compare_section {
  background: url("/assets/img/mo/comparison_bg.png") center bottom/cover no-repeat;
  padding: clamp(60px, 13.9vw, 100px) 0 clamp(45px, 9.7vw, 70px);
  color: #fff;
}
.c1_mo .mo_compare_section .compare_mock {
  opacity: 0;
  width: 100%;
  max-width: 670px;
  margin: 0 auto clamp(35px, 6.9vw, 50px);
}
.c1_mo .mo_compare_section .compare_mock.start {
  animation: slideUpSmooth 1s ease-out forwards;
}
.c1_mo .mo_compare_section .compare_mock img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.45));
}
.c1_mo .mo_compare_section .compare_tit {
  opacity: 0;
  overflow-wrap: anywhere;
  word-break: keep-all;
  hyphens: auto;
  text-align: center;
  font-size: clamp(32px, 7.5vw, 54px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.3;
  font-style: italic;
  margin-bottom: clamp(35px, 7.6vw, 55px);
}
.c1_mo .mo_compare_section .compare_tit.start {
  animation: fadeUpText 0.8s ease-out forwards;
  animation-delay: 0.15s;
}
.c1_mo .mo_compare_section .compare_tit .blue {
  color: #89e9f0;
  font-weight: 900;
}
.c1_mo .mo_compare_section .compare_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 2.8vw, 20px);
}
@media (max-width: 359px) {
  .c1_mo .mo_compare_section .compare_grid {
    grid-template-columns: 1fr;
  }
}
.c1_mo .mo_compare_section .compare_grid .compare_btn {
  width: 100%;
  height: clamp(50px, 10.4vw, 75px);
  border: 1px solid #fff;
  color: #fff;
  font-size: clamp(18px, 4.4vw, 32px);
  font-weight: 700;
  letter-spacing: -0.05em;
  background: transparent;
  line-height: 1;
  padding: 10px;
  overflow-wrap: anywhere;
  word-break: keep-all;
  hyphens: auto;
}
.c1_mo .mo_partner_section {
  background: #fff;
}
.c1_mo .mo_partner_section .partner_img {
  opacity: 0;
  width: 100%;
}
.c1_mo .mo_partner_section .partner_img.start {
  animation: fadeUpText 0.8s ease-out forwards;
}
.c1_mo .mo_partner_section .partner_img img {
  width: 100%;
  display: block;
}
.c1_mo .mo_promise_section {
  background: #fff;
  padding-bottom: clamp(60px, 13.9vw, 100px);
}
.c1_mo .mo_promise_section .promise_tit {
  opacity: 0;
  margin-bottom: clamp(45px, 9.7vw, 70px);
  text-align: center;
  font-weight: 700;
  color: #000024;
}
.c1_mo .mo_promise_section .promise_tit.start {
  animation: fadeUpText 0.8s ease-out forwards;
}
.c1_mo .mo_promise_section .promise_tit .hl {
  font-size: clamp(26px, 6.1vw, 44px);
  display: inline-block;
  padding: 0 6px;
  background-image: linear-gradient(to top, rgba(93, 229, 240, 0.55) 38%, transparent 38%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.c1_mo .mo_promise_section .promise_tit h2 {
  margin-top: clamp(18px, 3.5vw, 25px);
  font-size: clamp(30px, 6.9vw, 50px);
  letter-spacing: -0.05em;
}
.c1_mo .mo_promise_section .promise_tit h2 .blue {
  color: #1880fb;
}
.c1_mo .mo_promise_section .talk_list {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2.2vw, 16px);
}
.c1_mo .mo_promise_section .talk_item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  opacity: 0;
}
.c1_mo .mo_promise_section .talk_item.start {
  animation: fadeUpText 0.7s ease-out forwards;
}
.c1_mo .mo_promise_section .talk_item .txt_box {
  display: flex;
  justify-content: space-between;
  gap: 3px;
  flex: 1;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
  background: #f1f5ff;
  padding: clamp(20px, 4.2vw, 30px) clamp(45px, 9.7vw, 70px) clamp(20px, 4.2vw, 30px) clamp(30px, 6.9vw, 50px);
  clip-path: polygon(0 0, calc(100% - 25px) 0, calc(100% - 25px) 0, 100% 0, calc(100% - 25px) 25px, calc(100% - 25px) 100%, 0 100%);
}
.c1_mo .mo_promise_section .talk_item .txt_box p {
  overflow-wrap: anywhere;
  word-break: keep-all;
  hyphens: auto;
  font-size: clamp(18px, 3.9vw, 28px);
  line-height: 1.5;
  letter-spacing: -0.05em;
  color: #222;
}
.c1_mo .mo_promise_section .talk_item .txt_box p .blue {
  color: #1880fb;
  font-weight: 700;
}
.c1_mo .mo_promise_section .talk_item .txt_box .avatar {
  flex-shrink: 0;
}
.c1_mo .mo_promise_section .talk_item .txt_box .avatar img {
  width: auto;
  height: clamp(60px, 12.5vw, 90px);
  object-fit: contain;
  display: block;
}
.c1_mo .mo_promise_section .btm_group {
  margin-top: clamp(35px, 6.9vw, 50px);
}
.c1_mo .mo_promise_section .btm_group img {
  opacity: 0;
  display: block;
  width: 100%;
  height: auto;
}
.c1_mo .mo_promise_section .btm_group img.start {
  animation: fadeUpText 0.8s ease-out forwards;
  animation-delay: 0.2s;
}
.c1_mo .consult_section {
  padding: clamp(45px, 9.7vw, 70px) 0 clamp(50px, 11.1vw, 80px);
  background: #edf1f6;
}
.c1_mo .consult_section .consult_top {
  display: flex;
  flex-direction: column;
  gap: clamp(55px, 12.5vw, 90px);
}
.c1_mo .consult_section .stats_box {
  opacity: 0;
}
.c1_mo .consult_section .stats_box.start {
  animation: fadeUpText 0.7s ease-out forwards;
}
.c1_mo .consult_section .stats_box .stat_list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.c1_mo .consult_section .stats_box .stat_list li {
  width: 100%;
  min-height: clamp(80px, 16.7vw, 120px);
  padding: 0 clamp(30px, 6.9vw, 50px);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  font-weight: 800;
  flex-wrap: wrap;
  gap: 10px;
}
.c1_mo .consult_section .stats_box .stat_list li .lbl {
  font-size: clamp(18px, 3.9vw, 28px);
  letter-spacing: -0.05em;
  opacity: 0.95;
}
.c1_mo .consult_section .stats_box .stat_list li .val {
  font-size: clamp(30px, 6.9vw, 50px);
  letter-spacing: -0.02em;
}
.c1_mo .consult_section .stats_box .stat_list li.item_blue {
  background: #0068ff;
}
.c1_mo .consult_section .stats_box .stat_list li.item_sky {
  background: #159afb;
}
.c1_mo .consult_section .stats_box .stat_list li.item_mint {
  background: #23c7f6;
}
.c1_mo .consult_section .stats_box .date_info {
  opacity: 0;
  text-align: right;
  font-size: 18px;
  color: #666;
  margin-top: 12px;
  letter-spacing: -0.04em;
  font-weight: 400;
}
.c1_mo .consult_section .stats_box .date_info.start {
  animation: fadeUpText 0.7s ease-out forwards;
  animation-delay: 0.2s;
}
.c1_mo .consult_section .live_box {
  opacity: 0;
  padding-top: 50px;
  background: #fff;
  border: 4px solid #121212;
  border-radius: 22px;
  position: relative;
}
.c1_mo .consult_section .live_box.start {
  animation: blurFadeIn 0.9s ease-out forwards;
  animation-delay: 0.1s;
}
.c1_mo .consult_section .live_box .black_badge {
  position: absolute;
  top: -50px;
  left: 28px;
  background: #121212;
  color: #fff;
  padding: clamp(18px, 3.5vw, 25px) clamp(30px, 6.25vw, 45px);
  border-radius: 99px;
  font-size: clamp(20px, 4.2vw, 30px);
  font-weight: 700;
  letter-spacing: -0.04em;
  z-index: 1;
  white-space: nowrap;
}
.c1_mo .consult_section .live_box .ticker_window {
  width: 100%;
  height: clamp(320px, 65.3vw, 470px);
  overflow: hidden;
  border-radius: 0 0 18px 18px;
}
.c1_mo .consult_section .live_box .ticker_list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 3.6vw, 26px);
  min-height: clamp(60px, 11.8vw, 85px);
  border-bottom: 1px solid #ededed;
  font-size: clamp(18px, 3.6vw, 26px);
  letter-spacing: -0.04em;
  gap: 10px;
}
.c1_mo .consult_section .live_box .ticker_list li:nth-child(odd) {
  background: #f7f7f7;
}
.c1_mo .consult_section .live_box .ticker_list li:last-child {
  border-bottom: 0;
}
.c1_mo .consult_section .live_box .ticker_list li .col_name {
  width: 18%;
  text-align: center;
  color: #666;
  font-weight: 600;
}
.c1_mo .consult_section .live_box .ticker_list li .col_car {
  width: 52%;
  text-align: center;
  color: #000;
  font-weight: 800;
  overflow-wrap: anywhere;
  word-break: keep-all;
  hyphens: auto;
}
.c1_mo .consult_section .live_box .ticker_list li .col_status {
  width: 30%;
  text-align: right;
  font-weight: 900;
}
.c1_mo .consult_section .live_box .ticker_list li .col_status.blue {
  color: #0068ff;
}
.c1_mo .consult_section .live_box .ticker_list li .col_status.navy {
  color: #002692;
}
.c1_mo .consult_section .consult_bottom {
  opacity: 0;
  margin-top: 45px;
}
.c1_mo .consult_section .consult_bottom.start {
  animation: blurFadeIn 0.9s ease-out forwards;
  animation-delay: 0.15s;
}
.c1_mo .consult_section .form_box {
  background: #fff;
  border-radius: 30px;
  padding: clamp(50px, 11.1vw, 80px) clamp(25px, 5.5vw, 40px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  letter-spacing: -0.05em;
}
.c1_mo .consult_section .form_head {
  margin-bottom: 30px;
}
.c1_mo .consult_section .form_head h3 {
  display: flex;
  justify-content: center;
  gap: 5px;
  font-size: clamp(30px, 6.7vw, 48px);
  line-height: 1.25;
  font-weight: 700;
  color: #242424;
  flex-wrap: wrap;
}
.c1_mo .consult_section .form_head h3 .blue {
  color: #0068ff;
}
.c1_mo .consult_section .form_head h3 .highlight {
  display: inline-block;
  background: linear-gradient(to top, #5de5f0 40%, transparent 40%);
  padding: 0 4px;
}
.c1_mo .consult_section .form_body .inp_line {
  width: 100%;
  height: 45px;
  line-height: 45px;
  border: none;
  border-bottom: 1px solid #000;
  border-radius: 0;
  background: transparent;
  font-size: 16px;
  color: #333;
  letter-spacing: -0.02em;
}
.c1_mo .consult_section .form_body .inp_line::placeholder {
  color: #a5a5a5;
}
.c1_mo .consult_section .form_body .inp_line:focus {
  border-color: #1880fb;
  outline: none;
}
.c1_mo .consult_section .form_body .input_grid {
  display: flex;
  flex-direction: column;
}
.c1_mo .consult_section .form_body .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 10px 0;
}
@media (max-width: 479px) {
  .c1_mo .consult_section .form_body .row {
    flex-direction: column;
    align-items: flex-start;
  }
}
.c1_mo .consult_section .form_body .row label {
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 600;
  color: #333;
}
.c1_mo .consult_section .form_body .row label .star {
  color: #e53935;
  margin-left: 2px;
}
.c1_mo .consult_section .form_body .row .form_right {
  flex: 1;
  min-width: 0;
  max-width: 370px;
}
@media (max-width: 479px) {
  .c1_mo .consult_section .form_body .row .form_right {
    max-width: 100%;
    width: 100%;
  }
}
.c1_mo .consult_section .form_body .row.full {
  align-items: flex-start;
}
.c1_mo .consult_section .form_body .row.full label {
  padding-top: 8px;
}
.c1_mo .consult_section .form_body .chk_group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.c1_mo .consult_section .form_body .chk_group input.blind {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.c1_mo .consult_section .form_body .chk_group .type_btn {
  flex: 1;
  min-width: 100px;
  height: 45px;
  line-height: 45px;
  border-radius: 10px;
  background: #ecf0f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  color: #252525;
  transition: 0.2s;
}
.c1_mo .consult_section .form_body .chk_group input[type=radio]:checked + .type_btn {
  background: #17adfa;
  color: #fff;
  box-shadow: 0 8px 18px rgba(23, 173, 250, 0.28);
}
.c1_mo .consult_section .form_body .rdo_list {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.c1_mo .consult_section .form_body .rdo_list label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #444;
  width: auto;
}
.c1_mo .consult_section .form_body .rdo_list input[type=radio] {
  appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid #d7d8da;
  border-radius: 50%;
  position: relative;
  top: -1px;
}
.c1_mo .consult_section .form_body .rdo_list input[type=radio]:checked {
  border-color: #0068ff;
}
.c1_mo .consult_section .form_body .rdo_list input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 13px;
  height: 13px;
  background: #0068ff;
  border-radius: 50%;
}
.c1_mo .consult_section .form_body .agree_check {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: clamp(18px, 3.9vw, 28px);
  color: #777;
  margin-top: 10px;
  flex-wrap: wrap;
}
.c1_mo .consult_section .form_body .agree_check label {
  width: auto;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.c1_mo .consult_section .form_body .agree_check input[type=checkbox] {
  position: relative;
  top: -2px;
}
.c1_mo .consult_section .form_body .btn_submit {
  width: 100%;
  height: 65px;
  line-height: 65px;
  border-radius: 10px;
  background: linear-gradient(90deg, #1880fb 0%, #22c5d6 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.05rem;
}
.c1_mo .top5_section {
  padding: clamp(60px, 13.9vw, 100px) 0 clamp(70px, 15.3vw, 110px);
  background: #1c1e25;
  color: #fff;
  letter-spacing: -0.05em;
}
.c1_mo .top5_section .inner {
  display: block;
}
.c1_mo .top5_section .sec_tit {
  opacity: 0;
  text-align: center;
  margin-bottom: clamp(35px, 6.9vw, 50px);
}
.c1_mo .top5_section .sec_tit.start {
  animation: fadeUpText 0.8s ease-out forwards;
}
.c1_mo .top5_section .sec_tit .sub {
  font-size: clamp(22px, 4.4vw, 32px);
  font-weight: 500;
  margin-bottom: clamp(20px, 4.2vw, 30px);
  color: #fff;
}
.c1_mo .top5_section .sec_tit h2 {
  font-size: clamp(34px, 7.8vw, 56px);
  font-weight: 700;
  line-height: 1.3;
  word-break: keep-all;
}
.c1_mo .top5_section .sec_tit h2 .blue {
  color: #0068ff;
}
.c1_mo .top5_section .ranking_container {
  display: block;
  opacity: 0;
}
.c1_mo .top5_section .ranking_container.start {
  animation: fadeUpText 0.8s ease-out forwards;
  animation-delay: 0.1s;
}
.c1_mo .top5_section .left_detail {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.c1_mo .top5_section .left_detail .rank_num {
  width: clamp(70px, 13.9vw, 100px);
  text-align: left;
  font-size: clamp(100px, 22.2vw, 160px);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(270deg, #5ae4b2 10%, #36dfed 40%, #1a7afb 76%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.c1_mo .top5_section .left_detail .img_detail {
  flex: 1;
  padding-top: 10px;
  min-width: 0;
}
.c1_mo .top5_section .left_detail .img_detail .text_group {
  margin-bottom: 26px;
}
.c1_mo .top5_section .left_detail .img_detail .text_group .car_name {
  display: block;
  font-size: clamp(26px, 5.5vw, 40px);
  margin-bottom: 20px;
}
.c1_mo .top5_section .left_detail .img_detail .text_group .car_spec {
  overflow-wrap: anywhere;
  word-break: keep-all;
  hyphens: auto;
  font-size: clamp(18px, 3.9vw, 28px);
  line-height: 1.6;
  /* 엔터(줄바꿈)와 공백을 브라우저에 그대로 반영합니다 */
  white-space: pre-line;
  /* 단어가 너무 길어 영역을 벗어나는 시비를 방지합니다 */
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.c1_mo .top5_section .left_btm {
  opacity: 0;
}
.c1_mo .top5_section .left_btm.start {
  animation: fadeUpText 0.8s ease-out forwards;
  animation-delay: 0.1s;
}
.c1_mo .top5_section .left_btm .car_img {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: clamp(45px, 9.7vw, 70px);
}
.c1_mo .top5_section .left_btm .car_img img {
  width: 88%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
}
.c1_mo .top5_section .left_btm .bottom_area {
  margin-top: clamp(28px, 5.5vw, 40px);
  text-align: center;
}
.c1_mo .top5_section .left_btm .bottom_area .price {
  font-size: clamp(20px, 8.3vw, 22px);
  font-weight: 700;
  margin-bottom: clamp(28px, 5.5vw, 40px);
}
.c1_mo .top5_section .left_btm .bottom_area .btn_get {
  display: inline-block;
  width: 100%;
  max-width: 520px;
  height: 70px;
  line-height: 70px;
  background: linear-gradient(90deg, #1174ed 0%, #22c5d6 100%);
  border-radius: 14px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 12px 20px rgba(17, 116, 237, 0.25);
}
.c1_mo .top5_section .right_list {
  margin-top: clamp(35px, 6.9vw, 50px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.c1_mo .top5_section .right_list li {
  min-height: clamp(90px, 16.7vw, 120px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 14px;
  padding: clamp(20px, 4.9vw, 35px) clamp(20px, 4.2vw, 30px);
  color: #1c1e25;
  position: relative;
  border: 4px solid transparent;
  transition: 0.25s;
  gap: 15px;
}
@media (max-width: 479px) {
  .c1_mo .top5_section .right_list li {
    flex-direction: column;
    align-items: center;
    padding: clamp(35px, 4.9vw, 35px) clamp(20px, 4.2vw, 30px);
    text-align: center;
  }
}
.c1_mo .top5_section .right_list li .thumb {
  position: relative;
  width: clamp(100px, 19.4vw, 140px);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c1_mo .top5_section .right_list li .thumb .num {
  position: absolute;
  top: -30px;
  left: -10px;
  font-size: clamp(40px, 8.3vw, 60px);
  font-weight: 700;
  color: #a4bddf;
  opacity: 0.5;
}
.c1_mo .top5_section .right_list li .thumb img {
  position: relative;
  z-index: 1;
  width: clamp(100px, 19.4vw, 140px);
  height: auto;
  object-fit: contain;
}
.c1_mo .top5_section .right_list li .info {
  flex: 1;
  min-width: 0;
}
.c1_mo .top5_section .right_list li .info strong {
  display: block;
  font-size: clamp(20px, 4.2vw, 30px);
  font-weight: 700;
  margin-bottom: 8px;
  overflow-wrap: anywhere;
  word-break: keep-all;
  hyphens: auto;
}
.c1_mo .top5_section .right_list li .info .price {
  display: block;
  font-size: clamp(18px, 3.9vw, 28px);
  color: #1786fb;
  font-weight: 700;
}
.c1_mo .top5_section .right_list li .stock {
  width: clamp(120px, 22.2vw, 160px);
  height: clamp(40px, 6.9vw, 50px);
  line-height: clamp(40px, 6.9vw, 50px);
  font-size: clamp(18px, 3.9vw, 28px);
  color: #11b5de;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  text-align: center;
  flex-shrink: 0;
}
.c1_mo .top5_section .right_list li.active {
  border-color: #32dbf0;
  background: #f6feff;
}
.c1_mo .top5_section .right_list li.active::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-bottom: 18px solid #32dbf0;
}
.c1_mo .top5_section .right_list li.active .num {
  background: linear-gradient(180deg, #1880fb 0%, #32dbf0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.c1_mo .chance_section {
  background: #fff;
  padding: clamp(60px, 13.9vw, 100px) 0 clamp(70px, 16.7vw, 120px);
  letter-spacing: -0.05rem;
}
.c1_mo .chance_section .chance_kicker {
  opacity: 0;
  text-align: center;
  font-size: clamp(22px, 4.4vw, 32px);
  font-weight: 700;
  color: #1880fb;
  margin-bottom: 25px;
  line-height: 1.2;
}
.c1_mo .chance_section .chance_kicker.start {
  animation: fadeUpText 0.8s ease-out forwards;
}
.c1_mo .chance_section .chance_brand {
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.c1_mo .chance_section .chance_brand.start {
  animation: fadeUpText 0.8s ease-out forwards;
  animation-delay: 0.12s;
}
.c1_mo .chance_section .chance_brand .chance_logo {
  width: clamp(180px, 37.5vw, 270px);
  height: auto;
  object-fit: contain;
}
.c1_mo .chance_section .chance_brand .chance_title {
  font-size: clamp(40px, 8.3vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05rem;
}
.c1_mo .chance_section .chance_brand .chance_title .blue {
  color: #1880fb;
}
.c1_mo .chance_section .tab_menu {
  opacity: 0;
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}
.c1_mo .chance_section .tab_menu.start {
  animation: fadeUpText 0.8s ease-out forwards;
  animation-delay: 0.24s;
}
.c1_mo .chance_section .tab_menu li {
  flex: 1;
}
.c1_mo .chance_section .tab_menu li button {
  width: 100%;
  height: clamp(50px, 9.7vw, 70px);
  border-radius: 22px;
  font-size: 16px;
  font-weight: 600;
  background: #dfe9f6;
  color: #5f5f5f;
  letter-spacing: -0.05em;
}
.c1_mo .chance_section .tab_menu li.active button {
  background: linear-gradient(90deg, #1174ed 0%, #22c5d6 100%);
  color: #fff;
  box-shadow: 0 12px 22px rgba(24, 128, 251, 0.25);
}
.c1_mo .chance_section .car_grid {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(25px, 3.5vw, 25px) clamp(14px, 2.8vw, 20px);
}
@media (max-width: 479px) {
  .c1_mo .chance_section .car_grid {
    grid-template-columns: 1fr;
  }
}
.c1_mo .chance_section .car_grid.active {
  display: grid;
}
.c1_mo .chance_section .car_grid .car_item {
  position: relative;
  background: #fff;
  border: 2px solid #d9dfe8;
  border-radius: 18px;
  padding: clamp(16px, 3vw, 22px) clamp(14px, 2.5vw, 18px) clamp(18px, 3.3vw, 24px);
  min-height: clamp(200px, 55.6vw, 400px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: 0.2s;
}
.c1_mo .chance_section .car_grid .car_item .badge_chance {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: clamp(8px, 1.4vw, 10px) clamp(14px, 2.5vw, 18px);
  border-radius: 10px;
  background: #e4f0ff;
  color: #1a7cfb;
  font-size: clamp(13px, 3.6vw, 17px);
  font-weight: 600;
  line-height: 1;
}
.c1_mo .chance_section .car_grid .car_item .img_box {
  width: 100%;
  height: clamp(120px, 23.6vw, 170px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  overflow: hidden;
}
.c1_mo .chance_section .car_grid .car_item .img_box img {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
}
.c1_mo .chance_section .car_grid .car_item .info_box {
  margin-top: 20px;
}
.c1_mo .chance_section .car_grid .car_item .info_box .name {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
  line-height: 1.1;
  overflow-wrap: anywhere;
  word-break: keep-all;
  hyphens: auto;
}
.c1_mo .chance_section .car_grid .car_item .info_box .trim {
  font-size: 16px;
  font-weight: 400;
  color: #666;
  line-height: 1.2;
  overflow-wrap: anywhere;
  word-break: keep-all;
  hyphens: auto;
}
.c1_mo .chance_section .car_grid .car_item .btn_consult {
  margin-top: auto;
  width: 100%;
  height: clamp(45px, 7.6vw, 55px);
  line-height: clamp(45px, 7.6vw, 55px);
  border-radius: 14px;
  background: linear-gradient(90deg, #1174ed 0%, #22c5d6 100%);
  color: #fff;
  font-size: clamp(16px, 3.9vw, 20px);
  font-weight: 500;
  display: none;
}
.c1_mo .chance_section .car_grid .car_item.active {
  outline: 2px solid #1880fb;
  outline-offset: 0;
  box-shadow: 0 14px 26px rgba(24, 128, 251, 0.18);
}
.c1_mo .chance_section .car_grid .car_item.active .btn_consult {
  display: block;
}
.c1_mo .best_review_section {
  padding: clamp(60px, 13.9vw, 100px) 0 clamp(70px, 16.7vw, 120px);
  background: url("/assets/img/mo/best_review_bg.png") center bottom/cover no-repeat;
}
.c1_mo .best_review_section .inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(25px, 5.5vw, 40px);
}
.c1_mo .best_review_section .sec_tit {
  opacity: 0;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin-bottom: clamp(45px, 9.7vw, 70px);
  letter-spacing: -0.05em;
}
.c1_mo .best_review_section .sec_tit.start {
  animation: fadeUpText 0.8s ease-out forwards;
}
.c1_mo .best_review_section .slider_container {
  margin-bottom: clamp(60px, 13.9vw, 100px);
}
.c1_mo .best_review_section .review_card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}
.c1_mo .best_review_section .review_card:hover {
  transform: translateY(-5px);
}
.c1_mo .best_review_section .review_card .img_area {
  position: relative;
  width: 100%;
  height: auto;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.c1_mo .best_review_section .review_card .img_area .badge_best {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(90deg, #1174ed 0%, #22c5d6 100%);
  color: #fff;
  font-size: clamp(16px, 3vw, 22px);
  padding: clamp(14px, 2.8vw, 20px) clamp(22px, 4.2vw, 30px);
  border-radius: 10px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 104, 255, 0.3);
}
.c1_mo .best_review_section .review_card .img_area img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.1);
}
.c1_mo .best_review_section .review_card .text_area {
  padding: clamp(28px, 5.5vw, 40px);
}
.c1_mo .best_review_section .review_card .text_area h3 {
  font-size: clamp(16px, 4.2vw, 20px);
  font-weight: 800;
  color: #222;
  margin-bottom: 20px;
  margin-top: 0;
}
.c1_mo .best_review_section .review_card .text_area .desc {
  overflow-wrap: anywhere;
  word-break: keep-all;
  hyphens: auto;
  font-size: clamp(14px, 3.9vw, 16px);
  color: #555555;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 15px;
  letter-spacing: -0.05em;
}
.c1_mo .best_review_section .review_card .text_area .card_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e5e5e5;
  padding-top: 30px;
  flex-wrap: wrap;
  gap: 10px;
}
.c1_mo .best_review_section .review_card .text_area .card_bottom .stars {
  width: clamp(130px, 22.9vw, 165px);
}
.c1_mo .best_review_section .review_card .text_area .card_bottom .stars img {
  display: inline-block;
}
.c1_mo .best_review_section .review_card .text_area .card_bottom .name {
  font-size: clamp(14px, 3.9vw, 18px);
  color: #777777;
}
.c1_mo .faq_section {
  padding: clamp(70px, 15.3vw, 110px) 0 clamp(60px, 13.9vw, 100px) 0;
  background: #fff;
}
.c1_mo .faq_section .inner {
  display: block;
}
.c1_mo .faq_section .sec_tit {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #010101;
  margin-bottom: clamp(40px, 8.3vw, 60px);
  letter-spacing: -0.05em;
  opacity: 0;
}
.c1_mo .faq_section .sec_tit.start {
  animation: fadeUpText 0.8s ease-out forwards;
}
.c1_mo .faq_section .faq_list {
  display: flex;
  flex-direction: column;
}
.c1_mo .faq_section .faq_list li {
  width: 100%;
  overflow: hidden;
  opacity: 0;
}
.c1_mo .faq_section .faq_list li.start {
  animation: fadeUpText 0.5s ease-out forwards;
}
.c1_mo .faq_section .faq_list li .q_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: auto;
  padding: clamp(15px, 2.8vw, 20px);
  background: #f2f2f2;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 10px;
}
.c1_mo .faq_section .faq_list li .q_box .txt {
  overflow-wrap: anywhere;
  word-break: keep-all;
  hyphens: auto;
  font-size: clamp(17px, 4.2vw, 22px);
  font-weight: 500;
  color: #333333;
  transition: color 0.3s;
  line-height: 1.3;
  flex: 1;
}
.c1_mo .faq_section .faq_list li .q_box .arrow {
  width: 12px;
  height: 12px;
  border-right: 4px solid #333333;
  border-bottom: 4px solid #333333;
  transform: rotate(45deg);
  transition: transform 0.3s, border-color 0.3s;
  margin-top: -5px;
  flex-shrink: 0;
}
.c1_mo .faq_section .faq_list li .a_box {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.c1_mo .faq_section .faq_list li .a_box .ans_inner {
  overflow-wrap: anywhere;
  word-break: keep-all;
  hyphens: auto;
  padding: 20px 20px 10px 20px;
  font-size: clamp(14px, 3.9vw, 18px);
  color: #777777;
  line-height: 1.6;
  letter-spacing: -0.025em;
  white-space: pre-wrap;
}
.c1_mo .faq_section .faq_list li.active .q_box {
  background: linear-gradient(90deg, #1880fb 0%, #22c5d6 100%);
}
.c1_mo .faq_section .faq_list li.active .q_box .txt {
  color: #fff;
}
.c1_mo .faq_section .faq_list li.active .q_box .arrow {
  border-color: #fff;
  transform: rotate(-135deg) translate(-2px, -2px);
}
.c1_mo .faq_section .faq_list li.active .a_box {
  max-height: 500px;
}
.c1_mo .faq_section .faq_list li + li {
  margin-top: clamp(20px, 4.2vw, 30px);
}

/*# sourceMappingURL=styles2.css.map */
