body{
    background-color: #121212;
    background-image: url(../../images/RWD/bg_serviceAreaBlock.jpg);
    background-size: 100%;
    background-position: right top;
    background-repeat: no-repeat;
    color: #fff;
}
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}
.logo{
    height: 40px;
    padding: 20px;
}
.container{
    display: flex;
    align-items: center;
    margin: 0 auto;
    min-height: 100vh;
    max-width: 814px;
}
h1{
    font-size: 44px;
    line-height: normal;
    font-weight: 700;
    margin-bottom: 32px;
    color: #fff;
}
h1 span{
    max-width: 676px;
    display: block;
}
.content{
    font-size: 18px;
    line-height: 150%;
    color: #f4f4f4;
}
.content p{
    margin-bottom: 8px;
}
.content a{
    color: #f57600;
    transition: color .2s ease;
    white-space: nowrap;
}
.content a:hover{
    color: #f78b26;
}

@media screen and (max-width: 1024px){
    body{
        background-size: 200%;
        background-position: top -30px right -240px ;
    }
    .container{
        padding: 0 46px;
    }
}
@media screen and (max-width: 767px){
    body{
        background-size: 280%;
        background-position: top -25px right -200px ;
    }
    .container{
        padding: 0 20px;
    }
    h1{
        font-size: 28px;
        margin-bottom: 24px;
    }
    h1 span{
        display: inline;
    }
    .content{
        font-size: 14px;
    }
    .logo{
        height: 24px;
    }
}