.jd20 {
    font-family: "HyundaiSansHeadJP", sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
}

.jd16 {
    font-family: "HyundaiSansHeadJP", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
}

.jd14 {
    font-family: "HyundaiSansHeadJP", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
}

.jd12 {
    font-family: "HyundaiSansHeadJP", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
}

/* [M] drawer guide */
.drawer {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1100;
    width: 100%;
    height: var(--mo-vh);
    display: none;
    /* display: block; */
    font-size: 14px;
    color: #191919;
    line-height: 22px;
    pointer-events: auto;
    /* touch-action: none; */
}

.drawer .drawer-tit {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

.drawer-dimm {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--mo-vh);
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    overflow: hidden;

    pointer-events: auto;
    /* touch-action: none; */
}

.drawer-wrapper {
    position: fixed;
    background-color: #fff;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    min-width: 300px;
    max-width: 540px;
    display: flex;
    flex-direction: column;
}

.drawer .btn-wrapper {
    display: flex;
    justify-content: space-between;
    position: sticky;
    top: 0;
    right: 0;
    border-bottom: 1px solid #ededed;
}

.drawer .close-btn {
    background-repeat: no-repeat;
    background-position: center;
    width: 24px;
    height: 24px;
}

.drawer .content-wrapper {
    height: auto;
    max-width: 560px;
    overflow-x: hidden;
    overflow-y: auto;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* 전체 스크롤바 너비 */
.drawer .content-wrapper::-webkit-scrollbar {
    width: 15px;
    /* 스크롤바 너비 */
    /* margin-right: -20px; */
    /* scroll-margin-right: 100px; */
    /* display: none; */
}

/* 스크롤바 트랙 (배경) - 투명하게 설정 */
.drawer .content-wrapper::-webkit-scrollbar-track {
    background: transparent;
    /* margin-right: 0; */
    /* width: 30px; */
    /* 오른쪽 여백 추가 */
}

/* 스크롤바 핸들 (움직이는 부분) */
.drawer .content-wrapper::-webkit-scrollbar-thumb {
    background: rgba(102, 102, 102, 0.3);
    background-clip: padding-box;
    border: 5px solid transparent;
    border-radius: 10px;
}

/* 기본 스타일 (모든 해상도 공통) */
.test-bg {
    background-color: white;
}

/* 데스크탑 (1024px 이상) */
@media screen and (min-width: 1024px) {
    .test-bg {
        background-color: lightblue;
    }
}

/* 모바일 가로 (768px 이상 1024px 미만) */
@media screen and (min-width: 0px) and (max-width: 1023px) and (orientation: landscape) {
    .test-bg {
        background-color: lightgreen;
    }
}

/* 모바일 세로 (767px 이하) */
@media screen and (max-width: 767px) and (orientation: portrait) {
    .test-bg {
        background-color: lightcoral;
    }
}


.drawer {
    cursor: default;
}

.drawer .btn-wrapper {
    display: flex;
    align-items: center;
    padding: 24px 28px;
}

.drawer .btn-wrapper .close-btn {
    border: none;
    background-color: transparent;
    background-size: 24px;
    border-radius: 0px;
    background-image: url(../image/icon/icon_close_black.svg);
}

.drawer .cont-wrapper {
    padding: 40px 40px 48px;
    gap: 16px;
    display: flex;
    flex-direction: column;
}

.drawer .cont-wrapper.cont-type {
    gap: 24px;
}

.drawer .cont-wrapper.cont-type .cont-area {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.drawer .cont-wrapper.cont-type .cont-stitle {
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
}

.drawer .cont-wrapper.cont-type .cont-cap {
    margin-top: 16px;
}

.drawer .cont-wrapper.cont-type02 {
    gap: 24px;
}

.drawer .cont-wrapper.cont-type02 .cont-cap {
    margin-top: 16px;
}

.drawer .cont-wrapper .cont-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.drawer .cont-tit {
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
}

.drawer .cont-desc {
    /* white-space: pre-line; */
}

.drawer .cont-desc + .cont-desc {
    margin-top: 24px;
}

.drawer .cont-wrapper .cont-cap {
    margin-top: 24px;
    padding: 0;
}

.drawer .cont-wrapper .cont-cap:only-child {
    margin-top: 0;
}

.drawer .cont-tab.tab-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 40px;
    gap: 16px;
    white-space: nowrap;
    scrollbar-width: thin;
    flex-shrink: 0;
}

.drawer .cont-tab .cont-tab-inner {
  display: flex;
  width: 100%;
  border-bottom: solid 1px #e9e9e9;
}

.drawer .cont-tab.tab-scroll .btn-tab {
    font-weight: 400;
}

.drawer .car-btn-wrapper .cont-btn {
    height: 48px;
    font-size: 16px;
    font-weight: 600;
    line-height: 48px;
}

.drawer.drawer-car .car-spec-wrapper {
    display: flex;
    justify-content: center;
    height: 304px;
    width: 100%;
    /* background-color: #333; */
}

.drawer.drawer-car .car-spec-wrapper img {
    width: auto;
    height: 100%;
    /* align-self: center; */
    aspect-ratio: 16 / 9;
}

.drawer.drawer-car .car-down-wrapper {
    height: 48px;
    /* background-color: #0793ea; */
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 8px 24px;
}

.drawer-car .car-down-wrapper .btn-s {
    height: 100% !important;
    display: flex;
    align-items: center;
    gap: 4px;
}

.drawer-car .car-down-wrapper .icon {
    width: 16px;
    height: 16px;
    background-image: url(../image/icon/icon_download_blue.svg);
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 1/1;
    background-size: cover;
}

.drawer-car .gallery-btn .icon {
    background-image: url(../image/icon/icon_gallery_blue.svg);
}

.drawer-car .car-down-wrapper span {
    display: block;
    color: #1C6BBA;
    /* line-height: 1.67vh; */
    /* font-size: 2.59vw; */
}

.drawer.drawer-car .car-spec-desc {
    height: auto;
    display: flex;
    /* 균등 배치 */
    align-items: center;
    /* 중앙 정렬 */
    list-style: none;
    padding: 32px 40px 24px;
    gap: 48px;
    /* padding: 3.70vw; */
}

.drawer-car .car-spec-desc li {
    /* flex: 1; 각 요소가 동일한 너비 차지 */
    text-align: left;
}

.drawer-car .car-spec-desc .spec-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.drawer-car .car-spec-desc .label {
    font-family: "HyundaiSansHeadJP", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    display: block;
}

.drawer-car .car-spec-desc .value {
    font-family: "HyundaiSansHeadJP", sans-serif;
    display: flex;
    align-items: flex-end;
    color: #0793ea;
    gap: 4px;
}

.drawer-car .car-spec-desc .main-value {
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;

}

.drawer-car .car-spec-desc .sub-unit {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
}

.drawer-car .car-colors-wrapper {
    padding: 24px 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    /* height: 316px; */
}

.drawer-car .car-colors-wrapper .car-colors-ext,
.drawer-car .car-colors-wrapper .car-colors-int {
    display: flex;
    flex-direction: column;
    gap: 6;
}

.drawer-car .car-colors-wrapper .cont-tit {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid #ededed;
    padding-bottom: 12px;
    font-size: 16px;
    line-height: 26px;
}
.drawer-car .car-colors-wrapper .cont-tit .text-desc {
    font-size: 12px;
    font-weight: 400;
    color: #666;
    line-height: 20px;
}

/* .drawer-car .car-colors-wrapper .cont-tit .jh16 {
    font-weight: 600;
}

.drawer-car .car-colors-wrapper .cont-tit .jb14 {
    font-size: 12px;
} */

.drawer-car .car-colors-wrapper .cont-list {
    display: flex;
    flex-direction: row;
    gap: 6px;
    padding-top: 24px;
}

.drawer-car .car-colors-wrapper .car-colors-ext .cont-list {
    flex-wrap: wrap;
}

.drawer-car .car-colors-wrapper .car-colors-ext .cont-list img {
    width: 52px;
    height: 52px;
    border-radius: 4px;
    object-fit: cover;
}

.drawer-car .car-colors-wrapper .car-colors-int .cont-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* justify-content: space-between; */
}

