<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* ********************** About / Solutions / Careers scrolltrigger 공통 ********************** */
.common-intro .subject {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 158px;
    margin-top: -240px;
    padding: 0 18px;
    text-align: center;
    transform: translateY(-50%);
}
.common-intro .subject &gt; p {
    font-size: 60px;
    font-weight: 700;
    line-height: 84px;
    letter-spacing: -0.02em;
}
.common-intro .subject &gt; span {
    margin-top: 10px;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: -0.02em;
}
.common-intro .mask {
    position: relative;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    clip-path: circle(210px at 50% calc(50% + 90px));
    transition: clip-path 0.6s ease;
    transition-delay: 0.5s;
}
.common-intro .mask.is-on {
    clip-path: circle(100% at 50% 50%);
    transition-delay: 0s;
}
.common-intro.solutions-intro .mask.is-on {
    clip-path: circle(100% at 50% 50%);
    transition-delay: 0s;
}
.common-intro.careers-intro .subject {
    height: 210px;
    margin-top: -235px;
}
.common-intro.careers-intro .mask {
    clip-path: circle(210px at 50% calc(50% + 120px));
}
.common-intro.careers-intro .mask.is-on {
    clip-path: circle(100% at 50% 50%);
    transition-delay: 0s;
}

/* ********************** About ********************** */
.about-intro {
    overflow: hidden;
    width: 100%;
    min-height: 100vh;
}
.about-intro-container {
    position: sticky;
    top: 0;
    left: 0;
}
.about-intro-container .mask .article {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ebebeb;
}
.about-intro-container .mask .article.article01 .background {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3840px;
    height: 3840px;
    margin: -1920px 0 0 -1920px;
    background: url(./../images/sub/about/about-bg.jpg) no-repeat 50% 50%/100% auto;
    will-change: scale;
    transform: scale(0.42);
    transition: transform 0.6s ease;
    transition-delay: 0.5s;
}
.about-intro-container .mask .article.article01 .background.is-on {
    transform: scale(1);
    transition-delay: 0s;
}
.about-intro-container .mask .article.article02 .background {
    background: #ffffff;
}
.about-intro-container .mask .article.article03 .background {
    background: #f68b1f;
}
.about-intro-container .mask .article .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.about-intro-container .mask .article .value {
    position: relative;
    max-width: 1280px;
    height: 100%;
    margin: 0 auto;
}
.about-intro-container .mask .article .value.is-on .contents {
    opacity: 1;
    transform: translateY(-50%);
    transition-delay: 0.7s;
}
.about-intro-container .mask .article .value .contents {
    position: absolute;
    top: calc(50% - 200px);
    left: 0;
    width: 100%;
    min-width: 1300px;
    padding: 0 10px;
    opacity: 0;
    transform: translateY(-30%);
    transition: opacity 1s, transform 1s;
}
.about-intro-container .mask .article .value .contents h3 {
    font-size: 48px;
    font-weight: 700;
    line-height: 72px;
}
.about-intro-container .mask .article .value .contents h3.lg {
    font-size: 60px;
    line-height: 90px;
}
.about-intro-container .mask .article .value .contents h3.lg + p {
    margin-top: 0;
}
.about-intro-container .mask .article .value .contents h3 + p {
    margin-top: 20px;
}
.about-intro-container .mask .article .value .contents p {
    font-size: 20px;
    line-height: 32px;
}
.about-intro-container .mask .article .value .contents .toggle {
    position: relative;
    width: 208px;
    height: 52px;
    margin: 44px auto 94px;
    border-radius: 33px;
    background-color: #ffffff;
    animation: bg 4s infinite ease-in-out;
}
@keyframes bg {
    0%, 10% {
        background-color: rgb(255, 255, 255);
    }
    40%, 60% {
        background-color: rgba(255, 255, 255, 0.5);
    }
    90%, 100% {
        background-color: rgb(255, 255, 255);
    }
}
.about-intro-container .mask .article .value .contents .toggle &gt; span {
    position: absolute;
    top: 0;
    left: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #000000;
    animation: toggle 4s infinite ease-in-out;
}
@keyframes toggle {
    0%, 10% {
        left: 0;
    }
    40%, 60% {
        left: calc(100% - 52px);
    }
    90%, 100% {
        left: 0;
    }
}
.about-intro-container .mask .article.article02 {
    transform: translateY(100%);
    transition: transform 1s;
    transition-delay: 0.5s;
}
.about-intro-container .mask .article.article02.is-on {
    transform: translateY(0);
    transition-delay: 0s;
}
.about-intro-container .mask .article.article02 .value.-full {
    width: 100%;
}
.about-intro-container .mask .article.article02 .value.-full .contents {
    transform: translateY(-40%);
}
.about-intro-container .mask .article.article02 .value.-full.is-on .contents {
    transform: translateY(-50%);
    transition-delay: 1s;
}
.about-intro-container .mask .article.article02 .value .contents {
    width: 100%;
    top: 50%;
}
.about-intro-container .mask .article.article02 .value .contents .connect {
    position: relative;
    width: 450px;
    height: 450px;
    margin: 80px auto 0;
    border: 1px solid #f68b1f;
    border-radius: 50%;
}
.about-intro-container .mask .article.article02 .value .contents .connect .data {
    width: 100%;
    height: 100%;
}
.about-intro-container .mask .article.article02 .value .contents .connect .data_header {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.about-intro-container .mask .article.article02 .value .contents .connect .data_header &gt; h4 {
    display: block;
    width: 230px;
    height: 48px;
    margin: 0 auto 10px;
    background: url(./../images/sub/about/about-hyundaiinsurance.svg) no-repeat center/100% auto;
    text-indent: -9999px;
    overflow: hidden;
    white-space: nowrap;
}
.about-intro-container .mask .article.article02 .value .contents .connect .data_header &gt; p {
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
    text-align: center;
    white-space: nowrap;
}
.about-intro-container .mask .article.article02 .value .contents .connect .data.data01 {
    position: absolute;
    top: 0;
    transition: opacity 1s;
    opacity: 1;
}
.about-intro-container .mask .article.article02 .value .contents .connect .data.data01.is-out {
    /* 사라지게 */
    opacity: 0;
}
.about-intro-container .mask .article.article02 .value .contents .connect .data.data02 {
    position: absolute;
    top: 0;
    transition: opacity 1s;
    opacity: 0;
}
.about-intro-container .mask .article.article02 .value .contents .connect .data.data02.is-in {
    /* 나타나게 */
    opacity: 1;
}
.about-intro-container .mask .article.article02 .value .contents .connect .data.data02 h4 {
    background: url(./../images/sub/about/about-hyundaihds.png) no-repeat center/100% auto;
}
.about-intro-container .mask .article.article02 .value .contents .connect .data .app {
    position: absolute;
    padding: 12px 15px 12px 52px;
    border-radius: 30px;
    animation: bubble 2s ease infinite;
}
.about-intro-container .mask .article.article02 .value .contents .connect .data .app::before {
    content: "";
    position: absolute;
    bottom: -21px;
    left: 50%;
    width: 18px;
    height: 11px;
    margin-left: -9px;
    border-width: 11px 9px;
    border-style: solid;
    border-color: #f68b1f transparent transparent transparent;
}
.about-intro-container .mask .article.article02 .value .contents .connect .data .app &gt; p {
    font-size: 16px;
    font-weight: 500;
    line-height: 25.6px;
}
.about-intro-container .mask .article.article02 .value .contents .connect .data .app.app-insurance_01 {
    top: 45px;
    right: -49px;
    background: #f68b1f url(./../images/sub/about/about-insurance_icon01.png) no-repeat left 15px center/30px auto;
}
.about-intro-container .mask .article.article02 .value .contents .connect .data .app.app-insurance_02 {
    top: 85px;
    left: -48px;
    background: #f68b1f url(./../images/sub/about/about-insurance_icon02.png) no-repeat left 15px center/30px auto;
}
.about-intro-container .mask .article.article02 .value .contents .connect .data .app.app-insurance_03 {
    top: 330px;
    right: 4px;
    background: #f68b1f url(./../images/sub/about/about-insurance_icon03.png) no-repeat left 15px center/30px auto;
}
.about-intro-container .mask .article.article02 .value .contents .connect .data .app.app-hds_01 {
    top: 65px;
    left: -22px;
    background: #f68b1f url(./../images/sub/about/about-hds_icon01.svg) no-repeat left 15px center/28px auto;
}
.about-intro-container .mask .article.article02 .value .contents .connect .data .app.app-hds_02 {
    top: 106px;
    right: -14px;
    background: #f68b1f url(./../images/sub/about/about-hds_icon02.svg) no-repeat left 15px center/28px auto;
}
.about-intro-container .mask .article.article02 .value .contents .connect .data .app.app-hds_03 {
    top: 336px;
    left: 25px;
    background: #f68b1f url(./../images/sub/about/about-hds_icon03.svg) no-repeat left 15px center/28px auto;
}
@keyframes bubble {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0);
    }
}
.about-intro-container .mask .article.article02 .value .contents .indicator {
    position: absolute;
    top: 50%;
    right: 200px;
    transform: translateY(100px);
}
.about-intro-container .mask .article.article02 .value .contents .indicator li {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    opacity: 0.1;
    transition: opacity 0.5s;
}
.about-intro-container .mask .article.article02 .value .contents .indicator li + li {
    padding-top: 40px;
}
.about-intro-container .mask .article.article02 .value .contents .indicator li.is-on {
    border-bottom: 2px solid #000000;
    font-weight: 700;
    opacity: 1;
}
.about-intro-container .mask .article.article03 {
    transform: translateY(100%);
    transition: transform 1s;
    transition-delay: 0.5s;
}
.about-intro-container .mask .article.article03.is-on {
    transform: translateY(0);
    transition-delay: 0s;
}
.about-intro-container .mask .article.article03 .value {
    text-align: center;
}
.about-intro-container .mask .article.article03 .value .contents {
    width: 100%;
    top: 50%;
}
.about-intro-container .mask .article.article03 .value .contents p:nth-child(1) {
    font-size: 60px;
    font-weight: 700;
    line-height: 90px;
    letter-spacing: -0.02em;
}

.about {
    width: 1300px;
    margin: 250px auto 0;
    padding: 0 10px;
}
.about:last-child {
    margin-bottom: 250px;
}
.about_header h3, .about_header .title {
    margin-top: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 72px;
}
.about_header h3 + p, .about_header .title + p {
    margin-top: 20px;
    font-size: 20px;
    line-height: 32px;
}
.about_header h3 &gt; .emp, .about_header .title &gt; .emp {
    color: #f68b1f;
}
.about_body {
    position: relative;
    margin-top: 60px;
}
.about_body + .about_header {
    margin-top: 250px;
}
.about_body.-way {
    margin-top: 100px;
}
.about_body.-team {
    margin-top: 20px;
}
.about_body.-message {
    margin-top: 20px;
}
.about_body .way .subtitle h4 {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
}
.about_body .way .subtitle p {
    margin-top: 10px;
    font-size: 20px;
    line-height: 32px;
}
.about_body .way .subtitle + .case {
    margin-top: 30px;
}
.about_body .way .subtitle + .case + .subtitle {
    margin-top: 60px;
}
.about_body .way .case.-way li dl dt.hit {
    display: flex;
    align-items: center;
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
}
.about_body .way .case.-way li dl dt.hit &gt; span {
    margin-left: 10px;
    font-size: 18px;
    line-height: 27px;
}
.about_body .chart strong {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 232px;
    height: 232px;
    margin: 0 auto 85px;
    border: 1px solid #c9c9c9;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
}
.about_body .chart strong::before {
    content: "";
    position: absolute;
    bottom: -85px;
    left: 50%;
    margin-left: -0.5px;
    width: 1px;
    height: 85px;
    background-color: #c9c9c9;
}
.about_body .chart .list {
    display: flex;
    gap: 25px;
    white-space: nowrap;
}
.about_body .chart .list .wrapper .subtitle {
    position: relative;
    margin: 20px 0 30px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}
