.form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: calc(8px * 5);
  border-top: dashed 1px #c3c3c3;
}

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

@media screen and (max-width: 519px) {
  .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;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  width: 100%;
  border-bottom: dashed 1px #c3c3c3;
}

@media screen and (max-width: 767px) {
  .form-field__item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.form-field__item.--half {
  width: 50%;
}

.form-field dt,
.form-field dd {
  padding: 16px 12px;
}

@media screen and (max-width: 767px) {
  .form-field dt,
  .form-field dd {
    padding: 16px 6px;
  }
}

.form-field dt {
  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: 240px;
  font-weight: bold;
}

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

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

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

.form-field.--long dt {
  width: 320px;
}

@media screen and (max-width: 767px) {
  .form-field.--long dt {
    width: 100%;
  }
}

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

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

.form-required {
  display: inline-block;
  margin-left: 4px;
  color: #D93200;
  font-size: 1rem;
  height: 18px;
  vertical-align: text-top;
  line-height: 1;
}

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

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

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

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

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

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

select {
  min-width: 160px;
  padding: 0 40px 0 16px;
  background: url("/img/general/common/select.svg") center right 7px/10px 6px no-repeat, linear-gradient(to left, #1A5CB9 24px, #f3f3f3 24px, #f3f3f3);
  color: #252525;
  cursor: pointer;
}

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

.length-short {
  width: 120px;
}

.length-middle {
  max-width: 300px;
}

.form-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
}

.field-btn {
  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;
  gap: 12px;
}

.field-btn label,
.field-btn a {
  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;
  height: 40px;
  padding: 0 24px;
  background: #1A5CB9;
  border: solid 1px #1A5CB9;
  border-radius: 20px;
  color: #fff;
  font-size: 1.4rem;
}

.field-btn label input,
.field-btn a input {
  display: none;
}

.field-btn label:hover,
.field-btn a:hover {
  background: #fff;
  color: #1A5CB9;
}

.field-btn label.bc-red,
.field-btn a.bc-red {
  background: #D93200;
  border-color: #D93200;
  color: #fff;
}

.field-btn label.bc-red:hover,
.field-btn a.bc-red:hover {
  background: #fff;
  color: #D93200;
}

.field-btn label.bc-l-blu,
.field-btn a.bc-l-blu {
  background: #56b3ef;
  border-color: #56b3ef;
  color: #fff;
}

.field-btn label.bc-l-blu:hover,
.field-btn a.bc-l-blu:hover {
  background: #fff;
  color: #56b3ef;
}

.field-btn label.bc-blu,
.field-btn a.bc-blu {
  background: #1A5CB9;
  border-color: #1A5CB9;
  color: #fff;
}

.field-btn label.bc-blu:hover,
.field-btn a.bc-blu:hover {
  background: #fff;
  color: #1A5CB9;
}

.field-btn label.bc-l-grn,
.field-btn a.bc-l-grn {
  background: #6ad08a;
  border-color: #6ad08a;
  color: #fff;
}

.field-btn label.bc-l-grn:hover,
.field-btn a.bc-l-grn:hover {
  background: #fff;
  color: #6ad08a;
}

.field-btn label.bc-grn,
.field-btn a.bc-grn {
  background: #31918e;
  border-color: #31918e;
  color: #fff;
}

.field-btn label.bc-grn:hover,
.field-btn a.bc-grn:hover {
  background: #fff;
  color: #31918e;
}

.field-btn label.bc-yel,
.field-btn a.bc-yel {
  background: #fce900;
  border-color: #fce900;
  color: #fff;
}

.field-btn label.bc-yel:hover,
.field-btn a.bc-yel:hover {
  background: #fff;
  color: #fce900;
}

.field-btn label.bc-orn,
.field-btn a.bc-orn {
  background: #f2881d;
  border-color: #f2881d;
  color: #fff;
}

.field-btn label.bc-orn:hover,
.field-btn a.bc-orn:hover {
  background: #fff;
  color: #f2881d;
}

.field-btn label.bc-vio,
.field-btn a.bc-vio {
  background: #8d49c7;
  border-color: #8d49c7;
  color: #fff;
}

.field-btn label.bc-vio:hover,
.field-btn a.bc-vio:hover {
  background: #fff;
  color: #8d49c7;
}

.field-btn label.bc-blk,
.field-btn a.bc-blk {
  background: #252525;
  border-color: #252525;
  color: #fff;
}

.field-btn label.bc-blk:hover,
.field-btn a.bc-blk:hover {
  background: #fff;
  color: #252525;
}

.field-btn label.bc-wht,
.field-btn a.bc-wht {
  background: #fff;
  border-color: #fff;
  color: #fff;
}

.field-btn label.bc-wht:hover,
.field-btn a.bc-wht:hover {
  background: #fff;
  color: #fff;
}

.field-btn label.bc-l-gry,
.field-btn a.bc-l-gry {
  background: #f3f3f3;
  border-color: #f3f3f3;
  color: #fff;
}

.field-btn label.bc-l-gry:hover,
.field-btn a.bc-l-gry:hover {
  background: #fff;
  color: #f3f3f3;
}

.field-btn label.bc-gry,
.field-btn a.bc-gry {
  background: #c3c3c3;
  border-color: #c3c3c3;
  color: #fff;
}

.field-btn label.bc-gry:hover,
.field-btn a.bc-gry:hover {
  background: #fff;
  color: #c3c3c3;
}

.field-btn label.bc-d-gry,
.field-btn a.bc-d-gry {
  background: #868686;
  border-color: #868686;
  color: #fff;
}

.field-btn label.bc-d-gry:hover,
.field-btn a.bc-d-gry:hover {
  background: #fff;
  color: #868686;
}

.field-place__item {
  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;
  gap: 12px;
}

.field-place__item:not(:nth-last-of-type(1)) {
  margin-bottom: 12px;
}

.field-place .field-zip {
  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;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 8px;
  width: 240px;
}

.field-place .field-region {
  width: 320px;
}

.field-password {
  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;
  gap: 12px;
}

.field-password input {
  width: calc(100% - 44px);
}

.field-password .password-ico {
  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;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1A5CB9;
  cursor: pointer;
}

.field-password .password-ico svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

.field-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.field-checkbox > .field-checkbox-ttl {
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .field-checkbox > .field-checkbox-ttl {
    width: 100%;
  }
}

.field-checkbox > .field-checkbox__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}

