.more-button {
  display: block;
  margin: 30px auto 0 auto;
  padding: 0;
  width: fit-content;
}

.more-button a {
  background-color: #D93D3D;
  color: #ffffff !important; /* ← 重要！ */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.4em 2em;
  text-decoration: none;
  border-radius: 9999px;
  border: 1px solid #D93D3D;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.3s;
}

/* ← 以下を追加することで白文字を固定化！ */
.more-button a:visited {
  color: #ffffff !important;
}
.more-button a:hover {
  background-color: #ffffff;
  color: #D93D3D !important;
  border: 1px solid #D93D3D;
}


<style>
  .top-message {
    padding: 40px 20px 20px;
    background: #ffffff;
    text-align: left; /* ← 中央から左へ変更 */
  }
  .top-message p {
    font-size: 20px;
    line-height: 2;
    color: #333;
  }
  .top-message p span {
    font-weight: bold;
    color: #333;
  }
</style>
