/*common*/
:root {
    --fz1: 32px;
    --fz2: 24px;
    --fz3: 20px;
    --fzL: 18px;
    --fzM: 16px;
    --fzS: 12px;
    --fz: 14px;

    --fw: 700;

    --p: 32px;
}

@media screen and (max-width: 1024px) {
    :root {
        --fz1: 28px;
        --fz2: 24px;
        --fz3: 20px;
        --fzL: 18px;
        --fzM: 16px;
        --fzS: 12px;
        --fz: 14px;

        --p: 28px;
    }

}

html, body {
    font-family: "Wanted Sans Variable", "Wanted Sans", -apple-system, BlinkMacSystemFont, system-ui, "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-style: normal;
    color: #000;
    font-size: var(--fz);
    font-weight: 500;
    line-height: 24px;
    background: linear-gradient(207deg, rgba(227, 245, 255, 0.80) 4.23%, rgba(241, 238, 254, 0.80) 47.55%, rgba(255, 243, 251, 0.80) 92.7%);
}

a,
button {
    display: inline-block;
    font-family: "Wanted Sans Variable", "Wanted Sans", -apple-system, BlinkMacSystemFont, system-ui, "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-style: normal;
    color: #000;
    font-size: var(--fz);
    font-weight: 500;
}

p {
    white-space: pre-line;
}

.pc {
    display: block;
}

.mobile {
    display: none;
}

@media screen and (max-width: 1024px) {
    html, body {
        width: 100%;
    }

    body {
        overflow-x: hidden;
    }

    .pc {
        display: none;
    }

    .mobile {
        display: block;
    }
}

.no-scroll {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.sec-title {
    margin-bottom: 60px;
    height: 56px;
    line-height: 56px;
    font-size: var(--fz1);
    font-weight: var(--fw);
    letter-spacing: -0.768px;
}

.cont-title {
    margin-bottom: 8px;
    height: 36px;
    line-height: 36px;
    font-size: var(--fz2);
    font-weight: var(--fw);
    letter-spacing: -0.576px;
}

.card-title {
    margin-bottom: 8px;
    height: 32px;
    line-height: 32px;
    font-size: var(--fz3);
    font-weight: var(--fw);
    letter-spacing: -0.48px;
}

@media screen and (max-width: 1024px) {
    .sec-title {
        margin-bottom: 40px;
        height: 43px;
        line-height: 43px;
        letter-spacing: -0.672px;
    }

    .cont-title {
        margin-bottom: 12px;
    }

    .card-title {
        margin-bottom: 16px;
    }
}

.cont-desc,
.card-desc {
    line-height: 160%;
    letter-spacing: -0.336px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 16px;
    font-weight: var(--fw);
    color: #06F;
    border-radius: 4px;
    border: 1px solid #06F;
    background: rgba(0, 102, 255, 0.10);
    transition: background 250ms ease-out;
}

.btn svg {
    width: 10px;
    height: 11px;
}

.btn span {
    margin-left: 4px;
}

.btn-download {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 40px;
    width: 180px;
    color: #06F;
    font-size: var(--fzM);
    font-weight: var(--fw);
    border-radius: 8px;
    border: 1px solid #06F;
    background: rgba(0, 102, 255, 0.10);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: background 250ms ease-out;
}

.btn-download svg {
    width: 15px;
    height: 16px;
}

.btn-download span {
    margin-left: 4px;
}

@media (hover: hover) {
    .btn:hover {
        color: #fff;
        background: #06F;
    }

    .btn:hover svg path {
        fill: #fff;
    }

    .btn-download:hover {
        color: #fff;
        background: #06F;
    }

    .btn-download:hover svg path {
        fill: #fff;
    }
}

@media screen and (max-width: 1024px) {
    .btn-download {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 5px 16px;
        width: auto;
        font-size: var(--fzS);
        font-weight: var(--fw);
        color: #06F;
        border-radius: 4px;
        border: 1px solid #06F;
        background: rgba(0, 102, 255, 0.10);
    }
}

.toggle-item {
    display: grid;
    grid-template-columns: 1fr 120px;
    max-width: 180px;
    height: 28px;
    font-size: var(--fzS);
}

@media screen and (max-width: 1024px) {
    .toggle-item {
        width: 100%;
        max-width: none;
    }
}

.toggle-item + .toggle-item {
    margin-top: 10px;
}

.toggle-label {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: -0.288px;
}

.toggle-btn {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    border-radius: 16px;
    background: #F0F4F8;
    cursor: pointer;
}

.toggle-btn:after {
    content: '';
    display: block;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 1px 1px 4px 0px rgba(20, 25, 30, 0.12);
    transform: translateX(0);
    transition: transform 300ms linear;
}

.toggle-btn.on:after {
    transform: translateX(100%);
}

.toggle-btn > span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #A0B3BF;
    cursor: pointer;
}

