@charset "utf-8";

:root {

}


.inno-5-roll-neon {
    position: absolute;
    left: 0;
    top: 360px;
    width: 50%;
    height: auto;
    mix-blend-mode: color;
    z-index: -1;
}

.inno-5-roll-neon img {
    width: 100%;
    height: auto;
}


.lastest-board-wrap {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
}

.lastest-board-title {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 100px;
}

.lastest-board-title h1 {
    font-size: 66px;
    font-weight: 600;
}

.lastest-board-title-more {
    width: 100px;
    height: 100px;
    border-radius: 500px;
    border: 4px solid #fff;
    transition: all .3s;
}

.lastest-board-title-more.roll {
    border: 4px solid var(--signature-color);
}

.lastest-board-title-more a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.lastest-board-title-more p {
    font-size: 0;
}

.lastest-board-title-more span {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: block;
    width: 60%;
    height: 4px;
    background: #fff;
    transition: all .3s;
}

.lastest-board-title-more span:nth-child(3) {
    transform: rotate(90deg);
}

.lastest-board-title-more.roll span {
    background: var(--signature-color);
}

.lastest-board-contents {
    width: 75%;
    height: auto;
    overflow: auto;
}

.lastest-board-contents ul {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 76px;
}

.lastest-board-contents li {
    position: relative;
    min-width: 415px;
    width: 415px;
    height: 560px;
    overflow: hidden;
    cursor: pointer;
}

.lastest-board-contents-blind-full,
.lastest-board-contents-blind-point {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1;
    border-radius: calc(22px - 2px);
}

.lastest-board-contents-blind-full {
    background: rgba(0, 0, 0, .8);
    height: 0;
}

.lastest-board-contents-blind-point {
    background: linear-gradient(0deg, transparent, rgba(0,0,0,.85));
    height: 0;
}

.lastest-board-contents-img-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: calc(100% - 300px);
    border-radius: 22px;
    background: #0c0c0c url(./img/logo_ori_white.svg) center center no-repeat;
    background-size: 50% auto;
    overflow: hidden;
}

.lastest-board-contents-img {
    width: 100%;
    height: 100%;
}

.lastest-board-contents-img a {
    width: 100%;
    height: 100%;
    font-size: 0;
}

.lastest-board-contents-img img {
    width: auto;
    height: 100%;
}

.lastest-board-info-wrap {
    position: absolute;
    left: 0;
    top: calc(100% - 300px);
    width: 100%;
    height: 300px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 2;
}

.lastest-board-contents-subject {
    width: 100%;
    position: relative;
    z-index: 1;
}

.lastest-board-contents-subject p {
    font-size: 22px;
    font-weight: 600;
}

.lastest-board-contents-comment {
    position: relative;
    width: 100%;
    font-size: 18px;
    line-height: 24px;
    z-index: 1;
}

.lastest-board-contents-date {
    position: relative;
    width: 100%;
    font-size: 18px;
    color: #b2b2b2;
    z-index: 1;
}

.lastest-board-contents-roll-arrow {
    position: absolute;
    bottom: calc(415px - (415px - 30px));
    right: calc(415px - (415px - 30px));
    width: 36px;
    height: auto;
    z-index: 1;
    opacity: 0;
}

.lastest-board-contents-roll-arrow img {
    width: 100%;
    height: auto;
}