body {
  margin: 0;
  font-family: "Hiragino Kaku Gothic ProN", sans-serif;
  background: #E8F5E9;
  color: #333;
  font-size: 18px;
  line-height: 1.8;
}

/* ヘッダー */
header {
  background: #A8D5BA;
  padding: 15px;
  text-align: center;
}

/* ナビ */
nav {
  display: flex;
  overflow-x: auto;
  background: #C8E6C9;
}

nav a {
  padding: 10px;
  text-decoration: none;
  color: #333;
  white-space: nowrap;
}

/* セクション */
.section {
  padding: 20px;
}

/* 見出し */
h2 {
  border-left: 6px solid #66BB6A;
  padding-left: 10px;
}

/* カード */
.card {
  background: white;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 15px;
}

/* ボタン */
.button {
  display: block;
  background: #66BB6A;
  color: white;
  text-align: center;
  padding: 15px;
  border-radius: 10px;
  text-decoration: none;
  margin-top: 20px;
}

/* 固定ボタン */
.fixed-btn {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #66BB6A;
  color: white;
  text-align: center;
  padding: 15px;
}