/* Form */
.form-table {
  display: block;
}

.form-table tbody {
  display: block;
}

.form-table tr {
  display: flex;
}

.form-table th {
  display: block;
  width:240px;
  padding:20px 0px;
  text-align: left;
  font-size: 1.9rem;
  font-weight:600;
}

.form-table th span {
  color: #FF0000;
}

.form-table td {
  display: block;
  width: calc(100% - 240px);
}

.form-table input {
  width: 100%;
  height:64px;
  padding:0px 24px;
  border:1px solid #aaa;
  border-radius: 4px;
  font-size:1.7rem;
}

.form-table select {
  width: 100%;
  height:64px;
  padding:0px 24px;
  border:1px solid #aaa;
  border-radius: 4px;
  background: url('../img/form/select_arr.png') no-repeat right 24px center;
  font-size:1.7rem;
}

.form-table textarea {
  resize: none;
  display: block;
  width: 100%;
  height:280px;
  padding:24px;
  border:1px solid #aaa;
  border-radius: 4px;
  font-size:1.7rem;
}

.form-table .chk-list {
  display: flex;
  align-items: center;
  gap:50px;
  height: 100%;
}

.form-table .chk-list label {
  display: flex;
  align-items: center;
  position: relative;
  gap:16px;
  cursor: pointer;
}

.form-table .chk-list input {
  position: absolute;
	top:0;
	left:0;
	width:100%;
  height: 100%;
	opacity:0;
  cursor: pointer;
	/* visibility: hidden; */
}

.form-table .chk-list i {
  display: block;
  width:24px;
  height:24px;
  background: url('../img/form/check_btn_off.png') no-repeat center;
}

.form-table .chk-list input:checked + i {
  background-image: url('../img/form/check_btn_on.png');
}

.form-table .email-wrap {
  display: flex;
  align-items: center;
}

.form-table .email-wrap .box01 {
  width: 32.3%;
}

.form-table .email-wrap .box02 {
  width: 27.3%;
  margin-left:2%;
}

.form-table .email-wrap span {
  margin: 0px 2.2%;
}

.form-table .agree label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap:16px;
  font-size: 0px;
  cursor: pointer;
}

.form-table .agree input {
  position: absolute;
	top:0;
	left:0;
	width:24px;
	opacity:0;
  height: 100%;
  cursor: pointer;
}

.form-table .agree i {
  display: inline-block;
  width:24px;
  height:24px;
  background: url('../img/form/check_btn_off.png') no-repeat center;
}

.form-table .agree input:checked + i {
  background-image: url('../img/form/check_btn_on.png');
}

.form-table .agree button {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-btn {
  display: flex;
  justify-content: center;
  align-content: center;
}

.form-btn .btn {
  max-width: 480px;
  width: 100%;
  height: 72px;
  border-radius:20px;
  background-color: #3E82C4;
  font-size:1.9rem;
  font-weight:600;
  color:#fff;
  transition: var(--transition-basic2);
}

@media screen and (max-width:1200px) {
  .form-table th {
    font-size: 1.7rem;
  }

  .form-table input {
    height:58px;
    font-size:1.5rem;
  }

  .form-table select {
    height:58px;
    font-size:1.5rem;
  }

  .form-table textarea {
    font-size:1.5rem;
  }

  .form-btn .btn {
    height:68px;
    font-size:1.7rem;
  }
}
@media screen and (max-width:1024px) {
  .form-table th {
    width: 200px;
    padding:16px 0px;
  }

  .form-table td {
    width: calc(100% - 200px);
  }

  .form-table input {
    height:50px;
    padding:0px 20px;
  }

  .form-table select {
    height:50px;
    padding:0px 20px;
    background-position: right 20px center;
  }

  .form-table textarea {
    height:240px;
    padding:20px;
  }

  .form-table .chk-list {
    gap:36px;
  }

  .form-table .chk-list label {
    gap:10px;
  }

  .form-table .chk-list i {
    width: 20px;
    height:20px;
    background-size: auto 20px;
  }

  .form-table .agree label {
    gap:10px;
  }

  .form-table .agree i {
    width: 20px;
    height:20px;
    background-size: auto 20px;
  }

  .form-btn .btn {
    max-width:300px;
    height:62px;
  }
}
@media screen and (max-width:768px) {
  .form-table tr {
    flex-wrap: wrap;
  }

  .form-table th {
    width: 100%;
    padding:0px 0px 16px;
    font-size:1.6rem;
  }

  .form-table td {
    width: 100%;
  }

  .form-table input {
    height:44px;
    font-size:1.4rem;
  }

  .form-table select {
    height:44px;
    font-size:1.4rem;
  }

  .form-table textarea {
    height:200px;
    font-size:1.4rem;
  }

  .form-table .chk-list {
    height:44px;
  }

  .form-table .chk-list i {
    width: 18px;
    height:18px;
    background-size: auto 18px;
  }

  .form-table .agree i {
    width: 18px;
    height:18px;
    background-size: auto 18px;
  }

  .form-btn .btn {
    max-width:240px;
    height:52px;
    font-size:1.6rem;
  }
}
@media screen and (max-width:576px) {
  .form-table th {
    padding:0px 0px 10px;
    font-size:1.4rem;
  }

  .form-table input {
    height:36px;
    padding:0px 12px;
    font-size:1.2rem;
  }

  .form-table select {
    height:36px;
    padding:0px 12px;
    background-position: right 12px center;
    background-size: auto 4px;
    font-size:1.2rem;
  }

  .form-table textarea {
    height:160px;
    padding:12px;
    font-size:1.2rem;
  }

  .form-table .chk-list {
    height:36px;
  }

  .form-table .email-wrap {
    flex-wrap: wrap;
  }
  
  .form-table .email-wrap span {
    width:12px;
    text-align: center;
    margin:0px 4px;
  }

  .form-table .email-wrap .box01 {
    width: calc(50% - 10px);
  }

  .form-table .email-wrap .box02 {
    width: 100%;
    margin-left:0px;
    margin-top:6px;
  }

  .form-table .chk-list {
    gap:20px;
  }

  .form-table .chk-list label {
    gap:6px;
  }

  .form-table .chk-list i {
    width: 14px;
    height:14px;
    background-size: auto 14px;
  }

  .form-table .agree label {
    gap:4px;
  }

  .form-table .agree i {
    width: 14px;
    height:14px;
    background-size: auto 14px;
  }

  .form-btn .btn {
    max-width:200px;
    height:44px;
    font-size:1.4rem;
  }
}