.toggle-btn.on span:first-child,
.toggle-btn span:last-child {
    color: #A0B3BF;
}

.toggle-btn span:first-child,
.toggle-btn.on span:last-child {
    color: #000;
}

.wrap {
    margin: auto;
    padding: 120px 24px 0;
    max-width: calc(960px + 24px * 2);
    min-height: 100vh;
}

@media screen and (max-width: 1024px) {
    .wrap {
        margin: auto;
        padding: 88px 24px 0;
        max-width: 100%;
        min-height: 100vh;
    }
}

section {
    padding-top: calc(56px + 32px);
    padding-bottom: calc(200px - (56px + 32px));
}

@media screen and (max-width: 1024px) {
    section {
        padding-top: calc(56px + 32px);
        padding-bottom: calc(140px - (56px + 32px));
    }

    #section1 {
        padding-top: 0;
    }
}

.sec-cont {
    position: relative;
    padding-bottom: 80px;
}

.sec-cont:last-child {
    padding-bottom: 0;
}

.card {
    margin: 40px 0 0;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.80);
    transition: background 300ms linear;
}

.card-inner {
    padding: 28px;
    min-height: 440px;
}

.card-inner--col {
    display: grid;
    grid-template-columns: 1fr 600px;
}

.card-col {
    display: flex;
    flex-direction: column;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-row {
    display: none;
}

@media screen and (max-width: 1024px) {
    .card {
        margin: 32px 0 0;
    }

    .card-inner {
        position: relative;
        padding: 24px;
    }

    .card-inner--col {
        display: block;
    }

    .card-col {
        display: block;
    }

    .card-row {
        display: block;
    }

    .btn-download {
        position: absolute;
        top: 24px;
        right: 24px;
    }
}

.card-col .toggle-list {
    margin-top: auto;
}

.card-col .btn-download {
    margin-top: 32px;
}

@media screen and (max-width: 1024px) {
    .card-col .toggle-list,
    .card-col .btn-download {
        display: none;
    }
}

.card.on {
    background: #161A21;
}

.card.on * {
    color: #fff;
}

.card.on .btn-download span {
    color: #06F;
}

.card.on .toggle-btn {
    background: #09090A;
}

.card.on .toggle-btn:after {
    background: #2D353D;
    box-shadow: 1px 1px 4px 0px rgba(20, 25, 30, 0.12);
}

.card.on .toggle-btn > span {
    color: #424B54;
}

.card.on .toggle-btn.on span:first-child,
.card.on .toggle-btn span:last-child {
    color: #424B54;
}

.card.on .toggle-btn span:first-child,
.card.on .toggle-btn.on span:last-child {
    color: #F0F4F8;
}

.card-wrap {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
}

@media screen and (max-width: 1024px) {
    .card-wrap {
        margin-top: 32px;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px 20px;
    }
}

.card-wrap .card {
    margin-top: 0;
}

.card-item {
}

.card-item .card-inner {
    min-height: 210px;
}

@media screen and (max-width: 1024px) {
    .card-item .card-inner {
        min-height: auto;
    }
}

.card-item-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 12px 0;
}

