@import url('reset.css');
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

@font-face {
    font-family: 'ConduitITC-Bold';
    src: url('../font/ConduitITC-Bold.woff2') format('woff2'),
    url('../font/ConduitITC-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root {
    --headerHeight: 96px;
}

@media screen and (max-width: 1088px) {
    :root {
        --headerHeight: 74px;
    }
}

html {
    scroll-behavior: smooth;
}

html,
body {
    font-family: 'Pretendard';
    font-style: normal;
    font-size: 16px;
    font-weight: 400;
    line-height: 180%;
    letter-spacing: -0.16px;
    color: #fff;
    background: #000;
}

.f-ex {
    font-family: 'ConduitITC-Bold';
}

a {
    display: inline-block;
    color: #fff;
}

.p {
    display: block;
}

.m {
    display: none;
}

.r {
    color: #EF6181;
}

.b {
    color: #8BB8F8;
}

strong {
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: -0.2px;
}

@media screen and (max-width: 1025px) {
    html,
    body {
        -ms-overflow-style: none; /* IE and Edge */
        scrollbar-width: none; /* Firefox */
    }

    html::-webkit-scrollbar,
    body::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera*/
        width: 0; /* Remove scrollbar space */
        height: 0;
        background: transparent; /* Optional: just make scrollbar invisible */
        -webkit-appearance: none;
    }

    .p {
        display: none;
    }

    .m {
        display: block;
    }
}

/*header*/
header {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: auto;
    padding: 10px 0 0;
    width: 100%;
    max-width: 1240px;
}

#logo {
    display: block;
}

@media screen and (max-width: 1025px) {
    .header-inner {
        padding: 0;
    }

    #logo img {
        width: auto;
        height: 74px;
    }
}

nav {
    display: flex;
}

.nav-item {
    padding: 0 2px;
    background: #000;
}

.nav-item a {
    display: block;
    padding: 0 14px;
    height: 44px;
    line-height: 44px;

    font-family: "ConduitITC-Bold" !important;
    letter-spacing: normal;
}

.nav-btn {
    display: none;
}

.nav-btn .icon-d {
    display: block;
}

.nav-btn svg {
    display: block;
}

.nav-btn.chk .icon-d {
    display: none;
}

.nav-btn .icon-x {
    display: none;
}

.nav-btn.chk .icon-x {
    display: block;
}

.nav-dim {
    display: none;
}

.detail-page .nav-dim {
    position: fixed;
    display: none;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}

@media screen and (max-width: 1025px) {
    nav {
        position: fixed;
        top: 44px;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        pointer-events: none;
    }

    nav.show {
        pointer-events: visible;
    }

    .nav-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;

        background: #000;
        cursor: pointer;
    }

    .nav-item {
        padding: 0;
        transform: translateX(100%);
    }

    .initial .nav-item:nth-child(1) {
        transition: transform 150ms linear;
    }

    .initial .nav-item:nth-child(2) {
        transition: transform 150ms linear 50ms;
    }

    .initial .nav-item:nth-child(3) {
        transition: transform 150ms linear 100ms;
    }

    .initial .nav-item:nth-child(4) {
        transition: transform 150ms linear 150ms;
    }

    .initial .nav-item:nth-child(5) {
        transition: transform 150ms linear 200ms;
    }

    .initial .nav-item:nth-child(6) {
        transition: transform 150ms linear 250ms;
    }

    .after .nav-item:nth-child(1) {
        transition: transform 150ms linear 250ms;
    }

    .after .nav-item:nth-child(2) {
        transition: transform 150ms linear 200ms;
    }

    .after .nav-item:nth-child(3) {
        transition: transform 150ms linear 150ms;
    }

    .after .nav-item:nth-child(4) {
        transition: transform 150ms linear 100ms;
    }

    .after .nav-item:nth-child(5) {
        transition: transform 150ms linear 50ms;
    }

    .after .nav-item:nth-child(6) {
        transition: transform 150ms linear;
    }

    nav.show .nav-item {
        transform: translateX(0);
    }

    .nav-item a {
        display: block;
        padding: 0 20px;
    }

    .nav-btn .icon-d {
        height: 18px;
    }

    .nav-btn .icon-x {
        height: 22px;
    }

    .nav-dim {
        display: none;
    }

    .nav-dim {
        position: fixed;
        display: none;
        z-index: 99;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
    }
}

/*footer*/
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: auto;
    padding: 40px 20px 60px;
    width: 100%;
    max-width: 1240px;
}

.site-info {
    display: flex;
    column-gap: 80px;
}

.logo-f img {
    width: auto;
    height: 36px;
}

.site-info p {
    font-size: 14px;
    font-weight: 500;
    line-height: 160%;
    letter-spacing: -0.14px;
}

.sns-list {
    display: flex;
    column-gap: 12px;
}

.sns-item {
    width: 44px;
    height: 44px;
    cursor: pointer;
}

@media screen and (max-width: 1025px) {
    .footer-inner {
        display: block;
        padding: 40px 20px;
    }

    .site-info {
        display: block;
    }

    .site-info p {
        margin: 40px 0;
    }

}

/*layout*/
.sec-inner {
    position: relative;
    margin: auto;
    padding: 0 20px 0;
    max-width: 1240px;
}

section:not(#hero) .sec-inner {
    padding: calc(var(--headerHeight) * 2) 20px 0;
}

.sec-top {
    position: relative;
    margin: auto;
    padding: calc(var(--headerHeight) * 2) 20px 0;
    max-width: 1240px;
}

.sec-title {
    margin-bottom: 48px;
    font-family: "ConduitITC-Bold" !important;
    font-size: 60px;
    font-weight: 700;

    letter-spacing: normal;
    line-height: normal;
}

.sec-title .kr {
    font-family: "Pretendard" !important;
    font-size: 44px;
}

.sec-sub-title {
    margin-top: -32px;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;

    line-height: 160%; /* 57.6px */
    letter-spacing: -0.36px;
}

.sec-sub-title + .detail-more {
    margin-top: 32px;
}

.sec-desc {
    display: none;
    position: absolute;
    top: calc(var(--headerHeight) * 2);
    right: 0;
    max-width: 470px;
    text-align: right;
}