.drawer-car .car-colors-wrapper .car-colors-int .cont-list img {
    /* width: 152px; */
    height: 50px;
    border-radius: 4px;
    object-fit: cover;
}

.drawer.drawer-car .car-bottom-wrapper {
    padding: 40px 40px 48px;
    /* background-color: red; */
}

.drawer.drawer-car .car-bottom {
    padding: 0px;
    font-size: 12px;
    color: #999;
    line-height: 20px;
}

.drawer .car-btn-wrapper {
    width: 100%;
    max-height: fit-content;
    flex-grow: 1;
    flex-direction: column;
    padding: 20px 40px 40px;
    justify-content: flex-end;
    border-top: 1px solid #e9e9e9;
}

.drawer .content-wrapper .car-btn-wrapper {
    margin-top: auto;
}

.drawer .swiper-wrapper .acc-tbox {
    gap: 16px;
}

.drawer .swiper-wrapper .acc-tbox .acc-text {
    margin-top: 24px;
    font-size: 12px;
    color: #999;
    line-height: 20px;
}

.drawer .swiper-wrapper .desc-tit {
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    /* white-space: pre-line; */
}

.drawer .swiper-wrapper .desc-detail {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}

.drawer .swiper-pagination {
    padding-top: 20px;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    position: relative;
}

.drawer .swiper-pagination > .swiper-pagination-bullet {
    margin: 0;
    background: #ccc;
    opacity: 1;
}

.drawer .swiper-pagination > .swiper-pagination-bullet-active {
    background: #0793ea;
}

.drawer .drawer-wrapper .swiper-button-prev,
.drawer .drawer-wrapper .swiper-button-next {
    /* top: var(--aboutEv-swiper-btn-next-previous-top); */
    display: flex;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 0 4px 4px 0;
    align-items: center;
    justify-content: center;
}

.drawer .drawer-wrapper .swiper-button-next {
    transform: rotate(180deg);
}

.drawer .drawer-wrapper .swiper-button-prev::after,
.drawer .drawer-wrapper .swiper-button-next::after {
    width: 16px;
    height: 16px;
    background: url("../image/icon/icon_swiper_arrow02.svg") no-repeat center / 100%;
    content: '';
}

.drawer.drawer-car-extspec .extspec-img-swiper .swiper-slide {
    height: 304px;
}

.drawer.drawer-car-extspec .extspec-img-swiper .swiper-slide img {
    height: 100%;
    object-fit: cover;
}

.drawer.drawer-car-extspec .extspec-desc-wrapper {
    display: flex;
    flex-direction: column;
    padding: 40px 40px 48px;
    gap: 16px;
}

.drawer.drawer-car-intspec .intspec-desc-wrapper {
    display: flex;
    flex-direction: column;
    padding: 40px 40px 48px;
    gap: 16px;
}

.drawer-car-extspec .extspec-desc-wrapper p {
    word-break: normal;
    white-space: pre-line;
}

.drawer.drawer-car-intspec .intspec-img-swiper .swiper-slide {
    height: 304px;
}

.drawer.drawer-car-intspec .intspec-img-swiper .swiper-slide img {
    height: 100%;
    object-fit: cover;
}

.drawer-car-intspec .intspec-desc-wrapper p {
    word-break: normal;
    white-space: pre-line;
}

.drawer .content-wrapper .sub-tit {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 24px 40px;
    text-align: center;
}

/* .drawer.drawer-acc .acc-desc-wrapper {
    display: flex;
    flex-direction: column;
    padding: 40px 40px 40px;
    gap: 16px;
} */

.drawer.drawer-acc .acc-bottom-wrapper {
    padding: 0px 40px;
    font-size: 12px;
    color: #999;
    line-height: 20px;
}

