@charset "utf-8";
/* ===== フッター全体 ===== */
.site-footer {
  background-color: #d96c22;
  color: #fff;
  padding: 50px 20px;
  text-align: center;
}

/* 中央寄せ＆最大幅 */
.site-footer .container {
  max-width: 1000px;
  margin: 0 auto;
}

/* 法人名 */
.footer-name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

/* ナビ */
.footer-nav {
  margin-bottom: 20px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-size: 14px;
  transition: 0.3s;
}

.footer-nav a:hover {
  opacity: 0.7;
}

/* コピーライト */
.footer-copy {
  font-size: 12px;
  color: #ccc;
}

/* =========================
パソコン表示（768px以上）
========================= */
@media (min-width: 768px) {
 .site-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .footer-nav {
    margin: 0;
  }

  .footer-copy {
    text-align: right;
  }
}