.field-checkbox > .field-checkbox__item label {
  cursor: pointer;
}

.field-checkbox > .field-checkbox__item label input {
  display: none;
}

.field-checkbox > .field-checkbox__item label .field-checkbox-label {
  display: inline-block;
  position: relative;
  padding-left: 32px;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .field-checkbox > .field-checkbox__item label .field-checkbox-label {
    padding-left: 28px;
    white-space: wrap;
  }
}

.field-checkbox > .field-checkbox__item label .field-checkbox-label::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  background: #f3f3f3;
  border: solid 2px #f3f3f3;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .field-checkbox > .field-checkbox__item label .field-checkbox-label::before {
    width: 22px;
    height: 22px;
  }
}

.field-checkbox > .field-checkbox__item label .field-checkbox-label::after {
  display: none;
  content: '';
  position: absolute;
  top: 5px;
  left: 8px;
  z-index: 1;
  width: 8px;
  height: 15px;
  border-style: solid;
  border-width: 0 3px 3px 0;
  border-color: transparent #1A5CB9 #1A5CB9 transparent;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

@media screen and (max-width: 767px) {
  .field-checkbox > .field-checkbox__item label .field-checkbox-label::after {
    top: 3px;
    width: 6px;
    height: 13px;
    border-width: 0 2px 2px 0;
  }
}

.field-checkbox > .field-checkbox__item label input:checked + .field-checkbox-label::before {
  border-color: #1A5CB9;
}

.field-checkbox > .field-checkbox__item label input:checked + .field-checkbox-label::after {
  display: block;
}

.field-checkbox > .field-checkbox__item > .field-checkbox-other {
  height: 32px;
  padding: 0;
  background: none;
  border-bottom: solid 1px #868686;
}

.field-checkbox > .field-checkbox__item.--nowrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

@media screen and (max-width: 767px) {
  .field-checkbox > .field-checkbox__item.--nowrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.field-checkbox.--stacking {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.field-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.field-radio > .field-radio-ttl {
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .field-radio > .field-radio-ttl {
    width: 100%;
  }
}

.field-radio > .field-radio__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}

.field-radio > .field-radio__item > label {
  cursor: pointer;
}

.field-radio > .field-radio__item > label input {
  display: none;
}

.field-radio > .field-radio__item > label .field-radio-label {
  display: inline-block;
  position: relative;
  padding-left: 32px;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .field-radio > .field-radio__item > label .field-radio-label {
    padding-left: 26px;
    white-space: wrap;
  }
}

.field-radio > .field-radio__item > label .field-radio-label::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  background: #f3f3f3;
  border: solid 2px #f3f3f3;
  border-radius: 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .field-radio > .field-radio__item > label .field-radio-label::before {
    width: 20px;
    height: 20px;
  }
}

.field-radio > .field-radio__item > label .field-radio-label::after {
  display: none;
  content: '';
  position: absolute;
  top: 50%;
  left: 5px;
  z-index: 1;
  width: 14px;
  height: 14px;
  background: #1A5CB9;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .field-radio > .field-radio__item > label .field-radio-label::after {
    left: 4px;
    width: 12px;
    height: 12px;
  }
}

