/* Form */
.form-table {
	display: table;
	table-layout: fixed;
	border-collapse: collapse;
	width: 100%;
	border-top: 2px solid #1f61ad;
}

.form-table .row {
	display: table-row;
}

.form-table .th,
.form-table .td {
	display: table-cell;
	border-bottom: 1px solid #dddddd;
}

.form-table .th {
	width:260px;
	padding:30px;
	background-color: #eff9fd;
	font-size:2rem;
	font-weight:500;
	line-height:1;
	vertical-align: middle;
}

.form-table .td {
	width: calc(100% - 260px);
	padding:20px;
}

.form-table input[type ="text"],
.form-table input[type ="email"],
.form-table input[type ="file"] {
	width:100%;
	height:44px;
	padding:0px 20px;
	border:1px solid #d5d5d5;
	border-radius:5px;
	font-size: 1.8rem;
}

.form-table textarea {
	resize: none;
	display: block;
	width:100%;
	height:200px;
	padding:20px;
	border:1px solid #d5d5d5;
	border-radius:5px;
	font-size: 1.8rem;
}

.form-table .radio-wrap ul {
	display: flex;
	gap:40px;
}

.form-table .radio-wrap label {
	display: flex;
	align-items: center;
	position: relative;
	gap:10px;
	cursor: pointer;
}

.form-table .radio-wrap input {
	position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.form-table .radio-wrap i {
	display: block;
	width:18px;
	height:18px;
	background: url('/en/img/form/r_check_off.png') no-repeat center;
}

.form-table .radio-wrap span {
	display: block;
	font-size:1.6rem;
	font-weight:500;
}

.form-table .radio-wrap input:checked + i {
  background-image: url('/en/img/form/r_check_on.png');
}

.form-table .file-wrap label {
	display: flex;
	align-items: center;
	position: relative;
	width:100%;
	height:44px;
	background-color: #fff;
	border:1px solid #d5d5d5;
	border-radius:5px;
	overflow: hidden;
}

.form-table .file-wrap input {
	position: absolute;
	top: 0;
	left: 0;
	max-width: 100%;
	width: 100%;
	height: 100%;
	padding: 0px;
	border: 0px;
	opacity: 0;
	z-index: 10;
	cursor: pointer;
}

.form-table .file-wrap .file-label {
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1; 
	-webkit-box-orient: vertical;
	overflow: hidden;
	width: calc(100% - 160px);
	height:100%;
	padding:0px 20px;
	font-size:1.8rem;
	line-height:44px;
	color:#c5c5c5;
}

.form-table .file-wrap .file-btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap:10px;
	text-align: center;
	width: 160px;
	height:100%;
	background-color: #1f61ad;
	border-radius:5px;
	font-size:1.8rem;
	color:#fff;
}

.form-table .file-wrap .file-btn i {
	display: inline-block;
	width:12px;
	height:19px;
	background-color: #fff;
	mask-image: url('/en/img/common/i_file.svg');
	mask-repeat: no-repeat;
  mask-position: center left;
  mask-size: contain;
}

.form-agree .tit {
	font-size:2rem;
	font-weight:500;
}

.form-agree .textarea {
	width: 100%;
	height:240px;
	padding:30px;
	border:1px solid #d5d5d5;
	border-radius:5px;
	overflow-y: auto;
}

.form-agree .textarea p {
	font-size:1.8rem;
	line-height:1.5;
}

.form-agree .chk {
	padding-top:20px;
}

.form-agree .chk label {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap:10px;
}

.form-agree .chk input {
	display: inline-block;
	position: absolute;
	top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0px;
  border: 0px;
  opacity: 0;
  z-index: 10;
	cursor: pointer;
}

.form-agree .chk i {
	display: inline-block;
	width:12px;
	height:12px;
	background: url('/en/img/form/i_check.png') no-repeat center;
}

.form-agree .chk span {
	display: inline-block;
	font-size:1.8rem;
}

.form-agree .chk input[type = "checkbox"]:checked ~ i {
	background-image: url('/en/img/form/i_check__on.png');
}

.form-btns button {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	width:320px;
	height:64px;
	padding:0px 10px;
	border-radius:100px;
	background-color:#236cb6;
	font-size:2rem;
	font-weight:600;
	color:#fff;
	transition:all .3s ease;
}

