@charset "UTF-8";
/* CSS Document */

body {
    font-family: 'Lato', 'Noto Sans JP', 'Font Awesome 5 Free', sans-serif;
    padding-top: 60px;
}

.is__full {
    width: 100vw;
    height: 100vh;
}

.box--centering {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* 要素をflexboxに対応させる */
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /* 縦方向の中央揃え */
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    /* 横方向の中央揃え */
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    /* 子要素の並びを上から下にする（要素の改行に対応） */
    background-image: url(../images/top_background_min.jpg);
    background-size: cover;
    background-position: center center;
}

.box--centering{
    text-align: center;
}

.renewal {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bolder;
    width: 80%;
    text-align: center;
}

.brand-logo{
    max-width: 85%;
    height: auto;
}

/*==Media query
===================================================================*/

@media screen and (max-width: 480px) {
    .renewal {
        font-size: 1rem;
        width: 80%;
        text-align: center;
    }

    .brand-logo{
        max-width: 80%;
        height: auto;
        text-align: center;
    }
    
}