/* Form Basic */
.form-table {
	display: flex;
	flex-wrap: wrap;
	border-top: 2px solid #a0a0a0;
	border-bottom: 2px solid #a0a0a0;
}

.form-table .row {
	display: flex;
	width:50%;
}

.form-table .row-100 {
	width:100%;
}

.form-table .th {
	display: inline-flex;
	align-items: center;
	gap:6px;
	width:200px;
	padding:12px 20px;
	font-size:1.8rem;
	font-weight:700;
}

.form-table .td {
	width: calc(100% - 200px);
	padding:12px 20px;
}

.form-table .border-bottom {
	border-bottom: 1px solid #dcdcdc;
}

.form-table .border-start {
	border-left: 1px solid #dcdcdc;
}

.form-table .border-end {
	border-right: 1px solid #dcdcdc;
}

.form-table input {
	width:100%;
	height:45px;
	padding:0px 20px;
	border:1px solid #a0a0a0;
	border-radius:10px;
	font-size:1.6rem;
	line-height:45px;
}

.form-table textarea {
	display: block;
	width:100%;
	height:400px;
	padding:20px;
	border:1px solid #a0a0a0;
	border-radius:10px;
	font-size:1.6rem;
	line-height: 1.2;
}

.form-table .file-upload {
	position: relative;
	max-width:460px;
	width:100%;
	height:45px;
}

.form-table .file-upload label {
	display: flex;
	align-items: center;
	position: relative;
	width:100%;
	height:100%;
	background-color: #fff;
	border:1px solid #a0a0a0;
	border-radius:10px;
	overflow: hidden;
}

.form-table .file-upload 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-upload .placeholder {
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1; 
	-webkit-box-orient: vertical;
	overflow: hidden;
	width: calc(100% - 120px);
	padding:0px 20px;
	font-size:1.6rem;
	line-height:45px;
	color:#b5b5b5;
}

.form-table .file-upload .btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top:0px;
	right:0px;
	width:120px;
	height:100%;
	background-color: #d9d9d9;
	border-left:1px solid #a0a0a0;
	font-size:1.6rem;
	line-height:45px;
}

.form-table .file-notice {
	font-size:1.4rem;
}

.form-agree .tit {
	font-size:2.4rem;
}

.form-agree .textarea {
	width:100%;
	height:200px;
	padding:30px;
	border:1px solid #a0a0a0;
	border-radius:10px;
	overflow-y: auto;
}

.form-agree .textarea p {
	font-size:1.6rem;
}

.form-agree .chk label {
	display: inline-flex;
	align-items: center;
	position: relative;
	cursor: pointer;
}

.form-agree .chk input {
	position: absolute;
  top:0;
  left:0;
  width:100%;
  opacity:0;
  visibility: hidden;
}

.form-agree .chk i {
	display: inline-block;
  width:18px;
  height:18px;
  background: url('../../asset/img/form/agree_chk_off.png') no-repeat center;
  margin-right:10px;
}

.form-agree .chk b {
	display: inline-block;
  font-size:1.8rem;
	line-height: 1;
}

.form-agree .chk input:checked + i {
  background-image: url('../../asset/img/form/agree_chk_on.png');
}

.form-btns {
	display: flex;
	justify-content: center;
	align-items: center;
}

.form-btns button {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	width:260px;
	height:60px;
	border-radius:10px;
	background-color: #191919;
	font-size:1.8rem;
	color:#fff;
	line-height:1;
	transition: all .3s ease;
}

.conduct-notice {
	font-size: 1.8rem;
}

