@charset "UTF-8";
.main {
    position: relative;
    margin-top: 45px;
    min-height: 85vh;
}

.page-works--title {
    position: absolute;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--primary-black);
    font-family: var(--mainFont);
    top: 60px;
    left: var(--contentPadding);
}

@media screen and (min-width: 768px) {
    .main {
        margin-top: 70px;
    }
    .page-works--title {
        top: 20px;
        font-size: 4rem;
        left: var(--contentPaddingPc);
    }
}

/* =================================
category--sp
====================================*/
.category__list {
    position: fixed;
    top: 120px;
    right: 15px;
    z-index: 10;
    color: var(--primary-black);
    background-color: rgba(249, 249, 249, .5);
    backdrop-filter: blur(3px);
    cursor: default;
}

.works-filter {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 7px;
    padding: 0 5px;
}

.category {
    font-family: var(--mainFont);
    font-size: 1.2rem;
    letter-spacing: 2px;
    cursor: pointer;
    line-height: 1;
    transition: color .2s;
}

.category.is-active {
    color: var(--primary-yellow);
}

@media screen and (min-width: 768px) {
    .page-works-top {
        width: 100%;
        max-width: 1280px;
        margin: 0 auto;
        position: relative;
    }

    .category__list {
        position: absolute;
        top: 50px;
        right: var(--contentPaddingPc);
    }

    .category {
        font-size: 1.5rem;
    }
}

@media screen and (min-width: 1280px) {
    .category__list {
        right: auto;
        left: 50%;
        transform: translateX(183%);
    }
}

/* =================================
works
====================================*/

.section--works {
    padding: 0;
}

.page-works__list {
    padding: 100px var(--contentPadding) 30px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
}

@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-overflow-scrolling: touch) {
    .page-works__list {
      flex-direction: column-reverse;
    }
  }
}

.page-works__list::after {
    display: block;
    content: '';
    width: 89%;
    position: absolute;
    height: .8px;
    background-color: var(--primary-darkGray);
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.page-works__item {
    display: flex;
    padding: 2px 0;
    align-items: center;
    gap: 3%;
    width: 100%;
    border-top: solid .8px var(--primary-darkGray);
}

.page-works__item .page-works__link {
    display: block;
    min-width: 50%;
    width: 50%;
}

.page-works__sumbnail {
    aspect-ratio: 2.35 / 1;
    object-fit: cover;
}

.page-works__creLink {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 47%;
    aspect-ratio: 2.35 / 1;
}

.creditBlock {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
}

.work__title {
    width: 100%;
}

.work__date {
    font-size: .8rem;
    font-family: var(--numberFont);
}

.dummy {
    display: none;
}

@media screen and (min-width: 768px) {
    .page-works__list {
        padding: 80px var(--contentPaddingPc) 0;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: .3%;
    }

    .page-works__list::after {
        display: none;
    }

    .page-works__item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        height: fit-content;
        gap: 3%;
        width: 33%;
        border-top: none;
        padding: 0;
    }

    .page-works__item .page-works__link {
        display: block;
        min-width: none;
        width: 100%;
        overflow: hidden;
    }

    .page-works__sumbnail {
        aspect-ratio: 16 / 9;
        object-fit: cover;
        transition: .8s ease;
    }

    .page-works__item a:hover .page-works__sumbnail {
        transition: .8s ease;
        transform: scale(115%);
    }

    .page-works__creLink {
        display: block;
        width: auto;
        aspect-ratio: auto;
    }

    .creditBlock {
        display: flex;
        flex-direction: column;
        font-size: 0.9rem;
        padding: 2px 3px 12px;
    }

    .work__title {
        width: 100%;
    }

    .work__date {
        font-size: .8rem;
        font-family: var(--numberFont);
    }

    .dummy {
        display: none;
    }
}

@media screen and (min-width: 768px) {
    .page-works-artists {
        margin: 0 auto;
        width: 100%;
        max-width: 1280px;
        display: flex;
        justify-content: flex-end;
        position: relative;
    }

    .rightZone {
        min-width: 300px;
        max-width: 400px;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .imgAria {
        width: 100%;
        aspect-ratio: 1 / 1;
        position: relative;
    }

    .popoutImg {
        position: absolute;
        width: 70%;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        opacity: 0.15;
        transition: 1s ease;
        z-index: 0;
    }

    .artists {
        display: flex;
        flex-direction: column;
        justify-content: end;
        gap: 10px;
        font-size: 2rem;
        font-weight: 500;
        letter-spacing: 2.2px;
        line-height: 1.2;
        text-align: right;
        transition: 0.8s;
        padding-right: 15%;
    }

}