@media screen and (max-width: 1025px) {
    section:not(#hero) .sec-inner {
        padding: calc(var(--headerHeight) * 1.5) 20px 0;
    }

    .sec-top {
        padding: calc(var(--headerHeight) * 1.5) 20px 0;
    }

    .sec-sub-title + .detail-more {
        margin-top: 24px;
    }

    .sec-desc {
        top: calc(var(--headerHeight) * 1.5);
    }
}

.img-wrap {
    position: relative;
    overflow: hidden;

    cursor: pointer;
}

.img-d {
    position: relative;
    z-index: 0;
}

.img-h {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;

    transition: opacity 250ms linear;
}

.img-wrap:hover .img-h {
    opacity: 1;
}

.btn {
    position: absolute;
    z-index: 2;
    bottom: 0;
    right: 0;
    height: 40px;
    line-height: 40px;
    padding: 0 24px 0 20px;
    text-align: left;

    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M20.6603 11.2562L13.1377 3.72364L11.7244 5.13879L17.541 10.9631L3.54076 10.9631L3.54076 12.9645L17.541 12.9645L11.7244 18.7888L13.1377 20.204L20.6603 12.6714L21.3669 11.9638L20.6603 11.2562Z' fill='white'/%3E%3C/svg%3E");
    background-position: right center;
    background-color: #000;

    transition: width 250ms linear;

    cursor: pointer;
}

.btn span {
    font-size: 14px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: -0.14px;
}

.btn-ex {
    height: 40px;
    line-height: 40px;
    padding: 0 36px 0 20px;
    text-align: left;

    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M20.6603 11.2562L13.1377 3.72364L11.7244 5.13879L17.541 10.9631L3.54076 10.9631L3.54076 12.9645L17.541 12.9645L11.7244 18.7888L13.1377 20.204L20.6603 12.6714L21.3669 11.9638L20.6603 11.2562Z' fill='black'/%3E%3C/svg%3E");
    background-position: calc(100% - 12px) center;
    background-color: #8BB8F8;

    transition: width 250ms linear;

    cursor: pointer;
}

.btn-ex span {
    color: #000;
    font-size: 14px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: -0.14px;
}

@media screen and (max-width: 1025px) {
    .btn {
        padding: 0 36px 0 20px;
        background-position: calc(100% - 12px) center;
    }
}

.btn-more {
    width: 183px;
}

.artist-img {
    cursor: pointer;
}

.artist-img:hover .btn-more {
    width: 133px;
}

@media screen and (max-width: 1025px) {
    .btn-more {
        width: 143px;
    }

    .artist-img:hover .btn-more {
        width: 143px;
    }
}

.btn-detail {
    width: 223px;
}

.program-item:hover .btn-detail {
    width: 173px;
}

@media screen and (max-width: 1025px) {
    .btn-detail {
        width: 183px;
    }

    .program-item:hover .btn-detail {
        width: 183px;
    }
}

#hero {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: calc(var(--vh, 1vh) * 100);
    overflow: hidden;
}

@media screen and (max-width: 1025px) {
    .sec-title {
        margin-bottom: 32px;
        font-size: 40px;
    }

    .sec-title .kr {
        font-size: 32px;
    }

    .sec-sub-title {
        margin-top: -24px;
        font-size: 24px;
    }

    .sec-desc {
        display: none;
    }
}

.about-top {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.about-top .about-cont {
    padding-right: 75px;
}

.about-top .about-cont strong {
    display: block;
    margin-bottom: 55px;
}

.about-top .about-cont:first-child .desc:last-child {
    margin-top: 51px;
}

.about-top .about-cont:last-child .desc:last-child {
    margin-top: 32px;
}

.about-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 160px;
}

.about-bottom .about-cont {
    padding-right: 75px;
}

@media screen and (max-width: 1025px) {
    .about-top {
        display: block;
    }

    .about-top .about-cont {
        padding-right: 0;
        margin-bottom: 0;
    }

    .about-cont + .about-cont {
        margin-top: 40px;
    }

    .about-top .about-cont strong {
        margin-bottom: 40px;
    }

    .about-top .about-cont:last-child strong {
        display: none;
    }

    .about-top .about-cont:first-child .desc:last-child {
        margin-top: 40px;
    }

    .about-top .about-cont:last-child .desc:last-child {
        margin-top: 40px;
    }

    .about-bottom {
        display: block;
        margin-top: 40px;
    }

    .about-bottom .about-cont {
        padding-right: 0;
    }

    .about-bottom .about-cont:last-child {
        margin-top: 12px;
    }
}

.artist-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 16px;
}

.artist-name {
    margin-bottom: 16px;
}

.artist-name strong {
    display: block;
}

.artist-name span {
    display: block;
}

@media screen and (max-width: 1025px) {
    .artist-list {
        display: block;
    }

    .artist-item + .artist-item {
        margin-top: 48px;
    }

    .artist-name strong {
        font-size: 16px;
        font-weight: 700;
        line-height: 180%;
        letter-spacing: -0.16px;
    }

    .artist-name span {
        font-size: 14px;
        line-height: 160%;
        letter-spacing: -0.14px;
    }

    .artist-img {
        margin: 0 -20px;
    }
}

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

@media screen and (max-width: 1025px) {
    #program .sec-inner {
        padding: calc(var(--headerHeight) * 1.5) 0 0 !important;
    }

    #program .sec-title {
        padding: 0 20px;
    }

    .program-list {
        display: block;
    }

    .program-item + .program-item {
        margin-top: 56px;
    }
}

.program-item-inner {
    position: relative;
    cursor: pointer;
    /*pointer-events: none;*/
}

.program-title {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
}

.program-title > span {
    display: block;
    padding-right: 20px;
    width: fit-content;
    height: 44px;
    line-height: 44px;
    background: #000;

    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.program-title > span + span {
    margin-top: -8px;
}

.program-desc {
    margin: 28px 0 0;
}

.program-desc span {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.14px;
}

@media screen and (max-width: 1025px) {
    .program-title > span {
        padding-left: 20px;
        height: 40px;
        line-height: 40px;
        font-size: 16px;
    }

    .program-desc {
        margin: 12px 0 0;
        padding: 0 20px;
    }

    .program-desc span {
        margin-top: 4px;
    }

}

.program-img .img-g {
    transform: scale(1);
    transition: transform 250ms linear;
}

.program-item-inner:hover .img-g {
    transform: scale(1.25);
}

.map--m {
    display: none;
}

.map-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 16px;
}

