footer {  
  background-color: #000;
  height: 299px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
footer div.wrap { 
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: auto auto;
  width: 100%;
  align-items: center;
  justify-content: center;
}
footer div.wrap p{ 
  color: #6e6e6e;
  grid-row: 3;
  grid-column: 1 / span 3;
  margin: 0 auto;
  font-size: 12px;
  font-weight: bold;
  margin-top: 15px;
}
footer div.wrap h1 { 
  grid-column: 2;
  background-image: url(../img/footer_logo.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 219px;
  height: 56px;
  font-size: 0;
  margin: 0 auto;
}
footer div.wrap h1 a{
  
}
footer div.wrap ul {  
  grid-row: 2;
  grid-column: 1 / span3;
  margin: 0 auto;
  margin-top: 16px;
  margin-bottom: 10px;
}
footer div.wrap ul li {
  
}
footer div.wrap ul li a {  
  color: white;
  font-weight: bold;
}
footer div.wrap ul li:not(:last-child) a::after{
 content: "｜";
 margin: 0 10px;
}
footer a.top{
  position: absolute;
  top: -60px;
  right: 75px;
  z-index: 1;
  display: flex;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: bold;
  flex-direction: column;
  align-items: center;
}
footer a.top::before{
  content: "";
  background-image: url(../img/top.svg);
  background-repeat: no-repeat;
  height: 24px;
  width: 12px;
}
.topFix{
  position: fixed !important;
  bottom: 0;
  z-index: 1;
  top: auto !important;
  color: #004cad !important;
  opacity: 1 !important;
}