@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,600,700&display=swap');

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;
  font-size: 100%;
font: inherit;
  vertical-align: baseline;
}

body {
  font-family:'Noto Sans JP', Helvetica, Arial, sans-serif;
  font-size: 62.5%;
}

.topButton {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 44px;
  border: 1px solid #007c6b;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #007c6b;
  transition: .3s all ease 0s;
  &--bold {
    border: 2px solid #007c6b;
    font-weight: bold;
  }
  &:hover {
    color: #fff;
    background-color: #007c6b;
  }
  &:active {
    transform: scale(.97);
  }
  &--fill {
    color: #fff;
    background-color: #007c6b;
    transition: .3s all ease 0s;
    &:hover {
      color: #fff;
      background-color: #00ab93;
      border: 1px solid #00ab93;
    }
    &:active {
      transform: scale(.97);
    }
  }
}

.notFound {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #f1f3f7;
  overflow: hidden;
}
.notFound__container {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
@media screen and (max-width: 960px) {
  .notFound__container {
    margin: 24px auto;
    width: 85%;
  }
}
.notFound__imgBox {
  position: absolute;
  top: 28px;
  left: 40px;
}
@media screen and (max-width: 960px) {
  .notFound__imgBox {
    top: 16px;
    left: 48%;
    transform: translateX(-52%);
  }
}
.notFound__img {
  width: 128px;
  height: auto;
}
.notFound__subTitle {
  font-size: 80px;
  font-weight: bold;
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 16px;
}
.notFound__title {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 16px;
}
.notFound__text {
  font-size: 15px;
  line-height: 1.8;
  color: #282828;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  margin-bottom: 32px;
}
.notFound__button {
  background-color: #fff;
  border: none;
}
.notFound__button:hover {
  color: #00ab93;
}
.notFound__bg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .notFound__bg {
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 100vh;
  }
}
@media screen and (max-width: 480px) {
  .notFound__bg {
    width: 180%;
    height: 100vh;
  }
}
