<style>

body {
  font-family: sans-serif;
  line-height: 1.8;
  padding: 2em;
  max-width: 800px;
  margin: auto;
  position: relative;
}
.logo {
  width: 64px;
  height: auto;
}
.shop-name {
  font-size: 1.2em;
  font-weight: bold;
}
h1 {
  background: #fff4f7;
  padding: 30px 0;
  text-align: center;
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 1em;
  color: #666;
}
.has-text-align-center {
  text-align: center;
}

.has-text-align-right {
  text-align: right;
}

.header {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: 2em;
}

.logo {
  height: 60px;
  object-fit: contain;
}

/* フッター全体の色帯 */
.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 {
  margin-top: 4em;
  padding-top: 1em;
  border-top: 1px solid #ccc;
  font-size: 0.9em;
  color: #666;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1em;
}
.footer-left {
  flex: 1 1 auto;
  text-align: left;
}
.footer-right {
  flex: 1 1 auto;
  text-align: right;
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: flex-end;
}
.footer-right a {
  color: #666;
  text-decoration: none;
}
.footer-right a:hover {
  text-decoration: underline;
}

/* スマホ対応 */
@media screen and (max-width: 600px) {
  .footer-inner {
	flex-direction: column;
	align-items: flex-start;
  }
  .footer-right {
	justify-content: flex-start;
	text-align: left;
  }
}

</style>
