/* 
---------------------------------------------
                Sub 0101
--------------------------------------------- 
*/
body {
    background: var(--black-100);
}

/* cont1 */
.cont1 {
    position: relative;
    overflow: hidden;
    z-index: 0;
    --line-offset: 160px;
}

.cont1 .line {
    position: absolute;
    left: 50%;
    top: 25%;
    width: min(1920px, 100vw);
    height: auto;
    transform: translateX(-50%);
    pointer-events: none;
    display: block;
}

.cont1 .container {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
}

.cont1 .visual {
    width: min(1128px, 100%);
    aspect-ratio: 1128 / 536;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: var(--black-100);
    z-index: 1;
}

.cont1 .visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cont1 .visual::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60%;
    background: linear-gradient(180deg, rgba(250, 250, 250, 0) 0%, var(--black-100) 100%);
    z-index: 1;
    pointer-events: none;
}

.cont1 .headline {
    width: min(920px, 100%);
    margin-top: -80px;
    text-align: center;
    color: #3C3834;
    font-size: 94px;
    font-family: var(--font-en);
    font-weight: 700;
    line-height: 1.2;
    white-space: pre-line;
    position: relative;
    z-index: 3;
}

.cont1 .desc {
    width: min(700px, 100%);
    color: var(--black-900);
    font-size: var(--font-xl);
    font-weight: 500;
    line-height: 1.6;
    word-break: keep-all;
    white-space: pre-line;
    position: relative;
    z-index: 3;
}

@media (max-width: 1440px) {
    .cont1 {
        --line-offset: 150px;
    }

    .cont1 .container {
        gap: 26px;
    }

    .cont1 .headline {
        font-size: 80px;
        margin-top: -70px;
    }
}

@media (max-width: 1280px) {
    .cont1 {
        --line-offset: 140px;
    }

    .cont1 .container {
        gap: 24px;
    }

    .cont1 .headline {
        font-size: 72px;
        margin-top: -64px;
    }

    .cont1 .desc {
        font-size: var(--font-lg);
    }
}

@media (max-width: 1024px) {
    .cont1 {
        --line-offset: 120px;
    }

    .cont1 .headline {
        font-size: 60px;
        margin-top: -52px;
    }

    .cont1 .desc {
        font-size: var(--font-md);
    }
}

@media (max-width: 768px) {
    .cont1 {
        --line-offset: 100px;
    }

    .cont1 .container {
        gap: 20px;
    }

    .cont1 .headline {
        font-size: 42px;
        margin-top: -36px;
    }

    .cont1 .desc {
        font-size: var(--font-base);
    }
}

@media (max-width: 480px) {
    .cont1 {
        --line-offset: 80px;
    }

    .cont1 .container {
        gap: 16px;
    }

    .cont1 .headline {
        font-size: 34px;
        margin-top: -24px;
    }

    .cont1 .desc {
        font-size: var(--font-base);
    }
}

/* cont 2 */
.cont2 {
    background: url("../../img/company/bg01.jpg") center/cover no-repeat;
}

.cont2 .container {
    min-height: 960px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cont2 .copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 60px;
}

