.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;
    overflow: hidden;
}

.ani-clip-up > span {
    display: block;
    translate: 0 100%;
    animation-name: ClipUp;
    will-change: translate;
}

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

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

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

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

.glitch {
    color: #fff;
    font-size: 40px;
    line-height: 1.5;
    white-space: nowrap;
    font-weight: 500;
    position: relative;
    margin: 0 auto;
    user-select: none;
}

.glitch::after,
.glitch::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    color: #fff;
    background-color: #060010;
    overflow: hidden;
    clip-path: inset(0 0 0 0);
}

.glitch:not(.enable-on-hover)::after {
    left: 10px;
    text-shadow: var(--after-shadow, -10px 0 red);
    animation: animate-glitch var(--after-duration, 3s) infinite linear alternate-reverse;
}
.glitch:not(.enable-on-hover)::before {
    left: -10px;
    text-shadow: var(--before-shadow, 10px 0 cyan);
    animation: animate-glitch var(--before-duration, 2s) infinite linear alternate-reverse;
}

.glitch.enable-on-hover::after,
.glitch.enable-on-hover::before {
    content: "";
    opacity: 0;
    animation: none;
}

.glitch.enable-on-hover:hover::after {
    content: attr(data-text);
    opacity: 1;
    left: 10px;
    text-shadow: var(--after-shadow, -10px 0 red);
    animation: animate-glitch var(--after-duration, 3s) infinite linear alternate-reverse;
}
.glitch.enable-on-hover:hover::before {
    content: attr(data-text);
    opacity: 1;
    left: -10px;
    text-shadow: var(--before-shadow, 10px 0 cyan);
    animation: animate-glitch var(--before-duration, 2s) infinite linear alternate-reverse;
}

@keyframes animate-glitch {
    0% {
        clip-path: inset(20% 0 50% 0);
    }
    5% {
        clip-path: inset(10% 0 60% 0);
    }
    10% {
        clip-path: inset(15% 0 55% 0);
    }
    15% {
        clip-path: inset(25% 0 35% 0);
    }
    20% {
        clip-path: inset(30% 0 40% 0);
    }
    25% {
        clip-path: inset(40% 0 20% 0);
    }
    30% {
        clip-path: inset(10% 0 60% 0);
    }
    35% {
        clip-path: inset(15% 0 55% 0);
    }
    40% {
        clip-path: inset(25% 0 35% 0);
    }
    45% {
        clip-path: inset(30% 0 40% 0);
    }
    50% {
        clip-path: inset(20% 0 50% 0);
    }
    55% {
        clip-path: inset(10% 0 60% 0);
    }
    60% {
        clip-path: inset(15% 0 55% 0);
    }
    65% {
        clip-path: inset(25% 0 35% 0);
    }
    70% {
        clip-path: inset(30% 0 40% 0);
    }
    75% {
        clip-path: inset(40% 0 20% 0);
    }
    80% {
        clip-path: inset(20% 0 50% 0);
    }
    85% {
        clip-path: inset(10% 0 60% 0);
    }
    90% {
        clip-path: inset(15% 0 55% 0);
    }
    95% {
        clip-path: inset(25% 0 35% 0);
    }
    100% {
        clip-path: inset(30% 0 40% 0);
    }
}

.lenis-scrolling iframe {
    pointer-events: none;
}

body {
    -ms-overflow-style: none;
}
.insteroid-wrapper {
    color: #fff;
    background-color: #000;
}
.insteroid-wrapper img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}
.insteroid-wrapper img.img-full {
    width: 100%;
    max-width: none;
}

.insteroid-wrapper .img-centered {
    position: relative;
    height: var(--height);
    overflow: hidden;
}
.insteroid-wrapper .img-centered img {
    position: absolute;
    left: 50%;
    top: 0;
    width: 1920px;
    height: 100%;
    margin-left: -960px;
    max-width: none;
}

.insteroid-wrapper .move-detail {
    --color: #999;
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 22px;
    color: var(--color);
}
.insteroid-wrapper .move-detail::after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-color: var(--color);
    mask: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.67383 2.37937L5.32462 1.62012L12.7675 7.99975L5.32462 14.3794L4.67383 13.6201L11.2302 7.99875L4.67383 2.37937Z' fill='black'/%3E%3C/svg%3E")
        center -1px/16px no-repeat;
    margin-left: 4px;
}

.hmj-container.insteroid-wrapper {
    padding: 0;
}
.insteroid-wrapper .contents-sec {
    padding: 80px 0;
    position: relative;
    display: block;
    font-size: 16px;
}
.insteroid-wrapper .contents-sec .title-area .sec-head-tagline {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
}
.insteroid-wrapper .contents-sec .title-area .sec-title {
    font-size: 40px;
    font-weight: 500;
    line-height: 64px;
    color: #fff;
}
.insteroid-wrapper .contents-sec .title-area .sec-sub-title {
    font-size: 32px;
    font-weight: 500;
    line-height: 52px;
}
.insteroid-wrapper .contents-sec .title-area .sec-desc {
    margin-top: 8px;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}
