.heading {
  text-align: center;
}
.heading--en {
  margin-right: auto;
  margin-bottom: 8px;
  margin-left: auto;
}
.heading--ja {
  font-weight: 600;
  font-size: 45px;
  letter-spacing: 0.075em;
  text-indent: 0.075em;
}
@media screen and (max-width: 1200px) {
  .heading--ja {
    font-size: 36px;
  }
}
@media screen and (max-width: 576px) {
  .heading--ja {
    font-size: 26px;
  }
}

.form__tab {
  display: flex;
  justify-content: center;
  width: 750px;
  max-width: 100%;
  margin: 0 auto 100px;
}
.form__tabItem {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 33.3%;
  height: 65px;
  border: 1px solid #52A893;
  color: #52A893;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.075em;
  text-indent: 0.075em;
}
.form__tabItem span {
  font-weight: inherit;
}
.form__tabItem:first-of-type {
  border-radius: 50px 0 0 50px;
}
.form__tabItem:nth-of-type(2) {
  margin: 0 -1px;
}
.form__tabItem:last-of-type {
  border-radius: 0 50px 50px 0;
}
.form .wp-block-table td,
.form .wp-block-table th {
  padding: 0;
  border: none;
}
.form .mw_wp_form_input .form__tabItem:first-of-type {
  background: #52A893;
  color: #fff;
}
.form .mw_wp_form_input .form__item {
  margin-bottom: 40px;
}
.form .mw_wp_form_input .form__item--message {
  margin-bottom: 70px;
}
.form .mw_wp_form_input .form__item .error {
  display: inline-block;
  position: relative;
  margin-top: 15px;
  padding: 12px 20px;
  border-radius: 5px;
  background: #f44336;
  color: #fff;
  font-size: 90%;
  letter-spacing: 0.05em;
}
.form .mw_wp_form_input .form__item .error::before {
  display: block;
  position: absolute;
  top: -5px;
  left: 20px;
  transform: rotate(-135deg);
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent #f44336 #f44336 transparent;
  border-width: 12px;
  border-radius: 3px;
  content: "";
}
.form .mw_wp_form_input .form__select {
  position: relative;
  z-index: 1;
  border-radius: 5px;
  background: #ededed;
  cursor: pointer;
}
.form .mw_wp_form_input .form__select::after {
  position: absolute;
  width: 0;
  height: 0;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  border-style: solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 6px solid #37BCB0;
  border-bottom: 0;
  z-index: -1;
  content: "";
}
.form .mw_wp_form_input .form__select select {
  background: none;
  border: none;
  width: 100%;
  padding: 23px 26px;
  color: #212121;
  font-size: 16px;
  line-height: 1.5;
  outline: none;
  cursor: pointer;
}
.form .mw_wp_form_confirm .form__tabItem:nth-of-type(2) {
  background: #52A893;
  color: #fff;
}
.form .mw_wp_form_confirm .form__item {
  padding: 30px 0;
  border-bottom: 1px dashed #bbb;
}
.form .mw_wp_form_confirm .form__item--message {
  margin-bottom: 50px;
}
.form .mw_wp_form_confirm .form__label {
  width: 210px;
}
.form .mw_wp_form_confirm .form__select,
.form .mw_wp_form_confirm .form__input {
  color: #555;
  font-size: 16px;
  letter-spacing: 0.075em;
}
.form .mw_wp_form_complete .form__tab {
  margin-bottom: 50px;
}
.form .mw_wp_form_complete .form__tabItem:last-of-type {
  background: #52A893;
  color: #fff;
}
.form__item {
  display: flex;
}
.form__item .form__select {
  flex: initial;
  width: 40%;
  max-width: 400px;
}
.form__item--name .form__input, .form__item--tel .form__input {
  flex: initial;
  width: 40%;
  max-width: 400px;
}
.form__item--birthday .form__input {
  flex: initial;
  width: 35%;
  max-width: 240px;
}
.form__item:not(.form__item--message) {
  align-items: center;
}
.form__item--confirm .form__label span {
  display: block;
}
.form__item--confirm .form__label span:last-of-type {
  font-size: 77%;
}
.form__label {
  width: 180px;
}
.form__label label {
  font-weight: 700;
  font-size: 16px;
}
.form__note {
  display: block;
  font-weight: 500;
  font-size: 13px;
}
.form__input {
  flex: 1;
}
.form__input--text {
  flex: 1;
}
.form__input--text input, .form__input--text textarea {
  display: block;
  width: 100%;
  padding: 23px 26px;
  border: 2px solid #F5F4E3;
  border-radius: 5px;
  background: #F5F4E3;
  outline: none;
  line-height: 1.5;
  font-size: 16px;
  letter-spacing: 0.075em;
  transition: 0.2s;
}
.form__input--text input:focus, .form__input--text textarea:focus {
  border-color: #37BCB0;
}
.form__input--text input::-moz-placeholder, .form__input--text textarea::-moz-placeholder {
  color: #c6c6c6;
  font-size: 16px;
  letter-spacing: 0.075em;
}
.form__input--text input::placeholder, .form__input--text textarea::placeholder {
  color: #c6c6c6;
  font-size: 16px;
  letter-spacing: 0.075em;
}
.form__input--text textarea {
  height: 300px;
  resize: none;
}
.form__input--check input[type=checkbox] {
  position: relative;
  width: 25px;
  height: 25px;
  border-radius: 5px;
  background-color: #F5F4E3;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.form__input--check input[type=checkbox]::before {
  display: block;
  position: absolute;
  top: -3px;
  left: 10px;
  transform: rotate(45deg);
  width: 12px;
  height: 23px;
  margin: 0 5px 0 0;
  border-right: 3px solid #212121;
  border-bottom: 3px solid #212121;
  opacity: 0;
  transition: opacity 0.3s;
  content: "";
}
.form__input--check input[type=checkbox]:checked::before {
  opacity: 1;
}
.form__input--check .vertical-item {
  display: inline-block;
  margin-top: 0;
  margin-right: 20px;
  margin-bottom: 15px;
  margin-left: 0;
  cursor: pointer;
}
.form__input--check .vertical-item label {
  cursor: pointer;
}
.form__link {
  position: relative;
  width: 260px;
  height: 70px;
  margin: auto;
}
.form__link input[type=submit] {
  width: 100%;
  height: 100%;
  padding-right: 45px;
  border: none;
  border-radius: 35px;
  background-color: #37BCB0;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  cursor: pointer;
}
.form__link .arrow {
  pointer-events: none;
}
.form__submit input[type=submit] {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  width: 313px;
  height: 71px;
  border: none;
  background-color: transparent;
  background-image: url(../images/form_button.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  outline: none;
  cursor: pointer;
}
.form__protect {
  margin-top: 3.5em;
  margin-left: 180px;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.form__protect a {
  color: #2392d6;
}
@media screen and (max-width: 1200px) {
  .form__tab {
    width: 560px;
    margin-bottom: 80px;
  }
  .form__tabItem {
    height: 60px;
    font-size: 15px;
  }
}
@media screen and (max-width: 576px) {
  .form__tab {
    margin-bottom: 50px;
  }
  .form__tabItem {
    height: 40px;
    font-size: 12px;
    letter-spacing: 0;
    text-indent: 0;
  }
  .form__item {
    display: block;
  }
  .form__item--name .form__input, .form__item--tel .form__input, .form__item--birthday .form__input {
    max-width: none;
    width: 100%;
  }
  .form__item .form__select {
    max-width: none;
    width: 100%;
  }
  .form__label {
    width: 100%;
    margin-bottom: 7px;
  }
  .form__label label {
    font-size: 14px;
  }
  .form__input--text input, .form__input--text textarea {
    padding: 16px 22px;
    font-size: 14px;
  }
  .form__input--text textarea {
    height: 220px;
  }
  .form__input--check .vertical-item {
    margin-bottom: 5px;
  }
  .form .mw_wp_form_input .form__item {
    margin-bottom: 30px;
  }
  .form .mw_wp_form_input .form__select select {
    padding: 16px 22px;
    font-size: 14px;
  }
  .form .mw_wp_form_confirm .form__item {
    padding: 20px 0;
  }
  .form__link {
    width: 220px;
    height: 60px;
  }
  .form__submit input[type=submit] {
    width: 260px;
    height: 65px;
  }
  .form__protect {
    margin-top: 1.5em;
    margin-left: 0;
    font-size: 13px;
  }
}

.confirm .contact__contents {
  padding-top: 220px;
}
@media screen and (max-width: 1200px) {
  .confirm .contact__contents {
    padding-top: 160px;
  }
}
@media screen and (max-width: 576px) {
  .confirm .contact__contents {
    padding-top: 120px;
  }
}

.thanks .contact__contents {
  padding-top: 220px;
}
@media screen and (max-width: 1200px) {
  .thanks .contact__contents {
    padding-top: 160px;
  }
}
@media screen and (max-width: 576px) {
  .thanks .contact__contents {
    padding-top: 120px;
  }
}

.complete__heading {
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0.025em;
  text-indent: 0.025em;
}
.complete__contents {
  margin-bottom: 40px;
  text-align: center;
}
.complete__text {
  margin-bottom: 1em;
  line-height: 1.83;
  letter-spacing: 0.025em;
}
.complete__text:last-of-type {
  margin-bottom: 0;
}
.complete__link {
  text-align: center;
}
.complete__link a {
  padding-right: 90px;
  padding-left: 40px;
  background-color: #37BCB0;
}
.complete__button a {
  margin: auto;
}
@media screen and (max-width: 1200px) {
  .complete__contents {
    max-width: 520px;
    margin: 0 auto 40px;
    text-align: left;
  }
}
@media screen and (max-width: 576px) {
  .complete__heading {
    font-size: 16px;
  }
  .complete__link a {
    padding-right: 80px;
    padding-left: 30px;
  }
}

.contact {
  padding-top: 200px;
  padding-bottom: 150px;
  background-color: #E8E7D2;
}
.contact__inner {
  width: 85%;
  max-width: 860px;
  margin: auto;
}
.contact__heading {
  margin-bottom: 30px;
}
.contact__heading .heading--en {
  width: 120px;
}
.contact__lead {
  margin-bottom: 50px;
  font-size: 16px;
  letter-spacing: 0.025em;
  text-align: center;
  line-height: 2.0625;
  text-indent: 0.025em;
}
@media screen and (max-width: 1200px) {
  .contact::before {
    border-width: 120px 0px 0px 100vw;
  }
}
@media screen and (max-width: 576px) {
  .contact::before {
    border-width: 70px 0px 0px 100vw;
  }
  .contact__inner {
    width: 100%;
    padding: 0 20px;
  }
  .contact__heading {
    margin-bottom: 20px;
  }
  .contact__heading .heading--en {
    width: 80px;
  }
  .contact__lead {
    margin-bottom: 30px;
    font-size: 14px;
    text-align: left;
  }
  .contact__lead br {
    display: none;
  }
}/*# sourceMappingURL=contact.css.map */