html {
  height: 100%;
}

body {
  height: 100%;
  margin: 0;
  font-family: sans-serif;
}

header {
  background-color: #DAE5D5;
  padding-top: 5px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 5px;
}

button {
  background-color: #FFFFFF;
  color: #1D4333;
  border-radius: 4px;
  text-align: center;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-width: 1px;
  cursor: pointer;
  height: 2.3rem;
  width: 10rem;
  margin: 0 0.4rem;
  font-size: 1rem;
  font-weight: bold;
  white-space: nowrap;
}


.main-icon {
  width: 250px;
}

.icon {
  width: 24px;
  /* 横幅 */
  height: 24px;
  /* 高さ */
  vertical-align: middle;
  object-fit: contain;
  /* 画像のアスペクト比を保って表示 */
}

/* ヘッダー系 */
.header-title {
  text-align: center;
  margin-top: 1vh;
  margin-bottom: -1vh;
}

.login-form {
  background-color: #DAE5D5;
  text-align: center;
  margin: 0 auto;
  width: 300px;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
}

.login_caution {
  font-size: 8.5px;
}

.login_err {
  text-align: center
}

button.small-text {
  font-size: 0.8rem;
  /* オーバーしたときにさらに小さくする処理 */
}