@charset "UTF-8";
/* ログイン画面、新規登録画面、新規登録の情報入力画面、共通css */



form {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 2%;
  padding-top: 30px;
  width: 320px;
  margin: 30px auto;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}

.wide-form{
  width: 90%;
}

.wide-form input{
  padding: 10px 10px;
}

label, textarea {
  display: block;
  margin-bottom: 10px;
  padding-left: 10px;
  /* min-width: 600px; */
  overflow: hidden;
}

input {
  background: #f5f5f5;
  padding: 4.5% 0 4.5% 5%;
  border-radius: 10px;
  margin-top: 10px;
  border: 1px solid #eee;
  font-size: 14px;
}

.link {
  font-size: 14px;
}

.link_a:hover{
  color: #94C9D0;
}

.align-light {
  text-align: right;
}

.form-group {
  margin-bottom: 35px;
}

input:required {
  /* background: #ffcdd2; */
  width: 100%;
}

/*
input[type="email"]:invalid {
  background: #ffcdd2;
}
 */

input:valid {
  background: transparent;
}

input:focus {
  background: rgba(189, 226, 234, 1);
}

.rule_container{
  margin-bottom: 40px;
}

h3{
  font-weight: bold;
  margin: 20px 0;
}

/* モーダル */

.button {
  padding: 1px 10px;
  transition: 0.5s;
  margin-top: 0;
  color: #FF6347;
}

.button:hover{
  cursor: pointer;
}

.modalScroll,
.ScrollContent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.modal_bg {
  background: rgba(0, 0, 0, 0.32);
  height: 100vh;
  position: absolute;
  width: 100%;
}

.js-modal-close{
  margin-top: 20px;
  text-align: center;
}

.modalScroll {
  background: #fff;
  height: 500px;
  width: 1000px;
  max-height: 800px;
  border-radius: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Added to center the modal */
}
.ScrollContent {
  overflow-y: scroll;
  height: 350px;
  width: 95%;
  border-radius: 20px;
}
::-webkit-scrollbar {
  border-radius: 10px;
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background-color: #b6b6b6;
  border-radius: 10px;
}

.modal_content h1,
.modal_content {
  color: rgb(49, 49, 49);
  text-align: left;
  padding: 20px 10px 0px 10px;
}

.btn_ai {
  background-color: #94C9D0;
  color: #fff;
  border-radius: 100px;
  margin-left: 10px;
  min-width: 100px;
  border: none;
  cursor: pointer;
  transition: 0.5s;
}

.btn_ai:hover {
  background-color: #fff;
  color: #94C9D0;
}

.small_letter{
  font-size: 12px;
}

select{
  padding: 10px 20px;
  margin-bottom: 30px;
  border-bottom: #94C9D0 5px solid;
  border-top: none;
  border-left: none;
  border-right: none;
  width: 90%;
}


/* pass page css */
.mail_p {
  color: #666666;
    font-size: 0.9rem;
    text-align: left;
    line-height: 1.5;
    margin: 30px 0 20px;
}

@media screen and (max-width: 767px) {
  form{
    width: 90%;
  }

  .modalScroll {
    width: 300px;
  }
}

