/* Main Form, Touch Form */
.contact-form {
  width: 100%;
  background-color: #fff;
}

.contact-form .form-container {
  display: flex;
  align-items: start;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 15px;
  gap: 2%;
}

.contact-form .form-table {
  /* max-width: 626px; */
  width: 50%;
}

.contact-form .row {
  width: 100%;
  margin-bottom: 30px;
}

.contact-form .th {
  margin-bottom: 15px;
  font-size: 2rem;
  line-height: 1;
}

.contact-form .th span {
  color: #c1000c;
}

.contact-form .td {
  width: 100%;
  height: 50px;
  background-color: #f5f5f5;
}

.contact-form .td input, 
.contact-form .td select {
  width: 100%;
  height: 100%;
  padding: 0 20px;
  font-size: 1.8rem;
  background-color: #f5f5f5;
}

.contact-form .td select {
  background-image: url('/child/img/form/select-option-arrow.png');
  background-repeat: no-repeat;
  background-size: 10px 6px;
  background-position: right 19px center;
  cursor: pointer;
}

.contact-form .row--07 .td {
  height: 165px;
  width: 100%;
}

.contact-form .td textarea {
  width: 100%;
  height: 100%;
  padding: 20px;
  background-color: #f5f5f5;
  font-size: 1.8rem;
  overflow-y: scroll;
  resize: none;
}

.contact-form .type-select {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  font-size: 1.8rem;
  cursor: pointer;
}

.contact-form .type-select .contact_type {
  display: flex;
  align-items: center;
  margin-right: 19px;
}

.contact-form  .type-select input {
  position: absolute;
  top:0;
  left:0;
  width:100%;
  opacity:0;
  visibility: hidden;
  background-color: transparent;
  background-color: transparent;
}

.contact-form .type-select .contact_type i {
  display: block;
  width: 18px;
  height: 18px;
  margin-right: 9px;
  background: url('/child/img/form/check.png') no-repeat center;
  background-size: cover;
}

.contact-form .type-select input[type="radio"]:checked ~ i {
  background-image: url('/child/img/form/check-on.png');
}

.contact-form .row--04 .td {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  background-color: transparent;
}

.contact-form .row--04 .td span {
  display: block;
  margin: 0 15px;
}

.contact-form .row--04 #contact_email02 {
  display: none;
  position: absolute;
  top: 0;
  right: 34px;
  width: calc(50% - 55px);
  height: 100%;
}

.contact-form .row--04 #contact_email02.on {
  display: block;
}

.contact-form .contact-agree {
  position: relative;
  width: fit-content;
  margin: 0 auto 25px;
  cursor: pointer;
  color: #00539e;
}

.contact-form .agree-inner {
  display:flex;
  align-items: center;
  justify-content: center;
}

.contact-form .contact-agree input {
  position: absolute;
  top:0;
  left:0;
  width:100%;
  opacity:0;
  visibility: hidden;
  background-color: transparent;
  background-color: transparent;
}

.contact-form .contact-agree i {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url('/child/img/form/form-agree-check.png');
  margin-right:10px;
  cursor: pointer;
}

.contact-form .contact-agree span {
  padding-bottom: 4px;
  border-bottom: 1px solid #00539e;
}

.contact-form .contact-agree button {
  font-size:1.8rem;
  color: #00539e;
}

.contact-form .contact-agree input[type="checkbox"]:checked ~ i {
  background-image: url('/child/img/form/form-agree-check-on.png');
}

.contact-form .buttons {
  display: flex;
  justify-content: center;
}

.contact-form .button--submit {
  width: 320px;
  height: 70px;
  margin: 0 auto;
  background-color: #f2a036;
  font-size: 2rem;
  color: #fff;
}

