@font-face {
    font-family: 'TmoneyRound';
    src: url('../font/TmoneyRoundWindExtraBold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TmoneyRound';
    src: url('../font/TmoneyRoundWindRegular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --bk: #1E2127;
    --gr900: #3D3F43;
    --gr800: #51555B;
    --gr700: #64686E;
    --gr600: #73777C;
    --gr500: #848E9A;
    --gr400: #a2aab2;
    --gr300: #b7bfc7;
    --gr200: #D2D9DE;
    --gr100: #F9FAFB;

    --primary: #0066FF;
}
.home-btn,
.kick-btn {
    display: none;
}

.badge {
    padding: 2px 8px;
    border-radius: 8px;
    font-size: 14px;
    border: 1px solid var(--bk);
}

body {
    color: var(--bk) !important;
}

.big-box {
    padding: 24px;
    height: 100vh;
    width: 100%;
    margin: 0 auto;
}

.sec-tit .eng {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--gr900);
}

.sec-tit .kor {
    font-size: 40px;
    font-weight: 500;
    word-break: keep-all;
}

.sec-tit .tit-dt {
    color: var(--gr700);
    line-height: 160%;
    margin-top: 24px;
}

.w-grid {
    max-width: 1680px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.ai-style {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #F5F6FF;
    overflow: hidden;
}

.ai-style:after {
    position: absolute;
    top: 0;
    content: "";
    background: url(../images/uni/background.png) no-repeat;
    background-size: cover;
    display: block;
    width: 100%;
    height: 100vh;
    z-index: 0;
}

.ai-style .ai-inr {
    max-width: 1680px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.top-visual {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: calc(100% - 80px);
    position: relative;
}


.main-tit {
    width: 100%;
}

.main-tit>.tit {
    font-size: 100px;
    font-family: 'TmoneyRound';
    font-weight: 700;
    margin-bottom: 12px;
}

.main-tit>span {
    font-size: 20px;
    font-family: 'TmoneyRound';
    letter-spacing: -0.5px;
    line-height: 130%;
    word-break: keep-all;
}

.ai-style .ai-sec1 {
    height: 100vh;
    position: relative;
}

.mg-card-wrap {
    display: flex;
    position: relative;
    transform: translate(0, 240px);
    transition: transform 0.7s ease;
    width: 100%;
    right: 80px;
}


.mg-card-wrap.ani {
    transform: translate(0, 0);
}

.mg-card-wrap>li {
    position: absolute;
    right: 60px;
    transform: translate(0, -50%);
    transition: transform .5s ease;
    transition-delay: .5s;
}

.mg-card-wrap>li.front {
    z-index: 2;
}

.mg-card-wrap>li.back {
    z-index: 1;
}

.mg-card-wrap.ani .front {
    transform: rotate(-8deg) translate(0, -45%);
}

.mg-card-wrap.ani .back {
    transform: rotate(16deg) translate(5%, -37%);
}

@keyframes floating {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(5px);
    }
}


/* 목차 */
.index-area {
    height: 100vh;
    display: flex;
    align-items: flex-start;
    padding: 200px 20px;
}

.pr-sm {
    min-width: 360px;
}

.pr-sm .index-tit {
    font-size: 80px;
    font-weight: 700;
}

.pr-info {
    padding: 48px 0;
}

.pr-info>dl {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.pr-info>dl:last-child {
    margin-bottom: 0;
}

.pr-info>dl dt {
    min-width: 88px;
    color: var(--gr600);
}

.tool-box {
    width: 28px;
    height: 28px;
}

.tool-box>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.index-wrap {
    max-width: 970px;
    width: 100%;
}

.index-wrap strong {
    font-size: 24px;
    font-weight: 700;
}

.iw-top {
    border-bottom: 1px solid var(--bk);
    padding-bottom: 16px;
}

.list-mv {
    padding: 24px 0;
}

.list-mv>li {
    margin-bottom: 16px;
    font-size: 18px;
}

/* 타임라인 */
.timeline-area {
    height: 100vh;
    width: 100%;
}

.timeline {
    background: var(--gr100);
    height: 100%;
    padding: 64px 24px 40px;
}

.timeline>.inr {
    max-width: 1680px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.tl3 {
    display: flex;
    padding-top: 88px;
    width: 100%;
}

.tl3>.side-tl {
    width: 25%;
}

.tl3>.center-tl {
    width: 50%;
}

.tl3>div {
    opacity: 0;
    transform: translateY(60px);
    transition: all .6s ease-in-out;
}

.tl3>div:nth-child(2) {
    transition-delay: .3s;
}

.tl3>div:nth-child(3) {
    transition-delay: .6s;
}

.timeline.ani .tl3>div {
    opacity: 1;
    transform: translateY(0);
}

.last-tl {
    border-right: 1px dashed #C8C8C8;
}

.tl-box-wrap {
    border-left: 1px dashed #C8C8C8;
    height: calc(100% - 40px);
    padding: 40px 24px;

}

.tl-box-wrap>.item {
    background-color: #E7E9EB;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
}

.tl-box-wrap>.item:last-child {
    margin-bottom: 0;
}

.tl-box-wrap>.item>div {
    font-weight: 700;
    margin-bottom: 4px;
}

.tl-box-wrap>.item>span {
    font-size: 14px;
}

.center-tl .tl-box-wrap>.item {
    max-width: 320px;
}

.center-tl .tl-box-wrap>li:nth-child(2) {
    margin-left: 20%;
}

.center-tl .tl-box-wrap>li:nth-child(3) {
    margin-left: 40%;
}

.center-tl .tl-box-wrap>li:nth-child(4) {
    margin-left: 60%;
}

.dvt {
    padding-bottom: 16px;
}

.dvt>span {
    font-size: 20px;
    font-weight: 700;
    position: relative;
}

.dvt.on>span::after {
    content: "4";
    position: absolute;
    padding: 4px 12px;
    border-radius: 40px;
    border: 1px solid var(--primary);
    background: rgba(0, 102, 255, 0.7);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    top: -12px;
    right: -25px;
    line-height: 120%;
    animation: float 2.5s ease-in-out infinite;
}

.side-tl .dvt.on>span::after {
    content: "1";
}


.br-move {
    position: relative;
    background: #fff !important;
    z-index: 0;
    overflow: hidden;
    padding: 24px;
    box-shadow: 0 4px 10px rgba(43, 113, 201, 0.1);
}

.br-move::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(90deg, rgb(229, 239, 255) 0%, rgb(182, 211, 255) 49%, rgba(0, 102, 255, 1) 100%);
    background-size: 300% 300%;
    background-position: 0 50%;
    animation: borderMove 4s alternate infinite;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

@keyframes borderMove {
    0% {
        background-position: 15% 0%;
    }

    50% {
        background-position: 85% 100%;
    }

    100% {
        background-position: 15% 0%;
    }
}

@keyframes float {
    50% {
        transform: translateY(-5px);
    }

}

.br-grd {
    position: relative;
    background: #fff !important;
    z-index: 0;
    overflow: hidden;
    padding: 24px;
    box-shadow: 0 4px 10px rgba(43, 113, 201, 0.1);
}

.br-grd::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(90deg, rgba(201, 223, 255, 1) 0%, rgb(109, 167, 254) 49%, rgba(0, 102, 255, 1) 100%);
    background-size: 300% 300%;
    background-position: 0 50%;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

/* insight */
.insight {
    padding: 160px 24px 200px;
}

.insight .tit-dt {
    max-width: 800px;
}

.graph-area {
    padding: 160px 0;
    display: flex;
}

.pgb-name {
    padding-top: 35px;
}

.pgb-name>div {
    font-size: 20px;
    font-weight: 700;
    color: var(--gr300);
    height: 67px;
    line-height: 67px;
    white-space: nowrap;
}

.pgb-name>div.on {
    color: var(--bk);
    margin-top: 24px;
    background: linear-gradient(90deg, #252C37, #252C37 50%, rgba(37, 44, 55, 0.2) 0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    background-position: 100%;
    transition: all 0.6s;
}

.graph-area.ani .pgb-name>div.on {
    background-position: 0% !important;
}

.pgb-wrap {
    width: 100%;
    display: flex;
}

.pgb-wrap>li {
    width: 100%;
    position: relative;
    padding: 0 24px;
}

.pgb-wrap>li.fst {
    text-align: right;
    border-right: 1px dashed #ddd;
}

.pgb-wrap>li>p {
    padding-bottom: 16px;
}

.pgb-wrap>li.fst .bar-wrap {
    align-items: flex-end;
}

.bar-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pg-bar {
    padding: 24px;
    border-radius: 12px;
    background: #F6F8F9;
}

.pg-bar>span {
    color: var(--gr400);
    font-weight: 700;
}

.pg-bar.on {
    background: var(--primary);
    transition: all .4s ease-in-out;
    transition-delay: 0.2s;
    /* padding: 24px 0; */
    width: 0%;
}

.pg-bar.on>span {
    color: #fff;
    opacity: 0;
    transition: opacity 0.4s ease;
    transition-delay: 0.7s;
}

.pg-bar.w-68 {
    width: 68%;
}
.pg-bar.w-57{
    width: 57%;
}

.pg-bar.w-92 {
    width: 92%;
}
.graph-area.ani .pg-bar.w-46{
width: 36%;
}
.graph-area.ani .pg-bar.w-81{
    width: 81%;
}

.graph-area.ani .pg-bar.w-4 {
    width: 13%;
    padding: 24px;
}

.graph-area.ani .pg-bar.w-9 {
    width: 15%;
    padding: 24px;
}

.graph-area.ani .pg-bar.on>span {
    opacity: 1;
}

/* interview */
.interview-con {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 64px;
}

.user-itv .sec-tit>.flex-btw {
    align-items: flex-end;
    gap: 8px;
}

.t-label {
    padding: 8px 12px;
    border-radius: 8px;
    background: #dadfe3;
    font-size: 14px;
}

.loop5 {
    max-width: 925px;
    width: 100%;
    position: relative;
}

.loop-box {
    padding: 32px;
    border-radius: 16px;
    background: var(--gr100);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    transition: all .3s;
    transition-delay: .1s;
}

.loop5>.loop-box:last-child {
    margin-bottom: 0;
}

.loop-box.on {
    background: #fff;
}

.loop-box>.fst {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.loop-box>.fst>p {
    font-weight: 500;
}

.loop-box>.fst .weakly {
    color: var(--gr500);
    font-size: 14px;
    font-weight: 400;
}

.profile-c {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.profile-c>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.loop-box strong {
    font-size: 20px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

.vertical {
    height: 136px;
    border-radius: 16px;
    position: absolute;
    top: 0;
    width: 100%;
    transition: all .3s ease;
    z-index: 2;
    background: initial !important;
}

.summation-wrap {
    width: 100%;
    text-align: center;
}

.fillon-btn {
    padding: 16px 32px;
    border-radius: 100px;
    border: 1px solid var(--bk);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display:inline-block;
}

.fillon-btn>span {
    transition-delay: 0.1s;
}

.fillon-btn::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: var(--bk);
    top: 0;
    left: 0;
    transform: translateY(101%);
    transition: all .3s ease;
    z-index: -1;
}

.fillon-btn:hover::before {
    transform: translateY(0);
}

.fillon-btn:hover>span {
    color: #fff;
}

.hidden-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transition: opactiy .3s;
}

.grd-speech {
    border-radius: 12px;
    max-width: 400px;
    word-break: keep-all;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(50%);
    transition: all .4s ease-in-out;
    transition-delay: .2s;
}

.hidden-item .character {
    width: 150px;
}

.hidden-item .character>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.interview-con.open {
    align-items: flex-end;
}

.interview-con.open .hidden-item {
    opacity: 1;
}

.interview-con.open .summation-wrap>.fillon-btn {
    display: none;
}

.interview-con.open .grd-speech {
    opacity: 1;
    transform: translateY(0);
}

#problem {
    padding-bottom: 40px;
}

#need {
    padding: 200px 20px;
}

/* 컨셉 */
.direction-con {
    padding-top: 120px;
    flex-wrap: wrap;
}

.circle-line {
    width: 400px;
    height: 400px;
    border: 1px solid #D9D9D9;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity .3s ease, transform .7s ease-in-out;
}

.keyword>strong {
    font-size: 32px;
    font-weight: 700;
    position: relative;
}

.keyword>p {
    padding-top: 12px;
}

.kw1 .keyword>strong::after {
    content: "(1)";
}

.kw2 .keyword>strong::after {
    content: "(2)";
}

.kw3 .keyword>strong::after {
    content: "(3)";
}

.keyword>strong::after {
    position: absolute;
    border-radius: 40px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    line-height: 120%;
}

.kw2 {
    position: relative;
    transform: translateX(-400px);
}

.kw3 {
    transform: translateX(-800px);
}

.direction-con.ani .circle-line {
    opacity: 1;
}

.direction-con.ani .kw2,
.direction-con.ani .kw3 {
    transform: translateX(0);
}

.concept-con {
    text-align: center;
    padding: 240px 0 160px;
}

.label {
    padding: 4px 12px;
    border-radius: 8px;
    display: inline;
}

.label.primary {
    background: var(--primary);
    color: #fff;
}

.big-tit {
    font-size: 4.26vw;
    font-weight: 700;
    padding: 16px 0;
    opacity: 0;
    transform: translateY(50px);
}

.concept-con.ani .big-tit {
    animation: fadeInUp 0.7s forwards;
}

/* 가이드 */
.system-guide {
    margin-top: 200px;
}

.grid-tit {
    max-width: 1720px;
    width: 100%;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.grid-tit .kor {
    width: 600px;
    word-break: keep-all;
    line-height: 140%;
}

.grid-tit .tit-dt {
    width: 640px;
}

.system-guide .kor {
    margin-bottom: 32px;
}

.bk-bg {
    background: var(--bk);
    padding: 0 20px;
}

.guide-img {
    max-width: 1680px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    text-align: center;
}

.guide-bg {
    transform: scale(1.03);
    transition: all .7s ease;
}

.guide-bg.ani {
    transform: scale(1);
    opacity: 1;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 메인 */
.main-ui-con {
    margin-top: 320px;
}

.ui-inr {
    padding: 80px 24px;
}

.ui-img {
    width: 100%;
    max-width: 1680px;
    margin: 0 auto;
}

.ui-img>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.main-ui-con .big-box {
    padding: 0 24px;
    height: auto;
}

.main-ui .ui-img {
    opacity: 0;
    transform: translateY(50px);
}

.main-ui.ani .ui-img {
    animation: fadeInUp 0.7s forwards;
}

.at-con {
    margin-top: 160px;
    flex-wrap: wrap;
}

.at-con>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    padding: 80px 32px;
    overflow: hidden;
}

.as-is {
    background: var(--gr100);
}

.to-be {
    background: var(--bk);
}

.at-img {
    width: 820px;
    height: 1170px;
    border-radius: 12px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
}

.at-item.ani .at-img {
    animation: fadeInUp 0.7s forwards;
}

.to-be.ani .at-img {
    animation: fadeInUp 0.7s forwards;
    animation-delay: 0.3s;
}

.at-img>img {
    width: 100%;
    object-fit: contain;
}

.at-con .cap {
    padding: 15px 32px;
    border-radius: 50px;
    color: #fff;
    display: inline-block;
    margin-bottom: 40px;
    font-size: 18px;
    letter-spacing: 0;
}

.as-is>.cap {
    background: var(--gr800);
}

.to-be>.cap {
    background: var(--primary);
}

/* 서브 */
.sub-con .sec-tit {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 240px;
}

.pc-mockup {
    max-width: 1680px;
    width: 100%;
    border: 4px solid var(--bk);
    margin: 0 auto;
    overflow: hidden;
    height: 1024px;
    transform: scale(0.8);
    transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.pc-mockup.ani {
    transform: scale(1);
}

.pc-mockup.mt-80 {
    margin-top: 80px;
}

.card-grid {
    display: flex;
    gap: 24px;
    margin-top: 24px;
    transform: translateY(50px);
    opacity: 0;
    /* transition:  all 1s cubic-bezier(0.25, 1, 0.5, 1); */
}

.card-grid.ani {
    animation: fadeInUp 0.7s forwards;
}

.card-grid>div,
.card-grid>ol {
    width: 50%;
}

.stage2 {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stage2>div {
    background: #E9F0FB;
    padding: 48px;
    height: 400px;
}

.stage2 .name {
    font-size: 24px;
    font-weight: 500;
}

.visual-card>li,
.ui-card>li {
    opacity: 0;
    position: absolute;
    transform: scale(0.8);
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.visual-card>li.on,
.ui-card>li.on {
    opacity: 1;
    transform: scale(1);
}

.visual-card>li {
    height: 200px;
}

.visual-card>li img {
    height: 100%;
    object-fit: contain;
}

.visual-card,
.ui-card {
    height: 100%;
    position: relative;
}

.btn-box {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    height: 100%;
}
.control-wrap.btn-box{
    height: auto;
}

.change-btn {
    padding: 12px 0;
    width: 360px;
}

.change-btn>span {
    padding: 16px 40px;
    border-radius: 12px;
    background: #292C33;
    cursor: pointer;
    color: #979797;
    font-size: 32px;
    transition: all .3s;
    white-space: nowrap;
}

.change-btn.on>span {
    background: #fff;
    color: var(--bk);
    padding-right: 80px;
    position: relative;
    font-weight: 500;
}

.change-btn.on>span::after {
    content: "";
    background: url(../images/uni/check.svg) no-repeat;
    display: block;
    width: 20px;
    height: 16px;
    background-size: contain;
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
}

/* 마이페이지 */
.mypage-con .sec-tit {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 240px;
}

.mypage-con .pc-mockup {
    height: 1900px;
}

.mileage-data-area {
    display: flex;
    padding: 40px;
    border-radius: 12px;
    gap: 40px;
    align-items: center;
    background: #fff;
}

.p-color {
    color: var(--primary);
}

.mp-cap {
    padding: 4px 8px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 50px;
    line-height: 120%;
}

.mp-cap.bronze {
    background: #EBCDBB;
    color: #3C1400;
}

.mileage-data-area.ani .knowledge .my-data-b {
    width: 55%;
}

.mileage-data-area.ani .communication .my-data-b {
    width: 46%;
}

.mileage-data-area.ani .challenge .my-data-b {
    width: 42%;
}

.mileage-data-area.ani .cooperation .my-data-b {
    width: 37%;
}

.mileage-data-area.ani .problem .my-data-b {
    width: 31%;
}

.mileage-data-area.ani .create .my-data-b {
    width: 26%;
}

.program-swiper .program-item {
    padding: 24px 24px 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 180px;
}

.program-item .program-tit {
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    line-height: 130%;
    text-align: left;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

.program-info>li {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
}

.program-info>li p {
    font-size: 14px;
}

.r-chart-area {
    margin: 20px 20px 0 20px;
}

.meg-cap {
    display: flex;
    background: var(--point-bg);
    border-radius: 100px;
    padding: 6px 16px;
}

.meg-cap>p {
    font-weight: 600;
}

.meg-cap>p:nth-child(2) {
    padding: 0 8px 0 2px;
}

.tt-inr {
    margin-top: 8px;
}

.meg-box {
    background: var(--gr100);
    padding: 40px;
    border-radius: 12px;
    width: 100%;
}

.meg-tit {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    row-gap: 4px;
}

.meg-tit strong {
    font-size: 20px;
    font-weight: 700;
}

.rank-index {
    margin-bottom: 20px;
}

.rank-index:last-child {
    margin-bottom: 0;
}

.rank-info {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
}

.rank-info .rank-name {
    font-size: 14px;
    font-weight: 500;
}

.rank-info .standard {
    display: flex;
    gap: 8px;
    align-items: center;
}

.rank-info .standard>span {
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.rank-info .standard>.f-line {
    display: block;
    width: 1px;
    height: 10px;
    background: var(--bk);
}

.meg-bar {
    width: 100%;
    height: 10px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.rank-index .my-data-b {
    border-radius: 20px;
    height: 10px;
    transition: width 0.7s ease;
    width: 0;
}

.knowledge .my-data-b {
    background: #ffadcb;
}

.communication .my-data-b {
    background: #e2f052;
}

.challenge .my-data-b {
    background: #c8baef;
}

.cooperation .my-data-b {
    background: #ffd634;
}

.problem .my-data-b {
    background: #a1ebff;
}

.create .my-data-b {
    background: #a6d0ff;
}

.r-chart-area {
    position: relative;
}

.radar-label {
    position: absolute;
    color: var(--bk);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    line-height: 120%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    background-color: var(--color);
    white-space: nowrap;
    opacity: 0;
    transition: all .3s;
    transition-delay: .1s;
}

.radar-label.open {
    opacity: 1;
}

.r-chart-area .radar-label4 {
    transform: translate(-50%, -30px);
}

.r-chart-area .radar-label1 {
    transform: translate(-50%, 0);
}

.warning-area {
    padding: 32px 40px 40px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    column-gap: 80px;
}

.warning-area>div {
    width: 50%;
}

.warning-data {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.warning-area .tit {
    font-size: 14px;
    font-weight: 600;
}

.warning-st {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.warning-st>span {
    font-weight: 600;
}

.warning-st .label {
    color: #fff;
    font-size: 14px;
    padding: 4px 8px;
}

.warning-st .label.type0,
.level-gauge>li.type0 .bar {
    background: #1AA639;
}

.warning-st .label.type01,
.level-gauge>li.type01 .bar {
    background: #FEC10F;
}

.warning-st .label.type02,
.level-gauge>li.type02 .bar {
    background: #FF8401;
}

.warning-st .label.type03,
.level-gauge>li.type03 .bar {
    background: #FF0101;
}

.warning-st .label.type04,
.level-gauge>li.type04 .bar {
    background: #000B24;
}

.level-gauge {
    display: flex;
    gap: 2px;
    margin-bottom: 20px;
}

.level-gauge>li {
    position: relative;
    width: 100%;
    text-align: center;
    opacity: 0.2;
}


.level-gauge>li.on {
    opacity: 1;
}

.level-gauge>li:nth-child(1) .bar {
    border-radius: 100px 0 0 100px;
}

.level-gauge>li:last-child .bar {
    border-radius: 0 100px 100px 0;
}

.level-gauge>li .bar {
    height: 12px;
    width: 100%;
    display: inline-block;
}

.level-gauge>li>span {
    font-size: 13px;
    font-weight: 600;
}

.mypage-item {
    margin-top: 24px;
    padding: 80px;
    background: var(--gr100);
}

.mypage-item>strong {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 24px;
    display: inline-block;
}

.gray-box {
    background: var(--gr100);
    border-radius: 8px;
    padding: 16px 24px;
}

.gray-box>p {
    font-weight: 600;
    font-size: 14px;
    min-width: 80px;
}

.gray-box>span {
    font-size: 14px;
    color: var(--gr600);
}

/* 모바일 */
.mobile-con {
    margin-top: 240px;
}

.mobile-con,
.mob-area {
    width: 100%;
}

.mob-area {
    height: 140vh;
}

.mob-area>div {
    width: 50%;
    height: 100%;
}

.mob-area>.bk-bg {
    padding: 320px 136px 0;
}

.mob-mk {
    border: 4px solid var(--bk);
    width: 390px;
    overflow: hidden;
    border-radius: 40px;
    opacity: 0;
    transform: translateY(50px);
}

.mob-area.ani .mob-mk {
    animation: fadeInUp 0.7s forwards;
}

.mob-mk>li {
    overflow: auto;
    width: 100%;
    height: 780px;
    display: none;
    cursor: pointer;
}

.mob-mk>li::-webkit-scrollbar {
    display: none;
}

.mob-mk>li.on {
    display: block;
}

.mockup-area {
    background: var(--gr100);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 320px;
}

.mobile-con .eng,
.mobile-con .kor {
    color: #fff;
    word-break: keep-all;
}

.mobile-con .mob-ch-btn {
    text-align: left;
}

.mobile-con .btn-box {
    align-items: flex-start;
    padding: 0;
    margin-top: 120px;
}

.mockup-area>p {
    padding: 16px 0;
}


.mob-graph {
    justify-content: center;
    padding: 0 !important;
    text-align: center;
    display: none;
}

.mob-pgb-wrap {
    display: flex;
    gap: 16px;
    height: 100%;
    align-items: flex-end;
    justify-content: center;
}

.mob-pgb-wrap>li {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mob-ga-fst {}

.mob-pgb-wrap .bar-wrap {
    height: 100%;
    justify-content: flex-end;
}

.mob-pgb-wrap .g-h {
    height: 92.5%;
}

.mob-pgb-wrap .g-h.h-68 {
    height: 68%;
}

.mob-pgb-wrap .pg-bar {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100px;
    padding: 12px 0;
}

.mob-pgb-name {
    text-align: center;
    margin-top: 8px;
    font-weight: 700;
    color: var(--gr300);
}

.mob-pgb-name.on {
    color: var(--bk);
}

.mob-ga-item .pg-bar.on {
    height: 0;
}

.mob-ga-item.ani .h-10.on {
    height: 22%;
}

.mob-ga-item.ani .h-20.on {
    height: 25%;
}

.mob-ga-item {
    height: 45vh;
    text-align: center;
    padding: 40px;
}

/* 모달 */
.modal-bg{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    overflow: hidden scroll;
}
.modal-bg::-webkit-scrollbar{
    display: none;
}
.modal-bg.open{
    opacity: 1;
    visibility: inherit;
}
.modal-inr{
    position: relative;
    margin: 40px auto;
    width: 80vw;
    max-width: 540px;
    min-width: 360px;
    border-radius: 24px;
    overflow: hidden;
}
.modal-img-wrap{
    position: relative;
    width: 100%;
}
.mob-img-item{
    width: 100%;
    opacity: 0;
    display: none;
}
.mob-img-item.on{
    opacity: 1;
    display: block;
}
.mob-img-item>img{
    width: 100%;
    object-fit: contain;
}

/* 반응형 */
@media(max-width:1439px) {
    .mg-card-wrap>li {
        height: 400px;
    }

    .mg-card-wrap>li>img {
        height: 100%;
        object-fit: contain;
    }

    .at-con>div {
        width: 100%;
    }

    .card-grid {
        flex-direction: column;
    }

    .card-grid>div,
    .card-grid>ol {
        width: 100%;
    }

    .mob-area {
        flex-direction: column;
        height: auto;
    }

    .mob-area>div {
        width: 100%;
    }

    .mob-area>.bk-bg {
        padding: 32px 20px;
    }

    .btn-box {
        flex-direction: initial;
        overflow-x: auto;
        justify-content: flex-start;
    }

    .change-btn {
        width: auto;
    }

    .mobile-con .btn-box {
        margin-top: 80px;
    }

    .mockup-area {
        padding: 200px 0 120px;
    }

    .mypage-item {
        padding: 80px 40px;
    }
}

@media(max-width:1023px) {
    .big-box {
        padding: 16px;
    }

    .top-visual {
        flex-direction: column-reverse;
        justify-content: center;
        height: 100%;
    }

    .main-tit {
        text-align: center;
        margin-top: 100px;
    }

    .main-tit>.tit {
        font-size: 72px;
    }

    .main-tit>span {
        font-size: 18px;
    }

    .mg-card-wrap {
        width: 100%;
        height: 40vh;
        transform: translate(0, 120px);
        right: 0;
    }

    .mg-card-wrap>li {
        right: 50%;
        top: 50%;
        transform: translate(50%, -50%);
    }

    .mg-card-wrap.ani .front {
        transform: rotate(-8deg) translate(50%, -50%);
    }

    .mg-card-wrap.ani .back {
        transform: rotate(16deg) translate(50%, -48%);
    }

    .ai-style .tit>span {
        font-size: 44px;
    }

    .ai-tab-area {
        column-gap: 16px;
    }

    .ai-style {
        padding-bottom: 40px;
    }

    .index-area {
        flex-direction: column;
        height: auto;
        padding: 40px 16px;
    }

    .pr-info>dl {
        margin-bottom: 12px;
    }

    .pr-info {
        padding: 32px 0;
    }

    .index-wrap {
        display: none;
    }

    .iw-top {
        border-bottom: 0;
    }

    .list-mv {
        background: var(--gr100);
        border-radius: 16px;
        padding: 24px;
    }

    .timeline-area {
        height: 100%;
    }

    .tl3 {
        flex-direction: column;
        padding-top: 40px;
    }

    .tl3>.side-tl,
    .tl3>.center-tl {
        width: 100%;
    }

    .tl-box-wrap {
        border-top: 1px dashed #C8C8C8;
        border-left: 0;
        border-right: 0;
        width: 100%;
        padding: 16px 16px 40px;
    }

    .insight {
        padding: 120px 20px 160px;
    }

    .interview-con {
        flex-direction: column;
        gap: 40px;
    }

    .user-itv .sec-tit>.flex-btw {
        flex-direction: column;
        align-items: flex-start;
    }

    .loop5 {
        max-width: 100%;
    }

    .change-btn>span,
    .keyword>strong {
        font-size: 28px;
    }

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

    .pc-mockup {
        height: auto !important;
    }

    .pc-mockup.mt-80 {
        margin-top: 40px;
    }

    .card-grid,
    .stage2 {
        gap: 16px;
    }

    .card-grid {
        margin-top: 16px;
    }

    .btn-box {
        padding: 40px 20px;
    }

    .stage2 .name {
        font-size: 18px;
    }

    .stage2>div {
        padding: 32px;
    }

    .mileage-data-area {
        flex-direction: column;
    }

    .mypage-item {
        padding: 40px 32px;
    }

    .warning-area {
        flex-direction: column;
        row-gap: 40px;
    }

    .warning-area>div {
        width: 100%;
    }

    .main-ui-con {
        margin-top: 120px;
    }

    .grid-tit {
        margin: 0 auto 40px;
    }

    .at-con {
        margin-top: 80px;
    }
}

@media(max-width:767px) {
    .ai-style .ai-sec1 {
        height: 100vh;
    }

    .ai-style .tit>span {
        font-size: 32px;
    }

    .mg-card-wrap>li {
        height: 300px;
    }

    .center-tl .tl-box-wrap>.item {
        max-width: 100%;
    }

    .center-tl .tl-box-wrap>li {
        margin-left: 0 !important;
    }

    .timeline {
        padding: 64px 24px 0px;
    }

    .sec-tit .eng,
    .dvt>span {
        font-size: 18px;
    }

    .sec-tit .kor {
        font-size: 24px;
    }

    .pc-graph {
        display: none;
    }

    .mob-graph {
        display: flex;
        flex-direction: column;
    }

    .loop-box strong {
        font-size: 16px;
    }

    .pr-sm {
        width: 100%;
    }

    .blank-btn {
        width: 100%;
    }

    .circle-line {
        width: 320px;
        height: 320px;
    }

    .change-btn>span,
    .keyword>strong {
        font-size: 20px;
    }

    .keyword>p {
        font-size: 14px;
    }

    .direction-con {
        padding-top: 80px;
    }

    .big-tit {
        font-size: 32px;
    }

    .ui-inr {
        padding: 40px 20px;
    }

    .change-btn>span {
        padding: 16px 32px;
    }

    .change-btn.on>span::after {
        width: 16px;
        height: 10px;
    }

    .mobile-con .btn-box {
        margin-top: 40px;
    }

    .grid-tit .kor,
    .grid-tit .tit-dt {
        width: auto;
    }

    .mockup-area {
        padding: 40px 20px;
    }

    .mob-mk {
        width: auto;
    }

    .mob-ga-item.ani .h-46.on {
        height: 46%;
    }

    .mob-ga-item.ani .h-68.on {
        height: 68%;
    }

    .r-chart-area #radarChart {
        width: 280px !important;
        height: 280px !important;
    }

    .mypage-item .mileage-data-area {
        padding: 40px 20px 20px;
    }

    .meg-box {
        padding: 24px 16px;
    }

    .rank-info .standard>span,
    .mp-cap {
        font-size: 12px;
    }

    .warning-area {
        padding: 32px 24px;
    }

    .loop-box {
        padding: 20px;
    }

    .vertical {
        height: 112px;
    }

    .loop-box>.fst>p {
        font-size: 14px;
    }

    .loop-box>.fst .weakly {
        font-size: 13px;
    }
    .mypage-item{
        padding: 32px 16px;
    }
    .mypage-item>strong{
        margin-bottom: 12px;
        font-size: 18px;
    }
}

@media(max-width:425px) {
    .mg-card-wrap>li {
        height: 250px;
    }

    .mg-card-wrap {
        height: 30vh;
    }
}

/* @media (max-height: 600px) {

    .ai-style .ai-sec1,
    .bottom-visual {
        height: 100%;
    }
    .mg-card-wrap {
        height: 90vh;
    }
    .ai-style:after {
        height: calc(100% - 360vh);
    }
} */