@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@500;600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Serif JP', serif;
}

.showcase{
    position: absolute;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.5s;
}

.showcase.active {
    position: absolute;
    left: 200px;
}

.showcase header{
    display: flex;
    writing-mode: vertical-lr;
}

.showcase img{
    position: absolute;
    top: 0;
    left: 70PX;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* opacity: 0.8; */
}

h1{
    position: absolute;
    top: 50px;
    left: 20px;
    writing-mode: vertical-lr;
    font-size: 19px;
    transition: 0.3s;
    cursor: pointer;
    color: black;
    text-decoration: none;
}

h1 a{
    color: black;
    text-decoration: none;
}

h1:hover{
    opacity: 0.3;
}

h2{
    position: absolute;
    top: 155px;
    left: 27px;
    writing-mode: vertical-lr;
    font-size: 13px;
}

.toggle{
    background: url(../images/menu.png);
    width: 60px;
    height: 60px;
    background-repeat: no-repeat;
    background-size: 25px;
    background-position: center;
    cursor: pointer;
    position: absolute;
    top: 55vh;
    left: 1vh;
    transition: 0.3s;
}

.toggle.active{
    background: url(../images/close.png);
    width: 60px;
    height: 60px;
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
    cursor: pointer;
    position: absolute;
    top: 55vh;
    left: 1vh;
}
.toggle:hover{
    opacity: 0.3;
}


.menu {
    position: absolute;
    top: 370px;
    left: -500px;
    writing-mode: vertical-rl;
    transition: 0.5s;
}
.menu.active{
    position: absolute;
    top: 370px;
    left: 30px;
    writing-mode: vertical-rl;
}

.menu ul li{
    list-style: none;
    font-size: 18px;
    margin-right: 20%;
}

.menu ul li a {
    color: black;
    text-decoration: none;
    transition: 0.2s;
}

.menu ul li a:hover{
    opacity: 0.3;
}
.sns{
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 75vh;
    left: 2.5vh;
    cursor: pointer;
}

.sns li{
    list-style: none;
    margin-bottom: 20%;
}

.sns li a{
    transition: 0.2s;
}

.sns li a:hover {
    opacity: 0.5;
}

