/* S : ANIMATE */
.nexo-pip-wrapper .visual-section,
.nexo-pip-wrapper .hydrogen-section,
.nexo-pip-wrapper .lineup-section,
.nexo-pip-wrapper .highlight-section,
.nexo-pip-wrapper .digital-showroom-section,
.nexo-pip-wrapper .exterior-section,
.nexo-pip-wrapper .interior-section,
.nexo-pip-wrapper .convenience-section,
.nexo-pip-wrapper .driving-section,
.nexo-pip-wrapper .safety-section,
.nexo-pip-wrapper .fcev-section,
.nexo-pip-wrapper .considering-section,
.nexo-pip-wrapper .charging-section,
.nexo-pip-wrapper .contact-section,
.nexo-pip-wrapper .gallery-section {
    overflow: hidden;
}

.nexo-pip-wrapper .contents-sec {
    position: relative;
}
.nexo-pip-wrapper .contents-sec[class*="bottom-sec"] {
    position: relative;
    display: none;
    overflow: hidden;
}
.nexo-pip-wrapper .contents-sec[class*="bottom-sec"].is-active {
    display: block;
}

.nexo-pip-wrapper .note-desc {
    display: flex;
    gap: 4px;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    color: #999;
}
.nexo-pip-wrapper .note-desc::before {
    content: "※";
}
.nexo-pip-wrapper .note-desc[data-number]::before {
    content: "※" attr(data-number);
    flex: 0 0 18px;
}

.ani-elem {
    --duration: 1s;
    --delay: 0s;
    --play-state: paused;
    --y: 100px;
}

.ani-elem.run-animate {
    --play-state: running;
}

.ani-target {
    animation-duration: var(--duration);
    animation-delay: var(--delay);
    animation-play-state: var(--play-state);
    animation-fill-mode: forwards;
    animation-timing-function: ease;
}

.ani-clip-up {
    display: block;
}

.ani-clip-up > span {
    display: inline-block;
    vertical-align: top;
    overflow: hidden;
}
.ani-clip-up > span span {
    display: block;
    translate: 0 100%;
    animation-name: ClipUp;
    will-change: translate, animation;
}

.ani-fade-in-up {
    opacity: 0;
    translate: 0 var(--y);
    animation-name: FadeIn, SlideUp;
    will-change: translate, opacity;
}

.count-elem {
    display: inline-flex;
    overflow: hidden;
}

@keyframes ClipUp {
    0% {
        translate: 0 100%;
        opacity: 0;
    }

    100% {
        translate: 0 0;
        opacity: 1;
    }
}

@keyframes SlideUp {
    0% {
        translate: 0 var(--y);
    }

    100% {
        translate: 0 0;
    }
}

@keyframes FadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
/* E : ANIMATE */

/* S : LNB */
.detail-nexo-pip .model-menu-wrap {
    position: fixed;
    top: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    height: 70px;
    background: rgba(255, 255, 255, 1);
    transition: top 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    z-index: 299;
}

.detail-nexo-pip .model-menu-wrap .on-scroll {
    display: none;
}

.detail-nexo-pip .model-menu-wrap .on-scroll.is-show {
    display: block;
}

.detail-nexo-pip .model-menu {
    position: relative;
    margin: 0 auto;
    width: 1096px;
    height: 70px;
}

.detail-nexo-pip .model-menu h4 {
    position: relative;
    top: 17px;
    width: 104px;
    font-weight: 500;
    white-space: nowrap;
}

.detail-nexo-pip .model-menu h4 span {
    font-size: 16px;
    font-weight: 500;
}

.detail-nexo-pip .model-menu nav {
    position: absolute;
    top: 26px;
    right: 0;
}

.detail-nexo-pip .model-menu nav ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.detail-nexo-pip .model-menu nav ul li {
    margin-left: 32px;
}

.detail-nexo-pip .model-menu nav ul li a {
    color: #191919;
}

.detail-nexo-pip .model-menu nav ul li.is-active a {
    color: #999;
}

@media screen and (max-width: 1119px) {
    .detail-nexo-pip .model-menu-wrap {
        top: 0;
        /* margin-bottom: 96px; */
        max-width: 1120px;
        height: 55px;
    }

    .detail-nexo-pip .model-menu-wrap.with-gnb {
        top: 52px;
    }

    .detail-nexo-pip .model-menu {
        padding: 0 20px;
        width: unset;
        height: 55px;
    }

    .detail-nexo-pip .model-menu h4 {
        width: 100%;
        top: 13px;
    }

    .detail-nexo-pip .model-menu h4 span {
        font-size: 12px;
    }

    .detail-nexo-pip .model-menu h4:before {
        content: "";
        position: absolute;
        top: 50%;
        right: 0;
        display: inline-block;
        width: 16px;
        height: 16px;
        margin-top: -8px;
        background: url(../../assets/images/common/ico_gnb_arrow_blk.png?V=1.1.3) no-repeat 0 0;
        background-size: 16px;
        transition: all 0.3s ease-in-out;
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .detail-nexo-pip .model-menu h4.active:before {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    .detail-nexo-pip .model-menu .btn_model-menu {
        position: absolute;
        top: 4px;
        right: 10px;
        width: 48px;
        height: 48px;
        background: url(../../assets/images/common/ico_menu.svg?V=1.1.2) no-repeat center center;
        background-size: 48px;
    }

    .detail-nexo-pip .model-menu .model-menu-list {
        position: absolute;
        top: 55px;
        left: 0;
        width: 100%;
        background-color: #fff;
        font-size: 14px;
        line-height: 22px;
        box-shadow: 0 6px 6px -1px #e9e9e9;
        display: none;
    }

    .detail-nexo-pip .model-menu .model-menu-list li {
        padding: 12px 20px;
    }

    .detail-nexo-pip .model-menu .model-menu-list li:first-child {
        padding-top: 24px;
    }

    .detail-nexo-pip .model-menu .model-menu-list li:last-child {
        padding-bottom: 24px;
    }

    .detail-nexo-pip .model-menu .model-menu-list a {
        color: #191919;
        opacity: 0.4;
    }

    .detail-nexo-pip .model-menu .model-menu-list .is-active a {
        opacity: 1;
    }
}
/* E : LNB */

/* S: indicator */
.detail-nexo-pip .navi-indicator {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 64px;
    display: flex;
    align-items: center;
    width: 0;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
}
.detail-nexo-pip .navi-indicator.is-active {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.5s ease;
}
.detail-nexo-pip .navi-indicator ul {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.detail-nexo-pip .navi-indicator ul li {
    position: relative;
    width: 100%;
    flex: 1;
}
.detail-nexo-pip .navi-indicator ul li a {
    position: relative;
    padding: 0 0 0 14px;
    display: block;
    width: max-content;
    font-size: 14px;
    line-height: 22px;
    color: #999;
    transition:
            padding 0.3s ease,
            color 0.3s ease,
            opacity 0.3s ease;
}
/* E: indicator */

::-webkit-scrollbar {
    display: none;
}

body {
    -ms-overflow-style: none;
}

.nexo-pip-wrapper .hmj-content {
    padding-top: 183px;
}

.nexo-pip-wrapper .contents-sec .scroll-btn,
.nexo-pip-wrapper .contents-sec .slider-btn {
    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 1;
    overflow: hidden;
}
.nexo-pip-wrapper .contents-sec .scroll-btn .btn-inner,
.nexo-pip-wrapper .contents-sec .slider-btn .btn-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transform: translateY(22px);
    transition: transform 0.4s ease;
}
.nexo-pip-wrapper .contents-sec .scroll-btn {
    color: #fff;
}
.nexo-pip-wrapper .contents-sec .scroll-btn.text-dark {
    color: #666;
}
.nexo-pip-wrapper .contents-sec .slider-btn {
    color: #999;
}
.nexo-pip-wrapper .contents-sec .scroll-btn span,
.nexo-pip-wrapper .contents-sec .slider-btn span {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
}
.nexo-pip-wrapper .contents-sec .scroll-btn span {
    background: url("../../assets/images/common/ico-more-btn_v2.svg") center center / contain no-repeat;
}
.nexo-pip-wrapper .contents-sec .slider-btn span {
    background: url("../../assets/images/common/ico-close-btn.svg") center center / contain no-repeat;
}
.nexo-pip-wrapper .contents-sec .scroll-btn p,
.nexo-pip-wrapper .contents-sec .slider-btn p {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    overflow: hidden;
}
.nexo-pip-wrapper .contents-sec .scroll-btn:hover .btn-inner,
.nexo-pip-wrapper .contents-sec .slider-btn:hover .btn-inner {
    transform: translateY(0);
}

/* S: ScrollLock Style */
html[data-page-scroll="false"] {
    overflow: hidden;
}
/* E: ScrollLock Style */

/* S: Img Toggle Box Style */
.nexo-pip-wrapper .img-centered {
    position: relative;
    height: var(--height, auto);
    overflow: hidden;
}

.nexo-pip-wrapper .img-centered img {
    position: absolute;
    left: 50%;
    top: 0;
    width: 1920px;
    height: 100%;
    margin-left: -960px;
    max-width: none;
}

.nexo-pip-wrapper .container {
    width: 1120px;
    margin: 0 auto;
    padding: 0;
}

.nexo-pip-wrapper .out-link,
.nexo-pip-wrapper .out-link:hover {
    color: #1c6bba;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    text-decoration-line: underline;
    text-underline-position: under;
    text-underline-offset: 2px;
}
.nexo-pip-wrapper .contents-sec .bg-title-area {
    position: absolute;
    left: 50%;
    top: 0;
    margin-left: -560px;
    padding: 104px 0 0;
    display: flex;
    flex-direction: column;
    width: 1120px;
    z-index: 1;
}
.nexo-pip-wrapper .contents-sec .title-area {
    color: #fff;
}
.nexo-pip-wrapper .contents-sec .title-area .sec-title {
    font-size: 40px;
    font-weight: 500;
    line-height: 64px;
}
.nexo-pip-wrapper .contents-sec .title-area .sec-sub-title {
    font-size: 32px;
    font-weight: 500;
    line-height: 52px;
}
.nexo-pip-wrapper .contents-sec .title-area .sec-desc {
    margin-top: 8px;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}
.nexo-pip-wrapper .contents-sec .title-area .sec-sub-desc {
    margin-top: 8px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}
.nexo-pip-wrapper .contents-sec .title-area {
    color: #fff;
}
.nexo-pip-wrapper .contents-sec .title-area.text-black {
    color: #000;
}

/* S: Swiper */
.nexo-pip-wrapper {
    --swiper-pagination-color: #0793EA;
    --swiper-pagination-bullet-inactive-color: #ccc;
    --swiper-pagination-bullet-inactive-opacity: 1;
}
.nexo-pip-wrapper .slider-sec {
    overflow: hidden;
}
.nexo-pip-wrapper .basic-slider .swiper,
.modal-wrapper .basic-slider .swiper {
    --item-size: 1120px;
    margin: 0;
    width: var(--item-size);
    overflow: visible;
}
.nexo-pip-wrapper .basic-slider .swiper-slide,
.modal-wrapper .basic-slider .swiper-slide {
    margin-right: 40px;
    width: var(--item-size);
}
.nexo-pip-wrapper .basic-slider .swiper-slide .img-box img,
.modal-wrapper .basic-slider .swiper-slide .img-box img {
    width: 100%;
}
.nexo-pip-wrapper .basic-slider .swiper-slide .item-title,
.modal-wrapper .basic-slider .swiper-slide .item-title {
    margin-top: 32px;
    font-size: 24px;
    font-weight: 500;
    line-height: 38px;
}
.nexo-pip-wrapper .basic-slider .swiper-slide .item-title sub,
.modal-wrapper .basic-slider .swiper-slide .item-title sub {
    vertical-align: super;
    font-size: 50%;
}
.nexo-pip-wrapper .basic-slider .swiper-slide .item-desc,
.modal-wrapper .basic-slider .swiper-slide .item-desc {
    margin-top: 16px;
    font-size: 14px;
    line-height: 22px;
    color: #333;
}
.nexo-pip-wrapper .basic-slider.size-small .swiper,
.modal-wrapper .basic-slider.size-small .swiper {
    --item-size: 620px;
}
.nexo-pip-wrapper .basic-slider .swiper-controls,
.modal-wrapper .basic-slider .swiper-controls {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
}
.nexo-pip-wrapper .basic-slider .swiper-buttons,
.modal-wrapper .basic-slider .swiper-buttons {
    display: flex;
    gap: 8px;
}
.nexo-pip-wrapper .basic-slider .swiper-buttons button,
.modal-wrapper .basic-slider .swiper-buttons button {
    position: relative;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border-radius: 0;
}
.nexo-pip-wrapper .basic-slider .swiper-buttons button::before,
.modal-wrapper .basic-slider .swiper-buttons button::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border: 1px solid #666;
}
.nexo-pip-wrapper .basic-slider .swiper-buttons .swiper-button-prev::after,
.modal-wrapper .basic-slider .swiper-buttons .swiper-button-prev::after {
    content: "";
    display: block;
    width: 32px;
    height: 32px;
    background-repeat: no-repeat;
    background-size: 32px 32px;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2232%22%20height%3D%2232%22%20viewBox%3D%220%200%2032%2032%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M20.5%2022.4085L19.4334%2023.5L11.5%2016.5L19.4334%209.5L20.5%2010.5915L13.8044%2016.499L20.5%2022.4085Z%22%20fill%3D%22%23666666%22%2F%3E%3C%2Fsvg%3E");
}
.nexo-pip-wrapper .basic-slider .swiper-buttons .swiper-button-next::after,
.modal-wrapper .basic-slider .swiper-buttons .swiper-button-next::after {
    content: "";
    display: block;
    width: 32px;
    height: 32px;
    background-repeat: no-repeat;
    background-size: 32px 32px;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2232%22%20height%3D%2232%22%20viewBox%3D%220%200%2032%2032%22%20fill%3D%22none%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M11.5%2010.5915L12.5666%209.5L20.5%2016.5L12.5666%2023.5L11.5%2022.4085L18.1956%2016.501L11.5%2010.5915Z%22%20fill%3D%22%23666666%22%2F%3E%3C%2Fsvg%3E");
}
.nexo-pip-wrapper .basic-slider .swiper-progress,
.modal-wrapper .basic-slider .swiper-progress {
    display: flex;
}
.nexo-pip-wrapper .basic-slider .swiper-progress span,
.modal-wrapper .basic-slider .swiper-progress span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-size: 18px;
    line-height: 32px;
    text-align: center;
    color: #999;
}
.nexo-pip-wrapper .basic-slider .swiper-progress .current-num,
.modal-wrapper .basic-slider .swiper-progress .current-num {
    color: #000;
}
/* E: Swiper */

