#contactArea{
    position: relative;
    height: 200vh;
    width: 100vw;
}
#contactBackgrund{
    position: fixed;
    transform: translate(0%,-100%);
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: #e5e1df;
    z-index: 50;
    will-change: transform;

}
#contactFront{
    position: fixed;
    transform: translate(0%,100%);
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 55;
    will-change: transform;
}
#contactFrontContents{
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
    width: 70%;
    height:70%;
    will-change: transform;
    padding: 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.contactFrontContents{
    width: 95%;
    max-width: 600px;
}
.name{
    font-size: 1.2em;
}
.job{
    font-size: 0.5em;
}
.text{
    font-size: 0.8em;
    margin: 16px 0;    
    line-height: 200%;
}
.contactLinkWrapper{
    display: flex;
    margin: 6px 0;
}
.contactLinkWrapper *{
    font-size: 0.8em;
}
.contactFrontItem .contactLink{
    width: 70px;
}
.brForSp{
    display: none;
}

@media screen and (max-width:480px) {
    .name{
        font-size: 1em;
    }
    .brForSp{
        display: inline-block;
    }
    .text{
        font-size: 0.7em;
    }

}