/*
============================================================
PC SUB COMMON
============================================================
*/
.sub-page {
    display: block;
    position: relative;
    margin: 0 auto;
    padding: 0 0 120px;
    width: 100%;
}

.sub-page.has-side {
    display: block;
    position: relative;
    margin: 0 auto;
    padding: 0 0 120px;
    width: 100%;
    max-width: 100%;
}

.sub-page.no-side {
    display: block;
}

.sub-page .side-menu {
    display: block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 0 70px;
    padding: 0;
    width: 100vw;
    height: 60px;
    background: var(--color-black);
    border: 0;
    overflow: visible;
    z-index: 2;
}

.sub-page .side-head {
    display: none;
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
}

.sub-page .side-head a {
    display: none;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0;
    padding: 0 20px;
    width: 100%;
    height: 82px;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--color-title);
    background: transparent;
    border: 0;
    border-radius: 0;
    word-break: keep-all;
}

.sub-page .side-nav {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 60px;
    background: var(--color-black);
}

.sub-page .side-list {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-width: var(--inner-pc);
    height: 60px;
    list-style: none;
}

.sub-page .side-list > .item {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    width: auto;
    height: 60px;
    list-style: none;
}

.sub-page .side-list > .item > a {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0;
    padding: 0 48px;
    width: auto;
    height: 60px;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    color: rgba(255, 255, 255, .45);
    background: transparent;
    border: 0;
    border-radius: 0;
    word-break: keep-all;
    transition: color var(--speed-base) var(--ease-base), background var(--speed-base) var(--ease-base), border-color var(--speed-base) var(--ease-base);
}

.sub-page .side-list > .item > a:after {
    display: none;
    position: absolute;
    bottom: -1px;
    left: 48px;
    margin: 0;
    padding: 0;
    width: calc(100% - 96px);
    height: 3px;
    background: var(--primary);
    content: "";
    opacity: 0;
}

.sub-page .side-list > .item.is-active > a,
.sub-page .side-list > .item > a:hover,
.sub-page .side-list > .item > a:focus {
    color: var(--color-white);
    border-color: transparent;
}

.sub-page .side-list > .item.is-current > a {
    color: var(--color-white);
    background: transparent;
    border-color: transparent;
}

.sub-page .side-list > .item.is-active > a:after,
.sub-page .side-list > .item.is-current > a:after,
.sub-page .side-list > .item > a:hover:after,
.sub-page .side-list > .item > a:focus:after {
    opacity: 1;
}

.sub-page .side-list .sub-list-item {
    display: none;
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding: 12px 0;
    width: 180px;
    background: var(--color-black);
    border: 0;
    list-style: none;
    opacity: 1;
    overflow: visible;
    z-index: var(--z-gnb);
}

.sub-page .side-list > .item:hover .sub-list-item,
.sub-page .side-list > .item:focus-within .sub-list-item {
    display: block;
}

.sub-page .side-list .sub-item {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    list-style: none;
}

.sub-page .side-list .sub-item a {
    display: block;
    position: relative;
    margin: 0;
    padding: 10px 18px;
    width: 100%;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: rgba(255, 255, 255, .55);
    word-break: keep-all;
}

.sub-page .side-list .sub-item.is-active a,
.sub-page .side-list .sub-item a:hover,
.sub-page .side-list .sub-item a:focus {
    color: var(--color-white);
}

.sub-page .sub-content-wrap {
    display: block;
    position: relative;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-width: var(--inner-pc);
    min-width: 0;
}

.sub-page.has-side .sub-content-wrap {
    width: 100%;
}

.sub-page .sec {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
}

.sub-page .sec-inner {
    display: block;
    position: relative;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    max-width: 1280px;
}

.sub-page .tt-wrap {
    display: block;
    position: relative;
    margin: 0 0 24px;
    padding: 0;
    width: 100%;
}

.sub-page .tt {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--color-gray-900);
    letter-spacing: 0;
    word-break: keep-all;
}

.sub-page .desc {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.7;
    color: var(--color-gray-700);
    word-break: keep-all;
}

