.form-field {
  border-top: solid 1px #dddddd;
  margin-bottom: calc(8px * 5);
}

@media screen and (max-width: 960px) {
  .form-field {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 520px) {
  .form-field {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

.form-field__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: calc(8px * 3);
  padding-bottom: calc(8px * 3);
  border-bottom: solid 1px #dddddd;
}

@media screen and (max-width: 960px) {
  .form-field__item {
    padding-top: calc((8px * 3) * 0.75);
  }
}

@media screen and (max-width: 520px) {
  .form-field__item {
    padding-top: calc((8px * 3) * 0.5);
  }
}

@media screen and (max-width: 960px) {
  .form-field__item {
    padding-bottom: calc((8px * 3) * 0.75);
  }
}

@media screen and (max-width: 520px) {
  .form-field__item {
    padding-bottom: calc((8px * 3) * 0.5);
  }
}

.form-field dt {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 257px;
}

@media screen and (max-width: 960px) {
  .form-field dt {
    width: 100%;
    margin-bottom: 8px;
  }
}

@media screen and (max-width: 768px) {
  .form-field dt {
    font-size: 1.4rem;
    font-weight: bold;
  }
}

.form-field dd {
  width: calc(100% - 257px);
}

@media screen and (max-width: 960px) {
  .form-field dd {
    width: 100%;
  }
}

.form-required,
.form-optional {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 16px;
  color: #E13020;
  font-weight: bold;
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  .form-required,
  .form-optional {
    margin-left: 8px;
    font-size: 1.4rem;
  }
}

input,
select,
textarea {
  display: block;
  width: 100%;
  height: 56px;
  padding: 0 16px;
  background: #F9F9F9;
  font-size: 1.6rem;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  line-height: 56px;
}

input::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #919090;
}

input::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #919090;
}

input:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #919090;
}

input::-ms-input-placeholder, select::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #919090;
}

input::placeholder,
select::placeholder,
textarea::placeholder {
  color: #919090;
}

select {
  color: #333333;
  background: url("/img/general/common/select.svg") center right 16px/14px 14px no-repeat #F9F9F9;
}

textarea {
  overflow: auto;
  height: 200px;
  padding: 16px;
  line-height: 1.8;
  resize: vertical;
  cursor: pointer;
}

.form-send {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 24px;
}

.form-send button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 2px 0 0 0;
  width: 100%;
  max-width: 400px;
  height: 64px;
  background: #2072C8;
  cursor: pointer;
  border: solid 2px #2072C8;
  border-radius: 4px;
  color: #ffffff;
  line-height: 1.4;
  font-weight: bold;
  font-size: 1.6rem;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.form-send button::before {
  position: absolute;
  top: 50%;
  right: 8px;
  content: "";
  display: block;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 6px;
  border-color: transparent transparent transparent #ffffff;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.form-send button:hover::before {
  right: 4px;
}

@media screen and (max-width: 768px) {
  .form-send button {
    height: 48px;
  }
}

@media screen and (max-width: 520px) {
  .form-send button {
    padding: 1px 0 0 0;
    line-height: 1.2;
    font-size: 1.4rem;
  }
}

.form-send button::before {
  right: 16px;
}

.form-send button:hover {
  background: #ffffff;
  color: #2072C8;
}

.form-send button:hover::before {
  right: 12px;
  border-color: transparent transparent transparent #2072C8;
}

.form-send button:has(input[type="submit"]:focus-visible) {
  outline: solid 2px -webkit-focus-ring-color;
}

@-moz-document url-prefix() {
  .form-send:focus-within {
    outline: solid 2px -webkit-focus-ring-color;
  }
}

.error-txt {
  padding: 4px 0 0;
  color: #E13020;
}

.form-message {
  margin-top: -40px;
  padding-top: 40px;
}

@media screen and (max-width: 960px) {
  .form-message {
    margin-top: -72px;
    padding-top: 72px;
  }
}

.form-message span {
  display: block;
  margin-bottom: calc(8px * 4);
  padding: calc(8px * 4);
  border: solid 1px #dddddd;
  font-size: 1.4rem;
  text-align: center;
}

@media screen and (max-width: 960px) {
  .form-message span {
    margin-bottom: calc((8px * 4) * 0.75);
  }
}

@media screen and (max-width: 520px) {
  .form-message span {
    margin-bottom: calc((8px * 4) * 0.5);
  }
}

@media screen and (max-width: 960px) {
  .form-message span {
    padding: calc((8px * 4) * 0.75);
  }
}

@media screen and (max-width: 520px) {
  .form-message span {
    padding: calc((8px * 4) * 0.5);
  }
}

.form-message__error span {
  color: #E13020;
  border: solid 1px #E13020;
}

.form-message__success span {
  color: #189178;
  border: solid 1px #189178;
}