.field-radio > .field-radio__item > label input:checked + .field-radio-label::before {
  border-color: #1A5CB9;
}

.field-radio > .field-radio__item > label input:checked + .field-radio-label::after {
  display: block;
}

.field-radio > .field-radio__item > .field-radio-other {
  height: 32px;
  padding: 0;
  background: none;
  border-bottom: solid 1px #868686;
}

.field-radio > .field-radio__item > .field-radio-sub {
  width: 100%;
  padding-left: 32px;
}

@media screen and (max-width: 767px) {
  .field-radio > .field-radio__item > .field-radio-sub {
    padding-left: 16px;
  }
}

@media screen and (max-width: 519px) {
  .field-radio > .field-radio__item > .field-radio-sub {
    padding-left: 0;
  }
}

.field-radio > .field-radio__item.--nowrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

@media screen and (max-width: 767px) {
  .field-radio > .field-radio__item.--nowrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.field-radio.--stacking {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.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;
}

.form-send button {
  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;
  text-align: center;
  padding: 4px 16px 0;
  position: relative;
  width: 100%;
  max-width: 470px;
  min-height: 80px;
  background: #fff;
  border-radius: 2px 2px 5px 2px;
  color: #1A5CB9;
  font-size: 2rem;
  font-weight: bold;
  -webkit-box-shadow: 0 0 6px rgba(1, 49, 90, 0.18);
  box-shadow: 0 0 6px rgba(1, 49, 90, 0.18);
  line-height: 1.4;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

@media screen and (max-width: 959px) {
  .form-send button {
    max-width: 400px;
    min-width: 64px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .form-send button {
    padding: 1px 16px 0;
    max-width: 320px;
    min-height: 56px;
    font-size: 1.4rem;
  }
}

.form-send button::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 24px;
  height: 24px;
  background-color: #1A5CB9;
  border-radius: 2px 0 2px 0;
}

@media screen and (max-width: 767px) {
  .form-send button::before {
    width: 20px;
    height: 20px;
  }
}

.form-send button::after {
  content: '';
  position: absolute;
  right: 7px;
  bottom: 7px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 7px;
  border-color: transparent transparent transparent #fce900;
}

@media screen and (max-width: 767px) {
  .form-send button::after {
    right: 6px;
    bottom: 6px;
    border-width: 4px 0 4px 6px;
  }
}

.form-send button:hover {
  background: #1A5CB9;
  color: #fff;
  -webkit-transform: translate(4px, 4px);
  transform: translate(4px, 4px);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form-send button:hover::before {
  background-color: #fce900;
}

.form-send button:hover::after {
  background-color: #fce900;
  border-color: transparent transparent transparent #1A5CB9;
}

.field-payment-btn {
  display: block;
  position: relative;
  width: 100%;
  max-width: 300px;
  margin-right: auto;
  margin-left: auto;
  border: 1px solid #1A5CB9;
  border-radius: 1px;
}

@media screen and (max-width: 519px) {
  .field-payment-btn {
    max-width: none;
  }
}

.field-payment-btn::before, .field-payment-btn::after {
  content: '';
  width: 2px;
  height: 12px;
  background: #fff;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.field-payment-btn::before {
  position: absolute;
  top: 8px;
  left: -1px;
}

.field-payment-btn::after {
  position: absolute;
  right: -1px;
  bottom: 8px;
}

.field-payment-btn input {
  width: 100%;
  height: 56px;
  padding: 0 12px;
  background: #fff;
  color: #1A5CB9;
  text-align: center;
  line-height: 56px;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .field-payment-btn input {
    height: 48px;
    line-height: 48px;
  }
}

@media screen and (max-width: 519px) {
  .field-payment-btn input {
    font-size: 1.4rem;
  }
}

.field-payment-btn:hover::before {
  top: calc(100% - 20px);
}

.field-payment-btn:hover::after {
  bottom: calc(100% - 20px);
}

.error-txt {
  padding-top: 8px;
  color: #D93200;
  font-size: 1.4rem;
  font-weight: bold;
}

@media screen and (max-width: 519px) {
  .error-txt {
    font-size: 1.2rem;
  }
}

.validate {
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.validate.--success {
  color: #1A5CB9;
}

.validate.--failed {
  color: #D93200;
}

.parsley-required {
  color: #D93200;
  padding-top: 8px;
  color: #D93200;
  font-size: 1.4rem;
  font-weight: bold;
}

@media screen and (max-width: 519px) {
  .parsley-required {
    font-size: 1.2rem;
  }
}

#invitation .lower-page {
  padding-bottom: 80px;
}

@media screen and (max-width: 959px) {
  #invitation .lower-page {
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 519px) {
  #invitation .lower-page {
    padding-bottom: 16px;
  }
}

#invitation .tbl table tr th, #invitation .tbl table tr td {
  line-height: 1.2;
}

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