.drawer.drawer-overview .place-wrapper {
    display: flex;
    flex-direction: column;
    height: 756px;
    /* background-color: #0793ea; */
    padding: 0px 40px;
}

.drawer.drawer-overview .place-wrapper .cont-box {
    display: flex;
    flex-direction: row;
    padding: 48px 0px;
    gap: 32px;
    /* height: 168px; */
    /* background-color: #ff0000; */
    border-top: 1px solid #e9e9e9;
}

.drawer.drawer-overview .place-wrapper .cont-box picture {
    line-height: 0;
}

.drawer.drawer-overview .place-wrapper .cont-box img {
    width: 200px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.drawer.drawer-overview .place-wrapper .cont-box:first-child {
    border-top: none;
}

.drawer.drawer-overview .place-wrapper .cont-box .desc-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 228px;
    padding: 0;
}

.drawer.drawer-overview .place-wrapper .cont-box .desc-wrapper .floor-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 12px;
    border-radius: 8px;
    border: 1px solid rgba(28, 107, 186, 0.40);
    color: #1C6BBA;
    white-space: nowrap;
    min-width: auto;
    max-width: fit-content;
}

.drawer.drawer-overview .place-wrapper .cont-box .desc-wrapper .list-tit {
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
}

.drawer.drawer-overview .place-wrapper .cont-box .desc-wrapper .list-cont {
    font-size: 13px;
    line-height: 20px;
}

.drawer.drawer-guide .guide-full {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 40px 40px 48px;
}

.drawer.drawer-guide .guide-wrapper {
    display: flex;
    color: #191919;
    flex-direction: column;
    gap: 20px;
}

.drawer.drawer-guide .guide-wrapper .guide-block {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 16px;
}

.drawer.drawer-guide .guide-wrapper .guide-block .guide-small {
    display: inline-flex;
    flex-direction: column;
    gap: 8px;
    width: auto;
    /* height: 192px; */
    border: 1px solid #E9E9E9;
    border-radius: 8px;
    padding: 19px 0px;
    align-items: center;
    flex: 1;
}

.drawer.drawer-guide .guide-wrapper .guide-block .guide-small .small-desc {
    color: #666;
}

.drawer.drawer-guide .guide-wrapper .guide-block .guide-small img {
    width: 100px;
    height: 100px;
}

.drawer.drawer-guide .guide-wrapper .guide-icon {
    width: 100px;
    height: 100px;
    background: url('../image/guide/click.svg') no-repeat center / 100%;
}

.drawer.drawer-guide .guide-wrapper .guide-icon.icon-type01 {
    background: url('../image/guide/arrow_key_up_down.svg') no-repeat center / 100%;
}

.drawer.drawer-guide .guide-wrapper .guide-icon.icon-type02 {
    background: url('../image/guide/drag.svg') no-repeat center / 100%;
}

.drawer.drawer-guide .guide-wrapper .guide-icon.icon-type03 {
    background: url('../image/guide/arrow_key_left_right.svg') no-repeat center / 100%;
}

.drawer.drawer-guide .guide-wrapper .guide-icon.icon-type04 {
    background: url('../image/guide/scroll.svg') no-repeat center / 100%;
}

.drawer.drawer-guide .bottom-desc {
    padding: 40px 40px 48px;
}

.drawer .desc-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 40px 40px 48px;
}

.drawer .swiper-wrapper img {
    /* width: none; */
    height: auto;
    display: block;
}

/* .drawer .btn-lg.cont-btn {
    height: 56px !important;
} */

.drawer video {
    width: 100%;
    height: auto;
}

.drawer .videocont {
    width: 100%;
    height: auto;
}

.drawer .videocont iframe {
    width: 100%;
    height: fit-content;
    aspect-ratio: 16 / 9;
}

.drawer .map-area {
    padding: 40px 40px 60px;
}

.drawer .map-area .btn-map-confirm {
    display: flex;
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    color: #191919;
    line-height: 32px;
    text-align: left;
    align-items: center;
    justify-content: space-between;
}

.drawer .map-area .btn-map-confirm:after {
    width: 24px;
    height: 24px;
    background: url('../image/icon/icon_arrow_black.svg') no-repeat center / 100%;
    flex-shrink: 0;
    content: '';
}

.drawer .map-area iframe {
    display: block;
    width: 100%;
    margin-top: 20px;
    aspect-ratio: 16 / 9;
}

.drawer .map-area .map-desc {
    display: block;
    margin-top: 16px;
    font-size: 12px;
    color: #666;
    line-height: 20px;
}

.drawer.drawer-video-swiper iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.drawer.drawer-event .desc-wrapper {
    gap: 0;
}

.drawer.drawer-event .event-tit {
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 16px;
}

.drawer.drawer-event .event-desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 40px;
}

.drawer.drawer-event .event-desc .point {
    color: #1c6bba;
}

.drawer.drawer-event .event-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.drawer.drawer-event .event-area {
    display: flex;
    font-size: 16px;
    line-height: 26px;
    align-items: center;
    gap: 8px;
}

.drawer.drawer-event .event-label {
    padding: 0 12px;
    border: 1px solid #1c6bba;
    border-radius: 4px;
    font-size: 14px;
    color: #1c6bba;
    line-height: 30px;
    flex-shrink: 0;
}

.drawer.drawer-event .event-cap {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    color: #999999;
}

.drawer.drawer-exit .btn-area {
    padding: 40px 70px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-bottom: 1px solid #ededed;
    text-align: center;
}

.drawer.drawer-exit .btn-area .exit-text {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    line-height: 32px;
}

.drawer.drawer-exit .tool-btn-wrapper {
    display: flex;
    padding-top: 0;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
}

.drawer.drawer-exit .tool-btn-wrapper button {
    width: calc((100% - 8px) / 2);
    height: 48px;
    font-size: 16px;
    line-height: 24px;
}

.drawer.drawer-exit .tool-btn-wrapper > .no {
  color: #1c6bba;
  border: 1px solid #1c6bba66;
  background: transparent;
}

