/* background reset */
.background_1 {
    min-height: 1400px;
}
.container {
    overflow: visible;
}
body {
    background-color: #fff;
}

.title-box {
    position: relative;
    padding: 300px 0 30px;
    margin-left: var(--nav-left);
}
.title-box .title {
    font-family: 'BaiJamjureeMedium';
    font-weight: bold;
    font-size: 73px;
    color: #C9C9C9;
    letter-spacing: 2px;
}
.title-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 1px;
    background-color: #fff;
}
.anchor-nav {
    position: sticky;
    top: 100px;
    font-family: 'BaiJamjureeMedium';
    font-weight: bold;
    font-size: 33px;
    display: flex;
    gap: 45px;
    padding: 40px 0 40px var(--nav-left);
    z-index: 10;
    pointer-events: none;
}
.anchor-nav .anchor-item {
    color: #006DFF;
    padding-right: 5px;
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: none;
    pointer-events: initial;
}
.anchor-nav .anchor-item.active {
    color: #C9C9C9;
}
/*a.anchor-item:active, a.anchor-item:visited {*/
/*    color: #006DFF;*/
/*}*/

.work-container {
    position: relative;
    margin-top: 170px;
    padding: 0 var(--nav-left) 150px;
    overflow: hidden;
}
.first-anchor-img {
    aspect-ratio: 16 / 9;
}
.anchor-img img {
    min-width: 1000px;
    width: 100%;
}
.first-anchor-img .anchor-img {
    margin-top: 0px;
}
.first-wrok-text {
    margin-top: 38px;
}
.first-wrok-text .small-title {
    font-family: 'BaiJamjureeMedium';
    font-size: 19px;
    color: #0A0A4E;
}
.first-wrok-text .big-title {
    font-family: 'BaiJamjureeMedium', 'FZLTHJW';
    font-weight: bold;
    font-size: 60px;
    line-height: normal;
    color: #0A0A4E;
    letter-spacing: 1px;
    margin: 16px 0 18px;
}
.first-wrok-text .title {
    font-weight: 100;
    font-size: 24px;
    letter-spacing: 2px;
    color: #0A0A4E;
}

.work-list {
    margin-top: 80px;
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    gap: 80px;
    margin-bottom: 20px;
}
.work-item {
    position: relative;
    width: 100%;
    height: 100%;
    text-decoration: none;
}
.list-item_img {
    position: relative;
    padding-top: 110%;
    background-color: #eee;
    line-height: 1;
    margin-bottom: 18px;
}
.list-item_img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}
.listImg_sub-title {
    font-family: 'BaiJamjureeMedium';
    font-size: 19px;
    color: #0A0A4E;
    margin: 35px 0 12px;
}
.listImg_title {
    font-family: 'FZLTDHJW';
    font-size: 24px;
    line-height: normal;
    letter-spacing: 2.4px;
    color: #0A0A4E;
}
.listImg_desc {
    font-family: 'FZLTLHJW';
    font-size: 20px;
    line-height: normal;
    letter-spacing: 1px;
    color: #0A0A4E;
    margin-top: 10px;
}

.anchor-img {
    margin-top: 200px;
}
.anchor-img .sub-title {
    font-family: 'BaiJamjureeMedium', 'FZLTHJW';
    font-size: 19px;
    color: #0A0A4E;
    margin-top: 40px;
}
.anchor-img .title {
    font-family: 'FZLTDHJW';
    font-size: 34px;
    letter-spacing: 3px;
    color: #0A0A4E;
    margin: 16px 0 10px;
}
.anchor-img .desc {
    font-family: 'FZLTLHJW';
    font-size: 20px;
    letter-spacing: 1px;
    color: #0A0A4E;
}

.animate {
    transition: transform 0.15s linear;
}
/*.animate .enter {*/
/*    transform: translateY(0);*/
/*}*/
/*.animate .none {*/
/*    transform: translateY(0);*/
/*}*/

img.lazyLoad {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
img.loaded {
    opacity: 1;
}
