@charset "UTF-8";

@import url("./reset.css");
@import url("./common.css");



/*********************

    error & end page

*********************/

#http_error_wrap , #service_end_wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.http_error_msg, .service_end_msg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.http_error_msg h1, .service_end_msg h1 {
    font-size: 4.8rem;
    color: #000;
    font-weight: 900;
    padding-bottom: 20px;
    position: relative;
}

.http_error_msg h1::after, .service_end_msg h1::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 20%;
  height: 1px;
  background: #ccc;
}

.http_error_msg p, .service_end_msg p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #999;
    margin: 20px 0;
}

.http_error_msg a {
    background: #0249af;
    color: rgba(255,255,255,0.8);
    max-width: 150px;
    display: block;
    margin: 0 auto;
    padding: 0.6rem 0;
    border-radius: 50px;
    font-size: 0.9rem;
}

.http_error_msg a i {
    margin-left: 6px;
    font-family: cursive;
    vertical-align: middle;
}

@media screen and (max-width: 960px) {
  #http_error_wrap , #service_end_wrap {
  }
  .http_error_msg, .service_end_msg {
  }
  .http_error_msg h1, .service_end_msg h1 {
    font-size: 2.8rem;
  }

  .http_error_msg h1::after, .service_end_msg h1::after {
  }

  .http_error_msg p, .service_end_msg p {
  }
  .http_error_msg a {}
}

@media screen and (max-width: 600px) {
  #http_error_wrap , #service_end_wrap {
  }
  .http_error_msg, .service_end_msg {
  }
  .http_error_msg h1, .service_end_msg h1 {
    font-size: 1.8rem;
  }

  .http_error_msg h1::after, .service_end_msg h1::after {
  }

  .http_error_msg p, .service_end_msg p { font-size: 1rem }
  .http_error_msg a {
    display: block;
    width: 36%;
    margin: 0 auto;
  }
  .http_error_msg a i {}

  .http_error_msg, .service_end_msg {
    width: 90%;
  }
}

@media screen and (max-width: 300px) {
  .http_error_msg h1, .service_end_msg h1 {
    font-size: 1.2rem;
  }
  .http_error_msg p, .service_end_msg p {
    font-size: 0.7rem;
  }
  .http_error_msg a {
    padding: 0.4rem 0;
    font-size: 0.6rem;
  }
}