/* デフォルト（モバイル）用 */
html,
body {
  font-size: 16px;
  /* モバイルは小さめ */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* PC用（画面幅768px以上など） */
@media screen and (min-width: 768px) {
  html,
  body {
    font-size: 30px;
    /* PCは大きく */
  }
}

.weather > div:first-child {
  margin-bottom: 0;
  /* 「お天気情報☀」の下のマージンをなくす */
  padding-bottom: 0;
  /* 必要ならパディングも */
  line-height: 1.2;
  /* 行間を詰める */
}

#weather {
  margin-top: 0;
  /* 「#weather」上部のマージンをなくす */
  padding-top: 0;
  /* 必要ならパディングも */
}

.border {
  background-color: blue;
  width: 100%;
  height: 10px;
}

.home {
  color: aliceblue;
}

.contact {
  background-color: blue;
  color: aliceblue;
  font-weight: bold;
  padding: 10px;
  /* とりあえず高さを確保 */
}

header {
  background-color: blue;
  font-weight: bold;
  font-size: 16px;
}

section {
  background-color: blue;
  font-weight: bold;
}

footer {
  background-color: blue;
}

ul,
ol {
  list-style: none;
  /* マーカー（丸・数字）を消す */
  padding-left: 0;
  /* 左の余白をなくす */
  margin: 0;
  /* 上下の余白をなくす */
}

li {
  margin-bottom: 0px;
  margin-left: 3px;
  /* 下に隙間をあける */
  padding: 0px 0;
  list-style: none;
  /* 上下のパディング */
  /* 横並びにしたい場合 */
  /* display: inline-block; */
  /* margin-right: 10px; */
}

.investing_ranking,
.economic_indicator,
.kabutan,
.karauri {
  margin-left: 2%;
}