.map-title {
    height: 40px;
    line-height: 40px;
    padding: 0 12px 0 20px;
    text-align: left;

    color: #000;
    font-weight: 700;

    display: flex;
    justify-content: space-between;

    width: 100%;
}

.map-title span:last-child {
    font-size: 14px;
    letter-spacing: -0.14px;
}

.map-title.bg-b {
    background-color: #8BB8F8;
    /*background-repeat: no-repeat;*/
    /*background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cline x1='3' y1='12.0005' x2='21' y2='12.0005' stroke='black' stroke-width='2'/%3E%3Cline x1='12' y1='21.0005' x2='12' y2='3.00049' stroke='black' stroke-width='2'/%3E%3C/svg%3E");*/
    /*background-position: calc(100% - 12px) center;*/
}

.map-title.bg-r {
    background-color: #EF6181;
    /*background-repeat: no-repeat;*/
    /*background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cline x1='3' y1='12.0005' x2='21' y2='12.0005' stroke='black' stroke-width='2'/%3E%3Cline x1='12' y1='21.0005' x2='12' y2='3.00049' stroke='black' stroke-width='2'/%3E%3C/svg%3E");*/
    /*background-position: calc(100% - 12px) center;*/
}

.map-desc {
    margin-top: 24px;
    font-size: 14px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: -0.14px;
}

@media screen and (max-width: 1025px) {
    .map--m {
        display: block;
    }

    .map-tab {
        display: flex;
    }

    .map-tab-item {
        flex: 1;
        height: 40px;
        line-height: 40px;
        text-align: center;

        color: #000;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: -0.14px;
        cursor: pointer;

        opacity: 0.32;
    }

    .map-tab-item.bg-b {
        background: #8BB8F8;
    }

    .map-tab-item.bg-r {
        background: #EF6181;
    }

    .map-tab-item.on {
        opacity: 1;
    }

    .map-list {
        display: none;
    }

    .map-list--m {
        position: relative;
    }

    .map-item {
        background: #000;
    }

    .map-item--2 {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        opacity: 0;
    }

    .map-list--m.switch .map-item--2 {
        opacity: 1;
    }
}

#re {
    margin: calc(var(--headerHeight) * 2) 0 0;
    height: 317px;
    background: url('../img/re-bg.svg') center no-repeat;
    background-size: cover;
}

#re .sec-inner {
    padding: 0 20px !important;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    text-align: center;
}

.re-desc {
    margin-bottom: 40px;
}

.btn-re--sec {
    display: inline-block;
    width: 462px;
    height: 62px;
    line-height: 62px;
    background: #8BB8F8;

    text-align: center;

    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: -0.14px;

    cursor: pointer;
}

@media screen and (max-width: 1025px) {
    #re {
        margin: calc(var(--headerHeight) * 1.5) 0 0;
        height: 320px;
    }

    #re .sec-inner {
        max-width: 340px;
    }

    .re-desc {
        font-size: 14px;
        font-weight: 400;
        line-height: 160%;
        letter-spacing: -0.14px;
    }

    .btn-re--sec {
        width: 100%;
        height: 54px;
        line-height: 54px;
    }
}

.table-wrap {
    width: 100%;
}

@media screen and (min-width: 1024px) {
    .table-wrap {
        overflow: hidden;
    }
}

.table-cover {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.table-inner {
    padding-left: 140px;
    width: 100%;
    cursor: grab;

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

.table-inner::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
    background: transparent;
    -webkit-appearance: none;
}

.table-inner.active {
    cursor: grabbing;
}

.col {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 140px;
    background: #000;
    border-top: 1px solid #000;
}

.row {
    display: grid;
    grid-template-columns: repeat(14, 200px);
    width: fit-content;
    background: #000;
    border-bottom: 1px solid #000;
}

.row:first-child {
    border-top: 1px solid #000;
}

.cell {
    min-height: 102px;
    font-size: 16px;
    font-weight: 600;
    line-height: 180%;
    letter-spacing: -0.16px;
    border-right: 1px solid #000;
    background: rgba(255, 255, 255, 0.10);
}

.row--h > .cell {
    padding: 8px 12px;
    min-height: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 14px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: -0.14px;
}

.cell--c {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.08);
}

.col .cell:first-child {
    height: 39px;
    min-height: 39px;
}

.col .cell {
    min-height: 103px;
    border-bottom: 1px solid #000;
}

