.membership .price-list__item {
  display: flex;
  flex-wrap: wrap;
}

.membership .price-list__item dt {
  width: 60px;
}

@media screen and (max-width: 768px) {
  .membership .price-list__item dt {
    width: 50px;
  }
}

.membership .price-list__item dd {
  width: calc( 100% - 60px);
}

@media screen and (max-width: 768px) {
  .membership .price-list__item dd {
    width: calc( 100% - 50px);
  }
}

.contact-content {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.contact-content .note-txt {
  font-weight: bold;
}

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

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

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

.contact-content .form-field__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: calc(8px * 3);
  padding-bottom: calc(8px * 3);
  border-bottom: solid 1px #C9C8C6;
}

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

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

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

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

.contact-content .form-field__item dt {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 240px;
}

@media screen and (max-width: 768px) {
  .contact-content .form-field__item dt {
    width: 100%;
    margin: 0 0 8px;
  }
}

.contact-content .form-field__item dt .form-required {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-left: 16px;
  padding: 2px 8px;
  background: #D93200;
  color: #fefefe;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 2px;
}

@media screen and (max-width: 768px) {
  .contact-content .form-field__item dt .form-required {
    margin-left: 12px;
    padding: 1px 6px;
    font-size: 1.2rem;
  }
}

.contact-content .form-field__item dd {
  position: relative;
  width: calc( 100% - 288px);
}

@media screen and (max-width: 768px) {
  .contact-content .form-field__item dd {
    width: 100%;
  }
}

.contact-content .form-field__item dd input,
.contact-content .form-field__item dd textarea {
  display: block;
  width: 100%;
  height: 56px;
  padding: 0 16px;
  background: #F4F3F0;
  font-size: 1.6rem;
  line-height: 56px;
}

@media screen and (max-width: 768px) {
  .contact-content .form-field__item dd input,
  .contact-content .form-field__item dd textarea {
    font-size: 1.4rem;
  }
}

.contact-content .form-field__item dd textarea {
  overflow: auto;
  height: 200px;
  padding: 16px;
  line-height: 1.8;
  resize: vertical;
}

.contact-content .form-field__item dd .radio-btn {
  position: relative;
  display: block;
  padding-left: 22px;
}

.contact-content .form-field__item dd .radio-btn::before {
  position: absolute;
  top: 4px;
  left: 0;
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  border: solid 1px #008EAE;
  border-radius: 50%;
}

.contact-content .form-field__item dd .radio-btn::after {
  display: none;
  position: absolute;
  top: 7px;
  left: 3px;
  content: "";
  width: 10px;
  height: 10px;
  background: #008EAE;
  border-radius: 50%;
  z-index: 1;
}

.contact-content .form-field__item dd input[type="radio"]:checked + .radio-btn::after {
  display: block;
}

.contact-content .form-field__item dd input[type="radio"] {
  opacity: 0;
  position: absolute;
}

.contact-content .form-field__item dd input:focus-visible + .radio-btn {
  outline: solid 2px #D97500;
}

.privacy-frame {
  position: relative;
  padding: 12px;
  border: solid 1px #C9C8C6;
  border-radius: 2px;
  width: 100%;
  height: 330px;
}

@media screen and (max-width: 768px) {
  .privacy-frame {
    height: 260px;
  }
}

.privacy-frame__inner {
  overflow-y: scroll;
  width: 100%;
  height: 100%;
  padding: 20px;
}

@media screen and (max-width: 768px) {
  .privacy-frame__inner {
    padding: 12px;
  }
}

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

.privacy-frame__inner::-webkit-scrollbar-track {
  background: #eeeeee;
  border-radius: 4px;
}

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

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

.privacy-frame__inner .policy-ttl {
  text-align: center;
  margin: 0 0 40px;
}

@media screen and (max-width: 960px) {
  .privacy-frame__inner .policy-ttl {
    margin: 0 0 24px;
  }
}

@media screen and (max-width: 768px) {
  .privacy-frame__inner .policy-ttl {
    margin: 0 0 16px;
  }
}

.privacy-frame__inner .policy-ttl__main {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.2;
}

@media screen and (max-width: 960px) {
  .privacy-frame__inner .policy-ttl__main {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 768px) {
  .privacy-frame__inner .policy-ttl__main {
    font-size: 2rem;
  }
}

.privacy-frame__inner .policy-ttl__sub {
  color: #005aa6;
  font-weight: bold;
}

.privacy-frame__inner .policy-list {
  counter-reset: policy-num 0;
}

.privacy-frame__inner .policy-list__item {
  position: relative;
  counter-increment: policy-num;
}

.privacy-frame__inner .policy-list__item dt {
  position: relative;
  padding: 0 0 0 54px;
  margin: 0 0 4px 0;
  font-weight: bold;
  font-size: 2.4rem;
}

@media screen and (max-width: 960px) {
  .privacy-frame__inner .policy-list__item dt {
    padding: 0 0 0 46px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .privacy-frame__inner .policy-list__item dt {
    padding: 0 0 0 38px;
    font-size: 1.6rem;
  }
}

.privacy-frame__inner .policy-list__item dt::before {
  position: absolute;
  top: -2px;
  left: 0;
  content: counter(policy-num, decimal-leading-zero) ".";
  font-family: "Manrope", sans-serif;
  font-weight: bold;
  font-size: 2.6rem;
  color: #005aa6;
  letter-spacing: .03em;
}

@media screen and (max-width: 960px) {
  .privacy-frame__inner .policy-list__item dt::before {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 768px) {
  .privacy-frame__inner .policy-list__item dt::before {
    font-size: 1.8rem;
  }
}

.form-send {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 8px 12px;
  margin: 0 auto 32px;
  width: 100%;
  max-width: 480px;
  height: 80px;
  border: 1px solid #005aa6;
  border-radius: 2px;
  color: #fefefe;
  line-height: 1.4;
  text-align: center;
  background: #005aa6;
  transition: .3s ease-out;
  cursor: pointer;
}

@media screen and (max-width: 960px) {
  .form-send {
    height: 64px;
  }
}

.form-send::before {
  position: absolute;
  top: 50%;
  right: 24px;
  content: "";
  width: 24px;
  height: 24px;
  background: #fefefe;
  border-radius: 2px;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .form-send::before {
    width: 20px;
    height: 20px;
    top: calc( 50% - 1px);
  }
}

.form-send::after {
  position: absolute;
  top: calc( 50% - 6px);
  right: 31px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #005aa6;
}

@media screen and (max-width: 768px) {
  .form-send::after {
    top: calc( 50% - 6px);
    right: 30px;
    border-width: 5px 0 5px 7px;
  }
}

.form-send span {
  position: relative;
  padding: 0 4px 0 0;
  font-size: 1.8rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .form-send span {
    font-size: 1.6rem;
  }
}

.form-send:hover {
  background: #fefefe;
  color: #005aa6;
  transform: translate(4px, 4px);
}

.form-send:hover::before {
  background: #005aa6;
}

.form-send:hover::after {
  border-color: transparent transparent transparent #fefefe;
}

.form-send input[type="submit"] {
  opacity: 0;
  position: absolute;
}

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

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

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

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