.weather-footer {
  padding: 10px;
  display: inline-block;
  margin-left: 1em;
  background: #fafafa;
  font-size: 13px;
}
 
.weather-list {
  display: flex;
  gap: 8px;
}
 
.weather-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px 6px;
}
 
.weather-item dt {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: bold;
  color: #555;
}
 
.weather-item dd {
  margin: 0;
  font-size: 12px;
  color: #555;
}
 
/* 色 */
.square {
  width: 12px;
  height: 12px;
  display: inline-block;
}
 
.black { background: #000; }
.purple { background: #7a00cc; }
.red { background: #e60000; }
.yellow {
  background: #f2e700;
  border: 1px solid #999;
}