@media screen and (max-width: 1025px) {
    .table-wrap {
        position: relative;
    }

    .table {
        padding: 0 !important;
        width: 100%;
    }

    .table-cover {
        position: static;
        padding-left: 0;
        width: 100%;
    }

    .table-inner {
        width: 100%;
        overflow-y: auto;
        padding-left: 110px;
        padding-right: 0 !important;
    }

    .row {
        grid-template-columns: repeat(14, 200px);
    }

    .col {
        width: 110px;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .row--h {
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .row--h > .cell {
        text-align: center;
    }

    .cell {
        font-size: 14px;
        font-weight: 700;
        line-height: 160%;
        letter-spacing: -0.14px;
    }

    /*.cell--c i {*/
    /*    display: none;*/
    /*}*/
}

/**/
.cell-cont {
    padding: 8px 12px;
}

.cell-cont strong {
    display: block;
    margin-bottom: 2px;
    font-size: 14px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: -0.14px;
}

.cell-cont p {
    font-size: 12px;
    font-weight: 600;
    line-height: 160%;
    letter-spacing: -0.12px;
}

.cell--bk {
    background: #000;
}

.cell--bk * {
    color: #fff;
}

.cell--rd {
    background: #EF6181;
}

.cell--rd * {
    color: #000;
}

.cell--yl {
    background: #F9BC00;
}

.cell--yl * {
    color: #000;
}

.cell--bl {
    background: #8BB8F8;
}

.cell--bl * {
    color: #000;
}

.cell--gr {
    background: #6E6E6E;
}

.cell--gr * {
    color: #fff;
}

.cell--gr1 {
    background: #C8C8C8;
}

.cell--gr1 * {
    color: #000;
}

.cell--gr2 {
    background: #3C3C3C;
}

.cell--gr2 * {
    color: #fff;
}

.cell--p {
    background: #BA85D1;
}

.cell--p * {
    color: #000;
}

/*detail :: artist*/
.artist-nav {
    position: relative;
    margin-right: 20px;
}

.artist-name-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 12px;
    width: fit-content;
    height: 44px;

    background: #000;
    cursor: pointer;

    font-family: "ConduitITC-Bold" !important;
    font-weight: 700;
    letter-spacing: normal;
}

.artist-name-btn.kr {
    font-size: 12px;
}

.icon-n {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 12px;
    height: 42px;
}

.artist-nav.show .icon-n {
    transform: rotate(180deg);
}

.artist-name-btn .name {
    padding: 0 16px;
    height: 44px;
    line-height: 44px;
    display: block;
}

.artist-name-list {
    position: absolute;
    top: 44px;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    overflow: hidden;

    min-width: 194px;

    pointer-events: none;
}

.artist-nav.show .artist-name-list {
    pointer-events: visible;
}

.artist-name-list.project-name-list {
    min-width: 198px;
}

.artist-name-item a {
    display: block;
    padding: 0 28px 0 16px;
    width: fit-content;
    height: 44px;
    line-height: 44px;
    background: #000;

    font-family: "ConduitITC-Bold" !important;
    font-weight: 700;
    letter-spacing: normal;
}

.artist-name-item.kr a {
    font-size: 12px;
}

.artist-name-item {
    transform: translateX(100%);
}

.initial .artist-name-item:nth-child(1) {
    transition: transform 150ms linear;
}

.initial .artist-name-item:nth-child(2) {
    transition: transform 150ms linear 100ms;
}

.initial .artist-name-item:nth-child(3) {
    transition: transform 150ms linear 200ms;
}

.initial .artist-name-item:nth-child(4) {
    transition: transform 150ms linear 300ms;
}

.initial .artist-name-item:nth-child(5) {
    transition: transform 150ms linear 400ms;
}

.initial .artist-name-item:nth-child(6) {
    transition: transform 150ms linear 500ms;
}

.initial .artist-name-item:nth-child(7) {
    transition: transform 150ms linear 600ms;
}

.initial .artist-name-item:nth-child(8) {
    transition: transform 150ms linear 700ms;
}

.initial .artist-name-item:nth-child(9) {
    transition: transform 150ms linear 800ms;
}

.initial .artist-name-item:nth-child(10) {
    transition: transform 150ms linear 900ms;
}

.after .artist-name-item:nth-child(10) {
    transition: transform 150ms linear;
}

.after .artist-name-item:nth-child(9) {
    transition: transform 150ms linear 100ms;
}

.after .artist-name-item:nth-child(8) {
    transition: transform 150ms linear 200ms;
}

.after .artist-name-item:nth-child(7) {
    transition: transform 150ms linear 300ms;
}

.after .artist-name-item:nth-child(6) {
    transition: transform 150ms linear 400ms;
}

.after .artist-name-item:nth-child(5) {
    transition: transform 150ms linear 500ms;
}

.after .artist-name-item:nth-child(4) {
    transition: transform 150ms linear 600ms;
}

.after .artist-name-item:nth-child(3) {
    transition: transform 150ms linear 700ms;
}

.after .artist-name-item:nth-child(2) {
    transition: transform 150ms linear 800ms;
}

.after .artist-name-item:nth-child(1) {
    transition: transform 150ms linear 900ms;
}

.artist-nav.show .artist-name-item {
    transform: translateX(0);
}

@media screen and (max-width: 1025px) {
    .artist-nav {
        position: fixed;
        top: 44px;
        right: 0;
        margin-right: 0;
        display: flex;
        align-items: flex-end;
        flex-direction: column;
        pointer-events: none;
    }

    .artist-nav.show {
        pointer-events: visible;
    }

    .artist-name-btn {
        padding-right: 0;
        pointer-events: none;
        transform: translateX(100%);
    }

    .artist-name-btn .icon-n {
        display: none;
    }

    .artist-nav.show .artist-name-btn {
        transform: translateX(0);
    }

    .artist-name-list {
        position: static;
        min-width: 172px;
    }

    .artist-name-item a {
        padding: 0 20px;
    }

    .artist-name-item {
        transform: translateX(100%);
    }

    .initial .artist-name-btn {
        transition: transform 150ms linear;
    }

    .initial .artist-name-item:nth-child(1) {
        transition: transform 150ms linear 50ms;
    }

    .initial .artist-name-item:nth-child(2) {
        transition: transform 150ms linear 100ms;
    }

    .initial .artist-name-item:nth-child(3) {
        transition: transform 150ms linear 150ms;
    }

    .initial .artist-name-item:nth-child(4) {
        transition: transform 150ms linear 200ms;
    }

    .initial .artist-name-item:nth-child(5) {
        transition: transform 150ms linear 250ms;
    }

    .initial .artist-name-item:nth-child(6) {
        transition: transform 150ms linear 300ms;
    }

    .initial .artist-name-item:nth-child(7) {
        transition: transform 150ms linear 350ms;
    }

    .initial .artist-name-item:nth-child(8) {
        transition: transform 150ms linear 400ms;
    }

    .initial .artist-name-item:nth-child(9) {
        transition: transform 150ms linear 450ms;
    }

    .initial .artist-name-item:nth-child(10) {
        transition: transform 150ms linear 500ms;
    }

    .after .artist-name-item:nth-child(10) {
        transition: transform 150ms linear;
    }

    .after .artist-name-item:nth-child(9) {
        transition: transform 150ms linear 50ms;
    }

    .after .artist-name-item:nth-child(8) {
        transition: transform 150ms linear 100ms;
    }

    .after .artist-name-item:nth-child(7) {
        transition: transform 150ms linear 150ms;
    }

    .after .artist-name-item:nth-child(6) {
        transition: transform 150ms linear 200ms;
    }

    .after .artist-name-item:nth-child(5) {
        transition: transform 150ms linear 250ms;
    }

    .after .artist-name-item:nth-child(4) {
        transition: transform 150ms linear 300ms;
    }

    .after .artist-name-item:nth-child(3) {
        transition: transform 150ms linear 350ms;
    }

    .after .artist-name-item:nth-child(2) {
        transition: transform 150ms linear 400ms;
    }

    .after .artist-name-item:nth-child(1) {
        transition: transform 150ms linear 450ms;
    }

    .after .artist-name-btn {
        transition: transform 150ms linear 500ms;
    }

    .artist-nav.show .artist-name-item {
        transform: translateX(0);
    }
}

/**/
.detail-page {
    padding: 0;
}

.detail-page section + section {
    margin-top: 120px;
}

.detail-page footer {
    margin-top: 240px;
}

.detail-page .sec-inner {
    padding: 0 20px !important;
}

.sec-inner--ex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.sec-inner--ex > .detail-col:first-child {
    width: 520px;
}

.sec-inner--ex > .detail-col:last-child {
    width: 600px;
}

@media screen and (max-width: 1025px) {
    .detail-page {
        padding: 0;
    }

    .detail-page section + section {
        margin-top: 60px;
    }

    .detail-page footer {
        margin-top: 120px;
    }

    .detail-page .sec-inner {
        padding: 0 20px !important;
    }

    .sec-inner--ex {
        display: block;
    }

    .sec-inner--ex > .detail-col:first-child {
        width: 100%;
    }

    .sec-inner--ex > .detail-col:last-child {
        width: 100%;
    }
}

.detail-page .sec-title {
    margin-bottom: 32px;
}

.detail-em {
    position: relative;
    margin-bottom: 32px;
}

.detail-em strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: -0.2px;
}

