@charset "utf-8";

*,
*::before,
*::after {
    box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, figure {
    margin: 0;
    padding: 0;
    font-family:
    "Hiragino Sans",
    "Hiragino Kaku Gothic ProN",
    -apple-system,
    BlinkMacSystemFont,
    "Helvetica Neue",
    "Noto Sans JP",
    "Yu Gothic",
    "Meiryo",
    sans-serif;
}

.maintenance{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.maintenance__container{
    max-width: 1280px;
    background: #f4f3f3;
    width: 90%;
    margin: 0 auto;
    padding: 3.125rem 0;
    border-radius: 3.125rem;
}

.maintenance__icon{
    margin-bottom: .625rem;
}

.maintenance__title{
    color: #00111F;
    font-size: 2.5rem;
    font-weight: 600;
    margin: 2.5rem 0;
}

.maintenance__group{
    text-align: center;
    padding: 1.25rem;
}


.maintenance__text{
    font-size: 1.5rem;
    color: #00111F;
}

.sp__br{
    display: none;
}

@media (max-width: 768px){
    .maintenance__title{
        font-size: 1.75rem;
        margin: 1.25rem 0;
    }
    .maintenance__text{
        font-size: 1rem;
    }
    .sp__br{
        display: block;
    }
    .maintenance__icon{
        max-width: 120px;
        height: auto;
    }
}