@charset "UTF-8";
html #body_container{
    opacity: 1!important;
}

.noscript-wrapper{
    position: fixed!important;
    top:0;
    left: 0;
    z-index: 999;
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.75);
    padding: 30px;
}

.noscript__block{
    background-color: #FFF;
    border:solid 1px  #999;
    width: 80%;
    height: auto;
    box-sizing: border-box;
    padding: 30px 30px 60px;
    position: absolute;
    left: 50%;
    top:50%;
    transform: translateX(-50%) translateY(-50%);
}

.noscript__block_title{
    margin: 10px 0 16px;
    font-size: 3rem;
    line-height: 1.4;
    font-weight: 500;
    text-align :center;
    -webkit-font-smoothing: antialiased;
}

.no-script-caution-description{
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.533333333333333em;
    color: #2D2D2E;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.no-script-caution-description[lang="en"] {
    font-size: 1.8rem;
    font-style: oblique;
    font-weight: 200;

}

.noscript__block_Content::after{
    content: "";
    display: block;
    text-align: center;
    margin: 10px auto;
    width: 200px;
    max-width: 100%;
    height: 100px;
    background-image: url(/noscript/images/color_logo.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    vertical-align: middle;

}