/* S: Img Toggle Box Style */
.img-toggle-box {
    position: relative;
}
.img-toggle-box .img-box.on,
.img-toggle-box .img-box.off {
    display: none;
}
.img-toggle-box .__btn-switch {
    --btn-width: 117px;
    position: absolute;
    top: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    width: var(--btn-width);
    height: 46px;
    transform: translate3d(0, 0, 0);
    border-radius: 46px;
    transition: background 0.4s ease;
}
.img-toggle-box .__btn-switch > span {
    position: absolute;
}
.img-toggle-box .__btn-switch .circle {
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
    transform: translate3d(0, 0, 0);
    transition: transform 0.4s ease;
}
.img-toggle-box .__btn-switch .label {
    font-size: 18px;
    color: #fff;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.img-toggle-box .__btn-switch .label-on {
    left: 16px;
}
.img-toggle-box .__btn-switch .label-off {
    right: 16px;
}
.img-toggle-box.on .__btn-switch,
.img-toggle-box.off .__btn-switch {
    background-color: rgba(0, 0, 0, 0.25);
}
.img-toggle-box.on .img-box.on,
.img-toggle-box.off .img-box.off {
    display: block;
}
.img-toggle-box.on .__btn-switch .label-on {
    left: 16px;
    opacity: 1;
}
.img-toggle-box.off .__btn-switch .label-off {
    right: 16px;
    opacity: 1;
}
.img-toggle-box.on .__btn-switch .circle {
    transform: translate3d(calc(var(--btn-width, 0px) - 38px), 0, 0);
}
.img-toggle-box.off .__btn-switch .circle {
    transform: translate3d(8px, 0, 0);
}
/* E: Img Toggle Box Style */

/* S: visual-section */
.nexo-pip-wrapper .visual-section {
    position: relative;
    padding: 0;
    margin-bottom: 0;
}

.nexo-pip-wrapper .visual-section .title-area {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding: 104px 0 0;
    z-index: 1;
}

.nexo-pip-wrapper .visual-section .text-box .tit {
    font-size: 56px;
    line-height: 90px;
    font-weight: 500;
}

.nexo-pip-wrapper .visual-section .text-box .sub-tit {
    margin-bottom: 16px;
    font-size: 32px;
    font-weight: 500;
    line-height: 52px;
}

.nexo-pip-wrapper .visual-section .text-box .price {
    margin-bottom: 40px;
    font-size: 24px;
    font-weight: 500;
    line-height: 38px;
}

.nexo-pip-wrapper .visual-section .jcoty-logo-box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.nexo-pip-wrapper .visual-section .jcoty-logo-box img.jcoty-logo-pc {
    width: 388px;
    height: 100%;
    object-fit: contain;
}

.nexo-pip-wrapper .visual-section .jcoty-logo-box img.jcoty-logo-mo {
    display: none;
}

.nexo-pip-wrapper .visual-section .cta-area {
    width: 100%;
    max-width: 592px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nexo-pip-wrapper .visual-section .btn-box-1 {
    display: flex;
    gap: 32px;
}

.nexo-pip-wrapper .visual-section .btn-box-2 .btn {
    width: 100%;
}

.nexo-pip-wrapper .visual-section .btn-box-2 .note {
    margin-top: 8px;
    font-size: 12px;
    line-height: 20px;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.72);
    color: #fff;
}

.nexo-pip-wrapper .visual-section .btn-box-2 .note:only-child {
    margin-top: -8px;
}

.nexo-pip-wrapper .visual-section .bg-img img {
    transform: scale(0.6);
    opacity: 0;
}
/* E: visual-section */

/* S: hydrogen-section */
.nexo-pip-wrapper .hydrogen-section {
    position: relative;
}

.nexo-pip-wrapper .hydrogen-section .title-area {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding: 104px 0 0;
    z-index: 1;
    color: #fff;
    text-align: center;
}
.nexo-pip-wrapper .hydrogen-section .title-area .tit {
    font-size: 40px;
    font-weight: 500;
    line-height: 64px;
}
.nexo-pip-wrapper .hydrogen-section .title-area .sub-tit {
    margin-top: 16px;
    font-size: 24px;
    font-weight: 500;
    line-height: 38px;
}
.nexo-pip-wrapper .hydrogen-section .title-area .desc-box {
    margin-top: 16px;
}
.nexo-pip-wrapper .hydrogen-section .title-area .desc {
    font-size: 20px;
    line-height: 32px;
}
/* E: hydrogen-section */

/* S: lineup-section */
.nexo-pip-wrapper .lineup-section {
    padding: 104px 0 146px;
}
.nexo-pip-wrapper .lineup-section .lineup-content {
    margin-top: 48px;
}
.nexo-pip-wrapper .lineup-section .lineup-content .lineup-item {
    margin-right: 20px;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    height: auto;
}
.nexo-pip-wrapper .lineup-section .lineup-content .lineup-item .item-thumb img {
    width: 100%;
}
.nexo-pip-wrapper .lineup-section .lineup-content .lineup-item .item-info {
    padding: 32px 12px 48px;
    border-top: 1px solid #000;
}
.nexo-pip-wrapper .lineup-section .lineup-content .lineup-item .item-info .item-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 38px;
}
.nexo-pip-wrapper .lineup-section .lineup-content .lineup-item .item-info .item-desc {
    margin-top: 8px;
    min-height: 44px;
    font-size: 14px;
    line-height: 22px;
    color: #333;
}
.nexo-pip-wrapper .lineup-section .lineup-content .lineup-item .item-info .item-price {
    margin-top: 32px;
}
.nexo-pip-wrapper .lineup-section .lineup-content .lineup-item .item-info .item-price-title {
    display: block;
    font-size: 14px;
    line-height: 22px;
    color: #999;
}
.nexo-pip-wrapper .lineup-section .lineup-content .lineup-item .item-info .item-price-value {
    font-size: 32px;
    font-weight: 500;
    line-height: 52px;
    color: #000;
}
.nexo-pip-wrapper .lineup-section .lineup-content .lineup-item .item-info .item-price-unit {
    font-size: 24px;
    line-height: 38px;
    color: #000;
}
.nexo-pip-wrapper .lineup-section .lineup-content .lineup-item .item-info .item-price-installment {
    margin-top: 16px;
}
.nexo-pip-wrapper .lineup-section .lineup-content .lineup-item .item-info .item-price-installment .item-price-value {
    color: #1c6bba;
}
.nexo-pip-wrapper .lineup-section .lineup-content .lineup-item .btn {
    width: 100%;
}
.nexo-pip-wrapper .lineup-section .finance-link {
    margin: 48px auto 0;
    padding: 16px 30px;
    display: flex;
    align-items: center;
    width: max-content;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    color: #666;
}

