/* ここからアプリ フッター */

.footer_bottom {
  margin-bottom: 4px !important;
}

.common-footer {
  border-top: 2px solid #e0481d;
  display: flex;
  justify-content: space-between;
  padding: 13px 40px;
  margin-bottom: 50px;
}
.common-footer__nav ul {
  display: flex;
}
.common-footer__nav ul li {
  position: relative;
  padding: 0 17px;
}
.common-footer__nav ul li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 55%;
  transform: translateY(-50%);
  height: 20px;
  border-left: 1px solid #333;
}
.common-footer__nav ul li a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  text-decoration: underline;
}
.link-icon--out {
  display: inline-block;
  margin-left: 6px;
  margin-right: 4px;
}
.link-icon--out svg {
  display: block;
  width: 100%;
  height: auto;
}
.common-footer__copyright {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  .common-footer__nav ul li a:hover,
  .common-footer__nav ul li a:focus-visible {
    text-decoration: none;
  }
  .link-icon--out {
    width: 15px;
    height: 15px;
    margin-bottom: -2px;
  }
  .common-footer__logo {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .common-footer {
    display: block;
    padding: 20px 25px;
  }
  .common-footer__nav ul {
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
  }
  .common-footer__logo {
    display: flex;
    justify-content: center;
  }
  .common-footer__logo img {
    width: 108px;
    height: auto;
    margin-top: 20px;
  }
  .common-footer__copyright {
    margin-top: 10px;
    display: block;
    text-align: center;
    letter-spacing: 1px;
  }
  .common-footer__nav ul li a {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
  }
  .link-icon--out {
    width: 12px;
    height: 12px;
    margin-bottom: -1px;
  }
}
@media screen and (max-width: 480px) {
  .common-footer__nav ul {
    justify-content: flex-start;
  }
  .common-footer__nav ul li {
    padding: 0 7px;
  }
}
