.entry-page .top_box {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 150px;
}
.entry-page .top_box .left {
  width: 100%;
  max-width: 760px;
}
.entry-page .top_box .right {
  width: 320px;
  padding-top: 260px;
}
.entry-page .top_text {
  width: 100%;
  max-width: 680px;
}
.entry-page .top_text p {
  line-height: 1.9;
}

.entry_note {
  background: #f3df3f;
  border: solid 1px rgba(0, 0, 0, 0.08);
  box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.12);
  padding: 28px 26px;
}
.entry_note .entry_note_lead {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0a3b5d;
}
.entry_note p {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

.entry_section {
  margin-top: 40px;
}

.entry_step_visual {
  width: 1200px;
  max-width: 90%;
  margin: 0 auto 18px;
}
.entry_step_visual img {
  width: 100%;
  height: auto;
  display: block;
}

.entry_container {
  width: 1200px;
  max-width: 90%;
  margin: 0 auto;
  background: #fff;
  border: solid 1px #e3e7ec;
  box-shadow: 0 8px 26px rgba(16, 35, 52, 0.08);
  padding: 60px 6%;
  margin-bottom: 100px;
}

.entry_global_error {
  margin-top: 26px;
  padding: 14px 16px;
  border-radius: 8px;
  background: #ffecef;
  color: #bc1328;
  font-weight: 700;
}

.entry_form,
.entry_confirm_box {
  margin-top: 36px;
}

.form_row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 0;
  border-bottom: solid 1px #adddff;
}

.form_field {
  flex-grow: 1;
  padding-top: 10px;
}

.form_label {
  background: #106eb0;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 12px 5px;
  text-align: center;
  line-height: 1.5;
  font-size: 16px;
  min-width: 230px;
}

.form_label_wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.required_badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: #cf111b;
  font-size: 11px;
  line-height: 1.3;
  color: white;
  white-space: nowrap;
}

.form_field input,
.form_field select,
.form_field textarea {
  width: 100%;
  border: solid 1px #cad5df;
  border-radius: 4px;
  min-height: 44px;
  padding: 10px 12px;
  font-size: 16px;
  color: #1a1a1a;
  background: #fff;
}
.form_field select {
  width: 300px;
  max-width: 100%;
}
.form_field textarea {
  min-height: 160px;
  resize: vertical;
}

.option_group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  margin-top: 10px;
}
.option_group label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  cursor: pointer;
}
.option_group input {
  width: 18px;
  min-height: 18px;
  margin: 0;
  padding: 0;
  accent-color: #106eb0;
}

.option_group_checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  width: 700px;
  max-width: 100%;
}
.option_group_checkbox label {
  width: calc(50% - 14px);
}

.field_notice {
  margin-top: 10px;
  color: #cf111b;
  font-size: 13px;
  line-height: 1.6;
}

.field_error {
  margin-top: 10px;
  color: #bc1328;
  font-size: 14px;
  font-weight: 700;
}

.has_error .form_label {
  background: #1d7cc3;
}
.has_error .form_field input,
.has_error .form_field select,
.has_error .form_field textarea {
  border-color: #bc1328;
  background: #fff6f8;
}

.entry_submit_wrap {
  text-align: center;
  margin-top: 38px;
}

.entry_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  min-height: 52px;
  padding: 22px 28px;
  border: 0;
  border-radius: 15px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.entry_btn_submit {
  background: #0a3b5d;
  color: #fff;
}

.entry_btn_back {
  background: #e9eef4;
  color: #2f4150;
}

.privacy_text {
  margin-top: 26px;
  text-align: center;
  font-size: 13px;
  color: #5c6670;
  line-height: 1.8;
}
.privacy_text a {
  color: #106eb0;
  text-decoration: underline;
  display: inline;
}

.entry_box_title {
  font-size: 30px;
  color: #0a3b5d;
  text-align: center;
  margin-bottom: 24px;
}

.confirm_list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: solid 1px #e6edf4;
}
.confirm_list li {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: solid 1px #e6edf4;
}

.confirm_label {
  font-weight: 700;
  color: #106eb0;
}

.confirm_value {
  line-height: 1.8;
  word-break: break-word;
}

.entry_action_row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.thanks_container .thanks_box {
  margin: 36px auto 0;
  max-width: 760px;
  text-align: center;
  padding: 46px 28px;
  border: solid 1px #e3e7ec;
  border-radius: 10px;
  background: #fbfdff;
}
.thanks_container .thanks_box h2 {
  color: #0a3b5d;
  font-size: 34px;
  margin-bottom: 18px;
}
.thanks_container .thanks_box p {
  line-height: 1.9;
  margin-bottom: 30px;
}

@media screen and (max-width: 900px) {
  .entry-page .top_box {
    display: block;
  }
  .entry-page .top_box .right {
    width: 100%;
    padding-top: 24px;
  }
  .entry-page .title_en {
    font-size: 52px;
  }
  .entry-page .title_en .title_script {
    display: block;
    margin-left: 0;
    margin-top: 8px;
    font-size: 30px;
  }
  .entry_container {
    padding: 36px 5%;
  }
  .entry_step_visual {
    margin-bottom: 12px;
  }
  .form_row {
    display: block;
    gap: 12px;
  }
  .form_label_wrap {
    display: block;
  }
  .required_badge {
    margin-top: 10px;
    margin-left: auto;
  }
  .form_label {
    min-width: 0;
    width: 100%;
  }
  .form_field {
    padding-top: 16px;
  }
  .confirm_list li {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .option_group_checkbox {
    width: 100%;
  }
  .option_group_checkbox label {
    width: calc(50% - 7px);
  }
  .entry_btn {
    width: 100%;
  }
  .entry_action_form {
    width: 100%;
  }
  .thanks_container .thanks_box h2 {
    font-size: 27px;
  }
  .entry-page .top_box {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 520px) {
  .entry_container {
    padding: 28px 16px;
  }
  .form_label {
    min-height: 48px;
    font-size: 14px;
  }
  .option_group_checkbox label {
    width: 100%;
  }
  .entry_btn {
    min-width: 0;
    padding: 18px 20px;
  }
  .thanks_container .thanks_box {
    padding: 32px 18px;
  }
}/*# sourceMappingURL=entry.css.map */