@media(max-width:1200px) {
  .contact-form .row {
    margin-bottom: 25px;
  }
  
  .contact-form .th {
    margin-bottom: 15px;
    font-size: 1.8rem;
  }
  
  .contact-form .td {
    height: 45px;
  }
  
  .contact-form .td input, 
  .contact-form .td select {
    padding: 0 20px;
    font-size: 1.6rem;
  }
  
  .contact-form .td select {
    background-size: 10px 6px;
    background-position: right 19px center;
  }
  
  .contact-form .row--07 .td {
    height: 150px;
  }
  
  .contact-form .td textarea {
    padding: 20px;
    font-size: 1.6rem;
  }

  .contact-form .type-select {
    padding: 0 20px;
    font-size: 1.6rem;
  }
  
  .contact-form .type-select .contact_type {
    margin-right: 25px;
  }
  
  .contact-form .type-select .contact_type i  {
    width: 16px;
    height: 16px;
    margin-right: 8px;
  }
  
  .contact-form .row--04 .td span {
    margin: 0 15px;
  }

  .contact-form .contact-agree {
    margin: 0 auto 25px;
  }
  
  
  .contact-form .contact-agree i {
    width: 15px;
    height: 15px;
    margin-right:10px;
  }
  
  .contact-form .contact-agree button {
    font-size:1.6rem;
  }
  
  .contact-form .button--submit {
    width: 300px;
    height: 60px;
    margin: 0 auto;
    font-size: 1.8rem;
  }
  
}

@media(max-width:1024px) {
  .contact-form .row {
    margin-bottom: 20px;
  }
  
  .contact-form .th {
    margin-bottom: 15px;
    font-size: 1.6rem;
  }
  
  .contact-form .td {
    height: 40px;
  }
  
  .contact-form .td input, 
  .contact-form .td select {
    padding: 0 15px;
    font-size: 1.5rem;
  }
  
  .contact-form .td select {
    background-size: 9px 5px;
    background-position: right 15px center;
  }
  
  .contact-form .row--07 .td {
    height: 130px;
  }
  
  .contact-form .td textarea {
    padding: 15px;
    font-size: 1.5rem;
  }

  .contact-form .type-select {
    padding: 0 15px;
    font-size: 1.5rem;
  }
  
  .contact-form .type-select .contact_type {
    margin-right: 15px;
  }

  .contact-form .type-select .contact_type i {
    width: 15px;
    height: 15px;
    margin-right: 6px;
  }
  
  .contact-form .row--04 .td span {
    margin: 0 13px;
  }
  
  .contact-form .contact-agree {
    margin: 0 auto 20px;
  }
  
  
  .contact-form .contact-agree i {
    width: 14px;
    height: 14px;
    margin-right:10px;
  }
  
  .contact-form .contact-agree button {
    font-size:1.5rem;
  }
  
  .contact-form .button--submit {
    width: 280px;
    height: 50px;
    font-size: 1.6rem;
  }
  
}

@media(max-width: 768px) {
  .contact-form .form-container {
    flex-direction: column;
    align-items: start;
  }

  .contact-form .form-table {
    max-width: 100%;
    width: 100%;
  }
  
  .contact-form .row {
    margin-bottom: 15px;
  }
  
  .contact-form .th {
    margin-bottom: 12px;
    font-size: 1.5rem;
  }
  
  .contact-form .td {
    height: 35px;
  }
  
  .contact-form .td input, 
  .contact-form .td select {
    padding: 0 12px;
    font-size: 1.4rem;
  }
  
  .contact-form .td select {
    background-size: 8px 4px;
    background-position: right 12px center;
  }

  .contact-form .row--04 #contact_email02 {
    right: 29px;
    width: calc(50% - 45px);
  }
  
  .contact-form .row--07 .td {
    height: 110px;
  }
  
  .contact-form .td textarea {
    padding: 12px;
    font-size: 1.4rem;
  }
  
  .contact-form .type-select {
    padding: 0 12px;
    font-size: 1.4rem;
  }
  
  .contact-form .type-select .contact_type {
    margin-right: 10px;
  }

  .contact-form .type-select .contact_type i {
    width: 14px;
    height: 14px;
    margin-right: 4px;
  }
  
  .contact-form .row--04 .td span {
    margin: 0 10px;
  }
  
  .contact-form .contact-agree {
    margin: 0 auto 20px;
  }

  .contact-form .contact-agree span {
    padding-bottom: 2px;
  }
  
  .contact-form .contact-agree i {
    width: 13px;
    height: 13px;
    margin-right:5px;
  }
  
  .contact-form .contact-agree button {
    font-size:1.4rem;
  }
  
  .contact-form .button--submit {
    width: 260px;
    height: 40px;
    font-size: 1.5rem;
  }
  
}

