@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400&family=Noto+Sans+KR&display=swap');
@import url('reset.css');

/*common*/
@font-face {
    font-family: 'abc';
    src: url('../font/abcdiatype-regular-trial.woff2') format('woff2'),
    url('../font/abcdiatype-regular-trial.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

:root {
    --bk: #2B2E34;
    --wh: #fff;
    --gr: #9A9B9F;
    --gr2: #AFB0B3;
    --bg: #F5F5F5;
    --ow: #F1F1F2;
    --p: #FF0000;

    --fz: 15px;
    --fzO: 18px;
    --fzL: 20px;

    --lh: 130%;

    --gap: 20px;

    --header: 137px;
}

@media screen and (max-width: 1088px) {
    :root {
        --fzO: 13px;

        --gap: 15px;

        --header: 50px;
    }
}

html,
body {
    color: var(--bk);
    font-family: 'abc', 'Noto Sans KR', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: var(--fz);
    line-height: normal;
    letter-spacing: 0.02em;
    background: var(--p);
}

a,
button {
    display: inline-block;
    color: var(--bk);
    font-family: 'abc', 'Noto Sans KR', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: var(--fz);
    letter-spacing: 0.02em;
    line-height: normal;
}

@media (hover: none) {

}

.kr {
    font-size: calc(var(--fzL) - 1px) !important;
    letter-spacing: normal;
    word-break: auto-phrase;
}

.jp {
    font-family: 'abc', 'Noto Sans JP', sans-serif;
    font-size: calc(var(--fzL) - 2px) !important;
    letter-spacing: normal;
}

.pc {
    display: block;
}

.m {
    display: none;
}

@media screen and (max-width: 1024px) {
    .kr {
        font-size: calc(var(--fz) - 1px) !important;
        letter-spacing: normal;
    }

    .jp {
        font-family: 'abc', 'Noto Sans JP', sans-serif;
        font-size: calc(var(--fz) - 2px) !important;
        letter-spacing: normal;
    }

    .pc {
        display: none;
    }

    .m {
        display: block;
    }
}

/*header*/
header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0 var(--gap);
    background: var(--wh);
}

.header--g {
    background: var(--bg);
}

.header-inner {
    padding: 28px 0;
    width: 100%;
    text-align: center;
    border-bottom: 0.5px solid var(--bk);
}

.logo {
    display: inline-block;
    font-size: var(--fzL);
}

.main-desc {
    padding-top: 15px;
    line-height: var(--lh);
    letter-spacing: 0.02em;
    white-space: pre-wrap;
}

@media screen and (min-width: 1025px) {
    .main-desc {
        margin-top: 0 !important;
    }
}

.nav--m {
    display: none;
}

.nav-btn {
    display: inline-block;
    font-size: var(--fzL);
    cursor: pointer;
}

.nav-btn + .nav-btn {
    margin-left: 44px;
}

.nav-btn.on {
    color: var(--p)
}

@media screen and (max-width: 1024px) {
    .header-inner {
        position: relative;
        padding: 15px 0 10px;
        min-height: 50px;
    }

    .header-inner:after {
        content: '';
        display: block;
        position: absolute;
        z-index: 1;
        top: 0;
        width: 100%;
        height: 49px;
        background: var(--wh);
    }

    .header--g .header-inner:after {
        background: var(--bg);
    }

    .logo {
        position: relative;
        z-index: 2;
    }

    .main-desc {
        position: relative;
        z-index: 0;
        margin-top: 0;
        /*transition: margin-top 100ms linear;*/
    }

    .nav--m {
        display: block;
        position: sticky;
        z-index: 90;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 0 var(--gap) 10px;
        background: var(--wh);
    }

    .nav--m-inner {
        padding-top: 8px;
        border-top: 0.5px solid var(--bk);
        text-align: center;
    }

    .nav-btn + .nav-btn {
        margin-left: 50px;
    }
}

/*footer*/
.footer--m {
    display: none;
}

.footer {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-top: 0.5px solid var(--bk);
}

@media screen and (max-width: 1024px) {
    .footer--m {
        position: relative;
        z-index: 100;
        display: block;
        padding: 0 var(--gap) 10px;
        /*border-top: 0.5px solid var(--bk);*/
        background: var(--wh);

    }

    .footer--m .copyright {
        padding-top: 8px;
        border-top: 0.5px solid var(--bk);
    }

    .footer {
        display: none;
    }
}

.copyright {
    font-size: var(--fzL);
}

@media screen and (max-width: 1024px) {
    .sp {
        height: 100%;
        overflow: hidden;
    }

    .sp .footer--m {
        display: none;
    }
}

/*layout*/
#app {
    width: 100%;
    background: var(--wh);
}