/*
============================================================
PC BRAND PAGE
============================================================
*/
.brand-page {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    background: var(--color-white);
    overflow: hidden;
}

.sub-page.brand-page {
    max-width: 100%;
}

.sub-page.brand-page .sub-content-wrap {
    max-width: 100%;
}

.sub-content-title {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 325px;
    color: var(--color-white);
    background-color: var(--color-black);
    background-image: url("../../../img/pc/sub/sub-page-title-bg.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.sub-content-title.brand-sub-title {
    height: 600px;
    background-color: var(--color-black);
    background-image: url("../../../img/comm/q-qnix-red.png");
    background-repeat: no-repeat;
    background-position: center 72px;
    background-size: 520px auto;
}

.sub-content-title .cont-wrap {
    display: block;
    position: relative;
    margin: 0 auto;
    padding: 156px 0 0;
    width: 100%;
    max-width: var(--inner-pc);
    z-index: 1;
}

.sub-content-title.board-sub-title .cont-wrap,
.sub-content-title.event-sub-title .cont-wrap,
.sub-content-title.data-sub-title .cont-wrap,
.sub-content-title.support-sub-title .cont-wrap,
.sub-content-title.form-sub-title .cont-wrap,
.sub-content-title.admin-board-sub-title .cont-wrap {
    padding: 156px 0 0;
}

.sub-content-title.purchase-sub-title .cont-wrap {
    padding: 156px 0 0;
}

.sub-content-title.brand-sub-title .cont-wrap {
    padding: 240px 0 0;
}

.sub-title-breadcrumb {
    display: block;
    position: relative;
    margin: 0 0 28px;
    padding: 0;
    width: 100%;
}

.sub-title-breadcrumb .breadcrumb {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
}

.sub-title-breadcrumb .breadcrumb-list {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    list-style: none;
}

.sub-title-breadcrumb .breadcrumb-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    position: relative;
    margin: 0;
    padding: 0;
    width: auto;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    color: rgba(255, 255, 255, .74);
    list-style: none;
    word-break: keep-all;
}

.sub-title-breadcrumb .breadcrumb-item + .breadcrumb-item {
    margin: 0;
}

.sub-title-breadcrumb .breadcrumb-item + .breadcrumb-item:before {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    width: auto;
    height: auto;
    color: rgba(255, 255, 255, .5);
    content: ">";
}

.sub-title-breadcrumb .breadcrumb-item a,
.sub-title-breadcrumb .breadcrumb-item span {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    color: inherit;
}

.sub-title-breadcrumb .breadcrumb-item.is-current {
    color: var(--color-white);
}

.sub-content-title .sub-title-lead {
    display: block;
    position: relative;
    margin: 0 0 18px;
    padding: 0;
    font-family: var(--font-eng);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--color-white);
    word-break: keep-all;
}

.sub-content-title.brand-sub-title .sub-title-lead {
    margin: 0 0 18px;
    font-size: 24px;
    line-height: 1.2;
}

.sub-content-title .sub-title {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    font-family: var(--font-base);
    font-size: 34px;
    font-weight: 900;
    line-height: 1.25;
    color: var(--color-white);
    word-break: keep-all;
}

.sub-content-title .sub-title-lead + .sub-title {
    font-family: var(--font-eng);
    font-size: 44px;
}

.sub-content-title.brand-sub-title .sub-title-lead + .sub-title {
    margin: 0 0 4px;
    font-size: 42px;
    line-height: 1.2;
}

.sub-content-title.purchase-sub-title .sub-title {
    font-size: 38px;
}

.sub-content-title.form-sub-title .sub-title,
.sub-content-title.event-sub-title .sub-title {
    font-size: 36px;
}

.sub-content-title .sub-title:has(+ .sub-title-desc) {
    margin: 0 0 8px;
}

.sub-content-title .sub-title-desc {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-white);
    word-break: keep-all;
}

.sub-content-title.brand-sub-title .sub-title-desc {
    font-size: 38px;
    font-weight: 400;
    line-height: 1.2;
}

.breadcrumb-wrap {
    display: none;
}