@media(max-width: 500px) {
  .contact-form .row {
    margin-bottom: 12px;
  }
  
  .contact-form .th {
    margin-bottom: 10px;
    font-size: 1.4rem;
  }
  
  .contact-form .td {
    height: 32px;
  }
  
  .contact-form .td input, 
  .contact-form .td select {
    padding: 0 10px;
    font-size: 1.3rem;
  }
  
  .contact-form .td select {
    background-size: 7px 4px;
    background-position: right 10px center;
  }

  .contact-form .row--04 .td span {
    margin: 0 6px;
  }

  .contact-form .row--04 #contact_email02 {
    right: 22px;
    width: calc(50% - 35px);
  }
  
  .contact-form .row--07 .td {
    height: 90px;
  }
  
  .contact-form .td textarea {
    padding: 10px;
    font-size: 1.3rem;
  }
  
  .contact-form .type-select {
    padding: 0 10px;
    font-size: 1.3rem;
  }
  
  .contact-form .type-select .type {
    margin-right: 15px;
  }
  
  .contact-form .type-select .contact_type i {
    width: 14px;
    height: 14px;
  }
  
  .contact-form .contact-agree {
    margin: 0 auto 15px;
  }
  
  .contact-form .contact-agree button {
    font-size:1.3rem;
  }
  
  .contact-form .button--submit {
    width: 240px;
    height: 40px;
    font-size: 1.4rem;
  }
  
}


/* Contact */
/* join-team-form  */
.join-team-form {
  padding-top: 79px;
  border-top: 1px solid #b5b5b5;
}

.join-team-form .form-container {
  width: 100%;
  margin-bottom: 50px;
}

.join-team-form .form-table {
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  gap: 0 2%;
}

.join-team-form .row {
  max-width: 686px;
  width: 49%;
  margin-bottom: 37px;
}

.join-team-form .row--04,
.join-team-form .row--05 {
	max-width:100%;
	width: 100%;
}

.join-team-form .row .th {
  margin-bottom: 20px;
  font-size: 2rem;
  line-height: 1;
}

.join-team-form .row .th span {
  color: #c1000c;
}

.join-team-form .row .td {
  display: flex;
  align-items: center;
  width: 100%;
  height: 50px;
}

.join-team-form .row .td select,
.join-team-form .row .td input, 
.join-team-form .row .td .type-select {
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
  padding: 0 20px;
  font-size: 1.8rem;
}

.join-team-form .row .td select {
  background-image: url('/child/img/form/select-option-arrow.png');
  background-repeat: no-repeat;
  background-size: 10px 6px;
  background-position: right 19px center;
  cursor: pointer;
}

.join-team-form .row--01 {
  margin-right: 50%;
}

.join-team-form .type-select {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  font-size: 1.8rem;
  cursor: pointer;
}

.join-team-form .type-select .join_type {
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.join-team-form  .type-select input {
  position: absolute;
  top:0;
  left:0;
  width:100%;
  opacity:0;
  visibility: hidden;
  background-color: transparent;
  background-color: transparent;
}

.join-team-form .type-select .join_type i {
  display: block;
  width: 18px;
  height: 18px;
  margin-right: 9px;
  background: url('/child/img/form/check.png') no-repeat center;
  background-size: cover;
}

.join-team-form .type-select input[type="checkbox"]:checked ~ i {
  background-image: url('/child/img/form/check-on.png');
}

.join-team-form .row--06 .td {
  position: relative;
}

.join-team-form .row--06 .td span {
  display: block;
  font-size: 2rem;
  margin: 0 17px;
}

.join-team-form .row--06 #join_email02 {
  display: none;
  position: absolute;
  top: 0;
  right: 30px;
  width: calc(50% - 55px);
}

.join-team-form .row--06 #join_email02.on {
  display: block;
}

.join-team-form .row--08 {
  max-width: 100%;
  width: 100%;
}

.join-team-form .row--08 .td {
  height: 220px;
}

.join-team-form .row--08 .td textarea {
  width: 100%;
  height: 100%;
  resize: none;
  overflow-y: scroll;
  padding: 20px;
  background-color: #f5f5f5;
  font-size: 1.8rem;
}

.join-team-form .row--09 {
  max-width: 100%;
  width: 100%;
}


.join-team-form .row--09 .td {
  justify-content: space-between;
  position: relative;
  background-color: #f5f5f5;
}

.join-team-form .row--09 input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.join-team-form .row--09 .file-label {
  display: flex;
  align-items: center;
  width: calc(100% - 200px);
  height: 100%;
  padding-left: 20px;
  font-size: 1.8rem;
  color: #999;
}

