*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Noto Sans JP', sans-serif;
    color: #2A3B4C;
    font-size: 14px;
}
.wrapper{
    display: flex;
    flex-flow: column;
    min-height: 100vh;
}
.main{
    flex: 1;
}
.header{
    display: flex;
    justify-content: center;
}
.header .logo-wrap{
    display: flex;
    align-items: center;
}
.header .logo-jcb{
    margin-right: 8px;
}
.static-common .static-common-text .sm{
    font-size: 12px;
}
.static-common .static-common-text .link-line{
    color: #2A3B4C;
    text-decoration: underline;
}
.static-common .static-common-text .link-line:hover{
    opacity: .7;
    transition: opacity .2s ease-in-out;
    text-decoration: none;
}
.footer{
    font-size: 10px;
    text-align: center;
    border-top: 1px solid #E0E0E0;
}

@media screen and (max-width: 767px) {
    .wrapper{
        padding: 0 16px;
    }
    .header{
        padding: 9px 0;
    }
    .static-common{
        margin-top: 50px;
    }
    .footer{
        padding: 30px 0;
    }
}

@media screen and (min-width: 768px) {
    .wrapper{
        max-width: 1032px;
        margin: 0 auto;
    }
    .header{
        padding: 25px 0;
    }
    .static-common{
        width: 680px;
        margin: 40px auto 0;
    }
    .footer{
        padding: 40px 0;
    }
}

@media all and (-ms-high-contrast: none) {
    .wrapper{
        position: relative;
    }
    .footer{
        position: absolute;
        bottom: 0;
        width: 100%;
    }
}