/* BWSiteCommonCss */
* {
  margin: 0;
  padding: 0;
}
div {
  display: block;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  height: 100vh;
  counter-reset: number 0;
  background: rgb(247,247,247);
}
a {
  color: #000;
  text-decoration: none;
}
p {
  text-align: center;
}
/* outer */
.outer {
  padding: 60px 20px;
  box-sizing: border-box;
}
/* inner */
.inner {
  margin: 0 auto;
  max-width: 540px;
  padding: 40px;
  border-radius: 8.786px;
  box-sizing: border-box;
  background-color: white;
  /* border: solid 3px black; */
}
.innerShadow {
  filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.4));
}
/* form */
.form {
  max-width: 540px;
  margin: 0 auto;
}
.formBox {
  margin-top: 30px;
  font-size: 16px;
}
.loginBox {
  margin-top: 0;
}
.formBox label {
  display: block;
  margin: 0 0 4px;
}
.formBox input {
  display: block;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}
.formText {
  margin-bottom: 8px;
  font-size: 14px;
}
/* btn */
.formBtn {
  box-sizing: border-box;
  box-shadow: 2px 2px 4px #d8d8d8;
  background-color: rgb(141,28,33);
  text-align: center;
  max-width: 400px !important;
  margin: 25px auto !important;
  border-radius: 8px !important;
  font-size: 16px !important;
}
.answerBtn {
  box-shadow: 2px 2px 4px #d8d8d8;
  border-radius: 8px;
  background-color: rgb(141,28,33);
  font-size: 14px;
}
.disabledBtn {
  background-color: #909090;
}
body .btn {
  line-height: normal !important;
  font-size: 14px !important;
}
.clickBtn {
  font-family: inherit !important;
  font-weight:inherit !important;
  background:transparent !important;
  border:none !important;
  height: 100% !important;
  width: 100% !important;
  font-size: 14px !important;
  padding: 20px 24px !important;
  color: white !important;
}
/* links */
.links {
  text-align: center;
}
.underLinks a {
  font-size: 14px;
}
.footerLinks {
  margin: 10px;
}
/* image */
.logo {
  margin-bottom: 35px;
  width: 90%;
  height: 90%;
}
.logoBox {
  display: flex;
  justify-content: center;
}
/* title */
.commonTitle {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
/* placeholder */
::placeholder {
  color: #a9a9a9;
  font-size: 100%;
}
/* footer */
footer {
  position: absolute;
  bottom: 20;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* error */
.error {
  color: red;
  font-size: 16px;
}