.nexo-pip-wrapper .lineup-section .subsidy-link {
    position: relative;
    margin: 8px auto 0;
    padding: 13px 30px;
    display: flex;
    align-items: center;
    width: max-content;
    border-radius: 999px;
    /* font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    color: #002c5f;
    border-radius: 999px; */
}
.nexo-pip-wrapper .lineup-section .subsidy-link span {
    font-size: 14px;
}
/* E: lineup-section */

/* S: highlights-section */
.nexo-pip-wrapper .highlights-content {
    position: absolute;
    left: 0;
    bottom: 104px;
    width: 100%;
    color: #fff;
    z-index: 1;
}
.nexo-pip-wrapper .lineup-section .subsidy-link {
    position: relative;
    margin: 8px auto 0;
    padding: 13px 30px;
    display: flex;
    align-items: center;
    width: max-content;
    border-radius: 999px;
}
.nexo-pip-wrapper .lineup-section .subsidy-link span {
    font-size: 14px;
}
.nexo-pip-wrapper .highlights-list {
    display: flex;
}
.nexo-pip-wrapper .highlights-item {
    position: relative;
    padding: 0 32px;
    flex: 0 0 auto;
}
.nexo-pip-wrapper .highlights-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -32px;
    width: 1px;
    height: 64px;
    background-color: #ccc;
}
.nexo-pip-wrapper .highlights-item .item-title {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
}
.nexo-pip-wrapper .highlights-item .item-desc {
    font-size: 40px;
    line-height: 64px;
}
.nexo-pip-wrapper .highlights-item .item-desc sub {
    margin-left: 4px;
    font-size: 24px;
    font-weight: 400;
}
.nexo-pip-wrapper .highlights-item .item-desc .item-price-unit-large {
    font-size: 40px;
}
/* E: highlight-section */

/* S: exterior-section */
.nexo-pip-wrapper .exterior-bottom-sec .exterior-bottom-content {
    padding: 104px 0 174px;
}
/* E: exterior-section */

/* S: colors-section */
.nexo-pip-wrapper .colors-section .colors-content {
    position: relative;
}
.nexo-pip-wrapper .colors-section .colors-content .contain {
    position: absolute;
    left: 50%;
    top: 0;
    width: 1120px;
    height: 100%;
    margin-left: -560px;
}
.nexo-pip-wrapper .colors-section .colors-tab-buttons {
    position: absolute;
    right: 0;
    top: 108px;
    display: flex;
    z-index: 1;
}
.nexo-pip-wrapper .colors-section .colors-tab-btn {
    position: relative;
    padding: 16px 0 17px;
    width: 140px;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    color: #ccc;
}
.nexo-pip-wrapper .colors-section .colors-tab-btn::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    background-color: #dadada;
}
.nexo-pip-wrapper .colors-section .colors-tab-btn.is-active {
    color: #fff;
}
.nexo-pip-wrapper .colors-section .colors-tab-btn.is-active::before {
    height: 3px;
    background-color: #fff;
}
.nexo-pip-wrapper .colors-section .colors-select-area {
    position: absolute;
    left: 0;
    bottom: 80px;
    padding: 8px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 80px 8px 8px 80px;
}
.nexo-pip-wrapper .colors-section .colors-trim-buttons {
    display: flex;
    z-index: 1;
}
.nexo-pip-wrapper .colors-section .colors-trim-buttons .inner {
    display: flex;
    margin: 8px 0 8px 8px;
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50px;
}
.nexo-pip-wrapper .colors-section .colors-trim-btn {
    padding: 0 24px;
    height: 38px;
    font-size: 14px;
    line-height: 38px;
    color: #fff;
    border-radius: 38px;
}
.nexo-pip-wrapper .colors-section .colors-trim-btn.is-active {
    background-color: #fff;
    font-weight: 500;
    color: #000;
}
.nexo-pip-wrapper .colors-section .colors-color-chip-buttons {
    display: flex;
    align-items: center;
    z-index: 1;
}
.nexo-pip-wrapper .colors-section .colors-color-chip-buttons .selected-label {
    margin-right: 24px;
    font-size: 14px;
    line-height: 22px;
    color: #fff;
    text-align: right;
}
.nexo-pip-wrapper .colors-section .colors-color-chip-buttons .color-list {
    display: flex;
    gap: 8px;
}
.nexo-pip-wrapper .colors-section .colors-color-chip-buttons .color-item {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 4px;
}
.nexo-pip-wrapper .colors-section .colors-color-chip-buttons .color-item.interior {
    width: 128px;
}
.nexo-pip-wrapper .colors-section .colors-color-chip-buttons .color-item img {
    height: 100%;
    pointer-events: none;
    border-radius: inherit;
}
.nexo-pip-wrapper .colors-section .colors-color-chip-buttons .color-item.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #0793ea;
    border-radius: inherit;
    pointer-events: none;
    z-index: 2;
}
.nexo-pip-wrapper .colors-section .colors-color-chip-buttons .color-item.is-active::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 2px;
    right: 2px;
    bottom: 2px;
    border: 2px solid #fff;
    pointer-events: none;
    z-index: 1;
}
.nexo-pip-wrapper .colors-section .colors-preview {
    position: relative;
    height: 0;
    padding-bottom: 1080px;
    z-index: -1;
}
.nexo-pip-wrapper .colors-section .colors-preview .colors-preview-canvas-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    transform: translate3d(0, 0, 0);
}
.nexo-pip-wrapper .colors-section .colors-preview .colors-preview-canvas {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
}
.nexo-pip-wrapper .colors-section .colors-preview .colors-preview-canvas--base {
    z-index: 0;
}
.nexo-pip-wrapper .colors-section .colors-preview .colors-preview-motion-layers {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}
.nexo-pip-wrapper .colors-section .colors-preview .colors-preview-canvas--motion {
    z-index: 1;
}
/* E: colors-section */

/* S: digital-showroom-section */
.nexo-pip-wrapper .digital-showroom-section .title-area {
    text-align: center;
}
.nexo-pip-wrapper .digital-showroom-section .title-area .sec-desc {
    margin-top: 16px;
    font-size: 20px;
    line-height: 32px;
}
.nexo-pip-wrapper .digital-showroom-section .title-area .btn {
    margin: 40px auto 0;
    max-width: 280px;
    background-color: transparent;
    border-color: #ccc;
}
/* E: digital-showroom-section */

/* S: interior-section */
.nexo-pip-wrapper .interior-section .interior-content {
    position: absolute;
    left: 0;
    bottom: 104px;
    width: 100%;
    z-index: 1;
}
.nexo-pip-wrapper .interior-section .interior-content .note-desc {
    margin-top: 16px;
}
/* E: interior-section */

/* S: convenience-section */
.nexo-pip-wrapper .convenience-bottom-sec .convenience-bottom-content {
    padding: 104px 0 174px;
}
.nexo-pip-wrapper .convenience-bottom-sec .convenience-bottom-content .note-desc {
    margin-top: 16px;
}
/* E: convenience-section */

/* S: driving-section */
.nexo-pip-wrapper .driving-section .driving-content {
    position: absolute;
    left: 0;
    bottom: 104px;
    width: 100%;
    z-index: 1;
}
.nexo-pip-wrapper .driving-bottom-sec .driving-bottom-content {
    padding: 104px 0 174px;
}
.nexo-pip-wrapper .driving-bottom-sec .driving-bottom-content .title-area {
    margin-bottom: 40px;
}
.nexo-pip-wrapper .driving-section .driving-content {
    position: absolute;
    left: 0;
    bottom: 174px;
    width: 100%;
}
.nexo-pip-wrapper .driving-section .driving-content .driving-list {
    display: flex;
    gap: 48px;
    color: #fff;
}
.nexo-pip-wrapper .driving-section .driving-content .driving-item .item-title {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
}
.nexo-pip-wrapper .driving-section .driving-content .driving-item .item-title-unit {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
}
.nexo-pip-wrapper .driving-section .driving-content .driving-item .item-desc {
    font-size: 40px;
    line-height: 64px;
}
.nexo-pip-wrapper .driving-section .driving-content .driving-item .item-price-unit {
    font-size: 24px;
    font-weight: 400;
}
.nexo-pip-wrapper .driving-section .driving-content .note-desc {
    margin-top: 24px;
}
.nexo-pip-wrapper .driving-section .driving-content .note-desc + .note-desc {
    margin-top: 2px;
}
/* E: driving-section */

/* S: charging-section */
.nexo-pip-wrapper .charging-section .charging-content {
    position: absolute;
    left: 0;
    bottom: 104px;
    width: 100%;
    z-index: 1;
}
.nexo-pip-wrapper .charging-section .charging-content .content-tit {
    margin-bottom: 40px;
    position: relative;
    width: max-content;
    font-size: 24px;
    font-weight: 500;
    line-height: 38px;
}
.nexo-pip-wrapper .charging-section .charging-content .content-tit span:nth-child(1) {
    font-size: 40px;
    line-height: 64px;
}
.nexo-pip-wrapper .charging-section .charging-content .content-tit span:nth-child(2) {
    font-size: 32px;
    line-height: 52px;
}
.nexo-pip-wrapper .charging-section .charging-content .content-tit .unit {
    position: absolute;
    top: 18px;
    left: 100%;
    padding-left: 4px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}