.join-team-form .row--09 .file-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 100%;
  background-color: #999;
  font-size: 1.8rem;
  color: #fff;
}

.join-team-form  .join-agree {
  position: relative;
  width: fit-content;
  margin: 0 auto 25px;
  cursor: pointer;
  color: #00539e;
}

.join-team-form  .join-inner {
  display:flex;
  align-items: center;
  justify-content: center;
}

.join-team-form  .join-agree input {
  position: absolute;
  top:0;
  left:0;
  width:100%;
  opacity:0;
  visibility: hidden;
  background-color: transparent;
  background-color: transparent;
}

.join-team-form  .join-agree i {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url('/child/img/form/form-agree-check.png');
  margin-right:10px;
  cursor: pointer;
}

.join-team-form  .join-agree span {
  padding-bottom: 4px;
  border-bottom: 1px solid #00539e;
}

.join-team-form  .join-agree button {
  font-size:1.8rem;
  color: #00539e;
}

.join-team-form  .join-agree input[type="checkbox"]:checked ~ i {
  background-image: url('/child/img/form/form-agree-check-on.png');
}

.join-team-form .buttons {
  display: flex;
  justify-content: center;
}

.join-team-form .button--submit {
  width: 320px;
  height: 70px;
  margin: 0 auto;
  background-color: #f2a036;
  font-size: 2rem;
  color: #fff;
}

@media(max-width:1200px) {
  .join-team-form .form-container {
    margin-bottom: 40px;
  }

  .join-team-form {
    padding-top: 70px;
  }
  
  .join-team-form .row {
    margin-bottom: 30px;
  }
  
  .join-team-form .row .th {
    margin-bottom: 15px;
    font-size: 1.8rem;
  }

  .join-team-form .row .td {
    height: 45px;
  }
  
  .join-team-form .row .td select,
  .join-team-form .row .td input, 
  .join-team-form .row .td .type-select,
  .join-team-form .row--09 .file-label,
  .join-team-form .row--09 .file-btn {
    padding: 0 15px;
    font-size: 1.6rem;
  }

  .join-team-form .row--06 .td span {
    font-size: 1.8rem;
  }

  .join-team-form .row--08 .td {
    height: 200px;
  }

  .join-team-form .type-select .join_type {
    margin-right: 7px;
  }

  .join-team-form .type-select .join_type:last-of-type {
    margin-right: 0;
  }

  .join-team-form .type-select .join_type i {
    width: 16px;
    height: 16px;
    margin-right: 6px;
  }

  
  .join-team-form .row--09 .file-btn {
    width: 180px;
  }

  .join-team-form  .join-agree button {
    font-size:1.6rem;
  }

  .join-team-form  .join-agree i {
    width: 15px;
    height: 15px;
  }

  .join-team-form .button--submit {
    width: 300px;
    height: 60px;
    font-size: 1.8rem;
  }
}

@media(max-width:1024px) {
  .join-team-form .form-container {
    margin-bottom: 30px;
  }

  .join-team-form {
    padding-top: 60px;
  }
  
  .join-team-form .row {
    margin-bottom: 25px;
  }
  
  .join-team-form .row .th {
    font-size: 1.6rem;
  }

  .join-team-form .row .td {
    height: 40px;
  }
  
  .join-team-form .row .td select,
  .join-team-form .row .td input, 
  .join-team-form .row .td .type-select,
  .join-team-form .row--09 .file-label,
  .join-team-form .row--09 .file-btn {
    font-size: 1.5rem;
  }

	.join-team-form .row .td .type-select {
		flex-wrap: wrap;
	}

  .join-team-form .row .td select {
    background-size: 9px 5px;
    background-position: right 15px center;
  }

  .join-team-form .row--06 .td span {
    margin: 0 13px;
    font-size: 1.6rem;
  }

  .join-team-form .row--08 .td {
    height: 180px;
  }

  .join-team-form .type-select .join_type {
    margin-right: 10px;
  }

  .join-team-form .type-select .join_type i {
    width: 15px;
    height: 15px;
    margin-right: 4px;
  }

  .join-team-form .row--09 .file-btn {
    width: 160px;
  }

  .join-team-form .join-agree {
    margin: 0 auto 20px;
  }

  .join-team-form  .join-agree button {
    font-size:1.5rem;
  }

  .join-team-form  .join-agree i {
    width: 14px;
    height: 14px;
  }

  .join-team-form .button--submit {
    width: 280px;
    height: 50px;
    font-size: 1.6rem;
  }
}