.drawer.drawer-exit .tool-btn-wrapper > .no:hover {
  color: #1c6bba;
  border: 1px solid #1c6bba;
  background-color: #0793ea1a;
}

.drawer.drawer-exit .tool-btn-wrapper > .yes {
  color: #fff;
  background-color: #002c5f;
  border: none;
}

.drawer.drawer-exit .tool-btn-wrapper > .yes:hover {
  color: #fff;
  background-color: #0793ea;
  border: none;
}

.drawer.drawer-exit .login-member {
    display: flex;
    font-size: 16px;
    color: #333;
    line-height: 26px;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.drawer.drawer-exit .login-member .btn-member {
    position: relative;
    font-size: 14px;
    color: #1c6bba;
    line-height: 22px;
}

.drawer.drawer-exit .login-member .btn-member:before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #1c6bba;
    content: '';
}

.drawer.drawer-after .cont-main {
    display: flex;
    padding: 40px 40px 48px;
    flex-direction: column;
    /* padding: 40px; */
    gap: 40px;
}

.drawer.drawer-after .cont-main .cont-wrapper {
    padding: 0;
}

.drawer.drawer-after .cont-main .cont-cap {
    /* padding: 40px; */
}

.drawer.drawer-after .cont-wrapper {
    /* padding: 0px; */
    /* padding: 0px 0px 40px; */
}

.drawer.drawer-after .cont-tit {
    margin-bottom: 0px;
}

.drawer.drawer-after .after01,
.drawer.drawer-after .after03,
.drawer.drawer-after .after04,
.drawer.drawer-after .after05 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;      /* 부모가 꽉 차게 */
    box-sizing: border-box;
}

.drawer.drawer-after .after01 div,
.drawer.drawer-after .after03 div,
.drawer.drawer-after .after04 div,
.drawer.drawer-after .after05 div {
    display: flex;
    flex-direction: column;
    gap: 12px;    
}

.drawer.drawer-after .after01 div > .text-desc {

}

.drawer.drawer-after .after03 div .inbox {
    gap: 8px;
}

.drawer.drawer-after .cont-cap {
    padding: 0px;
}

.drawer.drawer-after .cont-subtit {
    padding: 24px 40px;
}

.drawer.drawer-after .cont-desc {
    font-size: 16px;
    line-height: 26px;
}

.drawer.drawer-testdrive .img-desc {
    bottom: 32px;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
}

.drawer.drawer-car-intspec .n-activeS {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #f5f5f5;    
}

.drawer.drawer-car-intspec .n-activeS-wrapper {
    width: 100%;
    align-self: center;
    padding: 24px 68px;
    gap: 8px;
}

.drawer.drawer-car-intspec .n-activeS .n-activeS-ele {
    display: flex;
    align-items: center;
    padding: 7px 24px 7px 8px;
    border-radius: 6px;
    border: 1px solid #e9e9e9;
    width: 100%;
    background-color: #ffffff;
    gap: 16px;
}

.drawer.drawer-car-intspec .n-activeS .n-activeS-ele .btn-activeS {
    width: 64px;
    height: 64px;
    margin-right: unset;
}

.drawer.drawer-car-intspec .n-activeS .n-activeS-ele .btn-activeS img {
    width: 64px;
}

.drawer.drawer-car-intspec .n-activeS .ele-desc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border: unset;
    background-color: unset;
    font-size: 16px;
    line-height: 26px;
    padding: unset;
}

.drawer.drawer-car-intspec .n-activeS .ele-desc .btn-pnp {
    width: 32px;
    height: 32px;
    background-image: url(../image/icon/icon_play2.svg);
    background-position: center;
}

.drawer.drawer-car-intspec .n-activeS .ele-desc .btn-pnp.pause {
    width: 32px;
    height: 32px;
    background-image: url(../image/icon/icon_pause2.svg);
    background-position: center;
}

.drawer.drawer-counsel .content-wrapper {
    padding: 32px 25px 32px 40px;
    gap: 56px;
}

.drawer.drawer-counsel .title {
    font-family: 'hyundaiSansHeadJP', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 20px;
}

.drawer.drawer-counsel .counsel-btns-wrapper {
    display: flex;
    flex-direction: column;
}

.drawer.drawer-counsel .counsel-btns-area {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.drawer.drawer-counsel .counsel-btns-area .counsel-btn-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.drawer.drawer-counsel .counsel-btns-area .btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(28, 107, 186, 0.40);
    border-radius: 4px;
    padding-block: 11px;
    gap: 24px;
}

.drawer.drawer-counsel .counsel-btns-area .btn:hover {
    background-color: rgba(7, 147, 234, 0.1);
}

