@import url('reset.css');

@font-face {
    font-family: 'GT Flexa';
    src: url('../fonts/GT-Flexa-Compressed-Bold-Trial.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GT Flexa';
    src: url('../fonts/GT-Flexa-Compressed-Medium-Trial.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GT Flexa';
    src: url('../fonts/GT-Flexa-Compressed-Regular-Trial.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

:root {
    --bk: #000;
    --wh: #fff;
    --gr: #B4B4B4;
    --r: #A5000F;

    --fz-s: 28px;
    --fz: 36px;
    --fz-l: 48px;

    --title-l: 160px;
    --sub-title-l: 80px;
    --sub-title: 72px;
}

@media screen and (max-width: 1180px) {
    :root {
        --fz-s: 28px;
        --fz: 24px;
        --fz-l: 36px;

        --title-l: 80px;
        --title: 42px;
        --sub-title-l: 72px;
        --sub-title: 36px;
        --sub-title-s: 32px;
    }
}

html,
body {
    color: var(--wh);
    font-family: 'GT Flexa', sans-serif;
    font-style: normal;
    font-size: var(--fz-l);
    font-weight: 700;
    line-height: normal;
    background: var(--bk);

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

@media screen and (max-width: 1180px) {

}

#wrap {
    padding: calc(50px + 118px) 50px 50px;
}

#logo {
    display: block;
    width: 150px;
    margin-top: -12px;
    margin-left: -12px;
}

.container--page {
    padding-bottom: 160px;
}

.container--page-ex {
    min-height: calc(100dvh - 118px - 100px);
}

body.s-p--xp {
    height: 100%;
    overflow: hidden;
}

@media screen and (max-width: 1180px) {
    body.s-p {
        height: 100%;
        overflow: hidden;
    }

    #wrap {
        padding: calc(24px + 52px) 24px 24px;
    }

    #logo {
        display: block;
        width: 72px;
        margin-top: 0;
        margin-left: 0;
    }

    .container--page {
        padding-bottom: 120px;
    }

    .container--page-ex {
        min-height: calc(100dvh - 52px - 48px);
    }
}

/*header*/
header {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, #000 80%, rgba(0, 0, 0, 0.00) 100%);
}

.header-inner {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 50px 50px 0;
}

.nav-inner {
    display: flex;
    width: calc(255px * 4);
}

.nav-item {
    position: relative;
    flex: 1;
    padding: 10px;
    display: flex;
    justify-content: center;
    text-align: center;
}

.nav-item a {
    display: block;
    font-size: 28px;
    text-transform: uppercase;
}

.nav-item:hover > a,
.nav-item.on > a {
    color: var(--r);
}

.depth-list {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    column-gap: 16px;

    height: 49px;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in;

    margin-top: -10px;
}

.nav-item:hover .depth-list,
.nav-item.on .depth-list {
    opacity: 1;
    pointer-events: auto;
}

.depth-item {
    padding: 10px;
    width: max-content;

    text-align: center;
}

.depth-item a {
    display: block;
    font-size: 20px;
    text-transform: capitalize;
}

.depth-item:hover a,
.depth-item.on a {
    opacity: 0.4;
}

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

.panel,
.panel.on {
    display: none;
}

@media screen and (max-width: 1180px) {
    header.hide {
        opacity: 0;
        pointer-events: none;
    }

    .header-inner {
        padding: 20px 20px 0;
        align-items: center;
    }

    .nav {
        display: none;
    }

    .panel {
        display: none;
        position: fixed;
        z-index: 9999;
        top: 0;
        left: 0;
        width: 100%;
        height: 100dvh;
        background: rgba(0, 0, 0, 0.9);
    }

    .panel.on {
        display: block;
    }

    .panel-inner {
        position: relative;
        width: 100%;
        height: 100%;
        padding: 120px 30px;

        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .m-nav-btn {
        display: flex;
        cursor: pointer;
    }

    .close-btn {
        margin: 0 auto;
        display: flex;
        cursor: pointer;
    }

    .m-nav {
        margin: 60px auto auto;
    }

    .m-nav-inner {
        text-align: center;
    }

    .m-nav-item {
        padding: 6px;
    }

    .m-nav-item + .m-nav-item {
        margin-top: 20px;
    }

    .m-nav-item a {
        font-size: 42px;
    }

    .m-nav-item.on > a {
        color: var(--r);
    }

    .m-depth-list {
        display: none;
        margin-top: 10px;
    }

    .m-nav-item.on > .m-depth-list {
        display: block;
    }

    .m-depth-item {
        padding: 6px;
    }

    .m-depth-item a {
        font-size: 28px;
    }

    .m-depth-item.on a {
        color: var(--r);
    }
}

/*main*/
.main-hero {
    position: relative;
    margin: -168px -50px -50px;
    width: 100vw;
    height: 100dvh;
}

@media screen and (max-width: 1180px) {
    .main-hero {
        margin: -52px -24px -24px;
        width: 100vw;
        height: calc(100dvh - 24px);
    }
}

.main-hero canvas {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sequence-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bk);
    font-size: 12px;
    color: var(--gr);
}

.hero-mo {
    display: none;
}

.hero-pc {
    display: block;
    width: 100%;
}

@media screen and (max-width: 1180px) {
    .hero-pc {
        display: none;
    }

    .hero-mo {
        display: block;
        width: 100%;
    }
}

.main-hero img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.main-hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 1180px) {
    .main-hero img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .main-hero video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/*edition*/
.ei-desc {
    font-size: 36px;
    font-weight: 500;
}

.ei-desc--ex {
    font-size: 36px;
}

.ei-desc p {
    line-height: 110%;
}

.ei-desc p + p {
    margin-top: 28px;
}

.ei-desc--ex p {
    line-height: 110%;
}

@media screen and (max-width: 1180px) {
    .ei-desc {
        font-size: 24px;
    }

    .ei-desc p + p {
        margin-top: 18px;
    }
}

/*ei1*/
.ei-1-sec {
    margin-top: 120px;
    text-align: center;
}

.ei-1-sec + .ei-1-sec {
    margin-top: 240px;
}

.ei-1-title {
    margin-bottom: 80px;
    font-size: 140px;
}

.ei-1-sub-title {
    margin-bottom: 240px;
    font-size: 60px;
}

.ei-1-sub-title p {
    line-height: 100%;
}

.ceo-name-wrapper {
    display: flex;
    justify-content: center;
    align-items: end;
    column-gap: 20px;
    margin-bottom: 100px;
}

.ceo-label {
    font-size: 60px;
    padding-bottom: 10px;
}

.ceo-name {
    font-size: 100px;
}

.ei-1-bottom {
    margin: 120px 0;
}

.ei-1-bottom img {
    margin: auto;
    max-width: 800px;
}

@media screen and (max-width: 1180px) {
    .ei-1-sec {
        margin-top: 100px;
        text-align: left;
    }

    .ei-1-sec + .ei-1-sec {
        margin-top: 100px;
    }

    .ei-1-title {
        margin-bottom: 150px;
        font-size: 80px;
    }

    .ei-1-sub-title {
        margin-bottom: 70px;
        font-size: 36px;
    }

    .ceo-name-wrapper {
        display: flex;
        justify-content: flex-start;
        align-items: end;
        column-gap: 14px;
        margin-bottom: 70px;
    }

    .ceo-label {
        font-size: 36px;
        padding-bottom: 0;
    }

    .ceo-name {
        font-size: 48px;
    }

    .ei-1-bottom {
        margin: 100px 0 20px;
    }

    .ei-1-bottom img {
        max-width: 300px;
    }
}

/*ei2*/
.ei-2-sec {
    margin-top: 160px;
}

.ei-2-desc {
    font-size: 70px;
    text-align: center;
}

.ei-2-list {
    display: flex;
    justify-content: space-between;
    margin: auto;
    width: 1420px;
    min-height: 740px;
}

@media screen and (max-width: 1480px) {
    .ei-2-list {
        width: 1320px;
    }
}

.ei-2-item {
    padding: 20px;
    border-radius: 0 0 70px 0;
    border: 10px solid #FFF;

    width: 400px;
    height: fit-content;

    cursor: pointer;

    transition: all 300ms ease-in;
}

.ei-2-item.active {
    padding: 50px;
    width: 500px;
    background: var(--wh);
}

.ei-2-m-txt {
    display: none;
}

.ei-2-img img:first-child {
    display: block;
}

.ei-2-img img:last-child {
    display: none;
}

.ei-2-item.active .ei-2-img img:first-child {
    display: none;
}

.ei-2-item.active .ei-2-img img:last-child {
    display: block;
}

.ei-2-cont {
    display: none;
}

.ei-2-item.active .ei-2-cont {
    padding-top: 80px;
    display: block;
    text-align: center;
    color: var(--bk);
    font-size: 36px;
    font-weight: 500;
}

.ei-2-item.active .ei-2-cont strong {
    font-weight: 700;
}

@media screen and (max-width: 1180px) {
    .ei-2-sec {
        margin-top: 100px;
    }

    .ei-2-sec + .ei-2-sec {
        margin-top: 150px;
    }

    .ei-2-desc {
        font-size: 36px;
        text-align: left;
    }

    .ei-2-list {
        display: block;
        width: 100%;
    }

    .ei-2-item {
        position: relative;
        padding: 20px;
        border-radius: 0 0 26px 0;
        border: 4px solid #FFF;

        width: 100%;

        cursor: pointer;

        transition: all 300ms ease-in;
    }

    .ei-2-item:after {
        content: '';
        display: block;
        position: absolute;
        top: 32px;
        right: 20px;
        width: 37px;
        height: 37px;
        background-image: url("data:image/svg+xml,%3Csvg width='38' height='38' viewBox='0 0 38 38' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M25.7139 16.8405L18.9831 23.5713L12.2523 16.8405' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }

    .ei-2-item.active {
        padding: 20px;
        width: 100%;

        background: var(--wh);
    }

    .ei-2-item.active:after {
        content: '';
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        width: 37px;
        height: 37px;
        background-image: url("data:image/svg+xml,%3Csvg width='38' height='38' viewBox='0 0 38 38' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.3'%3E%3Ccircle cx='18.75' cy='19' r='18.75' fill='%23B4B4B4'/%3E%3Cpath d='M11.7861 20.6595L18.5169 13.9287L25.2477 20.6595' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E%0A");
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }

    .ei-2-item + .ei-2-item {
        margin-top: 20px;
    }

    .ei-2-m-txt {
        display: block;
        height: 60px;
        line-height: 60px;
        color: var(--wh);
        font-size: 32px;
    }

    .ei-2-item.active .ei-2-m-txt {
        display: none;
    }

    .ei-2-img {
        display: none;
    }

    .ei-2-item.active .ei-2-img {
        display: block;
        width: 168px;
    }

    .ei-2-img img:first-child {
        display: none;
    }

    .ei-2-img img:last-child {
        display: block;
    }

    .ei-2-item.active .ei-2-img img:first-child {
        display: none;
    }

    .ei-2-item.active .ei-2-img img:last-child {
        display: block;
    }

    .ei-2-item.active .ei-2-cont {
        padding-top: 87px;
        font-size: 24px;
        text-align: left;
    }
}

/*ei3*/
.ei-3-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;

    min-height: calc(100dvh - 118px - 100px);
}

.ei-3-item:first-child {
    grid-area: 1 / 1 / 3 / 2;

    display: flex;
    align-items: end;
}

.ei-3-item:nth-child(2) {
    grid-area: 1 / 2 / 3 / 3;
    display: flex;
    align-items: end;
    justify-content: end;
}

.ei-3-item:nth-child(3) {
    grid-area: 3 / 1 / 4 / 2;
}

.ei-3-item:last-child {
    grid-area: 3 / 2 / 4 / 3;
    display: flex;
    align-items: baseline;
    justify-content: end;
}

.ei-3-title {
    font-size: 160px;
}

.ei-3-item a {
    display: flex;
    color: var(--wh);
    font-size: 60px;
    text-decoration: underline;
}

.ei-3-item a:hover {
    color: var(--r);
}

@media screen and (max-width: 1180px) {
    .ei-3-layout {
        display: block;
        min-height: calc(100dvh - 52px - 48px);
    }

    .ei-3-item:nth-child(2) {
        display: block;
    }

    .ei-3-item:nth-child(3) {
        display: none;
    }

    .ei-3-item:last-child {
        display: block;
    }

    .ei-3-title {
        margin-top: 100px;
        margin-bottom: 150px;
        max-width: 160px;
        font-size: 80px;
    }

    .ei-3-item a {
        font-size: 24px;
    }
}

/*republic*/
.r-sec {
    margin-top: 160px;
    text-align: center;
}

.r-sub-title {
    margin-bottom: 100px;
    font-size: 80px;
}

.r-sub-title p {
    line-height: 100%;
}

.r-desc {
    font-size: 36px;
    font-weight: 500;
}

.r-desc p {
    line-height: 110%;
}

.r-desc p + p {
    margin-top: 28px;
}

.r-sub-txt {
    margin-top: 320px;
    font-size: 72px;
}

.r-bottom {
    margin: 0 -50px -50px;
    width: calc(100% + 100px);
}

@media screen and (max-width: 1180px) {
    .r-sec {
        margin-top: 100px;
        text-align: left;
    }

    .r-sub-title {
        margin-bottom: 70px;
        font-size: 36px;
    }

    .r-desc {
        font-size: 24px;
    }

    .r-sub-txt {
        margin-top: calc(29px * 3);
        font-size: 24px;
    }

    .r-bottom {
        margin: 0 -24px -24px;
        width: calc(100% + 48px);
    }
}

/*limited*/
.l-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;

    min-height: calc(100dvh - 118px - 100px);
}

.l-item:first-child {
    grid-area: 1 / 1 / 3 / 2;
}

.l-item:nth-child(2) {
    grid-area: 1 / 2 / 3 / 3;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: end;
    text-align: right;
}

.l-item:nth-child(3) {
    grid-area: 3 / 1 / 4 / 2;
    display: flex;
    align-items: end;
}

.l-item:last-child {
    grid-area: 3 / 2 / 4 / 3;
}

.l-title-wrapper {
    margin: 160px 0;
    text-align: center;
}

.l-title {
    font-size: 120px;
}

.l-sub-title {
    font-size: 60px;
}

.l-sub-title p {
    line-height: 110%;
}

.l-desc {
    font-size: 60px;
}

.l-desc p {
    line-height: 110%;
}

@media screen and (max-width: 1180px) {
    .l-layout {
        display: block;
        min-height: calc(100dvh - 52px - 48px);
        padding-top: 100px;
    }

    .l-item:first-child {
        display: none;
    }

    .l-item:nth-child(2) {
        display: block;
        text-align: left;
    }

    .l-item:nth-child(3) {
        display: block;
    }

    .l-item:last-child {
        display: none;
    }

    .l-title-wrapper {
        margin: 100px 0 160px;
        text-align: left;
    }

    .l-title {
        margin-top: calc(29px * 8);
        font-size: 36px;
    }

    .l-sub-title {
        margin-bottom: 70px;
        max-width: 318px;
        font-size: 36px;
    }

    .l-desc {
        font-size: 24px;
    }
}

.md-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
}