@media (max-width:1200px) {
	.form-table .th {
		font-size:1.8rem;
		width:220px;
	}
	
	.form-table .td {
		width: calc(100% - 220px);
	}

	.form-table input[type ="text"],
	.form-table input[type ="email"],
	.form-table input[type ="file"] {
		font-size: 1.6rem;
	}

	.form-table textarea {
		font-size: 1.6rem;
	}

	.form-table .radio-wrap span {
		font-size:1.6rem;
	}

	.form-table .file-wrap .file-label {
		font-size:1.6rem;
	}
	
	.form-table .file-wrap .file-btn {
		font-size:1.6rem;
	}

	.form-agree .tit {
		font-size:1.8rem;
	}

	.form-agree .textarea p {
		font-size:1.6rem;
	}

	.form-agree .chk span {
		font-size:1.6rem;
	}

	.form-btns button {
		width:280px;
		height:54px;
		font-size:1.8rem;
	}
}
@media (max-width:1024px) {
	.form-table .th {
		padding:20px;
	}

	.form-table .td {
		padding:16px;
	}

	.form-table input[type ="text"], 
	.form-table input[type ="email"], 
	.form-table input[type ="file"] {
		height:42px;
		padding:0px 16px;
	}

	.form-table textarea {
		height:160px;
		padding:16px;
	}

	.form-table .radio-wrap ul {
		gap:40px;
	}

	.form-table .radio-wrap label {
		gap:6px;
	}

	.form-table .radio-wrap i {
		width:16px;
		height:16px;
		background-size:auto 16px;
	}

	.form-table .file-wrap label {
		height:42px;
	}

	.form-table .file-wrap .file-label {
		width: calc(100% - 120px);
		padding:0px 16px;
		line-height:42px;
	}

	.form-table .file-wrap .file-btn {
		gap:6px;
		width:120px;
	}

	.form-table .file-wrap .file-btn i {
		height:16px;
		background-size: auto 16px;
	}

	.form-agree .textarea {
		height:200px;
		padding:16px;
	}

	.form-agree .chk {
		padding-top:16px;
	}

	.form-agree .chk label {
		gap:6px;
	}

	.form-btns button {
		width:240px;
		height:48px;
	}
}
@media (max-width:768px) {
	.form-table {
		display: block;
	}

	.form-table .row {
		display: flex;
		flex-wrap: wrap;
	}

	.form-table .th {
		width: 100%;
		padding:16px;
		font-size:1.6rem;
	}

	.form-table .td {
		width: 100%;
	}

	.form-table input[type ="text"], 
	.form-table input[type ="email"], 
	.form-table input[type ="file"] {
		height:36px;
		font-size:1.5rem;
	}

	.form-table textarea {
		font-size:1.5rem;
	}

	.form-table .radio-wrap span {
		font-size:1.5rem;
	}

	.form-table .file-wrap label {
		height:36px;
	}

	.form-table .file-wrap .file-label {
		font-size:1.5rem;
		line-height:36px;
	}

	.form-table .file-wrap .file-btn {
		font-size:1.5rem;
	}

	.form-agree .tit {
		font-size:1.6rem;
	}

	.form-agree .textarea p {
		font-size:1.5rem;
	}

	.form-agree .chk span {
		font-size:1.5rem;
	}

	.form-btns button {
		width:200px;
		height:42px;
		font-size:1.6rem;
	}
}
@media (max-width:576px) {
	.form-table .th {
		padding:12px;
		font-size:1.5rem;
	}

	.form-table .td {
		padding:12px;
	}

	.form-table input[type ="text"], 
	.form-table input[type ="email"], 
	.form-table input[type ="file"] {
		font-size:1.4rem;
		padding:0px 12px;
	}

	.form-table textarea {
		height:120px;
		padding:12px;
		font-size:1.4rem;
	}

	.form-table .radio-wrap ul {
		flex-wrap: wrap;
		gap:0px;
		margin:-6px;
	}

	.form-table .radio-wrap li {
		flex:1 1 50%;
		max-width:50%;
		padding:6px;
	}
	
	.form-table .radio-wrap label {
		gap:4px;
	}

	.form-table .radio-wrap i {
		width:14px;
		height:14px;
		background-size:auto 14px;
	}

	.form-table .radio-wrap span {
		font-size:1.4rem;
	}

	.form-table .file-wrap label {
		flex-wrap: wrap;
		height:auto;
		padding:4px;
	}

	.form-table .file-wrap .file-label {
		width:100%;
		margin-bottom:2px;
		font-size:1.4rem;
	}

	.form-table .file-wrap .file-btn {
		width: 100%;
		height:36px;
		gap:4px;
		font-size:1.4rem;
	}

	.form-agree .tit {
		font-size:1.5rem;
	}

	.form-agree .textarea {
		height:160px;
		padding:12px;
	}

	.form-agree .textarea p {
		font-size:1.4rem;
	}

	.form-agree .chk label {
		gap:4px;
	}

	.form-agree .chk span {
		font-size:1.4rem;
	}

	.form-btns button {
		width:160px;
		font-size:1.5rem;
	}
}