.about_body .chart .list .wrapper .subtitle::before {
    content: "";
    position: absolute;
    top: -25px;
    left: 50%;
    margin-left: -5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #000000;
}
.about_body .chart .list .wrapper .subtitle.-sub01::after {
    content: "";
    position: absolute;
    top: -21px;
    right: -20px;
    width: calc(50% + 20px);
    height: 1px;
    background-color: #c9c9c9;
    z-index: -1;
}
.about_body .chart .list .wrapper .subtitle.-sub02::after {
    content: "";
    position: absolute;
    top: -21px;
    left: -5px;
    width: calc(100% + 30px);
    height: 1px;
    background-color: #c9c9c9;
    z-index: -1;
}
.about_body .chart .list .wrapper .subtitle.-sub03::after {
    content: "";
    position: absolute;
    top: -21px;
    left: 0;
    width: 50%;
    height: 1px;
    background-color: #c9c9c9;
    z-index: -1;
}
.about_body .chart .list .wrapper ul li .detailtitle {
    position: relative;
    font-size: 16px;
    font-weight: 700;
    line-height: 25.6px;
}
.about_body .chart .list .wrapper ul li .detail {
    margin-top: 10px;
}
.about_body .chart .list .wrapper ul li .detail li {
    color: #666666;
    font-size: 16px;
    line-height: 25.6px;
    letter-spacing: -0.02em;
}
.about_body .chart .list .group {
    display: flex;
    gap: 10px;
}
.about_body .chart .list .sub {
    width: 200px;
    min-height: 200px;
    padding: 30px 25px;
    border-radius: 24px;
    background-color: #ebebeb;
}
.about_body .chart .list .sub.-only {
    color: #666666;
    font-size: 16px;
    line-height: 25.6px;
    letter-spacing: -0.02em;
}
.about_body .message {
    display: flex;
    align-items: center;
}
.about_body .message .text {
    width: calc(100% - 360px - 123px);
}
.about_body .message .text p {
    color: #767676;
    font-size: 18px;
    line-height: 28.8px;
}
.about_body .message .text p.subtitle {
    margin-top: 40px;
    color: #000000;
    font-size: 24px;
    font-weight: 700;
    line-height: 38.4px;
}
.about_body .message .text p.subtitle + p {
    margin-top: 30px;
}
.about_body .message .text p.subtitle + p + p {
    margin-top: 28px;
}
.about_body .message .photo {
    margin-left: 123px;
}
.about_body .message .photo .img {
    position: relative;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background-color: #ebebeb;
}
.about_body .message .photo .img &gt; img {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: auto;
}
.about_body .message .photo .img .motion {
    position: absolute;
    top: 60px;
    left: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f68b1f;
}
.about_body .message .photo .img + p {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}
.about_body .message .photo .img + p &gt; span {
    padding: 0 8px;
    font-weight: 400;
}
.about_body .finance {
    border-top: 2px solid #000000;
}
.about_body .finance div {
    display: flex;
    align-items: center;
    min-height: 200px;
    padding: 20px 0;
    border-bottom: 1px solid #c9c9c9;
}
.about_body .finance div p {
    width: 488px;
    padding-right: 14px;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
}
.about_body .finance div ul {
    width: calc(100% - 488px - 187px);
    padding-right: 14px;
}
.about_body .finance div ul li {
    color: #767676;
    font-size: 18px;
    line-height: 28.8px;
}
.about_body .finance div a {
    width: 187px;
}

.about-history {
    overflow: hidden;
    margin: 250px auto 0;
    padding: 250px 0;
    background-color: #000000;
    color: #ffffff;
}
.about-history_container {
    width: 1300px;
    margin: 0 auto;
    padding: 0 10px;
}
.about-history_container .about_header {
    position: relative;
    z-index: 1;
}
.about-history .effect.is-on {
    transition-delay: 0s;
}
.about-history .graph {
    position: relative;
    width: 1280px;
    margin: -66px auto 0;
}

/* ********************** Solutions ********************** */
.solutions-intro {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 100vh;
}
.solutions-intro-container {
    position: sticky;
    top: 0;
    left: 0;
}
.solutions-intro-container .mask .article {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
}
.solutions-intro-container .mask .article.article01 .background {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3840px;
    height: 3840px;
    margin: -1920px 0 0 -1920px;
    background: url(./../images/sub/solutions/solutions-bg01.jpg) no-repeat 50% 50%/100% auto;
    will-change: scale;
    transform: scale(0.42);
    transition: transform 0.6s ease;
    transition-delay: 0.5s;
}
.solutions-intro-container .mask .article.article01 .background.is-on {
    transform: scale(1);
    transition-delay: 0s;
}
.solutions-intro-container .mask .article.article02 .background {
    background: #000 url(./../images/sub/solutions/solutions-bg02.jpg) no-repeat center/cover;
}
.solutions-intro-container .mask .article.article03 .background {
    background: #000 url(./../images/sub/solutions/solutions-bg03.jpg) no-repeat center/cover;
}
.solutions-intro-container .mask .article .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.solutions-intro-container .mask .article .dim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.6s ease;
    transition-delay: 0.5s;
}
.solutions-intro-container .mask .article .dim.is-on {
    opacity: 1;
    transition-delay: 0s;
}
.solutions-intro-container .mask .article .value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 24px;
    color: #fff;
    text-align: center;
}
.solutions-intro-container .mask .article .value &gt; h3 {
    font-size: 60px;
    font-weight: 700;
    line-height: 90px;
}
.solutions-intro-container .mask .article .value &gt; p {
    margin-top: 30px;
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
}
.solutions-intro-container .mask .article.article01 .value {
    opacity: 0;
    transform: translate(-50%, -20%);
    transition: opacity 1s, transform 1s;
}
.solutions-intro-container .mask .article.article01 .value.is-on {
    opacity: 1;
    transform: translate(-50%, -50%);
    transition-delay: 0.7s;
}
.solutions-intro-container .mask .article.article02 {
    transform: translateY(100%);
    transition: transform 1s;
    transition-delay: 0.5s;
}
.solutions-intro-container .mask .article.article02.is-on {
    transform: translateY(0);
    transition-delay: 0s;
}
.solutions-intro-container .mask .article.article02 .value {
    opacity: 0;
    transform: translate(-50%, -20%);
    transition: opacity 1s, transform 1s;
}
.solutions-intro-container .mask .article.article02 .value.is-on {
    opacity: 1;
    transform: translate(-50%, -50%);
    transition-delay: 0.7s;
}
.solutions-intro-container .mask .article.article03 {
    transform: translateY(100%);
    transition: transform 1s;
    transition-delay: 0.5s;
}
.solutions-intro-container .mask .article.article03.is-on {
    transform: translateY(0);
    transition-delay: 0s;
}
.solutions-intro-container .mask .article.article03 .value {
    opacity: 0;
    transform: translate(-50%, -20%);
    transition: opacity 1s, transform 1s;
}
.solutions-intro-container .mask .article.article03 .value.is-on {
    opacity: 1;
    transform: translate(-50%, -50%);
    transition-delay: 0.7s;
}
.solutions-intro-container .mask .indicator {
    position: absolute;
    top: 50%;
    right: 200px;
    transform: translateY(-50%);
}
.solutions-intro-container .mask .indicator li {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 27px;
    text-align: center;
    opacity: 0.1;
}
.solutions-intro-container .mask .indicator li + li {
    padding-top: 40px;
}
.solutions-intro-container .mask .indicator li.is-on {
    border-bottom: 2px solid #ffffff;
    opacity: 1;
}

.solutions-point-container {
    width: 1300px;
    margin: 250px auto 0;
    padding: 0 10px;
}
.solutions-point_header h3 {
    font-size: 60px;
    font-weight: 700;
    line-height: 90px;
}
.solutions-point_header h3 + p {
    margin-top: 20px;
    font-size: 20px;
    line-height: 32px;
}
.solutions-point_header .subtitle {
    margin-top: 20px;
    font-size: 20px;
    line-height: 32px;
}
.solutions-point_header .subtitle strong {
    display: block;
    margin-top: 32px;
}
.solutions-point_header .subtitle strong + p {
    margin-top: 32px;
}
.solutions-point_body {
    position: relative;
    margin-top: 100px;
}
.solutions-point_body + .solutions-point_header {
    margin-top: 250px;
}
.solutions-point_body .circle {
    display: flex;
    gap: 20px;
}
.solutions-point_body .circle li {
    width: 20%;
    height: 100%;
    aspect-ratio: 1/1;
    padding: 36px 0 34px;
    border-radius: 50%;
    background-color: #F2F2F2;
    text-align: center;
}
.solutions-point_body .circle li dl dt {
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
}
.solutions-point_body .circle li dl dd {
    margin: 5px 0 13px;
    color: #666666;
    font-size: 18px;
    line-height: 25.2px;
}
.solutions-point_body .circle li img {
    display: block;
    margin: 0 auto;
}
.solutions-point_body .diagram {
    margin-top: 45px;
}
.solutions-point_body .diagram img {
    width: 990px;
    margin: 0 auto;
}
.solutions-point_body .diagram img.icon {
    width: 53px;
    margin-bottom: 66px;
}
.solutions-point_body h4 {
    font-size: 24px;
    font-weight: 700;
    line-height: 38px;
}
.solutions-point_body h4.points {
    position: absolute;
    top: 24px;
    padding-right: 34px;
    background: url(./../images/common/icon/icon-right.svg) no-repeat right center/24px auto;
}
.solutions-point_body .list {
    margin-top: 30px;
    border-top: 2px solid #000000;
}
.solutions-point_body .list ul li {
    display: flex;
    padding: 60px 0;
    border-bottom: 1px solid #c9c9c9;
}
.solutions-point_body .list ul li .title {
    width: calc(100% - 792px);
}
.solutions-point_body .list ul li .title p {
    width: 100%;
    color: #000000;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
}
.solutions-point_body .list ul li p {
    width: 792px;
    color: #767676;
    font-size: 18px;
    line-height: 28.8px;
}

.solutions-customer {
    margin-top: 250px;
    padding: 250px 0;
    background: #000000 url(./../images/sub/solutions/solutions-bg04.png) no-repeat top center/100% auto;
}
.solutions-customer-container {
    width: 1300px;
    margin: 0 auto;
    padding: 0 10px;
}
.solutions-customer_header {
    color: #ffffff;
    text-align: center;
}
.solutions-customer_header h3 {
    font-size: 48px;
    line-height: 67.2px;
}
.solutions-customer_header h3 + p {
    margin-top: 20px;
}
.solutions-customer_header p {
    margin: 0 auto;
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
}
.solutions-customer_header p + h3 {
    margin-top: 20px;
}
.solutions-customer_body .tablist {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 100px 0 60px;
}
.solutions-customer_body .tablist &gt; button {
    padding: 0;
    border: none;
    border-bottom: 2px solid transparent;
    background: none;
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    opacity: 0.3;
}
.solutions-customer_body .tablist &gt; button.is-on {
    border-color: #ffffff;
    opacity: 1;
}
.solutions-customer_body .tabpanel {
    position: relative;
}
.solutions-customer_body .tabpanel.hidden {
    display: none;
}
.solutions-customer_body + .solutions-customer_header {
    margin-top: 250px;
}