.md-item {
    padding: 20px;
}

.md-info {
    margin-top: 30px;
}

.md-name {
    font-size: 32px;
    line-height: 41px;
}

.md-price {
    font-size: 24px;
    line-height: 41px;
}

.md-img-cover {
    position: relative;
}

.md-img-cover img {
    position: relative;
    z-index: 1;
}

.md-item.sold-out .md-img-cover:after {
    content: 'Sold Out';
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);

    color: var(--gr);
    text-align: center;
    font-size: 80px;
    font-weight: 700;
}

@media screen and (max-width: 1180px) {
    .md-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 40px;
    }

    .md-item {
        padding: 10px 0;
    }

    .md-info {
        margin-top: 18px;
    }

    .md-name {
        font-size: 24px;
        line-height: normal;
    }

    .md-price {
        /*margin-top: 10px;*/
        font-size: 20px;
        line-height: normal;
    }

    .md-item.sold-out .md-img-cover:after {
        font-size: 24px;
    }
}

/*xp*/
#wrap.wrap--xp {
    padding: 0;
}

@media screen and (max-width: 1180px) {
    #wrap.wrap--xp {
        padding: 0;
    }
}

.xp-sec--top {
    position: relative;
    min-height: 100dvh;
    padding: 100px 50px 50px;
}

