@charset "UTF-8";
/**
참고: grid는 clamp 활용한 fr 단위는 지원을 안함.
*/
/**
추가 이유: 원하는 해당 구간에서 원하는 값을 선형적으로 값을 변경하기 위함.
사용 조건: 단위와 list 갯수 같아야함. 0px은 작동되지 않아 0.1px 방식으로 처리 필요.
사용 예시 1:
.dynamic-element {
    @include responsive-property-dynamic(padding, 100px 80px, 40px 60px, 1720px, 1280px);
    @include responsive-property-dynamic(font-size, 100px, 30px, 1720px, 1280px);
}
*/
.main {
    background-color: #f2f2f2;
    overflow-x: hidden;
}

.main__section--kv {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #000;
  /* layer popup */
}

.main__section--kv .splash-loader {
    position: absolute;
    width: 100%;
    height: auto;
    object-fit: cover;
    left: 50%;
    top: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.main__section--kv .splash-loader.active {
    opacity: 1;
}

.main__section--kv .splash-loader .loader {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.main__section--kv .bracket-left, .main__section--kv .bracket-right {
    position: absolute;
    display: inline-block;
    left: calc(50% + 20px);
    top: calc(50% + 45px);
    width: 24px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
}

.main__section--kv .bracket-left.active {
    -webkit-animation: growAndDisappearLeft 2.1s ease forwards;
    animation: growAndDisappearLeft 2.1s ease forwards;
    background-image: url("../images/common/pc/left-shape-black.svg");
}

.main__section--kv .bracket-right.active {
    -webkit-animation: growAndDisappearRight 2.1s ease forwards;
    animation: growAndDisappearRight 2.1s ease forwards;
    background-image: url("../images/common/pc/right-shape-black.svg");
}

.main__section--kv .kv-wrap {
    position: relative;
    width: 100%;
    height: calc(var(--kv-wrap-vh, 1vh) * 100);
    overflow: hidden;
}

.main__section--kv .card-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    opacity: 1;
}

.main__section--kv .card {
    position: absolute;
    cursor: pointer;
    top: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    pointer-events: none;
}

.main__section--kv .card::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
    z-index: 5;
}

.main__section--kv .card img {
    position: absolute;
    object-fit: cover;
    -webkit-filter: brightness(0.6);
    filter: brightness(0.6);
}

.main__section--kv .card-front, .main__section--kv .card-dummy {
    z-index: 10;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
}

.main__section--kv .card-dummy.visible {
    -webkit-filter: blur(10px);
    filter: blur(10px);
    -webkit-transition: -webkit-filter .5s ease;
    transition: -webkit-filter .5s ease;
    transition: filter .5s ease;
    transition: filter .5s ease, -webkit-filter .5s ease;
}

.main__section--kv .kv-text-wrap {
    position: absolute;
    padding: 25px 20px;
    color: #fff;
    z-index: 10;
    opacity: 0;
}

.main__section--kv .on .kv-text-wrap {
    width: 100%;
    height: 100%;
    transition: transform .4s ease;
}

.main__section--kv .kv-text-wrap::after {
    content: '';
    position: absolute;
    padding-top: 10px;
    width: 18.5px;
    height: 16px;
    background: url(../images/main/pc/icon-main-kv-arrow-white.svg) no-repeat center;
    border: 2px;
    opacity: 0;
    z-index: 11;
}


.main__section--kv .on .kv-text-wrap::after {
    opacity: 1;
    transition: opacity .5s ease;
}

.main__section--kv .kv-text-wrap.active {
    -webkit-transition: opacity .8s ease;
    transition: opacity .8s ease;
    opacity: 1;
}

.main__section--kv .kv-indicator {
    opacity: 0.6;
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    color: #ffffff;
}

.main__section--kv .emphatic .kv-indicator {
    padding: 4px 6px;
    color: #00d4ff;
    background: rgba(0,0,0,0.7);
}

.main__section--kv .on:not(.emphatic) .kv-indicator {
    color: #9C95FF;
    transition: all .5s ease;
}

.main__section--kv .kv-header {
    opacity: 0.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 10px 0 5px;
    font-size: 24px;
    font-weight: 500;
    line-height: 35px;
    color: #FFFFFF;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main__section--kv .emphatic .kv-header {
  color: #00d4ff;
}

/* pc */
.pc .main__section--kv .card-front img {
    position: relative;
    -webkit-filter: brightness(0.6);
    filter: brightness(0.6);
}

.pc .main__section--kv .emphatic img {
    -webkit-filter: brightness(0.8);
    filter: brightness(0.8);
}

.pc .main__section--kv .card-front.on img {
  -webkit-filter: brightness(0.35);
  filter: brightness(0.35);
}

.pc .main__section--kv .card-front .kv-text-wrap {
    opacity: 1;
}

.pc .main__section--kv .card-front.emphatic .kv-text-wrap {
    opacity: 1;
    border: 2px #00d4ff solid;
}

.pc .main__section--kv .card-front.emphatic .kv-text-box {
    padding: 2% 8%;
    transform: scale(1.2) translateZ(0px);
}

.pc .main__section--kv .on .kv-indicator,
.pc .main__section--kv .on .kv-header {
    opacity: 1;
}

.pc .main__section--kv .emphatic .kv-indicator,
.pc .main__section--kv .emphatic .kv-header {
    opacity: 1;
}

/* mobile */
.mo .main__section--kv .card-front-best.emphatic img {
    -webkit-filter: brightness(0.8);
    filter: brightness(0.8);
}

.mo .main__section--kv .card-front-best .kv-text-wrap {
    opacity: 1;
    width: 100%;
    height: 100%;
    padding: 20px 15px;
}

.mo .main__section--kv .card-front-best.emphatic .kv-text-wrap {
    border: 2px #00d4ff solid;
}

.mo .main__section--kv .card-front-best .kv-text-wrap::after {
    opacity: 0;
}

.mo .main__section--kv .kv-indicator {
    font-size: 13px;
}

.mo .main__section--kv .kv-header {
    font-size: 22px;
}

.mo .main__section--kv .emphatic .kv-indicator,
.mo .main__section--kv .emphatic .kv-header {
    opacity: 1;
}

.main__section--kv .kv-popup-wrap {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: opacity 0.7s ease;
    transition: opacity 0.7s ease;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    opacity: 0;
    visibility: hidden;
    z-index: 40;
}

.main__section--kv .kv-popup-wrap.active {
    opacity: 1;
    visibility: visible;
    width: 100%;
    height: 100%;
    background: #000;
}

.main__section--kv .kv-popup-wrap.active .btn-close {
    position: absolute;
    top: 0;
    width: 80px;
    height: 80px;
    padding: 10px;
    font-size: 16px;
    border: none;
    background: #3C3C3B;
    cursor: pointer;
}

.main__section--kv .kv-popup-wrap.active .btn-close::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: url(../images/main/pc/icon-main-kv-btn-close.svg) no-repeat center #3C3C3B;
    background-size: 40px 40px;
}

@media (max-width: 1023px) {
    .main__section--kv .kv-popup-wrap.active .btn-close {
        width: 60px;
        height: 60px;
    }

    .main__section--kv .kv-popup-wrap.active .btn-close::after {
        width: 16px;
        height: 16px;
        background-size: 16px 16px;
    }
}

.main__section--kv .kv-popup-wrap.active .swiper-btn {
    position: absolute;
    right: -80px;
    bottom: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    z-index: 10;
}

@media (max-width: 1023px) {
    .main__section--kv .kv-popup-wrap.active .swiper-btn {
        right: 0;
        bottom: 60%;
        gap: 1px;
    }
}

.main__section--kv .kv-popup-wrap.active .swiper__button {
    position: relative;
    width: 80px;
    height: 80px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    cursor: pointer;
}

@media (max-width: 1920px) {
    .main__section--kv .kv-popup-wrap.active .swiper__button {
        -webkit-flex-shrink: initial;
        -ms-flex-negative: initial;
        flex-shrink: initial;
    }
}

.main__section--kv .kv-popup-wrap.active .swiper__button::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-size: auto;
    -webkit-transition: -webkit-filter .4s;
    transition: -webkit-filter .4s;
    transition: filter .4s;
    transition: filter .4s, -webkit-filter .4s;
}

.main__section--kv .kv-popup-wrap.active .swiper__button.swiper-button-disabled::after {
    -webkit-filter: contrast(0);
    filter: contrast(0);
}

@media (max-width: 1023px) {
    .main__section--kv .kv-popup-wrap.active .swiper__button {
        width: 60px;
        height: 60px;
    }
}

.main__section--kv .kv-popup-wrap.active .swiper__button--next {
    background: rgba(255, 255, 255, 0.6);
}