.drawer.drawer-counsel .btn .icon {
    width: 56px;
    height: 56px;
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.drawer.drawer-counsel .btn .title {
    font-family: 'hyundaiSansHeadJP', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    color: #1C6BBA;
    min-width: 224px;
    margin-bottom: unset;
    text-align: center;
}

.drawer.drawer-counsel .btn.pc-counsel-btn {
    padding-block: 10px;
    border: 2px solid #1c6bba;
    background: rgba(28, 107, 186, 0.1);
}

.drawer.drawer-counsel .btn.pc-counsel-btn .new-badge {
    position: absolute;
    top: -2px;
    left: -2px;
    padding-inline: 6px;
    background-color: #1c6baa;
    border-radius: 2px;
    font-family: "HyundaiSansTextJP", sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    line-height: 26px;
}

.drawer.drawer-counsel .btn.pc-counsel-btn .icon {
    width: 56px;
    height: 56px;
    background-image: url(../image/icon/icon_pc_illust.svg);
}

.drawer.drawer-counsel .btn.mo-counsel-btn .icon {
    background: url(../image/icon/icon_mo_black.svg) no-repeat center / 32px;
}

.drawer.drawer-counsel .btn.form-counsel-btn .icon {
    background: url(../image/icon/icon_form_black.svg) no-repeat center / 32px;
}

.drawer.drawer-counsel .desc-wrapper {
    padding: 0 8px;
}

.drawer.drawer-counsel .desc-wrapper .desc {
    display: flex;
    font-size: 12px;
    color: #666;
    line-height: 20px;
    gap: 8px;
}

.drawer.drawer-counsel .desc-wrapper .desc:before {
    width: 4px;
    height: 4px;
    margin-top: 8px;
    background: #666;
    border-radius: 100%;
    flex-shrink: 0;
    content: "";
}

.drawer.drawer-counsel .counsel-map-wrapper {
    display: flex;
    flex-direction: column;
    gap : 20px;
}

.drawer.drawer-counsel .counsel-map-wrapper .map-area  {
    padding: 0;
}

.drawer.drawer-counsel .counsel-map-wrapper .map-title-btn {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.drawer.drawer-counsel .map-title-btn .title {
    font-family: 'hyundaiSansHeadJP', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
    color: #191919;
}

.drawer.drawer-counsel .map-title-btn .icon {
    width: 24px;
    height: 24px;
    background-image: url(../image/icon/icon_arrow_right_black.svg);
    background-position: center;
}

.drawer.drawer-counsel .g-map {
    display: flex;
    flex-direction: column;
}

.drawer.drawer-counsel .g-map iframe {
    width: 100%;
    min-height: 291px;
}

.drawer.drawer-counsel .g-map .map-desc {
    
}

/* .drawer.drawer-finance .btn-tab {
    font-weight: 600;
} */

.drawer.drawer-finance .cont-subtit-area {
    padding: 24px 40px;
    display: flex;
    justify-content: center;
    text-align: center;
}

.drawer.drawer-finance .cont-sub-tit {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}

.drawer.drawer-after .image-wrapper {
    padding: 10px 50px;
    background-color: #e9e9e9;
}

.drawer.drawer-after .image-wrapper img {
    object-fit: contain;
    width: auto;
    height: 100%;
}

.drawer.drawer-after .bluelink-icon {
    object-fit: contain;
    max-height: 50px;
}

.drawer .pc-only {
    display: flex !important;
}

.drawer .mo-only {
    display: none !important;
}

.drawer .btn-tab.active {
    border-bottom: none;
}
.drawer .btn-tab.active:before {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: #1c6bba;
    content: '';
}

.drawer.drawer-lineup .car-area {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 16px 0px 40px;
}

.drawer.drawer-lineup .car-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px 25px 16px 40px;
}

.drawer.drawer-lineup .car-info-wrapper {
    display: flex;
    gap: 16px;
    align-items: center;
}

.drawer.drawer-lineup .car-info-wrapper .car-img {
    width: 226px;
    height: 128px;
}

.drawer.drawer-lineup .car-info-wrapper .car-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.drawer.drawer-lineup .car-info-wrapper .car-info .flag-wrapper {
    display: flex;
    flex-direction: row;
    gap: 4px;
    height: 20px;
}

.drawer.drawer-lineup .car-info-wrapper .car-info .flag-wrapper .ev-flag {
    font-family: 'hyundaiSansHeadJP', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    color: #fff;

    background-color: #666;
    padding: 0px 6px;

    display: flex;
    align-items: center;
}

.drawer.drawer-lineup .car-info-wrapper .car-info .flag-wrapper .new-flag {
    font-family: 'hyundaiSansHeadJP', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    color: #0793ea;
    border: 1px solid #0793ea;

    padding: 0px 6px;

    display: flex;
    align-items: center;
}

.drawer.drawer-lineup .car-info-wrapper .car-info .car-name {
    display: inline-block;
    font-family: 'hyundaiSansHeadJP', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
}

.drawer.drawer-lineup .car-info-wrapper .car-info .catalog-btn {
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: center;
}

.drawer.drawer-lineup .car-info-wrapper .car-info .catalog-btn .icon {
    width: 16px;
    height: 16px;
    background-image: url(../image/icon/icon_download_blue.svg);
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 1/1;
    background-size: cover;
}

.drawer.drawer-lineup .car-info-wrapper .car-info .catalog-btn .catalog-btn-text {
    font-family: 'hyundaiSansHeadJP', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #1C6BBA;
}

.drawer.drawer-lineup .item-btn-wrapper {
    padding: unset;
    display: flex;
    flex-direction: row;
    gap: 8px;
    justify-content: center;
}

.drawer.drawer-lineup .item-btn-wrapper .btn-lg {
    width: 100%;
    height: 48px;
    padding: 0;
    background-color: #002C5F;
    border-radius: 4px;
    font-size: 16px;
    color: #fff;
}

/* .drawer.drawer-lineup .item-btn-wrapper .btn-lg .btn-text {
    font-family: 'hyundaiSansHeadJP', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    color: #fff
} */

.drawer.drawer-lineup .item-btn-wrapper .btn-lg.line {
    border: 1px solid rgba(28, 107, 186, 0.46);
    background-color: #fff;
    color: #1C6BBA;
}

.drawer.drawer-lineup .item-btn-wrapper button:hover {
    background: #0793ea;
}

.drawer.drawer-lineup .item-btn-wrapper .line:hover {
    border-color:#1c6bba;
    background: rgba(7, 147, 234, 0.1);
}

/* .drawer.drawer-lineup .item-btn-wrapper .btn-lg.line .btn-text {
    color: #1C6BBA;
} */

.drawer.drawer-aboutev .about-img-swiper picture {
    position: relative;
}

.drawer.drawer-aboutev .about-img-swiper .swiper-button-next,
.drawer.drawer-aboutev .about-img-swiper .swiper-button-prev {
    top: var(--aboutEv-swiper-btn-next-previous-top);
}

.drawer.drawer-aboutev .about-img-swiper.mo-only .swiper-button-next,
.drawer.drawer-aboutev .about-img-swiper.mo-only .swiper-button-prev {
    /* top: var(--aboutEv-swiper-btn-next-previous-top-mo); */
}

/* .drawer .drawer-wrapper .nspec-img-swiper .swiper-button-prev::after,
.drawer .drawer-wrapper .nspec-img-swiper .swiper-button-next::after,
.drawer .drawer-wrapper .nspec-desc-swiper .swiper-button-prev::after,
.drawer .drawer-wrapper .nspec-desc-swiper .swiper-button-next::after {
    font-size: 0;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.drawer .drawer-wrapper .nspec-img-swiper .swiper-button-prev::after,
.drawer .drawer-wrapper .nspec-img-swiper .swiper-button-next::after,
.drawer .drawer-wrapper .nspec-desc-swiper .swiper-button-prev::after,
.drawer .drawer-wrapper .nspec-desc-swiper .swiper-button-next::after {
    width: 40px;
    height: 40px;
}

.drawer .drawer-wrapper .nspec-img-swiper .swiper-button-prev::after,
.drawer .drawer-wrapper .nspec-desc-swiper .swiper-button-prev::after {
    background-image: url("../image/icon/icon_prev_white_2.svg");
}

.drawer .drawer-wrapper .nspec-img-swiper .swiper-button-next::after,
.drawer .drawer-wrapper .nspec-desc-swiper .swiper-button-next::after {
    background-image: url("../image/icon/icon_next_white_2.svg");
} */

.drawer[data-pop-idx="92"] .car-btn-wrapper .jt18 {
    font-size: 16px;
    line-height: 24px;
}

/************************************************** 모바일 **************************************************/
@media screen and (max-width: 1280px), (max-height: 860px) {

    .drawer {
        font-size: 13px;
        line-height: 20px;
    }

    .drawer .drawer-tit {
        font-size: 16px;
        font-weight: 400;
        line-height: 28px;
    }

    .drawer .drawer-wrapper {
        width: 45%;
    }

    .drawer .btn-wrapper {
        padding: 12px 24px;
    }

    .drawer .cont-wrapper {
        padding: 16px 24px;
        gap: 12px;
    }

    .drawer .cont-wrapper.cont-type {
        gap: 20px;
    }

    .drawer .cont-wrapper.cont-type .cont-area {
        
    }

    .drawer .cont-wrapper.cont-type .cont-stitle {
        font-size: 14px;
        line-height: 22px;
    }

    .drawer .cont-wrapper.cont-type .cont-cap {
        margin-top: 12px;
    }

    .drawer .cont-wrapper.cont-type02 {
        gap: 8px;
    }

    .drawer .cont-wrapper.cont-type02 .cont-cap {
        margin-top: 24px;
    }

    .drawer .cont-wrapper .cont-box {
        gap: 12px;
    }

    .drawer .cont-tit {
        font-size: 16px;
        line-height: 28px;
    }
    
    .drawer .cont-desc {
    }

    .drawer .cont-desc + .cont-desc {
        margin-top: 20px;
    }

    .drawer .cont-wrapper .cont-cap {
        margin-top: 20px;
    }

    .drawer .cont-tab.tab-scroll .cont-tab-inner,
    .drawer .cont-tab.tab-scroll-mo .cont-tab-inner {
        width: max-content;
        padding: 0 24px;
        scrollbar-width: none;
        gap: 12px;
    }

    .drawer .cont-tab.tab-scroll-mo {
        overflow-x: auto;
        overflow-y: hidden;
        /* white-space: nowrap; */
        flex-shrink: 0;
    }

    .drawer .cont-tab.tab-scroll .btn-tab,
    .drawer .cont-tab.tab-scroll-mo .btn-tab {
        width: max-content;
        font-size: 13px;
        font-weight: 400;
    }

    .drawer .car-btn-wrapper .cont-btn {
        font-size: 13px;
        /* line-height: 20px; */
    }

    .drawer.drawer-car .car-spec-wrapper {
        height: 160px;
        width: 100%;
        padding: 0;
    }

    .drawer.drawer-car .car-spec-wrapper img {
        height: 100%;
        width: 100%;
        padding: 0;
        aspect-ratio: inherit;
    }

    .drawer.drawer-car .car-down-wrapper .icon {
        width: 12px;
        height: 12px;
    }

    .drawer.drawer-car .car-down-wrapper .jb14 {
        font-size: 12px;
    }

    .drawer.drawer-car .car-spec-desc {
        width: 100%;
        height: auto;
        padding: 16px 24px;
        gap: 12px;
        display: flex;
        flex-direction: column;
    }

    .drawer.drawer-car .car-spec-desc li {
        width: 100%;
    }

    .drawer.drawer-car .car-spec-desc .spec-box {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .drawer-car .car-spec-desc .label {
        font-size: 13px;
    }

    .drawer-car .car-spec-desc .main-value {
        font-size: 16px;
    }

    .drawer-car .car-spec-desc .sub-unit {
        font-size: 14px;
    }

    .drawer-car .car-colors-wrapper {
        padding: 16px 24px;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .drawer-car .car-colors-wrapper .cont-tit {
        font-size: 14px;
        line-height: 22px;
    }
    .drawer-car .car-colors-wrapper .cont-tit .text-desc {
        font-size: 11px;
        line-height: 18px;
    }

    /* .drawer-car .car-colors-wrapper .cont-tit .jh16 {
        font-size: 14px;
    }

    .drawer-car .car-colors-wrapper .cont-tit .jb14 {
        font-size: 11px;
    } */

    .drawer-car .car-colors-wrapper .cont-list {
        padding-top: 12px;
    }

    .drawer-car .car-colors-wrapper .car-colors-ext .cont-list img {
        width: 48px;
        height: 48px;
        border-radius: 4px;
        object-fit: cover;
    }

    .drawer-car .car-colors-wrapper .car-colors-int .cont-list {
        grid-template-columns: inherit;
        /* flex-direction: column; */
    }

    .drawer-car .car-colors-wrapper .car-colors-int .cont-list img {
        width: 100%;
        height: 48px;
        border-radius: 4px;
        object-fit: cover;
        align-self: stretch;
    }

    .drawer.drawer-car .car-bottom-wrapper {
        padding: 16px 24px;
        /* background-color: red; */
    }

    .drawer.drawer-car .car-bottom {
        font-size: 11px;
        line-height: 18px;
    }

    .drawer .car-btn-wrapper {
        padding: 16px 24px 32px;
    }

    .drawer .desc-wrapper {
        padding: 16px 24px;
        gap: 12px;
    }

    .drawer .swiper-wrapper .acc-tbox {
        gap: 12px;
    }

    .drawer .swiper-wrapper .acc-tbox .acc-text {
        margin-top: 12px;
        font-size: 11px;
        line-height: 18px;
    }

    .drawer .swiper-wrapper .desc-tit {
        font-size: 16px;
        line-height: 28px;
    }

    .drawer .swiper-wrapper .desc-detail {
        font-size: 13px;
        line-height: 20px;
    }
    
    .drawer.drawer-acc .swiper-wrapper .desc-detail {
        font-size: 13px;
    }

    /* .drawer.drawer-acc .ncollection {
        font-size: 13px;
    } */

    .drawer.drawer-acc .btn-lg {
        font-size: 13px;
    }

    .drawer.drawer-acc .acc-bottom-wrapper {
        margin-top: 16px;
        padding-inline: 24px;    
        font-size: 11px;
        line-height: 18px;
    }

    .drawer .swiper-pagination {
        padding-top: 16px;
    }

    .drawer.drawer-car-extspec .extspec-img-swiper .swiper-slide {
        height: 169px;
    }

    .drawer.drawer-car-extspec .extspec-img-swiper .swiper-slide img {
        
    }

    .drawer.drawer-car-intspec .intspec-img-swiper .swiper-slide {
        height: auto;
    }

    .drawer.drawer-car-intspec .intspec-img-swiper .swiper-slide img {
        
    }

    .drawer .btn-lg.cont-btn {
        height: 48px !important;
    }

    .drawer .map-area {
        padding: 24px 24px 32px;
    }

    .drawer .map-area .btn-map-confirm {
        font-size: 16px;
        line-height: 28px;
    }

    .drawer .map-area .btn-map-confirm:after {
        
    }
    
    .drawer .map-area iframe {
        width: 100%;
        aspect-ratio: 1 / 1;
    }

    .drawer .map-area .map-desc {
        font-size: 11px;
        line-height: 18px;
    }

    .drawer.drawer-overview .place-wrapper {
        padding: 0px 24px;
    }

    .drawer.drawer-overview .place-wrapper .cont-box img {
        width: 100%;
        aspect-ratio: 4 / 3;
        object-fit: cover;
    }

    .drawer.drawer-overview .place-wrapper .cont-box {
        gap: 20px;
        padding: 24px 0;
        flex-direction: column;
    }

    .drawer.drawer-overview .place-wrapper .cont-box .desc-wrapper {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;
        padding: 0;
    }

    .drawer.drawer-guide .guide-full {
        padding: 24px 24px 32px;
    }

    .drawer.drawer-guide .guide-wrapper {
        gap: 20px;
    }

    .drawer.drawer-guide .guide-wrapper .guide-block{
        flex-direction: column;
        gap: 12px;
    }

    .drawer.drawer-guide .guide-wrapper .guide-block .guide-small {
        padding-block: 23px;
    }

    .drawer.drawer-guide .guide-wrapper .guide-icon {
        width: 80px;
        height: 80px;
        background: url('../image/guide/click_mo.svg') no-repeat center / 100%;
    }

    .drawer.drawer-guide .guide-wrapper .guide-icon.icon-type01 {
        background: url('../image/guide/arrow_key_up_down_mo.svg') no-repeat center / 100%;
    }

    .drawer.drawer-guide .guide-wrapper .guide-icon.icon-type02 {
        background: url('../image/guide/drag_mo.svg') no-repeat center / 100%;
    }

    .drawer.drawer-guide .guide-wrapper .guide-icon.icon-type03 {
        background: url('../image/guide/arrow_key_left_right_mo.svg') no-repeat center / 100%;
    }

    .drawer.drawer-guide .guide-wrapper .guide-icon.icon-type04 {
        background: url('../image/guide/scroll_mo.svg') no-repeat center / 100%;
    }

    .drawer.drawer-guide .bottom-desc {
        padding: 24px 24px 32px;
    }

    .drawer.drawer-event .desc-wrapper {
        gap: 0;
    }
    
    .drawer.drawer-event .event-tit {
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 12px;
    }
    
    .drawer.drawer-event .event-desc {
        font-size: 13px;
        line-height: 20px;
        margin-bottom: 32px;
    }

    .drawer.drawer-event .event-desc .point {
        
    }

    .drawer.drawer-event .event-info {
    }

    .drawer.drawer-event .event-area {
        font-size: 14px;
        line-height: 22px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .drawer.drawer-event .event-label {
        font-size: 13px;
        line-height: 28px;
    }
    
    .drawer.drawer-event .event-cap {
        font-size: 11px;
        line-height: 18px;
        color: #999999;
    }

    .drawer.drawer-exit .btn-area {
        padding: 24px;
    }

    .drawer.drawer-exit .btn-area .exit-text {
        font-size: 16px;
        line-height: 28px;
    }

    .drawer.drawer-exit .tool-btn-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .drawer.drawer-exit .tool-btn-wrapper button {
        width: 100%;
        font-size: 13px;
        line-height: 20px;
    }

    .drawer.drawer-exit .login-member {
        font-size: 14px;
        line-height: 22px;
        flex-direction: column;
    }

    .drawer.drawer-exit .login-member .btn-member {
        font-size: 12px;
        line-height: 20px;
    }

    .drawer.drawer-exit .login-member .btn-member:before {
        
    }

    .drawer.drawer-after .cont-tab {
        /* gap: 12px;
        min-height: 52px;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;

        scrollbar-width: none; */
    }

    .drawer.drawer-after .cont-tab::-webkit-scrollbar {
        display: none;
    }

    .drawer.drawer-after .cont-subtit {
        padding: 12px 24px;
    }

    .drawer.drawer-after .cont-main {
        padding: 16px 24px;
        gap: 24px;
    }

    .drawer.drawer-after .cont-main .cont-wrapper {
        gap: 8px;
    }

    /* .drawer.drawer-after .cont-main .cont-cap {
        padding: 16px 24px;
    } */

    .drawer.drawer-after .cont-subtit .jb14 {
        font-size: 13px;
    }

    .drawer.drawer-after .after01,
    .drawer.drawer-after .after03,
    .drawer.drawer-after .after04,
    .drawer.drawer-after .after05 {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .drawer.drawer-after .after01 div > .text-desc {
        font-size: 12px;
        line-height: 20px;
    }

    .drawer.drawer-after .cont-desc {
        font-size: 14px;
        line-height: 22px;
    }

    .drawer .car-btn-wrapper .jt18,
    .drawer .car-btn-wrapper .jh18 {
        font-size: 13px;
    }

    .drawer .content-wrapper .sub-tit {
        padding: 12px 24px;
        font-size: 13px;
        line-height: 20px;
    }

    .drawer.drawer-testdrive .img-desc {
        bottom: 28px;
        left: 24px;
        font-size: 16px;
        line-height: 28px;
    }

    .drawer.drawer-car-intspec .n-activeS-wrapper {
        padding: 3px 25px;
    }

    .drawer.drawer-car-intspec .n-activeS .n-activeS-ele {
        padding: 6px 18px 6px 6px;
        gap: 12px;
    }

    .drawer.drawer-car-intspec .n-activeS .n-activeS-ele .btn-activeS {
        width: 48px;
        height: 48px;
    }

    .drawer.drawer-car-intspec .n-activeS .n-activeS-ele .btn-activeS img {
        width: 48px;
    }

    .drawer.drawer-car-intspec .n-activeS .ele-desc {
        font-size: 13px;
        line-height: 20px;
    }

    .drawer.drawer-car-intspec .n-activeS .ele-desc .btn-pnp {
        width: 24px;
        height: 24px;
    }
    
    .drawer.drawer-car-intspec .n-activeS .ele-desc .btn-pnp.pause {
        width: 24px;
        height: 24px;
    }

    .drawer.drawer-counsel .drawer-wrapper {
        /* min-width: 300px;
        max-width: 375px;
        width: 100%; */
    }

    .drawer.drawer-counsel .title {
        font-size: 16px;
        line-height: 28px;
    }

    .drawer.drawer-counsel .btn .title {
        min-width: inherit; 
        width: 62.3287%;
        font-size: 13px;
        line-height: 20px;
    }

    .drawer.drawer-counsel .content-wrapper {
        padding: 24px;
        gap: 40px;
    }

    .drawer.drawer-counsel .counsel-btns-area .btn {
        gap: 8px;
    }

    .drawer.drawer-counsel .counsel-btns-area .mo-counsel-btn {
        padding-block: 7px;
    }

    .drawer.drawer-counsel .btn.pc-counsel-btn .new-badge {
        font-size: 11px;
        line-height: 25px;
    }

    .drawer.drawer-counsel .desc-wrapper {
        
    }

    .drawer.drawer-counsel .desc-wrapper .desc {
        line-break: normal;
    }

    .drawer.drawer-counsel .map-title-btn .title {
        margin-bottom: unset;
        font-size: 18px;
        line-height: 30px;
    }

    .drawer.drawer-counsel .g-map .map-desc {
        font-size: 11px;
        line-height: 18px;
    }

    /* .drawer.drawer-finance .btn-tab {
        font-size: 12px;
        font-weight: 400;
        line-height: 20px;
    } */

    .drawer.drawer-finance .cont-subtit-area {
        padding: 12px 24px;
    }

    .drawer.drawer-finance .cont-sub-tit {
        font-size: 13px;
        line-height: 20px;
    }

    /* .drawer.drawer-after .btn-tab {
        font-size: 12px;
        font-weight: 400;
        line-height: 20px;
        height: unset;
    } */

    .drawer.drawer-after .image-wrapper {
        padding: 10px 86px;
        max-height: 140px;
    }

    .drawer.drawer-citypop .cont-cap .jb12 {
        font-size: 11px;
    }

    .drawer .pc-only {
        display: none !important;
    }
    
    .drawer .mo-only {
        display: flex !important;
    }

    .drawer.drawer-lineup .car-area {
        gap: 8px;
        padding: 8px 0px 32px;
    }

    .drawer.drawer-lineup .car-item {
        gap: 12px;
        padding: 16px 24px 16px 24px;
    }

    .drawer.drawer-lineup .car-info-wrapper {
        gap: 12px;
    }

    .drawer.drawer-lineup .car-info-wrapper .car-img {
        width: 57.5342%;
        height: auto;
        flex-shrink: 0;
        /* width: 168px;
        height: 95px; */
    }

    .drawer.drawer-lineup .car-info-wrapper .car-info {
        gap: 8px;
    }

    .drawer.drawer-lineup .car-info-wrapper .car-info .car-name {
        font-size: 14px;
        line-height: 22px;
    }

    .drawer.drawer-lineup .car-info-wrapper .car-info .catalog-btn .catalog-btn-text {
        font-size: 12px;
        line-height: 20px;
    }

    .drawer.drawer-lineup .item-btn-wrapper .btn-lg {
        height: 32px;
        font-size: 12px;
        font-weight: 500;
    }

    .drawer.drawer-lineup .item-btn-wrapper .btn-lg .btn-text {
        font-size: 12px;
        font-weight: 500;
        line-height: normal;

    }

    .drawer[data-pop-idx="92"] .car-btn-wrapper .jt18 {
        font-size: 13px;
        line-height: 20px;
    }
}