/* -------------------------------- footer -------------------------------- */
#footer {
  overflow: hidden;
  position: relative;
/*   position: fixed; */
  margin-bottom: 0;
  width: 100%;
  min-width: auto;
  min-height: 250px;
/*   margin: 0 auto; */
/*   margin-top: 100px; */
  border-top: 1px solid var(--inputBox-line-color);
  background-color: var(--inputBox-inner-color);
  color: var(--main-font-color);
  text-decoration: none;
}

#footer .footer_1dep {
  display: block;
  width: 1280px;
  /* height: 220px; */
  margin: 0 auto;
  padding: 20px 0;
  box-sizing: border-box;
  z-index: 1000;
}

.footer_info {
  margin-top: 10px;
}

#footer .footer_1dep .footer_info p {
  margin-top: 20px;
  font-size: 0.875em;
  line-height: 1.375em;
  letter-spacing: -1px;
}
#footer .footer_1dep .footer_info p:first-child {
  margin-top: 0;
}
#footer .footer_1dep .footer_info p a {
  color: var(--main-font-color);
  text-decoration: none;
}
#footer .footer_1dep .footer_info p span {
  display: block;
  margin-top: 5px;
  color: #555;
}
#footer .footer_1dep .footer_info p em {
  font-style: normal;
  font-weight: 700;
}
#footer .footer_1dep .footer_info p.copy {
  font-size: 0.875em;
}
#footer .footer_1dep .footer_info p.copy > em {
  display: none;
}

/* Top button */
#footer .btn_top {
  position: fixed;
  right: 50px;
  bottom: 35px;
  width: 50px;
  height: 50px;
  background: url("../img/img_quick_top.png") no-repeat 0 0;
  opacity: 0.7;
  background-size: 50px;
  border-radius: 50%;
  box-shadow: 2px 2px 20px 0 rgba(0, 0, 0, 0.1);
  z-index: 9999;
}
#footer .btn_top:hover {
  box-shadow: 2px 2px 20px 0 rgba(0, 0, 0, 0.25);
  border-radius: 50px;
  opacity: 1;
  transition: all 0.5s;
}
#footer .btn_quick {
  position: fixed;
  right: 50px;
  bottom: 100px;
  width: 50px;
  height: 50px;
  background: url("../img/btn_contact.png") no-repeat center/100%;
  box-shadow: 2px 2px 20px 0 rgba(0, 0, 0, 0.1);
  z-index: 9999;
  border-radius: 25px;
  overflow: hidden;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
#footer .btn_quick:hover {
  background: url("../img/btn_contact_hover.png") no-repeat center / 100%;
  width: 102px;
  height: 50px;
}


/* -------------------------- 모달 버튼 -------------------------- */
.btn_open_modal_TOU {
	font-size: 0.9em;
	color: var(--main-blue-color);
	border: none;
	background-color: transparent;
}

.btn_open_modal_PP {
	font-size: 0.9em;
	color: var(--main-blue-color);
	font-weight: 600;	
	border: none;
	background-color: transparent;
}

.btn_open_modal_TOU, 
.btn_open_modal_PP:hover {
	cursor: pointer;
}



/* -------------------------- 모달창 -------------------------- */
.modal_1 {
	position: fixed;
	display: none;
	justify-content: center;
	align-items: center;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.4);
	z-index: 5;
}

.modal_1_body {
	width: 670px;
	height: 630px;
	background-color: white;
	box-shadow:0 2px 3px 0 rgba(34,36,38,0.15);
	position: relative;
	border-radius: 0.3rem;
}

.modal_header {
	padding: 20px;
	font-size: 20px;
	font-weight: 700;
	position: relative;
}

.modal_header span {
	height: 30px;
}

.modal_close {
    position: absolute;
	width: 30px;
    height: 30px;
    opacity: 0.3;
    right: 20px;
    top: 20px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e"); 
}

.modal_close:hover {
	cursor: pointer;
}


.modal_content {
	padding: 20px;
	overflow:auto;
	height: 490px;
	
}

/* ---------------------- 이용약관, 개인정보처리방침 스타일 ---------------------- */

.content_depth1 {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
}
.content_depth2 {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
}

.table_privacy_policy {
	border: 1px solid #d4d8e0;
	border-collapse: collapse;
	width: 100%;
	text-align: center;
}

.table_privacy_policy th, .table_privacy_policy td {
	border: 1px solid #d4d8e0;
}

.table_bg_color {
	background-color: #eaeaea;
	font-weight: 600;
}

.table_privacy_policy .table_align_left {
	text-align: left;
}