/* 공통 */
.case {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.case.-point li {
    width: calc(33.3333333333% - 14px);
    min-height: 264px;
}
.case.-point li:first-child {
    margin-left: calc(33.3333333333% + 8px);
}
.case.-customer &gt; div {
    width: calc(25% - 15px);
    height: 240px;
}
.case.-customer &gt; div.customer {
    background: #f68b1f url(./../images/common/icon/icon-right.svg) no-repeat left 30px bottom 30px/28px auto;
}
.case.-customer &gt; div.customer p {
    padding-bottom: 50px;
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
}
.case.-way li {
    width: calc(25% - 15px);
    min-height: 173px;
}
.case li, .case div {
    padding: 30px 30px;
    border-radius: 24px;
    background-color: #F2F2F2;
}
.case li dl dt, .case div dl dt {
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
}
.case li dl dd, .case div dl dd {
    padding-top: 10px;
    color: #666666;
    font-size: 18px;
    line-height: 27px;
}

.spread {
    position: relative;
    margin-top: 100px;
}
.spread .circle {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 450px;
    aspect-ratio: 1/1; /* 정사각형 비율 */
    border-radius: 50%;
    border: 1px solid #ffffff;
    text-align: center;
}
.spread .circle.circle01 {
    position: absolute;
    top: 0;
    left: 0;
}
.spread .circle.circle02 {
    margin: 0 auto;
}
.spread .circle.circle03 {
    position: absolute;
    top: 0;
    right: 0;
}
.spread .circle .up {
    transform: translateY(10px);
    opacity: 0;
    transition: all 1s;
}
.spread .circle .up.is-up {
    transform: translateY(0);
    opacity: 1;
}
.spread .circle h4 {
    color: #f68b1f;
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
}
.spread .circle dl dt {
    margin-top: 5px;
    color: #f68b1f;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
}
.spread .circle dl dd {
    margin-top: 30px;
    color: #ffffff;
    font-size: 18px;
    line-height: 27px;
}
.spread .circle p {
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
}

/* ********************** Work ********************** */
.works-list {
    width: 1300px;
    margin: 0 auto;
    padding: 0 10px;
}
.works-list_header {
    text-align: center;
}
.works-list_header h2 {
    font-size: 80px;
    font-weight: 700;
    line-height: 120px;
}
.works-list_header h3 {
    margin: 120px 0 80px;
    color: #767676;
    font-size: 32px;
    font-weight: 400;
    line-height: 51.2px;
    text-align: left;
}
.works-list_header h3 &gt; span {
    color: #000000;
    font-weight: 700;
}
.works-list nav {
    margin: 120px 0 80px;
}
.works-list nav ul {
    display: flex;
    gap: 40px;
}
.works-list nav ul li button {
    display: block;
    padding: 0;
    border: none;
    background: none;
    color: #767676;
    font-size: 20px;
    font-weight: 500;
    line-height: 34px;
}
.works-list nav ul li button:focus-visible, .works-list nav ul li button:hover, .works-list nav ul li button.is-on {
    border-bottom: 2px solid #000000;
    color: #000000;
    font-weight: 700;
}
.works-list .list ul {
    display: flex;
    flex-wrap: wrap;
    margin: -100px 0 0 -40px;
}
.works-list .list ul li {
    width: calc(50% - 40px);
    margin: 100px 0 0 40px;
}
.works-list .list ul li a {
    display: block;
}
.works-list .list ul li a .thumb {
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
}
.works-list .list ul li a .thumb::before {
    content: "";
    display: block;
    padding-bottom: 56.454%;
}
.works-list .list ul li a .thumb &gt; img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.works-list .list ul li a .info {
    display: flex;
    align-items: flex-start;
    margin-top: 25px;
}
.works-list .list ul li a .info p {
    width: calc(100% - 300px);
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
}
.works-list .list ul li a .info .service {
    display: flex;
    gap: 5px;
    margin-left: auto;
    cursor: default;
}
.works-list .list ul li a .info .service span {
    display: inline-block;
    padding: 5px 8px;
    border-radius: 15px;
    color: #767676;
    font-size: 16px;
    line-height: 1;
    cursor: default;
}

.works-detail .detail {
    width: 1300px;
    margin: 0 auto;
    padding: 0 10px;
}
.works-detail h2 {
    font-size: 64px;
    font-weight: 700;
    line-height: 96px;
}
.works-detail .client {
    margin-top: 80px;
}
.works-detail .client &gt; ul {
    display: flex;
    gap: 30px;
}
.works-detail .client &gt; ul &gt; li {
    display: flex;
    align-items: center;
    gap: 30px;
}
.works-detail .client &gt; ul &gt; li span {
    color: #767676;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
}
.works-detail .client &gt; ul &gt; li p {
    width: 207px;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
}
.works-detail .client &gt; ul &gt; li .service {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.works-detail .client &gt; ul &gt; li .service li button {
    display: inline-block;
    padding: 6px 8px;
    border: 1px solid #000000;
    border-radius: 15px;
    background-color: #ffffff;
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}
.works-detail .client &gt; ul &gt; li .service li button:hover {
    background-color: #000000;
    color: #ffffff;
}
.works-detail .visual {
    margin: 100px 0;
}
.works-detail .visual &gt; img {
    display: block;
    width: 1920px;
    margin: 0 auto;
}
.works-detail .overview {
    display: flex;
    margin: 0 0 200px;
}
.works-detail .overview span {
    width: 325px;
    color: #767676;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
}
.works-detail .overview p {
    width: calc(100% - 325px);
    font-size: 20px;
    line-height: 32px;
}
.works-detail .tv {
    max-width: 1920px;
    margin: 0 auto;
    padding: 250px 0;
    background-color: #000000;
}
.works-detail .tv .cf {
    width: 1300px;
    margin: 0 auto;
    padding: 0 10px;
}
.works-detail .tv .cf .iframe {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}
.works-detail .tv .cf .iframe + .iframe {
    margin-top: 60px;
}
.works-detail .tv .cf .iframe &gt; iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.works-detail .img {
    width: 100%;
}
.works-detail .img &gt; img {
    display: block;
    width: 1920px;
    margin: 0 auto;
}

.works-nav {
    display: flex;
    align-items: center;
    width: 1300px;
    height: 270px;
    margin: 0 auto;
    padding: 0 10px;
}
.works-nav .list {
    padding-left: 30px;
    background: url(./../images/common/icon/icon-left.svg) no-repeat left center/20px auto;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
}

.next-nav {
    display: block;
    position: relative;
    height: 672px;
    background-color: #000;
}
.next-nav .bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.next-nav .contents {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
}
.next-nav .contents .conts {
    width: 1300px;
    padding: 0 10px;
}
.next-nav .contents .conts span {
    padding-right: 30px;
    background: url(./../images/common/icon/icon-right_white.svg) no-repeat right center/20px auto;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
}
.next-nav .contents .conts p {
    margin-top: 10px;
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
}
.next-nav .contents .conts .service {
    margin-top: 10px;
}
.next-nav .contents .conts .service li {
    display: inline-block;
    padding: 6px 8px;
    border: 1px solid #767676;
    border-radius: 15px;
    color: #767676;
    font-size: 16px;
    line-height: 1;
}
.next-nav .contents .conts .service li + li {
    margin-left: 5px;
}

/* ********************** Careers ********************** */
.careers-intro {
    overflow: hidden;
    width: 100%;
    min-height: 100vh;
}
.careers-intro-container {
    position: sticky;
    top: 0;
    left: 0;
}
.careers-intro-container .mask .article {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.careers-intro-container .mask .article.article01 {
    background-color: #c3d5dd;
}
.careers-intro-container .mask .article.article01 .background {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3840px;
    height: 3840px;
    margin: -1920px 0 0 -1920px;
    background: url(./../images/sub/careers/careers-bg01.jpg) no-repeat 50% 50%/100% auto;
    will-change: scale;
    transform: scale(0.42);
    transition: transform 0.6s ease;
    transition-delay: 0.5s;
}
.careers-intro-container .mask .article.article01 .background.is-on {
    transform: scale(1);
    transition-delay: 0s;
}
.careers-intro-container .mask .article.article02 {
    background-color: #000000;
}
.careers-intro-container .mask .article.article02 .background {
    background: #000 url(./../images/sub/careers/careers-bg02.jpg) no-repeat center/cover;
}
.careers-intro-container .mask .article.article03 {
    background-color: #000000;
}
.careers-intro-container .mask .article.article03 .background {
    background: #000 url(./../images/sub/careers/careers-bg03.jpg) no-repeat center/cover;
}
.careers-intro-container .mask .article.article04 {
    background-color: #000000;
}
.careers-intro-container .mask .article.article04 .background {
    background: #000 url(./../images/sub/careers/careers-bg04.jpg) no-repeat center/cover;
}
.careers-intro-container .mask .article .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.careers-intro-container .mask .article .dim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.6s ease;
    transition-delay: 0.5s;
}
.careers-intro-container .mask .article .dim.is-on {
    opacity: 1;
    transition-delay: 0s;
}
.careers-intro-container .mask .article .value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 24px;
    color: #fff;
    text-align: center;
}
.careers-intro-container .mask .article .value &gt; h3 {
    font-size: 60px;
    font-weight: 700;
    line-height: 90px;
}
.careers-intro-container .mask .article .value &gt; h3 &gt; .emp {
    color: #f68b1f;
}
.careers-intro-container .mask .article .value &gt; p {
    margin-top: 30px;
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
}
.careers-intro-container .mask .article.article01 .value {
    opacity: 0;
    transform: translate(-50%, -20%);
    transition: opacity 1s, transform 1s;
}
.careers-intro-container .mask .article.article01 .value.is-on {
    opacity: 1;
    transform: translate(-50%, -50%);
    transition-delay: 0.7s;
}
.careers-intro-container .mask .article.article02 {
    transform: translateY(100%);
    transition: transform 1s;
    transition-delay: 0.5s;
}
.careers-intro-container .mask .article.article02.is-on {
    transform: translateY(0);
    transition-delay: 0s;
}
.careers-intro-container .mask .article.article02 .value {
    opacity: 0;
    transform: translate(-50%, -20%);
    transition: opacity 1s, transform 1s;
}
.careers-intro-container .mask .article.article02 .value.is-on {
    opacity: 1;
    transform: translate(-50%, -50%);
    transition-delay: 0.7s;
}
.careers-intro-container .mask .article.article03 {
    transform: translateY(100%);
    transition: transform 1s;
    transition-delay: 0.5s;
}
.careers-intro-container .mask .article.article03.is-on {
    transform: translateY(0);
    transition-delay: 0s;
}
.careers-intro-container .mask .article.article03 .value {
    opacity: 0;
    transform: translate(-50%, -20%);
    transition: opacity 1s, transform 1s;
}
.careers-intro-container .mask .article.article03 .value.is-on {
    opacity: 1;
    transform: translate(-50%, -50%);
    transition-delay: 0.7s;
}
.careers-intro-container .mask .article.article04 {
    transform: translateY(100%);
    transition: transform 1s;
    transition-delay: 0.5s;
}
.careers-intro-container .mask .article.article04.is-on {
    transform: translateY(0);
    transition-delay: 0s;
}
.careers-intro-container .mask .article.article04 .value {
    opacity: 0;
    transform: translate(-50%, -20%);
    transition: opacity 1s, transform 1s;
}
.careers-intro-container .mask .article.article04 .value.is-on {
    opacity: 1;
    transform: translate(-50%, -50%);
    transition-delay: 0.7s;
}
.careers-intro-container .mask .indicator {
    position: absolute;
    top: 50%;
    right: 200px;
    transform: translateY(-50%);
}
.careers-intro-container .mask .indicator li {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 27px;
    text-align: center;
    opacity: 0.1;
}
.careers-intro-container .mask .indicator li + li {
    padding-top: 40px;
}
.careers-intro-container .mask .indicator li.is-on {
    border-bottom: 2px solid #ffffff;
    opacity: 1;
}

.careers {
    width: 1300px;
    margin: 250px auto 0;
    padding: 0 10px;
}
.careers_header h3 {
    margin-top: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 72px;
}
.careers_body {
    position: relative;
    margin-top: 60px;
}
.careers_body + .careers_header {
    margin-top: 250px;
}
.careers_body .spread {
    margin-top: 0;
}
.careers_body .spread .circle {
    border: 1px solid #f68b1f;
}
.careers_body .spread .circle dl dt {
    color: #000000;
}
.careers_body .spread .circle dl dd {
    margin-top: 36px;
    color: #000000;
}
.careers_body .block {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.careers_body .block_item {
    width: calc(33.3333333333% - 14px);
    min-height: 345px;
    padding: 20px 30px;
    border-radius: 24px;
    background-color: #ebebeb;
}
.careers_body .block_item h4 {
    margin-top: 15px;
    font-size: 20px;
    line-height: 30px;
}
.careers_body .block_item ul {
    margin-top: 10px;
}
.careers_body .block_item ul li {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.02em;
}
.careers_body .block_item ul li &gt; span {
    color: #666666;
    font-weight: 400;
}
.careers_body .block_item ul li + li {
    margin-top: 10px;
}
.careers_body.-step {
    margin-top: 85px;
}
.careers_body .step .flow {
    background-color: #ffffff;
}
.careers_body .step .guide {
    margin-top: 100px;
}
.careers_body .step .guide li {
    color: #767676;
    font-size: 16px;
    line-height: 25.6px;
}
.careers_body .step .link {
    display: flex;
    margin-top: 60px;
}
.careers_body .step .link .btn + .btn {
    margin-left: 40px;
}

.careers-space {
    width: 100%;
    max-width: 1920px;
    margin: 250px auto;
}
.careers-space .careers_header {
    width: 1300px;
    margin: 0 auto;
    padding: 0 10px;
}
.careers-space .careers_body {
    padding: 0 40px;
}
.careers-space .tile_group {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, auto);
}
.careers-space .tile_item {
    overflow: hidden;
    position: relative;
    border-radius: 24px;
}
.careers-space .tile_item .badge {
    position: absolute;
    top: 20px;
    left: 20px;
    height: 32px;
    padding: 5px 10px;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}
.careers-space .tile_item.-ver01 {
    grid-column: span 6;
    grid-row: span 1;
}
.careers-space .tile_item.-ver02 {
    grid-column: span 3;
}
.careers-space .tile_item.-ver03 {
    grid-column: span 4;
    grid-row: span 2;
}
.careers-space .tile_item.-ver04 {
    grid-column: span 2;
}
.careers-space .tile_item.-ver05 {
    grid-column: 5/7;
}
.careers-space .tile_item.-ver06 {
    grid-column: 7/13;
    grid-row: 2/4;
}

/* ********************** Conex us ********************** */
.conexus-info {
    width: 1300px;
    margin: 0 auto;
    padding: 0 10px;
}
.conexus-info_header {
    text-align: center;
}
.conexus-info_header .subject {
    font-size: 48px;
    font-weight: 700;
    line-height: 67.2px;
}
.conexus-info_header .subject + p {
    margin-top: 20px;
    font-size: 20px;
    line-height: 32px;
}
.conexus-info_form {
    margin-top: 120px;
}
.conexus-info_form h4 {
    font-size: 18px;
}
.conexus-info_form form {
    margin-top: 20px;
    padding: 60px 0 0;
    border-top: 2px solid #000000;
}
.conexus-info_form form legend {
    margin-bottom: 40px;
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
}
.conexus-info_form form .form-fieldset {
    display: flex;
    width: 100%;
    margin-top: 80px;
    padding: 60px 0 80px;
    border: 1px solid #c9c9c9;
    border-width: 1px 0 1px;
}
.conexus-info_form form .form-fieldset .form-field {
    display: block;
}
.conexus-info_form form .form-fieldset fieldset {
    width: 50%;
}
.conexus-info_form form .form-fieldset fieldset + fieldset {
    margin-left: 60px;
}
.conexus-info_form form .form-fieldset .terms {
    width: calc(100% - 1px);
    height: 270px;
    padding: 20px 20px;
    background-color: #ebebeb;
    border: 1px solid #c9c9c9;
}
.conexus-info_form form .form-fieldset .terms-wrap {
    color: #666;
}
.conexus-info_form form .form-fieldset .terms-wrap .subtitle {
    color: #000;
    font-size: 18px;
    font-weight: 700;
    line-height: 28.8px;
}
.conexus-info_form form .form-fieldset .terms-wrap .subtitle:nth-child(n+2) {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #c9c9c9;
}
.conexus-info_form form .form-fieldset .terms-wrap .subtitle + .text,
.conexus-info_form form .form-fieldset .terms-wrap .subtitle + ul {
    margin-top: 12px;
}
.conexus-info_form form .form-fieldset .terms-wrap .subtitle + .text + .itemtitle,
.conexus-info_form form .form-fieldset .terms-wrap .subtitle + ul + .itemtitle {
    margin-top: 12px;
}
.conexus-info_form form .form-fieldset .terms-wrap .subtitle + .text + .itemtitle.-sm,
.conexus-info_form form .form-fieldset .terms-wrap .subtitle + ul + .itemtitle.-sm {
    margin-top: 12px;
}
.conexus-info_form form .form-fieldset .terms-wrap .itemtitle {
    position: relative;
    padding-left: 12px;
    color: #666;
    font-size: 16px;
    font-weight: 700;
    line-height: 25.6px;
}
.conexus-info_form form .form-fieldset .terms-wrap .itemtitle::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #000;
}
.conexus-info_form form .form-fieldset .terms-wrap .itemtitle + .text {
    padding-left: 12px;
}
.conexus-info_form form .form-fieldset .terms-wrap .itemtitle + ul {
    padding-left: 12px;
}
.conexus-info_form form .form-fieldset .terms-wrap .itemtitle.-emp {
    color: #000;
}
.conexus-info_form form .form-fieldset .terms-wrap .itemtitle.-sm {
    color: #666;
    font-size: 16px;
    line-height: 25.6px;
}
.conexus-info_form form .form-fieldset .terms-wrap .itemtitle.-sm::before {
    display: none;
}
.conexus-info_form form .form-fieldset .terms-wrap .itemtitle + .itemtitle {
    margin-top: 12px;
}
.conexus-info_form form .form-fieldset .terms-wrap .text {
    font-size: 16px;
    line-height: 25.6px;
}
.conexus-info_form form .form-fieldset .terms-wrap .text + ul {
    margin-top: 12px;
}
.conexus-info_form form .form-fieldset .terms-wrap .text.-dot {
    position: relative;
    padding-left: 12px;
}
.conexus-info_form form .form-fieldset .terms-wrap .text.-dot::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #666;
}
.conexus-info_form form .form-fieldset .terms-wrap ul &gt; li {
    position: relative;
    padding-left: 12px;
    font-size: 16px;
    line-height: 25.6px;
}
.conexus-info_form form .form-fieldset .terms-wrap ul &gt; li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #666;
}
.conexus-info_form form .form-fieldset .terms-wrap ul &gt; li &gt; ol {
    margin: 12px 0;
}
.conexus-info_form form .form-fieldset .terms-wrap ul &gt; li &gt; .hyphen {
    margin: 12px 0;
}
.conexus-info_form form .form-fieldset .terms-wrap ul &gt; li &gt; .hyphen + span {
    display: block;
    margin: -12px 0 0;
}
.conexus-info_form form .form-fieldset .terms-wrap ul.hyphen &gt; li::before {
    width: 6px;
    height: 1px;
}
.conexus-info_form form .form-fieldset .terms-wrap ul + .itemtitle {
    margin-top: 12px;
}
.conexus-info_form form .form-fieldset .terms-wrap ol li {
    position: relative;
    padding-left: 24px;
    font-size: 16px;
    line-height: 25.6px;
}
.conexus-info_form form .form-fieldset .terms-wrap ol li::before {
    position: absolute;
    left: 0;
}
.conexus-info_form form .form-fieldset .terms-wrap ol li:nth-child(1)::before {
    content: "가.";
}
.conexus-info_form form .form-fieldset .terms-wrap ol li:nth-child(2)::before {
    content: "나.";
}
.conexus-info_form form .form-fieldset .terms-wrap ol li:nth-child(3)::before {
    content: "다.";
}
.conexus-info_form form .form-fieldset .terms-wrap ol li:nth-child(4)::before {
    content: "라.";
}
.conexus-info_form form .form-fieldset .terms-wrap table {
    width: 100%;
    table-layout: fixed;
    border-spacing: 0;
    margin-top: 20px;
}
.conexus-info_form form .form-fieldset .terms-wrap table caption {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.conexus-info_form form .form-fieldset .terms-wrap table thead {
    height: 40px;
    border-top: 2px solid #b9b9b9;
    border-bottom: 1px solid #b9b9b9;
    background-color: #d9d9d9;
    text-align: left;
}
.conexus-info_form form .form-fieldset .terms-wrap table thead th {
    padding: 0 20px;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    line-height: 25.6px;
}
.conexus-info_form form .form-fieldset .terms-wrap table tbody td {
    padding: 12px 20px;
    font-size: 16px;
    line-height: 25.6px;
    border-bottom: 1px solid #c9c9c9;
}
.conexus-info_form form .form-fieldset .terms + .form-checkbox {
    margin-top: 28px;
}
.conexus-info_form form .form-field {
    display: flex;
    gap: 30px 60px;
    flex-wrap: wrap;
}
.conexus-info_form form .form-field .form-basic {
    display: flex;
    width: calc(50% - 30px);
}
.conexus-info_form form .form-field .form-basic &gt; label {
    margin-top: 17px;
}
.conexus-info_form form .form-field .form-basic div {
    width: calc(100% - 130px);
}
.conexus-info_form form .form-field .form-basic div input {
    width: 100%;
    max-height: 60px;
}
.conexus-info_form form .form-project {
    display: flex;
    position: relative;
    width: 100%;
}
.conexus-info_form form .form-project + .form-project {
    margin-top: 30px;
}
.conexus-info_form form .form-project &gt; label {
    margin-top: 17px;
}
.conexus-info_form form .form-project div {
    width: calc(100% - 130px);
}
.conexus-info_form form .form-project div input {
    width: 100%;
    height: 60px;
}
.conexus-info_form form .form-project div textarea {
    display: block;
    width: 100%;
}
.conexus-info_form form .btn {
    width: 360px;
    margin: 80px auto 0;
    transition: all 0.5s;
}

.conex-map {
    width: 100%;
    height: 720px;
    margin-top: 250px;
    background-color: #c9c9c9;
}

.conexus-location {
    display: flex;
    width: 1300px;
    margin: 100px auto 0;
    padding: 0 10px;
}
.conexus-location h4 {
    flex: none;
    font-size: 48px;
    font-weight: 700;
    line-height: 72px;
}
.conexus-location ul {
    width: calc(100% - 487px);
    margin-left: 310px;
}
.conexus-location ul li {
    display: flex;
    font-size: 20px;
    line-height: 30px;
}
.conexus-location ul li span {
    display: inline-block;
    flex: none;
    width: 80px;
    margin-right: 40px;
    color: #767676;
    font-weight: 600;
}
.conexus-location ul li span + a {
    font-weight: 700;
}
.conexus-location ul li + li {
    margin-top: 20px;
}

/* Conex us 모달 */
.modal {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s, background-color 0.3s ease;
    z-index: 10;
    opacity: 1;
    pointer-events: auto;
}
.modal-content {
    width: 464px;
    padding: 48px 40px;
    border-radius: 24px;
    background-color: #fff;
    text-align: center;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.modal-content strong {
    display: block;
    margin-bottom: 20px;
    font-size: 32px;
    line-height: 48px;
}
.modal-content p {
    color: #666666;
    font-size: 16px;
    line-height: 24px;
}
.modal-content p + p {
    margin-top: 24px;
}
.modal-content .btn.-sm {
    width: 187px;
    margin: 40px auto 0;
}
.modal[hidden] {
    opacity: 0;
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0);
}
.modal[hidden] .modal-content {
    transform: translateY(10px);
    opacity: 0;
}

/* ********************** 개인정보처리방침 / 이메일무단수집거부 ********************** */
.terms-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 200px 0 250px;
}
.terms-wrapper.-center {
    text-align: center;
}
.terms-wrapper.-center .title + .subtitle {
    margin-top: 100px;
}
.terms-wrapper .title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
}
.terms-wrapper .title + .subtitle {
    margin-top: 120px;
}
.terms-wrapper .title + .subtext {
    margin-top: 20px;
}
.terms-wrapper .subtitle {
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
}
.terms-wrapper .subtitle:nth-child(n+3) {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #c9c9c9;
}
.terms-wrapper .subtitle + .text,
.terms-wrapper .subtitle + ul {
    margin-top: 10px;
}
.terms-wrapper .subtitle + .text + .itemtitle,
.terms-wrapper .subtitle + ul + .itemtitle {
    margin-top: 32px;
}
.terms-wrapper .subtitle + .text + .itemtitle.-sm,
.terms-wrapper .subtitle + ul + .itemtitle.-sm {
    margin-top: 18px;
}
.terms-wrapper .itemtitle {
    position: relative;
    padding-left: 12px;
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
}
.terms-wrapper .itemtitle::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #000;
}
.terms-wrapper .itemtitle + .text {
    padding-left: 12px;
}
.terms-wrapper .itemtitle + ul {
    padding-left: 12px;
}
.terms-wrapper .itemtitle.-sm {
    font-size: 18px;
    line-height: 28.8px;
}
.terms-wrapper .itemtitle.-sm::before {
    display: none;
}
.terms-wrapper .itemtitle + .itemtitle {
    margin-top: 18px;
}
.terms-wrapper .subtext {
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    text-align: center;
}
.terms-wrapper .subtext + .subtext {
    margin-top: 20px;
}
.terms-wrapper .text {
    font-size: 18px;
    line-height: 28.8px;
}
.terms-wrapper .text + ul {
    margin-top: 32px;
}
.terms-wrapper .text.-dot {
    position: relative;
    padding-left: 12px;
}
.terms-wrapper .text.-dot::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #000;
}
.terms-wrapper ul &gt; li {
    position: relative;
    padding-left: 12px;
    font-size: 18px;
    line-height: 28.8px;
}
.terms-wrapper ul &gt; li::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #000;
}
.terms-wrapper ul &gt; li &gt; ol {
    margin: 18px 0;
}
.terms-wrapper ul &gt; li &gt; .hyphen {
    margin: 18px 0;
}
.terms-wrapper ul &gt; li &gt; .hyphen + span {
    display: block;
    margin: -18px 0 0;
}
.terms-wrapper ul.hyphen &gt; li::before {
    width: 6px;
    height: 1px;
}
.terms-wrapper ul + .itemtitle {
    margin-top: 10px;
}
.terms-wrapper ol li {
    position: relative;
    padding-left: 24px;
    font-size: 18px;
    line-height: 28.8px;
}
.terms-wrapper ol li::before {
    position: absolute;
    left: 0;
}
.terms-wrapper ol li:nth-child(1)::before {
    content: "가.";
}
.terms-wrapper ol li:nth-child(2)::before {
    content: "나.";
}
.terms-wrapper ol li:nth-child(3)::before {
    content: "다.";
}
.terms-wrapper ol li:nth-child(4)::before {
    content: "라.";
}
.terms-wrapper table {
    width: 100%;
    table-layout: fixed;
    border-spacing: 0;
    margin-top: 20px;
}
.terms-wrapper table caption {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.terms-wrapper table thead {
    height: 48px;
    border-top: 2px solid #c9c9c9;
    border-bottom: 1px solid #c9c9c9;
    background-color: #f3f3f3;
    text-align: left;
}
.terms-wrapper table thead th {
    padding: 0 20px;
    font-size: 18px;
    font-weight: 700;
    line-height: 28.8px;
}
.terms-wrapper table tbody td {
    padding: 20px 20px;
    font-size: 18px;
    line-height: 28.8px;
    border-bottom: 1px solid #c9c9c9;
}
.terms-wrapper table + .subtitle {
    padding-top: 0 !important;
    border-top: none !important;
}
.terms-wrapper .terms-body {
    margin-top: 100px;
    padding-top: 100px;
    border-top: 1px solid #c9c9c9;
}

/* ********************** Sub_반응형 ********************** */
/* tab */
@media (max-width: 1320px) {
    /* 공통 */
    .common-intro .subject {
        margin-top: -217px;
    }
    .common-intro.careers-intro .subject {
        margin-top: -190px;
    }
    .common-intro .subject &gt; p {
        font-size: 48px;
        line-height: 72px;
    }
    .common-intro .subject &gt; span {
        margin-top: 12px;
        font-size: 18px;
        line-height: 28.8px;
    }
    .common-intro .mask {
        clip-path: circle(150px at 50% calc(50% + 60px));
    }
    .common-intro.careers-intro .mask {
        clip-path: circle(150px at 50% calc(50% + 103px));
    }
    .case {
        gap: 12px;
    }
    .case.-way li {
        width: calc(50% - 6px);
        min-height: auto;
    }
    .case.-point li {
        width: calc(50% - 6px);
        min-height: auto;
    }
    .case.-point li:first-child {
        margin-left: calc(50% + 6px);
    }
    .case.-customer {
        min-height: auto;
    }
    .case.-customer div {
        width: calc(50% - 6px);
        height: auto;
    }
    .spread {
        margin-top: 60px;
    }
    .spread .circle {
        width: 34.4827586207%;
    }
    .spread .circle h4,
    .spread .circle p {
        font-size: 24px;
        line-height: 38.4px;
    }
    .spread .circle dl dd {
        font-size: 16px;
        line-height: 24px;
    }
    /* About */
    .about-intro-container .mask .article .value .contents h3 {
        font-size: 40px;
        line-height: 56px;
    }
    .about-intro-container .mask .article .value .contents h3.lg {
        font-size: 48px;
        line-height: 72px;
    }
    .about-intro-container .mask .article .value .contents {
        top: calc(50% - 180px);
        width: 100%;
        min-width: 100%;
        padding: 0 40px;
    }
    .about-intro-container .mask .article .value .contents .toggle {
        margin: 32px auto 60px;
    }
    .about-intro-container .mask .article.article01 .background {
        width: 2840px;
        height: 2840px;
        margin: -1420px 0 0 -1420px;
    }
    .about-intro-container .mask .article.article02 .value .contents .connect {
        width: 330px;
        height: 330px;
        margin: 30px auto 0;
    }
    .about-intro-container .mask .article.article02 .value .contents .connect .data .app.app-insurance_01 {
        top: -15px;
    }
    .about-intro-container .mask .article.article02 .value .contents .connect .data .app.app-insurance_02 {
        top: 25px;
    }
    .about-intro-container .mask .article.article02 .value .contents .connect .data .app.app-insurance_03 {
        top: 250px;
    }
    .about-intro-container .mask .article.article02 .value .contents .connect .data .app.app-hds_01 {
        top: -5px;
    }
    .about-intro-container .mask .article.article02 .value .contents .connect .data .app.app-hds_02 {
        top: 36px;
    }
    .about-intro-container .mask .article.article02 .value .contents .connect .data .app.app-hds_03 {
        top: 246px;
    }
    .about-intro-container .mask .article.article02 .value .contents .connect .data_header &gt; h4 {
        width: 180px;
        height: 38px;
    }
    .about-intro-container .mask .article.article02 .value .contents .connect .data_header &gt; p {
        font-size: 24px;
        line-height: 36px;
    }
    .about-intro-container .mask .article.article02 .value .contents .indicator {
        top: 50%;
        right: 100px;
        transform: translateY(50px);
    }
    .about {
        width: 100%;
        padding: 0 40px;
    }
    .about_header h3, .about_header .title {
        font-size: 40px;
        line-height: 56px;
    }
    .about_header h3 + p, .about_header .title + p {
        margin-top: 10px;
    }
    .about_body {
        margin-top: 40px;
    }
    .about_body.-way {
        margin-top: 40px;
    }
    .about_body .way .subtitle p {
        margin-top: 5px;
    }
    .about_body .way .subtitle + .case {
        gap: 12px;
        margin-top: 20px;
    }
    .about_body .way .subtitle + .case + .subtitle {
        margin-top: 40px;
    }
    .about_body.-team {
        margin-top: 60px;
    }
    .about_body.-message {
        margin-top: 37px;
    }
    .about-history_container {
        width: 100%;
        padding: 0 40px;
    }
    .about-history .graph {
        width: 100%;
        margin: 0 auto;
    }
    .about_body .chart strong {
        margin: 0 auto 60px;
    }
    .about_body .chart strong::before {
        bottom: -60px;
        height: 60px;
    }
    .about_body .chart .list {
        display: block;
    }
    .about_body .chart .list .sub {
        width: 100%;
        min-height: auto;
    }
    .about_body .chart .list .wrapper + .wrapper {
        margin-top: 50px;
    }
    .about_body .chart .list .wrapper .subtitle {
        margin: 0;
        padding: 20px 0;
    }
    .about_body .chart .list .wrapper .subtitle::before {
        top: 0;
    }
    .about_body .chart .list .wrapper .subtitle.-sub01::after {
        top: 4px;
        right: 0;
        width: 100%;
    }
    .about_body .chart .list .wrapper .subtitle.-sub02::after,
    .about_body .chart .list .wrapper .subtitle.-sub03::after {
        top: 4px;
        left: 0;
        width: 100%;
    }
    .about_body .chart .list .group {
        gap: 6px;
    }
    .about_body .message {
        display: flex;
        align-items: center;
        flex-direction: column-reverse;
    }
    .about_body .message .text {
        width: 100%;
    }
    .about_body .message .photo {
        margin-left: 0;
    }
    .about_body .message .photo .img {
        width: 260px;
        height: 260px;
    }
    .about_body .message .photo .img .motion {
        top: 50px;
        left: 5px;
    }
    .about_body .message .photo .img + p {
        margin-top: 10px;
    }
    .about_body .message .text p.subtitle + p {
        margin-top: 20px;
    }
    .about_body .message .text p.subtitle + p + p {
        margin-top: 20px;
    }
    .about_body .finance div {
        display: block;
        position: relative;
        height: auto;
        padding: 30px 0;
    }
    .about_body .finance div p,
    .about_body .finance div ul {
        width: calc(100% - 187px);
    }
    .about_body .finance div ul {
        margin-top: 10px;
    }
    .about_body .finance div button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 0;
    }
    /* solutions */
    .solutions-intro-container .mask .article.article01 .background {
        width: 3000px;
        height: 3000px;
        margin: -1500px 0 0 -1500px;
    }
    .solutions-intro-container .mask .article .value &gt; h3 {
        font-size: 48px;
        line-height: 72px;
    }
    .solutions-intro-container .mask .article .value &gt; p {
        margin-top: 20px;
    }
    .solutions-intro-container .mask .indicator {
        top: 50%;
        right: auto;
        bottom: auto;
        left: 50%;
        transform: translate(-50%, -162px);
    }
    .solutions-intro-container .mask .indicator ul {
        display: flex;
        gap: 30px;
    }
    .solutions-intro-container .mask .indicator li + li {
        padding-top: 0;
    }
    .solutions-point-container {
        width: 100%;
        padding: 0 40px;
    }
    .solutions-point_header h3 {
        font-size: 48px;
        line-height: 72px;
    }
    .solutions-point_header h3 + p {
        margin-top: 10px;
    }
    .solutions-point_header .subtitle {
        margin-top: 10px;
    }
    .solutions-point_header .subtitle strong,
    .solutions-point_header .subtitle strong + p {
        margin-top: 20px;
    }
    .solutions-point_body {
        margin-top: 40px;
    }
    .solutions-point_body.-list {
        margin-top: 100px;
    }
    .solutions-point_body .circle {
        gap: 12px;
        flex-wrap: wrap;
    }
    .solutions-point_body .circle li {
        position: relative;
        width: calc(50% - 6px);
        aspect-ratio: auto;
        padding: 24px 30px;
        border-radius: 24px;
        text-align: left;
    }
    .solutions-point_body .circle li:last-child {
        width: 100%;
    }
    .solutions-point_body .circle li dl dd {
        margin: 5px 0 0;
    }
    .solutions-point_body .circle li img {
        position: absolute;
        top: 30px;
        right: 30px;
    }
    .solutions-point_body .list {
        margin-top: 20px;
    }
    .solutions-point_body .list ul li {
        display: block;
        padding: 30px 0;
    }
    .solutions-point_body .list ul li .title {
        width: 100%;
    }
    .solutions-point_body .list ul li .title p {
        margin-top: 0;
    }
    .solutions-point_body .list ul li p {
        margin-top: 10px;
        width: 100%;
    }
    .solutions-customer-container {
        width: 100%;
        padding: 0 40px;
    }
    .solutions-customer_header h3 {
        font-size: 40px;
        line-height: 56px;
    }
    .solutions-customer_header h3 + p,
    .solutions-customer_header p + h3 {
        margin-top: 10px;
    }
    .solutions-customer_body .tablist {
        margin: 60px 0 40px;
    }
    /* Works */
    .works-list_header h2 {
        font-size: 60px;
        line-height: 90px;
    }
    .works-list {
        width: 100%;
        padding: 0 40px;
    }
    .works-list_header h3 {
        margin: 60px 0 40px;
    }
    .works-list nav {
        margin: 60px 0 40px;
    }
    .works-list .list ul {
        margin: -40px 0 0 -40px;
    }
    .works-list .list ul li {
        margin: 40px 0 0 40px;
    }
    .works-list .list ul li a .info {
        display: block;
        margin-top: 20px;
    }
    .works-list .list ul li a .info p {
        width: 100%;
    }
    .works-list .list ul li a .info .service {
        margin-top: 10px;
    }
    .works-detail .detail {
        width: 100%;
        padding: 0 40px;
    }
    .works-detail h2 {
        font-size: 48px;
        line-height: 72px;
    }
    .works-detail .client {
        margin-top: 20px;
    }
    .works-detail .visual {
        margin: 60px 0;
    }
    .works-detail .overview {
        margin: 0 0 110px;
    }
    .works-detail .tv {
        padding: 150px 0;
    }
    .works-detail .tv .cf {
        width: 100%;
        padding: 0 40px;
    }
    .works-nav,
    .next-nav .contents .conts {
        width: 100%;
        padding: 0 40px;
    }
    .works-nav {
        height: 200px;
    }
    .next-nav {
        height: 460px;
    }
    /* Careers */
    .careers-intro-container .mask .article.article01 .background {
        width: 3000px;
        height: 3000px;
        margin: -1500px 0 0 -1500px;
    }
    .careers-intro-container .mask .article .value &gt; h3 {
        font-size: 48px;
        line-height: 72px;
    }
    .careers-intro-container .mask .article .value &gt; p {
        margin-top: 20px;
    }
    .careers-intro-container .mask .indicator {
        top: 50%;
        right: auto;
        bottom: auto;
        left: 50%;
        transform: translate(-50%, -162px);
    }
    .careers-intro-container .mask .indicator ul {
        display: flex;
        gap: 30px;
    }
    .careers-intro-container .mask .indicator li + li {
        padding-top: 0;
    }
    .careers {
        width: 100%;
        padding: 0 40px;
    }
    .careers_header h3 {
        font-size: 40px;
        line-height: 56px;
    }
    .careers_body {
        margin-top: 30px;
    }
    .careers_body.-step {
        margin-top: 60px;
    }
    .careers_body .block {
        gap: 12px;
    }
    .careers_body .block_item img {
        width: 60px;
        margin-left: auto;
    }
    .careers_body .block_item h4 {
        margin-top: 0;
    }
    .careers_body .block_item {
        width: calc(50% - 6px);
        min-height: auto;
        padding: 20px 20px;
    }
    .careers_body .block_item ul,
    .careers_body .block_item ul li + li {
        margin-top: 5px;
    }
    .careers_body .step .flow .motion {
        top: -4%;
        left: -1%;
        width: 2.6186%;
        height: auto;
        padding-bottom: 2.6186%;
    }
    .careers_body .step .flow ol li::after {
        top: 5%;
        width: 4.033%;
        height: auto;
        padding-bottom: 4.033%;
    }
    @keyframes flow {
        0% {
            left: -1%;
            opacity: 1;
        }
        9% {
            left: -1%;
        }
        18% {
            left: 19%;
        }
        27% {
            left: 19%;
        }
        36% {
            left: 39%;
        }
        45% {
            left: 39%;
        }
        56% {
            left: 59%;
        }
        63% {
            left: 59%;
        }
        72% {
            left: 79%;
        }
        81% {
            left: 79%;
            opacity: 1;
        }
        90% {
            left: 95%;
            opacity: 0;
        }
        95% {
            left: -1%;
            opacity: 0;
        }
        100% {
            left: -1%;
            opacity: 1;
        }
    }
    .careers_body .step .guide {
        margin-top: 60px;
    }
    .careers_body .step .link {
        margin-top: 40px;
    }
    .careers-space .careers_header {
        width: 100%;
        padding: 0 40px;
    }
    .careers-space .tile_group {
        gap: 6px;
    }
    /* Conex us */
    .conexus-info_header .subject,
    .conexus-location h4 {
        font-size: 40px;
        line-height: 56px;
    }
    .conexus-info {
        width: 100%;
        padding: 0 40px;
    }
    .conexus-location {
        width: 100%;
        margin: 50px auto 0;
        padding: 0 40px;
    }
    .conexus-info_form {
        margin-top: 60px;
    }
    .conexus-info_form form legend {
        margin-bottom: 20px;
    }
    .conexus-info_form form .form-field {
        gap: 20px;
    }
    .conexus-info_form form .form-field .form-basic {
        width: calc(50% - 10px);
    }
    .conexus-info_form form .form-project + .form-project {
        margin-top: 20px;
    }
    .conexus-info_form form .form-fieldset {
        margin-top: 50px;
        padding: 50px 0 50px;
    }
    .conexus-info_form form .form-fieldset fieldset + fieldset {
        margin-left: 20px;
    }
    .conexus-info_form form .form-fieldset .terms {
        height: 250px;
    }
    .conexus-info_form form .btn {
        margin: 50px auto 0;
    }
    .conex-map {
        height: 520px;
        margin-top: 110px;
    }
    /* 개인정보처리방침 / 이메일무단수집거부 */
    .terms-wrapper .title {
        font-size: 40px;
        line-height: 56px;
    }
    .terms-wrapper {
        width: 100%;
        padding: 200px 40px 250px;
    }
    .terms-wrapper .terms-body {
        margin-top: 40px;
        padding-top: 40px;
    }
    .terms-wrapper .subtitle:nth-child(n+3) {
        margin-top: 40px;
        padding-top: 40px;
    }
    .terms-wrapper .subtitle + .text + .itemtitle, .terms-wrapper .subtitle + ul + .itemtitle,
    .terms-wrapper .text + ul {
        margin-top: 24px;
    }
    .terms-wrapper.-center .title + .subtitle {
        margin-top: 60px;
    }
}
/* mo */
@media (max-width: 1024px) {
    /* 공통 */
    .common-intro .subject,
    .common-intro.solutions-intro .subject,
    .common-intro.careers-intro .subject {
        height: auto;
        margin-top: -136px;
    }
    .common-intro .subject &gt; p {
        font-size: 28px;
        line-height: 39.2px;
    }
    .common-intro .subject &gt; span {
        font-size: 16px;
        line-height: 25.6px;
    }
    .common-intro .mask,
    .common-intro.solutions-intro .mask,
    .common-intro.careers-intro .mask {
        clip-path: circle(90px at 50% calc(50% + 64px));
    }
    .case.-way li {
        width: 100%;
        padding: 24px 20px;
        border-radius: 12px;
    }
    .case li, .case div {
        padding: 24px 20px;
        border-radius: 12px;
    }
    .case li dl dt, .case div dl dt {
        font-size: 16px;
        line-height: 24px;
    }
    .case li dl dd, .case div dl dd {
        padding-top: 5px;
        font-size: 14px;
        line-height: 24px;
    }
    .case.-point li:first-child {
        width: 100%;
        margin-left: 0;
    }
    .case.-point li {
        width: 100%;
    }
    .case.-customer div {
        width: 100%;
    }
    .case.-customer &gt; div.customer {
        background: #f68b1f url(./../images/common/icon/icon-down.svg) no-repeat left 20px bottom 24px/20px auto;
    }
    .case.-customer &gt; div.customer p {
        padding-bottom: 40px;
        font-size: 16px;
        line-height: 24px;
    }
    .spread .circle {
        width: 100%;
        max-width: 303px;
    }
    .spread .circle.circle01 {
        position: static;
        margin: 0 auto;
    }
    .spread .circle.circle02 {
        margin: -27px auto 0;
    }
    .spread .circle.circle03 {
        position: static;
        margin: -27px auto 0;
    }
    .spread .circle dl dt {
        margin-top: 0;
        font-size: 16px;
        line-height: 25.6px;
    }
    .spread .circle dl dd {
        margin-top: 20px;
        padding: 0 32px;
        font-size: 14px;
        line-height: 22.4px;
    }
    /* About */
    .about-intro-container .mask .article.article01 .background {
        width: 1024px;
        height: 1024px;
        margin: -512px 0 0 -512px;
        background: url(./../images/sub/about/about-bg_mo.jpg?ver=241211) no-repeat 50% 50%/100% auto;
    }
    .about-intro-container .mask .article .value .contents {
        top: calc(50% - 130px);
        padding: 0 24px;
    }
    .about-intro-container .mask .article .value .contents h3 {
        font-size: 24px;
        line-height: 33.6px;
    }
    .about-intro-container .mask .article .value .contents h3.lg {
        font-size: 32px;
        line-height: 44.8px;
    }
    .about-intro-container .mask .article .value .contents p {
        font-size: 16px;
        line-height: 25.6px;
    }
    .about-intro-container .mask .article.article02 .value .contents .indicator {
        position: static;
        margin: 60px 0 0;
        transform: none;
    }
    .about-intro-container .mask .article.article02 .value .contents .indicator ul {
        display: flex;
        justify-content: center;
    }
    .about-intro-container .mask .article.article02 .value .contents .indicator li + li {
        margin: 0 0 0 30px;
        padding: 0 0 0 0;
    }
    .about-intro-container .mask .article.article02 .value .contents .connect {
        width: 285px;
        height: 285px;
        margin: 50px auto 0;
    }
    .about-intro-container .mask .article.article02 .value .contents .connect .data_header &gt; h4 {
        width: 153px;
        height: 32px;
    }
    .about-intro-container .mask .article.article02 .value .contents .connect .data_header &gt; p {
        font-size: 16px;
        line-height: 24px;
    }
    .about-intro-container .mask .article.article02 .value .contents .connect .data .app {
        padding: 8.5px 10px 8.5px 38px;
    }
    .about-intro-container .mask .article.article02 .value .contents .connect .data .app &gt; p {
        font-size: 12px;
        line-height: 19.2px;
    }
    .about-intro-container .mask .article.article02 .value .contents .connect .data .app.app-insurance_01 {
        top: 38px;
        right: -23px;
        background: #f68b1f url(./../images/sub/about/about-insurance_icon01.png) no-repeat left 12px center/20px auto;
    }
    .about-intro-container .mask .article.article02 .value .contents .connect .data .app.app-insurance_02 {
        top: -5px;
        left: -13px;
        background: #f68b1f url(./../images/sub/about/about-insurance_icon02.png) no-repeat left 12px center/20px auto;
    }
    .about-intro-container .mask .article.article02 .value .contents .connect .data .app.app-insurance_03 {
        top: 207px;
        left: 3px;
        right: auto;
        background: #f68b1f url(./../images/sub/about/about-insurance_icon03.png) no-repeat left 12px center/20px auto;
    }
    .about-intro-container .mask .article.article02 .value .contents .connect .data .app.app-hds_01 {
        top: 19px;
        left: auto;
        right: 5px;
        background: #f68b1f url(./../images/sub/about/about-hds_icon01.svg) no-repeat left 10px center/24px auto;
    }
    .about-intro-container .mask .article.article02 .value .contents .connect .data .app.app-hds_02 {
        top: 44px;
        left: -11px;
        right: auto;
        background: #f68b1f url(./../images/sub/about/about-hds_icon02.svg) no-repeat left 10px center/24px auto;
    }
    .about-intro-container .mask .article.article02 .value .contents .connect .data .app.app-hds_03 {
        top: 198px;
        left: auto;
        right: 7px;
        background: #f68b1f url(./../images/sub/about/about-hds_icon03.svg) no-repeat left 10px center/24px auto;
    }
    .about-intro-container .mask .article.article02 .value .contents .connect .data .app::before {
        width: 14px;
        margin-left: -7px;
    }
    .about-intro-container .mask .article .value .contents .toggle {
        width: 144px;
        height: 36px;
        border-radius: 18px;
    }
    .about-intro-container .mask .article .value .contents .toggle &gt; span {
        width: 36px;
        height: 36px;
    }
    @keyframes toggle {
        0%, 10% {
            left: 0;
        }
        40%, 60% {
            left: calc(100% - 36px);
        }
        90%, 100% {
            left: 0;
        }
    }
    .about {
        margin: 110px auto 0;
        padding: 0 24px;
    }
    .about:last-child {
        margin-bottom: 110px;
    }
    .about_header .title {
        font-size: 24px;
        line-height: 33.6px;
    }
    .about_header h3 {
        font-size: 32px;
        line-height: 48px;
    }
    .about_header h3 + p,
    .about_header .title + p {
        font-size: 16px;
        line-height: 25.6px;
    }
    .about_body .way .subtitle h4 {
        font-size: 18px;
        line-height: 27px;
    }
    .about_body .way .subtitle p {
        font-size: 16px;
        line-height: 25.6px;
    }
    .about_body .way .case.-way li dl dt.hit {
        font-size: 24px;
        line-height: 36px;
    }
    .about_body .way .case.-way li dl dt.hit &gt; span {
        font-size: 16px;
        line-height: 24px;
    }
    .about-history {
        margin: 110px auto 0;
        padding: 110px 0;
    }
    .about-history_container {
        padding: 0 24px;
    }
    .about-history .graph {
        margin: 40px auto 0;
    }
    .about_body .chart strong {
        width: 160px;
        height: 160px;
        font-size: 16px;
    }
    .about_body .chart .list .wrapper .subtitle {
        font-size: 16px;
    }
    .about_body .chart .list .group {
        flex-wrap: wrap;
    }
    .about_body .chart .list .sub {
        width: calc(50% - 3px);
        padding: 20px 15px;
        border-radius: 12px;
    }
    .about_body .chart .list .sub:nth-child(3) {
        width: 100%;
    }
    .about_body .chart .list .sub:nth-child(3) &gt; .detail {
        display: flex;
        flex-wrap: wrap;
    }
    .about_body .chart .list .sub:nth-child(3) &gt; .detail li {
        width: 50%;
    }
    .about_body .chart .list .wrapper ul li .detailtitle {
        font-size: 14px;
        line-height: 22.4px;
    }
    .about_body .chart .list .wrapper ul li .detail {
        margin-top: 5px;
    }
    .about_body .chart .list .wrapper ul li .detail li,
    .about_body .chart .list .sub.-only {
        width: 100%;
        font-size: 14px;
        line-height: 22.4px;
    }
    .about_body + .about_header {
        margin-top: 110px;
    }
    .about_body .message .photo .img {
        width: 200px;
        height: 200px;
    }
    .about_body .message .photo .img + p {
        font-size: 12px;
    }
    .about_body .message .photo .img .motion {
        width: 16px;
        height: 16px;
        top: 45px;
        left: 5px;
    }
    .about_body .message .text p.subtitle {
        font-size: 18px;
        line-height: 28.8px;
    }
    .about_body .message .text p {
        font-size: 16px;
    }
    .about_body .finance div p {
        width: 100%;
        padding-right: 0;
        font-size: 16px;
        line-height: 24px;
    }
    .about_body .finance div ul {
        width: 100%;
    }
    .about_body .finance div ul li {
        width: 100%;
        padding-right: 0;
        font-size: 14px;
        line-height: 22.4px;
    }
    .about_body .finance div button {
        position: static;
        transform: none;
        width: 100%;
        margin: 30px 0 0;
    }
    /* Solutions */
    .solutions-intro-container .mask .article.article01 .background {
        width: 1024px;
        height: 1024px;
        margin: -512px 0 0 -512px;
        background: #000 url(./../images/sub/solutions/solutions-bg01_mo.jpg?ver=241211) no-repeat center/cover;
    }
    .solutions-intro-container .mask .article .value &gt; h3 {
        font-size: 32px;
        line-height: 44.8px;
    }
    .solutions-intro-container .mask .article .value &gt; p {
        font-size: 16px;
        line-height: 25.6px;
    }
    .solutions-intro-container .mask .article.article02 .background {
        background: #000 url(./../images/sub/solutions/solutions-bg02_mo.jpg) no-repeat center/cover;
    }
    .solutions-intro-container .mask .article.article03 .background {
        background: #000 url(./../images/sub/solutions/solutions-bg03_mo.jpg) no-repeat center/cover;
    }
    .solutions-intro-container .mask .article.article01 .value,
    .solutions-intro-container .mask .article.article02 .value,
    .solutions-intro-container .mask .article.article03 .value {
        height: 270px;
    }
    .solutions-intro-container .mask .article.article01 .value.is-on,
    .solutions-intro-container .mask .article.article02 .value.is-on,
    .solutions-intro-container .mask .article.article03 .value.is-on {
        transform: translate(-50%, -90px);
    }
    .solutions-intro-container .mask .indicator li {
        font-size: 14px;
        line-height: 21px;
    }
    .solutions-point-container {
        margin: 110px auto 0;
        padding: 0 24px;
    }
    .solutions-point_header h3 {
        font-size: 32px;
        line-height: 44.8px;
    }
    .solutions-point_header h3 + p {
        font-size: 16px;
        line-height: 25.6px;
    }
    .solutions-point_body .circle li {
        display: flex;
        align-items: center;
        width: 100%;
        border-radius: 12px;
    }
    .solutions-point_body .circle li dl dt {
        font-size: 16px;
        line-height: 25.6px;
    }
    .solutions-point_body .circle li dl dd {
        width: calc(100% - 40px);
        font-size: 14px;
        line-height: 19.6px;
    }
    .solutions-point_body .circle li img {
        position: static;
        width: 60px;
        height: 60px;
        margin: 0;
        margin-left: auto;
    }
    .solutions-point_body .diagram {
        margin-top: 30px;
    }
    .solutions-point_body .diagram img.icon {
        width: 30px;
        margin-bottom: 30px;
    }
    .solutions-point_body + .solutions-point_header {
        margin-top: 110px;
    }
    .solutions-point_body h4.points {
        display: inline-block;
        position: static;
        margin-bottom: 20px;
        padding-right: 30px;
        background: url(./../images/common/icon/icon-down.svg) no-repeat right center/20px auto;
        font-size: 18px;
        line-height: 28.8px;
    }
    .solutions-point_header .subtitle {
        font-size: 16px;
        line-height: 25.6px;
    }
    .solutions-point_body.-list {
        margin-top: 40px;
    }
    .solutions-point_body h4 {
        font-size: 18px;
        line-height: 28.8px;
    }
    .solutions-point_body .list ul li .title p {
        font-size: 18px;
        line-height: 27px;
    }
    .solutions-point_body .list ul li p {
        font-size: 16px;
        line-height: 25.6px;
    }
    .solutions-customer {
        margin-top: 110px;
        padding: 110px 0;
        background: #000000 url(./../images/sub/solutions/solutions-bg04_mo.png) no-repeat top center/100% auto;
    }
    .solutions-customer-container {
        padding: 0 24px;
    }
    .solutions-customer_header h3 {
        font-size: 24px;
        line-height: 33.6px;
    }
    .solutions-customer_header p {
        font-size: 16px;
        line-height: 25.6px;
    }
    .solutions-customer_body .tablist {
        gap: 20px;
    }
    .solutions-customer_body .tablist &gt; button {
        font-size: 14px;
        line-height: 21px;
    }
    .solutions-customer_body + .solutions-customer_header {
        margin-top: 110px;
    }
    /* Works */
    .works-list {
        padding: 0 24px;
    }
    .works-list_header h2 {
        font-size: 48px;
        line-height: 72px;
    }
    .works-list_header h3 {
        font-size: 20px;
        line-height: 32px;
    }
    .works-list nav ul {
        gap: 30px;
    }
    .works-list nav ul li button {
        font-size: 16px;
        line-height: 24px;
    }
    .works-list .list ul {
        width: calc(100% + 48px);
        margin: -40px 0 0 -24px;
    }
    .works-list .list ul li {
        width: calc(100% - 48px);
        margin: 40px 0 0 24px;
    }
    .works-list .list ul li a .thumb {
        border-radius: 12px;
    }
    .works-list .list ul li a .thumb::before {
        padding-bottom: 100%;
    }
    .works-list .list ul li a .info p {
        font-size: 16px;
        line-height: 24px;
    }
    .works-list .list ul li a .info .service span {
        padding: 3px 6px;
        font-size: 12px;
    }
    .works-detail .detail {
        padding: 0 24px;
    }
    .works-detail h2 {
        font-size: 32px;
        line-height: 48px;
    }
    .works-detail .client &gt; ul {
        flex-direction: column;
        gap: 0;
    }
    .works-detail .client &gt; ul &gt; li {
        width: 100%;
    }
    .works-detail .client &gt; ul &gt; li + li {
        margin-top: 15px;
    }
    .works-detail .client &gt; ul &gt; li span {
        min-width: 70px;
        font-size: 16px;
        line-height: 24px;
    }
    .works-detail .client &gt; ul &gt; li p {
        width: calc(100% - 100px);
        font-size: 16px;
        line-height: 24px;
    }
    .works-detail .client &gt; ul &gt; li .service {
        width: 100%;
        margin-left: 0;
    }
    .works-detail .client &gt; ul &gt; li .service li button {
        padding: 2px 7.5px;
        font-size: 12px;
        line-height: 18px;
    }
    .works-detail .overview {
        display: block;
    }
    .works-detail .overview span {
        font-size: 18px;
        line-height: 27px;
    }
    .works-detail .overview p {
        margin-top: 10px;
        width: 100%;
        font-size: 16px;
        line-height: 25.6px;
    }
    .works-detail .overview {
        margin: 0 0 80px;
    }
    .works-detail .tv {
        padding: 60px 0 80px;
    }
    .works-detail .tv .cf {
        padding: 0 0;
    }
    .works-detail .tv .cf .iframe + .iframe {
        margin-top: 20px;
    }
    .works-nav {
        height: 104px;
        padding: 0 24px;
    }
    .works-nav .list {
        font-size: 16px;
        line-height: 24px;
    }
    .next-nav {
        height: 210px;
    }
    .next-nav .contents .conts span {
        font-size: 16px;
        line-height: 24px;
    }
    .next-nav .contents .conts p {
        margin-top: 8px;
        font-size: 16px;
        line-height: 24px;
    }
    .next-nav .contents .conts .service {
        margin-top: 8px;
    }
    .next-nav .contents .conts .service li {
        padding: 4px 6px;
        font-size: 12px;
    }
    /* Careers */
    .careers-intro-container .mask .article.article01 .background {
        width: 1024px;
        height: 1024px;
        margin: -512px 0 0 -512px;
        background: #000 url(./../images/sub/careers/careers-bg01_mo.jpg) no-repeat center/cover;
    }
    .careers-intro-container .mask .article .value &gt; h3 {
        font-size: 32px;
        line-height: 44.8px;
    }
    .careers-intro-container .mask .article .value &gt; p {
        font-size: 16px;
        line-height: 25.6px;
    }
    .careers-intro-container .mask .article.article02 .background {
        background: #000 url(./../images/sub/careers/careers-bg02_mo.jpg) no-repeat center/cover;
    }
    .careers-intro-container .mask .article.article03 .background {
        background: #000 url(./../images/sub/careers/careers-bg03_mo.jpg) no-repeat center/cover;
    }
    .careers-intro-container .mask .article.article04 .background {
        background: #000 url(./../images/sub/careers/careers-bg04_mo.jpg) no-repeat center/cover;
    }
    .careers-intro-container .mask .article.article01 .value,
    .careers-intro-container .mask .article.article02 .value,
    .careers-intro-container .mask .article.article03 .value,
    .careers-intro-container .mask .article.article04 .value {
        height: 270px;
    }
    .careers-intro-container .mask .article.article01 .value.is-on,
    .careers-intro-container .mask .article.article02 .value.is-on,
    .careers-intro-container .mask .article.article03 .value.is-on,
    .careers-intro-container .mask .article.article04 .value.is-on {
        transform: translate(-50%, -90px);
    }
    .careers-intro-container .mask .indicator li {
        font-size: 14px;
        line-height: 21px;
    }
    .careers {
        margin: 110px auto 0;
        padding: 0 24px;
    }
    .careers_header h3 {
        font-size: 24px;
        line-height: 36px;
    }
    .careers_body + .careers_header {
        margin-top: 110px;
    }
    .careers_body .block_item {
        width: 100%;
        padding: 15px 20px 20px;
        border-radius: 12px;
    }
    .careers_body .block_item h4 {
        font-size: 16px;
        line-height: 24px;
    }
    .careers_body .block_item ul li {
        font-size: 14px;
        line-height: 21px;
    }
    .careers_body .step .guide li {
        font-size: 14px;
        line-height: 22.4px;
    }
    .careers_body .step .link {
        display: block;
    }
    .careers_body .step .link .btn + .btn {
        margin: 20px 0 0 0;
    }
    .careers-space {
        max-width: 100%;
        margin: 110px auto;
    }
    .careers-space .tile_item {
        border-radius: 12px;
    }
    .careers-space .tile_item .badge {
        top: 5px;
        left: 5px;
        height: 20px;
        padding: 2px 5px;
        font-size: 10px;
    }
    .careers-space .careers_header,
    .careers-space .careers_body {
        padding: 0 24px;
    }
    .careers-space .tile_item.-ver01 {
        grid-column: span 12;
        grid-row: span 1;
    }
    .careers-space .tile_item.-ver02 {
        grid-column: span 6;
    }
    .careers-space .tile_item.-ver03 {
        grid-column: span 8;
        grid-row: span 2;
    }
    .careers-space .tile_item.-ver04 {
        grid-column: span 4;
    }
    .careers-space .tile_item.-ver05 {
        grid-column: 13/9;
    }
    .careers-space .tile_item.-ver06 {
        grid-column: 1/13;
        grid-row: 5/6;
    }
    /* Conex us */
    .conexus-info {
        padding: 0 24px;
    }
    .conexus-info_header .subject, .conexus-location h4 {
        font-size: 24px;
        line-height: 33.6px;
    }
    .conexus-info_header .subject + p {
        font-size: 16px;
        line-height: 25.6px;
    }
    .conexus-info_form h4 {
        font-size: 16px;
    }
    .conexus-info_form form {
        padding: 50px 0 0;
    }
    .conexus-info_form form legend {
        font-size: 18px;
        line-height: 27px;
    }
    .conexus-info_form form .form-field .form-basic {
        flex-direction: column;
        width: 100%;
    }
    .conexus-info_form form .form-field .form-basic &gt; label {
        margin-top: 0;
    }
    .conexus-info_form form .form-field .form-basic div {
        width: 100%;
        margin-top: 10px;
    }
    .conexus-info_form form .form-field .form-basic div input {
        max-height: 48px;
    }
    .conexus-info_form form .form-fieldset {
        flex-direction: column;
    }
    .conexus-info_form form .form-fieldset fieldset {
        width: 100%;
    }
    .conexus-info_form form .form-fieldset fieldset:first-child {
        padding-bottom: 50px;
        border-bottom: 1px solid #c9c9c9;
    }
    .conexus-info_form form .form-fieldset fieldset + fieldset {
        margin: 50px 0 0 0;
    }
    .conexus-info_form form .form-project {
        display: block;
    }
    .conexus-info_form form .form-project &gt; label {
        margin-top: 0;
    }
    .conexus-info_form form .form-project div {
        margin-top: 10px;
        width: 100%;
    }
    .conexus-info_form form .form-fieldset .terms {
        width: 100%;
        height: 280px;
        padding: 15px 15px;
    }
    .conexus-info_form form .form-fieldset .terms-wrap .subtitle {
        font-size: 16px;
        line-height: 25.6px;
    }
    .conexus-info_form form .form-fieldset .terms-wrap .subtitle + .text + .itemtitle,
    .conexus-info_form form .form-fieldset .terms-wrap .subtitle + ul + .itemtitle {
        margin-top: 12px;
    }
    .conexus-info_form form .form-fieldset .terms-wrap .text,
    .conexus-info_form form .form-fieldset .terms-wrap .itemtitle,
    .conexus-info_form form .form-fieldset .terms-wrap ul &gt; li,
    .conexus-info_form form .form-fieldset .terms-wrap ol li,
    .conexus-info_form form .form-fieldset .terms-wrap .itemtitle.-sm,
    .conexus-info_form form .form-fieldset .terms-wrap table thead th,
    .conexus-info_form form .form-fieldset .terms-wrap table tbody td {
        font-size: 14px;
        line-height: 22.4px;
    }
    .conexus-info_form form .form-fieldset .terms-wrap table thead th {
        padding: 0 0 0 12px;
    }
    .conexus-info_form form .form-fieldset .terms-wrap table tbody td {
        padding: 12px 0 12px 12px;
    }
    .conexus-info_form form .form-fieldset .terms + .form-checkbox {
        margin-top: 50px;
    }
    .conexus-info_form form .btn {
        width: 100%;
    }
    .conex-map {
        height: 300px;
    }
    .conexus-location {
        display: block;
        padding: 0 24px;
    }
    .conexus-location ul {
        width: 100%;
        margin: 20px 0 0 0;
    }
    .conexus-location ul li {
        font-size: 16px;
        line-height: 24px;
    }
    .conexus-location ul li + li {
        margin-top: 10px;
    }
    .conexus-location ul li span {
        width: 70px;
        margin-right: 0;
    }
    /* Conex us 모달 */
    .modal-content {
        width: 100%;
        max-width: 327px;
        margin: 0 24px;
        padding: 40px 15px;
        border-radius: 12px;
    }
    .modal-content strong {
        margin-bottom: 10px;
        font-size: 24px;
        line-height: 48px;
    }
    .modal-content .btn.-sm {
        width: 142px;
        margin: 30px auto 0;
        padding: 0 0 0 24px;
    }
    /* 개인정보처리방침 / 이메일무단수집거부 */
    .terms-wrapper {
        padding: 110px 24px;
    }
    .terms-wrapper .title {
        font-size: 32px;
        line-height: 44.8px;
    }
    .terms-wrapper .subtitle {
        font-size: 18px;
        line-height: 28.8px;
    }
    .terms-wrapper .subtext,
    .terms-wrapper .text,
    .terms-wrapper .subtitle + .text + .itemtitle, .terms-wrapper .subtitle + ul + .itemtitle,
    .terms-wrapper .itemtitle,
    .terms-wrapper ul &gt; li,
    .terms-wrapper ol li,
    .terms-wrapper .itemtitle.-sm {
        font-size: 16px;
        line-height: 25.6px;
    }
    .terms-wrapper table thead {
        height: 40px;
    }
    .terms-wrapper table thead th {
        padding: 0 12px;
        font-size: 16px;
        line-height: 25.6px;
    }
    .terms-wrapper table tbody td {
        padding: 12px 12px;
        font-size: 16px;
        line-height: 25.6px;
    }
    .terms-wrapper table tbody td:first-child {
        vertical-align: top;
    }
}
@media (max-width: 360px) {
    .about-intro-container .mask .article.article01 .background.is-on {
        transform: scale(0.85);
    }
    .about-intro-container .mask .article.article02 .value .contents .connect .data .app.app-insurance_01 {
        right: -10px;
    }
    .about_body .chart .list {
        white-space: normal;
    }
}</pre></body></html>