.inner_wrap {
    margin: 0 auto;
    overflow: hidden;
}

p {
    transform: rotate(0.04deg) skew(-0.1deg);
}

#hd, #wrapper, #ft {
    min-width: unset !important;
}

.pc-br {
    display: block;
}

.mobile-br {
    display: none;
}

/* span태그 폰트 굵기 설정 */

.f-black {
    font-weight: 900;
}

.e-bold {
    font-weight: 700;
}

.bold {
    font-weight: 600;
}

.regular {
    font-weight: 400;
}

.title-text {
    font-size: 48px;
}

/* 헤드 */

#hd {
    background-color: rgba(0,0,0,0.8);

    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 999;

    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

#hd_wrapper {
    width: 100%;
    height: 90px;
    padding: 0 7.29166vw;

    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#hd_wrapper:after {
    content: none;
}

#logo {
    float: none;
    padding: 0;
}

#m-gnb {
    display: none;
}

#gnb {
    background-color: transparent;
    height: 100%;
    margin-left: 14.84375vw;
}

#gnb > ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    gap: 0 95px;
}

#gnb ul:after {
    content: none;
}

#gnb > ul > li > a {
    font-family: 'Pretendard';
    font-weight: 500;
    font-size: 18px;
    letter-spacing: -0.02em;
    color: #fff;
    white-space: nowrap;
}

.m-gnb-btn {
    display: none;
}

/* 컨테이너, 랩퍼 */

#container_wr {
    max-width: unset;
    width: 100%;
}

#container {
    max-width: unset;
    float: none;
    min-height: unset;
    margin: 0;
    width: 100%;
}

#container::after,
#container_wr:after {
    content: none;
}

/* 푸터 */

#ft {
    background-color: #222;
}

#ft_wr {
    max-width: unset;
    padding: 70px 140px 140px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    float: none;
    max-height: 360px;
}

#ft_wr:after {
    content: none;
}

#ft_wr .ft_cnt {
    width: auto;
    padding: 0;

    display: flex;
    justify-content: center;
    align-items: center;
}

.ft_info {
    margin-top: 38px;
}

.ft_info_btm,
.ft_copy {
    margin-top: 16px;
}

.ft_info_top,
.ft_info_btm {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.ft_ver {
    width: 1px;
    height: 16px;
    background-color: #707070;
    margin: 0 15px;
}

#ft_left p,
#ft_link a {
    font-family: 'Pretendard';
    font-size: 16px;
    font-weight: 400;
}

.ft_info_top > p {
    color: #fff;
}

.ft_info_btm > p,
.ft_info_btm > p > a {
    color: rgba(255,255,255,0.7);
}

.ft_copy > p {
    color: rgba(255,255,255,0.4);
}

#ft_link a:first-child {
    margin-right: 50px;
}

@media all and (max-width:1530px) {
    #hd_wrapper {
        padding: 0 16px;
        justify-content: space-between;
    }

    #gnb {
        margin-left: 0;
    }

    #gnb > ul {
        gap: 0 2.614379vw;
    }

    #ft_wr {
        padding: 70px 16px 140px;
    }
}

@media all and (max-width:750px) {

    .pc-br {
        display: none;
    }
    
    .mobile-br {
        display: block;
    }
    
    #gnb {
        display: block;
        position: fixed;
        top: 66px;
        left: 0;
        background: #000;
        width: 100vw;
        height: calc(100vh - 66px);

        display: none;
    }

    #gnb > ul {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;

        border-top: 1px solid #595959;
    }

    #gnb > ul > li {
        width: 100%;
        height: auto;
    }

    #gnb > ul > li:not(:first-child) {
        border-top: 1px solid #595959;
    }

    #gnb > ul > li:last-child {
        border-bottom: 1px solid #595959;
    }

    #gnb > ul > li > a {
        display: block;
        text-align: center;
        padding: 20px 0 21px;
    }

    #hd_wrapper {
        height: 66px;
    }

    #logo {
        width: 108px;
    }

    #logo > a {
        display: block;
        width: 100%;
        height: 100%;
    }

    #logo > a > img {
        width: 100%;
    }

    .m-gnb-btn {
        display: block;
    }

    .m-gnb-active {
        display: none;
    }

    /* 푸터 */

    #ft_wr {
        padding: 14.13333vw 16px 19.46666vw;
        flex-direction: column;
        max-height: unset;
    }

    .ft_logo {
        width: 29.33866vw;
    }

    .ft_logo > a {
        display: block;
    }

    .ft_logo > a > img {
        width: 100%;
    }

    .ft_ver {
        display: none;
    }

    .ft_info_top, .ft_info_btm {
        flex-direction: column;
        align-items: flex-start;
    }

    .ft_info_top {
        flex-direction: column-reverse;
    }

    #ft_left p, #ft_link a {
        font-size: 3.46666vw;
        line-height: 1.5;
    }

    #ft_left p, #ft_link a {
        color: rgba(255,255,255,0.7);
    }

    .ft_info_btm > p,
    .ft_info_btm > p > a {
        color: rgba(255,255,255,0.5) !important;
    }

    .ft_info_btm {
        margin-top: 3.46666vw;
    }

    .ft_copy {
        margin-top: 0;
    }

    .ft_copy > p {
        font-size: 3.2vw !important;
        color: rgba(255,255,255,0.25) !important;
    }

    #ft_right {
        margin-top: 12.8vw;
    }
}