@charset "UTF-8";

#progress-bar-area {
  width: 100%;
  height: 25px;
  bottom: 0;
  position: fixed;
  background-color: #e7eef2;
  display: none;
}

#progress-bar{
  width: 65%;
  height: 16px;
  left: 33%;
  bottom: 5px;
  position: absolute;
  text-align: center;
  -webkit-appearance: none; /* プログレスバーのスタイルをリセット */
  -moz-appearance: none; /* プログレスバーのスタイルをリセット */
  border-radius: 15px;
}
#progress-info{
  font-size: 12px;
  height: 20px;
  right: 73%;
  bottom: 2px;
  position: absolute;
}
::-webkit-progress-bar {
  background-color: #cfe2e2; /* プログレスバーの背景色/-webkit- 用 */
  border-radius: 15px;
}
::-webkit-progress-value {
  background-color: #00a0e9; /* プログレスバーの進捗部分色/-webkit- 用 */
  border-radius: 15px;
}

::-moz-progress-bar {
  background-color: cfe2e2; /* プログレスバーの進捗部分色/-moz- 用 */
  border-radius: 15px;
}
::-moz-progress-value {
  background-color: #00a0e9; /* プログレスバーの進捗部分色/-moz- 用 */
  border-radius: 15px;
}
/* reCAPTCHA v3　表示位置 */
.grecaptcha-badge{
    margin-bottom: 15px;
}