
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
.btn,
a.btn,
p.btn,
button.btn {
  font-size: 0.8rem;
  line-height: 1;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
}

}

p.btn-border-shadow {
  padding: calc(1rem - 12px) 2rem 1rem;
  background: #fff;
}

p.btn-border-shadow:before {
  position: absolute;
  top: -5px;
  left: -5px;

  width: 100%;
  height: 100%;

  content: "";
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;

  border: 2px solid #464c59;
  border-radius: 0.5rem;
}

p.btn-border-shadow--color {
  font-weight: 500;
  color: #000;
  border-radius: 0;
}

p.btn-border-shadow--color:before {
  border-radius: 0;
}



a.btn-border-shadow {
  padding: calc(1rem - 12px) 2rem 1rem;
  background: #fff;
}

a.btn-border-shadow:before {
  position: absolute;
  top: -5px;
  left: -5px;

  width: 100%;
  height: 100%;

  content: "";
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;

  border: 2px solid #464c59;
  border-radius: 0.5rem;
}

a.btn-border-shadow:hover {
  padding: calc(1.2rem - 6px) 2.2rem;
  color: yellow;
  border: 2px solid yellow;
}

a.btn-border-shadow:hover:before {
  top: 0;
  left: 0;
}

a.btn-border-shadow--color {
  font-weight: 650;
  color: yellow;
  border-radius: 0;
  background: #014e9f;
  padding: calc(1.2rem - 6px) 2.2rem;
}

a.btn-border-shadow--color:before {
  border-radius: 0;
}




ul {
  padding: 0;
  list-style: none;
}

a {
  color: #4b5564;
  text-decoration: none;
}

a:hover {
  color: #000;
}

hr {
  height: 1px;
  border: 0;
  border-top: 1px solid #e5e7eb;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 0.5fr));
  gap: 0.5rem;
  margin-bottom: 0.1rem;
}

@media (max-width: 999px) {
.footer {
  width: 100%;
  padding: 0.5rem
  color: #4b5564;
  background: #fff;
  margin: auto;
}
}

@media (min-width: 1000px) {
.footer {
  width: 63%;
  padding: 0.5rem
  color: #4b5564;
  background: #fff;
  margin: auto;
}
}


.footer__navi-heading {
  font-weight: 700;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 0.1rem;
}

.footer__navi li {
  margin-bottom: 0.1rem;
}

@media (min-width: 300px) {
  .md-flex {
    display: flex;
  }

  .md-justify-between {
    justify-content: space-between;
  }

  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

