.footer-box {
  background: #534741;
  color: #c6bdb8;
  padding: 60px 20px 0;
}

/* 全体 */
.footer-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}

/* 左 */
.footer-left {
  width: 30%;
  margin-left: -60px;
}

/* メニュー */
.footer-menu {
  width: 16%;
  display: flex;
  flex-direction: column;
  text-align: left;
  font-size: 14px;
}

/* 中央寄せ調整 */
.footer-menu:nth-child(2) {
  margin-left: 50px;
}
.footer-menu:nth-child(3) {
  margin-left: -10px;
}
.footer-menu:nth-child(4) {
  margin-left: 40px;
}

/* リンク */
.footer-menu a {
  position: relative;
  padding-left: 16px;
  margin-bottom: 10px;
  color: #c6bdb8;
  text-decoration: none;
  line-height: 2;
}

/* ▶ */
.footer-menu a::before {
  content: "▶";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 10px;
}

/* 右列（3列目）だけ三角消す */
.footer-menu:nth-child(4) a::before {
  content: none;
}


/* 下帯 */
.footer-bottom {
  background: #3a2f2a;
  width: 100vw;                 /* ←画面いっぱい */
  margin-left: calc(50% - 50vw);/* ←中央から左右いっぱい広げる */
  margin-top: 40px;
  padding: 10px 0;
  text-align: center;
}

.footer-bottom a {
  color: #c6bdb8;
  font-size: 12px;
  text-decoration: none;
}