.cont2 .head {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cont2 .eyebrow {
    color: var(--black-300);
    font-family: var(--font-en);
    font-size: var(--font-2xl);
    font-weight: 700;
    line-height: 1.2;
}

.cont2 .headline {
    color: var(--white);
    font-size: var(--font-headline46);
    font-weight: 700;
    line-height: 1.5;
}

.cont2 .desc {
    color: var(--white);
    font-size: var(--font-xl);
    font-weight: 500;
    line-height: 1.6;
    word-break: keep-all;
}

.cont2 .values {
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.cont2 .value {
    --size: 243px;
    --ring: 285px;
    position: relative;
    width: var(--size);
    height: var(--size);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px dotted var(--white-50);
    box-shadow: 0 0 54px rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    isolation: isolate;
}

.cont2 .value::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--ring);
    height: var(--ring);
    border-radius: 50%;
    border: 2px dotted var(--white-50);
    box-shadow: 0 0 54px rgba(255, 255, 255, 0.16);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.cont2 .label {
    color: var(--white-60);
    font-family: var(--font-en);
    font-size: var(--font-sm);
    font-weight: 600;
    line-height: 1.2;
}

.cont2 .name {
    color: white;
    font-size: var(--font-2xl);
    font-weight: 600;
    line-height: 1.6;
}

@media (max-width: 1440px) {
    .cont2 .container {
        min-height: auto;
        padding: 140px 60px 120px;
        gap: 80px;
    }

    .cont2 .copy {
        gap: 50px;
    }

    .cont2 .headline {
        font-size: 40px;
    }

    .cont2 .values {
        gap: 32px;
    }

    .cont2 .value {
        --size: 220px;
        --ring: 260px;
    }
}

@media (max-width: 1280px) {
    .cont2 .container {
        min-height: auto;
        padding: 120px 50px 110px;
    }

    .cont2 .eyebrow {
        font-size: var(--font-xl);
    }

    .cont2 .values {
        gap: 28px;
    }

    .cont2 .value {
        --size: 200px;
        --ring: 240px;
    }
}

@media (max-width: 1024px) {
    .cont2 .container {
        padding: 100px 40px 90px;
    }

    .cont2 .copy {
        gap: 20px;
    }

    .cont2 .eyebrow {
        font-size: var(--font-lg);
    }

    .cont2 .headline {
        font-size: var(--font-headline36);
        line-height: 1.4;
    }

    .cont2 .desc {
        font-size: var(--font-lg);
    }

    .cont2 .value {
        --size: 180px;
        --ring: 220px;
        gap: 8px;
    }

    .cont2 .name {
        font-size: var(--font-lg);
    }
}

@media (max-width: 768px) {
    .cont2 .container {
        padding: 80px 24px 80px;
    }

    .cont2 .eyebrow {
        font-size: var(--font-md);
    }

    .cont2 .copy {
        gap: 32px;
    }

    .cont2 .desc {
        font-size: var(--font-md);
    }

    .cont2 .values {
        gap: 24px;
    }

    .cont2 .value {
        --size: 160px;
        --ring: 200px;
    }

    .cont2 .label {
        font-size: var(--font-sm);
    }

    .cont2 .name {
        font-size: var(--font-md);
    }
}

@media (max-width: 480px) {
    .cont2 .container {
        padding: 70px 20px 70px;
        gap: 50px;
    }

    .cont2 .copy {
        gap: 8px;
    }

    .cont2 .eyebrow {
        font-size: var(--font-base);
    }

    .cont2 .headline {
        font-size: var(--font-4xl);
    }

    .cont2 .desc {
        font-size: var(--font-base);
    }

    .cont2 .values {
        flex-wrap: wrap;
        gap: 16px;
    }

    .cont2 .value {
        --size: 140px;
        --ring: 180px;
    }

    .cont2 .name {
        font-size: var(--font-base);
    }
}

/* cont 3 */
.cont3 {
    --track-peek: clamp(0px, (100vw - var(--container-width)) / 2, 140px);
}

.cont3 .head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
}

