@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@700;900&display=swap");
body {
  background-color: #F5F3EF;
}

.container {
  padding: 0 16px;
  margin: 0 auto;
  max-width: 832px;
}

#footer {
  padding-top: 0;
}

.mui-form-group + .mui-form-group {
  margin-top: 24px;
}

.mui-form-alert {
  border-radius: 4px;
  background: #FFF4F2;
  padding: 12px 20px;
  color: #F84026;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 24px;
}
@media screen and (min-width: 769px) {
  .mui-form-alert {
    font-size: 14px;
  }
}
.mui-form-alert.hidden {
  display: none;
}

.mui-form-submit {
  margin-top: 30px;
  text-align: center;
}

.mui-form-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.mui-form-row > .mui-form-col {
  flex: 1;
}

.mui-form-text-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: flex-start;
  align-items: flex-start;
}

.mui-form-label {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
  color: #535353;
}
@media screen and (min-width: 769px) {
  .mui-form-label {
    font-size: 16px;
  }
}
.mui-form-label span {
  padding: 2px 8px;
  border-radius: 8px;
  background: #4A7DB3;
  color: #FFF;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  display: inline-flex;
  height: 16px;
  justify-content: center;
  align-items: center;
  position: relative;
  top: -2px;
  margin-left: 4px;
}
@media screen and (min-width: 769px) {
  .mui-form-label span {
    top: -3px;
  }
}
.mui-form-label.mui-form-label-child {
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin-top: -8px;
}
@media screen and (min-width: 769px) {
  .mui-form-label.mui-form-label-child {
    margin-top: 0;
    font-size: 14px;
  }
}

.mui-form-description {
  color: #535353;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin-bottom: 10px;
}
@media screen and (min-width: 769px) {
  .mui-form-description {
    margin-bottom: 12px;
  }
}
.mui-form-description a {
  color: var(--color-nexbel-sub, #396AA0);
  font-weight: 700;
}
.mui-form-description a .icon {
  margin-left: 4px;
}
.mui-form-description a .icon svg {
  display: inline-block;
}

.mui-form-control {
  box-sizing: border-box;
  border-radius: 4px;
  border: 1px solid #DADADA;
  padding: 12px 20px;
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  resize: none;
  min-height: 48px;
}
.mui-form-control.formrun-has-error {
  border-color: #F84026;
}
@media screen and (min-width: 769px) {
  .mui-form-control {
    font-size: 16px;
  }
}
.mui-form-control.mui-form-is-empty {
  color: #DADADA;
}
.mui-form-control::placeholder {
  font-family: "Noto Sans JP", sans-serif;
  color: #DADADA;
  font-weight: normal;
}
.mui-form-control:focus-visible {
  outline: none;
  border: 1px solid #F0832C;
}
.mui-form-control:disabled {
  background-color: #DADADA;
}

textarea.mui-form-control {
  min-height: 120px;
}

select.mui-form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff url("../images/select_icon_black.svg") no-repeat right 20px top 50%;
}