.nexo-pip-wrapper .charging-section .charging-content .note-desc {
    margin-top: 40px;
}
.nexo-pip-wrapper .charging-section .charging-content .note-desc + .note-desc {
    margin-top: 2px;
}
/* E: charging-section */

/* S: safety-section */
.nexo-pip-wrapper .safety-section .safety-contents .safety-contents-inner {
    margin: 0 auto;
    padding: 104px 0 214px;
}
.nexo-pip-wrapper .safety-section .safety-contents .accordion-area {
    margin-top: 80px;
    height: 580px;
    overflow: hidden;
}
.nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul {
    margin: 0;
    padding: 0;
    display: flex;
    width: 100%;
}
.nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul li {
    position: relative;
    flex: 1;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transition: all 0.5s ease;
    overflow: hidden;
}
.nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul li::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0s ease;
}
.nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul li::after {
    background-color: rgba(0, 0, 0, 0.6);
}
.nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul li:nth-child(1) {
    background-image: url("../../assets/images/nexo/safety_img_01_inactive_pc.webp?V=1.0.1");
}
.nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul li:nth-child(2) {
    background-image: url("../../assets/images/nexo/safety_img_02_inactive_pc.webp?V=1.0.0");
}
.nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul li:nth-child(3) {
    background-image: url("../../assets/images/nexo/safety_img_03_inactive_pc.webp?V=1.0.0");
}
.nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul li:nth-child(4) {
    background-image: url("../../assets/images/nexo/safety_img_04_inactive_pc.webp?V=1.0.0");
}
.nexo-pip-wrapper .safety-section .safety-contents .accordion-area .accordion-item {
    position: relative;
    padding: 40px 0;
    height: 580px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-sizing: border-box;
    color: #fff;
    transition: all 0.2s ease;
    z-index: 3;
}
.nexo-pip-wrapper .safety-section .safety-contents .accordion-area .accordion-item .item-title {
    margin-top: auto;
    flex: 0 0 auto;
    padding: 0 24px;
    width: 280px;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    color: #fff;
    transition: opacity 0.4s ease;
}
.nexo-pip-wrapper .safety-section .safety-contents .accordion-area .accordion-item .item-desc {
    flex: 0 0 auto;
    padding: 0 24px;
    width: 610px;
    position: relative;
    margin: 0;
    padding-bottom: 0;
    transition:
            opacity 0.4s ease,
            transform 0.4s ease;
    opacity: 0;
    overflow: hidden;
    z-index: 5;
    display: none;
}
.nexo-pip-wrapper .safety-section .safety-contents .accordion-area .accordion-item .item-desc p {
    font-size: 14px;
    line-height: 22px;
    color: #e9e9e9;
}
.nexo-pip-wrapper .safety-section .safety-contents .accordion-area .accordion-item .more-btn {
    position: absolute;
    top: 40px;
    right: 24px;
    width: 32px;
    height: 32px;
}

.nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul li.is-active {
    flex: 0 0 610px;
}
.nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul li.is-active::after {
    opacity: 0;
}
.nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul li.is-active .item-title {
    width: 610px;
    opacity: 1;
}
.nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul li.is-active .item-desc {
    opacity: 1;
    display: block;
}
.nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul li.is-active .more-btn {
    display: none;
}
/* E: safety-section */

/* S: smartsense-section */
.nexo-pip-wrapper .smartsense-section .smartsense-content {
    padding: 104px 0 174px;
}
.nexo-pip-wrapper .smartsense-section .smartsense-content .title-area {
    margin-bottom: 80px;
}
.nexo-pip-wrapper .smartsense-section .smartsense-content .note-desc {
    margin-top: 40px;
}
.nexo-pip-wrapper .smartsense-section .smartsense-content .note-desc + .note-desc {
    margin-top: 2px;
}
/* E: smartsense-section */

/* S: fcev-section */
.nexo-pip-wrapper .fcev-section .fcev-content {
    position: absolute;
    left: 0;
    top: 0;
    padding: 139px 0;
    width: 100%;
    height: 100%;
    color: #fff;
    z-index: 1;
}
.nexo-pip-wrapper .fcev-section .fcev-content .tit {
    margin-bottom: 40px;
    font-size: 40px;
    font-weight: 500;
    line-height: 64px;
}
.nexo-pip-wrapper .fcev-section .fcev-content .desc {
    margin-bottom: 80px;
    max-width: 680px;
    font-size: 16px;
    line-height: 26px;
}
.nexo-pip-wrapper .fcev-section .fcev-content .btn {
    max-width: 280px;
    background-color: transparent;
}
/* E: fcev-section */

/* S: considering-section */
.nexo-pip-wrapper .considering-section {
    background-color: #f5f5f5;
}
.nexo-pip-wrapper .considering-section .considering-content {
    padding: 104px 0;
}
.nexo-pip-wrapper .considering-section .considering-content .tit {
    margin-bottom: 40px;
    font-size: 32px;
    font-weight: 500;
    line-height: 52px;
}
.nexo-pip-wrapper .considering-section .considering-content .considering-list {}
.nexo-pip-wrapper .considering-section .considering-content .considering-item {
    position: relative;
    margin-right: 24px;
    display: flex;
    flex-direction: column;
    max-width: 357px;
    height: auto;
}
.nexo-pip-wrapper .considering-section .considering-content .considering-item .img-box img {
    width: 100%;
}
.nexo-pip-wrapper .considering-section .considering-content .considering-item .text-box {
    padding: 32px 32px 94px;
    background-color: #fff;
    flex: 1;
}
.nexo-pip-wrapper .considering-section .considering-content .considering-item .text-box .item-tit {
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
}
.nexo-pip-wrapper .considering-section .considering-content .considering-item .text-box .item-desc {
    font-size: 16px;
    line-height: 26px;
}
.nexo-pip-wrapper .considering-section .considering-content .considering-item .text-box .btn-link {
    position: absolute;
    left: 32px;
    bottom: 32px;
    display: flex;
    align-items: center;
    gap: 4px;
    width: max-content;
}
.nexo-pip-wrapper .considering-section .considering-content .considering-item .text-box .btn-link span {
    font-size: 14px;
    line-height: 22px;
    color: #1C6BBA;
}
.nexo-pip-wrapper .considering-section .considering-content .considering-item .text-box .btn-link .ic {
    display: flex;
    align-items: center;
}
/* E: considering-section */

