@charset "utf-8";

/* ====================================================================
 基本設定
==================================================================== */

/* リセットなど
----------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
}
html {
    overflow-y: scroll;
    font-size: 62.5%;
}
body {
    background: #ffffff;
    color: #333;
    font-size: 1.6rem;
    line-height: 1.75;
    -webkit-text-size-adjust: 100%;
}
img {
    max-width: 100%;
    height: auto;
    line-height: 0;
}

/* clearfixなど
----------------------------------------------------------*/
.clearfix::after {
    content: "";
    display: block;
    height: 0;
    visibility: hidden;
    clear: both;
}


/* ====================================================================
 error_wrap
==================================================================== */
.error_wrap {
  min-height: 100vh;
  position: relative;
  padding-bottom: 80px;
  box-sizing: border-box;
}


/* ====================================================================
 header
==================================================================== */
#header-wrap {
  height: auto;
  background: #09f;
}
#header-wrap .header-wrap-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 10px 0;
}
@media (max-width: 979px) {
  #header-wrap .header-wrap-inner {
    padding: 10px;
  }
}


/* ====================================================================
 contents
==================================================================== */

/* contents基本設定
----------------------------------------------------------*/
#contents {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px 50px;
    word-break: break-all;
    font-family: "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
}
@media (max-width: 639px) {
    #contents {
        padding: 0 10px 50px;
    }
}

.error_msg {
  margin:  0 0 50px;
  font-size: 2.0rem;
  text-align: center;
}
.error_msg p {
  padding-top: 50px;
}
@media (max-width: 639px) {
  .error_msg {
    margin:  0 0 30px;
    font-size: 1.8rem;
    text-align: left;
  }
}

/* ====================================================================
 footer
==================================================================== */
#footer-wrap {
    position: absolute;
    bottom: 0;
    display: flex;
    align-items: center;
    background: #09f;
    width: 100%;
    height: 80px;
    color: #ffffff;
    font-family: "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
}
#footer-wrap .footer-wrap-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 980px;
    margin: 0 auto;
    padding: 15px 20px;
}
@media (max-width: 639px) {
    #footer-wrap .footer-wrap-inner {
        padding: 15px 10px;
    }
}
#footer-wrap .footer-wrap-inner p {
    color: #ffffff;
    font-size: 1.4rem;
    text-align: center;
}