.insteroid-wrapper .contents-sec .title-area .sec-sub-desc {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}
.insteroid-wrapper .container {
    width: 1120px;
    margin: 0 auto;
}
.insteroid-wrapper .cont-wrapper {
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.insteroid-wrapper .cont-wrapper .img-box {
    width: 100%;
    height: auto;
}
.insteroid-wrapper .cont-wrapper .text-box {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}
.insteroid-wrapper .out-link,
.insteroid-wrapper .out-link:hover {
    color: #1c6bba;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    text-decoration-line: underline;
}

.insteroid-wrapper .deco-line {
    display: flex;
    justify-content: center;
}
.insteroid-wrapper .deco-line img {
    max-width: none;
    width: 1160px;
}

/* section1 */

/* media-section */
.insteroid-wrapper .media-section {
    padding: 104px 0;
}
.insteroid-wrapper .media-section .cont-area {
    margin-top: 60px;
}
.insteroid-wrapper .media-section .youtube-box {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
}
.insteroid-wrapper .media-section .youtube-box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.insteroid-wrapper .media-section .btn-thumb-area {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.insteroid-wrapper .media-section .btn-thumb-area .btn-thumb {
    position: absolute;
    width: 100%;
    height: 100%;
}
.insteroid-wrapper .media-section .btn-thumb-area .btn-thumb img {
    width: 100%;
    height: 100%;
}
.insteroid-wrapper .media-section .btn-thumb-area .btn-thumb .play-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 96px;
    height: 96px;
}
.insteroid-wrapper .media-section .desc {
    margin-top: 60px;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
}

/* concept-section */
.insteroid-wrapper .concept-section {
    padding: 104px 0;
}
.insteroid-wrapper .concept-section .deco-line {
    margin-bottom: 40px;
}
.insteroid-wrapper .concept-section .cont-area {
    margin-top: 80px;
    width: 100%;
    overflow: hidden;
}
.insteroid-wrapper .concept-section .cont-area ul {
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
}
.insteroid-wrapper .concept-section .cont-area .cont-box {
    position: relative;
    flex: 1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
    transition: all 0.5s ease;
}
.insteroid-wrapper .concept-section .cont-area .cont-box.box1 {
    background-image: url(../../images/brandstory/insteroid/concept_img_01_pc.jpg);
    background-position: center;
}
.insteroid-wrapper .concept-section .cont-area .cont-box.box2 {
    background-image: url(../../images/brandstory/insteroid/concept_img_02_pc.jpg);
    background-position: center;
}
.insteroid-wrapper .concept-section .cont-area .cont-box .cont-box-inner {
    width: 100%;
    display: block;
}
.insteroid-wrapper .concept-section .cont-area .cont-box .cont-box-inner .cont-btn {
    position: relative;
    padding: 32px;
    width: 100%;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    z-index: 1;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.5s ease;
    cursor: auto;
}
.insteroid-wrapper .concept-section .cont-area .cont-box:hover {
    flex: 0 0 800px;
    background-size: 800px auto;
}
.insteroid-wrapper .concept-section .cont-area .cont-box:hover .cont-box-inner .cont-btn {
    position: relative;
    width: 100%;
    background: rgba(0, 0, 0, 0);
}
.insteroid-wrapper .concept-section .cont-area .cont-box::after {
    position: absolute;
    content: "";
    top: 24px;
    right: 24px;
    display: inline-block;
    width: 40px;
    height: 40px;
    background: url(../../images/brandstory/insteroid/ico-plus-btn.svg) no-repeat center / 100%;
    z-index: 2;
    transition: display 0.5s ease;
}
.insteroid-wrapper .concept-section .cont-area .cont-box:hover::after {
    display: none;
}
.insteroid-wrapper .concept-section .cont-area .cont-box .img-box {
    position: absolute;
    left: 32px;
    top: 32px;
    width: 92px;
    height: 82px;
}
.insteroid-wrapper .concept-section .cont-area .cont-box:hover .text-area {
    opacity: 1;
    transition: opacity 0.3s ease 0.5s;
}
.insteroid-wrapper .concept-section .cont-area .cont-box .text-area {
    opacity: 0;
    width: 100%;
    text-align: left;
}
.insteroid-wrapper .concept-section .cont-area .cont-box .text-area .tit {
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    color: #fff;
}
.insteroid-wrapper .concept-section .cont-area .cont-box .text-area .desc {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #ccc;
}
.insteroid-wrapper .concept-section .cont-area .cont-box .text-area .note {
    margin-top: 8px;
    font-size: 12px;
    line-height: 20px;
    color: #999;
}
.insteroid-wrapper .concept-section .cont-area .cont-box .text-area .sub-txt-2 {
    margin-top: 8px;
    font-size: 12px;
    line-height: 20px;
    color: #999;
}
/* concept-section */

/* boost-section */
.insteroid-wrapper .boost-section {
    padding: 40px 0;
    overflow: hidden;
}
.insteroid-wrapper .boost-section .cont-area {
    display: flex;
    align-items: center;
    gap: 40px;
}
.insteroid-wrapper .boost-section .character-box {
    flex: 0 0 328px;
}
.insteroid-wrapper .boost-section .character-box img {
    width: 100%;
}
.insteroid-wrapper .boost-section .text-box {
    flex: 1;
}
.insteroid-wrapper .boost-section .text-box .sub-tit {
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
}
.insteroid-wrapper .boost-section .text-box .glitch-box .glitch {
    font-size: 40px;
    line-height: 48px;
}
.insteroid-wrapper .boost-section .text-box .tit {
    font-size: 40px;
    font-weight: 500;
    line-height: 64px;
}
.insteroid-wrapper .boost-section .text-box .desc {
    margin-top: 20px;
    font-size: 16px;
    line-height: 26px;
}
.insteroid-wrapper .boost-section .deco-line {
    margin-top: 40px;
}

/* experience-section */
.insteroid-wrapper .experience-section {
    padding: 104px 0;
    overflow: hidden;
}
.insteroid-wrapper .experience-section .cont-area {
    margin-top: 60px;
    padding: 104px 0 120px;
    position: relative;
}
.insteroid-wrapper .experience-section .deco {
    position: absolute;
    left: 0;
    display: flex;
    width: 100%;
}
.insteroid-wrapper .experience-section .deco img {
    max-width: none;
}
.insteroid-wrapper .experience-section .deco.deco-top {
    left: 0;
    top: 0;
}
.insteroid-wrapper .experience-section .deco.deco-top img {
    width: 1127px;
}
.insteroid-wrapper .experience-section .deco.deco-bottom {
    right: 0;
    bottom: 0;
}
.insteroid-wrapper .experience-section .deco.deco-bottom img {
    width: 1127px;
}
.insteroid-wrapper .experience-section .glitch-box-group {
    position: absolute;
    left: 0;
    bottom: 10px;
}
.insteroid-wrapper .experience-section .glitch-box-group .glitch-box {
    height: 40px;
}
.insteroid-wrapper .experience-section .experience-swiper {
    overflow: visible;
}
.insteroid-wrapper .experience-section .swiper-nav [class*="swiper-button-"] {
    margin-top: -40px;
    width: 80px;
    height: 80px;
}
.insteroid-wrapper .experience-section .swiper-nav [class*="swiper-button-"] img {
    width: 100%;
    height: 100%;
}
.insteroid-wrapper .experience-section .swiper-nav .swiper-button-next {
    right: 20px;
}
.insteroid-wrapper .experience-section .swiper-nav .swiper-button-prev {
    left: 20px;
}

/* information-section */
.insteroid-wrapper .information-section {
    padding: 104px 0;
    background: url("../../images/brandstory/insteroid/jms_info_bg_pc.jpg") center center / cover no-repeat;
}
.insteroid-wrapper .information-section .cont-area {
    margin-top: 60px;
}
.insteroid-wrapper .information-section .information-kv {
    position: relative;
    margin-bottom: 60px;
}
.insteroid-wrapper .information-section .information-kv::after,
.insteroid-wrapper .information-section .information-kv::before {
    content: "";
    position: absolute;
    pointer-events: none;
}
.insteroid-wrapper .information-section .information-kv::after {
    right: calc(100% + 40px);
    top: 78px;
    width: 160px;
    height: 120px;
    background: url("../../images/brandstory/insteroid/jms_info_deco_01.png") center center / cover no-repeat;
}
.insteroid-wrapper .information-section .information-kv::before {
    left: calc(100% + 20px);
    top: -142px;
    width: 100px;
    height: 75px;
    background: url("../../images/brandstory/insteroid/jms_info_deco_02.png") center center / cover no-repeat;
}
.insteroid-wrapper .information-section .information-cont {
    display: flex;
    gap: 40px;
}
.insteroid-wrapper .information-section .information-cont .img-box {
    flex: 1;
}
.insteroid-wrapper .information-section .information-cont .text-box {
    flex: 0 0 520px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.insteroid-wrapper .information-section .information-cont .info-item {
    display: flex;
    font-size: 16px;
    line-height: 26px;
}
.insteroid-wrapper .information-section .information-cont .info-item .info-item-title {
    flex: 0 0 72px;
    font-weight: 500;
}
.insteroid-wrapper .information-section .information-cont .info-item .info-item-desc {
    flex: 1;
}
.insteroid-wrapper .information-section .information-cont .info-item .info-item-desc .small-text {
    margin-top: 16px;
    font-size: 12px;
    line-height: 20px;
    color: #666;
}

/* gallery-section */
.insteroid-wrapper .gallery-section {
    overflow: hidden;
}
.insteroid-wrapper .gallery-section .cont-area {
    margin: 48px auto 40px;
}
.insteroid-wrapper .gallery-section .img-box {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}
.insteroid-wrapper .gallery-section .img-box:last-child {
    margin-bottom: 24px;
}
.insteroid-wrapper .gallery-section .img-box button {
    overflow: hidden;
}
.insteroid-wrapper .gallery-section .img-box img {
    transition: transform 0.8s ease;
}
.insteroid-wrapper .gallery-section .img-box img:hover {
    transform: scale(1.1);
}
.insteroid-wrapper .gallery-section .txt-area {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    color: #999;
}
/* gallery-section */

/* outro-section */
.insteroid-wrapper .outro-section {
    padding: 80px 0;
}
.insteroid-wrapper .outro-section .outro-tit {
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
}
.insteroid-wrapper .outro-section .outro-desc {
    margin-top: 16px;
    font-size: 16px;
    line-height: 26px;
}
.insteroid-wrapper .outro-section .cont-area {
    margin-top: 40px;
}
.insteroid-wrapper .outro-section .cont-area .cont-tit {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 26px;
}
.insteroid-wrapper .outro-section .cont-area .sns-list {
    display: flex;
    gap: 32px;
}
.insteroid-wrapper .outro-section .cont-area .sns-list .sns-item {
    flex: 1;
    padding: 40px;
    border: 1px solid #ccc;
    border-radius: 8px;
}
.insteroid-wrapper .outro-section .cont-area .sns-list .sns-item .sns-item-title {
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
}
.insteroid-wrapper .outro-section .cont-area .sns-list .sns-item .out-link {
    font-size: 18px;
    line-height: 30px;
    text-underline-position: under;
}

/* link-banner-section */
.insteroid-wrapper .link-banner-sec {
    padding: 40px 0;
}
.insteroid-wrapper .link-banner-sec .banner-content-box {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.insteroid-wrapper .link-banner-sec .banner-content-box .banner-text {
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 30px;
}

.insteroid-wrapper .link-banner-sec .banner-content-box .banner-btn {
    display: flex;
    justify-content: center;
    width: 100%;
}

.insteroid-wrapper .link-banner-sec .banner-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.insteroid-wrapper .link-banner-sec .banner-img-box a {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
}

.insteroid-wrapper .link-banner-sec .banner-img-box a .banner-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    left: 72px;
    top: 50%;
    transform: translateY(-50%);
}

.insteroid-wrapper .link-banner-sec .banner-img-box a .banner-text p {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    line-height: 38px;
}
.insteroid-wrapper .link-banner-sec .banner-img-box .move-detail {
    --color: #fff;
}

/* share-section */
.insteroid-wrapper .share-section {
    padding: 40px 0 80px;
}
.insteroid-wrapper .share-section .container {
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.insteroid-wrapper .share-section .card-cont {
    display: flex;
    gap: 20px;
}
.insteroid-wrapper .share-section .card-cont li {
    width: 33.33%;
    height: 200px;
    cursor: pointer;
    overflow: hidden;
}
.insteroid-wrapper .share-section .card-cont a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}
.insteroid-wrapper .share-section .card-cont a h5 {
    position: absolute;
    top: 24px;
    left: 24px;
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    line-height: 38px;
    letter-spacing: -0.96px;
}
.insteroid-wrapper .share-section .card-cont a::before {
    position: absolute;
    content: "";
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: url("../../images/brandstory/insteroid/card-btn.png") center center / contain no-repeat;
}
.insteroid-wrapper .share-cont {
    display: flex;
    flex-direction: column;
    gap: 17px;
}
.insteroid-wrapper .share-cont p {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
}
.insteroid-wrapper .share-cont .link-sns {
    display: flex;
    align-items: center;
    gap: 32px;
}
.insteroid-wrapper .share-cont .link-sns li {
    width: 30px;
    height: 30px;
}

/* popup */
.layer-popup-wrap.popup-example .layer-popup-body .layer-cont {
    display: flex;
    flex-direction: column;
}
.layer-popup-wrap.popup-example .layer-scroll {
    flex: 1 0 calc(100% - 128px);
    height: calc(100% - 128px);
    overflow-y: auto;
}
.layer-popup-wrap.popup-example .layer-btn-area {
    margin-top: 32px;
}

/* S: Swiper */
.modal-wrapper .large-slide-sec .swiper-inner {
    margin: 0 auto;
    padding-top: 80px;
    width: 1120px;
}
.modal-wrapper .large-slide-sec .swiper,
.insteroid-wrapper .large-slide-sec .swiper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    overflow: visible;
}
.modal-wrapper .large-slide-sec .swiper {
    overflow: hidden;
}
.modal-wrapper :is(.large-slide-sec, .middle-slide-sec) .swiper .swiper-slide .txt-area {
    margin-top: 32px;
}
.modal-wrapper .large-slide-sec .swiper .swiper-slide .main-txt {
    margin-bottom: 16px;
    display: block;
}
.modal-wrapper .large-slide-sec .swiper .swiper-slide .sub-txt {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}
.modal-wrapper :is(.large-slide-sec, .middle-slide-sec) .swiper .swiper-slide .sub-txt.sub-txt-1 {
    margin-bottom: 8px;
}
.modal-wrapper .large-slide-sec .swiper .swiper-slide .sub-txt.sub-txt-2 {
    font-size: 12px;
    line-height: 20px;
}

.modal-wrapper .large-slide-sec .swiper .swiper-slide .main-txt {
    font-size: 24px;
    line-height: 38px;
    color: #000;
}
.modal-wrapper .large-slide-sec .swiper .swiper-slide .main-txt.main-txt-1 {
    margin-bottom: 0px;
}
.modal-wrapper .large-slide-sec .swiper .swiper-slide .main-txt.main-txt-2 {
    margin-top: 4px;
    font-size: 16px;
    line-height: 26px;
}
.modal-wrapper .large-slide-sec .swiper .swiper-slide .sub-txt {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #cccccc;
}
.modal-wrapper :is(.large-slide-sec, .middle-slide-sec) .swiper .swiper-slide .sub-txt.sub-txt-2 {
    color: #999;
}
.modal-wrapper .swiper .swiper-pagination {
    position: static;
    height: 10px;
    line-height: 9px;
}
.modal-wrapper .swiper .swiper-pagination-bullets .swiper-pagination-bullet,
.insteroid-wrapper .swiper-pagination-bullets .swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
}
.modal-wrapper .swiper .swiper-pagination-bullets .swiper-pagination-bullet-active,
.insteroid-wrapper .swiper-pagination-bullets .swiper-pagination-bullet-active {
    background: #0793ea;
}
.modal-wrapper .large-slide-sec .swiper-nav {
    position: relative;
    top: auto;
    left: 0;
    display: flex;
    width: 1120px;
    height: 48px;
}
.modal-wrapper .middle-slide-sec .swiper-nav {
    top: 40px;
}

