.full-loading-box {
  position: absolute;
  width: 100%;
  height: 100dvh;
  top: 0;
  background-color: white;
  display: flex;
  align-items: center;
}

.loaders-container {
  margin: 0 auto;
  width: 300px;
  text-align: center;
  font-size: 0;
}
.loaders-container .loading-container-inner {
  position: relative;
  box-sizing: border-box;
  padding: 30px;
  width: auto;
  height: 140px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle {
  box-sizing: border-box;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  border: 10px solid #eee;
  border-top-color: #ccc;
  animation: spin 1s infinite linear;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
html,
body {
  height: 100%;
  font-family: "Noto Sans JP", sans-serif;
}

body.login {
  display: flex;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #f5f5f5;
}

main {
  margin: 30px auto 0px;
  padding-bottom: 60px;
  box-sizing: border-box;
}
.hide {
  display: none;
}

#service-head {
  font-size: 40px;
}

.form-signin {
  max-width: 375px;
  padding: 15px;
}

.form-signin .form-floating:focus-within {
  z-index: 2;
}

.form-signin input[type=email] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.form-signin input[type=password] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.bg-us {
  background-color: #093788;
}
.bg-us p {
  line-height: 200%;
}
.bg-us h1 {
  border-bottom: 3px solid #093788;
  position: relative;
}
.bg-us h1::before {
  content: "";
  position: absolute;
  bottom: -3px;
  height: 3px;
  width: 25%;
  background-color: #387bf2;
}

.question-box {
  background-color: white;
  padding: 60px;
  border-radius: 30px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0px 2px 5px lightgray;
}
.question-box img {
  max-width: 80%;
}
.question-box img.align-tenter {
  display: block;
  margin: 0 auto;
}
.question-box ul {
  list-style: none;
}
.question-box ul li + li {
  margin-top: 20px;
}

.answer-box {
  background-color: white;
  padding: 60px;
  border-radius: 30px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0px 2px 5px lightgray;
}
.answer-box h2 {
  border-bottom: 3px solid #093788;
  position: relative;
}
.answer-box h2::before {
  content: "";
  position: absolute;
  bottom: -3px;
  height: 3px;
  width: 25%;
  background-color: #387bf2;
}

/*# sourceMappingURL=styles.css.map */
