@charset "utf-8";

body {
  font-family: 'Pretendard', '맑은 고딕', Arial, '돋움', sans-serif;
  min-width: 1200px;
}

body label {
  font-family: 'Pretendard', '맑은 고딕', Arial, '돋움', sans-serif;
}

main {
  height: fit-content;
  min-height: 881px;
  padding-bottom: 56px;
  text-align: center;
}

main .wrap {
  position: relative;
  display: inline-block;
  width: 1200px;
  margin: 72px 0 30px 0;
}

.hamburger-wrap {
  display: none;
}

.hamburger-btn {
	position: relative;
	width: 100%;
	height: 100%;
}

.hamburger-btn .line {
	display: inline-block;
	position: absolute;
	width: 20px;
	border: 1px solid #666666;
	border-radius: 1px;
	left: 0;
  background-color: #666666;
	transition-duration: 0.3s;
}

.hamburger-btn .line.line-top {
	top:3px;
}

.hamburger-btn .line.line-mid {
  top: 9px;
}

.hamburger-btn .line.line-bot {
  top: 15px;
}

.hamburger-btn.expand .line.line-top {
	top: 9px;
	transform: rotate(45deg);
	transition-duration: 0.3s;
}

.hamburger-btn.expand .line.line-mid {
  opacity: 0;
  transition-duration: 0.3s;
}

.hamburger-btn.expand .line.line-bot {
  top: 9px;
  transform: rotate(-45deg);
  transition-duration: 0.3s;
}

.scroll-unable {
	overflow: hidden;
	height: 100%;
	touch-action: none;
}

.scroll-unable-modal {
	height: 100%;
  touch-action: none;
}

/* footer */
footer {
  position: absolute;
  width: 100%;
  min-width: 1200px;
  height: 56px;
  padding: 12px;
  text-align: center;
  background-color: #6a6c77;
  color: #fff;
  font-weight: lighter;
  bottom: 0;
}

footer .inner {
  display: inline-block;
  min-width: 1170px;
}

footer .inner p {
  opacity: 0.7;
  letter-spacing: 0.3px;
}

footer .inner .copyright {
  display: inline-block;
  float: left;
  text-align: left;
}

footer .inner .info {
  display: inline-block;
  float: right;
  text-align: right;
}

footer .inner img {
	float: left;
	margin-right: 15px;
	transform: translateY(15%);
}

/* for 아이폰 사파리  */
footer .inner .info span a {
	color: #ffffff;
}

a.tel {
	color: #333333;
}

/* 공통부분 미디어 쿼리 */
@media (max-width:768px) {
  body {
    min-width: 100%;
  }
  
  main {
    display: block;
/*     min-height: auto; */
    padding: 0;
  }
  
  .hamburger-wrap {
    display: inline-block;
    position: absolute;
    top: 11px;
    left: 12px;
    cursor: pointer;
    width: 26px;
    height: 26px;
    padding: 3px;
  }
  
  footer {
    height: 89px;
    min-width: auto;
    transform: translateY(-129%);
  }
  
  footer .inner {
    min-width: auto;
    font-size: 12px;
  }
  
  footer .inner .copyright,
  footer .inner .info {
    display: block;
    float: none;
    text-align: center;
  }
  
  footer .inner .copyright {
    margin-bottom: 5px;
  }
  
  footer .inner img {
    display: none;
  }
  
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.3;
    z-index: 1;
  }
  
  .uix-dialog {
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
  }
  
  .uix-dialog-body {
    padding: 0 16px 16px;
  }
}