#app.g {
    display: none;
}

body.acc #app.g {
    display: block;
}

.container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    min-height: calc(var(--vh, 1vh) * 100);
}

.container > section:first-child {
    border-right: 0.5px solid var(--bk);
}

section {
    padding: 0 var(--gap);
    height: calc(var(--vh, 1vh) * 100);
    overflow: hidden;
}

.section-inner {
    padding-top: calc(var(--header) + var(--gap));
}

.section-title {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 84px;
    font-size: var(--fzL);
}

.section-title-label {
    width: 128px;
}

.section-title-text {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: var(--gap);
    width: calc(100% - 128px);
}

.section-title-text > div:first-child {
    flex: 1;
    line-height: var(--lh);
    word-break: auto-phrase;
}

@media screen and (min-width: 1025px) {
    .container {
        position: relative;
    }
}

@media screen and (max-width: 1024px) {
    .container {
        position: relative;
        z-index: 1;
        display: block;
    }

    .container > section:first-child {
        border-right: 0;
    }

    section {
        height: auto;
        overflow: visible;
    }

    .section-inner {
        padding-top: calc(var(--header) + var(--gap));
    }

    .detail-visual .section-inner {
        /*padding-top: calc(var(--header) + 6px);*/
        padding-top: 0;
    }

    .section-title {
        display: flex;
        flex-wrap: wrap;
        padding-bottom: 10px;
        margin-bottom: 10px;
        font-size: var(--fz);
        border-bottom: 0.5px solid var(--bk);
    }

    .section-title-label {
        width: 95px;
    }

    .section-title-text {
        flex: 1;
        display: block;
        width: calc(100% - 95px);
    }
}

.back-btn {
    position: fixed;
    top: calc(var(--header) + var(--gap));
    left: var(--gap);
    font-size: var(--fzL);
    line-height: var(--lh);
    cursor: pointer;
}