/* S: contact-section */
.nexo-pip-wrapper .contact-section {
    padding: 104px 0 120px;
    background-color: #fafafa;
}
.nexo-pip-wrapper .contact-section .content-tit {
    margin-bottom: 40px;
    font-size: 40px;
    font-weight: 500;
    line-height: 64px;
}
.nexo-pip-wrapper .contact-section .contact-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 40px;
}
.nexo-pip-wrapper .contact-section .contact-item:first-child {
    flex: 0 0 100%;
}
.nexo-pip-wrapper .contact-section .contact-item {
    flex: 1;
    padding: 40px;
    background-color: #fff;
}
.nexo-pip-wrapper .contact-section .contact-item .item-tit {
    padding: 0 16px;
    margin-bottom: 24px;
    width: max-content;
    font-size: 14px;
    font-weight: 500;
    line-height: 32px;
    border-radius: 8px;
    background-color: #002c5f;
    color: #fff;
}
.nexo-pip-wrapper .contact-section .contact-info-box + .contact-info-box {
    margin-top: 32px;
}
.nexo-pip-wrapper .contact-section .contact-info-box .info-groups .info-group-tit {
    position: relative;
    padding-left: 16px;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 26px;
}
.nexo-pip-wrapper .contact-section .contact-info-box .info-groups .info-group-tit::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #666;
}
.nexo-pip-wrapper .contact-section .contact-info-box .info-groups .info-group-item {
    padding: 0 16px;
}
.nexo-pip-wrapper .contact-section .contact-info-box .info-groups .info-group-item:not(:first-child) {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e9e9e9;
}
.nexo-pip-wrapper .contact-section .contact-info-box .info-tit {
    margin-bottom: 24px;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
}
.nexo-pip-wrapper .contact-section .contact-info-box .info-group {
    padding-left: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.nexo-pip-wrapper .contact-section .contact-info-box .info-item {
    flex: 1;
    display: grid;
    grid-template-columns: auto 96px 1fr;
    align-items: center;
}
.nexo-pip-wrapper .contact-section .contact-info-box .info-item .ic {
    margin-right: 10px;
    display: flex;
    align-items: center;
}
.nexo-pip-wrapper .contact-section .contact-info-box .info-item .info-item-tit {
    font-size: 14px;
    line-height: 22px;
    color: #999;
}
.nexo-pip-wrapper .contact-section .contact-info-box .info-item .info-item-text {
    font-size: 14px;
    line-height: 22px;
    color: #191919;
}
.nexo-pip-wrapper .contact-section .notice-text {
    margin-top: 24px;
    font-size: 12px;
    line-height: 20px;
    color: #999;
}
.nexo-pip-wrapper .contact-section .out-link-form {
    margin-left: 24px;
    display: flex;
    align-items: center;
}
.nexo-pip-wrapper .contact-section .out-link-form .ic {
    margin-right: 10px;
    display: flex;
    align-items: center;
}
.nexo-pip-wrapper .contact-section .out-link-form .out-link {
    margin-right: 4px;
    font-size: 14px;
    line-height: 22px;
    color: #1c6bba;
    text-decoration: none;
}
.nexo-pip-wrapper .contact-section .out-link-email {
    margin-left: 24px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.nexo-pip-wrapper .contact-section .out-link-email .ic {
    display: flex;
    align-items: center;
}
.nexo-pip-wrapper .contact-section .out-link-email .out-link {
    font-size: 14px;
    line-height: 22px;
    color: #1c6bba;
    text-underline-position: under;
    text-underline-offset: 3px;
}
/* E: contact-section */

/* S: gallery-section */
.nexo-pip-wrapper .gallery-section {
    padding: 104px 0;
}
.nexo-pip-wrapper .gallery-section .gallery-content-wrapper {
    position: relative;
}
.nexo-pip-wrapper .gallery-section .gallery-content-wrapper .tit {
    margin-bottom: 40px;
    font-size: 40px;
    font-weight: 500;
    line-height: 64px;
}
.nexo-pip-wrapper .gallery-section .gallery-tab-buttons {
    position: absolute;
    right: 0;
    top: 4px;
    display: flex;
}
.nexo-pip-wrapper .gallery-section .gallery-tab-buttons .gallery-tab-button {
    position: relative;
    min-width: 100px;
    padding: 16px 0 17px;
    width: 140px;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    color: #666;
}
.nexo-pip-wrapper .gallery-section .gallery-tab-buttons .gallery-tab-button::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #ccc;
}
.nexo-pip-wrapper .gallery-section .gallery-tab-buttons .gallery-tab-button.is-active {
    color: #191919;
}
.nexo-pip-wrapper .gallery-section .gallery-tab-buttons .gallery-tab-button.is-active::after {
    height: 3px;
    background-color: #1C6BBA;
}
.nexo-pip-wrapper .gallery-section .gallery-content-item {
    visibility: hidden;
    height: 0;
}
.nexo-pip-wrapper .gallery-section .gallery-content-item.is-active {
    visibility: visible;
    height: auto;
}
.nexo-pip-wrapper .gallery-section [data-tab-id="n1"] .gallery-content-pc {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.nexo-pip-wrapper .gallery-section [data-tab-id="n1"] .gallery-content-pc .gallery-item-btn {
    width: 100%;
    height: 360px;
    overflow: hidden;
}
.nexo-pip-wrapper .gallery-section [data-tab-id="n1"] .gallery-content-pc .gallery-item-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.nexo-pip-wrapper .gallery-section [data-tab-id="n1"] .gallery-content-pc .gallery-item:nth-child(1) {
    grid-column: span 3;
}
.nexo-pip-wrapper .gallery-section [data-tab-id="n1"] .gallery-content-pc .gallery-item:nth-child(5) {
    grid-column: span 2;
}
.nexo-pip-wrapper .gallery-section [data-tab-id="n1"] .gallery-content-pc .gallery-item:nth-child(7) {
    grid-column: span 3;
}

.nexo-pip-wrapper .gallery-section [data-tab-id="n2"] .gallery-content-pc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
/* E: gallery-section */

/* S: share-section */
.nexo-pip-wrapper .share-section {
    padding: 100px 0 104px;
    background-color: #f5f5f5;
}
.nexo-pip-wrapper .share-section .container {
    display: flex;
    flex-direction: column;
}
.nexo-pip-wrapper .share-section .card-cont {
    display: flex;
    gap: 20px;
}
.nexo-pip-wrapper .share-section .card-cont li {
    width: 33.33%;
    height: 200px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
}
.nexo-pip-wrapper .share-section .card-cont a {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 100%;
}
.nexo-pip-wrapper .share-section .card-cont a em {
    position: absolute;
    top: 24px;
    left: 24px;
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    line-height: 38px;
    letter-spacing: -0.96px;
}
.nexo-pip-wrapper .share-section .card-cont a::before {
    position: absolute;
    content: "";
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: url("../../assets/images/nexo/card-btn.webp") center center / contain no-repeat;
}
.nexo-pip-wrapper .share-section .note-desc {
    margin-top: 100px;
}
/* E: share-section */

/* S: Modal Style */
.modal-wrapper {
    display: none;
}
.modal-wrapper.is-active {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    background-color: rgba(245, 245, 245, 0.8);
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 1001;
}
.modal-wrapper .modal-inner {
    margin: auto;
}
.modal-wrapper .modal-content {
    position: relative;
}
.modal-wrapper .modal-close {
    position: absolute;
    right: 0;
    top: -40px;
    translate: 0 -100%;
}
.modal-wrapper .modal-close .ic {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}
.modal-wrapper .modal-close .ic svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* S: Modal Galley */
.modal-wrapper[data-modal-id="modalGalleryExterior"] .gallery-modal-content,
.modal-wrapper[data-modal-id="modalGalleryInterior"] .gallery-modal-content {
    margin: 0 auto;
    width: 1120px;
}
.modal-wrapper[data-modal-id="modalGalleryExterior"] .basic-slider,
.modal-wrapper[data-modal-id="modalGalleryInterior"] .basic-slider {
    position: relative;
}
.modal-wrapper[data-modal-id="modalGalleryExterior"] .swiper-controls,
.modal-wrapper[data-modal-id="modalGalleryInterior"] .swiper-controls {
    position: absolute;
    left: 0;
    top: 100%;
}
.modal-wrapper[data-modal-id="modalGalleryExterior"] .swiper-slide .img-box,
.modal-wrapper[data-modal-id="modalGalleryInterior"] .swiper-slide .img-box {
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-wrapper[data-modal-id="modalGalleryExterior"] .swiper-slide img,
.modal-wrapper[data-modal-id="modalGalleryInterior"] .swiper-slide img {
    width: auto !important;
    height: 70vh;
    max-width: 100%;
    max-height: 620px;
    object-fit: cover;
}
/* E: Modal Galley */

/* E: Modal Style */

@media screen and (min-width: 1921px) {
    .nexo-pip-wrapper .img-centered {
        height: auto;
    }

    .nexo-pip-wrapper .img-centered img {
        position: static;
        width: 100%;
        margin-left: 0;
    }
}

@media screen and (min-width: 1120px) {
    /* S: indicator */
    .detail-nexo-pip .navi-indicator ul li::before {
        position: absolute;
        content: "";
        left: 0;
        top: 50%;
        width: 6px;
        height: 6px;
        border: 1px solid #e9e9e9;
        border-radius: 6px;
        transform: translateY(-50%);
        background-color: #e9e9e9;
        transition: all 0.3s ease-out;
        box-sizing: border-box;
    }
    .detail-nexo-pip .navi-indicator ul li:not(.is-active):hover::before {
        height: 26px;
        border-color: #999;
        background-color: transparent;
    }
    .detail-nexo-pip .navi-indicator.type-dark ul li:not(.is-active):hover::before {
        border-color: #e9e9e9;
    }
    .detail-nexo-pip .navi-indicator ul li:not(.is-active) a {
        opacity: 0;
    }
    .detail-nexo-pip .navi-indicator ul:hover li a {
        padding: 4px 0 4px 14px;
        opacity: 1;
    }
    .detail-nexo-pip .navi-indicator ul li.is-active a {
        color: #0793ea;
    }
    .detail-nexo-pip .navi-indicator ul li.is-active::before {
        height: 26px;
        border-color: #0793ea;
        background-color: #0793ea;
    }
    .detail-nexo-pip .navi-indicator.type-dark ul li:not(.is-active) a {
        color: #eee;
    }
    /* E: indicator */

    /* S: safety-section */
    .nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul li br.pc-only {
        display: none !important;
    }
    .nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul li:not(.is-active):not(:hover) br.pc-only.is-inactive {
        display: block !important;
    }

    .nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul.is-active li:not(.is-active):not(:hover) .item-title {
        opacity: 0;
    }
    .nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul li:hover {
        flex: 0 0 610px;
    }
    .nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul li:hover::after {
        opacity: 0;
        transition: opacity 0.5s ease;
    }
    .nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul li:hover .item-title {
        width: 610px;
    }
    .nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul li:hover .item-desc {
        opacity: 1;
        display: block;
    }
    .nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul li:hover .more-btn {
        display: none;
    }
    .nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul li:nth-child(1) {
        background-size: auto 725px;
    }
    .nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul li:nth-child(1):hover,
    .nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul li:nth-child(1).is-active {
        background-image: url("../../assets/images/nexo/safety_img_01_pc.webp?V=1.0.1");
        background-size: auto 580px;
    }
    .nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul li:nth-child(2):hover,
    .nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul li:nth-child(2).is-active {
        background-image: url("../../assets/images/nexo/safety_img_02_pc.webp?V=1.0.0");
    }
    .nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul li:nth-child(3):hover,
    .nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul li:nth-child(3).is-active {
        background-image: url("../../assets/images/nexo/safety_img_03_pc.webp?V=1.0.0");
    }
    .nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul li:nth-child(4):hover,
    .nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul li:nth-child(4).is-active {
        background-image: url("../../assets/images/nexo/safety_img_04_pc.webp?V=1.0.0");
    }
    /* E: safety-section */
}

@media screen and (max-width: 1119px) {
    .nexo-pip-wrapper .contents-sec .scroll-btn .btn-inner, .nexo-pip-wrapper .contents-sec .slider-btn .btn-inner {
        transform: translateY(0);
    }

    .nexo-pip-wrapper .basic-slider .swiper,
    .modal-wrapper .basic-slider .swiper,
    .nexo-pip-wrapper .basic-slider.size-small .swiper {
        --item-size: 100%;
    }
    .nexo-pip-wrapper .basic-slider .swiper-controls,
    .modal-wrapper .basic-slider .swiper-controls {
        margin-top: 80px;
    }
    .nexo-pip-wrapper .basic-slider .swiper-slide .item-title,
    .modal-wrapper .basic-slider .swiper-slide .item-title {
        margin-top: 20px;
        font-size: 18px;
        line-height: 30px;
    }
    .nexo-pip-wrapper .basic-slider .swiper-slide .item-desc,
    .modal-wrapper .basic-slider .swiper-slide .item-desc {
        margin-top: 8px;
        font-size: 13px;
        line-height: 20px;
    }
    .nexo-pip-wrapper .swiper-pagination {
        margin-top: 40px;
        position: static;
        display: flex;
        justify-content: center;
    }
    .nexo-pip-wrapper .swiper-button-prev-v2.swiper-button-disabled,
    .nexo-pip-wrapper .swiper-button-next-v2.swiper-button-disabled {
        opacity: 0.4;
    }
    .nexo-pip-wrapper .swiper-button-prev-v2,
    .nexo-pip-wrapper .swiper-button-next-v2 {
        position: absolute;
        top: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: rgba(0, 0, 0, .45);
        z-index: 1;
    }
    .nexo-pip-wrapper .swiper-button-prev-v2::after,
    .nexo-pip-wrapper .swiper-button-next-v2::after {
        content: "";
        display: block;
        width: 16px;
        height: 16px;
    }
    .nexo-pip-wrapper .swiper-button-prev-v2 {
        left: 0;
        border-radius: 0 4px 4px 0;
    }
    .nexo-pip-wrapper .swiper-button-next-v2 {
        right: 0;
        border-radius: 4px 0 0 4px;
    }
    .nexo-pip-wrapper .swiper-button-prev-v2::after {
        background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M11%202L4%208L11%2014%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%2F%3E%3C%2Fsvg%3E");
    }
    .nexo-pip-wrapper .swiper-button-next-v2::after {
        background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M5%202L12%208L5%2014%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%2F%3E%3C%2Fsvg%3E");
    }

    .nexo-pip-wrapper .out-link,
    .nexo-pip-wrapper .out-link:hover {
        font-size: 14px;
        line-height: 22px;
    }
    .nexo-pip-wrapper .contents-sec .bg-title-area {
        left: 0;
        margin-left: 0;
        padding: 64px 20px 0;
        width: 100%;
    }
    .nexo-pip-wrapper .contents-sec .title-area .sec-title {
        font-size: 24px;
        line-height: 38px;
    }
    .nexo-pip-wrapper .contents-sec .title-area .sec-sub-title {
        font-size: 20px;
        line-height: 32px;
    }
    .nexo-pip-wrapper .contents-sec .title-area .sec-desc {
        margin-top: 8px;
        font-size: 15px;
        line-height: 24px;
    }
    .nexo-pip-wrapper .contents-sec .title-area .sec-sub-desc {
        margin-top: 10px;
        font-size: 12px;
        line-height: 20px;
    }

    .nexo-pip-wrapper .container {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .nexo-pip-wrapper .img-centered {
        height: auto;
    }
    .nexo-pip-wrapper .img-centered img {
        position: static;
        margin-left: 0;
        width: 100%;
    }

    .nexo-pip-wrapper .btn:not(.btn-middle) {
        height: 50px;
    }

    .nexo-pip-wrapper .contents-sec .scroll-btn,
    .nexo-pip-wrapper .contents-sec .slider-btn {
        bottom: 56px;
        gap: 10px;
    }
    .nexo-pip-wrapper .contents-sec .scroll-btn span,
    .nexo-pip-wrapper .contents-sec .slider-btn span {
        width: 40px;
        height: 40px;
    }
    .nexo-pip-wrapper .contents-sec .scroll-btn p,
    .nexo-pip-wrapper .contents-sec .slider-btn p {
        font-size: 12px;
        line-height: 20px;
        height: 20px;
    }

    /* S: indicator */
    .detail-nexo-pip .navi-indicator {
        top: calc(var(--banner-top-height, 0px));
        bottom: auto;
        left: 0;
        width: 100%;
        background-color: #fff;
        overflow-x: scroll;
        transform: translate3d(0, 0, 0);
    }
    .detail-nexo-pip .navi-indicator.is-active {
        transform: translate3d(0, var(--menu-wrap-height, 0px), 0);
        transition:
                transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1),
                opacity 0.3s ease;
    }
    .banner-top ~ .hmj-header ~ .detail-nexo-pip .navi-indicator,
    .detail-nexo-pip .navi-indicator.with-gnb {
        transform: translate3d(0, calc(var(--menu-wrap-height, 0px) + var(--header-height, 0px)), 0);
    }
    .banner-top ~ .hmj-header.scr-chk ~ .detail-nexo-pip .navi-indicator {
        transform: translate3d(0, var(--menu-wrap-height, 0px), 0);
    }

    .detail-nexo-pip .navi-indicator ul {
        flex-direction: row;
        gap: 0;
    }
    .detail-nexo-pip .navi-indicator ul li {
        width: auto;
        flex: 0 0 auto;
    }
    .detail-nexo-pip .navi-indicator ul li::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 3px;
        background-color: #1c6bba;
        opacity: 0;
    }
    .detail-nexo-pip .navi-indicator ul li a {
        padding: 0 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50px;
        font-size: 13px;
        font-weight: 500;
        line-height: 20px;
    }
    .detail-nexo-pip .navi-indicator ul li.is-active a {
        color: #000;
    }
    .detail-nexo-pip .navi-indicator ul li.is-active::before {
        opacity: 1;
    }
    /* E: indicator */

    /* S: Img Toggle Box Style */
    .img-toggle-box .__btn-switch {
        --btn-width: 62px;
        top: 16px;
        right: 16px;
        height: 28px;
        border-radius: 95px;
    }
    .img-toggle-box .__btn-switch .circle {
        width: 20px;
        height: 20px;
    }
    .img-toggle-box .__btn-switch .label {
        font-size: 15px;
    }
    .img-toggle-box .__btn-switch .label-on {
        left: 10px !important;
    }
    .img-toggle-box .__btn-switch .label-off {
        right: 10px !important;
    }
    .img-toggle-box.on .__btn-switch .circle {
        transform: translate3d(calc(var(--btn-width, 0px) - 28px), 0, 0);
    }
    /* E: Img Toggle Box Style */

    /* S: visual-section */
    .nexo-pip-wrapper .visual-section {
        --pt: calc(var(--header-height, 0px));
        padding-top: var(--pt);
    }
    .nexo-pip-wrapper .visual-section .title-area {
        padding-top: calc(var(--pt) + 86px);
    }
    .nexo-pip-wrapper .visual-section .text-box .tit {
        font-size: 24px;
        line-height: 38px;
    }
    .nexo-pip-wrapper .visual-section .text-box .sub-tit {
        margin-bottom: 8px;
        font-size: 18px;
        line-height: 30px;
    }
    .nexo-pip-wrapper .visual-section .text-box .price {
        margin-bottom: 32px;
        font-size: 15px;
        line-height: 24px;
    }
    .nexo-pip-wrapper .visual-section .cta-area {
        max-width: 100%;
    }
    .nexo-pip-wrapper .visual-section .cta-area .btn-box-1 {
        gap: 8px;
    }
    .nexo-pip-wrapper .visual-section .cta-area .btn {
        flex: 1;
        width: 100%;
        min-width: auto;
    }
    /* E: visual-section */

    /* S: hydrogen-section */
    .nexo-pip-wrapper .hydrogen-section {
        padding: 56px 0;
    }
    .nexo-pip-wrapper .hydrogen-section .title-area {
        padding-top: 0;
        position: static;
    }
    .nexo-pip-wrapper .hydrogen-section .title-area .tit {
        font-size: 24px;
        line-height: 38px;
    }
    .nexo-pip-wrapper .hydrogen-section .title-area .sub-tit {
        margin-top: 12px;
        font-size: 18px;
        line-height: 30px;
    }
    .nexo-pip-wrapper .hydrogen-section .title-area .desc-box {
        margin-top: 16px;
    }
    .nexo-pip-wrapper .hydrogen-section .title-area .desc {
        font-size: 16px;
        line-height: 26px;
    }
    .nexo-pip-wrapper .hydrogen-section .title-area .btn {
        margin-top: 16px;
        width: 100%;
    }
    .nexo-pip-wrapper .hydrogen-section .bg-img {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }
    .nexo-pip-wrapper .hydrogen-section .bg-img img {
        object-fit: cover;
    }
    /* E: hydrogen-section */

    /* S: lineup-section */
    .nexo-pip-wrapper .lineup-section {
        padding: 64px 0 24px;
    }
    .nexo-pip-wrapper .lineup-section .lineup-content {
        margin-top: 24px;
    }
    .nexo-pip-wrapper .lineup-section .lineup-content .swiper {
        overflow: visible;
    }
    .nexo-pip-wrapper .lineup-section .swiper-buttons {
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        align-items: center;
        width: 100%;
        height: 0;
        padding-top: 31.25%;
        padding-bottom: 31.25%;
    }
    .nexo-pip-wrapper .lineup-section .swiper-button-next-v2,
    .nexo-pip-wrapper .lineup-section .swiper-button-prev-v2 {
        top: auto;
    }
    .nexo-pip-wrapper .lineup-section .swiper-button-next-v2 {
        right: -20px;
    }
    .nexo-pip-wrapper .lineup-section .swiper-button-prev-v2 {
        left: -20px;
    }
    .nexo-pip-wrapper .lineup-section .lineup-content .lineup-item {
        max-width: 100%;
    }
    .nexo-pip-wrapper .lineup-section .lineup-content .lineup-item .item-info {
        padding: 24px 12px 40px;
    }
    .nexo-pip-wrapper .lineup-section .lineup-content .lineup-item .item-info .item-title {
        font-size: 18px;
        line-height: 30px;
    }
    .nexo-pip-wrapper .lineup-section .lineup-content .lineup-item .item-info .item-desc {
        font-size: 13px;
        line-height: 20px;
    }
    .nexo-pip-wrapper .lineup-section .lineup-content .lineup-item .item-info .item-price {
        margin-top: 24px;
    }
    .nexo-pip-wrapper .lineup-section .lineup-content .lineup-item .item-info .item-price-title {
        font-size: 13px;
        line-height: 20px;
    }
    .nexo-pip-wrapper .lineup-section .lineup-content .lineup-item .item-info .item-price-value {
        font-size: 24px;
        line-height: 38px;
    }
    .nexo-pip-wrapper .lineup-section .lineup-content .lineup-item .item-info .item-price-unit {
        font-size: 20px;
        line-height: 32px;
    }
    .nexo-pip-wrapper .lineup-section .finance-link {
        margin-top: 16px;
        padding: 14px 0;
        width: 100%;
        justify-content: center;
        gap: 8px;
        font-size: 13px;
        line-height: 20px;
    }.nexo-pip-wrapper .lineup-section .finance-link .ic img {
         width: 20px;
         height: 20px;
     }
    .nexo-pip-wrapper .lineup-section .subsidy-link {
        padding: 14px 0;
        min-width: auto;
        width: 100%;
    }
    .nexo-pip-wrapper .lineup-section .subsidy-link span {
        font-size: 13px;
    }
    /* E: lineup-section */

    /* S: highlights-section */
    .nexo-pip-wrapper .highlights-content {
        bottom: 56px;
    }
    .nexo-pip-wrapper .highlights-list {
        flex-direction: column;
    }
    .nexo-pip-wrapper .highlights-item {
        padding: 24px 0;
    }
    .nexo-pip-wrapper .highlights-item:first-child {
        padding-top: 0;
    }
    .nexo-pip-wrapper .highlights-item:last-child {
        padding-bottom: 0;
    }
    .nexo-pip-wrapper .highlights-item:not(:last-child)::after {
        top: auto;
        bottom: 0;
        width: 100%;
        height: 1px;
    }
    .nexo-pip-wrapper .highlights-item .item-title {
        margin-bottom: 4px;
        font-size: 15px;
        line-height: 24px;
    }
    .nexo-pip-wrapper .highlights-item .item-desc {
        font-size: 24px;
        line-height: 38px;
    }
    .nexo-pip-wrapper .highlights-item .item-desc .item-price-unit-large {
        font-size: 24px;
    }
    .nexo-pip-wrapper .highlights-item .item-desc sub {
        margin-left: 0;
        font-size: 20px;
    }
    /* E: highlights-section */

    /* S: exterior-section */
    .nexo-pip-wrapper .exterior-bottom-sec .exterior-bottom-content {
        padding: 64px 0 166px;
    }
    /* E: exterior-section */

    /* S: colors-section */
    .nexo-pip-wrapper .colors-section .img-toggle-box.is-active {
        display: block;
    }
    .nexo-pip-wrapper .colors-section .img-toggle-box {
        position: absolute;
        top: 20px;
        right: 0;
        z-index: 1;
        display: none;
    }
    .nexo-pip-wrapper .colors-section .img-toggle-box .__btn-switch {
        top: 0;
        --btn-width: 90px;
        height: 36px;
        background-color: rgba(255, 255, 255, 0.25);
    }
    .nexo-pip-wrapper .colors-section .img-toggle-box .__btn-switch .label {
        font-size: 15px;
    }
    .nexo-pip-wrapper .colors-section .img-toggle-box .__btn-switch .label-on {
        left: 12px !important;
    }
    .nexo-pip-wrapper .colors-section .img-toggle-box .__btn-switch .label-off {
        right: 12px !important;
    }
    .nexo-pip-wrapper .colors-section .colors-content .contain {
        right: 20px;
        left: 20px;
        margin-left: 0;
        width: auto;
    }
    .nexo-pip-wrapper .colors-section .colors-select-area {
        padding: 16px;
        bottom: 56px;
        flex-direction: column;
        border-radius: 16px;
    }
    .nexo-pip-wrapper .colors-section .colors-tab-buttons {
        left: 0;
        right: 0;
        top: 126px;
    }
    .nexo-pip-wrapper .colors-section .colors-tab-btn {
        flex: 1;
        width: auto;
        font-size: 13px;
        line-height: 20px;
        color: #ccc;
    }
    .nexo-pip-wrapper .colors-section .colors-tab-btn::before {
        background-color: #fff;
    }
    .nexo-pip-wrapper .colors-section .colors-trim-buttons {
        margin-bottom: 16px;
    }
    .nexo-pip-wrapper .colors-section .colors-trim-buttons .inner {
        margin: 0;
        padding: 3px;
        display: flex;
        width: 100%;
    }
    .nexo-pip-wrapper .colors-section .colors-trim-btn {
        flex: 1;
        padding: 0;
        height: 36px;
        font-size: 13px;
        line-height: 36px;
    }
    .nexo-pip-wrapper .colors-section .colors-color-chip-buttons {
        flex-direction: column-reverse;
    }
    .nexo-pip-wrapper .colors-section .colors-color-chip-buttons .selected-label {
        margin-right: 0;
        margin-top: 8px;
        font-size: 13px;
        line-height: 20px;
        text-align: center;
    }
    .nexo-pip-wrapper .colors-section .colors-color-chip-buttons .color-list {
        justify-content: center;
        width: 100%;
    }
    .nexo-pip-wrapper .colors-section .colors-color-chip-buttons .color-item {
        padding-bottom: min(16.6667%, 48px);
        width: auto;
        height: 0;
    }
    .nexo-pip-wrapper .colors-section .colors-color-chip-buttons .color-item.exterior {
        flex: 0 0 16.6667%;
        max-width: 48px;
    }
    .nexo-pip-wrapper .colors-section .colors-color-chip-buttons .color-item.interior {
        flex: 1;
    }
    .nexo-pip-wrapper .colors-section .colors-color-chip-buttons .color-item img {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }
    .nexo-pip-wrapper .colors-section .colors-preview {
        padding-bottom: 200%;
    }
    /* E: colors-section */

    /* S: digital-showroom-section */
    .nexo-pip-wrapper .digital-showroom-section .bg-title-area {
        padding-bottom: 40px;
        height: 100%;
    }
    .nexo-pip-wrapper .digital-showroom-section .title-area .btn {
        margin-top: auto;
        max-width: none;
        width: 100%;
    }
    /* E: digital-showroom-section */

    /* S: interior-section */
    .nexo-pip-wrapper .interior-section .interior-content {
        bottom: 56px;
    }
    .nexo-pip-wrapper .interior-bottom-sec .interior-bottom-content {
        padding: 64px 0 166px;
    }
    .nexo-pip-wrapper .interior-bottom-sec .interior-bottom-content .title-area {
        margin-bottom: 24px;
    }
    .nexo-pip-wrapper .interior-bottom-sec .note-desc {
        margin-top: 8px;
    }
    /* E: interior-section */

    /* S: convenience-section */
    .nexo-pip-wrapper .convenience-section .convenience-content {
        padding: 64px 0 166px;
    }
    .nexo-pip-wrapper .convenience-bottom-sec .convenience-bottom-content .note-desc {
        margin-top: 8px;
    }
    /* E: convenience-section */

    /* S: driving-section */
    .nexo-pip-wrapper .driving-section .driving-content {
        bottom: 166px;
    }
    .nexo-pip-wrapper .driving-section .driving-content .driving-list {
        flex-direction: column;
        gap: 16px;
    }
    .nexo-pip-wrapper .driving-section .driving-content .driving-item .item-title {
        margin-bottom: 4px;
        font-size: 15px;
        line-height: 24px;
    }
    .nexo-pip-wrapper .driving-section .driving-content .driving-item .item-title-unit {
        font-size: 10px;
        line-height: 16px;
    }
    .nexo-pip-wrapper .driving-section .driving-content .driving-item .item-desc {
        font-size: 24px;
        line-height: 38px;
    }
    .nexo-pip-wrapper .driving-section .driving-content .driving-item .item-price-unit {
        font-size: 18px;
        line-height: 30px;
    }
    .nexo-pip-wrapper .driving-section .driving-content .note-desc {
        margin-top: 40px;
    }
    .nexo-pip-wrapper .driving-section .driving-content .note-desc + .note-desc {
        margin-top: 2px;
    }
    .nexo-pip-wrapper .driving-bottom-sec .driving-bottom-content {
        padding: 64px 0 166px;
    }
    .nexo-pip-wrapper .driving-bottom-sec .driving-bottom-content .title-area {
        margin-bottom: 24px;
    }
    /* E: driving-section */

    /* S: charging-section */
    .nexo-pip-wrapper .charging-section .charging-content {
        bottom: 56px;
    }
    .nexo-pip-wrapper .charging-section .charging-content .content-tit {
        margin-bottom: 24px;
        font-size: 18px;
        line-height: 30px;
    }
    .nexo-pip-wrapper .charging-section .charging-content .content-tit span:nth-child(1) {
        font-size: 24px;
        line-height: 38px;
    }
    .nexo-pip-wrapper .charging-section .charging-content .content-tit span:nth-child(2) {
        font-size: 18px;
        line-height: 30px;
    }
    .nexo-pip-wrapper .charging-section .charging-content .content-tit .unit {
        position: static;
        top: 0;
        left: 0;
        padding-left: 0;
        font-size: 10px;
        vertical-align: super;
    }
    .nexo-pip-wrapper .charging-section .charging-content .note-desc {
        margin-top: 80px;
    }
    /* E: charging-section */

    /* S: safety-section */
    .nexo-pip-wrapper .safety-section .safety-contents .safety-contents-inner {
        padding: 64px 0 182px;
    }
    .nexo-pip-wrapper .safety-section .safety-contents .accordion-area {
        margin-top: 40px;
        width: 100%;
        max-width: auto;
        height: auto;
    }
    .nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul {
        flex-direction: column;
    }
    .nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul li {
        flex: 0 0 auto !important;
        padding-bottom: 32.5%;
        height: 0;
        background-position: center;
        transition: none;
    }
    .nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul li:nth-child(1) {
        background-image: url("../../assets/images/nexo/safety_img_01_inactive_mo.webp?V=1.0.1");
    }
    .nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul li:nth-child(2) {
        background-image: url("../../assets/images/nexo/safety_img_02_inactive_mo.webp?V=1.0.0");
    }
    .nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul li:nth-child(3) {
        background-image: url("../../assets/images/nexo/safety_img_03_inactive_mo.webp?V=1.0.0");
    }
    .nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul li:nth-child(4) {
        background-image: url("../../assets/images/nexo/safety_img_04_inactive_mo.webp?V=1.0.0");
    }
    .nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul li:nth-child(1).is-active {
        background-image: url("../../assets/images/nexo/safety_img_01_mo.webp?V=1.0.1");
    }
    .nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul li:nth-child(2).is-active {
        background-image: url("../../assets/images/nexo/safety_img_02_mo.webp?V=1.0.0");
    }
    .nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul li:nth-child(3).is-active {
        background-image: url("../../assets/images/nexo/safety_img_03_mo.webp?V=1.0.0");
    }
    .nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul li:nth-child(4).is-active {
        background-image: url("../../assets/images/nexo/safety_img_04_mo.webp?V=1.0.0");
    }
    .nexo-pip-wrapper .safety-section .safety-contents .accordion-area .accordion-item {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        padding: 24px 80px 24px 24px;
        gap: 8px;
    }
    .nexo-pip-wrapper .safety-section .safety-contents .accordion-area .accordion-item .item-title {
        padding: 0;
        width: auto;
        font-size: 14px;
        line-height: 22px;
        margin-top: auto;
        margin-bottom: auto;
    }
    .nexo-pip-wrapper .safety-section .safety-contents .accordion-area .accordion-item .item-desc {
        padding: 0;
        width: auto;
        transition: all 0.2s ease;
    }
    .nexo-pip-wrapper .safety-section .safety-contents .accordion-area .accordion-item .item-desc p {
        font-size: 12px;
        line-height: 20px;
    }
    .nexo-pip-wrapper .safety-section .safety-contents .accordion-area .accordion-item .more-btn {
        bottom: auto;
        top: 50%;
        margin-top: -12px;
        width: 24px;
        height: 24px;
    }

    .nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul li br.mo-only {
        display: none !important;
    }
    .nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul li:not(.is-active) br.mo-only.is-inactive {
        display: block !important;
    }
    .nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul li.is-active br.mo-only.is-active {
        display: block !important;
    }

    .nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul li.is-active .item-title {
        width: auto;
    }
    .nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul li.is-active {
        padding-bottom: 131.25%;
    }
    .nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul li.is-active .accordion-item {
        padding: 24px 24px 40px;
        justify-content: flex-end;
    }
    .nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul li.is-active .item-desc {
        opacity: 1;
        visibility: visible;
    }
    .nexo-pip-wrapper .safety-section .safety-contents .accordion-area ul li.is-active .item-title {
        margin-top: 0;
        margin-bottom: 0;
    }
    /* E: safety-section */

    /* S: fcev-section */
    .nexo-pip-wrapper .fcev-section .fcev-content {
        padding: 64px 0 40px;
    }
    .nexo-pip-wrapper .fcev-section .fcev-content .container {
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    .nexo-pip-wrapper .fcev-section .fcev-content .tit {
        margin-bottom: auto;
        font-size: 24px;
        line-height: 38px;
    }
    .nexo-pip-wrapper .fcev-section .fcev-content .desc {
        margin-bottom: 40px;
        font-size: 13px;
        line-height: 20px;
    }
    .nexo-pip-wrapper .fcev-section .fcev-content .btn {
        max-width: none;
        width: 100%;
    }
    .nexo-pip-wrapper .fcev-section .bg-img {
        background-color: #000;
    }
    /* E: fcev-section */

    /* S: considering-section */
    .nexo-pip-wrapper .considering-section {
        background-color: #fff;
    }
    .nexo-pip-wrapper .considering-section .considering-content {
        padding: 64px 0 24px;
    }
    .nexo-pip-wrapper .considering-section .considering-content .tit {
        margin-bottom: 24px;
        font-size: 24px;
        line-height: 38px;
    }
    .nexo-pip-wrapper .considering-section .considering-content .considering-list {
        overflow: visible;
    }
    .nexo-pip-wrapper .considering-section .considering-content .considering-item {
        max-width: none;
    }
    .nexo-pip-wrapper .considering-section .considering-list .swiper-buttons {
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        align-items: center;
        width: 100%;
        height: 0;
        padding-top: 37.5%;
        padding-bottom: 37.5%;
    }
    .nexo-pip-wrapper .considering-section .considering-list .swiper-button-next-v2,
    .nexo-pip-wrapper .considering-section .considering-list .swiper-button-prev-v2 {
        top: auto;
    }
    .nexo-pip-wrapper .considering-section .considering-list .swiper-button-next-v2 {
        right: -20px;
    }
    .nexo-pip-wrapper .considering-section .considering-list .swiper-button-prev-v2 {
        left: -20px;
    }
    .nexo-pip-wrapper .considering-section .considering-content .considering-item .text-box {
        padding: 24px 24px 84px;
        background-color: #fafafa;
    }
    .nexo-pip-wrapper .considering-section .considering-content .considering-item .text-box .item-tit {
        font-size: 16px;
        line-height: 26px;
    }
    .nexo-pip-wrapper .considering-section .considering-content .considering-item .text-box .item-desc {
        font-size: 13px;
        line-height: 20px;
    }
    .nexo-pip-wrapper .considering-section .considering-content .considering-item .text-box .btn-link {
        bottom: 24px;
        left: 24px;
    }
    .nexo-pip-wrapper .considering-section .considering-content .considering-item .text-box .btn-link span {
        font-size: 13px;
        line-height: 20px;
    }
    /* E: considering-section */

    /* S: smartsense-section */
    .nexo-pip-wrapper .smartsense-section .smartsense-content {
        padding: 64px 0 166px;
    }
    .nexo-pip-wrapper .smartsense-section .smartsense-content .title-area {
        margin-bottom: 40px;
    }
    /* E: smartsense-section */

    /* S: contact-section */
    .nexo-pip-wrapper .contact-section {
        padding: 64px 0 56px;
        overflow: hidden;
    }
    .nexo-pip-wrapper .contact-section .content-tit {
        margin-bottom: 24px;
        font-size: 24px;
        line-height: 38px;
    }
    .nexo-pip-wrapper .contact-section .contact-list {
        flex-direction: column;
        gap: 16px;
    }
    .nexo-pip-wrapper .contact-section .contact-item {
        padding: 32px 20px;
    }
    .nexo-pip-wrapper .contact-section .contact-item .item-tit {
        font-size: 13px;
    }
    .nexo-pip-wrapper .contact-section .contact-info-box .info-tit {
        margin-bottom: 16px;
        font-size: 15px;
        line-height: 24px;
    }
    .nexo-pip-wrapper .contact-section .contact-info-box .info-groups {
        padding: 8px 0;
    }
    .nexo-pip-wrapper .contact-section .contact-info-box .info-groups .info-group-item {
        padding: 0 8px;
    }
    .nexo-pip-wrapper .contact-section .contact-info-box .info-groups .info-group-tit {
        padding-left: 12px;
        font-size: 14px;
        line-height: 22px;
    }
    .nexo-pip-wrapper .contact-section .contact-info-box .info-groups .info-group-tit::before {
        top: 9px;
    }
    .nexo-pip-wrapper .contact-section .contact-info-box .info-group {
        padding-left: 0;
        flex-direction: column;
        gap: 16px;
    }
    .nexo-pip-wrapper .contact-section .contact-info-box .info-item {
        grid-template-columns: 24px 72px 1fr;
        align-items: flex-start;
    }
    .nexo-pip-wrapper .contact-section .contact-info-box .info-item .ic {
        height: 20px;
    }
    .nexo-pip-wrapper .contact-section .contact-info-box .info-item .info-item-tit {
        margin-right: 12px;
        font-size: 13px;
        line-height: 20px;
    }
    .nexo-pip-wrapper .contact-section .contact-info-box .info-item .info-item-text {
        font-size: 13px;
        line-height: 20px;
    }
    .nexo-pip-wrapper .contact-section .notice-text {
        margin-top: 16px;
        padding-left: 16px;
        text-indent: -16px;
        font-size: 12px;
        line-height: 20px;
    }
    .nexo-pip-wrapper .contact-section .out-link-form {
        margin-left: 8px;
    }
    .nexo-pip-wrapper .contact-section .out-link-form .ic {
        margin-right: 6px;
    }
    .nexo-pip-wrapper .contact-section .out-link-form .out-link {
        font-size: 12px;
        line-height: 20px;
    }
    .nexo-pip-wrapper .contact-section .out-link-email .out-link {
        font-size: 13px;
        line-height: 20px;
    }
    .nexo-pip-wrapper .contact-section .out-link-email {
        margin-left: 8px;
    }
    /* E: contact-section */

    /* S: gallery-section */
    .nexo-pip-wrapper .gallery-section {
        padding: 64px 0 40px;
        overflow: hidden;
    }
    .nexo-pip-wrapper .gallery-section .gallery-content-wrapper .tit {
        margin-bottom: 24px;
        font-size: 24px;
        line-height: 38px;
    }
    .nexo-pip-wrapper .gallery-section .gallery-tab-buttons {
        position: static;
        margin-bottom: 40px;
    }
    .nexo-pip-wrapper .gallery-section .gallery-tab-buttons .gallery-tab-button {
        flex: 1;
        min-width: auto;
        width: auto;
        font-size: 13px;
        line-height: 20px;
    }
    .nexo-pip-wrapper .gallery-section .gallery-content {
        margin: 0 -20px;
    }
    .nexo-pip-wrapper .gallery-section .gallery-item img {
        width: 100%;
    }
    .nexo-pip-wrapper .gallery-section .gallery-thumb-list {
        margin-top: 16px;
        display: flex;
        padding: 0 20px;
    }
    .nexo-pip-wrapper .gallery-section .gallery-thumb-list .gallery-thumb-inner {
        margin: 0 auto;
        width: calc(90/320*100%);
        overflow: visible;
    }
    .nexo-pip-wrapper .gallery-section .gallery-thumb-item {
        width: calc(90/320*100%);
        height: auto;
    }
    .nexo-pip-wrapper .gallery-section .gallery-thumb-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        pointer-events: none;
    }

    .nexo-pip-wrapper .gallery-section .gallery-content-mo .swiper-button-next-v2,
    .nexo-pip-wrapper .gallery-section .gallery-content-mo .swiper-button-prev-v2 {
        margin-top: -20px;
    }
    /* E: gallery-section */

    /* S: share-section */
    .nexo-pip-wrapper .share-section {
        padding: 80px 0 56px;
    }
    .nexo-pip-wrapper .share-section .card-cont {
        flex-direction: column;
    }
    .nexo-pip-wrapper .share-section .card-cont li {
        width: 100%;
        height: auto;
    }
    .nexo-pip-wrapper .share-section .card-cont li img {
        width: 100%;
    }
    .nexo-pip-wrapper .share-section .card-cont a em {
        top: 50%;
        transform: translateY(-50%);
        font-size: 18px;
        line-height: 30px;
    }
    .nexo-pip-wrapper .share-section .card-cont a::before {
        top: 50%;
        transform: translateY(-50%);
        width: 45px;
        height: 45px;
    }
    .nexo-pip-wrapper .share-section .note-desc {
        margin-top: 80px;
    }
    /* E: share-section */

    /* S: Modal Style */
    .modal-wrapper.is-active {
        padding: 20px;
    }
    .modal-wrapper .modal-inner {
        width: 100%;
    }
    .modal-wrapper .modal-close {
        right: -4px;
    }
    .modal-wrapper .modal-close .ic {
        padding: 4px;
    }
    /* E: Modal Style */
}
