@charset "UTF-8";

.main {
    margin-top: 84px;
}

@media screen and (min-width: 769px) {
    .section {
        padding: 0;
        width: 90%;
        max-width: 1280px;
        margin: 0 auto;
        overflow: hidden;
    }
}

/* =================================
profile
====================================*/
.section--profile {
    margin-top: 30px;
}

.profile__img {
    display: block;
    width: 55%;
    max-width: 300px;
    max-width: 300px;
    object-fit: contain;
}

.profileName {
    width: 100%;
    margin-top: 30px;
}

.artistName {
    font-size: 2.4rem;
}


.englishName.A {
    display: none;
}

.englishName.B {
    font-family: var(--mainFont);
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 1.8px;
    margin-left: 2px;
}

.profile__txt {
    line-height: 1.8;
    margin-top: 20px;
}

.profile__links {
    display: flex;
    margin-top: 20px;
    align-items: center;
    gap: 30px;
}

.personalSite {
    display: inline-block;
    font-family: var(--mainFont);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    padding: 2px 12px 4px;
    border-radius: 5px;
    background-color: var(--primary-darkGray);
    color: var(--primary-white);
    border: solid 1px var(--primary-darkGray);
}

.personalSNS {
    display: flex;
    gap: 20px;
}

.sns {
    width: 25px;
    object-fit: contain;
}

/* pc 769px- */
@media screen and (min-width: 769px) {
    .main {
        margin-top: 45px;
    }

    .section--profile {
        overflow: hidden;
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }

    .profile__txtBlock {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: relative;
    }

    .profile__img {
        display: block;
        width: 300px;
    }

    /* .englishName.A {
        display: block;
        text-align: end;
        width:320px;
        position: absolute;
        font-family: var(--mainFont);
        font-size: 40px;
        font-weight: 600;
        color: var(--primary-yellow);
        top: 0;
        right: 0;
        letter-spacing: 3px;
    }

    .englishName.B {
        display: none;
    } */

    .profileName {
        margin-top: 60px;
    }

    .englishName.B {
        font-size: 1.6rem;
    }
    
    .artistName {
        font-size: 2.8rem;
    }

    .profile__txt {
        font-size: 1.2rem;
        line-height: 1.8;
        margin-top: 20px;
    }

    .personalSite {
        font-size: 1.5rem;
        font-weight: 500;
        letter-spacing: 2.4px;
        transition: .5s ease;
    }

    .personalSite:hover {
        background-color: var(--primary-white);
        color: var(--primary-darkGray);
        transition: .5s ease;
    }
    
}

/* =================================
invoved
====================================*/
.section--involved {
    overflow: hidden;
}

.involved__imgList {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.involved__imgList a{
    width: 50%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    flex-shrink: 0;
}

.involved__thumbnail {
    display: block;
    object-fit: cover;
}

.involved__txtList {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    font-weight: 500;
}

.involved__item {
    font-size: 0.9rem;
    border-bottom: 0.5px solid var(--primary-darkGray);
    padding: 6px;
}

.item__date {
    font-family: var(--numberFont);
    font-size: 0.8rem;
}

.item__topic {
    font-weight: 600;
}

.item__txt {
    font-size: 0.8rem;
}

@media screen and (min-width: 769px) {
    .section--involved {
        width: 90%;
        position: relative;
    }

    .involved__txtList {
        max-width: 860px;
        margin: 100px auto 100px;
    }

    .involved__item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px;
    }

    .item__date {
        display: block;
        width: 65px;
    }

    .item__topic {
        display: block;
        width: 340px;
    }

    .item__txt {
        display: block;
        width: 300px;
    }

    .section__topic--involved {
        width: 100%;
    }

}

/* =================================
production
====================================*/
.workScene {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
}

.work__link {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.youtubeImg {
    display: block;
    width: 50px;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%)
}

@media screen and (min-width: 769px) {
    .section--productionScene {
        padding: 0;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .leftzone--pc {
        width: 50%;
    }

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

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

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

    .popoutImg.pick {
        display: none;
    }

    .artists {
        display: flex;
        flex-direction: column;
        justify-content: end;
        gap: 10px;
        position: relative;
        height: auto;
        background: none;
        color: var(--primary-black);
        width: 100%;
        font-size: 2rem;
        font-weight: 500;
        letter-spacing: 2px;
        line-height: 1.2;
        text-align: right;
        top: auto;
        left: auto;
        z-index: 0;
        padding: 0 15% 0 0;
        transform: translateY(0);
        transition: 0.8s;
        mix-blend-mode: normal;
        backdrop-filter: none;
        overflow: hidden;
    }

    .artist__name a{
        display: inline-block;
        width: auto;
    }

    .artist__name.pick a{
        color: var(--primary-yellow);
        pointer-events: none;
        position: relative;
    }

    /* .artist__name.pick a::before {
        content: '◆';
        position: absolute;
        display: block;
        height: 100%;
        left: -25px;
    } */
}

/* =================================
latest
====================================*/
.latest__item {
    width: 100%;
    max-width: 560px;
    aspect-ratio: 16 / 9;
    
}

.latest__thumbnail {
    display: block;
    height: 100%;
}

.creditBlock {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding: 2px 8px 6px;
    font-size: 0.9rem;
}

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

.allBtn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.btn--all {
    display: block;
    text-align: center;
    border-radius: 5px;
    padding: 5px 15px;
    font-family: var(--numberFont);
    font-size: 1.4rem;
    background-color: var(--primary-darkGray);
    color: var(--primary-white);
}

@media screen and (min-width: 769px) {
    .section__topic--latestWorks {
        margin-bottom: 5px;
    }
    .latest__list {
        width: 100%;
        aspect-ratio: 6 / 1;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        overflow: hidden;
    }

    .latest__item {
        width: 25%;
        min-width: 25%;
        aspect-ratio: 16 / 9;
        object-fit: contain;
        overflow: hidden;
        transition: 0.8s;
        opacity: 1;
        
    }

    .latest__item img{
        pointer-events: all;
    } 

    .latest__item:hover {
        opacity: 0.7;
        transition: 0.8s;
    }


    .creditBlock {
        display: none;
    }

    .allBtn {
        width: 25%;
        margin-top: 0;
    }

    .btn--all {
        padding: 8px 20px;
        font-family: var(--numberFont);
        font-size: 1.6rem;
        border: 1px solid var(--primary-black);
        margin: 0 auto;
        transition: 0.5s ease;
    }

    .btn--all:hover {
        padding: 8px 20px;
        transition: 0.5s ease;
        background-color: var(--primary-white);
        color: var(--primary-darkGray);
    }
}
