html{
    width: 100%;
    height: 100%;
}

body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-image: url(natsume2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.box{
    position: fixed;
    margin-top: 50vh;
    padding-left: 0;
    background-color: rgba(255, 255, 255, 0.726);
    width: 100%;
    height: 75vw;
    animation: slideIn 2s cubic-bezier(0.25, 1, 0.5, 1) backwards;
    animation-delay: 250ms;
}

.text_box{
    position: fixed;
    color: black;
    margin-top: 50vh;
    padding-left: 2vw;
    font-family: serif;
    width: 100%;
}

.namejp{
    font-size:8vw;
    line-height: 0.3;
    animation: zoomIn 1.5s cubic-bezier(0.25, 1, 0.5, 1) backwards;
    animation-delay: 1000ms;
}

.nameen{
    font-size:4vw;
    line-height: 1.2;
    animation: zoomIn 1.5s cubic-bezier(0.25, 1, 0.5, 1) backwards;
    animation-delay: 1300ms;
}

.shokai{
    font-size:2.8vw;
    line-height: 1.8;
    animation: zoomIn 1.5s cubic-bezier(0.25, 1, 0.5, 1) backwards;
    animation-delay: 1600ms;
}

.btn{
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0);
    border-radius: 100%;
    z-index: 10;
    cursor: pointer;
}

#btn-close{
    display: none;
}

@keyframes slideIn {
    0% {
      transform: translateX(-200%);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
    }
    40%,100% {
      opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
      transform: scale(0.8);
      opacity: 0;
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
}