.detail-col > p + p {
    margin-top: 32px;
}

.detail-more {
    margin-bottom: 32px;
}

.detail-more span {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 160%; /* 22.4px */
    letter-spacing: -0.14px;
}

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

.detail-info-item {
    display: flex;
    align-items: center;
    column-gap: 8px;
}

.detail-info-item .d-icon {
    display: block;
    height: 25px;
}

.artist-card-img {
    margin-bottom: 32px;
    max-width: 300px;
}

.artist-sns-list {
    display: flex;
    flex-direction: column;
}

.artist-sns {
    display: inline-flex;
    align-items: center;
    column-gap: 8px;
    width: fit-content;
    cursor: pointer;
}

.artist-sns > span:first-child {
    display: block;
    height: 25px;
}

.artist-sns + .artist-sns {
    margin-top: 12px;
}

.credit-wrap {
    margin-top: 80px;
}

.credit-title {
    line-height: normal;
}

.credit-title strong {
    display: block;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%; /* 22.4px */
    letter-spacing: -0.14px;
}

.credit-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 32px;
    width: 100%;
}

.credit-inner p {
    font-size: 16px;
    font-weight: 400;
    line-height: 180%;
    letter-spacing: -0.16px;
}

.credit-inner p span {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 22.4px */
    letter-spacing: -0.14px;
}

@media screen and (max-width: 1025px) {
    .detail-top .d-hero {
        margin: 0 -20px;
    }

    .detail-page .sec-title {
        margin-bottom: 24px;
        font-size: 40px;
    }

    .detail-col + .detail-col {
        margin-top: 60px;
    }

    .detail-em {
        margin-bottom: 24px;
    }

    .detail-em strong {
        display: block;
        font-size: 16px;
        font-weight: 700;
        line-height: 180%;
        letter-spacing: -0.16px;
    }

    .detail-page--program .detail-em strong {
        font-size: 20px
    }

    .detail-col > p + p {
        margin-top: 24px;
    }

    .detail-more {
        margin-bottom: 24px;
    }

    .artist-card-img {
        margin-bottom: 24px;
        max-width: 100%;
    }

    .credit-wrap {
        margin-top: 60px;
    }

    .detail-info-item {
        font-size: 14px;
        font-weight: 400;
        line-height: 160%;
        letter-spacing: -0.14px;
    }

    .artist-sns {
        font-size: 14px;
        font-weight: 400;
        line-height: 160%;
        letter-spacing: -0.14px;
    }
}

.detail-re {
    margin-top: 12px;
    padding-left: 32px;
    max-width: 248px;
}

.detail-re-item + .detail-re-item {
    margin-top: 24px;
}

.re-label {
    font-size: 16px;
    font-weight: 400;
    line-height: 180%;
    letter-spacing: -0.16px;
}

.re-label span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: -0.14px;
}

.re-btn {
    margin-top: 16px;
}

@media screen and (max-width: 1025px) {
    .detail-re {
        margin-top: 8px;
        max-width: 400px;
    }

    .detail-info-item .detail-info--ex {
        font-size: 16px;
        font-weight: 400;
        line-height: 180%;
        letter-spacing: -0.16px;
    }
}

/*add*/
#hero {
    position: relative;
}

#lottie {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 100%;
}

@media screen and (max-width: 1025px) {
    #lottie {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 120%;
    }
}

#about .desc,
#sponsor .desc {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.16px;
    line-height: 180%;
}

#about .desc > div {
    display: block;
}

#about .desc > div + div,
#sponsor .desc > div + div {
    margin-top: 12px;
}

#about .desc span,
#sponsor .desc span {
    font-weight: 600;
}

#about .desc i,
#sponsor .desc i {
    display: inline-block;
    padding-right: 4px;
    font-size: 14px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: -0.14px;
}

#about .desc i,
#sponsor .desc i {
    margin-top: 10px;
    display: block;
}

#about .desc i.ex,
#sponsor .desc i.ex {
    margin-top: 2px;
}

.detail-page .desc {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.16px;
    line-height: 180%;
}

.detail-page .desc > div {
    display: block;
}

.detail-page .desc > div + div {
    margin-top: 12px;
}

.detail-page .desc span {
    font-size: 14px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: -0.14px;
}

/*.re-btn,*/
/*.btn-detail {*/
/*    display: none !important;*/
/*}*/

.re-btn {
    display: none !important;
}

.detail-re-item .re-btn {
    display: block !important;
}

.extm {
    background: #000;
}

