.page_sec_box {
  width: 90%;
  max-width: 1400px;
  background-color: #fff;
  padding: 100px 0;
  margin: 0 auto;
}

.page_text {
  font-size: 1.8rem;
}

.page_text .em {
  font-weight: bold;
  font-size: 1.2em;
}

.fs_s {
  font-size: 0.8em;
}

.mb_5 {
  margin-bottom: 5px;
}

em {
  color: #d00;
  font-weight: normal;
  font-style: normal;
}

.error {
  font-weight: bold;
  color: #D00;
}

.c_red {
  color: #D00;
}

.error:empty {
  display: none;
}

.disabled {
  position: relative;
  pointer-events: none;
}

.disabled::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(241, 241, 241, 0.5);
  z-index: 100;
}

.contact_lead {
  margin-bottom: 50px;
}

.conplete .contact_lead {
  text-align: center;
  margin-bottom: 0;
}

.conplete .contact_lead .em {
  text-align: center;
  margin-bottom: 1em;
}

.form_lead {
  text-align: center;
  margin: 50px 0;
}

.form_lead .em {
  margin-top: 30px;
}

.form_note {
  font-size: 1.4rem;
  margin-top: 20px;
}

.form_note .list_note {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form_note .list_note > li {
  display: inline-block;
}

@media screen and (max-width: 1200px) {
  .page_sec_box {
    padding: 8.33vw 0;
  }

  .page_text {
    font-size: 1.5rem;
  }

  .form_note {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  .page_sec_box {
    width: 100%;
    padding: 30px 0;
  }

  .page_text {
    font-size: 1.4rem;
  }

  .form_note {
    font-size: 1.2rem;
  }

  .form_note .list_note {
    align-items: flex-start;
  }

  .disabled::before {
    width: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%);
  }
}
.form_table {
  width: 100%;
}

.form_table em {
  font-size: 0.8em;
  vertical-align: text-top;
}

.form_table tr {
  border-bottom: 1px solid #ccc;
}

.form_table tr:first-child {
  border-top: 1px solid #ccc;
}

.form_table th,
.form_table td {
  font-size: 1.6rem;
  padding: 1.25em;
  vertical-align: middle;
}

.form_table th {
  width: 20%;
  min-width: 160px;
  font-weight: 500;
}

.form_table td {
  width: 80%;
}

.form_table.form_table_top th {
  width: 40%;
  min-width: 260px;
}

.form_table.form_table_top td {
  width: 60%;
}

.form_col2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 20px;
}

.block_list {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.block_list a {
  font-weight: 500;
}

.page_main a {
  color: var(--color-main);
  text-decoration: underline;
}

.block_col {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
}

.block_address {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.block_address input[type=text],
.block_address .select {
  margin-top: 5px;
}

select {
  width: 100%;
  padding: 8px 10px;
  background-color: #f6f6f6;
  padding-right: 2em;
  cursor: pointer;
}

.select {
  position: relative;
}

.select::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 0;
  border-bottom: solid 1px var(--color-black);
  border-right: solid 1px var(--color-black);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 12px;
  bottom: 0;
  margin: auto;
}

input[type=text] {
  width: 100%;
  padding: 8px 10px;
  background-color: #f6f6f6;
}

textarea {
  width: 100%;
  height: 220px;
  padding: 10px;
  margin: 0;
  background-color: #f6f6f6;
  border: none;
}

.radio_btn input[type=checkbox] {
  display: none;
}

.radio_btn span.radio_square {
  position: relative;
  padding-left: 2em;
  cursor: pointer;
  z-index: 1;
}

.radio_btn span.radio_square:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: 2px solid #242f88;
  border-radius: 4px;
  background-color: #fff;
  box-sizing: border-box;
  z-index: 1;
}

.radio_btn span.radio_square:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  width: 16px;
  height: 16px;
  background-color: #242f88;
  border-radius: 2px;
  z-index: 1;
  opacity: 0;
  transform: translateY(-50%) scale(0.5);
  transition-property: opacity, transform;
  transition-duration: 0.1s;
}

.radio_btn input:checked + span.radio_square:after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

#confirm .block_list {
  pointer-events: none;
  cursor: default;
}

#confirm .block_list .radio_square a {
  pointer-events: auto;
  cursor: pointer;
}

.radio_btn span.radio {
  position: relative;
  padding-left: 2em;
  cursor: pointer;
  z-index: 1;
}

.radio_btn span.radio:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 1px solid var(--color-black);
  border-radius: 50%;
  background-color: #fff;
  box-sizing: border-box;
  z-index: 1;
}

.radio_btn span.radio:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  width: 12px;
  height: 12px;
  background-color: #242f88;
  border-radius: 50%;
  z-index: 1;
  opacity: 0;
  transform: translateY(-50%) scale(0.5);
  transition-property: opacity, transform;
  transition-duration: 0.1s;
}

.radio_btn input:checked + span.radio:after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.check_btn span.check {
  position: relative;
  padding-left: 2em;
  cursor: pointer;
  z-index: 1;
}

.check_btn span.check:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 1px solid var(--color-black);
  background-color: #fff;
  box-sizing: border-box;
  z-index: 1;
}

.check_btn span.check:after {
  content: "";
  display: block;
  width: 8px;
  height: 14px;
  border-right: 2px solid var(--color-main);
  border-bottom: 2px solid var(--color-main);
  position: absolute;
  transform: rotateZ(45deg);
  left: 6px;
  bottom: 6px;
  z-index: 2;
  opacity: 0;
}

.check_btn input:checked + span.check:after {
  opacity: 1;
}

button {
  transition: background 0.3s ease, color 0.3s ease;
}

.btn_area {
  padding-bottom: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn_area .btn {
  font-size: 1.8rem;
  letter-spacing: normal;
  overflow: hidden;
  text-decoration: none;
}

.btn_area .btn > span {
  letter-spacing: 1em;
  margin-right: -1em;
}

@media screen and (max-width: 1200px) {
  .form_table th,
.form_table td {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .form_table th,
.form_table td {
    font-size: 1.4rem;
    padding: 1.25em 0;
    display: block;
    width: 100%;
  }

  .form_table th {
    min-width: auto;
    padding-right: 0;
    padding-bottom: 0;
  }

  .form_table.form_table_top th {
    width: 100%;
    min-width: auto;
  }

  .form_table.form_table_top td {
    width: 100%;
  }

  .block_col {
    flex-direction: column;
  }
}