.card-item-info > div {
    display: flex;
    align-items: center;
    font-size: var(--fzM);
    font-weight: var(--fw);
}

.icon-x {
    margin-right: 6px;
    width: fit-content;
    height: fit-content;
}

.icon-x svg {
    width: 20px;
    height: 20px;
}

.icon-o {
    margin-right: 6px;
    width: fit-content;
    height: fit-content;
}

.icon-o svg {
    width: 20px;
    height: 20px;
}

header {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
}

header:after {
    content: '';
    display: block;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    backface-visibility: hidden;
    /*transition: background 250ms ease-out, backdrop-filter 250ms ease-out;*/
}

header.depth:after {
    height: calc(100% + (78px + 20px));
}

.header-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 24px;
    max-width: calc(960px + 24px * 2);
    height: 56px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo svg {
    width: 161px;
    height: 31px;
}

/*.logo a:last-child {*/
/*    margin-left: 5px;*/
/*    font-size: var(--fzL);*/
/*    font-weight: var(--fw);*/
/*}*/

nav {
    display: flex;
    align-items: center;
    column-gap: 40px;
}

/*.nav-item {*/
/*    display: flex;*/
/*    align-items: center;*/
/*}*/

.nav-item a {
    font-weight: var(--fw);
}

.m-nav {
    display: none;
}

.m-panel {
    display: none;
}

