/* =================================================================
   footer.css  —  footer専用のCSS
   目的：
     ② コピーライト直上にリーガルリンクの横並び配置（.footer__legal）
     既存の app.css（後読み込みまたは同等の優先度で上書き）
   ================================================================= */

/* =========================
   フッターの基本設定
   ========================= */

.footer__logo {
  width: 100%;
  text-align: center;
  margin-bottom: 3rem;
}

.footer__logo img {
  width: 120px;
}

@media (min-width: 1080px) {
  .footer__logo {
    width: auto;
    text-align: left;
  }
  .footer__logo img {
    width: 150px;
  }
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(100% - 2rem);
  max-width: 1040px;
  padding-top: 5rem;
  padding-bottom: 5rem;
  margin-left: auto;
  margin-right: auto;
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  row-gap:1em;
  font-size: .875rem;
}

@media (min-width: 1080px) {
  .footer__nav {
    padding-left: 0;
    padding-right: 0;
    width: auto;
  }
  .footer__nav a:hover {
    text-decoration: underline;
  }
}

.footer__menu {
  width: 50%;
  max-width: 12em;
}

@media (min-width: 1080px) {
  .footer__menu {
    max-width: none;
    width: auto;
    padding-left: 4rem;
  }
}

.footer__sub-menu > li {
  position: relative;
  padding-left: .75em;
}

.footer__sub-menu > li::before {
  content: '-';
  display: block;
  position: absolute;
  left: 0;
}

.copyright {
  background-color: #fff;
  text-align: center;
  padding: 1rem;
}

.copyright small {
  font-size: .75rem;
}

/* =========================
   ② リーガルリンク（コピーライト直上）
   ========================= */
.footer__legal {
  background: #fff;
}

.footer__legal-list{
  display: flex;
  flex-wrap: wrap;
  gap: .1rem 1rem;
  justify-content: center;
  margin: 0 auto;
  padding: 0;
}

.footer__legal-list a{
  font-size: .75rem;
}

@media (min-width: 1080px){
  .footer__legal-list a:hover{
    text-decoration: none;
  }
}