@media screen and (max-width: 1025px) {
    #timetable .map-desc {
        padding: 0 20px;
    }
}

.map-label-list {
    position: relative;
}

.map-label {
    width: 100%;
    height: 27px;
    line-height: 27px;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: -0.12px;
    text-align: center;

    color: #000;
}

.map-label.bg-b {
    background: #8BB8F8;
}

.map-label.bg-r {
    background: #EF6181;
}

.map-label--2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
}

.map-label-list.switch .map-label--2 {
    opacity: 1;
}

#sponsor {
    margin: 0 0 calc(var(--headerHeight) * 2);
}

.sponsor-cont-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 1025px) {
    #sponsor {
        margin: 0 0 calc(var(--headerHeight) * 1.5);
    }

    .sponsor-cont-wrap {
        display: block;
    }

    .sponsor-cont {
        padding-right: 0;
    }

    .sponsor-cont + .sponsor-cont {
        margin-top: 12px;
    }
}

#app {
    overflow-x: hidden;
}

.detail-add {
    margin-top: 32px;
}

.detail-add-item {
    display: flex;
    column-gap: 12px;
}

.detail-add-item + .detail-add-item {
    margin-top: 12px;
}

.detail-add-item span:first-child {
    font-weight: 700;
    line-height: 180%; /* 28.8px */
    letter-spacing: -0.16px;
}

.detail-add-item span:last-child {
    font-weight: 400;
    line-height: 180%; /* 28.8px */
    letter-spacing: -0.16px;
}

.detail-add .re-btn {
    display: block !important;
    margin-top: 48px;
    max-width: 320px;
    width: 100%;
}

@media screen and (max-width: 1025px) {
    .detail-add {
        margin-top: 24px;
    }

    .detail-add-item {
        display: flex;
        column-gap: 8px;
    }

    .detail-add-item + .detail-add-item {
        margin-top: 8px;
    }

    .detail-add .re-btn {
        margin-top: 40px;
        width: 100%;
    }
}

.dt-wrap {
    margin-top: 16px;
}

.dt-row + .dt-row {
    margin-top: 32px;
}

.dt-top {
    padding: 0 12px;
    height: 38px;
    line-height: 38px;
    border: 1px solid #000;
    background: rgba(255, 255, 255, 0.08);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.14px;
}

.dt-cell-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: rgba(255, 255, 255, 0.10);
}

.dt-cell-list--2 {
    grid-template-columns: repeat(2, 1fr);
}

.dt-cell-list--1-2,
.dt-cell-list--1 {
    display: block;
}

.dt-cell-list--4 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
}

.dt-cell-list--g {
    grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 1025px) {
    .dt-row + .dt-row {
        margin-top: 16px;
    }

    .dt-cell-list {
        display: block;
    }
}

.dt-cell-inner {
    height: 100%;
}

.dt-cell-top {
    padding: 0 12px;
    height: 34px;
    line-height: 34px;
    background: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: -0.14px;
    border-right: 1px solid #000;
}

.dt-cell-bottom {
    padding: 8px 12px;
    min-height: 85px;
    border-right: 1px solid #000;
}

.dt-cell-bottom span:first-child {
    display: block;
    color: #000;
    /*font-size: 14px;*/
    font-weight: 600;
    line-height: 140%; /* 22.4px */
    letter-spacing: -0.16px;
}

.dt-cell-bottom span + span {
    display: block;
    margin-top: 4px;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    line-height: 140%; /* 22.4px */
    letter-spacing: -0.16px;
}

.dt-cell-bottom em,
.dt-cell-bottom em {
    color: #000;
    display: block;
    margin-top: 12px;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%; /* 19.2px */
    letter-spacing: -0.12px;
}

.detail-col--prg .dt-cell-bottom span + span {
    margin-top: 12px;
}

.detail-col--prg .dt-cell-bottom {
    height: auto;
}

.dt-cell-btn {
    padding: 0 32px 0 12px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: -0.14px;

    text-align: left;

    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M20.6603 11.2562L13.1377 3.72364L11.7244 5.13879L17.541 10.9631L3.54076 10.9631L3.54076 12.9645L17.541 12.9645L11.7244 18.7888L13.1377 20.204L20.6603 12.6714L21.3669 11.9638L20.6603 11.2562Z' fill='white'/%3E%3C/svg%3E");
    background-position: calc(100% - 8px) center;
    background-color: #000;

    cursor: pointer;
}

.dt-row.dt-row--r .dt-cell-bottom {
    background: #EF6181;
}

.dt-row.dt-row--b .dt-cell-bottom {
    background: #8BB8F8;
}

.dt-row.dt-row--y .dt-cell-bottom {
    background: #F9BC00;
}

.dt-row.dt-row--g .dt-cell-bottom {
    background: #C8C8C8;
}

.detail-col--prg .dt-row.dt-row--r .dt-cell {
    background: #EF6181;
}

.detail-col--prg .dt-row.dt-row--b .dt-cell {
    background: #8BB8F8;
}

.detail-col--prg .dt-row.dt-row--g .dt-cell {
    background: #C8C8C8;
}

.detail-col--prg .dt-row.dt-row--y .dt-cell {
    background: #F9BC00;
}

.detail-col--prg .dt-row.dt-row--g .dt-cell .dt-cell-top {
    color: #000;
}

.detail-col--prg .dt-row.dt-row--g .dt-cell:first-child .dt-cell-top {
    color: #ffff;
}

.dt-cell-list--4 .dt-cell:first-child,
.dt-cell-list--4 .dt-cell:nth-child(2) {
    border-bottom: 1px solid #000;
}

.dt-cell-list--4 .dt-cell .dt-cell-bottom {
    border-right: 0;
}

.dt-cell-list--4 .dt-cell {
    border-right: 1px solid #000;
}

@media screen and (max-width: 1025px) {
    .dt-cell-bottom {
        border-right: 0;
    }

    .detail-col--prg .dt-cell {
        border-right: 0;
    }

    .detail-col--prg .dt-row.dt-row--g .dt-cell .dt-cell-top {
        color: #ffff;
    }

    .detail-col--prg .dt-row.dt-row--g .dt-cell:first-child .dt-cell-top {
        color: #ffff;
    }

    .dt-cell-list--4 .dt-cell {
        min-height: 120px;
    }

    .dt-cell-list--4 .dt-cell:nth-child(3) {
        border-bottom: 1px solid #000;
    }

}

