html {
    font-size: 62.5%;
}

body {
    position: relative;
    overflow-x: hidden;
    max-width: 100vw;
    margin: 0;
    font-family: Futura, 'Century Gothic', 游ゴシック体, YuGothic, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 游ゴシック, 'Yu Gothic', メイリオ, Meiryo, sans-serif;
    font-size: 1.6rem;
    letter-spacing: .2rem;
    font-weight: 500;
    display: block;
    color: #1a1a1a;
    background: -webkit-linear-gradient(top, #D5DEE7 0%, #E8EBF2 50%, #E2E7ED 100%), -webkit-linear-gradient(top, rgba(0, 0, 0, 0.02) 50%, rgba(255, 255, 255, 0.02) 61%, rgba(0, 0, 0, 0.02) 73%), -webkit-linear-gradient(57deg, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
    background: linear-gradient(to bottom, #D5DEE7 0%, #E8EBF2 50%, #E2E7ED 100%), linear-gradient(to bottom, rgba(0, 0, 0, 0.02) 50%, rgba(255, 255, 255, 0.02) 61%, rgba(0, 0, 0, 0.02) 73%), linear-gradient(33deg, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
    background-blend-mode: normal, color-burn;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    cursor: none;
}

a {
    text-decoration: none;
    color: #1a1a1a;
}

.sp-only {
    display: none;
}

.hidden {
    display: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul > li > a {
    color: #fff;
}

.fl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}

.flcen {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flend {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -ms-flex-pack: end;
}

.flside {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
}

.flmid {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.flcol {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
}

.flbot{
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.fl2 {
    width: 50%;
}

.fl3 {
    width: 33%;
}

.fl40 {
    width: 40%;
}

.fl60 {
    width: 60%;
}

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 3rem;
    margin: 0;
}

h3 {
    font-size: 2rem;
}

p {
    margin: 0;
}

/*-----CURSOR-----*/

.cursor {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 100%;
    z-index: 1;
    transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
    user-select: none;
    pointer-events: none;
    z-index: 10000;
    transform: scale(1);
}

.cursor.active {
    opacity: 0.5;
    transform: scale(0);
}

.cursor.hovered {
    opacity: 0.08;
}

.cursor_follow {
    position: absolute;
    border: 1px solid #1a1a1a;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    z-index: 1;
    transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
    user-select: none;
    pointer-events: none;
    z-index: 10000;
    transform: translate(5px, 5px);
}

.cursor_follow.active {
    opacity: 0.7;
    transform: scale(2.5);
}

.cursor_follow.hovered {
    opacity: 0.08;
}

/*-----LOADING-----*/
#pageloading{
    position: absolute;
    width: 100vw;
    height: 100vh;
    background: -webkit-linear-gradient(top, #D5DEE7 0%, #E8EBF2 50%, #E2E7ED 100%), -webkit-linear-gradient(top, rgba(0, 0, 0, 0.02) 50%, rgba(255, 255, 255, 0.02) 61%, rgba(0, 0, 0, 0.02) 73%), -webkit-linear-gradient(57deg, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
    background: linear-gradient(to bottom, #D5DEE7 0%, #E8EBF2 50%, #E2E7ED 100%), linear-gradient(to bottom, rgba(0, 0, 0, 0.02) 50%, rgba(255, 255, 255, 0.02) 61%, rgba(0, 0, 0, 0.02) 73%), linear-gradient(33deg, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
    background-blend-mode: normal, color-burn;
    z-index: 10000;
}

.white_bg{
    color: #E8EBF2;
    width: 0%;
    height: 100%;
    background-color: white;
    font-size: 5rem;
    font-weight: bold;
}

/*burger_menu*/
.buns{
    height: 100%;
}
.bun{
    width: 30px;
    height: 2px;
    background: #1a1a1a;
}

.bun:last-child{
    margin-top: 7px;
    width: 15px;
}

.burger.toggled>.buns>.bun {
    -webkit-transform: rotate(45deg) translateZ(0);
    transform: rotate(45deg) translateZ(0) translateX(6px);
}

.burger.toggled>.buns>.bun:last-child {
    -webkit-transform: rotate(-45deg) translateZ(0);
    transform: rotate(-45deg) translateZ(0) translateX(6px);
    width: 30px;
}

.blur_container {
    position: relative;
}

.blur_container.toggled,
.genre.toggled{
    -webkit-filter: blur(8px);
    -moz-filter: blur(8px);
    -o-filter: blur(8px);
    -ms-filter: blur(8px);
    filter: blur(8px);
}

.main_nav {
    text-align: center;
    position: fixed;
    left: 10vw;
    top: 10vh;
    z-index: 0;
    height: 80vh;
    width: 80vw;
    padding: 10vh 10vw;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    -webkit-transform: scale(0.85);
    -ms-transform: scale(0.85);
    transform: scale(0.85);
}

.main_nav.toggled {
    display: block;
    z-index: 10;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    z-index: 1000;
}

.main_nav>ul>li>a {
    font-size: 3.5rem;
    padding: .5em 0;
    display: block;
}


/*-----TOP_PAGE-----*/
.bg{
    width: 100%;
    height: 100vh;
    padding: 10vh 10vw;
}

.title{
    position: relative;
    z-index: 999;
}

.top_logo{
    font-size: 15rem;
    margin: 0;
}

.top_text{
    padding-bottom: 16px;
}

.arrow{
    position: relative;
}

.arrow::before, .arrow::after{
    position: absolute;
    content: "";
}

.arrow::before{
    width: 120px;
    height: 2px;
    background: #1a1a1a;
    bottom: 0;
    left: 0;
}

.arrow::after{
    width: 20px;
    height: 2px;
    transform: rotate(45deg);
    background: #1a1a1a;
    bottom: 7px;
    left: 103px;
}

.top_center{
    width: 250px;
    height: 250px;
    margin: 0 auto;
}

.center_img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav{
    font-size: 5rem;
    text-align: end;
}

/*-----GENRE_PAGE-----*/
.burger,.bun,
.burger.toggled>.buns>.bun,
.blur_container,
.blur_container.toggled,
.main_nav,
.main_nav.toggled,
.main_nav>ul>li>a{
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.gallery{
    padding-bottom: 100px;
}
header{
    width: 100%;
    max-width: 100vw;
    padding: 0 5vw;
    height: 80px;
}
header,.genre{
    position: fixed;
    z-index: 999;
}
.logo,.burger,.bun{
    display: block;
}

.logo {
    font-size: 3rem;
}
.genre{
    right: 5vw;
    top: 50vh;
    font-size: 30rem;
    font-family: serif;
    color: #fff;
    opacity: 0.7;
}

.img_wrapper{
    padding: 10vh 10vw;
}

.landscape{
    max-width: 60vw;
    max-height: 100vh;
}

.portrait{
    max-height: 80vh;
    max-width: 100vw;
}


/*-----PROFILE_PAGE-----*/
.prof_img{
    padding: 40px;
}
.prof_img>img{
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
}
.prof_name{
    font-size: 5rem;
}
.text_jp{
    padding-bottom: 20px;
}
.text_en{
    padding-bottom: 40px;
}

@media (max-width:800px){

    .cursor,.cursor_follow{
        display: none;
    }
    .fl3,.fl60,.fl40{
        width: 100%;
    }

    .bg,.img_wrapper{
        padding: 5vh 5vw;
    }

    .top_logo{
        font-size: 5rem;
    }

    .top_center{
        width: 200px;
        height: 200px;
    }

    .nav{
        font-size: 3rem;
    }

    .gallery{
        padding-bottom: 30px;
    }
    
    .genre{
        font-size: 8rem;
        top: 80vh;
        left: 5vw;
        right: initial;
    }

    .landscape{
        max-width: 80vw;
        max-height: 100vh;
    }
    
    .portrait{
        max-height: 50vh;
        max-width: 100vw;
    }

    .img_wrapper:first-child{
        padding-top: 100px;
    }

    .prof_img{
        padding: 60px 0 0 0;
    }
    
    .mail{
        padding-bottom: 50px;
    }
}