/* Noto Sans JP利用のため、Google Webフォントをインポート */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap");

body {
  font-style: normal;
  background-color: var(--col-btm-navi-txt-bg-text);
  margin: 0;
  font-size: 16px;
  font-family: "Noto Sans JP";
}

@media (min-width: 376px) {
  .container {
    width: 376px;
  }
}

.container {
  /* 画面の高さ - (ヘッダーの高さ+フッターの高さ) */
  min-height: calc(100vh - 288px);
  padding: 0 20px;
  color: #333333;
}

/* カスタムポリシー組み込みのclass */
.buttons {
  display: flex;
  gap: 20px;
  flex-direction: column;
  align-items: center;
}

button {
  background-color: #1131BE;
  color: var(--col-btm-navi-txt-bg-text);
  border: none;
  outline: none;
  font-size: 16px;
  width: 90%;
  height: 46px;
  cursor: pointer;
}

button:hover {
  opacity: 0.7;
}

.cpi-eye, .cpi-eye-off {
  margin: auto;
}

/* hide browser default 'show password' icon */
::-ms-reveal {
  display: none;
}
