@charset "utf-8";
/* ============common============ */
html {
    font-size: 62.5% ;
}
:root {
    --primary-black: #1A1A1A;
    --primary-grey: #dedede;
    --primary-white: #FDFDFD;
    --primary-padding_sp: 4.2% ;
    --primary-padding_hp: 4.166667% ;
}
body{
    width: 100vw;
    height: 100vh;
    /* font-family: "Noto Sans JP", sans-serif; */
    font-family: "Jost", sans-serif;
    /* font-weight: 200; */
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: var(--primary-black);
    background-color: var(--primary-white);
}

/*----------- menubar -----------*/

.menu{
    z-index: 10000;
    position: fixed;
    display: flex;
    width: 100%;
    height: 4.629vh;
}
.space{
    display: flex;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    width: 200px;
    color: var(--primary-white);
    background-color: var(--primary-black);
}
.profile__icon{
    display: block;
    width: 30px;
    height: 30px;
    margin-right: 10px;
}
.btn__top{
    display: flex;
    position: relative;
    /* left:0%;
    top: 50%;
    transform:translateY(-50%);
    font-size: 1.8rem; */
    width: 200px;
    height: 100%;
    justify-content: center;
    align-items: center;
    transition:all 0.4s; 
    background-color: var(--primary-black);
}
.btn__top::after{
    content: '';
    position: absolute;
    border-right: solid 1px;
    height: 35px;
    right: 0%;
}
.btn__top:hover{
    background-color: var(--primary-white);
    color:var(--primary-black)
}
.Top{
    font-size: 1.8rem;
}
.menuBar{
    width: 100%;
    height: 100%;
    background-color: var(--primary-black);
    display: flex;
    justify-content: center;
    /* position: relative; */
}
.menuBar__btn{
    gap: 8px;
    height: 100%;
    display: flex;
    align-items: center;

}
.btn__works,
.btn__about,
.btn__contact{
    border-radius: 500px;
    width: 180px;
    height: 75%;
    font-size: 1.6rem;
    display: flex;
    justify-content: center;
    align-items: center;

}
.btn__works{
    background-color: var(--primary-white);
}
.btn__top,
.btn__about,
.btn__contact{
    color: var(--primary-white);
    transition:all 0.4s; 
}
.btn__about:hover{
    background-color: var(--primary-white);
    color: var(--primary-black);
}
.btn__contact:hover{
    background-color: var(--primary-white);
    color: var(--primary-black);
}
/* ----------menu--sp---------- */
@media screen and (max-width:1000px) {
    .menu{
        display: none;
    }
}
/*============main============*/
.main{
    position: relative;
    width: 100vw;
    height: 100vh;
    background-color: var(--primary-white);
}
/* ----------playlist---------- */

.playlist{
    z-index: 9000;
    position: fixed;
    bottom:0;
    left: 0;
    padding: 2.9629vh 16px;
    width: 16vw;
    height: 95.371vh;
    min-width: 280px;
    background-color: var(--primary-white);
    border-right: solid 1px var(--primary-grey);
    /* transform: translateX(-17vw); */
}
.playlist__title--container{
    transition: all 0.4s;
    font-size: 2.4rem;
    display: block;
    width: fit-content;
}
.playlist__title--container:hover{
    transform: translateX(8px);
}
.playlist__title{
}
.playlist__type{
    font-size: 1.8rem;
    margin-top: 32px;
}
.hp__playlist{
    display: flex;
    flex-direction: column;
    gap: 24px;
    /* margin-left: 8px; */
    margin-top: 24px;
}


.hp__item {
    font-size: 1.4rem;
    display: block;
    width: fit-content;
    transition: all 0.4s;
}