.dt-row.dt-row--r .dt-cell-btn {
    color: #EF6181;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M20.6603 11.2562L13.1377 3.72364L11.7244 5.13879L17.541 10.9631L3.54076 10.9631L3.54076 12.9645L17.541 12.9645L11.7244 18.7888L13.1377 20.204L20.6603 12.6714L21.3669 11.9638L20.6603 11.2562Z' fill='%23EF6181'/%3E%3C/svg%3E");
    background-position: calc(100% - 8px) center;
}

.dt-row.dt-row--b .dt-cell-btn {
    color: #8BB8F8;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M20.6603 11.2562L13.1377 3.72364L11.7244 5.13879L17.541 10.9631L3.54076 10.9631L3.54076 12.9645L17.541 12.9645L11.7244 18.7888L13.1377 20.204L20.6603 12.6714L21.3669 11.9638L20.6603 11.2562Z' fill='%238BB8F8'/%3E%3C/svg%3E");
    background-position: calc(100% - 8px) center;
}

.dt-row.dt-row--y .dt-cell-btn {
    color: #F9BC00;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M20.6603 11.2562L13.1377 3.72364L11.7244 5.13879L17.541 10.9631L3.54076 10.9631L3.54076 12.9645L17.541 12.9645L11.7244 18.7888L13.1377 20.204L20.6603 12.6714L21.3669 11.9638L20.6603 11.2562Z' fill='%23F9BC00'/%3E%3C/svg%3E");
    background-position: calc(100% - 8px) center;
}

.dt-row.dt-row--g .dt-cell-btn {
    color: #C8C8C8;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M20.6603 11.2562L13.1377 3.72364L11.7244 5.13879L17.541 10.9631L3.54076 10.9631L3.54076 12.9645L17.541 12.9645L11.7244 18.7888L13.1377 20.204L20.6603 12.6714L21.3669 11.9638L20.6603 11.2562Z' fill='%23C8C8C8'/%3E%3C/svg%3E");
    background-position: calc(100% - 8px) center;
}

.dt-wrap + .detail-em {
    margin-top: 40px;
}

@media screen and (max-width: 1025px) {
    .dt-wrap + .detail-em {
        margin-top: 40px;
    }
}

.d-hero .p {
    display: block;
}

.d-hero .m {
    display: none;
}

@media screen and (max-width: 1025px) {
    .d-hero .p {
        display: none;
    }

    .d-hero .m {
        display: block;
    }
}

.detail-imgs {
    display: flex;
    flex-direction: column;

    row-gap: 16px;
}

@media screen and (max-width: 1025px) {
    .detail-imgs {
        display: flex;
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
    }

    .detail-imgs img {
        width: 80%;
    }
}

.detail-em.detail-em--label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.label-list {
    display: flex;
    column-gap: 12px;
}