.brand-page .brand-intro-sec {
    display: block;
    position: relative;
    margin: 0;
    padding: 34px 0;
    width: 100%;
    color: var(--color-white);
    background: var(--primary);
}

.brand-page .brand-intro-sec .sec-inner {
    max-width: 980px;
}

.brand-page .brand-intro-sec .desc {
    margin: 0 0 7px;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-white);
}

.brand-page .brand-intro-sec .desc:last-child {
    margin-bottom: 0;
}

.brand-page .brand-logo-sec {
    display: block;
    position: relative;
    margin: 0;
    padding: 120px 0;
    width: 100%;
    background: var(--color-white);
}

.brand-page .brand-logo-wrap {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: center;
    gap: 44px;
    position: relative;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-width: 1072px;
}

.brand-page .brand-logo-img {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    width: 384px;
    height: auto;
}

.brand-page .brand-logo-img img {
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
}

.brand-page .brand-logo-txt {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    width: 644px;
}

.brand-page .brand-logo-txt .desc {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: var(--color-gray-700);
}

.brand-page .identity-sec {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 590px;
    color: var(--color-white);
    background-color: var(--color-black);
    background-image: url("../../../img/pc/sub/identity-sec_bg.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.brand-page .identity-sec .sec-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.brand-page .identity-sec .tt-wrap {
    width: 420px;
}

.brand-page .identity-sec .sub-tt {
    display: block;
    position: relative;
    margin: 0 0 24px;
    padding: 0;
    font-family: var(--font-eng);
    font-size: 20px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--color-white);
    word-break: keep-all;
}

.brand-page .identity-sec .tt {
    margin: 0 0 34px;
    font-family: var(--font-eng);
    font-size: 44px;
    color: var(--color-white);
}

.brand-page .identity-sec .desc {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-white);
}

.brand-page .mission-sec {
    display: block;
    position: relative;
    margin: 0;
    padding: 120px 0;
    width: 100%;
    background: var(--color-white);
}

.brand-page .mission-sec .sub-tt {
    display: block;
    position: relative;
    margin: 0 0 24px;
    padding: 0;
    font-family: var(--font-eng);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--primary);
    word-break: keep-all;
}

.brand-page .mission-sec .list-item {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-width: 1040px;
    list-style: none;
}

.brand-page .mission-sec .item {
    display: block;
    position: relative;
    margin: 0;
    padding: 0 30px;
    width: 25%;
    list-style: none;
}

.brand-page .mission-sec .item .tt {
    margin: 0 0 14px;
    font-family: var(--font-eng);
    font-size: 28px;
    color: var(--color-black);
}

.brand-page .mission-sec .item .desc {
    margin: 0;
    font-size: 18px;
    color: var(--color-black);
}

.brand-page .location-sec {
    display: block;
    position: relative;
    margin: 0;
    padding: 90px 0 0;
    width: 100%;
    background: var(--color-white);
}

.brand-page .location-sec .tt {
    margin: 0 0 58px;
    font-family: var(--font-eng);
    font-size: 42px;
}

.brand-page .map-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 360px;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.3;
    color: var(--color-white);
    background: var(--color-black);
    word-break: keep-all;
}

/*
============================================================
PC SUB BREAKPOINT 1480
============================================================
*/
@media (max-width: 1480px) {
    .sub-page .sec-inner {
        max-width: 1200px;
    }
}

/*
============================================================
PC SUB BREAKPOINT 1280
============================================================
*/
@media (max-width: 1280px) {
    .sub-page.has-side {
        gap: 0;
    }

    .sub-page .side-menu {
        width: 100%;
        flex-basis: auto;
    }

    .sub-page .sec-inner {
        max-width: 1100px;
    }
}

/*
============================================================
PC SUB BREAKPOINT 1024
============================================================
*/
@media (max-width: 1024px) {
    .sub-page.has-side {
        display: block;
    }

    .sub-page .side-menu {
        margin: 0 0 40px;
        width: 100%;
    }

    .sub-page.has-side .sub-content-wrap {
        width: 100%;
    }

    .sub-page .sec-inner {
        max-width: 960px;
    }
}
