@charset "EUC-JP";

* {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

body {
  background-color: #fff;
  font-family: "Hiragino Kaku Gothic ProN";
}

/* Header */
.header {
  height: 50px;
  padding: 0 16px;
  border-bottom: 1px solid #f5f5f5;
  box-sizing: border-box;
}

.header__heading {
  line-height: 50px;
}

.header__logo {
  width: 84px;
  height: 25px;
}

/* Content */
.error-container {
  padding: 24px;
  background-color: #fff;
}

.icon {
  text-align: center;
  height: 64px;
}

.icon__img {
  width: 64px;
  height: 64px;
}

.error-contents {
  margin: 24px 0 17px;
}

.error-contents__title {
  text-align: center;
  font-size: 16px;
  line-height: 21px;
  color: #717171;
}

.error-contents__message {
  font-size: 14px;
  line-height: 21px;
  color: #333333;
  padding-top: 16px;
}

.error-contents__company {
  font-size: 12px;
  line-height: 16px;
  color: #333333;
  padding-top: 16px;
}

/* Footer */
.footer {
  height: 62px;
  border-top: 1px solid #f5f5f5;
}

.copyright {
  text-align: center;
  font-family: "Hiragino Kaku Gothic ProN";
  font-size: 11px;
  line-height: 62px;
  color: #717171;
}

/* Media queries*/
@media screen and (min-width: 1024px) {
  .header {
    height: 81px;
    padding: 0;
  }

  .header__heading {
    height: 81px;
    font-size: 0;
  }

  .header__link {
    display: inline-block;
    width: 107px;
    height: 32px;
    margin: 24px 0 25px 24px;
  }

  .header__logo {
    width: 107px;
    height: 32px;
  }

  .error-background {
    padding: 24px 0;
    background-color: #f7f7f7;
  }

  .error-container {
    display: grid;
    grid-template-columns: 168px auto;
    width: 640px;
    margin: 0 auto;
    padding: 0;
    background-color: #fff;
  }

  .icon {
    height: auto;
  }

  .icon__img {
    width: 88px;
    height: 88px;
    margin: 32px 40px 0;
  }

  .error-contents {
    padding: 32px 40px 32px 0;
    margin: 0;
  }

  .error-contents__title {
    text-align: left;
  }

  .error-contents__message {
    line-height: 21px;
    padding-top: 16px;
  }

  .footer {
    height: 94px;
  }

  .copyright {
    line-height: 94px;
  }
}
