*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    text-size-adjust: none;
    color: #333333;
    letter-spacing: 0.04em;
}
.header{
    position:relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 100%;
    background-color: #CC0033;
    text-align: center;
}
.main{
    background-color: #fff;
}
.error {
    padding: 40px 0;
    text-align: left;
}
.error-title {
    font-weight: bold;
    margin-bottom: 48px;
}
.error-text {
    font-size: 16px;
    margin-bottom: 48px;
}
.error-link{
    color: #0BC2EF;
}
.footer{
    position: relative;
    background-color: #333333;
    color: #fff;
}
.footer .copyright{
    padding: 14px 0;
    font-size: 12px;
    text-align: center;
}
.text-indent{
    display: block;
    padding-left: 1em;
    text-indent: -1em;
}

@media screen and (max-width: 767px) {
    .main{
        padding: 0 5.5vw;
    }
    .header{
        height: 60px;
        border-radius: 0 0 20px 20px;
    }
    .header .logo-img{
        width: 85px;
    }
    .error {
        min-height: calc(100vh - 60px - 46px);
    }
    .error-title,
    .error-term{
        font-size: 16px;
    }
    .is-sp{
        display: block;
    }
}

@media screen and (min-width: 768px) {
    .header{
        height: 80px;
        border-radius: 0 0 40px 40px;
    }
    .header .logo-img{
        width: 128px;
    }
    .error {
        width: 728px;
        margin: 0 auto;
        min-height: calc(100vh - 80px - 46px);
    }
    .error-title,
    .error-term{
        font-size: 20px;
    }
    .is-sp{
        display: none;
    }
}