/* ▼ 背景（白＋淡い緑） */
.page__background {
  background-color: #f3f8f3;
}

/* ▼ FAB（リロード）＝都営バスのオレンジ */
.fab {
  background-color: #FF8901 !important;
  color: #fff !important;
}
.fab:active {
  background-color: rgba(255,137,1,0.7) !important;
}

/* ▼ 通常ボタン＝濃い緑 */
.button, ons-button {
  background-color: #009944 !important;
  color: #fff !important;
  border-radius: 8px !important;
}
.button:active {
  background-color: #007a36 !important;
}

/* ▼ button01＝淡い緑 */
.button01 {
  background-color: #d8f2e0 !important;
  color: #333 !important;
  border-radius: 8px !important;
}
.button01:active {
  background-color: #bcdac7 !important;
}

/* ▼ 説明文ボックス */
.description-box {
  margin: 20px;
  padding: 16px;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  color: #444;
  line-height: 1.7;
}
.description-box h3 {
  margin-top: 0;
  font-size: 16px;
  color: #333;
}
.description-box .links {
  text-align: center;
  margin-top: 12px;
}
.description-box a {
  color: #009944;
  text-decoration: none;
}
.description-box a:hover {
  text-decoration: underline;
}