.detail-desc .section-inner,
.index .section-inner {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.detail-desc,
.index {
    display: grid;
    grid-template-rows: 1fr auto;
}

@media screen and (max-width: 1024px) {
    .detail-desc,
    .index {
        display: block;
    }

    .index {
        position: fixed;
        z-index: 50;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 0 var(--gap);
        transform: translateY(100%);
        background: var(--wh);
        transition: transform 350ms linear;
    }

    .index.on {
        transform: translateY(0);
    }

    .index .section-inner {
        padding-bottom: 45px;
    }

    .g .index .section-inner {
        padding-bottom: 0;
    }
}

.detail-desc-wrap,
.index-wrap {
    height: 100%;
    overflow-y: auto;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.detail-desc-wrap::-webkit-scrollbar,
.index-wrap::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera*/
}

.index-list {
    padding-bottom: 90px;
}

.container.list .index-list {
    padding-top: calc(90px + 26px);
}

@media screen and (max-width: 1024px) {
    /*.list .index {*/
    /*    position: static;*/
    /*    transform: translateY(0);*/
    /*}*/
    .index-wrap {
        height: calc(100% - 45px);
    }

    .index-list {
        padding-bottom: 45px;
    }

    .container.list .index-list {
        padding-top: 0;
    }

    .list .back-btn {
        display: none;
    }
}

.index-item {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 3px;
    border-bottom: 0.5px solid var(--bk);
}

.index-item + .index-item {
    margin-top: 6px;
}

.index-item.index-item--last {
    margin-top: 90px;
}

.index-item * {
    font-size: var(--fzL);
}

.index-cell--label {
    width: 128px;
}

.index-cell--title {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: var(--gap);
    width: calc(100% - 128px);
}

.index-cell--title .title {
    flex: 1;
    word-break: auto-phrase;
    line-height: var(--lh);
}

@media (hover: hover) {
    .index-list .index-item:hover * {
        color: var(--p);
    }
}

.category {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 200px;
}

.category-item {
    height: fit-content;
}

.category-item:after {
    content: ',\00a0';
}

.category-item:last-child:after {
    content: '';
}

.gDesc {
    position: relative;
    margin-top: 14px;
    padding-left: 128px;
    line-height: var(--lh);
}

.icon-gDesc {
    position: absolute;
    top: 0;
    left: 117px;
}

.group + .group {
    margin-top: 90px;
}

@media screen and (max-width: 1024px) {
    .index-item {
        padding-bottom: 6px;
    }

    .index-item * {
        font-size: var(--fz);
    }

    .index-cell--label {
        width: 95px;
    }

    .index-cell--title {
        flex: 1;
        display: block;
        width: calc(100% - 95px);
    }

    .category {
        justify-content: flex-start;
        max-width: 100%;
    }

    .gDesc {
        margin-top: 10px;
        padding-left: 95px;
    }

    .group + .group {
        margin-top: 45px;
    }

    .icon-gDesc {
        position: absolute;
        top: 0;
        left: 85px;
    }
}

.detail-visual .section-inner,
.visual .section-inner {
    height: 100%;
    overflow-y: auto;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.detail-visual .section-inner::-webkit-scrollbar,
.visual .section-inner::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera*/
}

.visual-list {
    display: flex;
    flex-wrap: wrap;
    column-gap: var(--gap);
    row-gap: calc(var(--gap) + 2px);
    padding-bottom: var(--gap);
}

.detail-visual-list {
    padding-bottom: var(--gap);
}

.visual-item {
    display: block;
    width: calc(50% - 10px);
}

.detail-visual-item + .detail-visual-item {
    margin-top: var(--gap);
}

.detail-visual-item p {
    display: inline-block;
    margin-top: 10px;
    color: var(--gr2);
    line-height: var(--lh);
}

.detail-visual-item p:empty {
    display: none;
}

.detail-visual-item img {
    width: 100%;
    max-height: 906px;
    object-fit: contain;
    object-position: left;
}

@media screen and (max-width: 1024px) {
    .visual {
        min-height: 100vh;
    }

    .visual-list {
        padding-bottom: var(--gap);
        display: block;
    }

    .visual-item {
        width: 100%;
    }

    .visual-item + .visual-item {
        margin-top: calc(var(--gap) + 8px);
    }

    .visual-list,
    .detail-visual-list {
        /*padding-bottom: calc(var(--header) + 6px);*/
        padding-bottom: 45px;
    }

    .detail-visual-item span {
        margin-top: 8px;
    }

    .detail-visual-item img {
        width: 100%;
        max-height: none;
        object-fit: fill;
        height: auto;
    }
}

.img-cover {
    display: block;
    position: relative;
    overflow: hidden;
}

.img-cover.true {
    border: 0.5px solid var(--gr2);
}

.image-item.true {
    width: fit-content;
    border: 0.5px solid var(--gr2);
}

.img-cover img:last-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 150ms linear;
}

.visual-info {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
}

@media (hover: hover) {
    .visual-item:hover .img-cover img:last-child {
        opacity: 1;
    }

    .visual-item:hover .visual-info {
        color: var(--p);
    }
}

.visual-info > span:first-child {
    flex: 1;
    width: calc(100% - 40px);
    overflow: hidden;
    text-overflow: ellipsis;
}

.visual-info > span:last-child {
    width: 80px;
    text-align: right;
}

