@charset "UTF-8";
/* 変数の定義
--------------------------------------------------*/
/* 色の定義
--------------------------------------------------*/
/* 色のクラス
--------------------------------------------------*/
.white {
  color: #fff;
  text-align: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}

.black {
  color: #000000;
  text-align: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}

.gray {
  color: #f8f8f8;
  text-align: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}

.bg_gray {
  background-color: #f8f8f8;
}

.red {
  color: #c70d2e;
  text-align: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}

.yellow {
  color: #ffd906;
  text-align: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}

/* フォントの定義
--------------------------------------------------*/
html,
body,
ul,
ol,
dl,
li,
dt,
dd,
a,
p,
div,
span,
img,
svg,
table,
tr,
th,
td,
figure {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.6;
  color: #000000;
}

body,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
svg,
a,
table,
tr,
th,
td,
figure {
  font-size: 1.5rem;
}

p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 1.4rem;
  }
}

/* 404ページ
--------------------------------------------------*/
#notfound .tit_wrap {
  text-align: center;
  padding: 160px 0 60px;
  width: 90%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #notfound .tit_wrap {
    padding: 100px 0 50px;
  }
}
#notfound .tit_wrap h2 {
  font-size: 2.4rem;
  margin-bottom: 60px;
  position: relative;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #notfound .tit_wrap h2 {
    font-size: 2rem;
    margin-bottom: 50px;
  }
}
#notfound .tit_wrap h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 2px;
  background-color: #c70d2e;
}
@media screen and (max-width: 768px) {
  #notfound .tit_wrap h2::after {
    width: 100%;
  }
}
#notfound .tit_wrap .txt {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #notfound .tit_wrap .txt {
    margin-bottom: 30px;
  }
}
#notfound .tit_wrap .btn {
  margin-top: 50px;
}
#notfound .tit_wrap .btn::after {
  display: none;
}/*# sourceMappingURL=404.css.map */