.modal-wrapper .swiper-nav .swiper-button-next,
.modal-wrapper .swiper-nav .swiper-button-prev {
    width: 48px;
    -ms-user-select: none;
    -moz-user-select: -moz-none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    user-select: none;
}

.modal-wrapper .swiper-nav .swiper-button-prev {
    left: auto;
    right: 64px;
}
.modal-wrapper .swiper-nav .swiper-button-next {
    right: 0;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    content: "";
}

.modal-wrapper .swiper-nav .custom-pagination {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 888px;
    height: 4px;
    background: #999;
}
.modal-wrapper .swiper-nav .custom-pagination.swiper-pagination-progressbar {
    height: 1px;
}
.modal-wrapper .swiper-nav .custom-pagination .swiper-pagination-progressbar-fill {
    position: absolute;
    top: -4px;
    left: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: #0793ea;
}

.modal-wrapper .swiper-nav .swiper-fraction {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 152px;
    display: flex;
    justify-content: space-between;
    width: 48px;
}
.modal-wrapper .swiper-nav .swiper-fraction::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 12px;
    background-color: #999;
}
/* E: Swiper */

/* 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(0, 0, 0, 0.8);
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 1001;
}
.modal-wrapper[data-modal-id="galleryDetail"].is-active {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
}
.modal-wrapper .modal-inner {
    margin: auto;
}
.modal-wrapper .modal-content {
    position: relative;
}
.modal-wrapper .modal-close {
    position: absolute;
    right: 0;
    top: 0;
}
.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%;
}

.modal-wrapper[data-modal-id="galleryDetail"] .modal-inner {
    height: 100%;
    overflow: hidden;
}
.modal-wrapper[data-modal-id="galleryDetail"] .modal-content,
.modal-wrapper[data-modal-id="galleryDetail"] .design-detail-cont,
.modal-wrapper[data-modal-id="galleryDetail"] .swiper-area,
.modal-wrapper[data-modal-id="galleryDetail"] .swiper {
    height: 100%;
}
.modal-wrapper[data-modal-id="galleryDetail"] .swiper {
    height: calc(100% + 48px);
}
.modal-wrapper[data-modal-id="galleryDetail"] .swiper-wrapper {
    height: calc(100% - 88px);
}
.modal-wrapper[data-modal-id="galleryDetail"] .swiper-nav {
    flex: 0 0 auto;
}
.modal-wrapper[data-modal-id="galleryDetail"] .swiper-slide .img-box {
    height: 100%;
}
.modal-wrapper[data-modal-id="galleryDetail"] .swiper-slide picture {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.modal-wrapper[data-modal-id="galleryDetail"] .swiper-slide img {
    display: block;
    max-height: 100%;
}

.modal-wrapper[data-modal-id="galleryDetail"] .design-detail-cont {
    padding: 72px 0 80px;
    padding-top: 72px;
    width: 1120px;
}
.modal-wrapper[data-modal-id="galleryDetail"] .swiper-area {
    display: none;
}
.modal-wrapper[data-modal-id="galleryDetail"] .swiper-area.is-active {
    display: block;
}
.modal-wrapper[data-modal-id="galleryDetail"] .large-slide-sec .swiper .swiper-slide .main-txt {
    color: #fff;
}
.modal-wrapper[data-modal-id="galleryDetail"] .large-slide-sec .swiper .swiper-slide .sub-txt {
    color: #fff;
}
.modal-wrapper[data-modal-id="galleryDetail"] .swiper-pagination-progressbar {
    background-color: #999;
    opacity: 1;
}
.modal-wrapper[data-modal-id="galleryDetail"] .swiper-nav .swiper-fraction {
    color: #999;
}
.modal-wrapper[data-modal-id="galleryDetail"] .swiper-nav .swiper-fraction strong:first-child {
    color: #fff;
}
.modal-wrapper[data-modal-id="galleryDetail"] .img-box img {
    display: block;
}
/* E: Modal Style */

