@charset "UTF-8";

html {
    height: 100%;
}

body {
    font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
    color: #333;
    height: 100%;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

/* common */
.flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.js-sbw {
    justify-content: space-between;
}

.bg-gray {
    background: #EFEFEF;
}

.title-lg {
    font-size: 32px;
    font-weight: bold;
}

.color-red {
    color: #F10000;
}

.t-center {
    text-align: center;
}

/* header */
header#service_header {
    width: 100%;
    position: relative;
    display: flex;
    box-sizing: border-box;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #333;
    background-color: #fff;
    font-family: 'Roboto', 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    font-feature-settings: "palt";
    border-bottom: 2px solid var(--blue, #006FA0);
    padding: 16px 12px;
}

#service_header .top {
    display: flex;
    align-items: center;
    font-weight: normal;
}

/* footer */
footer {
    display: flex;
    padding: 32px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    color: #FFF;
    font-size: 12px;
    font-weight: normal;
    background: #006FA0;
}

/* layout */
.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.container-lg {
    max-width: 1024px;
    width: 100%;
    margin: auto;
}


/* main */
.maintenance {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 40px;
    background: var(--white, #FFF);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.maintenance_txt {
    text-align: center;
}

@media screen and (max-width:768px) {

    /* common */
    .sp_off {
        display: none;
    }

    .title-lg {
        font-size: 1.5rem;
    }

    .container-lg {
        max-width: 94%;
    }

    /* header */
    #service_header .top img {
        width: 68px;
    }

    /* main */
    .maintenance {
        padding: 32px 16px;
    }

    .maintenance_txt {
        text-align: left;
    }
}