@media screen and (max-width: 1025px) {
    .detail-em.detail-em--label {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .label-list {
        flex-direction: column;
        row-gap: 4px;
    }
}

.label-item {
    display: flex;
    align-items: center;
    column-gap: 6px;
}

.label-item span {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%; /* 22.4px */
    letter-spacing: -0.14px;
}

.label-item span:first-child {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.label-item--b span:first-child {
    background: #8BB8F8;
}

.label-item--r span:first-child {
    background: #EF6181;
}

.label-item--y span:first-child {
    background: #F9BC00;
}

.p-name,
.ps-name {
    display: flex;
    align-items: center;
    column-gap: 4px;
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%; /* 22.4px */
    letter-spacing: -0.14px;
}

.p-name i,
.ps-name i {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0.5px solid #000;
}

.p-name.b i,
.ps-name.b i {
    background: #8BB8F8;
}

.p-name.r i,
.ps-name.r i {
    background: #EF6181;
}

.p-name.y i,
.ps-name.y i {
    background: #F9BC00;
}

.p-name span:first-child {
    display: block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    color: #fff;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: -0.12px;
    background: #000;
    border-radius: 50%;
    text-align: center;
}

.p-name-list,
.ps-name-list {
    padding: 16px 12px;
}

.p-name-list {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0 32px;
}

.p-name-col {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

@media screen and (max-width: 1025px) {
    .p-name-list {
        display: grid;
        grid-template-columns: none;
        grid-template-rows: repeat(2, 1fr);
        gap: 12px 32px;
    }

    .p-name-col {
        display: flex;
        flex-direction: row;
        gap: 12px 32px;
    }

    .p-name {
        flex: 1;
    }
}

.ps-name-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 32px;
}
.dt-cell-list--6 .dt-cell,
.dt-cell-list--g .dt-cell {
    border-right: 1px solid #000;
}
.dt-cell-list--6 .dt-cell-inner,
.dt-cell-list--g .dt-cell-inner {
    position: relative;
}

.dt-cell-list--6 .dt-cell-bottom,
.dt-cell-list--g .dt-cell-bottom {
    padding: 8px 12px 42px;
    border-right: 0;
}

.dt-cell-line {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 12px 12px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 30px;
}

.dt-cell-line span {
    margin: 0 !important;
}

.dt-cell-line > span:first-child {
    font-size: 12px;
}

.dt-cell-line > span:last-child {
    cursor: pointer;
}

.dt-cell-img {
    background: #000;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
}

.dt-cell-list--d .dt-cell-bottom,
.dt-cell-list--4-1 .dt-cell-bottom {
    min-height: 174px;
}

.dt-cell-list .dt-cell-bottom--h {
    min-height: 210px;
}

.dt-cell-bottom--pc {
    display: flex;
    flex-direction: column;
}

.dt-cell-bottom--pc em {
    margin: auto 0 0;
}

@media screen and (max-width: 1025px) {
    .dt-cell-list--d .dt-cell-inner,
    .dt-cell-list--4-1 .dt-cell-inner {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .detail-col--prg .dt-row .dt-cell-list--d .dt-cell,
    .detail-col--prg .dt-row .dt-cell-list--4-1 .dt-cell {
        background: #000;
    }

    .dt-cell-list--d .dt-cell-btn,
    .dt-cell-list--4-1 .dt-cell-btn {
        margin-top: -40px;
    }

    .dt-cell-list--d .dt-cell,
    .dt-cell-list--4-1 .dt-cell {
        border-bottom: 1px solid #000;
    }

    .dt-cell-list--d .dt-cell-bottom,
    .dt-cell-list--4-1 .dt-cell-bottom {
        min-height: 130px;
    }

    .dt-cell-list .dt-cell-bottom--h {
        min-height: 130px;
    }
}

.dt-cell-inner--r,
.dt-cell-inner--l {
    display: flex;
}

.dt-cell-inner--l {
    flex-direction: row-reverse;
}

.dt-cell-inner--r .dt-cell-bottom,
.dt-cell-inner--l .dt-cell-bottom {
    flex: 1;
}

.dt-cell-inner--r .dt-cell-img,
.dt-cell-inner--l .dt-cell-img {
    width: 127px;
    background: #fff;
}

.dt-cell-inner--r .dt-cell-img img,
.dt-cell-inner--l .dt-cell-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dt-cell-list--1-2 .dt-cell {
    border-bottom: 1px solid #000;
}

.dt-cell-img {
    overflow: hidden;
}

.detail-more.p {
    display: block
}

.detail-more.m {
    display: none
}

@media screen and (max-width: 1025px) {
    .detail-page--img .detail-img {
        display: none;
    }

    .detail-page--program .detail-col .detail-en strong {
        font-size: 20px;
    }

    .detail-more.p {
        display: none
    }

    .detail-more.m {
        display: block
    }

    .detail-img {
        margin: 0 -20px;
    }
}

.detail-info--chk {
    margin-top: 32px;
}

.s-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 20px;
}

#sponsor .s-wrap + .s-wrap {
    margin-top: 44px;
}

.s-wrap .r {
    display: block;
    margin: 0;
    width: 100%;
    color: #8BB8F8;
}

.s-logo {
    display: block;
}

.s-logo img {
    width: auto;
    height: 100%;
}

.s-logo-1 {
    height: 32px;
}

.s-logo-2 {
    height: 29px;
}

.s-logo-3 {
    height: 32px;
}

.s-logo-4 {
    height: 22px;
}

.s-logo-5 {
    height: 43px;
}

.s-logo-6 {
    height: 23px;
}

.s-logo-7 {
    height: 43px;
}

.s-logo-8 {
    height: 32px;
}

.s-logo-9 {
    height: 13px;
}

.s-logo-10 {
    height: 26px;
}

.s-logo-11 {
    height: 17px;
}

.s-logo-12 {
    height: 42px;
}

.s-logo-13 {
    height: 18px;
}

.s-logo-14 {
    height: 50px;
}

.s-logo-15 {
    height: 28px;
}

.s-logo-16 {
    height: 25px;
}

.s-logo-17 {
    height: 60px;
}

.s-logo-18 {
    height: 48px;
}

.s-logo-19 {
    height: 20px;
}

.s-logo-20 {
    height: 32px;
}

.s-logo-21 {
    height: 24px;
}

.s-logo-22 {
    height: 28px;
}

.s-logo-23 {
    height: 32px;
}

.s-logo-24 {
    height: 15px;
}

.s-logo-25 {
    height: 26px;
}

.s-logo-26 {
    height: 32px;
}

.s-logo-221 {
    height: 48px;
}

.s-logo-222 {
    height: 22px;
}

.s-logo-223 {
    height: 21px;
}

.s-logo-33 {
    height: 28px;
}

#sponsor .desc i,
#sponsor .desc .ex {
    margin-top: 0;
}

.detail-page--text .dt-cell-img,
.detail-page--text .dt-cell-bottom {
    border-right: 0;
}

.detail-page--text .dt-cell {
    border-right: 1px solid #000;
}

.dt-cell-img {
    border-top: 1px solid #000;
}

.dt-cell-top + .dt-cell-img {
    border-top: 0;
}

@media screen and (max-width: 1025px) {
    #sponsor .desc i {
        display: block;
        padding-bottom: 16px;
        width: 100%;
    }

    .dt-cell-img {
        border-right: 0;
    }
}

.detail-page--mg .dt-cell-inner--r .dt-cell-img,
.detail-page--mg .dt-cell-inner--l .dt-cell-img {
    border-top: 0;
    border-bottom: 0;
}

.dt-cell-list.dt-cell-list--pl {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 1025px) {
    .dt-cell-list.dt-cell-list--pl {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
}

.dt-cell-list.dt-cell-list--pl .dt-cell {
    position: relative;
    border-right: 1px solid #000;
}

.dt-cell-list.dt-cell-list--pl .dt-cell-img {
    border-right: 0;
}

.dt-cell-list.dt-cell-list--pl .dt-cell-bottom {
    padding: 8px 12px 50px;
    border-right: 0;
}

.dt-cell-list.dt-cell-list--pl .dt-cell-line {
    padding: 0 12px 12px;
    align-items: flex-end;
}

.dt-cell-line > span:last-child {
    max-height: 24px;
}

.dt-cell.b {
    background: #8BB8F8;
}

.dt-cell.r {
    background: #EF6181;
}

.dt-cell.y {
    background: #F9BC00;
}

.detail-more.m + .detail-info {
    margin-top: 32px;
}

.sec-sub-title + .detail-info {
    margin-top: 32px;
}

@media screen and (max-width: 1025px) {
    .detail-more.m + .detail-info {
        margin-top: 0;
    }

    .sec-sub-title + .detail-info {
        margin-top: 24px;
    }

    .dt-cell-inner--l .dt-cell-img {
        border-left: 1px solid #000;
    }

    .detail-page--mg .dt-cell-inner--r .dt-cell-img {
        border-right: 1px solid #000;
    }
}

#sponsor .desc i {
    padding-right: 0;
}

.s-logo + i {
    margin-left: 14px;
}

@media screen and (max-width: 1025px) {
    .s-logo + i {
        margin-left: 0;
    }
}

.embed-wrap {
    margin: 0 auto 32px;
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.embed-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 1025px) {
    .embed-wrap {
        margin: 0 auto 24px;
    }
}