@charset "utf-8";

/*--------------------------------------------------------------
  footer設定
--------------------------------------------------------------*/
footer {
  display: flex;
  justify-content: center;
  align-items: center;

  margin: 0;
  padding: 2rem 1rem 2rem 1rem;
  position: relative;
  width: 100%;
  bottom: 0 !important;

  color: #fff;
  background-color: rgb(0 0 0 / 1.0);
}

footer a {
  color: #fff;
  text-decoration: none;
}


footer #footarea {
  flex: 1;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

footer #footarea .copyrights {
  font-size: 0.8rem;
  line-height: 1.2;
  color: #fff;
}

footer #contact {
  margin: 0;
  padding: 0 2rem !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

footer #contact a,
footer #contact a strong {
  color: #fff;
  font-size: 0.8rem;
  line-height: 1.5;
}

footer ul#contact,
footer ul#contact li {
  margin: 0;
  padding: 0;
  list-style-type: none;

  font-size: 0.8rem;
  line-height: 1.5;
}

footer ul#contact img {
  margin: 0.5rem 0 0 0;
}

@media (max-width: 767.98px) {

  /* sm 以下の画面サイズの場合のスタイル */
  footer {
    flex-direction: column;
  }

  footer #contact {
    padding: 2rem 0 2rem 0 !important;
  }

  footer #footarea {
    padding: 2rem 0 2rem 0 !important;
  }

  footer #contact {
    padding: 2rem 0 2rem 0 !important;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {

  /* md の画面サイズの場合のスタイル */
  footer {
    flex-direction: column;
  }

  footer #contact {
    padding: 2rem 0 2rem 0 !important;
  }

  footer #footarea {
    padding: 2rem 0 2rem 0 !important;
  }

  footer #contact {
    padding: 2rem 0 2rem 0 !important;
  }
}

@media (min-width: 992px) {
  /* lg 以上の画面サイズの場合のスタイル */
}