.mui-form-radio {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.mui-form-radio li input {
  display: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.mui-form-radio li input:checked + label {
  background-color: #396AA0;
  color: #FFFFFF;
}
.mui-form-radio li input:checked + label::before {
  content: "●";
}
.mui-form-radio li input:disabled + label {
  background-color: #F0F0F0;
  color: #DADADA;
}
.mui-form-radio li input:disabled + label::before {
  content: "";
}
.mui-form-radio li label {
  display: flex;
  gap: 4px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 11px 15px;
  color: #373737;
  font-size: 14px;
  font-style: normal;
  font-weight: bold;
  line-height: 100%;
  border: 1px solid #DADADA;
  border-radius: 30px;
  box-sizing: border-box;
  background-color: #FFFFFF;
}
@media screen and (min-width: 769px) {
  .mui-form-radio li label {
    gap: 8px;
  }
}
.mui-form-radio li label::before {
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  border: 2px solid #DADADA;
  border-radius: 50%;
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #396AA0;
  content: "";
  font-size: 18px;
  line-height: 1;
}

.cui-checkbox-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  padding-top: 10px;
}
@media screen and (min-width: 769px) {
  .cui-checkbox-wrap {
    gap: 10px;
  }
}

.cui-checkbox {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  transition: all 0.4s;
}
.cui-checkbox * {
  transition: all 0.4s;
}
.cui-checkbox .cui-checkbox__input {
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  border: 1px solid #CCC;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: #FFFFFF;
  position: relative;
  outline: none;
}
.cui-checkbox .cui-checkbox__input:checked {
  background-color: #396AA0;
  border-color: #396AA0;
}
.cui-checkbox .cui-checkbox__input:checked::before {
  position: absolute;
  top: 5px;
  left: 4px;
  content: "";
  width: 10px;
  height: 4px;
  border-bottom: 2px solid #FFFFFF;
  border-left: 2px solid #FFFFFF;
  transform: rotate(-45deg);
  transform-origin: center;
}
.cui-checkbox .cui-checkbox__label {
  color: #444C69;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.5;
  transition: none;
  flex: 1;
}
@media screen and (min-width: 769px) {
  .cui-checkbox .cui-checkbox__label {
    font-size: 16px;
  }
}
.cui-checkbox.disabled {
  cursor: not-allowed;
  pointer-events: none;
  background: #d9d9d9;
}
.cui-checkbox.disabled .cui-checkbox__input {
  border: 2px solid #A0A0A0;
  background: transparent;
}
.cui-checkbox.disabled .cui-checkbox__input:checked {
  background-color: #A0A0A0;
  border-color: #A0A0A0;
}
.cui-checkbox.disabled .cui-checkbox__label {
  color: #A0A0A0;
}

.mui-form-text {
  color: #888;
  font-size: 10px;
  font-style: normal;
  font-weight: normal;
  line-height: normal;
  margin: 8px 0 0;
}
@media screen and (min-width: 769px) {
  .mui-form-text {
    font-size: 12px;
  }
}
.mui-form-text.mui-error {
  color: #F84026;
}
.mui-form-text.hide {
  display: none;
}

.mui-error-message {
  color: #F84026;
  font-size: 12px;
  font-style: normal;
  font-weight: normal;
  line-height: normal;
  margin: 8px 0 0;
}
@media screen and (min-width: 769px) {
  .mui-error-message {
    font-size: 14px;
  }
}

.mui-form-validator {
  position: relative;
}
.mui-form-validator.mui-error .mui-form-control {
  border-color: #F84026;
}
.mui-form-validator.mui-error .mui-error-message {
  display: block;
}
.mui-form-validator.mui-require-error .mui-form-control {
  border-color: #F84026;
}
.mui-form-validator.mui-require-error .mui-require-error-bubble {
  display: block;
}

#contact {
  padding: 112px 0 64px;
}
@media screen and (min-width: 769px) {
  #contact {
    padding: 180px 0 100px;
  }
}
#contact form {
  margin: 0;
}
#contact .contact-header {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
}
@media screen and (min-width: 769px) {
  #contact .contact-header {
    gap: 8px;
    margin-bottom: 48px;
  }
}
#contact .contact-header .contact-header__title {
  color: #1D2C61;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.7;
  margin: 0;
}
@media screen and (min-width: 769px) {
  #contact .contact-header .contact-header__title {
    font-size: 36px;
  }
}
#contact .contact-header .contact-header__text {
  color: #1D2C61;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  margin: 0;
}
@media screen and (min-width: 769px) {
  #contact .contact-header .contact-header__text {
    font-size: 18px;
  }
}
#contact .contact-contents {
  padding: 30px 20px;
  background-color: #FFFFFF;
  border-radius: 4px;
}
@media screen and (min-width: 769px) {
  #contact .contact-contents {
    padding: 36px;
  }
}

#thanks {
  padding: 112px 0 64px;
  min-height: calc(100vh - 145px);
}
@media screen and (min-width: 769px) {
  #thanks {
    padding: 180px 0 100px;
    min-height: calc(100vh - 101px);
  }
}
#thanks .thanks-header {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
#thanks .thanks-header .thanks-header__title {
  color: #1D2C61;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.7;
  margin: 0;
}
@media screen and (min-width: 769px) {
  #thanks .thanks-header .thanks-header__title {
    font-size: 36px;
  }
}
#thanks .thanks-header .thanks-header__text {
  color: #1D2C61;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  margin: 0;
}
@media screen and (min-width: 769px) {
  #thanks .thanks-header .thanks-header__text {
    font-size: 18px;
  }
}
#thanks .thanks-cta {
  margin-top: 48px;
  text-align: center;
}/*# sourceMappingURL=contact.css.map */