.main__section--kv .kv-popup-wrap.active .swiper__button--next::after {
    background: url(../images/main/pc/icon-main-arrow.svg) no-repeat center;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

@media (max-width: 1023px) {
    .main__section--kv .kv-popup-wrap.active .swiper__button--next {
        background: rgba(255, 255, 255, 0.7);
    }
}

.main__section--kv .kv-popup-wrap.active .swiper__button--prev {
    background: rgba(255, 255, 255, 0.3);
}

.main__section--kv .kv-popup-wrap.active .swiper__button--prev::after {
    background: url(../images/main/pc/icon-main-arrow.svg) no-repeat center;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

@media (max-width: 1023px) {
    .main__section--kv .kv-popup-wrap.active .swiper__button--prev {
        background: rgba(255, 255, 255, 0.7);
    }
}

.main__section--kv .kv-popup-wrap .img-area {
    cursor: pointer;
}

.main__section--kv .kv-popup {
    position: absolute;
    top: 53%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 1200px;
    width: 100%;
    height: calc(var(--kv-wrap-vh, 1vh) * 100 - 250px);
}

@media screen and (min-height: 1000px) and (max-height: 3000px) {
    .main__section--kv .kv-popup {
        height: calc(var(--kv-wrap-vh, 1vh) * 100 - 480px);
    }
}

@media (max-width: 1400px) {
    .main__section--kv .kv-popup {
        width: 80%;
    }
}

@media (max-width: 1023px) {
    .main__section--kv .kv-popup {
        width: 100%;
        height: calc(100% - 60px);
        top: 60px;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.main__section--kv .kv-popup .popup__txt-area {
    height: 100%;
}

.main__section--kv .kv-popup .popup__content {
    width: 50%;
    max-width: 600px;
    height: 100%;
    padding: 48px;
    position: relative;
    z-index: 10;
    background: #222;
}

@media (max-width: 1023px) {
    .main__section--kv .kv-popup .popup__content {
        position: absolute;
        bottom: 0;
        width: 100%;
        max-width: 100%;
        height: 60%;
        padding: 24px;
        background: #000;
    }
}

.main__section--kv .kv-popup .popup__content .indicator {
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #9C95FF;
    letter-spacing: 3.2px;
}

@media (max-width: 1023px) {
    .main__section--kv .kv-popup .popup__content .indicator {
        margin-bottom: 4px;
        padding-top: 0;
        font-size: 12px;
        font-weight: 500;
        line-height: 20px;
    }
}

.main__section--kv .kv-popup .popup__content .header {
    margin-bottom: 40px;
    font-size: 48px;
    font-weight: 600;
    line-height: 56px;
    color: #FFF;
}

@media (max-width: 1023px) {
    .main__section--kv .kv-popup .popup__content .header {
        margin-bottom: 24px;
        font-size: 24px;
        line-height: 32px;
    }
}

.main__section--kv .kv-popup .popup__content .title {
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    color: #fff;
}

@media (max-width: 1023px) {
    .main__section--kv .kv-popup .popup__content .title {
        margin-bottom: 8px;
        font-size: 14px;
        line-height: 22px;
    }
}

.main__section--kv .kv-popup .popup__content .desc {
    margin-bottom: 40px;
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
    color: #fff;
}

@media (max-width: 1023px) {
    .main__section--kv .kv-popup .popup__content .desc {
        margin-bottom: 24px;
        font-size: 14px;
        line-height: 22px;
    }
}

.main__section--kv .kv-popup .popup__content .tags-group {
    padding-bottom: 24px;
}

.main__section--kv .kv-popup .popup__content .tags-group :last-child {
    margin-right: 0;
}

@media (max-width: 1023px) {
    .main__section--kv .kv-popup .popup__content .tags-group {
        padding-bottom: 0;
    }
}

.main__section--kv .kv-popup .popup__content .tags-group a {
    position: relative;
    margin-right: 11px;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 1023px) {
    .main__section--kv .kv-popup .popup__content .tags-group a {
        font-size: 12px;
        line-height: 20px;
    }
}

.main__section--kv .kv-popup .popup__content .text {
    height: 300px;
    overflow-y: auto;
}

.main__section--kv .kv-popup .popup__content .text::-webkit-scrollbar {
    width: 4px;
    height: 100%;
}

@media (max-width: 1023px) {
    .main__section--kv .kv-popup .popup__content .text::-webkit-scrollbar {
        width: 100%;
        height: 4px;
    }
}

.main__section--kv .kv-popup .popup__content .text::-webkit-scrollbar-thumb {
    background-color: #ededed;
    border-radius: 2px;
}

.main__section--kv .kv-popup .popup__content .text::-webkit-scrollbar-track {
    background-color: rgba(255, 255, 255, 0.2);
}

.main__section--kv .kv-popup .popup__content .content {
    padding-right: 8px;
    width: 100%;
    height: 100%;
}

@media (max-width: 1023px) {
    .main__section--kv .kv-popup .popup__content .content {
        height: 198px;
    }
}

.main__section--kv .kv-popup .img-area {
    position: absolute;
    right: 0;
    width: 50%;
    max-width: 600px;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
}

.main__section--kv .kv-popup .img-area::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% - 80px);
    height: 80px;
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

@media (max-width: 1023px) {
    .main__section--kv .kv-popup .img-area {
        width: 100%;
        max-width: 100%;
        height: 40%;
    }

    .main__section--kv .kv-popup .img-area::before {
        bottom: 0;
        width: calc(100% - 121px);
        height: 60px;
    }
}

.main__section--kv .kv-popup .img-area img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.main__section--kv .info-area {
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.main__section--kv .info-area .visible-show {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}

.main__section--kv .info-area.active .visible-show {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.main__section--kv .info-area.active .visible-show.indicator {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.main__section--kv .info-area.active .visible-show.header {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.main__section--kv .info-area.active .visible-show.title {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.main__section--kv .info-area.active .visible-show.desc {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.main__section--kv .info-area.active .visible-show.tags-group {
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.main__section--kv .info-area.active .cta .visible-show:nth-child(1) {
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
}

.main__section--kv .info-area.active .cta .visible-show:nth-child(2) {
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
}

.main__section--kv .btn-kv {
    opacity: 0;
    position: absolute;
    right: -80px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    z-index: 10;
}

@media (max-width: 1023px) {
    .main__section--kv .btn-kv {
        right: 0;
    }
}

.main__section--kv .btn-kv.active {
    opacity: 1;
    -webkit-transition: opacity 0.5s ease-in;
    transition: opacity 0.5s ease-in;
}

.main__section--kv .swiper-pagination {
    opacity: 0 !important;
}

.main__section--kv .swiper-pagination.active {
    opacity: 1 !important;
    -webkit-transition: opacity 0.5s ease-in;
    transition: opacity 0.5s ease-in;
}

.main__section--kv .cta {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    place-items: flex-end;
}

.main__section--kv .cta a {
    display: block;
    width: 50%;
    border: 1px solid #fff;
    text-decoration: none;
    opacity: 0;
}

.main__section--kv .cta button {
    position: relative;
    width: 100%;
    padding: 0 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 48px;
    text-align: left;
    color: #fff;
    border: none;
    cursor: pointer;
    -webkit-transition: color 0.3s, border 0.3s, width 0.3s, height 0.3s;
    transition: color 0.3s, border 0.3s, width 0.3s, height 0.3s;
}

.main__section--kv .cta button::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 8px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: url(../images/main/pc/icon-main-white-arrow-right.svg) no-repeat center;
    background-size: 17px 13px;
}

.main__section--kv .cta button:hover {
    background: #fff;
    color: #000;
}

.main__section--kv .cta button:hover::before {
    background: url(../images/main/pc/icon-main-black-arrow-right.svg) no-repeat center;
    background-size: 17px 13px;
}

@media (max-width: 1023px) {
    .main__section--kv .cta button {
        font-size: 14px;
        line-height: 38px;
        text-align: center;
    }

    .main__section--kv .cta button::before {
        content: none;
    }
}

@media (max-width: 1023px) {
    .main__section--kv .bracket-left, .main__section--kv .bracket-right {
        left: calc(50% + 25px);
        top: calc(50% + 60px);
    }
}

.main__section--theme-trend-etf .main__section-left {
    width: calc(832 / 1680* 100%);
}

@media (max-width: 1023px) {
    .main__section--theme-trend-etf .main__section-left {
        width: 100%;
        padding-bottom: 48px;
    }
}

.main__section--theme-trend-etf .main__section-right {
    width: calc(691 / 1680 * 100%);
    margin-left: 157px;
}

@media (max-width: 1920px) {
    .main__section--theme-trend-etf .main__section-right {
        margin-left: calc(157 / 1680 * 100%);
    }
}

@media (max-width: 1280px) {
    .main__section--theme-trend-etf .main__section-right {
        width: calc(520 / 1180 * 100%);
        margin-left: calc(80 / 1280 * 100%);
    }
}

@media (max-width: 1023px) {
    .main__section--theme-trend-etf .main__section-right {
        width: 100%;
        margin-top: 48px;
        margin-left: 0;
    }
}

.main__section--theme-trend-etf .main__section-title-desc {
    height: 122px;
}

@media (max-width: 1023px) {
    .main__section--theme-trend-etf .main__section-title-desc {
        height: auto;
    }
}

.main__section--future-find {
    overflow: hidden;
    background-color: #000;
}

.main__section--future-find .main__section-title-wrap {
    color: #fff;
}

@media (max-width: 1023px) {
    .main__section--future-find .main__section-title-wrap {
        margin: 0 20px;
    }
}

.main__section--future-find .main__section-title-desc {
    color: #fff;
    padding-bottom: 40px;
}

@media (max-width: 1920px) {
    .main__section--future-find .main__section-title-desc {
        padding-bottom: calc(40 / (1920 + var(--user-scrollbar-width)) * 100vw);
    }
}

@media (max-width: 1023px) {
    .main__section--future-find .main__section-title-desc {
        margin: 0 20px;
    }
}

.main__section--future-find .main__section-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

.main__section--future-find .main__section-content::after {
    content: '';
    display: block;
    position: absolute;
    right: -1px;
    bottom: 0;
    width: 7px;
    height: 120px;
    background-color: #000;
}

@media (max-width: 1023px) {
    .main__section--future-find .main__section-content::after {
        right: 0;
        bottom: -2px;
        height: 6px;
        width: 20px;
    }
}

@media (max-width: 1023px) {
    .main__section--future-find .main__section-content::before {
        content: '';
        display: block;
        position: absolute;
        background-color: #000;
        left: 0;
        bottom: -2px;
        height: 6px;
        width: 20px;
    }
}

@media (max-width: 1023px) {
    .main__section--future-find .main__section-content {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.main__section--future-find .main__section-left {
    width: calc(707 / 1680* 100%);
    padding-top: calc(40 / 1680 * 100%);
    padding-bottom: calc(120 / 1680 * 100%);
}

@media (max-width: 1600px) {
    .main__section--future-find .main__section-left {
        width: 50%;
    }
}

@media (max-width: 1350px) {
    .main__section--future-find .main__section-left {
        width: 60%;
    }
}

@media (max-width: 1023px) {
    .main__section--future-find .main__section-left {
        width: 100%;
        margin: 0 20px;
        padding-top: 0;
        padding-bottom: 40px;
    }
}

.main__section--future-find .main__section-right {
    width: calc(973 / 1680* 100%);
}

@media (max-width: 1600px) {
    .main__section--future-find .main__section-right {
        margin-left: 50px;
    }
}

@media (max-width: 1023px) {
    .main__section--future-find .main__section-right {
        width: 100%;
        margin: 0;
    }
}

.main__section--future-find .hope-product {
    overflow-y: auto;
    width: 100%;
    max-height: 762px;
    padding-right: 40px;
}

@media (max-width: 1023px) {
    .main__section--future-find .hope-product {
        width: 100%;
        margin: 0;
        padding: 0;
        overflow-y: hidden;
        overflow-x: auto;
    }
}

.main__section--future-find .hope-product::-webkit-scrollbar {
    width: 4px;
    height: 100%;
}

@media (max-width: 1023px) {
    .main__section--future-find .hope-product::-webkit-scrollbar {
        width: 100%;
        height: 4px;
    }
}

.main__section--future-find .hope-product::-webkit-scrollbar-thumb {
    background-color: #ededed;
    border-radius: 2px;
}

.main__section--future-find .hope-product::-webkit-scrollbar-track {
    background-color: rgba(255, 255, 255, 0.2);
}

.main__section--future-find .main__section-help {
    margin-bottom: 16px;
    padding-right: 44px;
    text-align: right;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    color: #9d9d9c;
}

@media (max-width: 1023px) {
    .main__section--future-find .main__section-help {
        margin-left: 20px;
        padding-right: 0;
        text-align: left;
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
    }
}

.main__section--future-find .main__select-list {
    color: #fff;
}

@media (max-width: 1023px) {
    .main__section--future-find .main__select-list {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 8px 20px;
    }
}

.main__section--future-find .main__select-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 64px;
    margin-top: 16px;
    color: #fff;
}

@media (max-width: 1023px) {
    .main__section--future-find .main__select-item {
        height: 48px;
        margin-top: 0px;
    }
}

.main__section--future-find .main__select-item:first-of-type {
    margin-top: 0;
}

.main__section--future-find .main__select-txt {
    font-size: 32px;
    font-weight: 300;
    line-height: 42px;
    padding: 0 28px 0 8px;
}

@media (max-width: 1920px) {
    .main__section--future-find .main__select-txt {
        font-size: MAX(calc(32 / (1920 + var(--user-scrollbar-width)) * 100vw), 30px);
        line-height: 1.3125;
    }
}

@media (max-width: 1023px) {
    .main__section--future-find .main__select-txt {
        padding: 0 20px 0 4px;
        font-size: 18px;
        font-weight: 300;
        line-height: 26px;
    }
}

.main__section--future-find .main__select-txt--last-line {
    padding-right: 8px;
}

.main__section--future-find .main__btn-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 80px;
}

@media (max-width: 1023px) {
    .main__section--future-find .main__btn-wrap {
        gap: 8px;
        margin-top: 32px;
    }
}

.main__section--future-find .main__btn {
    height: 72px;
    padding: 5px 24px;
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
}

@media (max-width: 1023px) {
    .main__section--future-find .main__btn {
        width: 50%;
        height: 40px;
        padding: 0 19px;
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
    }
}

@media (max-width: 375px) {
    .main__section--future-find .main__btn {
        padding: 0 calc(15 / 375 * 100vw);
    }
}

.main__section--future-find .main__btn--select {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 260px;
    margin-right: 16px;
    background-color: #fff;
}

@media (max-width: 1023px) {
    .main__section--future-find .main__btn--select {
        width: 50%;
        margin-right: 0;
    }
}

.main__section--future-find .main__btn--random {
    position: relative;
    color: #fff;
}

.main__section--future-find .main__btn--random:hover .main__random-btn-txt::after,
.main__section--future-find .main__btn--random:focus .main__random-btn-txt::after {
    -webkit-transform: translateY(-50%) rotate(360deg);
    -ms-transform: translateY(-50%) rotate(360deg);
    transform: translateY(-50%) rotate(360deg);
}

@media (max-width: 1023px) {
    .main__section--future-find .main__btn--random:hover .main__random-btn-txt::after,
  .main__section--future-find .main__btn--random:focus .main__random-btn-txt::after {
        -webkit-transform: translateY(-50%) rotate(360deg);
        -ms-transform: translateY(-50%) rotate(360deg);
        transform: translateY(-50%) rotate(360deg);
    }
}

.main__section--future-find .main__random-btn-txt {
    position: relative;
    padding-left: 32px;
}

@media (max-width: 1023px) {
    .main__section--future-find .main__random-btn-txt {
        padding-left: 24px;
    }
}

.main__section--future-find .main__random-btn-txt::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0px;
    width: 24px;
    height: 24px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url("../images/main/pc/icon-random-btn.svg");
    background-size: cover;
    -webkit-transition: -webkit-transform .7s ease-in-out;
    transition: -webkit-transform .7s ease-in-out;
    transition: transform .7s ease-in-out;
    transition: transform .7s ease-in-out, -webkit-transform .7s ease-in-out;
}

@media (max-width: 1023px) {
    .main__section--future-find .main__random-btn-txt::after {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 1023px) {
    .main__section--future-find--no-result .main__section-right {
        height: 100%;
        padding-top: 0;
        margin: 0 20px;
    }
}

.main__section--future-find--no-result .main__section-content::after {
    content: none;
}

@media (max-width: 1023px) {
    .main__section--future-find--no-result .main__section-content::before {
        content: none;
    }
}

.main__section--future-find--no-result .hope-product {
    overflow-y: inherit;
    height: 100%;
    padding-top: 40px;
}

@media (max-width: 1023px) {
    .main__section--future-find--no-result .hope-product {
        padding-top: 0;
        overflow-x: inherit;
    }
}

.main__section--future-find--no-result .hope-product__item {
    width: 100%;
    height: 412px;
    background: rgba(34, 34, 34, 0.62);
    list-style: none;
}

@media (max-width: 1023px) {
    .main__section--future-find--no-result .hope-product__item {
        height: 160px;
    }
}

.main__section--future-find--no-result .no-result-text {
    position: relative;
    width: 100%;
    height: 100%;
}

@media (max-width: 1023px) {
    .main__section--future-find--no-result .no-result-text {
        width: auto;
        padding: 0;
    }
}

.main__section--future-find--no-result .no-result-text p {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 1.24vw;
    font-weight: 400;
    line-height: 32px;
    text-align: center;
    color: #9D9D9C;
}

@media (max-width: 1023px) {
    .main__section--future-find--no-result .no-result-text p {
        font-size: 16px;
        font-weight: 300;
        line-height: 24px;
    }
}

.main__section--etf-report .main__section-inner {
    padding-bottom: 100px;
}

@media (max-width: 1920px) {
    .main__section--etf-report .main__section-inner {
        padding-bottom: calc(100 / 1920 * 100%);
    }
}

@media (max-width: 1023px) {
    .main__section--etf-report .main__section-inner {
        padding-bottom: 48px;
    }
}

@media (max-width: 1023px) {
    .main__section--etf-report .main__section-title-desc {
        padding-bottom: 16px;
    }
}

.main__section--etf-report .main__section-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 1023px) {
    .main__section--etf-report .main__section-content {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.main__section--etf-report .main__section-left {
    width: calc((832 - 120) / 1680 * 100%);
}

@media (max-width: 1023px) {
    .main__section--etf-report .main__section-left {
        width: 100%;
    }
}

.main__section--etf-report .main__section-right {
    width: calc(691 / 1680 * 100%);
    margin-left: auto;
}

@media (max-width: 1800px) {
    .main__section--etf-report .main__section-right {
        width: 47%;
    }
}

@media (max-width: 1023px) {
    .main__section--etf-report .main__section-right {
        width: 100%;
        margin-top: 32px;
        margin-left: 0;
    }
}

.main__section--etf-tv .main__section-inner {
    padding-top: 100px;
}

@media (max-width: 1920px) {
    .main__section--etf-tv .main__section-inner {
        padding-top: calc(100 / 1920 * 100%);
    }
}

@media (max-width: 1023px) {
    .main__section--etf-tv .main__section-inner {
        padding-top: 48px;
    }
}

@media (max-width: 1023px) {
    .main__section--etf-tv .main__section-title-area {
        width: 100%;
    }
}

@media (max-width: 1023px) {
    .main__section--etf-tv .main__section-title-desc {
        padding-bottom: 16px;
    }
}

.main__section--etf-tv .main__section-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 1023px) {
    .main__section--etf-tv .main__section-content {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.main__section--etf-tv .main__section-left {
    width: calc(691 / 1680 * 100%);
    margin-right: calc(158 / 1680* 100%);
}

@media (max-width: 1920px) {
    .main__section--etf-tv .main__section-left {
        margin-right: auto;
    }
}

@media (max-width: 1800px) {
    .main__section--etf-tv .main__section-left {
        width: 47%;
    }
}

@media (max-width: 1023px) {
    .main__section--etf-tv .main__section-left {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
        width: 100%;
        margin-top: 32px;
    }
}

.main__section--etf-tv .main__section-right {
    width: calc(830 / 1680* 100%);
    padding-right: calc(121 / 1680* 100%);
}

@media (max-width: 1023px) {
    .main__section--etf-tv .main__section-right {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
        width: 100%;
        margin-left: 0;
        padding-right: 0;
    }
}

.main__section--notice {
    background-color: #111;
}

.main__section--notice .main__section-inner {
    position: relative;
    padding-top: 100px;
    padding-bottom: 8px;
}

@media (max-width: 1023px) {
    .main__section--notice .main__section-inner {
        padding-top: 72px;
    }
}

.main__section--notice .c-back-to-top {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
}

.main__section--notice li {
    position: relative;
    padding-left: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    color: #999;
}

.main__section--notice li:last-child {
    margin-bottom: 0;
}

@media (max-width: 1023px) {
    .main__section--notice li {
        font-size: 12px;
        line-height: 20px;
    }
}

.main__section--notice li::after {
    content: '';
    position: absolute;
    top: 0.58em;
    left: 0;
    width: 3px;
    height: 3px;
    background: #999;
}

.main__section-inner {
    max-width: 1920px;
    margin: 0 auto;
    padding: 120px;
}

@media (max-width: 1920px) {
    .main__section-inner {
        padding: calc(120 / 1920 * 100%);
    }
}

@media (max-width: 1280px) {
    .main__section-inner {
        padding: calc(120 / 1280 * 100%) calc(50 / 1280 * 100%);
    }
}

@media (max-width: 1023px) {
    .main__section-inner {
        padding: 48px 20px;
    }
}

.main__section-inner--future-find {
    padding-bottom: 0;
}

@media (max-width: 1023px) {
    .main__section-inner--future-find {
        padding: 48px 0;
    }
}

.main__section-inner--two-column {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 1023px) {
    .main__section-inner--two-column {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.main__section-title-area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
}

@media (max-width: 1023px) {
    .main__section-title-area {
        width: 100%;
    }
}

.main__section-title-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    -webkit-column-gap: 1ch;
    -moz-column-gap: 1ch;
    column-gap: 1ch;
    color: #000;
}

.main__section-title-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 48px;
    font-weight: 300;
    line-height: 1.167;
    word-break: keep-all;
}

@media (max-width: 1920px) {
    .main__section-title-inner {
        font-size: MAX(calc(48 / (1920 + var(--user-scrollbar-width)) * 100vw), 30px);
    }
}

@media (max-width: 1023px) {
    .main__section-title-inner {
        font-size: 28px;
        line-height: 36px;
    }
}

.main__section-title-text {
    display: contents;
}

.main__section-title-text--weight400 {
    font-weight: 400;
}

.main__section-title-text--weight500 {
    font-weight: 500;
}

.main__section-title-text--weight600 {
    font-weight: 600;
}

.main__section-title-text--weight700 {
    font-weight: 700;
}

.main__section-title-arrow {
    height: 32px;
    width: 32px;
    -webkit-transform: translateX(8px) rotate(180deg);
    -ms-transform: translateX(8px) rotate(180deg);
    transform: translateX(8px) rotate(180deg);
    background: url(../images/main/pc/icon-main-arrow.svg) no-repeat center;
    background-size: contain;
}

@media (max-width: 1920px) {
    .main__section-title-arrow {
        height: calc(32em / 48);
        width: calc(32em / 48);
        -webkit-transform: translateX(calc(10em / 48)) rotate(180deg);
        -ms-transform: translateX(calc(10em / 48)) rotate(180deg);
        transform: translateX(calc(10em / 48)) rotate(180deg);
    }
}

@media (max-width: 1023px) {
    .main__section-title-arrow {
        display: -webkit-inline-box;
        display: -webkit-inline-flex;
        display: -ms-inline-flexbox;
        display: inline-flex;
        width: 24px;
        height: 24px;
        padding-right: 4px;
    }
}

.main__section-title-desc {
    width: 100%;
    padding: 16px 0 80px;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    word-break: keep-all;
}

@media (max-width: 1920px) {
    .main__section-title-desc {
        padding-bottom: calc(80 / (1920 + var(--user-scrollbar-width)) * 100vw);
    }
}

@media (max-width: 1023px) {
    .main__section-title-desc {
        padding: 10px 0 40px;
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
    }
}

/* dark-bg */
.l-dark-bg.invisible {
    display: none !important;
}

/* // dark-bg */
.swiper {
    overflow: hidden;
    position: relative;
}

.swiper .swiper-wrapper {
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
}

.swiper .swiper__button {
    position: relative;
    width: 120px;
    height: 120px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    cursor: pointer;
}

@media (max-width: 1023px) {
    .swiper .swiper__button {
        display: none;
    }
}

.swiper .swiper__button::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-size: auto;
    -webkit-transition: -webkit-filter .4s;
    transition: -webkit-filter .4s;
    transition: filter .4s;
    transition: filter .4s, -webkit-filter .4s;
}

.swiper .swiper__button[aria-disabled="true"] {
    cursor: none;
    pointer-events: none;
}

.swiper .swiper__button[aria-disabled="true"]::after {
    -webkit-filter: contrast(0);
    filter: contrast(0);
    opacity: 0.35;
}

.swiper .swiper__button--next::after {
    background: url(../images/main/pc/icon-main-arrow.svg) no-repeat center;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.swiper .swiper__button--prev::after {
    background: url(../images/main/pc/icon-main-arrow.svg) no-repeat center;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

.swiper .swiper-pagination {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 10px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    gap: 8px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 1023px) {
    .swiper .swiper-pagination {
        gap: 6px;
    }
}

.swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0;
    background-color: #666;
    border-radius: 0;
    cursor: pointer;
    -webkit-transition: margin .3s, -webkit-transform .3s;
    transition: margin .3s, -webkit-transform .3s;
    transition: transform .3s, margin .3s;
    transition: transform .3s, margin .3s, -webkit-transform .3s;
}

@media (max-width: 1023px) {
    .swiper .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
    }
}

.swiper .swiper-pagination-bullet-active {
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    margin: 0 4px;
}

@media (max-width: 1023px) {
    .swiper .swiper-pagination-bullet-active {
        -webkit-transform: scale(1.6666);
        -ms-transform: scale(1.6666);
        transform: scale(1.6666);
        margin: 0 6px;
    }
}

.swiper--key-visual {
    position: absolute;
    height: 100%;
}

.swiper--key-visual .swiper__img {
    width: 100%;
    height: 100%;
}

.swiper--key-visual .swiper__content-linker {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 1px;
}

@media (max-width: 1023px) {
    .swiper--key-visual .swiper__content-linker {
        width: 100%;
    }
}

.swiper--key-visual .swiper__txt-area {
    height: 100%;
    color: #fff;
}

.swiper--key-visual .swiper__content-eyebrow {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}

@media (max-width: 1023px) {
    .swiper--key-visual .swiper__content-eyebrow {
        font-size: 12px;
        line-height: 20px;
    }
}

.swiper--key-visual .swiper__content-title {
    margin-top: 8px;
    font-size: 32px;
    font-weight: 500;
    line-height: 42px;
}

@media (max-width: 1920px) {
    .swiper--key-visual .swiper__content-title {
        font-size: MAX(calc(32 / (1920 + var(--user-scrollbar-width)) * 100vw), 30px);
        line-height: 1.3125;
    }
}

@media (max-width: 1023px) {
    .swiper--key-visual .swiper__content-title {
        margin-top: 4px;
        font-size: 24px;
        line-height: 36px;
    }
}

.swiper--key-visual .swiper__content-desc {
    max-height: 48px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: 24px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

@media (max-width: 1023px) {
    .swiper--key-visual .swiper__content-desc {
        display: none;
    }
}

.swiper--key-visual .swiper-pagination {
    position: absolute;
    left: 53%;
    bottom: 33px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 12px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    gap: 8px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 10;
}

@media (max-width: 1023px) {
    .swiper--key-visual .swiper-pagination {
        right: auto;
        bottom: auto;
        left: 24px;
        bottom: calc(60% - -23px);
        gap: 6px;
    }
}

.swiper--key-visual .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0;
    background-color: #666;
    border-radius: 0;
    -webkit-transition: margin .3s, -webkit-transform .3s;
    transition: margin .3s, -webkit-transform .3s;
    transition: transform .3s, margin .3s;
    transition: transform .3s, margin .3s, -webkit-transform .3s;
}

@media (max-width: 1023px) {
    .swiper--key-visual .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
    }
}

.swiper--key-visual .swiper-pagination-bullet-active {
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    margin: 0 4px;
    background-color: #fff;
}

@media (max-width: 1023px) {
    .swiper--key-visual .swiper-pagination-bullet-active {
        -webkit-transform: scale(1.6666);
        -ms-transform: scale(1.6666);
        transform: scale(1.6666);
        margin: 0 6px;
    }
}

.swiper--core-product {
    height: 602px;
}

@media (max-width: 1023px) {
    .swiper--core-product {
        height: calc(320 / 375 * 100vw);
        max-height: 602px;
    }
}

.swiper--core-product .swiper__img {
    object-fit: cover;
    -webkit-filter: brightness(0.7);
    filter: brightness(0.7);
    width: 100%;
    height: 100%;
}

.swiper--core-product .swiper__content {
    position: relative;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    z-index: 10;
}

.swiper--core-product .swiper__content-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 1px;
}

@media (max-width: 1023px) {
    .swiper--core-product .swiper__content-inner {
        width: 100%;
    }
}

.swiper--core-product .swiper__txt-area {
    width: 100%;
    padding: 40px;
    background: rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    color: #fff;
}

@media (max-width: 1920px) {
    .swiper--core-product .swiper__txt-area {
        padding: MAX(calc(40 / (1920 + var(--user-scrollbar-width)) * 100vw), 20px);
    }
}

@media (max-width: 1023px) {
    .swiper--core-product .swiper__txt-area {
        padding: 24px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.swiper--core-product .swiper__content-linker {
    width: 100%;
}

.swiper--core-product .swiper__content-eyebrow {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}

@media (max-width: 1023px) {
    .swiper--core-product .swiper__content-eyebrow {
        font-size: 12px;
        line-height: 20px;
    }
}

.swiper--core-product .swiper__content-title {
    margin-top: 8px;
    font-size: 32px;
    font-weight: 500;
    line-height: 42px;
}

@media (max-width: 1920px) {
    .swiper--core-product .swiper__content-title {
        font-size: MAX(calc(32 / (1920 + var(--user-scrollbar-width)) * 100vw), 25px);
        line-height: 1.3125;
    }
}

@media (max-width: 1023px) {
    .swiper--core-product .swiper__content-title {
        max-height: 72px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        margin-top: 4px;
        font-size: 24px;
        line-height: 36px;
    }
}

.swiper--core-product .swiper__content-desc {
    max-height: 48px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: 24px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

@media (max-width: 1023px) {
    .swiper--core-product .swiper__content-desc {
        display: none;
    }
}

.swiper--core-product .swiper__button {
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

@media (max-width: 1920px) {
    .swiper--core-product .swiper__button {
        width: calc(120 / 1920 * 100vw);
        height: calc(120 / 1920 * 100vw);
    }
}

@media (max-width: 1920px) {
    .swiper--core-product .swiper__button--prev::after,
  .swiper--core-product .swiper__button--next::after {
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: calc(32 / 1920 * 100vw);
        height: calc(32 / 1920 * 100vw);
        background-position: center;
        background-size: contain;
    }
}

@media (max-width: 1920px) {
    .swiper--core-product .swiper__button--next::after {
        -webkit-transform: translate(-50%, -50%) rotate(180deg);
        -ms-transform: translate(-50%, -50%) rotate(180deg);
        transform: translate(-50%, -50%) rotate(180deg);
    }
}

.swiper--core-product .swiper-pagination {
    margin-top: 48px;
}

@media (max-width: 1023px) {
    .swiper--core-product .swiper-pagination {
        margin-top: 24px;
    }
}

.swiper--core-product .swiper-pagination-bullet-active {
    background-color: #fff;
}

.swiper--etf-understanding {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: visible;
    gap: 1px;
    background-color: #fff;
}

@media (max-width: 1023px) {
    .swiper--etf-understanding {
        margin-top: 24px;
        height: initial;
    }
}

.swiper--etf-understanding .swiper__content {
    position: relative;
    z-index: 10;
    min-height: -webkit-max-content;
    min-height: -moz-max-content;
    min-height: max-content;
    padding: 20px;
    background-color: #fff;
}

@media (max-width: 1023px) {
    .swiper--etf-understanding .swiper__content {
        padding: 16px;
        min-height: auto;
    }
}

.swiper--etf-understanding .swiper__header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.swiper--etf-understanding .swiper__eyebrow {
    color: #666;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

@media (max-width: 1023px) {
    .swiper--etf-understanding .swiper__eyebrow {
        font-size: 14px;
        font-weight: 500;
        line-height: 22px;
    }
}

.swiper--etf-understanding .swiper__date {
    color: #9D9D9C;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}

@media (max-width: 1023px) {
    .swiper--etf-understanding .swiper__date {
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
    }
}

.swiper--etf-understanding .swiper__title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: calc(82em / 32);
    margin-top: 12px;
    color: #000;
    font-weight: 500;
    font-size: 32px;
    line-height: 1.3125;
}

@media (max-width: 1920px) {
    .swiper--etf-understanding .swiper__title {
        font-size: MAX(calc(32 / (1920 + var(--user-scrollbar-width)) * 100vw), 20px);
    }
}

@media (max-width: 1023px) {
    .swiper--etf-understanding .swiper__title {
        height: 56px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        margin-top: 8px;
        font-size: 20px;
        line-height: 28px;
    }
}

.swiper--etf-understanding .swiper__title-linker {
    color: #000;
}

.swiper--etf-understanding .swiper__title-linker[role='button'] {
    cursor: pointer;
}

.swiper--etf-understanding .swiper__hashtag-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    overflow: hidden;
    height: 55px;
    margin-top: 28px;
    margin-right: 80px;
    white-space: nowrap;
    gap: 11px;
}

@media (max-width: 1023px) {
    .swiper--etf-understanding .swiper__hashtag-list {
        margin: 24px 0 34px;
    }
}

.swiper--etf-understanding .swiper__hashtag-item {
    position: relative;
    padding-left: 1.2ex;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}

@media (max-width: 1023px) {
    .swiper--etf-understanding .swiper__hashtag-item {
        margin-right: 0;
        font-size: 14px;
        line-height: 22px;
    }
}

.swiper--etf-understanding .swiper__hashtag-item::before {
    content: '#';
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #666;
}

.swiper--etf-understanding .swiper__hashtag-linker {
    color: #666;
}

.swiper--etf-understanding .swiper__img-wrap {
    position: relative;
    width: 100%;
}

.swiper--etf-understanding .swiper__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
  /* yjbaek. 0722 */
}

.swiper--etf-understanding .swiper__img-linker {
    display: block;
    position: relative;
    height: 100%;
    aspect-ratio: 709 / 425;
    color: #000;
}

.swiper--etf-understanding .swiper__img-linker::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/main/pc/bg-main-mosaic-type01.png) no-repeat center;
    background-size: cover;
}

.swiper--etf-understanding .swiper__btn-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1px;
}

@media (max-width: 1023px) {
    .swiper--etf-understanding .swiper__btn-wrap {
        display: none;
    }
}

.swiper--etf-understanding .swiper__button {
    background-color: #fff;
}

@media (max-width: 1920px) {
    .swiper--etf-understanding .swiper__button {
        width: calc(120 / 1920 * 100vw);
        height: calc(120 / 1920 * 100vw);
    }
}

@media (max-width: 1920px) {
    .swiper--etf-understanding .swiper__button--prev::after,
  .swiper--etf-understanding .swiper__button--next::after {
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: calc(32 / 1920 * 100vw);
        height: calc(32 / 1920 * 100vw);
        background-position: center;
        background-size: contain;
    }
}

@media (max-width: 1920px) {
    .swiper--etf-understanding .swiper__button--next::after {
        -webkit-transform: translate(-50%, -50%) rotate(180deg);
        -ms-transform: translate(-50%, -50%) rotate(180deg);
        transform: translate(-50%, -50%) rotate(180deg);
    }
}

.swiper--etf-understanding .swiper-pagination {
    position: absolute;
    top: calc(80px + 89em / 32);
    right: 24px;
    z-index: 10;
    font-size: MAX(calc(32 / (1920 + var(--user-scrollbar-width)) * 100vw), 20px);
    line-height: 1.3125;
}

@media (max-width: 1023px) {
    .swiper--etf-understanding .swiper-pagination {
        position: absolute;
        top: 206px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.swiper--etf-understanding .swiper-pagination-bullet {
    background-color: #ddd;
}

.swiper--etf-understanding .swiper-pagination-bullet-active {
    background-color: #000;
}

.c-tab-combo--core-product .c-tab-combo__panel:nth-last-child(1) .core-product__graph-bar.on {
    background-color: #060052;
}

.c-tab-combo--core-product .c-tab-combo__panel:nth-last-child(1) .core-product__graph-bar.on .core-product__earnings-rate {
    color: #00D4FF;
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar {
    position: relative;
    height: 48px;
    background-color: #fff;
    -webkit-transition: width .4s, height .4s, background-color .4s;
    transition: width .4s, height .4s, background-color .4s;
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar--rank1 .core-product__title-txt {
    width: calc(100% - 48px);
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar--rank2 {
    width: calc(599 / 832 * 100%);
}

@media (max-width: 1023px) {
    .c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar--rank2 {
        width: 100%;
    }
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar--rank2 .core-product__title-txt {
    width: calc(100% - 48px);
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar--rank3 {
    width: calc(547 / 832 * 100%);
}

@media (max-width: 1023px) {
    .c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar--rank3 {
        width: 100%;
    }
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar--rank3 .core-product__title-txt {
    width: calc(100% - 48px);
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar--rank4 {
    width: calc(510 / 832 * 100%);
}

@media (max-width: 1023px) {
    .c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar--rank4 {
        width: 100%;
    }
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar--rank4 .core-product__title-txt {
    width: calc(100% - 48px);
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar--rank5 {
    width: calc(451 / 832 * 100%);
}

@media (max-width: 1023px) {
    .c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar--rank5 {
        width: 100%;
    }
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar--rank5 .core-product__title-txt {
    width: calc(100% - 48px);
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar[data-product-initial="g"]::after {
    background: url(../images/common/pc/icon-bx-g.svg) no-repeat center;
    background-size: contain;
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar[data-product-initial="pa"]::after {
    background: url(../images/common/pc/icon-bx-pa.svg) no-repeat center;
    background-size: contain;
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar[data-product-initial="m"]::after {
    background: url(../images/common/pc/icon-bx-m.svg) no-repeat center;
    background-size: contain;
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar[data-product-initial="st"]::after {
    background: url(../images/common/pc/icon-bx-st.svg) no-repeat center;
    background-size: contain;
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar[data-product-initial="2x"]::after {
    background: url(../images/common/pc/icon-bx-2x.svg) no-repeat center;
    background-size: contain;
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar[data-product-initial="t"]::after {
    background: url(../images/common/pc/icon-bx-t.svg) no-repeat center;
    background-size: contain;
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar[data-product-initial="ae"]::after {
    background: url(../images/common/pc/icon-bx-ae.svg) no-repeat center;
    background-size: contain;
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar[data-product-initial="kr"]::after {
    background: url(../images/common/pc/icon-bx-kr.svg) no-repeat center;
    background-size: contain;
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar[data-product-initial="rp"]::after {
    background: url(../images/common/pc/icon-bx-rp.svg) no-repeat center;
    background-size: contain;
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar[data-product-initial="di"]::after {
    background: url(../images/common/pc/icon-bx-di.svg) no-repeat center;
    background-size: contain;
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar[data-product-initial="b"]::after {
    background: url(../images/common/pc/icon-bx-b.svg) no-repeat center;
    background-size: contain;
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar[data-product-initial="-1x"]::after {
    background: url(../images/common/pc/icon-bx--1x.svg) no-repeat center;
    background-size: contain;
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar[data-product-initial="ai"]::after {
    background: url(../images/common/pc/icon-bx-ai.svg) no-repeat center;
    background-size: contain;
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar[data-product-initial="sc"]::after {
    background: url(../images/common/pc/icon-bx-sc.svg) no-repeat center;
    background-size: contain;
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar[data-product-initial="p"]::after {
    background: url(../images/common/pc/icon-bx-p.svg) no-repeat center;
    background-size: contain;
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar[data-product-initial="s"]::after {
    background: url(../images/common/pc/icon-bx-s.svg) no-repeat center;
    background-size: contain;
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar[data-product-initial="aa"]::after {
    background: url(../images/common/pc/icon-bx-aa.svg) no-repeat center;
    background-size: contain;
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar[data-product-initial="rit"]::after {
    background: url(../images/common/pc/icon-bx-rit.svg) no-repeat center;
    background-size: contain;
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar[data-product-initial="sb"]::after {
    background: url(../images/common/pc/icon-bx-sb.svg) no-repeat center;
    background-size: contain;
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar[data-product-initial="de"]::after {
    background: url(../images/common/pc/icon-bx-de.svg) no-repeat center;
    background-size: contain;
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar[data-product-initial="re"]::after {
    background: url(../images/common/pc/icon-bx-re.svg) no-repeat center;
    background-size: contain;
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar[data-product-initial="ml"]::after {
    background: url(../images/common/pc/icon-bx-ml.svg) no-repeat center;
    background-size: contain;
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar.on {
    width: 100%;
    height: 258px;
    padding: 32px 24px;
    background-color: #280052;
}

@media (max-width: 1023px) {
    .c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar.on {
        height: 240px;
    }
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar.on::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
}

@media (max-width: 1023px) {
    .c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar.on::after {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 1023px) {
    .c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar.on {
        height: auto;
        padding: 16px;
    }
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar.on .core-product__graph-inner {
    gap: 10px;
    color: #fff;
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar.on .core-product__body {
    gap: 20px;
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar.on .core-product__rank-box {
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar.on .core-product__rank {
    height: 100%;
    font-size: 40px;
    font-weight: 500;
    line-height: 50px;
    -webkit-animation: 1s core-product-visible-rank;
    animation: 1s core-product-visible-rank;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@media (max-width: 1920px) {
    .c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar.on .core-product__rank {
        font-size: MAX(calc(40 / (1920 + var(--user-scrollbar-width)) * 100vw), 30px);
    }
}

@media (max-width: 1023px) {
    .c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar.on .core-product__rank {
        font-size: 24px;
        line-height: 36px;
    }
}

@media (max-width: 375px) {
    .c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar.on .core-product__rank {
        font-size: MAX(calc(24px / 375), 20px);
        line-height: 1.5;
    }
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar.on .core-product__rank-unit {
    margin-left: calc(9em / 40 * -1);
}

@media (max-width: 1023px) {
    .c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar.on .core-product__rank-unit {
        margin-left: calc(5em / 24 * -1);
    }
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar.on .core-product__title-txt {
    margin-bottom: 10px;
    padding: 0;
    color: #fff;
    font-size: 40px;
    font-weight: 500;
    line-height: 50px;
    white-space: initial;
    text-overflow: initial;
    overflow: initial;
    word-break: break-all;
    -webkit-animation: 1s core-product-visible;
    animation: 1s core-product-visible;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@media (max-width: 1920px) {
    .c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar.on .core-product__title-txt {
        overflow: hidden;
        max-height: 76px;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        font-size: MAX(calc(32 / (1920 + var(--user-scrollbar-width)) * 100vw), 30px);
        line-height: 1.25;
    }
}

@media (max-width: 1023px) {
    .c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar.on .core-product__title-txt {
        margin-bottom: 4px;
        font-size: 24px;
        line-height: 36px;
    }
}

@media (max-width: 375px) {
    .c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar.on .core-product__title-txt {
        font-size: MAX(calc(24px / 375), 20px);
        line-height: 1.5;
    }
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar.on .core-product__num-area {
    -webkit-animation: 1s core-product-visible;
    animation: 1s core-product-visible;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar.on .core-product__eyebrow {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    visibility: visible;
    -webkit-animation: 1s core-product-visible;
    animation: 1s core-product-visible;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@media (max-width: 1023px) {
    .c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar.on .core-product__eyebrow {
        font-size: 12px;
        font-weight: 300;
        line-height: 20px;
    }
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar.on .core-product__earnings-rate {
    width: 100%;
    color: #9C95FF;
    text-align: right;
    font-size: 40px;
    font-weight: 500;
    line-height: 50px;
}

@media (max-width: 1920px) {
    .c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar.on .core-product__earnings-rate {
        font-size: MAX(calc(40 / (1920 + var(--user-scrollbar-width)) * 100vw), 30px);
    }
}

@media (max-width: 1023px) {
    .c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar.on .core-product__earnings-rate {
        width: initial;
        text-align: left;
        font-size: 32px;
        line-height: 40px;
    }
}

@media (max-width: 375px) {
    .c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar.on .core-product__earnings-rate {
        font-size: MAX(calc(32px / 375), 28px);
        line-height: 1.25;
    }
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar.on .core-product__list {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}

@media (max-width: 1023px) {
    .c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar.on .core-product__list {
        margin-top: 0;
    }
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar.on .core-product__benchmark-price {
    margin-left: 8px;
}

@media (max-width: 1023px) {
    .c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar.on .core-product__benchmark-price {
        -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar.on .core-product__benchmark-price-unit {
    margin-left: calc(3em / 14 * -1);
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-bar.on .core-product__reference-date-price {
    margin-left: 8px;
}

@-webkit-keyframes core-product-visible-rank {
    0% {
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@keyframes core-product-visible-rank {
    0% {
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes core-product-visible {
    0%, 40% {
        opacity: 0;
    }

    60% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@keyframes core-product-visible {
    0%, 40% {
        opacity: 0;
    }

    60% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__graph-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 0;
    padding: 0;
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 0;
}

@media (max-width: 1023px) {
    .c-tab-combo--core-product .c-tab-combo__panel .core-product__body {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__txt-area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__rank-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 48px;
    height: 48px;
    color: #fff;
    background-color: #000;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1023px) {
    .c-tab-combo--core-product .c-tab-combo__panel .core-product__rank-box {
        font-size: 18px;
        line-height: 26px;
    }
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__rank {
    font-size: 0;
    line-height: 0;
    opacity: 0;
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__title-txt {
    padding: 12px 16px;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__eyebrow {
    font-size: 0;
    opacity: 0;
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__pension + span {
    position: relative;
    padding-left: 17px;
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__pension + span::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 8px;
    width: 1px;
    height: 10px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #fff;
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__num-area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    opacity: 0;
}

@media (max-width: 1023px) {
    .c-tab-combo--core-product .c-tab-combo__panel .core-product__num-area {
        -webkit-box-orient: initial;
        -webkit-box-direction: initial;
        -webkit-flex-direction: initial;
        -ms-flex-direction: initial;
        flex-direction: initial;
        height: 44px;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 20px;
    }
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__earnings-rate {
    font-size: 0;
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__list {
    font-size: 0;
}

@media (max-width: 1023px) {
    .c-tab-combo--core-product .c-tab-combo__panel .core-product__list {
        margin-top: 0;
    }
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 0px;
}

@media (max-width: 1023px) {
    .c-tab-combo--core-product .c-tab-combo__panel .core-product__item {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__benchmark-txt {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.c-tab-combo--core-product .c-tab-combo__panel .core-product__benchmark-price {
    text-align: right;
}

.marquee-wrap {
    overflow: hidden;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 30;
    opacity: 0;
}

.marquee-wrap.active {
    opacity: 1;
    -webkit-transition: opacity .5s ease;
    transition: opacity .5s ease;
}

.marquee__track {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

.marquee__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    white-space: nowrap;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.marquee__item {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 40px 8px;
    border: none;
    background-color: rgba(0, 0, 0, 0.6);
    cursor: pointer;
}

@media (max-width: 1023px) {
    .marquee__item {
        margin: 24px 8px;
    }
}

.marquee__item::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: url(../images/main/pc/icon-marquee-right-arrow.svg) no-repeat;
    background-size: cover;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .4s, visibility .4s, background-color .4s;
    transition: opacity .4s, visibility .4s, background-color .4s;
}

@media (max-width: 1023px) {
    .marquee__item::after {
        width: 16px;
        height: 16px;
    }
}

.marquee__item:hover, .marquee__item:focus {
    background-color: #280052;
}

.marquee__item:hover::after, .marquee__item:focus::after {
    opacity: 1;
    visibility: visible;
}

.marquee__item:hover .marquee__thumbnail, .marquee__item:focus .marquee__thumbnail {
    -webkit-filter: brightness(1);
    filter: brightness(1);
}

.marquee__item:hover .marquee__txt, .marquee__item:focus .marquee__txt {
    color: #9C95FF;
    padding-right: 44px;
}

@media (max-width: 1023px) {
    .marquee__item:hover .marquee__txt, .marquee__item:focus .marquee__txt {
        padding-right: 24px;
    }
}

.marquee__thumbnail {
    width: 64px;
    height: 64px;
    -webkit-filter: brightness(0.3);
    filter: brightness(0.3);
    -webkit-transition: -webkit-filter .4s;
    transition: -webkit-filter .4s;
    transition: filter .4s;
    transition: filter .4s, -webkit-filter .4s;
}

@media (max-width: 1023px) {
    .marquee__thumbnail {
        width: 48px;
        height: 48px;
    }
}

.marquee__txt {
    position: relative;
    margin: 0 20px;
    padding-left: 18px;
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    line-height: 28px;
    -webkit-transition: color .4s, padding .4s;
    transition: color .4s, padding .4s;
}

@media (max-width: 1023px) {
    .marquee__txt {
        font-size: 14px;
        line-height: 22px;
    }
}

.marquee__txt::before {
    content: '#';
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media (max-width: 1023px) {
    .marquee__txt {
        font-weight: 300;
        line-height: 22px;
    }
}

.marquee--default .marquee__list.active {
    -webkit-animation: marquee linear infinite;
    animation: marquee linear infinite;
}

@keyframes marquee {
    from {
        -webkit-transform: translate3d(0%, 0%, 0);
        transform: translate3d(0%, 0%, 0);
    }

    to {
        -webkit-transform: translate3d(-100%, 0%, 0);
        transform: translate3d(-100%, 0%, 0);
    }
}

@-webkit-keyframes marquee {
    from {
        -webkit-transform: translate3d(0%, 0%, 0);
    }

    to {
        -webkit-transform: translate3d(-100%, 0%, 0);
    }
}

.related-products {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 698px;
    gap: 1px;
    overflow: hidden;
    color: #fff;
}

@media (max-width: 1023px) {
    .related-products {
        height: auto;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.related-products__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    overflow: hidden;
    height: calc(360 / 698 * 100%);
    width: 134px;
    -webkit-transform: translate3d(0, calc((698 - 360) / 360 * 100%), 0);
    transform: translate3d(0, calc((698 - 360) / 360 * 100%), 0);
    -webkit-transition: height .7s, width .7s, -webkit-transform .7s;
    transition: height .7s, width .7s, -webkit-transform .7s;
    transition: height .7s, width .7s, transform .7s;
    transition: height .7s, width .7s, transform .7s, -webkit-transform .7s;
}

@media (max-width: 1023px) {
    .related-products__item {
        width: 100%;
        height: 76px;
        -webkit-transform: initial;
        -ms-transform: initial;
        transform: initial;
    }
}

.related-products__item[data-related-product-theme="ml"] .related-products__bg {
    background: url(../images/common/pc/bg-related-product-theme-ml.jpg) no-repeat center;
    background-size: cover;
}

.related-products__item[data-related-product-theme="st"] .related-products__bg {
    background: url(../images/common/pc/bg-related-product-theme-st.jpg) no-repeat center;
    background-size: cover;
}

.related-products__item[data-related-product-theme="m"] .related-products__bg {
    background: url(../images/common/pc/bg-related-product-theme-m.jpg) no-repeat center;
    background-size: cover;
}

.related-products__item[data-related-product-theme="ae"] .related-products__bg {
    background: url(../images/common/pc/bg-related-product-theme-ae.jpg) no-repeat center;
    background-size: cover;
}

.related-products__item[data-related-product-theme="de"] .related-products__bg {
    background: url(../images/common/pc/bg-related-product-theme-de.jpg) no-repeat center;
    background-size: cover;
}

.related-products__item[data-related-product-theme="re"] .related-products__bg {
    background: url(../images/common/pc/bg-related-product-theme-re.jpg) no-repeat center;
    background-size: cover;
}

.related-products__item[data-related-product-theme="s"] .related-products__bg {
    background: url(../images/common/pc/bg-related-product-theme-s.jpg) no-repeat center;
    background-size: cover;
}

.related-products__item[data-related-product-theme="sb"] .related-products__bg {
    background: url(../images/common/pc/bg-related-product-theme-sb.jpg) no-repeat center;
    background-size: cover;
}

.related-products__item[data-related-product-theme="p"] .related-products__bg {
    background: url(../images/common/pc/bg-related-product-theme-p.jpg) no-repeat center;
    background-size: cover;
}

.related-products__item[data-related-product-theme="b"] .related-products__bg {
    background: url(../images/common/pc/bg-related-product-theme-b.jpg) no-repeat center;
    background-size: cover;
}

.related-products__item[data-related-product-theme="ai"] .related-products__bg {
    background: url(../images/common/pc/bg-related-product-theme-ai.jpg) no-repeat center;
    background-size: cover;
}

.related-products__item[data-related-product-theme="aa"] .related-products__bg {
    background: url(../images/common/pc/bg-related-product-theme-aa.jpg) no-repeat center;
    background-size: cover;
}

.related-products__item[data-related-product-theme="2x"] .related-products__bg {
    background: url(../images/common/pc/bg-related-product-theme-2x.jpg) no-repeat center;
    background-size: cover;
}

.related-products__item[data-related-product-theme="others"] .related-products__bg {
    background: url(../images/common/pc/bg-related-product-theme-others.jpg) no-repeat center;
    background-size: cover;
}

.related-products__item--on {
    height: 100%;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    width: calc(100% - 134 * 2px);
}

@media (max-width: 1023px) {
    .related-products__item--on {
        width: 100%;
        height: 266px !important;
    }
}

.related-products__item--on .related-products__item-body {
    margin: 40px 40px 0 40px;
}

@media (max-width: 1920px) {
    .related-products__item--on .related-products__item-body {
        margin: calc(40 / (1920 + var(--user-scrollbar-width)) * 100vw) calc(40 / (1920 + var(--user-scrollbar-width)) * 100vw) 0 calc(40 / (1920 + var(--user-scrollbar-width)) * 100vw);
    }
}

@media (max-width: 1023px) {
    .related-products__item--on .related-products__item-body {
        margin: 0;
        padding: 24px;
    }
}

.related-products__item--on .related-products__blur {
    background-color: transparent;
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
}

.related-products__item--on .related-products__eyebrow {
    color: #9C95FF;
}

.related-products__item--on .related-products__title {
    font-size: 32px;
    line-height: 42px;
    -webkit-transform: translateY(0) !important;
    -ms-transform: translateY(0) !important;
    transform: translateY(0) !important;
}

@media (max-width: 1920px) {
    .related-products__item--on .related-products__title {
        font-size: MAX(calc(32 / (1920 + var(--user-scrollbar-width)) * 100vw), 20px);
        line-height: 1.3125;
    }
}

@media (max-width: 1023px) {
    .related-products__item--on .related-products__title {
        max-height: 84px;
        margin: 36px 0 16px;
        font-size: 20px;
        line-height: 28px;
    }
}

@media (max-width: 1023px) {
    .related-products__item--on .related-products__btn-more {
        height: 28px;
    }
}

.related-products__item--on .related-products__num-area {
    margin: 0 40px 40px 40px;
    gap: 10px;
    font-size: 16px;
}

@media (max-width: 1920px) {
    .related-products__item--on .related-products__num-area {
        margin: 0 calc(40 / (1920 + var(--user-scrollbar-width)) * 100vw) calc(40 / (1920 + var(--user-scrollbar-width)) * 100vw) calc(40 / (1920 + var(--user-scrollbar-width)) * 100vw);
        font-size: MAX(calc(16 / (1920 + var(--user-scrollbar-width)) * 100vw), 13px);
    }
}

@media (max-width: 1023px) {
    .related-products__item--on .related-products__num-area {
        margin: 0 20px 20px 20px;
        font-size: 13px;
        line-height: 21px;
    }
}

.related-products__item--on .related-products__earnings-rate {
    font-size: 48px;
    color: #9C95FF;
}

@media (max-width: 1920px) {
    .related-products__item--on .related-products__earnings-rate {
        font-size: MAX(calc(48 / (1920 + var(--user-scrollbar-width)) * 100vw), 30px);
    }
}

@media (max-width: 1023px) {
    .related-products__item--on .related-products__earnings-rate {
        color: #fff;
    }
}

.related-products__item--on .related-products__eyebrow,
.related-products__item--on .related-products__title,
.related-products__item--on .related-products__desc,
.related-products__item--on .related-products__btn-more,
.related-products__item--on .related-products__num-area {
    visibility: visible;
    -webkit-animation: 1s related-products-visible;
    animation: 1s related-products-visible;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@-webkit-keyframes related-products-visible {
    0%, 80% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes related-products-visible {
    0%, 80% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.related-products__bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    object-fit: cover;
    width: 100%;
    width: -webkit-fill-available;
    height: 100%;
    height: -webkit-fill-available;
    -webkit-filter: brightness(0.5);
    filter: brightness(0.5);
}

.related-products__blur {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(204, 204, 204, 0.1);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.8) 0, rgba(0, 0, 0, 0) 34.09%, rgba(0, 0, 0, 0) 64.28%, rgba(0, 0, 0, 0.8) 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0, rgba(0, 0, 0, 0) 34.09%, rgba(0, 0, 0, 0) 64.28%, rgba(0, 0, 0, 0.8) 100%);
    -webkit-transition: background-color .4s, -webkit-backdrop-filter .4s;
    transition: background-color .4s, -webkit-backdrop-filter .4s;
    transition: background-color .4s, backdrop-filter .4s;
    transition: background-color .4s, backdrop-filter .4s, -webkit-backdrop-filter .4s;
}

.related-products__eyebrow {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    opacity: 0;
    visibility: hidden;
}

@media (max-width: 1023px) {
    .related-products__eyebrow {
        position: absolute;
        top: 24px;
        font-size: 12px;
        line-height: 20px;
    }
}

.related-products__title {
    margin-top: 24px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    opacity: 0;
    -webkit-animation: 1s related-products-title-shrink;
    animation: 1s related-products-title-shrink;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@-webkit-keyframes related-products-title-shrink {
    0%, 80% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes related-products-title-shrink {
    0%, 80% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@media (max-width: 1023px) {
    .related-products__title {
        position: relative;
        overflow: hidden;
        width: 100%;
        max-height: 44px;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        margin: 0;
        font-size: 14px;
        font-weight: 500;
        line-height: 22px;
    }
}

.related-products__desc {
    position: relative;
    max-height: 96px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    margin-top: 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    opacity: 0;
    visibility: hidden;
}

@media (max-width: 1023px) {
    .related-products__desc {
        display: none;
    }
}

.related-products__btn-more {
    display: block;
    position: relative;
    width: 40px;
    height: 40px;
    margin-top: 24px;
    background: url(../images/main/pc/icon-right-arrow-white.svg);
    background-size: cover;
    opacity: 0;
    visibility: hidden;
}

@media (max-width: 1023px) {
    .related-products__btn-more {
        width: 24px;
        height: 0;
        margin-top: 0;
        background: url(../images/main/mo/icon-right-arrow-white.svg);
    }
}

.related-products__item-body {
    margin: 24px 24px 0 24px;
}

@media (max-width: 1023px) {
    .related-products__item-body {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-content: flex-start;
        -ms-flex-line-pack: start;
        align-content: flex-start;
        height: 100%;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: 0;
        padding: 16px 24px;
        -webkit-transition: padding .4s;
        transition: padding .4s;
    }
}

.related-products__num-area {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin: 0;
    gap: 10px;
    font-size: 0;
    font-weight: 400;
    line-height: 24px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
}

@media (max-width: 1425px) {
    .related-products__num-area {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (max-width: 1023px) {
    .related-products__num-area {
        position: absolute;
        bottom: 0;
        left: 0;
        width: calc(100% - 40px);
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
}

@media (max-width: 1425px) {
    .related-products__num-list {
        width: 100%;
    }
}

@media (max-width: 1023px) {
    .related-products__num-list {
        width: auto;
    }
}

.related-products__num-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 8px;
}

@media (max-width: 1023px) {
    .related-products__benchmark-price {
        -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }
}

.related-products__benchmark-price-num {
    display: inline-block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    vertical-align: middle;
}

@media (max-width: 1350px) {
    .related-products__benchmark-price-num {
        max-width: initial;
    }
}

.related-products__benchmark-price-unit {
    margin-left: calc(3em / 13 * -1);
}

.related-products__earnings-rate {
    font-size: 0;
    font-weight: 500;
    line-height: 58px;
}

@media (max-width: 1920px) {
    .related-products__earnings-rate {
        font-size: MAX(calc(48 / (1920 + var(--user-scrollbar-width)) * 100vw), 25px);
        line-height: 1.2083;
    }
}

@media (max-width: 1600px) {
    .related-products__earnings-rate {
        font-size: MAX(calc(40 / (1920 + var(--user-scrollbar-width)) * 100vw), 25px);
    }
}

@media (max-width: 1023px) {
    .related-products__earnings-rate {
        font-size: 32px;
        font-weight: 500;
        line-height: 40px;
    }
}

.related-products__earnings-rate-unit {
    margin-left: calc(12em / 48 * -1);
}

@media (max-width: 1023px) {
    .related-products__earnings-rate-unit {
        margin-left: calc(5em / 32 * -1);
    }
}

@-webkit-keyframes growAndDisappearLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale(0) translate(calc(-50% - 18px), -50%);
        transform: scale(0) translate(calc(-50% - 18px), -50%);
    }

    20% {
        opacity: 1;
        -webkit-transform: scale(3) translate(calc(-50% - 18px), -50%);
        transform: scale(3) translate(calc(-50% - 18px), -50%);
    }

    30% {
        opacity: 1;
        -webkit-transform: scale(3) translate(calc(-50% - 18px), -50%);
        transform: scale(3) translate(calc(-50% - 18px), -50%);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(3) translate(calc(-50% - 150px), -50%);
        transform: scale(3) translate(calc(-50% - 150px), -50%);
    }

    90% {
        opacity: 1;
        -webkit-transform: scale(3) translate(calc(-50% - 150px), -50%);
        transform: scale(3) translate(calc(-50% - 150px), -50%);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(3) translate(calc(-50% - 150px), -50%);
        transform: scale(3) translate(calc(-50% - 150px), -50%);
    }
}

@keyframes growAndDisappearLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale(0) translate(calc(-50% - 18px), -50%);
        transform: scale(0) translate(calc(-50% - 18px), -50%);
    }

    20% {
        opacity: 1;
        -webkit-transform: scale(3) translate(calc(-50% - 18px), -50%);
        transform: scale(3) translate(calc(-50% - 18px), -50%);
    }

    30% {
        opacity: 1;
        -webkit-transform: scale(3) translate(calc(-50% - 18px), -50%);
        transform: scale(3) translate(calc(-50% - 18px), -50%);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(3) translate(calc(-50% - 150px), -50%);
        transform: scale(3) translate(calc(-50% - 150px), -50%);
    }

    90% {
        opacity: 1;
        -webkit-transform: scale(3) translate(calc(-50% - 150px), -50%);
        transform: scale(3) translate(calc(-50% - 150px), -50%);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(3) translate(calc(-50% - 150px), -50%);
        transform: scale(3) translate(calc(-50% - 150px), -50%);
    }
}

@-webkit-keyframes growAndDisappearRight {
    0% {
        opacity: 0;
        -webkit-transform: scale(0) translate(calc(-50% + 18px), -50%);
        transform: scale(0) translate(calc(-50% + 18px), -50%);
    }

    20% {
        opacity: 1;
        -webkit-transform: scale(3) translate(calc(-50% + 18px), -50%);
        transform: scale(3) translate(calc(-50% + 18px), -50%);
    }

    30% {
        opacity: 1;
        -webkit-transform: scale(3) translate(calc(-50% + 18px), -50%);
        transform: scale(3) translate(calc(-50% + 18px), -50%);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(3) translate(calc(-50% + 150px), -50%);
        transform: scale(3) translate(calc(-50% + 150px), -50%);
    }

    90% {
        opacity: 1;
        -webkit-transform: scale(3) translate(calc(-50% + 150px), -50%);
        transform: scale(3) translate(calc(-50% + 150px), -50%);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(3) translate(calc(-50% + 150px), -50%);
        transform: scale(3) translate(calc(-50% + 150px), -50%);
    }
}

@keyframes growAndDisappearRight {
    0% {
        opacity: 0;
        -webkit-transform: scale(0) translate(calc(-50% + 18px), -50%);
        transform: scale(0) translate(calc(-50% + 18px), -50%);
    }

    20% {
        opacity: 1;
        -webkit-transform: scale(3) translate(calc(-50% + 18px), -50%);
        transform: scale(3) translate(calc(-50% + 18px), -50%);
    }

    30% {
        opacity: 1;
        -webkit-transform: scale(3) translate(calc(-50% + 18px), -50%);
        transform: scale(3) translate(calc(-50% + 18px), -50%);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(3) translate(calc(-50% + 150px), -50%);
        transform: scale(3) translate(calc(-50% + 150px), -50%);
    }

    90% {
        opacity: 1;
        -webkit-transform: scale(3) translate(calc(-50% + 150px), -50%);
        transform: scale(3) translate(calc(-50% + 150px), -50%);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(3) translate(calc(-50% + 150px), -50%);
        transform: scale(3) translate(calc(-50% + 150px), -50%);
    }
}

.sub-pages {
    font-size: 16px;
}

.sub-pages .sub-pages__section--report-card {
    margin-top: 120px;
}

@media (max-width: 1023px) {
    .sub-pages .sub-pages__section--report-card {
        margin-top: 200px;
    }
}

.sub-pages .sub-pages__list-wrap {
    margin-top: 80px;
}

@media (max-width: 1023px) {
    .sub-pages .sub-pages__list-wrap {
        margin-top: 40px;
    }
}

.sub-pages .sub-pages__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 64px 4px;
    margin-top: 24px;
}

.sub-pages .sub-pages__list .c-card--insight-etf {
    width: calc((100% - 8px) / 3);
}

.sub-pages .sub-pages__list .c-card--insight-etf .c-card__img {
    position: relative;
}

.sub-pages .sub-pages__list .c-card--insight-etf .c-card__img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/sub/pc/bg-card-grid-mosaic.png) no-repeat center;
    background-size: 100% 100%;
}

@media (max-width: 1023px) {
    .sub-pages .sub-pages__list {
        gap: 16px 8px;
    }

    .sub-pages .sub-pages__list .c-card--insight-etf {
        width: 100%;
        min-width: auto;
    }

    .sub-pages .sub-pages__list .c-card--insight-etf img {
        width: 100%;
    }
}

.sub-pages.etf-search-result {
    background-color: #F6F6F6;
}

.sub-pages.etf-search-result .etf-search {
    padding: 0 0 80px;
}

@media (max-width: 1023px) {
    .sub-pages.etf-search-result .etf-search {
        padding: 0 0 80px;
    }
}

.sub-pages.etf-search-result .etf-search-searchbar {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 64px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 2px solid #000;
}

@media (max-width: 1023px) {
    .sub-pages.etf-search-result .etf-search-searchbar {
        gap: 16px;
    }
}

.sub-pages.etf-search-result .etf-search-searchbar input {
    width: calc(100% - 66px);
    border: none;
    padding: 8px 16px;
    font-weight: 500;
    font-size: 32px;
    background: transparent;
}

@media (max-width: 1023px) {
    .sub-pages.etf-search-result .etf-search-searchbar input {
        font-size: 18px;
        padding: 10px 8px;
    }
}

.sub-pages.etf-search-result .etf-search-searchbar .c-btn-submit {
    position: absolute;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    top: 50%;
    right: 16px;
    width: 24px;
    height: 24px;
    display: block;
    padding: 0;
}

.sub-pages.etf-search-result .etf-search-searchbar .c-btn-reset {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    margin-left: 16px;
    padding: 0;
    margin: 0;
    min-width: 62px;
}

.sub-pages.etf-search-result .etf-search-searchbar .c-btn-reset span {
    margin-left: 8px;
}

@media (max-width: 1023px) {
    .sub-pages.etf-search-result .etf-search-searchbar .c-btn-reset span {
        width: 16px;
        height: 16px;
        margin-left: 4px;
    }
}

.sub-pages.etf-search-result .etf-result .select-etf {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 80px;
}

@media (max-width: 1023px) {
    .sub-pages.etf-search-result .etf-result .select-etf {
        font-size: 16px;
        margin-bottom: 80px;
    }
}

.sub-pages.etf-search-result .etf-result .select-etf-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 20%;
    height: 42px;
    padding: 8px 24px;
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    color: #3C3C3B;
    background-color: #fff;
}

.sub-pages.etf-search-result .etf-result .select-etf-item.active {
    font-weight: 700;
    color: #000;
    background-color: #ddd;
}

.sub-pages.etf-search-result .etf-result--section-title-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 80px;
    margin-bottom: 16px;
}

@media (max-width: 1023px) {
    .sub-pages.etf-search-result .etf-result--section-title-wrap {
        display: block;
        margin-bottom: 8px;
    }
}

.sub-pages.etf-search-result .etf-result--section-title-wrap p {
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    color: #9D9D9C;
}

@media (max-width: 1023px) {
    .sub-pages.etf-search-result .etf-result--section-title-wrap p {
        margin-top: 16px;
    }
}

.sub-pages.etf-search-result .etf-result--content-title {
    font-size: 24px;
    font-weight: 300;
    line-height: 32px;
}

.sub-pages.etf-search-result .etf-result--content-title span {
    font-weight: 500;
}

.sub-pages.etf-search-result .etf-result-section-title {
    padding-bottom: 48px;
    font-size: 32px;
    font-weight: 300;
    line-height: 42px;
}

.sub-pages.etf-search-result .etf-result-section-title span {
    font-weight: 500;
}

@media (max-width: 1023px) {
    .sub-pages.etf-search-result .etf-result-section-title {
        padding-bottom: 40px;
        font-size: 24px;
        font-weight: 300;
        line-height: 36px;
    }
}

.sub-pages.etf-search-result .etf-result .hope-product__list {
    gap: 8px;
    margin-bottom: 0;
}

@media (max-width: 1023px) {
    .sub-pages.etf-search-result .etf-result .hope-product__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
        padding: 0;
    }
}

.sub-pages.etf-search-result .etf-result .hope-product__item {
    width: calc((100% - 24px) / 4);
}

@media (max-width: 1023px) {
    .sub-pages.etf-search-result .etf-result .hope-product__item {
        width: 100%;
    }
}

.sub-pages.etf-search-result .etf-report {
    margin-top: 80px;
}

.sub-pages.etf-search-result .etf-report--content-title {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 16px;
    line-height: 32px;
}

.sub-pages.etf-search-result .etf-report--content-title span {
    font-weight: 500;
}

.sub-pages.etf-search-result .etf-report-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.sub-pages.etf-search-result .etf-report-list .etf-report-item {
    width: 33%;
    background-color: #fff;
}

@media (max-width: 1023px) {
    .sub-pages.etf-search-result .etf-report-list .etf-report-item {
        width: 100%;
    }
}

.sub-pages.etf-search-result .etf-report-list .etf-report-item:nth-child(2) {
    margin: 0 .5%;
}

.sub-pages.etf-search-result .etf-report-list .etf-report-item .c-card {
    position: relative;
    padding: 24px;
    height: 150px;
}

.sub-pages.etf-search-result .etf-report-list .etf-report-item .c-card-category {
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 8px;
    color: #666;
}

.sub-pages.etf-search-result .etf-report-list .etf-report-item .c-card-title {
    font-size: 20px;
    font-weight: 500;
    color: #000;
}

.sub-pages.etf-search-result .etf-report-list .etf-report-item .c-card-date {
    position: absolute;
    bottom: 24px;
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

.sub-pages.etf-search-result .etf-report-list .etf-report-item img {
    width: 100%;
}

.sub-pages.etf-search-result .etf-report .sub-pages__list {
    margin-top: 0;
}

.sub-pages.etf-search-result .etf-tv {
    margin-top: 80px;
}

.sub-pages.etf-search-result .etf-tv--content-title {
    margin-bottom: 16px;
    font-size: 24px;
    font-weight: 300;
    line-height: 32px;
}

.sub-pages.etf-search-result .etf-tv--content-title span {
    font-weight: 500;
}

.sub-pages.etf-search-result .etf-tv-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.sub-pages.etf-search-result .etf-tv-list .etf-report-item {
    width: 33%;
    background-color: #fff;
}

@media (max-width: 1023px) {
    .sub-pages.etf-search-result .etf-tv-list .etf-report-item {
        width: 100%;
    }
}

.sub-pages.etf-search-result .etf-tv-list .etf-report-item:nth-child(2) {
    margin: 0 .5%;
}

.sub-pages.etf-search-result .etf-tv-list .etf-report-item .c-card {
    position: relative;
    padding: 24px;
    height: 150px;
}

@media (max-width: 1023px) {
    .sub-pages.etf-search-result .etf-tv-list .etf-report-item .c-card {
        padding: 16px;
        height: 100px;
    }
}

.sub-pages.etf-search-result .etf-tv-list .etf-report-item .c-card-category {
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 8px;
    color: #666;
}

.sub-pages.etf-search-result .etf-tv-list .etf-report-item .c-card-title {
    font-size: 20px;
    font-weight: 500;
    color: #000;
}

@media (max-width: 1023px) {
    .sub-pages.etf-search-result .etf-tv-list .etf-report-item .c-card-title {
        font-size: 16px;
    }
}

.sub-pages.etf-search-result .etf-tv-list .etf-report-item .c-card-date {
    position: absolute;
    bottom: 24px;
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

@media (max-width: 1023px) {
    .sub-pages.etf-search-result .etf-tv-list .etf-report-item .c-card-date {
        font-size: 12px;
        bottom: 16px;
    }
}

.sub-pages.etf-search-result .etf-tv-list .etf-report-item img {
    width: 100%;
}

.sub-pages.etf-search-result .etf-tv .sub-pages__list {
    margin-top: 0;
}

.sub-pages.etf-search-result .customer-lounge {
    margin-top: 80px;
}

.sub-pages.etf-search-result .customer-lounge--content-title {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 16px;
    line-height: 32px;
}

.sub-pages.etf-search-result .customer-lounge--content-title span {
    font-weight: 500;
}

.sub-pages.etf-search-result .customer-lounge .hidden {
    display: none;
}

.sub-pages.etf-search-result .customer-lounge .sub-pages__list {
    margin-top: 0;
}

.sub-pages.etf-search-result .c-button--more {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 40px;
    margin: 0;
    font-size: 16px;
    color: #000;
}

@media (max-width: 1023px) {
    .sub-pages.etf-search-result .c-button--more {
        padding-top: 24px;
    }
}

.index .c-main__banner {
  display: block;
  z-index: 10;
  margin: 0 auto;
  max-width: 1720px;
  width: 100%;
  margin: 0 auto;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.index .c-main__banner.hide {
  display: none;
}

.index .c-main__banne-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding: 20px 55px 20px 20px;
  background: #55c9f4;
}

.index .c-main__banne-inner a {
  display: block;
}

.index .c-main__banne-inner p {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 40px;
  color: #000;
  font-size:19px;
  line-height: 1;
  font-weight: 700;
}

.index .c-main__banne-inner p:before {
  position: absolute;
  display: block;
  top: 50%;
  left: 0;
  width: 26px;
  height: 26px;
  background: url(../images/main/pc/icon-main-banner-alarm.svg) no-repeat center center/contain;
  content: "";
  transform: translateY(-50%);
}

.index .c-main__banne-inner p span {
  display: inline-block;
  padding-top: 2px;
  line-height: 1.2;
}

.index .c-main__banne-inner .c-gnb__banner-btn-close {
  z-index: 11;
  position: absolute;
  top: 50%;
  right: 20px;
  text-indent: -999999%;
  width: 24px;
  height: 24px;
  background: url(../images/main/pc/icon-main-banner-btn-close.svg) no-repeat center center/contain;
  transform: translateY(-50%);
}

@media (max-width: 1023px) {
  .index .c-main__banne-inner p {
    padding-left: 36px;
    font-size:15px;
  }
}
