@charset "utf-8";

:root {
    /*색상*/
    --bk: #000;
    --wh: #fff;
    --main-blue: #2563EB;
    --main-purple: #7C3AED;
    --main-pink: #EC4899;
    --black-950 : #131416;
    --black-900 : #1E2124;
    --black-800 : #33363D;
    --black-700 : #464C53;
    --black-600 : #58616A;
    --black-500 : #6D7882;
    --black-400 : #8A949E;
    --black-300 : #B1B8BE;
    --black-200 : #CDD1D5;
    --black-100 : #E6E8EA;
    --black-50 : #F4F5F6;
}

/******************공통*******************/

.con-flex {
    display: flex;
    align-items: center;
}

.con-flex-bet {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn {
    display: flex;
    align-items: center;
    border-radius: 999px;
    justify-content: center;
}

.m-only {
    display: none;
}

.videoWrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



/* 스크롤탑 버튼: 채널톡 런처(기본 우측하단 20px, 56px) 바로 위에 위치 */
.scroll-top-btn {
    position: fixed;
    right: 26px;
    bottom: 92px;
    z-index: 997;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--black-800);
    border-radius: 50%;
    background: var(--black-950);
    backdrop-filter: blur(6px);
    color: var(--wh);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .3s ease, transform .3s ease, visibility .3s, background .25s ease, border-color .25s ease;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: var(--main-purple);
    border-color: var(--main-purple);
}

.scroll-top-btn svg {
    width: 20px;
    height: 20px;
}

.br-m {
    display: none;
}

html:not(.channel-launcher-visible) [data-ch-testid="launcher"] {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

html.channel-launcher-visible [data-ch-testid="launcher"] {
    visibility: visible !important;
    opacity: 1 !important;
    transition: opacity .25s ease !important;
}



/******************헤더*******************/

/*공통*/
header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 990;
    width: 100%;
    height: 104px;
    transition: .3s;
}

header .hd-inner {
    width: 100%;
    height: 100%;
    padding: 0 220px 0 60px;
}

header .gnb>ul {
    gap: 40px;
}

header .gnb>ul>li {
    position: relative;
    line-height: 104px;
    font-size: 18px;
    font-weight: 500;
}

header .gnb a:not(.go-inquiry-btn) {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.go-inquiry-btn {
    position: fixed;
    top: 30px;
    right: 60px;
    z-index: 992;
    width: 125px;
    height: 44px;
    gap: 10px;
    background: var(--main-purple);
    font-size: 16px;
}

header.scr-up {
    background: rgba(0, 0, 0, 0.75);
}

header.scr-down {
    transform: translateY(-100%);
}

header .hd-logo {
    position: relative;
    z-index: 9999;
}

/*모바일 햄버거버튼*/
.ham-btn {
    width: 28px;
    cursor: pointer;
    z-index: 9999;
}

.ham-btn>span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--wh);
    transition: all 0.3s;
    transform: rotate(0deg) translateY(0px);
}

.ham-btn>span:nth-child(2) {
    width: 22px;
    margin: 5px auto 0;
}

.ham-btn>span+span {
    margin-top: 5px;
}

.ham-btn.open>span:nth-child(1) {
    transform: rotate(45deg) translateY(5px);
}

.ham-btn.open>span:nth-child(3) {
    transform: rotate(-45deg) translateY(-5px);
}

.ham-btn.open>span:nth-child(2) {
    display: none;
}

.allmenu ul>li>a {
    opacity: 0;
    transform: translateX(-20px);
    color: var(--wh);
}

.allmenu.open ul>li>a {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.3s;
    text-align: center;
}

.allmenu:after {
    transform: translateY(300px);
    opacity: 0;
}

.allmenuBg {
    display: block;
    width: 46px;
    height: 46px;
    background: var(--main-purple);
    border-radius: 50%;
    position: absolute;
    left: calc(97% - 23px);
    top: 46px;
    z-index: 1000;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.8s ease-in-out;
}

.allmenuBg.open {
    transform: translate(-50%, -50%) scale(150);
}

.allmenu {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 2000;
    width: 100%;
    height: 100vh;
    background: var(--main-purple);
    transform: scale(0);
}

.allmenu.open {
    transform: scale(1);
    transition: all 0s 0.8s;
}

.allmenu .con-top {
    width: 100%;
    height: 60px;
}

header .hd-logo a.open img {
    content: url('file:///C:/Users/5kcoms/Desktop/변연희/업메이트/홈페이지/resource/img/common/logo_wh.svg');
}

.allmenu .hd-inner {
    display: flex;
    align-items: center;
}

.allmenu ul {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 40px;
    font-weight: 700;
}

.allmenu li {
    position: relative;
    padding-left: 15px;
    text-align: center;
}

.allmenu li a {
    color: var(--wh);
    font-size: 34px;
}

.allmenu li:hover a::before {
    transform: scaleY(1);
}

.allmenu .hd-inner {
    display: flex;
    height: 100%;
    align-items: center;
}



/******************푸터*******************/
.page-navigation {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    background: var(--bk);
    border-top: 1px solid var(--black-950);
    border-bottom: 1px solid var(--black-950);
}

.page-navigation-link {
    display: flex;
    min-height: 360px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 34px;
    padding: 60px 30px;
    color: var(--black-500);
    text-align: center;
    transition: color .3s ease;
}

.page-navigation-link+.page-navigation-link {
    border-left: 1px solid var(--black-950);
}

.page-navigation-label {
    font-size: clamp(18px, 1.5vw, 52px);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: .05em;
}

.page-navigation-arrow {
    width: 50px;
    height: 50px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .3s ease;
}

.page-navigation-link:hover {
    color: var(--black-200);
}

.page-navigation-prev:hover .page-navigation-arrow {
    transform: translateX(-8px);
}

.page-navigation-next:hover .page-navigation-arrow {
    transform: translateX(8px);
}

.ft-inner {
    padding: 100px 60px;
    align-items: flex-end;
}

footer .ft-info {
    color: var(--main-purple);
    font-size: 16px;
}

footer .ft-info ul {
    gap: 40px;
}

footer .con-r img {
    width: 30vw;
    max-width: 640px;
}

@media screen and (max-width:768px) {
    .page-navigation-link {
        min-height: 220px;
        gap: 24px;
        padding: 40px 16px;
    }

    .page-navigation-label {
        font-size: clamp(16px, 3vw, 26px);
    }

    .page-navigation-arrow {
        width: 46px;
        height: 46px;
    }
}



/* 검색엔진·스크린리더용 제목은 유지하되 화면 레이아웃에는 영향을 주지 않는다. */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}