@media screen and (max-width: 1024px) {
    header.m-open:after {
        background: transparent;
        backdrop-filter: blur(0);
        -webkit-backdrop-filter: blur(0);
    }

    nav {
        display: none;
    }

    .m-nav {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .m-nav svg {
        width: 32px;
        height: 32px;
    }

    .m-nav .icon-open {
        display: block;
    }

    .m-nav .icon-close {
        display: none;
    }

    .m-open .icon-open {
        display: none;
    }

    .m-open .icon-close {
        display: block;
    }

    .m-panel {
        display: none;
        position: fixed;
        z-index: 99;
        top: 0;
        left: 0;
        width: 100%;
        height: calc(var(--vh, 1vh) * 100);
        background: rgba(255, 255, 255, 0.64);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .m-panel-inner {
        padding: calc(56px + 20px) 24px 100px;
    }

    .m-nav-list + .m-nav-list {
        margin-top: 28px;
    }

    .m-nav-title {
        margin-bottom: 8px;
        font-size: var(--fzM);
        font-weight: var(--fw);
    }

    .m-nav-item {
        padding-left: 8px;
    }

    .m-nav-item + .m-nav-item {
        margin-top: 6px;
    }
}

.footer-inner {
    margin: 0 auto;
    padding: 0 24px 60px;
    max-width: calc(960px + 24px * 2);
}

.footer-inner .ver {
    font-weight: var(--fw);
}

.footer-inner p {
    margin-top: 16px;
}

.main-top {
    padding-bottom: calc(120px - (56px + 32px));
    line-height: 152%;
    letter-spacing: -0.768px;
    font-size: var(--fz1);
    font-weight: var(--fw);
}

@media screen and (max-width: 1024px) {
    .main-top {
        display: none;
    }
}

.color-card-row + .color-card-row {
    margin-top: 20px;
}

.color-card-row {
    display: grid;
    gap: 20px 20px;
}

.color-card-row--top {
    margin-top: 40px;
    grid-template-columns: repeat(3, 1fr);
}

.color-card-row--bottom {
    grid-template-columns: repeat(4, 1fr);
}

@media screen and (max-width: 1024px) {
    .color-card-row--top {
        margin-top: 32px;
        grid-template-columns: repeat(1, 1fr);
    }

    .color-card-row--bottom {
        grid-template-columns: repeat(1, 1fr);
    }
}

.color-card {
    padding: 24px;
    border-radius: 16px;
    border: 1px solid transparent;
    color: #fff;
}

@media screen and (max-width: 1024px) {
    .color-card {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.color-btn {
    margin-top: 28px;
    width: 78px;
    height: 26px;
    line-height: 26px;
    font-size: var(--fzS);
    font-weight: var(--fw);
    letter-spacing: -0.288px;
    border-radius: 4px;
    background: #fff;
}

.color-card--ex {
    color: #000;
    border: 1px solid #A0B3BF;
}

.color-card--ex .color-btn {
    color: #fff;
    background: #A0B3BF;
}

.color-card-title {
    margin-bottom: 8px;
    font-weight: var(--fw);
}

.color-card-info-item {
    font-size: var(--fzS);
    line-height: 160%;
}

/*.color-card-info-items + .color-card-info-item {*/
/*    margin-top: 4px;*/
/*}*/

.color-card-info-items {
    font-size: var(--fzS);
    line-height: 170%;
}

.cont-btn {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    padding: 0 16px;
    height: 32px;
    line-height: 32px;
    border-radius: 4px;
    border: 1px solid #14191E;
    background: rgba(255, 255, 255, 0.10);
    font-weight: var(--fw);
    cursor: pointer;
}

ol.card-desc {
    padding-left: 1rem;
    list-style-type: decimal;
}

.card-desc-item + .card-desc-item {
    margin-top: var(--fzS);
}

.card-desc-item span {
    color: #14191E;
    font-weight: var(--fw);
}

.guide-cont {
    margin-top: 40px;
}

.guide-cont + .guide-cont {
    margin-top: 80px;
}

.guide-cont-title {
    margin-bottom: 8px;
    height: 32px;
    line-height: 32px;
    font-size: var(--fz3);
    font-weight: var(--fw);
}

.guide-cont .card-wrap {
    margin-top: 20px;
}

.guide-cont .card-title {
    display: flex;
    align-items: center;
    font-size: var(--fzM);
}

.guide-cont .card-title + .card-title {
    margin-top: 12px;
    display: block;
    height: auto;
    line-height: 160%;
    font-weight: 500;
}

.guide-cont .card .card-inner {
    min-height: auto;
    height: 100%;
}

.card-wrap--h .card {
    height: 100%;
}

.img-card {
    margin-top: 40px;
}

.img-card {
    margin: 40px 0 0;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.80);
    overflow: hidden;
}

.img-card-inner {
    position: relative;
    width: 100%;
    min-height: 550px;
}

@media screen and (max-width: 1024px) {
    .img-card-inner {
        min-height: 220px;
    }
}

.img-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

#section3-3 .cont-btn {
    z-index: 1;
    top: initial;
    right: initial;
    bottom: 32px;
    left: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 40px;
    width: 180px;
    height: auto;
    color: #06F;
    font-size: var(--fzM);
    font-weight: var(--fw);
    border-radius: 8px;
    border: 1px solid #06F;
    background: rgba(0, 102, 255, 0.10);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: background 250ms ease-out;
}

#section3-3 .cont-btn svg path {
    fill: #06F;
}

@media (hover: hover) {
    #section3-3 .cont-btn:hover {
        background: #06F;
        color: #fff;
    }

    #section3-3 .cont-btn:hover svg path {
        fill: #fff;
    }
}

@media screen and (max-width: 1024px) {
    #section3-3 .cont-btn {
        z-index: 1;
        top: 0;
        right: 0;
        bottom: initial;
        left: initial;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 5px 16px;
        width: auto;
        height: 32px;
        line-height: 32px;
        font-size: var(--fzS);
        font-weight: var(--fw);
        color: #06F;
        border-radius: 4px;
        border: 1px solid #06F;
        background: rgba(0, 102, 255, 0.10);
    }
}

.type-card {
    margin: 40px 0 0;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.80);
}

.type-card-inner {
    padding: 28px;
    width: 100%;
    min-height: 550px;
}

@media screen and (max-width: 1024px) {
    .type-card-inner {
        padding: 24px;
        min-height: 340px;
    }
}

.range-input {
    position: relative;
    overflow: hidden;
    width: fit-content;
}