.hp__item:hover {
    transform: translateX(8px);
}
.hp__item--this{
    position: relative;
    left: 8px;
    pointer-events: none;
    animation: fadeInOut 3s infinite;
    }
    @keyframes fadeInOut {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.2;
    }
    100% {
        opacity: 1;
    }
}
@media screen and (max-width:1000px) {
    .playlist{
       display:none;
    }
}
/* ----------worksInfo---------- */
.works__info{
    position: fixed;
    right: 0;
    bottom: 0;
    /* margin-top: 4.629vh; */
    width: 28vw;
    height: 95.371vh;
    background-color: var(--primary-white);
    border-left: solid 1px var(--primary-grey);
    transform: translateX(100%);
    transition: 0.4s;
    z-index: 9000;
}
.works__info.active{
    transform: translate(0vw,0);
}
.works__info--container{
    padding: 2.9629vh 0;
    height: 89%;
    display: flex;
    flex-direction: column; /* ← 縦に並べる */
    align-items: center;
    gap: 24px;
    overflow-y: scroll;
    /* background-color: aqua; */
}
.info__close--pc--container{
    width: 100%;
    height: 10.5548vh;
    padding: 0 2.0833vw 0 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.info__close--pc{
    width: 9.375vw;
    height: 4.629vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    background-color: var(--primary-black);
    color: var(--primary-white);
    border-radius: 500px 500px 500px 500px;
    cursor: pointer;
}
.works__info--container::-webkit-scrollbar,
.works__img--scroll::-webkit-scrollbar {
    width: 8px;
}
.works__info--container::-webkit-scrollbar-thumb,
.works__img--scroll::-webkit-scrollbar-thumb {
    background-color: var(--primary-grey);
    border-radius: 10px;
}
.works__info--container::-webkit-scrollbar-track,
.works__img--scroll::-webkit-scrollbar-track {
    background-color: var(--primary-white);
    width: 8px;
}
.personaPara{
    line-height: 1.8;
}
.personaSubti{
    font-size: 1.6rem;
    font-weight: 600;
}
.works__info--item{
    font-size: 2.4rem;
    width: 100%;
    font-weight: 600;
    padding: 24px 2.0833vw 0;
}
.works__info--item1st{
    padding-top: 0;
}
.works__info--para{
    font-size: 1.6rem;
    line-height: 1.8;
    width: 100%;
    padding: 0 2.0833vw;
}
.outline__close--container,
.outline--title{
    display: none;
}

@media screen and (max-width:1000px) {
    .works__info{
        width: 100vw;
        height: 100vh;
        border-left: none;
        padding: 0 0 0 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        transform: translateX(100vw);
    }
    .info__close--pc--container{
        display: none;
    }
    .works__info--container{
        padding: 2.0833vh 0 0 0;
    }
    .outline--title{
        display: flex;
        font-size: 4rem;
        width: 100%;
        padding: 0px 2.0833vw 2vh;
    }
    .outline__close--container{
        width: 100%;
        height: 11.1666vh;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        padding: 0 2.0833vw 0;
    }
    .outline__close{
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.6rem;
        border-radius: 500px;
        background-color: var(--primary-black);
        color: var(--primary-white);
        width: 30vw;
        height: 7vh;
    }
}
/* ----------worksImg---------- */
.works__img--container{
    position: relative;
    width: 100%;
    /* height: 1000vh; */
}

.works__img{
    width: 100%;
    display: flex;
    top:0;
    left:0;
    position: absolute;
    z-index: 7000;
}
.works__space{
    width: 16vw;
    min-width: 280px;
    height: 100%;
}
.works__img--sticky{
    width: 100%;
    height: 100vh;
    display: flex;
    position: fixed;
    top:0;
    z-index: 8000;
}
.works__img--flex--sticky{
    width: 100%;
    height: 100%;
}
.flex--sticky--container{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 7.5919vh 2.0833vw 1.1994vh 2.0833vw;
    /* padding: 7.5919vh 2.0833vw 0; */
}
.sticky--container--above,
.sticky--container--below{
    display: flex;
    justify-content: space-between;
}
.info__btn{
    width: 9.375vw;
    height: 4.629vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    background-color: var(--primary-black);
    color: var(--primary-white);
    border-radius: 500px 500px 500px 500px;
    cursor: pointer;
}
.works__img--flex{
    /* padding-top: 4.629vh; */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* padding-left: 2.0833vw; */
    /* padding-left: 16vw; */
    
    /* background-color: rgb(174, 255, 127); */
}
.works__img--title{
    font-size: 6rem;
    width: 100%;
    /* padding: 0vh 2.0833vw 0; */
    mix-blend-mode: difference;
}
.works__img--title--sp{
    display: none;
}
.works--lead{
    display: none;
}
.works__mockUp--container{
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: aqua; */
}
.works__mockUp{
    width: 65%;
    transform: translate(0,5%);
}
.works__img--info{
    /* position: relative; */
    /* border-top: solid 1px var(--primary-grey); */
    width: 55%;
    font-size: 1.4rem;
    /* margin: 16px 16px; */
    padding: 0px 2.0833vw 0;
}

.works__img--info1st{
    padding-top: 0;
}

.scrollMark--text{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-grey);
    border-radius: 500px;
    border: solid 1px var(--primary-grey);
    width: 15vh;
    height: 15vh;
    right:5%;
    bottom:5%;
    font-size: 1.4rem;
    writing-mode: vertical-rl;
}
/* .scrollMark--border{
    position: absolute;
    background-color: var(--primary-black);
    width: 1px;
    height: 100px;
    right:10%;
    bottom:10%;
    transform: translate(-9px, 108px);
} */
.works__img--item{
    width:55%;
    padding: 2vh 2.0833vw 4vh;
    filter: drop-shadow(0 1px 3px #848484);
}
.works__img--titleSpan{
    font-size: 2.4rem;
    
}
.works__img--itemSp{
    filter: drop-shadow(0 1px 3px #848484);
    width: 30%;
}
.menu__btn,
.info__btn--sp,
.name__sp{
    display: none;
}
.copy{
    padding: 2vh 2.0833vw 4vh;
}
@media screen and (max-width:1000px) {
    .works__space{
        display: none;
    }
    /* .works__img--container{
    position: relative;
    width: 100%;
    height: 1300vh;
} */
    .flex--sticky--container{
        padding: 0 0 0 0;
    }
    .info__btn{
        display: none;
    }
    .works__img--flex{
    /* padding-top: 4.629vh; */
    align-items: center;
    }
    .works__img--title--container{
        display: flex;
        justify-content: space-between;
        display: none;
    }
    .works__img--title{

    }
    .works__img--titleSpan{
        font-size: 1.6rem;
    }
    .works--lead{
        /* width: 50%; */
        font-size: 1.6rem;
        display: block;
    }
    .works__mockUp--container{
        width: 100%;
        height: 100vh;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        /* background-color: aqua; */
    }
    .works__mockUp{
        width: 90%;
        transform: translate(0,-6%);
    }
    .sticky--container--above{
        background-color: var(--primary-white);
        height: 5vh;
        display: flex;
        align-items: center;
        padding: 0 2.0833vw;
    }
    .sticky--container--below{
        background-color: var(--primary-white);
        height: 10vh;
        display: flex;
        align-items: center;
        padding: 0 2.0833vw;
    }
    .works__img--title--sp{
        display: block;
        position: absolute;
        left: 2.0833vw;
        top:12%;
        color:var(--primary-black);
        font-size: 2.4rem;
    }
    .works__img--titleSpSpan{
        font-size: 1.6rem;
    }
    .menu__btn,
    .info__btn--sp{
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.6rem;
        border-radius: 500px;
        background-color: var(--primary-black);
        color: var(--primary-white);
        width: 30vw;
        height: 7vh;
    }
    .info__btn--sp{

    }
    .name__sp{
        font-size: 1.6rem;
        display: block;
    }
    .scrollMark--text{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 500px;
    border: solid 1px var(--primary-grey);
    width: 14vh;
    height: 14vh;
    right:50%;
    bottom: 12%;
    transform: translate(50%,0);
    font-size: 1.4rem;
    writing-mode: vertical-rl;
    }
    /* .scrollMark--border{
        position: absolute;
        background-color: var(--primary-black);
        width: 1px;
        height: 60px;
        left:50%;
        bottom:10%;
        transform: translate(-50%, 67px);
    } */
    .works__img--info{
        width: 100%;
        max-width: 700px;
        padding: 20vh 5.666vw 0;
    }
    .works__img--info1st{
        padding-top: 4vh;
    }
    .works__img--item{
        width: 100%;
        max-width: 700px;
        padding: 2vh 5.666vw 4vh;
    }
    .copy{
    padding: 2vh 2.0833vw 16vh;
}
}
/* ----------worksImg---------- */
.menu--sp{
    display: none;
}
@media screen and (max-width:1000px) {
    .menu--sp{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        z-index: 9000;
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        background-color: var(--primary-white);
        transform: translate(-100%,0);
        transition: 0.4s;
    }
    .menu--sp.active{
        transform: translate(0,0);
    }
    .menu--main{
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 2.0833vh 0 4.1666vh;
    }
    .menu--title{
        display: flex;
        font-size: 4rem;
        width: 100%;
        padding: 0px 2.0833vw 2vh;
    }
    .menu__listBtn--container{
        /* height: %; */
        width: 100%;
        display: flex;
        flex-direction: column;
        gap:4vh;
        padding: 0 4.1666vw 0;
    }
    .menu__listBtn{
        font-size: 2.4rem;
    }
    .menu__close--container{
        width: 100%;
        height: 11.1666vh;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 0 2.0833vw 0;
    }
    .menu__close{
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.6rem;
        border-radius: 500px;
        background-color: var(--primary-black);
        color: var(--primary-white);
        width: 30vw;
        height: 7vh;
    }
}