.xp-txt-wrapper {
    position: absolute;
    z-index: 20;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    margin: auto;
    max-width: 900px;
    text-align: center;
}

.xp-desc {
    font-size: 36px;
    pointer-events: none;
}

.xp-desc p {
    line-height: 110%;
}

.xp-btn {
    padding: 0 28px;
    margin: 60px auto 0;
    width: 240px;
    height: 85px;
    line-height: 85px;
    text-align: center;

    border-radius: 200px;
    background: var(--wh);

    color: var(--bk);
    font-size: 24px;
    font-weight: 500;

    text-transform: uppercase;

    cursor: pointer;
}

.xp-btn:hover {
    background: var(--r);
    color: var(--wh);
}

@media screen and (max-width: 1180px) {
    .xp-sec--top {
        min-height: 100dvh;
    }

    .xp-txt-wrapper {
        position: fixed;
        padding: 0;
        bottom: 24px;
        left: 24px;
        transform: translateX(0);
        text-align: left;
        width: calc(100% - 60px);
    }

    .xp-desc {
        font-size: 24px;
    }

    .xp-desc strong {
        display: block;
        font-size: 36px;
        margin-bottom: 20px;
    }

    .xp-btn {
        padding: 0 28px;
        margin: 20px 0 0;
        width: 120px;
        height: 48px;
        line-height: 48px;
        text-align: center;

        border-radius: 200px;
        background: var(--r);

        color: var(--wh);
        font-size: 18px;
        font-weight: 500;

        text-transform: uppercase;
    }
}