.cont3 .copy {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cont3 .eyebrow {
    color: var(--brown);
    font-family: var(--font-en);
    font-size: var(--font-2xl);
    font-weight: 700;
    line-height: 1.2;
}

.cont3 .headline {
    font-size: var(--font-headline46);
    font-weight: 700;
    line-height: 1.5;
}

.cont3 .desc {
    color: var(--black-900);
    font-size: var(--font-xl);
    font-weight: 500;
    line-height: 1.6;
    white-space: pre-line;
    word-break: keep-all;
}

.cont3 .nav {
    margin-bottom: 28px;
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cont3 .btn {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--black-300);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.cont3 .btn .arrow {
    width: 18px;
    height: 17px;
    display: inline-block;
    background-color: #616161;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='17' viewBox='0 0 18 17' fill='none'%3E%3Cpath d='M16.9051 8.04969L8.85505 0.804688M16.9051 8.04969L8.85505 15.2947M16.9051 8.04969H0.805054' stroke='black' stroke-width='1.61' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='17' viewBox='0 0 18 17' fill='none'%3E%3Cpath d='M16.9051 8.04969L8.85505 0.804688M16.9051 8.04969L8.85505 15.2947M16.9051 8.04969H0.805054' stroke='black' stroke-width='1.61' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
}

.cont3 .btn.prev .arrow {
    transform: scaleX(-1);
}

.cont3 .btn:hover {
    background: var(--black-200);
    transform: translateY(-2px);
}

.cont3 .slider {
    margin-top: 80px;
    width: calc(100% + var(--track-peek));
    position: relative;
}

.cont3 .dragcue {
    position: absolute;
    left: 0;
    top: 0;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(18, 18, 18, 0.5);
    border-radius: 50%;
    gap: 10px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.78);
    transition: opacity 0.55s ease, transform 0.55s ease;
    pointer-events: none;
    z-index: 2;
}

.cont3 .dragcue .hand {
    margin-top: 20px;
    width: 64px;
    height: 24px;
    display: inline-block;
    background: linear-gradient(135deg, #f5f5f5 0%, #b9b9b9 100%);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='24' viewBox='0 0 64 24' fill='none'%3E%3Cpath d='M1 12H63M13 6L1 12L13 18M51 6L63 12L51 18' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='24' viewBox='0 0 64 24' fill='none'%3E%3Cpath d='M1 12H63M13 6L1 12L13 18M51 6L63 12L51 18' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
}

.cont3 .dragcue .text {
    font-family: var(--font-en);
    color: rgba(245, 245, 245, 0.9);
    font-size: var(--font-sm);
    font-weight: 700;
}

.cont3 .slider.show .dragcue {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.cont3 .slider.show .track {
    cursor: none;
}

.cont3 .track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 0 var(--track-peek) 10px 0;
    margin: 0;
    cursor: grab;
    scrollbar-width: none;
}

.cont3 .track::-webkit-scrollbar {
    display: none;
}

.cont3 .track.dragging {
    cursor: grabbing;
    user-select: none;
}

.cont3 .slider.show .track.dragging {
    cursor: none;
}

.cont3 .item {
    flex: 0 0 408px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.cont3 .item:nth-child(even) {
    margin-top: 50px;
}

.cont3 .pic {
    width: 100%;
    aspect-ratio: 408 / 391;
    border-radius: 20px;
    overflow: hidden;
}

.cont3 .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cont3 .text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cont3 .tag {
    color: var(--black-600);
    font-family: var(--font-en);
    font-size: var(--font-base);
    font-weight: 500;
    line-height: 1.3;
}

.cont3 .name {
    font-size: var(--font-2xl);
    font-weight: 700;
    line-height: 1.6;
}

@media (max-width: 1440px) {
    .cont3 .eyebrow {
        font-size: var(--font-xl);
    }

    .cont3 .desc {
        font-size: var(--font-lg);
    }

    .cont3 .item {
        flex-basis: 360px;
    }
}

@media (max-width: 1280px) {
    .cont3 .eyebrow {
        font-size: var(--font-lg);
    }

    .cont3 .headline {
        font-size: 40px;
    }

    .cont3 .desc {
        font-size: var(--font-md);
    }

    .cont3 .item {
        flex-basis: 340px;
    }

    .cont3 .name {
        font-size: var(--font-xl);
    }
}

@media (max-width: 1024px) {
    .cont3 .top {
        flex-direction: column;
        gap: 24px;
    }

    .cont3 .nav {
        align-self: flex-end;
        margin-top: 0;
    }

    .cont3 .slider {
        margin-top: 50px;
        width: 100%;
        padding-right: 0;
    }

    .cont3 .item {
        flex-basis: 320px;
    }

    .cont3 .item:nth-child(even) {
        margin-top: 32px;
    }
}

@media (max-width: 768px) {
    .cont3 .eyebrow {
        font-size: var(--font-base);
    }

    .cont3 .head {
        gap: 15px;
    }

    .cont3 .headline {
        font-size: var(--font-headline36);
        line-height: 1.4;
    }

    .cont3 .desc {
        font-size: var(--font-base);
    }

    .cont3 .slider {
        margin-top: 40px;
    }

    .cont3 .track {
        gap: 16px;
    }

    .cont3 .item {
        flex-basis: 260px;
    }

    .cont3 .item:nth-child(even) {
        margin-top: 0;
    }

    .cont3 .name {
        font-size: var(--font-lg);
    }
}

@media (max-width: 480px) {
    .cont3 .headline {
        font-size: var(--font-4xl);
    }

    .cont3 .head {
        flex-direction: column;
        gap: 10px;
    }

    .cont3 .desc {
        font-size: var(--font-base);
        white-space: normal;
    }

    .cont3 .nav {
        margin-bottom: 0;
    }

    .cont3 .btn {
        width: 44px;
        height: 44px;
    }

    .cont3 .btn .arrow {
        width: 14px;
        height: 13px;
    }

    .cont3 .item {
        flex-basis: 220px;
    }

    .cont3 .name {
        font-size: var(--font-md);
    }
}