@media(max-width:920px) {
  .join-team-form .row {
    max-width: 100%;
    width: 100%;
  }

  .join-team-form .row--01 {
    margin-right: 0;
  }

  .join-team-form .row--06 #join_email02 {
    right: 35px; 
  }
}

@media(max-width:768px) {
  .join-team-form .form-container {
    margin-bottom: 20px;
  }

  .join-team-form {
    padding-top: 50px;
  }
  
  .join-team-form .row {
    margin-bottom: 20px;
  }
  
  .join-team-form .row .th {
    margin-bottom: 12px;
    font-size: 1.5rem;
  }

  .join-team-form .row .td {
    height: 35px;
  }
  
  .join-team-form .row .td select,
  .join-team-form .row .td input, 
  .join-team-form .row .td .type-select,
  .join-team-form .row--09 .file-label,
  .join-team-form .row--09 .file-btn {
    padding: 0 12px;
    font-size: 1.4rem;
  }

  .join-team-form .row .td select {
    background-size: 8px 4px;
    background-position: right 12px center;
  }

  .join-team-form .row--06 .td span {
    margin: 0 10px;
    font-size: 1.5rem;
  }

  .join-team-form .row--06 #join_email02 {
    right: 27px;
    width: calc(50% - 45px);
  }

  .join-team-form .row--08 .td {
    height: 160px;
  }

  .join-team-form .type-select .join_type {
    margin-right: 10px;
  }

  .join-team-form .type-select .join_type i {
    width: 14px;
    height: 14px;
    margin-right: 4px;
  }

  .join-team-form .row--09 .file-btn {
    width: 140px;
  }

  .join-team-form .join-agree {
    margin: 0 auto 20px;
  }

  .join-team-form  .join-agree button {
    font-size:1.4rem;
  }

  .join-team-form  .join-agree i {
    width: 13px;
    height: 13px;
    margin-right: 5px;
  }

  .join-team-form  .join-agree span {
    padding-bottom: 2px;
  }

  .join-team-form .button--submit {
    width: 260px;
    height: 40px;
    font-size: 1.5rem;
  }
}

@media(max-width:500px) {
  .join-team-form .form-container {
    margin-bottom: 15px;
  }

  .join-team-form {
    padding-top: 40px;
  }
  
  .join-team-form .row {
    margin-bottom: 15px;
  }
  
  .join-team-form .row .th {
    margin-bottom: 10px;
    font-size: 1.4rem;
  }

  .join-team-form .row .td {
    height: 30px;
  }
  
  .join-team-form .row .td select,
  .join-team-form .row .td input, 
  .join-team-form .row .td .type-select,
  .join-team-form .row--09 .file-label,
  .join-team-form .row--09 .file-btn {
    padding: 0 10px;
    font-size: 1.3rem;
  }

  .join-team-form .row .td select {
    background-size: 7px 4px;
    background-position: right 10px center;
  }

  .join-team-form .row--04 .td {
    height: fit-content;
  }

  .join-team-form .row .td .type-select {
    flex-wrap: wrap;
    padding: 10px;
    gap: 5px 1%;
  }

  .join-team-form .type-select .join_type {
    width: 100%;
    margin:2px;
  }

  .join-team-form .row--06 .td span {
    margin: 0 6px;
    font-size: 1.4rem;
  }

  .join-team-form .row--06 #join_email02 {
    right: 22px;
    width: calc(50% - 35px);
  }

  .join-team-form .row--08 .td {
    height: 140px;
  }

  .join-team-form .type-select .join_type i {
    width: 13px;
    height: 13px;
    margin-right: 4px;
  }

  .join-team-form .row--09 .file-btn {
    width: 100%;
    height: 35px;
    margin-bottom: 5px;
  }

  .join-team-form .row--09 .td {
    flex-direction: column;
    height: fit-content;
    background-color: transparent;
  }

  .join-team-form .row--09 .file-label {
    width: 100%;
    order: 1;
  }

  .join-team-form .join-agree {
    margin: 0 auto 20px;
  }

  .join-team-form  .join-agree button {
    font-size: 1.3rem;
  }

  .join-team-form .button--submit {
    width: 240px;
    height: 40px;
    font-size: 1.4rem;
  }
}