.s-list-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    margin-top: -100px;
}

@media screen and (max-width: 1180px) {
    .s-list-wrapper {
        display: none;
    }
}

.s-list {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.s-list .swiper {
    width: 100%;
    padding: 50px 0;
    overflow: visible;
}

.s-list .swiper-slide {
    width: 200px !important;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
}

.s-list .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.xp-sec--bottom {
    width: 100%;
    height: 100dvh;
}

.camp-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.camp-bg {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(10px);
    opacity: 0;
    transition: opacity 400ms ease;
}

.camp-wrapper.active .camp-bg {
    opacity: 1;
}

.camp-wrapper:after {
    content: '';
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.25) 5.65%, #000 85.68%);
}

.camp-list {
    position: absolute;
    z-index: 10;
    left: 0;
    bottom: 0;
    padding: 50px;
}

.camp-item {
    display: flex;
    align-items: baseline;
    column-gap: 10px;

    width: fit-content;
    height: 100px;

    cursor: pointer;
}

.camp-item.on {
    opacity: 0.5;
}

.camp-item > strong {
    font-size: 100px;
}

.camp-item > span {
    font-size: 36px;
}

@media screen and (max-width: 1180px) {
    .camp-list {
        padding: 24px;
        bottom: initial;
        top: calc(24px + 52px + 100px);
    }

    .camp-item {
        display: flex;
        align-items: baseline;
        column-gap: 3px;

        width: fit-content;
        height: 34px;

        cursor: pointer;
    }

    .camp-item > strong {
        font-size: 28px;
        font-weight: 500;
    }

    .camp-item > span {
        font-size: 12px;
    }
}

@media screen and (max-width: 1024px) {
    .xp {
        position: relative;
    }

    .xp-sec--top {
        height: 100dvh;
    }

    .xp-sec--bottom {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100dvh;
        background: var(--bk);
    }
}

