@charset "utf-8";
html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

body > main {
  flex: 1;
}

footer {
  padding: 50px 10px 10px 60px; /*余白上、右、下、左*/
  font-size: 14px;
  color: #555;
  background: rgba(255,255,255,0.8);
  text-align: left;
  width: 100%;
  box-sizing: border-box;
  margin-top: auto;
}

/* フッター内部の配置 */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* コピーライト部分 */
footer p.copyright {
  text-align: center;
  font-size: 13px;
  color: #777;
  margin: 10px 0 0 0; /* 下に余白をほぼ無しに */
}
.container {
  display: flex;
  min-height: 100vh; /* コンテンツに合わせて伸びる */
  overflow: visible; /* スクロールできるようにする */
}
