@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500;700&family=Noto+Sans+JP:wght@500&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
}
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #222222;
    color: #222222;
    font-size: 16px;
    font-weight: 500;
}
a{
    color: #222222;
}


#top{
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 30;
    pointer-events: none;
}
#titleWrapper{
    position: absolute;
    flex-wrap: wrap;
    left: 50%;
    top: 27%;
    z-index: 2;
    overflow: hidden;
    text-align: center;
}
#title{
    align-self: flex-start;
    font-size: 5vw;
    font-weight: 700;
}
#titleInner{
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
}
.titleLetter{
    overflow: hidden;
}
.titleLetterInner{
    display: inline-block;
}
#subTitle{
    margin-top: 16px;
    position: relative;
    display: flex;
}
#subTitleText{
    font-size: 1.3vw;
    margin: 0 auto;
    white-space: nowrap;
    overflow: hidden;
    letter-spacing: 0.05em;
    font-weight: 700;
}
#subTitleTextInner{
    overflow: hidden;
}


#worksTitleWrapper{
    position: absolute;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}
.worksTitle{
    position: absolute;
    flex-wrap: nowrap;
    white-space: nowrap;
    font-size: 2.5vw;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.worksTitleLetter{
    overflow: hidden;
    width: auto;
    display: inline-block;
}
.worksTitleLetterInner{
    font-weight: 700;
    color: #e5e1df;
    display: inline-block;
    will-change: trnasform, margin, opacity;
}

@media screen and (max-width:480px) {
    #title{
        font-size: 6vw;
    }
    #subTitle{
        margin-top: 8px;
    }
    #subTitleText{
        font-size: 2.5vw;
    }
    .worksTitle{
        font-size: 4vw;
    }
}