.privacy-frame {
  position: relative;
  padding: 16px;
  background: #F9F9F9;
  width: 100%;
  height: 310px;
  margin: 0 auto;
  margin-bottom: calc(8px * 4);
}

@media screen and (max-width: 960px) {
  .privacy-frame {
    margin-bottom: calc((8px * 4) * 0.75);
  }
}

@media screen and (max-width: 520px) {
  .privacy-frame {
    margin-bottom: calc((8px * 4) * 0.5);
  }
}

.privacy-frame__inner {
  overflow-y: scroll;
  width: 100%;
  height: 100%;
  padding: calc(8px * 2);
}

@media screen and (max-width: 960px) {
  .privacy-frame__inner {
    padding: calc((8px * 2) * 0.75);
  }
}

@media screen and (max-width: 520px) {
  .privacy-frame__inner {
    padding: calc((8px * 2) * 0.5);
  }
}

.privacy-frame__inner::-webkit-scrollbar {
  width: 4px;
  padding: 6px;
}

@media screen and (max-width: 960px) {
  .privacy-frame__inner::-webkit-scrollbar {
    width: 6px;
  }
}

.privacy-frame__inner::-webkit-scrollbar-track {
  background: #dddddd;
}

.privacy-frame__inner::-webkit-scrollbar-thumb {
  background: #919090 !important;
  width: 4px;
  height: 48px;
  border-radius: 1px;
  background-clip: content-box;
}

@media screen and (max-width: 960px) {
  .privacy-frame__inner::-webkit-scrollbar-thumb {
    border: 0;
    padding: 0;
  }
}

.privacy-frame__inner .privacy-list__item {
  padding: 24px 0;
  border-bottom: solid 1px #dddddd;
}

@media screen and (max-width: 960px) {
  .privacy-frame__inner .privacy-list__item {
    padding: 16px 0;
  }
}

.privacy-frame__inner .privacy-list__item:first-child {
  border-top: solid 1px #dddddd;
}

.privacy-frame__inner .privacy-list__item dt {
  margin: 0 0 12px;
  font-size: 2.4rem;
  font-weight: bold;
}

.grecaptcha-badge {
  visibility: hidden;
}

.recaptcha-txt {
  text-align: center;
}

.recaptcha-txt a {
  color: #919090;
  text-decoration: underline;
}

.recaptcha-txt a:hover {
  text-decoration: none;
}

.about .about-tbl {
  margin-bottom: calc(8px * 4);
}

@media screen and (max-width: 520px) {
  .about .about-tbl {
    font-size: 1.4rem;
  }
}

.about .about-tbl__item {
  display: grid;
  grid-template-columns: 160px 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 14px 0;
  border-bottom: solid 1px #dddddd;
}

@media screen and (max-width: 768px) {
  .about .about-tbl__item {
    padding: 12px 0;
    grid-template-columns: 120px 1fr;
  }
}

@media screen and (max-width: 520px) {
  .about .about-tbl__item {
    grid-template-columns: 106px 1fr;
  }
}

.about .about-tbl__item:first-child {
  border-top: solid 1px #dddddd;
}

.about .about-tbl__item dt,
.about .about-tbl__item dd {
  padding: 0 8px 0 16px;
}

@media screen and (max-width: 768px) {
  .about .about-tbl__item dt,
  .about .about-tbl__item dd {
    padding: 0 8px;
  }
}

.about .about-tbl__item dt {
  font-weight: bold;
}

.about .about-tbl__item dd {
  border-left: 1px solid #dddddd;
}

@media screen and (max-width: 960px) {
  .about .about-tbl {
    margin-bottom: calc((8px * 4) * 0.75);
  }
}

@media screen and (max-width: 520px) {
  .about .about-tbl {
    margin-bottom: calc((8px * 4) * 0.5);
  }
}

.about .about-info {
  padding: calc(8px * 2);
  background: #F9F9F9;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (max-width: 960px) {
  .about .about-info {
    padding: calc((8px * 2) * 0.75);
  }
}

@media screen and (max-width: 520px) {
  .about .about-info {
    padding: calc((8px * 2) * 0.5);
  }
}

.contact .form {
  width: 100%;
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 40px;
  padding-left: 40px;
}

@media screen and (max-width: 1280px) {
  .contact .form {
    padding-right: 32px;
    padding-left: 32px;
  }
}

@media screen and (max-width: 960px) {
  .contact .form {
    padding-right: 24px;
    padding-left: 24px;
  }
}

@media screen and (max-width: 520px) {
  .contact .form {
    padding-right: 16px;
    padding-left: 16px;
  }
}

@media screen and (max-width: 768px) {
  .contact .form {
    padding: 0;
  }
}

/*# sourceMappingURL=../../../maps/general/pages/join.css.map */
