/* セッションエラー画面用 */
footer{
  width: 100vw;
  z-index: 60;
}

.footer_wrap {
  position: relative;
}

address {
  margin: 0;
  width: 100vw;
  height: 50px;
  font-style: normal;
  text-align: center;
  background-color: #d5daf3;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
address div {
  width: calc(100% - 120px);
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 0.7rem;
}
address div small {
  font-size: 100%;
  line-height: 1.5rem;
  text-align: left;
}
footer div small span {
  white-space: nowrap;
  font-size: 85%;
  font-weight: normal;
  color: #171717;
  padding: 0 2px;
}

@media (max-width: 768px){
  address {
    height: 80px;
  }
  address div {
    width: calc(100% - 40px);
    height: auto;
    padding : 0 5%;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  address div small {
    width: 100%;
    line-height: 1.1rem;
    text-align: center;
  }
}


/* ==========================================================================
   Footer
========================================================================== */
.l-footer {
  box-sizing: border-box;
  width: 100%;
  padding: 50px 40px 50px 20px;
  color: white;
  background-color: #002f7c;
}
@media (max-width: 768px) {
  .l-footer {
    padding: 50px 20px;
  }
}
@media (max-width: 480px) {
  .l-footer {
    padding: 40px 14px;
  }
}

/* ==========================================================================
	footerNavi
========================================================================== */
.c-footerNavi {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
}

.c-footerNavi li {
  display: flex;
  align-items: center;
}

.c-footerNavi li + li::before {
  display: block;
  content: "";
  width: 1px;
  height: 1rem;
  background-color: white;
  margin: 0 12px;
}

.c-footerNavi a {
  color: white;
  text-decoration: none;
}

.c-footerNavi a:hover {
  text-decoration: underline;
}

.c-text--footer span{
  font-size: 12px;
}

@media (max-width: 768px) {
  .c-footerNavi {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .c-footerNavi li {
    width: 50%;
  }
  .c-footerNavi li a {
    display: block;
    width: 100%;
    padding: 10px;
  }
  .c-footerNavi li + li::before {
    display: none;
  }
}