@charset "UTF-8";
.main__form {
  background: rgb(240, 240, 240);
}
.main__form__wrap {
  max-width: 800px;
  padding: 100px 0;
  display: block;
  margin: 0 auto;
  text-align: center;
}
.main__form__title_2 {
  font-size: 40px;
}
.main__form__title_3 {
  font-size: 20px;
  margin-bottom: 20px;
}
.main__form__sel {
  display: flex;
  justify-content: center;
}
.main__form__sel__p span {
  display: block;
  font-size: 18px;
  padding: 20px;
  cursor: pointer;
  border: none;
}
.main__form__uni, .main__form__other {
  display: none;
  background: white;
  padding: 20px;
  position: relative;
}
.main__form__uni__title, .main__form__other__title {
  font-size: 19px;
  line-height: 40px;
}
.main__form__uni__wrap, .main__form__other__wrap {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
.main__form__uni__wrap_chk, .main__form__other__wrap_chk {
  display: none;
}
.main__form__uni__wrap_chk:checked + form, .main__form__other__wrap_chk:checked + form {
  filter: blur(3px);
}
.main__form__uni__wrap_chk:checked + form + div, .main__form__other__wrap_chk:checked + form + div {
  display: flex;
}
.main__form__uni__wait, .main__form__other__wait {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  justify-content: center;
  align-items: center;
}
.main__form__uni__wait p, .main__form__other__wait p {
  font-size: 24px;
  color: white;
}
.main__form__uni__inpLbl, .main__form__other__inpLbl {
  display: inline-block;
  margin-top: 10px;
  width: 50%;
  position: relative;
}
.main__form__uni__inpLbl input, .main__form__uni__inpLbl textarea, .main__form__other__inpLbl input, .main__form__other__inpLbl textarea {
  width: calc(100% - 20px);
  font-size: 16px;
  line-height: 32px;
}
.main__form__uni__inpLbl input + div, .main__form__uni__inpLbl textarea + div, .main__form__other__inpLbl input + div, .main__form__other__inpLbl textarea + div {
  display: none;
  position: absolute;
  color: red;
  text-align: left;
  left: 10px;
  bottom: -14px;
  font-size: 14px;
  line-height: 14px;
  animation: js-main__form__other__inpLbl 0.3s;
}
@keyframes js-main__form__other__inpLbl {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: none;
  }
}
.main__form__uni__inpLbl_title, .main__form__other__inpLbl_title {
  display: block;
  width: 100%;
}
.main__form__uni__inpLbl_desc, .main__form__other__inpLbl_desc {
  display: block;
  width: 100%;
}
.main__form__uni__btnSubmit, .main__form__other__btnSubmit {
  display: inline-block;
  margin: 0 auto;
  font-size: 16px;
  line-height: 16px;
  padding: 15px;
  background: black;
  color: white;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}
.main__form__uni__btnSubmit:hover, .main__form__other__btnSubmit:hover {
  background: #525252;
}
.main__form__uni__btnSubmit:focus-visible, .main__form__other__btnSubmit:focus-visible {
  outline: orange auto 1px;
}
.main__form__uni__btn, .main__form__other__btn {
  margin-top: 30px;
  display: inline-flex;
  background: black;
  z-index: 1;
}
.main__form__uni__btn a, .main__form__other__btn a {
  text-decoration: none;
}
.main__form__uni__btn a p, .main__form__other__btn a p {
  position: relative;
  font-size: 16px;
  padding: 20px;
  color: white;
  transition: 0.3s;
  overflow: hidden;
  z-index: 10;
}
.main__form__uni__btn a p::before, .main__form__other__btn a p::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: white;
  transform: translateX(-100%);
  z-index: -1;
  transition: 0.3s;
}
.main__form__uni__btn a p:hover, .main__form__other__btn a p:hover {
  color: black;
  box-shadow: 0 0 1px black;
}
.main__form__uni__btn a p:hover::before, .main__form__other__btn a p:hover::before {
  transform: none;
}
.main__form__radio {
  /* 透明度0 */
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  opacity: 0;
  /* ブラウザのデフォルトのスタイルを削除 */
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  /* レイアウトから無視 */
  position: absolute;
}
.main__form__radio:focus-visible + span {
  box-shadow: 0 0 4px #004aa1;
}
.main__form__radio:checked + span {
  background: white;
}
.main__form__popup {
  position: fixed;
  z-index: 100;
  top: 70px;
  right: 6px;
  background: #e4ffad;
  width: 300px;
  max-width: 100vw;
  animation: main__form__popup 6s forwards;
  display: none;
}
.main__form__popup__btn {
  width: 40px;
  background: gray;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: white !important;
  cursor: pointer;
}
.main__form__popup > p {
  padding: 20px;
  line-height: 16px;
  font-size: 16px;
  flex: 1;
}
@keyframes main__form__popup {
  0% {
    display: flex;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}

@media screen and (max-width: 531px) {
  .main__form__other__inpLbl {
    width: 100%;
  }
}
.js-main__form__other__inpLbl {
  border: 1px solid red;
}
.js-main__form__other__inpLbl + div {
  display: block !important;
}