/*about*/
.about {
    position: absolute;
    z-index: 50;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(100%);
    background: var(--wh);
    transition: transform 350ms linear;
}

.container > .about {
    display: none;
}

.container > .about.on {
    display: none;
}

.detail-desc > .section-inner > .about,
.index > .section-inner > .about {
    display: block;
}

.detail-desc > .section-inner > .about.on,
.index > .section-inner > .about.on {
    transform: translateY(0);
}

.about-title {
    padding-bottom: 3px;
    margin-bottom: 6px;
    border-bottom: 0.5px solid var(--bk);
    font-size: var(--fzL);
}

.about-group + .about-group {
    margin-top: 90px;
}

.about-group:last-child .index-cell--about span {
    text-align: left;
}

.about-wrap {
    padding-bottom: var(--gap);
    height: 100%;
    overflow-y: auto;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.about-wrap::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera*/
}

.index-cell--about {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: var(--gap);
    width: calc(100% - 128px);
}

.index-cell--about > span {
    display: inline-block;
}

.index-cell--about > span:first-child {
    max-width: calc(100% - 300px);
    flex: 1;
    line-height: var(--lh);
}

.index-cell--about > span:last-child {
    max-width: 350px;
    text-align: right;
}

@media screen and (max-width: 1024px) {
    .about {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 0 var(--gap);
        transform: translateY(100%);
        background: var(--wh);
        transition: transform 350ms linear;
    }

    .detail-desc > .section-inner > .about,
    .index > .section-inner > .about {
        display: none;
    }

    .detail-desc > .section-inner > .about.on,
    .index > .section-inner > .about.on {
        display: none;
    }

    .container > .about {
        display: block;
    }

    .container > .about.on {
        display: block;
        transform: translateY(0);
    }

    .about .section-inner {
        height: calc(var(--vh, 1vh) * 100 - 45px);
    }

    .about-group + .about-group {
        margin-top: 45px;
    }

    .index-cell--about {
        display: block;
        width: calc(100% - 95px);
    }

    .index-cell--about > span {
        display: block;
        line-height: var(--lh);
    }

    .index-cell--about > span:first-child {
        max-width: none;
    }

    .index-cell--about > span:last-child {
        text-align: left;
        line-height: normal;
    }
}

/*detail*/
.detail-desc-list {
    padding-bottom: 90px;
}

.detail-desc-item {
    padding-bottom: 14px;
    padding-left: 128px;
    font-size: var(--fzL);
    line-height: var(--lh);
    border-bottom: 0.5px solid var(--bk);

    white-space: pre-wrap;
}

.detail-desc-item.kr,
.detail-desc-item.jp {
    line-height: normal;
}

.detail-desc-item + .detail-desc-item {
    margin-top: 18px;
}

.detail-desc-item:last-child {
    border-bottom: none;
}

@media screen and (max-width: 1024px) {
    .detail-desc-list {
        padding-bottom: 45px;
    }

    .detail-desc-item {
        padding-bottom: 10px;
        padding-left: 95px;
        font-size: var(--fz);
    }

    .detail-desc-item + .detail-desc-item {
        margin-top: 10px;
    }

    .container.detail .detail-desc-item.kr,
    .container.detail .detail-desc-item.jp {
        margin-top: 9px;
        padding-bottom: 9px;
    }
}

.caption {
    display: inline-block;
    white-space: pre-wrap;
}

.video-item {
    position: relative;
    width: fit-content;
    cursor: pointer;
}

.video-item img {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.video-item video {
    display: block;
    width: 100%;
    height: auto;
    max-height: 906px;
    object-fit: contain;
    object-position: left;
}

.video-item .video-component {
    display: flex;
    column-gap: 2px;
    position: absolute;
    z-index: 0;
    right: var(--gap);
    bottom: var(--gap);
    mix-blend-mode: difference;
}

.video-item .video-component > div {
    color: #fff;
    font-size: calc(var(--fz) - 1px);
}

.video-item .icon-play {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    cursor: pointer;
    opacity: 0.65;
}