@media screen and (min-width: 1921px) {
    .insteroid-wrapper .img-centered {
        height: auto;
    }
    .insteroid-wrapper .img-centered img {
        position: static;
        width: 100%;
        margin-left: 0;
    }
}

@media screen and (max-width: 1119px) {
    .hmj-header .sub-cont .history .page-title {
        padding: 0 20px;
    }

    .glitch {
        font-size: 24px;
    }

    .insteroid-wrapper .deco-line img {
        translate: -1.82291666666667% 0;
        width: 103.64583333333334%;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        display: none;
    }

    .insteroid-wrapper .contents-sec {
        padding: 40px 0;
        font-size: 14px;
    }
    .insteroid-wrapper .contents-sec .title-area .sec-head-tagline {
        margin-bottom: 4px;
        font-size: 15px;
        line-height: 24px;
    }
    .insteroid-wrapper .contents-sec .title-area .sec-title {
        font-size: 24px;
        line-height: 38px;
    }
    .insteroid-wrapper .contents-sec .title-area .sec-sub-title {
        font-size: 20px;
        line-height: 32px;
    }
    .insteroid-wrapper .contents-sec .title-area .sec-desc {
        margin-top: 8px;
        font-size: 15px;
        line-height: 24px;
    }
    .insteroid-wrapper .contents-sec .title-area .sec-sub-desc {
        margin-top: 24px;
        font-size: 14px;
        line-height: 22px;
    }
    .insteroid-wrapper .container {
        width: 100%;
        padding: 0 20px;
    }
    .insteroid-wrapper .out-link,
    .insteroid-wrapper .out-link:hover {
        font-size: 14px;
        line-height: 22px;
    }

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

    .insteroid-wrapper .move-detail {
        font-size: 12px;
        line-height: 20px;
    }

    /* media-section */
    .insteroid-wrapper .media-section {
        padding: 60px 0;
    }
    .insteroid-wrapper .media-section .cont-area {
        margin-top: 24px;
    }
    .insteroid-wrapper .media-section .desc {
        margin-top: 24px;
        font-size: 14px;
        line-height: 22px;
        text-align: left;
    }
    .insteroid-wrapper .media-section .btn-thumb-area .btn-thumb .play-icon {
        width: 40px;
        height: 40px;
    }

    /* concept-section */
    .insteroid-wrapper .concept-section .deco-line {
        margin-bottom: 20px;
    }
    .insteroid-wrapper .concept-section {
        padding: 60px 0;
    }
    .insteroid-wrapper .concept-section .cont-area {
        margin-top: 24px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .insteroid-wrapper .large-slide-sec.concept-section .swiper {
        gap: 40px;
        overflow: visible;
    }
    .insteroid-wrapper .large-slide-sec.concept-section .swiper .swiper-slide .txt-area {
        margin-top: 0;
        padding: 24px 24px 16px;
        min-height: 196px;
        background-color: #f7f7f7;
    }

    /* boost-section */
    .insteroid-wrapper .boost-section {
        padding: 60px 0;
    }
    .insteroid-wrapper .boost-section .cont-area {
        flex-wrap: wrap;
        gap: 12px;
    }
    .insteroid-wrapper .boost-section .cont-area .character-box {
        flex: 0 0 32.8125%;
    }
    .insteroid-wrapper .boost-section .cont-area .text-box {
        flex: 1;
        max-width: calc(67.1875% - 12px);
    }
    .insteroid-wrapper .boost-section .text-box .sub-tit {
        font-size: 15px;
        line-height: 24px;
    }
    .insteroid-wrapper .boost-section .text-box .glitch-box {
        display: flex;
        align-items: center;
        height: 32px;
        margin-bottom: 4px;
    }
    .insteroid-wrapper .boost-section .text-box .glitch-box .glitch {
        font-size: 32px;
        line-height: 48px;
    }
    .insteroid-wrapper .boost-section .text-box .tit {
        font-size: 24px;
        line-height: 38px;
    }
    .insteroid-wrapper .boost-section .cont-area .desc {
        flex: 0 0 100%;
    }
    .insteroid-wrapper .boost-section .deco-line {
        margin-top: 20px;
    }

    /* experience-section */
    .insteroid-wrapper .experience-section {
        padding: 60px 0;
    }
    .insteroid-wrapper .experience-section .deco.deco-top img {
        width: 101.875%;
    }
    .insteroid-wrapper .experience-section .deco.deco-bottom img {
        width: 101.875%;
    }
    .insteroid-wrapper .experience-section .cont-area {
        margin-top: 24px;
        padding: 56px 0 162px;
    }
    .insteroid-wrapper .experience-section .swiper-pagination {
        bottom: -32px;
    }
    .insteroid-wrapper .experience-section .swiper-nav [class*="swiper-button-"] {
        margin-top: -17px;
        width: 34px;
        height: 34px;
    }
    .insteroid-wrapper .experience-section .swiper-nav .swiper-button-next {
        right: 8px;
    }
    .insteroid-wrapper .experience-section .swiper-nav .swiper-button-prev {
        left: 8px;
    }
    .insteroid-wrapper .experience-section .glitch-box-group {
        bottom: 56px;
    }
    .insteroid-wrapper .experience-section .glitch-box-group .glitch-box {
        height: 32px;
    }

    /* information-section */
    .insteroid-wrapper .information-section {
        padding: 60px 0;
        background: url("../../images/brandstory/insteroid/jms_info_bg_mo.jpg") center center / cover no-repeat;
    }
    .insteroid-wrapper .information-section .cont-area {
        margin-top: 24px;
    }
    .insteroid-wrapper .information-section .information-kv {
        margin-bottom: 120px;
    }
    .insteroid-wrapper .information-section .information-kv::after {
        left: 0;
        top: calc(100% + 36px);
        width: 80px;
        height: 60px;
    }
    .insteroid-wrapper .information-section .information-kv::before {
        left: auto;
        right: 0;
        top: calc(100% + 24px);
        width: 40px;
        height: 30px;
    }
    .insteroid-wrapper .information-section .information-cont {
        flex-direction: column;
        gap: 24px;
    }
    .insteroid-wrapper .information-section .information-cont .text-box {
        flex: auto;
    }
    .insteroid-wrapper .information-section .information-cont .info-item {
        font-size: 14px;
        line-height: 22px;
    }
    .insteroid-wrapper .information-section .information-cont .info-item .info-item-title {
        flex: 0 0 54px;
    }

    /* gallery-section */
    .insteroid-wrapper .gallery-section {
        padding: 60px 0;
    }
    .insteroid-wrapper .gallery-section .title-area {
        padding: 0 0 24px;
    }
    .insteroid-wrapper .gallery-section .img-box img:hover {
        transform: scale(1);
    }
    .insteroid-wrapper .gallery-section .large-slide-sec .swiper-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
    }
    .insteroid-wrapper .gallery-section .swiper-slide .img-box picture,
    .insteroid-wrapper .gallery-section .swiper-slide .img-box img {
        max-width: none;
        width: 100%;
    }
    .insteroid-wrapper .gallery-section .swiper-nav .swiper-button-next,
    .insteroid-wrapper .gallery-section .swiper-nav .swiper-button-prev {
        position: absolute;
        display: block;
        width: 34px;
        height: 34px;
    }
    .insteroid-wrapper .gallery-section .swiper-nav .swiper-button-prev {
        left: 8px;
    }
    .insteroid-wrapper .gallery-section .swiper-nav .swiper-button-next {
        right: 8px;
    }
    .insteroid-wrapper .gallery-section .gallery-thumb-swiper {
        position: relative;
        left: 0;
        margin-left: 0;
        width: 90px;
        height: 53px;
    }
    .insteroid-wrapper .gallery-section .gallery-thumb-swiper .img-box {
        pointer-events: none;
    }
    .insteroid-wrapper .gallery-section .swiper-horizontal > .swiper-pagination-bullets,
    .insteroid-wrapper .gallery-section .swiper-pagination-bullets.swiper-pagination-horizontal,
    .insteroid-wrapper .gallery-section .swiper-pagination-custom,
    .swiper-pagination-fraction {
        position: static;
        margin-top: 16px;
    }
    .insteroid-wrapper .gallery-section .txt-area {
        padding: 110px 20px 0;
        text-align: left;
    }
    .insteroid-wrapper .gallery-section .img-box:last-child {
        margin-bottom: 16px;
    }
    /* gallery-section */

    /* outro-section */
    .insteroid-wrapper .outro-section {
        padding: 60px 0;
    }
    .insteroid-wrapper .outro-section .outro-tit {
        font-size: 16px;
        line-height: 26px;
    }
    .insteroid-wrapper .outro-section .outro-desc {
        margin-top: 4px;
        font-size: 14px;
        line-height: 22px;
    }
    .insteroid-wrapper .outro-section .cont-area {
        margin-top: 24px;
    }
    .insteroid-wrapper .outro-section .cont-area .cont-tit {
        margin-bottom: 24px;
        font-size: 14px;
        line-height: 22px;
    }
    .insteroid-wrapper .outro-section .cont-area .sns-list {
        flex-direction: column;
        gap: 16px;
    }
    .insteroid-wrapper .outro-section .cont-area .sns-list .sns-item {
        padding: 32px;
    }
    .insteroid-wrapper .outro-section .cont-area .sns-list .sns-item .sns-item-title {
        font-size: 16px;
        line-height: 26px;
    }
    .insteroid-wrapper .outro-section .cont-area .sns-list .sns-item .out-link {
        font-size: 15px;
        line-height: 24px;
    }

    /* link-banner-section */
    .insteroid-wrapper .link-banner-sec {
        padding: 0 0 40px;
    }
    .insteroid-wrapper .link-banner-sec .banner-content-box {
        padding: 40px 20px;
    }
    .insteroid-wrapper .link-banner-sec .banner-content-box .banner-text {
        margin-bottom: 22px;
        font-size: 16px;
        line-height: 28px;
        text-align: center;
    }

    .insteroid-wrapper .link-banner-sec .banner-img-box a .banner-text {
        left: 24px;
    }

    .insteroid-wrapper .link-banner-sec .banner-img-box a .banner-text p {
        font-size: 18px;
        line-height: normal;
    }

    .insteroid-wrapper .link-banner-sec .banner-img-box img {
        width: 100%;
    }

    /* share-section */
    .insteroid-wrapper .share-section {
        padding: 40px 0;
    }
    .insteroid-wrapper .share-section .container {
        gap: 80px;
    }
    .insteroid-wrapper .share-section .card-cont {
        flex-direction: column;
    }
    .insteroid-wrapper .share-section .card-cont li {
        width: 100%;
        height: auto;
    }
    .insteroid-wrapper .share-section .card-cont a h5 {
        margin-top: -15px;
        top: 50%;
        font-size: 18px;
        line-height: normal;
        letter-spacing: -0.72px;
    }
    .insteroid-wrapper .share-section .card-cont a::before {
        top: 50%;
        transform: translateY(-50%);
        width: 45px;
        height: 45px;
        background: url("../../images/brandstory/insteroid/card-btn-mo.png") center center / contain no-repeat;
    }
    .insteroid-wrapper .share-cont {
        gap: 10px;
    }

    /* S: Swiper */
    .insteroid-wrapper .large-slide-sec .swiper {
        gap: 154px;
    }
    .modal-wrapper .large-slide-sec .swiper-inner,
    .insteroid-wrapper .large-slide-sec .swiper-inner {
        padding-top: 40px;
        width: 100%;
    }
    .insteroid-wrapper .contents-sec .swiper .swiper-slide {
        height: auto;
    }
    .modal-wrapper .large-slide-sec .swiper .swiper-slide .txt-area {
        margin-top: 24px;
    }
    .insteroid-wrapper :is(.large-slide-sec, .middle-slide-sec) .swiper .swiper-slide .txt-area {
        margin-top: 24px;
    }
    .insteroid-wrapper :is(.large-slide-sec, .short-slide-sec) .swiper .swiper-slide .main-txt {
        margin-bottom: 8px;
        font-size: 18px;
        line-height: 30px;
    }
    .modal-wrapper .large-slide-sec .swiper .swiper-slide .sub-txt,
    .insteroid-wrapper :is(.large-slide-sec, .middle-slide-sec, .short-slide-sec) .swiper .swiper-slide .sub-txt {
        font-size: 13px;
        line-height: 20px;
    }

    .modal-wrapper .large-slide-sec .swiper-nav,
    .insteroid-wrapper :is(.large-slide-sec, .middle-slide-sec, .short-slide-sec, .thumb-slide-sec) .swiper-nav {
        position: static;
        margin-top: 0;
        width: 100%;
        height: 10px;
        text-align: center;
        line-height: 10px;
    }

    .insteroid-wrapper .swiper-nav .swiper-pagination,
    .insteroid-wrapper .swiper-nav .swiper-pagination-bullets {
        position: static;
        height: 10px;
        line-height: 9px;
    }
    .modal-wrapper .swiper-nav .swiper-pagination-bullets .swiper-pagination-bullet,
    .insteroid-wrapper .swiper-nav .swiper-pagination-bullets .swiper-pagination-bullet {
        background: #ccc;
        opacity: 1;
    }
    .modal-wrapper .swiper-nav .swiper-pagination-bullets .swiper-pagination-bullet-active,
    .insteroid-wrapper .swiper-nav .swiper-pagination-bullets .swiper-pagination-bullet-active {
        background: #0793ea;
    }

    .modal-wrapper .swiper-nav .swiper-button-next,
    .modal-wrapper .swiper-nav .swiper-button-prev {
        display: none;
    }

    .modal-wrapper .swiper-nav .swiper-fraction,
    .insteroid-wrapper .swiper-nav .swiper-fraction {
        display: none;
    }

    .modal-wrapper .swiper-nav .custom-pagination,
    .insteroid-wrapper .swiper-nav .custom-pagination {
        display: none;
    }
    /* E: Swiper */
}

/* Video Lazy Loading Styles */
.lazy-video {
    transition: opacity 0.3s ease;
}

.lazy-video[data-src] {
    opacity: 0.8;
    background: #f0f0f0;
}

.lazy-video.loading {
    opacity: 0.6;
}

.lazy-video.loaded {
    opacity: 1;
}

/* Loading indicator for videos */
.img-box {
    position: relative;
}

.img-box .lazy-video[data-src]::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