/*.range-item input:after {*/
/*    position: absolute;*/
/*    z-index: 1;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*    transform: translate(-50%, -50%);*/
/*    width: calc(100% - 20px);*/
/*    height: 4px;*/
/*    content: '';*/
/*    display: block;*/
/*    background-image: repeating-linear-gradient(to right, #CED8E0, #CED8E0 4px, transparent 4px, transparent 14%);*/
/*}*/

.range-wrap {
    position: relative;
    flex: 1;
}

.range-wrap .dots {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 10px;
}

.range-wrap .dots span {
    margin-top: -1px;
    width: 4px;
    height: 4px;
    border-radius: 16px;
    background: #CED8E0;
}

.range-item input {
    position: relative;
    z-index: 2;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    height: 12px;
    border-radius: 16px;
    outline: none;
    background: rgba(112, 115, 124, 0.08);
}

.range-item input::-webkit-slider-thumb {
    appearance: none;
    width: 23px;
    height: 23px;
    border: 0;
    border-radius: 50%;
    background: #FFF;
    box-shadow: 1px 1px 4px 0px rgba(20, 25, 30, 0.12);
    cursor: pointer;
}

.range-item input::-moz-range-thumb {
    appearance: none;
    width: 23px;
    height: 23px;
    border: 0;
    border-radius: 50%;
    background: #FFF;
    box-shadow: 1px 1px 4px 0px rgba(20, 25, 30, 0.12);
    cursor: pointer;
}

.range-item input:disabled {
    background: #fff;
}

.range-item input:disabled::-webkit-slider-thumb {
    background: #fff;
}

.range-item input:disabled::-moz-range-thumb {
    background: #fff;
}

.type-card-inner {
    display: flex;
    flex-direction: column;
}

.type-cont {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.type-cont-inner {
    width: 100%;
    min-width: 50%;
    line-height: 130%;
    font-size: 66px;
}

@media screen and (max-width: 1024px) {
    .type-cont-inner {
        font-size: 48px;
    }
}

.type-cont-inner:focus {
    outline: none;
}

.type-status {
    display: flex;
    align-items: center;
    column-gap: 40px;
}

.range-list {
    flex: 1;
    display: flex;
    align-items: center;
    column-gap: 28px;
}

.range-item {
    flex: 1;
    display: flex;
    align-items: center;
    column-gap: 16px;
}

.range-label {
    display: inline-flex;
    align-items: center;
    font-size: var(--fzS);
    font-weight: var(--fw);
    letter-spacing: -0.288px;
}

@media screen and (max-width: 1024px) {
    #section3-2 .btn-download {
        display: none;
    }

    .range-list {
        display: block;
    }

    .range-item + .range-item {
        margin-top: 20px;
    }
}

#section1-3 .card-inner,
#section2-1 .card-inner,
#section2-3 .card-inner {
    padding: 0;
}

.card-inner--partner {
    display: flex;
    flex-direction: column;
}