.xp-panel-btn-list {
    display: none;
}

@media screen and (max-width: 1024px) {
    .xp-panel-btn-list {
        display: flex;
        column-gap: 6px;
        margin-top: 20px;
    }

    .xp-panel-btn {
        width: 57px;
        height: 3px;
        border-radius: 2px;

        background: var(--gr);

        opacity: 0.5;
    }

    .xp-panel-btn.on {
        opacity: 1;
    }
}

.xp-layer-popup {
    display: none;
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: var(--bk);
}

.xp-layer-popup-inner {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding: 145px 50px 50px;
}

.xp-item-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px 80px;
    padding-top: 60px;
    padding-bottom: 110px;
}

.xp-item {
    cursor: pointer;
}

.xp-item img {
    object-fit: cover;
}

.xp-item-info {
    margin-top: 30px;
}

.xi-year {
    color: var(--gr);
    font-size: 18px;
    line-height: 28px;
}

.xi-artist,
.xi-title {
    font-size: 28px;
    line-height: 36px;
}

.xp-layer-popup-btn-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 50px 50px;
    display: flex;
    justify-content: space-between;

    pointer-events: none;
}

.xp-layer-popup-btn {
    cursor: pointer;
    pointer-events: visible;
}

.xp-layer-popup-btn svg:last-child {
    display: none;
}

.xp-layer-popup-btn svg:first-child {
    display: block;
}

.xp-layer-popup-btn:hover svg:first-child {
    display: none;
}

.xp-layer-popup-btn:hover svg:last-child {
    display: block;
}

.xp-item-img-wrapper {
    position: relative;
}

.xp-item-dim {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.70);
    padding: 24px;
    display: flex;
    width: 100%;
    height: 100%;

    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;

    opacity: 0;
    /*pointer-events: none;*/

    transition: opacity 0.3s ease-in;
}

.xp-item:hover .xp-item-dim,
.xp-item.on .xp-item-dim {
    opacity: 1;
}

@media screen and (max-width: 1024px) {
    .xp-item:hover .xp-item-dim,
    .xp-item.on .xp-item-dim {
        opacity: 0;
    }
}

.xp-item-dim::-webkit-scrollbar {
    display: none;
}

.xp-detail-info {
    margin: auto 0 0;
    padding-bottom: 15px;
    width: 100%;
    border-bottom: 1px solid var(--wh);
}

.xd-row {
    display: grid;
    grid-template-columns: 82px 1fr;
    align-items: center;
    column-gap: 10px;
}

.xd-label {
    leading-trim: both;
    text-edge: cap;
    font-size: 18px;
    font-weight: 400;
}

.xd-cont {
    font-size: 18px;
}

.xd-page {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid var(--wh);
}

.xd-page:first-child {
    border-top: 0;
}

@media screen and (max-width: 1440px) {
    .xp-item-list {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 60px 40px;
        padding-top: 60px;
    }
}

@media screen and (max-width: 1180px) {
    .xp-item-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 60px 80px;
        padding-top: 60px;
    }
}

@media screen and (max-width: 1024px) {
    .xp-layer-popup-inner {
        width: 100%;
        height: 100%;
        overflow-y: auto;
        padding: 76px 24px 24px;
    }

    .xp-item-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 26px 8px;
        padding-top: 60px;
    }

    .xp-item img {
        object-fit: cover;
    }

    .xp-item-info {
        margin-top: 12px;
    }

    .xi-year {
        color: var(--gr);
        font-size: 12px;
        line-height: normal;
    }

    .xi-artist {
        font-size: 12px;
        line-height: normal;
    }

    .xi-title {
        font-size: 18px;
        line-height: normal;
    }

    .xp-layer-popup-btn-wrapper {
        padding: 0 24px 24px;
    }

    .xp-layer-popup-btn--top {
        display: none;
    }

    .xp-layer-popup-btn {
        width: 30px;
        height: 30px;
    }

    .xp-layer-popup-btn svg {
        width: 100%;
        height: auto;
    }
}

.xp-item-more-info-card-wrapper {
    display: none;
}

.xp-item-more-info-card-wrapper.on {
    display: none;
}

@media screen and (max-width: 1024px) {
    .xp-item-more-info-card-wrapper.on {
        display: flex;
    }

    .xp-item-more-info-card-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 50;
        width: 100%;
        height: 100%;

        justify-content: center;
        align-items: center;

        background: rgba(0, 0, 0, 0.70);
    }

    .xp-item-more-info-card {
        width: 310px;
        min-height: 370px;
        padding: 24px;
        border-radius: 0 0 24px 0;
        background: rgba(255, 255, 255, 1);
        box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.25);
    }

    .xd-info-list {
        margin: auto 0 0;
        padding-bottom: 10px;
        width: 100%;
        border-bottom: 0;

        max-height: 289px;
        overflow-y: auto;
    }

    .xd-label {
        leading-trim: both;
        text-edge: cap;
        font-size: 18px;
        font-weight: 400;
        color: var(--bk);
    }

    .xd-cont {
        font-size: 21px;
        color: var(--bk);
    }

    .xd-page {
        margin-top: 2px;
        padding-top: 16px;
        border-top: 1px solid var(--bk);
    }

    .xd-page:first-child {
        border-top: 0;
    }

    .xd-page:last-child {
        padding-bottom: 2px;
        border-bottom: 1px solid var(--bk);
    }
}