@media (max-width:1200px) {	
	.form-table .th {
		font-size:1.6rem;
	}
	
	.form-table input {
		font-size:1.4rem;
	}

	.form-table textarea {
		font-size:1.4rem;
	}

	.form-table .file-upload .placeholder {
		font-size:1.4rem;
	}

	.form-table .file-upload .btn {
		font-size:1.4rem;
	}

	.form-table .file-notice {
		font-size:1.3rem;
	}

	.conduct-notice {
		font-size:1.6rem;
	}

	.form-agree .tit {
		font-size:2rem;
	}

	.form-agree .textarea p {
		font-size:1.4rem;
	}

	.form-agree .chk b {
		font-size:1.6rem;
	}

	.form-btns button {
		font-size:1.6rem;
	}
}
@media (max-width:1024px) {
	.form-table .row {
		width: 100%;
	}

	.form-table .row-non {
		display: none;
	}

	.form-table .border-start,
	.form-table .border-end {
		border:0px;
	}

	.form-table .th {
		gap:4px;
		width:160px;
		padding:12px;
		border-right:1px solid #dcdcdc;
	}

	.form-table .td {
		width: calc(100% - 160px);
		padding:12px;
	}

	.form-table input {
		height:40px;
		padding:0px 16px;
	}

	.form-table textarea {
		height:300px;
		padding:16px;
	}

	.form-table .file-upload {
		max-width: 100%;
		height:40px;
	}

	.form-table .file-upload .placeholder {
		width: calc(100% - 100px);
		padding:0px 12px;
	}

	.form-table .file-upload .btn {
		width:100px;
	}

	.form-agree .textarea {
		height:160px;
		padding:20px;
	}

	.form-agree .chk i {
		width:16px;
		height:16px;
		background-size:auto 16px;
		margin-right:6px;
	}	

	.form-btns button {
		width: 200px;
		height:48px;
	}
}
@media (max-width:768px) {
	.form-table .row {
		flex-wrap: wrap;
	}

	.form-table .th {
		width: 100%;
		border-right:0px;
		border-bottom:1px solid #dcdcdc;
		font-size: 1.4rem;
	}

	.form-table .td {
		width: 100%;
	}

	.form-table input {
		font-size:1.3rem;
	}

	.form-table textarea {
		font-size:1.3rem;
	}

	.form-table .file-upload .placeholder {
		font-size:1.3rem;
	}

	.form-table .file-upload .btn {
		font-size:1.3rem;
	}

	.form-table .file-notice {
		font-size:1.2rem;
	}

	.conduct-notice {
		font-size:1.4rem;
	}

	.form-agree .tit {
		font-size:1.8rem;
	}

	.form-agree .textarea p {
		font-size:1.3rem;
	}

	.form-agree .chk b {
		font-size:1.4rem;
	}

	.form-btns button {
		font-size:1.4rem;
	}
}
@media (max-width:576px) {
	.form-table .th {
		gap:2px;
		padding:8px;
		font-size: 1.3rem;
	}

	.form-table .td {
		padding:8px;
	}

	.form-table input {
		height:36px;
		padding:0px 12px;
		font-size:1.2rem;
	}

	.form-table textarea {
		height:200px;
		padding:12px;
		font-size:1.2rem;
	}

	.form-table .file-upload {
		height:36px;
	}

	.form-table .file-upload .placeholder {
		width: calc(100% - 80px);
		font-size:1.2rem;
	}

	.form-table .file-upload .btn {
		width:80px;
		font-size:1.2rem;
	}

	.form-table .file-notice {
		font-size:1.1rem;
	}

	.conduct-notice {
		font-size:1.3rem;
	}

	.form-agree .tit {
		font-size:1.6rem;
	}

	.form-agree .textarea {
		height:120px;
		padding:16px;
	}

	.form-agree .textarea p {
		font-size:1.2rem;
	}

	.form-agree .chk i {
		width:13px;
		height:13px;
		background-size:auto 13px;
		margin-right:4px;
	}

	.form-agree .chk b {
		font-size:1.3rem;
	}

	.form-btns button {
		width:160px;
		height:40px;
		font-size:1.3rem;
	}
}


/* Inquiry Modal */
.save-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	place-items: center;
	z-index: 9999999;
}

.save-modal.open {
	display: block;
}

.save-modal .modal-container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width:500px;
	max-height: none;
	width: 95%;
	height:auto;
	margin:10px auto;
}

.save-modal .modal-background {
	width:100%;
	height:100%;
	background-color: rgba(0, 0, 0, 0.5);
	cursor: pointer;
}

.save-modal .modal-inner {
	width: 100%;
	height: 100%;
	position: relative;
}

.save-modal .modal-area {
	position: relative;
	padding:90px 40px 30px;
	background-color: #fff;
	border-radius: 10px;
}

.save-modal .modal-close {
	display: block;
	position: absolute;
	top:20px;
	right:20px;
	width:20px;
	height:20px;
	background:url('../../asset/img/form/modal_close.png') no-repeat center;
}

.save-modal .txt .t01 {
	font-size:2rem;
}

.save-modal .btns {
	display: flex;
	justify-content: center;
	gap:20px;
	margin-top:40px;
}

.save-modal .btns button {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	max-width:200px;
	width:100%;
	height: 50px;
	border-radius:10px;
	background-color:#000;
	font-size:1.8rem;
	line-height: 50px;
	color:#fff;
}

@media (max-width:1200px) {	
	.save-modal .txt .t01 {
		font-size:1.8rem;
	}

	.save-modal .btns button {
		max-width:160px;
		height: 44px;
		font-size:1.6rem;
	}
}
@media (max-width:1024px) {
	.save-modal .modal-area {
		padding:70px 30px 20px;
	}

	.save-modal .btns {
		gap:16px;
		margin-top:30px;
	}
}
@media (max-width:768px) {
	.save-modal .txt .t01 {
		font-size:1.6rem;
	}

	.save-modal .btns button {
		max-width:140px;
		height: 40px;
		font-size:1.4rem;
	}
}
@media (max-width:576px) {
	.save-modal .txt .t01 {
		font-size:1.5rem;
	}

	.save-modal .btns {
		gap:8px;
		margin-top:20px;
	}

	.save-modal .btns button {
		max-width:120px;
		height: 36px;
		font-size:1.3rem;
	}
}

