<style>

body {
  margin: 0;
  font-family: sans-serif;
  background: #fff;
}

.main-visual {
  margin: 0;          /* figure の余白を消す */
  padding: 0;
}

.main-visual img {
  display: block;     /* 画像下の隙間を消す */
  width: 100%;        /* 横幅いっぱい */
  height: auto;
}

.logo-fixed {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 20;
}

.logo-fixed img {
  height: 60px;
  left: 16px;
  width: auto;
}

/* フッター全体の色帯 */
.footer-area {
  background: #fff4f7;
  padding: 20px 0;
  margin-top: 40px;
  font-size: 0.9em;
  color: #666;
}

/* 左右レイアウト */
.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;     /* 中央に寄せる */
  margin: 0 auto;
  padding: 0 16px;
  flex-wrap: wrap;
}

.footer-left p,
.footer-right p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-left a {
  text-decoration: none;
  color: #333;
  margin-right: 20px;
}

.footer-left a:last-child {
  margin-right: 0;
}

.footer-left a:hover,
.footer-right a:hover {
  text-decoration: underline;
}

/* スマホ対応 */
@media (max-width: 600px) {
  .footer-columns {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-right {
    margin-top: 10px;
  }
}

</style>