/* xp visual */
.xp-sec--top canvas {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
}

/*intro*/
.intro-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999999;
    background: var(--bk);
}

.intro canvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-progress {
    position: absolute;
    color: var(--gr);
    font-size: 72px;
}

.intro-wrapper.fade-out {
    opacity: 0;
    transition: opacity 300ms ease-in;
}

@media screen and (max-width: 1180px) {
    .intro-progress {
        font-size: 42px;
    }
}

.pointingjs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.pointer {
    width: 8px;
    height: 8px;
    border-radius: 100%;
    position: fixed;
    background-color: #fff;
    box-shadow: 0 0 30px #FFF, 0 0 3px #FFF;
}

.trail {
    border-radius: 100%;
}

.pointingjs svg {
    width: 100%;
    height: 100%;
    position: absolute;
}

#trail {
    filter: url(#glow);
    stroke: url(#linear);
    stroke-width: 2;
}

@media screen and (max-width: 1024px) {
    .pointingjs {
        width: 0;
        height: 0;
        z-index: -1;
        overflow: hidden;
    }

    .pointingjs * {
        opacity: 0;
    }
}

/*history*/
.ei-4-layout {
    padding-top: 120px;
}

.history-sec {
    padding-bottom: 240px;
    text-align: center;
}

.history-em {
    margin-bottom: 80px;
    font-size: 60px;
    font-weight: 700;
}

.history-p {
    font-size: 36px;
    font-weight: 500;
}

.history-p p + p {
    margin-top: 28px;
}

@media screen and (max-width: 1024px) {
    .ei-4-layout {
        padding-top: 100px;
    }

    .history-sec {
        padding-bottom: 120px;
        text-align: left;
    }

    .history-em {
        margin-bottom: 70px;
        font-size: 36px;
    }

    .history-p {
        font-size: 24px;
    }

    .history-p p + p {
        margin-top: 18px;
    }
}

.history-cards-wrapper {
    display: flex;
    justify-content: space-between;
    margin: auto;
    column-gap: 45px;
}

.history-card {
    padding: 80px 60px;
    border-radius: 0 0 70px 0;
    border: 10px solid #FFF;

    flex: 1;
}

.history-card-inner {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.history-sec--2.is-visible .history-card-inner {
    opacity: 1;
    transform: translateY(0);
}

@media screen and (max-width: 1440px) {
    .history-cards-wrapper {
        column-gap: 28px;
    }

    .history-card {
        padding: 40px 30px;
        border-radius: 0 0 35px 0;
        border: 6px solid #FFF;

        flex: 1;
    }
}

@media screen and (max-width: 1024px) {
    .history-cards-wrapper {
        flex-direction: column;
        row-gap: 20px;
    }

    .history-card {
        padding: 30px;
        border-radius: 0 0 25px 0;
        border: 4px solid #FFF;
        flex: 1;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .history-card.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

    .history-card-inner {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.hc-top {
    font-size: 120px;
}

.hc-em {
    margin: 60px 0;
    font-size: 42px;
}

.hc-cont {
    color: var(--gr);
    font-size: 28px;
}

@media screen and (max-width: 1024px) {
    .hc-top {
        font-size: 48px;
    }

    .hc-em {
        margin: 40px 0;
        font-size: 24px;
    }

    .hc-cont {
        color: var(--gr);
        font-size: 20px;
    }
}

.h-text-item {
    text-align: left;
}

.h-text-item + .h-text-item {
    margin-top: 80px;
}

.h-text-em {
    margin-bottom: 50px;
    font-size: 36px;
    text-decoration: underline;
}

.h-text {
    font-size: 28px;
}

@media screen and (max-width: 1024px) {
    .h-text-wrapper {
        margin-top: 70px;
    }

    .h-text-em {
        margin-bottom: 20px;
        font-size: 24px;
        text-decoration: underline;
    }

    .h-text {
        font-size: 20px;
    }
}

.history-circles-wrapper {
    margin: 160px 0 0;

    display: flex;
    justify-content: space-around;
}

.history-circles-wrapper {
    perspective: 1200px;
}

.history-circle {
    width: 500px;
    height: 500px;
    border-radius: 1000px;
    background: rgba(180, 180, 180, 0.10);
    box-shadow: 4px 4px 4px 0 #FFF inset;

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

    transform-style: preserve-3d;
    backface-visibility: hidden;
    transform: rotateY(180deg);
    transition: transform 0.8s ease;
}

@media screen and (max-width: 1440px) {
    .history-circle {
        width: 380px;
        height: 380px;
        border-radius: 1000px;
        background: rgba(180, 180, 180, 0.10);
        box-shadow: 4px 4px 4px 0 #FFF inset;

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

        transform-style: preserve-3d;
        backface-visibility: hidden;
        transform: rotateY(180deg);
        transition: transform 0.8s ease;
    }
}

@media screen and (max-width: 1200px) {
    .history-circle {
        width: 340px;
        height: 340px;
        border-radius: 1000px;
        background: rgba(180, 180, 180, 0.10);
        box-shadow: 4px 4px 4px 0 #FFF inset;

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

        transform-style: preserve-3d;
        backface-visibility: hidden;
        transform: rotateY(180deg);
        transition: transform 0.8s ease;
    }
}

@media screen and (max-width: 1024px) {
    .history-circles-wrapper {
        margin: 60px auto 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-items: center;
        gap: 20px;
        max-width: 340px;
    }

    .history-circle:first-child {
        grid-column: 1 / -1;
    }

    .history-circle {
        width: 160px;
        height: 160px;
        border-radius: 1000px;
        background: rgba(180, 180, 180, 0.10);
        box-shadow: 2px 2px 2px 0 #FFF inset;
        text-align: center;
    }
}

.history-sec--4.is-visible .history-circle {
    transform: rotateY(0deg);
}

.history-circle .hc-em {
    margin: 0 0 50px;
    font-size: 60px;
}

.history-circle .hc-text {
    font-size: 28px;
}

@media screen and (max-width: 1024px) {
    .history-circle .hc-em {
        margin: 0 0 16px;
        font-size: 24px;
    }

    .history-circle .hc-text {
        font-size: 14px;
    }
}

.history-timeline-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1680px;
    margin: auto;
}

.ht-line-wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ht-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--r);
    flex-shrink: 0;
}

.ht-dot--bottom {
    opacity: 0;
    transform: scale(0.3);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ht-dot--bottom.is-visible {
    opacity: 1;
    transform: scale(1);
}

.ht-line {
    width: 4px;
    flex: 1;
    background: var(--r);
    transform-origin: top center;
    transform: scaleY(0);
}

@media screen and (max-width: 1024px) {
    .ht-line-wrapper {
        position: absolute;
        top: 0;
        left: 132px;
        transform: translateX(0);
        width: 12px;
    }

    .ht-dot {
        width: 12px;
        height: 12px;
    }

    .ht-line {
        width: 2px;
    }
}

.history-timeline-item {
    padding: 40px;
    max-width: 700px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.history-timeline-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.history-timeline-item:nth-child(2n-1) {
    text-align: right;
    margin-left: 0;
    margin-right: auto;
}

.history-timeline-item:nth-child(2n) {
    text-align: left;
    margin-left: auto;
    margin-right: 0;
}

@media screen and (max-width: 1440px) {
    .history-timeline-item {
        max-width: 600px;
    }
}

@media screen and (max-width: 1200px) {
    .history-timeline-item {
        max-width: 500px;
    }
}

@media screen and (max-width: 1024px) {
    .history-timeline-item {
        padding: 0 0 80px;
        display: grid;
        grid-template-columns: 132px 1fr;
        column-gap: 20px;
    }

    .history-timeline-item:nth-child(2n-1) {
        text-align: left;
        margin-left: 0;
        margin-right: auto;
    }

    .history-timeline-item:nth-child(2n) {
        margin-left: 0;
        margin-right: auto;
    }
}

.ht-em {
    margin-bottom: 40px;
    font-size: 36px;
}

.ht-cont {
    font-size: 28px;
}

@media screen and (max-width: 1024px) {
    .ht-em {
        margin-bottom: 0;
        font-size: 24px;
    }

    .ht-cont {
        font-size: 20px;
    }
}

.history-infographic-wrapper {
    margin: 160px auto 0;
    max-width: 1480px;
    /*overflow: hidden;*/
}

.hi-row--center {
    margin: 80px 0;
}

.hi-row--top,
.hi-row--bottom {
    display: flex;
}

@media screen and (max-width: 1024px) {
    .history-infographic-wrapper {
        margin: 70px auto 0;
        overflow: hidden;
    }

    .hi-row--center {
        margin: 40px 0;
        padding: 0 40px;
        text-align: center;
    }
}

.hi-line-item {
    max-width: 600px;
}

.hi-line-item--r {
    margin-left: auto;
    margin-right: 0;
    text-align: left;
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.hi-line-item--l {
    text-align: right;
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.history-sec--6.is-visible .hi-line-item--r,
.history-sec--6.is-visible .hi-line-item--l {
    opacity: 1;
    transform: translateX(0);
}

.hi-line-em {
    color: var(--r);
    font-size: 42px;
}

.hi-line-item p {
    color: var(--gr);
    font-size: 28px;
}

@media screen and (max-width: 1024px) {
    .hi-line-em {
        color: var(--r);
        font-size: 24px;
    }

    .hi-line-item p {
        color: var(--gr);
        font-size: 14px;
    }
}

.history-detail-cont-wrapper {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    max-width: 1440px;
    margin: auto;
}

@media screen and (max-width: 1280px) {
    .history-detail-cont-wrapper {
        display: flex;
        flex-direction: column;
    }
}

.hg-c {
    width: 950px;
    height: 950px;
    border-radius: 450px;
    background: radial-gradient(50% 50% at 50% 50%, #A5000F 0%, rgba(165, 0, 15, 0.50) 80%, rgba(165, 0, 15, 0.00) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hg-c-s {
    width: 260px;
    height: 260px;
    border-radius: 529px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(180, 180, 180, 0.50) 0%, rgba(180, 180, 180, 0.50) 80%, rgba(180, 180, 180, 0.00) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 1024px) {
    .hg-c {
        width: 340px;
        height: 340px;
        border-radius: 450px;
        background: radial-gradient(50% 50% at 50% 50%, #A5000F 0%, rgba(165, 0, 15, 0.50) 80%, rgba(165, 0, 15, 0.00) 100%);
        display: flex;
        justify-content: center;
        align-items: center;
        margin: auto;
    }

    .hg-c-s {
        width: 110px;
        height: 110px;
        border-radius: 529px;
        background: radial-gradient(50% 50% at 50% 50%, rgba(180, 180, 180, 0.50) 0%, rgba(180, 180, 180, 0.50) 80%, rgba(180, 180, 180, 0.00) 100%);
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.hg-c-inner {
    display: flex;
    align-items: center;
    column-gap: 80px;
}

@media screen and (max-width: 1024px) {
    .h-graph--bottom {
        margin-top: 70px;
    }

    .hg-c-inner {
        display: flex;
        align-items: center;
        column-gap: 20px;
    }
}

.hg-b {
    position: relative;
    height: 72px;
    display: flex;
}

.hg-b + .hg-b {
    margin-top: 20px;
}

.hg-b-inner {
    font-size: 42px;
    height: 72px;
    line-height: 72px;
    text-align: left;
    padding-left: 30px;
}

.hg-b-num {
    height: 72px;
    line-height: 72px;
    font-size: 62px;
    padding-left: 30px;
}

@media screen and (max-width: 1024px) {
    .hg-b {
        position: relative;
        height: 38px;
        display: flex;
    }

    .hg-b-inner {
        font-size: 24px;
        height: 38px;
        line-height: 38px;
        text-align: left;
        padding-left: 10px;
    }

    .hg-b-num {
        height: 38px;
        line-height: 38px;
        font-size: 36px;
        padding-left: 20px;
    }
}

.hg-b--g .hg-b-inner {
    width: calc(100% - 100px);
    background: var(--r);
}

.hg-b--s .hg-b-inner {
    width: 150px;
    background: var(--gr);
}

.hg-c-num {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* sec--3 pop-in */
.hg-c {
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.h-graph--top.is-visible .hg-c {
    opacity: 1;
    transform: scale(1);
}

.hg-c-num--main {
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hg-c-s {
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.6s ease 0.35s, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.35s;
}

.h-graph--top.is-visible .hg-c-num--main,
.h-graph--top.is-visible .hg-c-s {
    opacity: 1;
    transform: scale(1);
}

/* sec--3 bar width */
.h-graph--bottom .hg-b-inner {
    width: 0 !important;
    transition: width 1s ease;
}

.h-graph--bottom.is-visible .hg-b--g .hg-b-inner {
    width: calc(100% - 100px) !important;
}

.h-graph--bottom.is-visible .hg-b--s .hg-b-inner {
    width: 150px !important;
}

/* sec--3 bar num */
.h-graph--bottom .hg-b-num {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.h-graph--bottom.is-visible .hg-b-num {
    opacity: 1;
}

.hg-c-num strong {
    font-size: 60px;
}

.hg-c-num span {
    font-size: 26px;
}

@media screen and (max-width: 1024px) {
    .hg-c-num strong {
        font-size: 36px;
    }

    .hg-c-num span {
        font-size: 20px;
    }
}

.history-partner-sec {
    overflow: hidden;
}

.partner-marquee {
    display: flex;
    width: max-content;
    animation: marquee 20s linear infinite;
}

.partner-list {
    display: flex;
    flex-shrink: 0;
    gap: 40px;
    padding-right: 40px;
}

.partner-item {
    width: 220px;
    height: 60px;
    flex-shrink: 0;
}

.partner-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media screen and (max-width: 1024px) {
    .partner-item {
        width: 100px;
        height: 30px;
        flex-shrink: 0;
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.hi-line-item {
    position: relative;
}

.hi-line-frame {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hi-line-frame svg {
    display: block;
    width: 100%;
    height: 100%;
}

.hi-line-item--r .hi-line-frame {
    top: -30px;
    left: -90px;
}

.hi-line-item--l .hi-line-frame {
    bottom: -30px;
    right: -90px;
}

.history-logo-visual {
    margin: 160px 0 0;
    width: 100%;
    aspect-ratio: 1920 / 1080;
    overflow: hidden;
}

.history-logo-visual canvas {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 1180px) {
    .history-logo-visual {
        aspect-ratio: 1080 / 1920;
    }

    .hi-row--top {
        padding-top: 40px;
    }

    .hi-row--bottom {
        padding-bottom: 40px;
    }
}