.sec2-2-img {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sec2-2-img img {
    width: 560px;
}

@media screen and (max-width: 1024px) {
    .sec2-2-img img {
        width: 100%;
        height: auto;
    }

}

.sec2-2-img img:first-child {
    display: block;
}

.sec2-2-img img:last-child {
    display: none;
}

.sec2-2-img.on img:first-child {
    display: none;
}

.sec2-2-img.on img:last-child {
    display: block;
}

.card-img > div > div {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.card .card-img img {
    width: 100%;
    height: auto;
}

.card-img > div > div img {
    display: none;
}

.card-img > div > div img:first-child {
    display: block;
}

.card .d {
    display: flex;
}

.card .r {
    display: none;
}

.card.on .d {
    display: none;
}

.card.on .r {
    display: flex;
}

.card-img.guide > div > div img {
    display: none;
}

.card-img.guide > div > div img:nth-child(3) {
    display: block;
}

.card-img.mono > div > div img {
    display: none;
}

.card-img.mono > div > div img:nth-child(2) {
    display: block;
}

.card-img.guide.mono > div > div img {
    display: none;
}

.card-img.guide.mono > div > div img:nth-child(4) {
    display: block;
}

.video-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.card-video-1 video {
    width: 600px;
    height: 440px;
}

.card-video-2 video {
    width: 600px;
    height: 440px;
}

@media screen and (max-width: 1024px) {
    .card-video-1 video {
        width: 100%;
        height: auto;
    }

    .card-video-2 video {
        width: 100%;
        height: auto;
    }
}

header .btn {
    min-height: 32px;
}

.card-item-info .btn {
    min-height: 26px;
    padding: 0 12px;
}

@media screen and (max-width: 1024px) {

}

.type-btn {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    background: #F0F4F8;
    cursor: pointer;
}

.type-btn svg {
    width: 46px;
    height: 46px;
}

@media screen and (max-width: 1024px) {
    .type-card-inner {
        position: relative;
    }

    .type-btn {
        position: absolute;
        top: 24px;
        left: 24px;
    }
}

.guide-cont .card {
    height: 100%;
}

@media screen and (max-width: 1024px) {
    .guide-cont .card {
        height: auto;
    }
}

.kt {
    white-space: pre-wrap;
}

.card .card-col--m img {
    display: none;
}

.card .card-col--m img:first-child {
    display: block;
}

.card .card-col--m--2.on img:first-child {
    display: none;
}

.card .card-col--m--2.on img:last-child {
    display: block;
}

.card .card-col--m--1.on img:nth-child(1) {
    display: none;
}

.card .card-col--m--1.on img:nth-child(3) {
    display: block;
}

.card.on .card-col--m--1 img:nth-child(1) {
    display: none;
}

.card.on .card-col--m--1 img:nth-child(2) {
    display: block;
}

.card.on .card-col--m--1.on img:nth-child(3) {
    display: none;
}

.card.on .card-col--m--1.on img:nth-child(4) {
    display: block;
}

.card.on .card-col--m--1.on img:nth-child(2) {
    display: none;
}

.nav-item {
    position: relative;
}

.nav-depth {
    display: none;
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
    min-width: 160px;
}

.d-nav-item a {
    font-weight: 500;
    font-size: 14px;
}

.d-nav-item + .d-nav-item {
    margin-top: 6px;
}

.video-wrap {
    position: relative;
}

#video1,
#video2 {
    position: relative;
    z-index: 0;
    mix-blend-mode: multiply;
}

#video1-d,
#video2-d {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 300ms 300ms linear;
}

.card.on #video1-d,
.card.on #video2-d {
    opacity: 1;
}

.card.ex #video1-d,
.card.ex #video2-d {
    transition: none;
}

@media screen and (max-width: 1024px) {
    .toggle-list + .btn-download {
        min-height: 26px;
        padding: 0 12px;
    }

    .toggle-list + .btn-download svg {
        width: 10px;
        height: 11px;
    }

    .btn span {
        font-size: 12px;
    }

    .card-inner--partner {
        flex-direction: column-reverse;
        min-height: auto;
    }

    .sec2-2-img {
        padding: 70px 0;
        margin: 0 -20px;
    }

    .video-wrap,
    .card-img--1,
    .card-img--2 {
        padding: 12px 0;
        margin: 0 -24px;
    }
}

.sec-title--link,
.cont-title {
    display: inline-block;
    position: relative;
    padding-right: 10px;
}

.link-copy-btn,
.link-copy-btn--m {
    position: absolute;
    top: 50%;
    right: -28px;
    cursor: pointer;
    transform: translateY(-50%);
}

.link-copy-btn svg,
.link-copy-btn--m svg{
width: 28px;
    height: 28px;
}

.link-copy-btn {
    display: block;
}

.link-copy-btn--m {
    display: none;
}

@media screen and (max-width: 1024px) {
    .link-copy-btn {
        display: none;
    }

    .link-copy-btn--m {
        display: block;
    }
}

.card.on .btn-download:hover span {
    color: #fff;
}