@charset "UTF-8";
/*----------------------------------------------------
  変数セット
----------------------------------------------------*/
/*responsive.css上書き(bootstrap4)*/
.mx-auto {
  display: block;
  margin: 0 auto;
}

/*----------------------------------------------------
  基本のレイアウト
----------------------------------------------------*/
body {
  color: #222;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  overflow-x: hidden;
}
@media screen and (max-width: 767.98px) {
  body {
    font-size: 1.4rem;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.wrap {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  min-height: 100vh;
}
.wrap .main-wrap {
  padding-top: 80px;
}
@media screen and (max-width: 767.98px) {
  .wrap .main-wrap {
    padding-top: 60px;
  }
}

@media (min-width: 576px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.section-wrap {
  padding: 8rem 0;
}
@media screen and (max-width: 767.98px) {
  .section-wrap {
    padding: 5rem 0;
  }
}

/*----------------------------------------------------
  リンク色
----------------------------------------------------*/
a:link {
  color: #245fbb;
  text-decoration: none;
}

a:visited {
  color: #245fbb;
  text-decoration: none;
}

a:hover {
  color: #E48E00;
  text-decoration: underline;
}

a:active {
  color: #E48E00;
  text-decoration: underline;
}

/*ボタン*/
a.btn-normal {
  display: inline-block;
  background-color: #2a2a2a;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 1.7rem 3rem;
  position: relative;
}
a.btn-normal:hover {
  opacity: 0.75;
}
@media screen and (max-width: 767.98px) {
  a.btn-normal {
    padding: 1.5rem 2rem;
  }
}
a.btn-normal::after {
  content: "";
  display: inline-block;
  width: 0.7em;
  height: 0.7em;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  margin-left: 0.4em;
}
a.btn-normal:hover {
  opacity: 0.7;
}

/*----------------------------------------------------
  タイトル
----------------------------------------------------*/
.page-title-wrap {
  width: 100%;
  height: 70vh;
  position: relative;
  background: no-repeat center center;
  background-size: cover;
}
@media screen and (max7-width: 991.98px) {
  .page-title-wrap {
    height: 65vh;
  }
}
@media screen and (max-width: 767.98px) {
  .page-title-wrap {
    height: 400px;
  }
}
@media screen and (max-width: 575.98px) {
  .page-title-wrap {
    height: 340px;
  }
}
.page-title-wrap .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.98px) {
  .page-title-wrap .container {
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
  }
}
.page-title-wrap .container > p {
  font-size: 4.2rem;
  color: #fff;
  font-weight: 700;
  z-index: 2;
  -webkit-filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.3));
          filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.3));
}
@media screen and (max-width: 767.98px) {
  .page-title-wrap .container > p {
    font-size: 3.6rem;
    padding-top: 4.8em;
  }
}
@media screen and (max-width: 575.98px) {
  .page-title-wrap .container > p {
    font-size: min(6.4vw, 3.6rem);
  }
}
.page-title-wrap .page-title-block {
  display: inline-block;
  width: 490px;
  position: absolute;
  bottom: -70px;
  right: 0;
}
@media screen and (max-width: 991.98px) {
  .page-title-wrap .page-title-block {
    width: 400px;
  }
}
@media screen and (max-width: 575.98px) {
  .page-title-wrap .page-title-block {
    width: 300px;
    max-width: 100%;
  }
}
.page-title-wrap .page-title-block::before {
  content: "";
  width: 100%;
  height: 106px;
  display: block;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  background: -webkit-gradient(linear, left top, right top, from(#e6ff3a), to(#00a040));
  background: linear-gradient(to right, #e6ff3a, #00a040);
}
@media screen and (max-width: 991.98px) {
  .page-title-wrap .page-title-block::before {
    height: 80px;
  }
}
@media screen and (max-width: 767.98px) {
  .page-title-wrap .page-title-block::before {
    height: 60px;
  }
}
@media screen and (max-width: 575.98px) {
  .page-title-wrap .page-title-block::before {
    height: 50px;
  }
}
.page-title-wrap .page-title-block > .block {
  background-color: #2a2a2a;
  color: #fff;
  padding: 3.5rem 0;
  text-align: center;
  height: 130px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767.98px) {
  .page-title-wrap .page-title-block > .block {
    padding: 3rem 0;
    height: 100px;
  }
}
.page-title-wrap .page-title-block > .block h1, .page-title-wrap .page-title-block > .block p {
  font-size: 2.8rem;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .page-title-wrap .page-title-block > .block h1, .page-title-wrap .page-title-block > .block p {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 575.98px) {
  .page-title-wrap .page-title-block > .block h1, .page-title-wrap .page-title-block > .block p {
    margin-bottom: 0.7rem;
  }
}
.page-title-wrap.second {
  height: 130px;
}
.page-title-wrap.second .container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-title-wrap.second .page-title-block {
  width: 300px;
  margin: 0 auto 0 0;
}
@media screen and (max-width: 767.98px) {
  .page-title-wrap.second .page-title-block {
    width: 260px;
    margin: 0 auto;
  }
}
.page-title-wrap.second .page-title-block::before {
  display: none;
}
.page-title-wrap.second .page-title-block .block {
  height: 100px;
}
@media screen and (max-width: 767.98px) {
  .page-title-wrap.second .page-title-block .block {
    height: 82px;
  }
}
.page-title-wrap.second .page-title-block .block h1, .page-title-wrap.second .page-title-block .block p {
  font-size: 2.4rem;
}
@media screen and (max-width: 767.98px) {
  .page-title-wrap.second .page-title-block .block h1, .page-title-wrap.second .page-title-block .block p {
    font-size: 2rem;
  }
}

.section-title {
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (max-width: 767.98px) {
  .section-title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 575.98px) {
  .section-title {
    font-size: 2.2rem;
  }
}

/*----------------------------------------------------
  ヘッダー
----------------------------------------------------*/
header {
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
header .header-area {
  height: 80px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 3rem;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 1199.98px) {
  header .header-area {
    padding: 0 2rem;
  }
}
@media screen and (max-width: 767.98px) {
  header .header-area {
    height: 60px;
    padding: 0 2rem;
  }
}
header .header-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .header-logo a {
  display: inline-block;
}
header .header-logo a img {
  display: block;
  max-width: 100%;
  height: auto;
  width: 210px;
}
@media screen and (max-width: 991.98px) {
  header .header-logo a img {
    width: 18vw;
  }
}
@media screen and (max-width: 767.98px) {
  header .header-logo a img {
    width: 148px;
  }
}
header .header-menu {
  position: relative;
}
@media screen and (max-width: 767.98px) {
  header .header-menu {
    display: none;
  }
}
header .header-menu nav {
  height: 100%;
  display: inline-block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}
header a.btn-inquiry {
  display: inline-block;
  text-align: center;
  color: #fff;
  background-color: #333;
  text-decoration: none;
  padding: 0.7rem 2.5rem;
  border-radius: 5rem;
  position: relative;
}
@media screen and (max-width: 991.98px) {
  header a.btn-inquiry {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767.98px) {
  header a.btn-inquiry {
    display: block;
    font-weight: 500;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
header a.btn-inquiry:hover {
  opacity: 0.7;
}

/*----------------------------------------------------
  ナビゲーション
----------------------------------------------------*/
ul.global-nav {
  list-style: none;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin-top: auto;
  margin-bottom: auto;
  margin-right: 2rem;
}
ul.global-nav > li {
  position: relative;
  cursor: pointer;
}
ul.global-nav > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 0 2rem;
  text-decoration: none;
  color: #222;
  font-size: 1.8rem;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
  line-height: 1.3;
}
@media screen and (max-width: 1119.98px) {
  ul.global-nav > li > a {
    padding: 0 1.2rem;
    font-size: 1.4rem;
  }
}
ul.global-nav > li > a:hover {
  opacity: 0.7;
}
ul.global-nav > li > a br {
  display: none;
}
@media screen and (max-width: 991.98px) {
  ul.global-nav > li > a br {
    display: inline;
  }
}
ul.global-nav > li.parent > a::after {
  content: "";
  display: inline-block;
  width: 0.65em;
  height: 0.65em;
  border-right: 2px solid #222;
  border-bottom: 2px solid #222;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: 0.5em;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  margin-top: -0.25em;
}
ul.global-nav .child-nav {
  position: absolute;
  left: 0;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
}
ul.global-nav .child-nav ul {
  padding: 1rem 1.5rem;
  list-style: none;
  width: 200px;
  position: relative;
}
ul.global-nav .child-nav ul li a {
  text-decoration: none;
  padding: 0.7rem 0.5rem;
  display: block;
  color: #222;
}
ul.global-nav .child-nav ul li a:hover {
  color: #00A040;
}
ul.global-nav > li:hover .child-nav {
  opacity: 1;
  visibility: visible;
}

/*----------------------------------------------------
  スマホメニュー
----------------------------------------------------*/
a.menu-button {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: none;
  z-index: 10;
}
@media screen and (max-width: 767.98px) {
  a.menu-button {
    display: block;
  }
}
a.menu-button .menu-trigger {
  cursor: pointer;
  position: relative;
  width: 42px;
  height: 36px;
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
a.menu-button .menu-trigger span {
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
a.menu-button .menu-trigger span:not(:last-child) {
  width: calc(100% - 10px);
  height: 3px;
  background-color: #00A040;
}
a.menu-button .menu-trigger span:nth-of-type(1) {
  top: 5px;
}
a.menu-button .menu-trigger span:nth-of-type(2) {
  top: 13px;
}
a.menu-button .menu-trigger span:nth-of-type(3) {
  width: 100%;
  bottom: 0;
  font-size: 1rem;
  text-align: center;
  color: #00A040;
  font-weight: 700;
}

.open .menu-trigger span:nth-of-type(1) {
  top: 10px !important;
  -webkit-transform: translateX(-50%) rotate(40deg);
          transform: translateX(-50%) rotate(40deg);
}
.open .menu-trigger span:nth-of-type(2) {
  top: 10px !important;
  -webkit-transform: translateX(-50%) rotate(-40deg);
          transform: translateX(-50%) rotate(-40deg);
}

.smp-menu {
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding: 60px 2rem 3rem;
  display: none;
  overflow-x: hidden;
  overflow-y: scroll;
}
.smp-menu ul {
  list-style: none;
  padding-left: 0;
}
.smp-menu ul.smp-nav {
  margin-bottom: 3rem;
}
.smp-menu ul.smp-nav li {
  border-bottom: 1px solid #eee;
}
.smp-menu ul.smp-nav li a, .smp-menu ul.smp-nav li span {
  color: #222;
  font-weight: 700;
  display: block;
  padding: 1.5rem 1.5rem;
  position: relative;
  text-decoration: none;
  font-size: 1.4rem;
}
.smp-menu ul.smp-nav li span {
  position: relative;
}
.smp-menu ul.smp-nav li span::before, .smp-menu ul.smp-nav li span::after {
  content: "";
  display: inline-block;
  position: absolute;
  background-color: #00A040;
  top: 50%;
}
.smp-menu ul.smp-nav li span::before {
  width: 1em;
  height: 2px;
  right: 0.55em;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-top: -1px;
}
.smp-menu ul.smp-nav li span::after {
  width: 2px;
  height: 1em;
  right: 1.5em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.smp-menu ul.smp-nav li span.open::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.smp-menu ul.smp-nav li ul.smp-nav-child {
  padding-bottom: 1.5rem;
  display: none;
}
.smp-menu ul.smp-nav li ul.smp-nav-child li {
  border-bottom: 0;
}
.smp-menu ul.smp-nav li ul.smp-nav-child li a {
  font-weight: 500;
  padding: 1rem 0 1rem 3rem;
}
.smp-menu ul.company-list {
  margin-top: 3rem;
}
.smp-menu ul.company-list li {
  display: inline-block;
  margin-bottom: 1em;
  margin-right: 2em;
}
.smp-menu ul.company-list li a {
  display: block;
  color: #222;
  text-decoration: none;
}

/*----------------------------------------------------
  フッター
----------------------------------------------------*/
footer {
  background-color: #2A2A2A;
  position: relative;
  margin-top: 8rem;
}
footer::before {
  content: "";
  width: 100%;
  height: 106px;
  display: block;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  background: -webkit-gradient(linear, left top, right top, from(#e6ff3a), to(#00a040));
  background: linear-gradient(to right, #e6ff3a, #00a040);
  position: absolute;
  bottom: 100%;
}
@media screen and (max-width: 767.98px) {
  footer::before {
    height: 80px;
  }
}
@media screen and (max-width: 575.98px) {
  footer::before {
    height: 60px;
  }
}
footer .page-top {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 2;
}
footer .page-top a {
  background: #00A040;
  text-decoration: none;
  color: #fff;
  width: 60px;
  height: 60px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  border-radius: 50%;
}
@media screen and (max-width: 767.98px) {
  footer .page-top a {
    width: 50px;
    height: 50px;
  }
}
footer .page-top a::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  left: 39%;
  top: 41%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 767.98px) {
  footer .page-top a::after {
    left: 35%;
    width: 14px;
    height: 14px;
  }
}
footer .inquiry-wrap {
  padding: 10rem 0;
  border-bottom: 1px solid #fff;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  footer .inquiry-wrap {
    padding: 6rem 0;
  }
}
footer .inquiry-wrap p {
  font-weight: 700;
}
footer .inquiry-wrap .inquiry-title {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 700;
  padding-bottom: 2rem;
  position: relative;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767.98px) {
  footer .inquiry-wrap .inquiry-title {
    font-size: 2.4rem;
    padding-bottom: 1.5rem;
  }
}
footer .inquiry-wrap .inquiry-title::after {
  content: "";
  width: 1.5em;
  height: 5px;
  background-color: #00A040;
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
footer .inquiry-wrap a.btn-inquiry {
  display: inline-block;
  color: #222;
  text-decoration: none;
  background-color: #fff;
  padding: 1.5rem 3rem;
  margin: 3rem 0;
  font-size: 2rem;
  font-weight: 500;
  position: relative;
}
footer .inquiry-wrap a.btn-inquiry:hover {
  opacity: 0.75;
}
@media screen and (max-width: 767.98px) {
  footer .inquiry-wrap a.btn-inquiry {
    padding: 1.5rem 2rem;
    font-size: 1.6rem;
  }
}
footer .inquiry-wrap a.btn-inquiry::before {
  display: inline-block;
  content: "";
  width: 25px;
  height: 25px;
  background: url(../images/common/ico_mail.svg) no-repeat center center;
  background-size: contain;
  vertical-align: middle;
  margin-right: 1rem;
  margin-top: -0.2rem;
}
footer .inquiry-wrap p.tel span {
  display: inline-block;
  font-size: 3.2rem;
  position: relative;
}
@media screen and (max-width: 767.98px) {
  footer .inquiry-wrap p.tel span {
    font-size: 2.6rem;
  }
}
footer .inquiry-wrap p.tel span::before {
  display: inline-block;
  content: "";
  width: 27px;
  height: 27px;
  background: url(../images/common/ico_tel.svg) no-repeat center center;
  background-size: contain;
  vertical-align: middle;
  margin-right: 1rem;
  margin-top: -0.2rem;
}
@media screen and (max-width: 767.98px) {
  footer .inquiry-wrap p.tel span::before {
    width: 24px;
    height: 24px;
  }
}
footer .footer-area {
  padding: 4rem 0 1rem;
}
footer .footer-area .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 991.98px) {
  footer .footer-area .container {
    display: block;
  }
}
footer .footer-area .logo-area {
  color: #fff;
}
@media screen and (max-width: 991.98px) {
  footer .footer-area .logo-area {
    margin-bottom: 3rem;
  }
}
footer .footer-area .logo-area .footer-logo {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 991.98px) {
  footer .footer-area .logo-area .footer-logo {
    width: 240px;
  }
}
footer .footer-area .logo-area p {
  font-weight: 500;
}
footer .footer-area ul.footer-menu {
  list-style: none;
  padding-left: 0;
  -webkit-column-count: 3;
     -moz-column-count: 3;
          column-count: 3;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 991.98px) {
  footer .footer-area ul.footer-menu {
    -webkit-column-count: 4;
       -moz-column-count: 4;
            column-count: 4;
    margin: 0 auto;
  }
}
@media screen and (max-width: 575.98px) {
  footer .footer-area ul.footer-menu {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    width: auto;
  }
}
footer .footer-area ul.footer-menu li {
  margin-bottom: 0.7em;
  margin-right: 1em;
}
@media screen and (max-width: 767.98px) {
  footer .footer-area ul.footer-menu li {
    display: block;
    margin-bottom: 1em;
  }
}
footer .footer-area ul.footer-menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
footer .footer-area ul.footer-menu li a:hover {
  opacity: 0.7;
}
footer .copyright {
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  margin-top: 4rem;
}
@media screen and (max-width: 767.98px) {
  footer .copyright {
    font-size: 1rem;
  }
}

/*----------------------------------------------------
  パンくず
----------------------------------------------------*/
.breadcrumb ul {
  list-style: none;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  background-color: #F6F6F6;
}
@media screen and (max-width: 767.98px) {
  .breadcrumb ul {
    font-size: 1rem;
    margin-bottom: 0rem;
    margin-top: 70px;
    background: none;
    text-align: right;
  }
}
.breadcrumb ul li {
  display: inline-block;
  padding-right: 1.8em;
  position: relative;
}
.breadcrumb ul li::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-top: 1px solid #222;
  border-right: 1px solid #222;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  right: 0.5em;
  top: 0.6em;
}
.breadcrumb ul li:last-child {
  padding-right: 0;
}
.breadcrumb ul li:last-child::after {
  display: none;
}
.breadcrumb ul li a {
  color: #222;
}

/*----------------------------------------------------
  404
----------------------------------------------------*/
.notfound-area .notfound-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767.98px) {
  .notfound-area .notfound-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
.notfound-area .button-area {
  margin-top: 5rem;
}