@charset "UTF-8";
/* 
	[z-index]

	header : 10
	hamburger 버튼 : 1001
	popup : 2000
	submenu : 10
	sub_top_menu_wrap : 2
*/
/* 
	max1590 // desktop
    max1480 // desktopMin(layout+80)
    max1350 // laptopMax
	max1024 // laptop
	max767 // pad
	max500 // mobileMax
	max425 // mobile
	max350  // mobileMin
*/
/* 
	layout1400
*/
/* 
    기타 값 고정값은 scss > abstracts > variable 참고
 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

a,
input,
textarea,
button,
select {
  cursor: pointer;
  font-family: "Pretendard", sans-serif;
}

a {
  color: #222222;
  text-decoration: none;
}

img {
  border: 0;
  vertical-align: middle;
}

fieldset,
hr {
	border: none;
}

ul, ol, li {
	list-style: none;
}

address,
em {
	font-style: normal;
}

img,
video,
canvas {
	height: auto;
}

legend {
	display: none;
}

input[type=text],
input[type=password],
input[type=tel],
input[type=search] {
  appearance: none;
	-webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  background: transparent;
}
input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=tel]::placeholder,
input[type=search]::placeholder {
  color: rgba(34, 34, 34, 0.8);
}

input[type=search]::-webkit-search-decoration, input[type=search]::-webkit-search-results-decoration, input[type=search]::-webkit-search-results-button, input[type=search]::-webkit-search-cancel-button {
  display: none;
}

button,
input[type=submit],
input[type=button] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
    border: none;
  background: transparent;
}

textarea {
  resize: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  background: transparent;
}

select {
  appearance: none;
}

/* scss 애니메이션 @keyframes 모음 */
@keyframes bubbleDown {
  0% {
    right: 90%;
}
  100% {
    right: 100%;
}
}
/* //scss 애니메이션 @keyframes 모음 */
@font-face {
  font-family: "GyeonggiBatang";
  src: url("/assets/font/Batang_Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "GyeonggiBatang";
  src: url("/assets/font/Batang_Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Pretendard";
  src: url("/assets/font/Pretendard-Thin.woff") format("woff"), url("/assets/font/Pretendard-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
	}
@font-face {
  font-family: "Pretendard";
  src: url("/assets/font/Pretendard-ExtraLight.woff") format("woff"), url("/assets/font/Pretendard-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Pretendard";
  src: url("/assets/font/Pretendard-Light.woff") format("woff"), url("/assets/font/Pretendard-Light.woff2") format("woff2");
	font-weight: 300;
	font-style: normal;
}
@font-face {
  font-family: "Pretendard";
  src: url("/assets/font/Pretendard-Regular.woff") format("woff"), url("/assets/font/Pretendard-Regular.woff2") format("woff2");
  font-weight: normal;
	font-style: normal;
}
@font-face {
  font-family: "Pretendard";
  src: url("/assets/font/Pretendard-Medium.woff") format("woff"), url("/assets/font/Pretendard-Medium.woff2") format("woff2");
	font-weight: 500;
	font-style: normal;
}
@font-face {
  font-family: "Pretendard";
  src: url("/assets/font/Pretendard-SemiBold.woff") format("woff"), url("/assets/font/Pretendard-SemiBold.woff2") format("woff2");
	font-weight: 600;
	font-style: normal;
}
@font-face {
  font-family: "Pretendard";
  src: url("/assets/font/Pretendard-Bold.woff") format("woff"), url("/assets/font/Pretendard-Bold.woff2") format("woff2");
	font-weight: 700;
	font-style: normal;
}
@font-face {
  font-family: "NanumMyeongjo";
  src: url("/assets/font/NanumMyeongjo.otf") format("otf");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "NanumMyeongjo";
  src: url("/assets/font/NanumMyeongjoExtraBold.otf") format("otf");
  font-weight: 800;
  font-style: normal;
}
/* tag */
html {
  font-family: "Pretendard", sans-serif;
  font-size: 10px;
}
html.seal {
  overflow: hidden;
  overscroll-behavior: contain;
}

body {
  font-size: 1.7rem;
  letter-spacing: -0.034rem;
  color: #222222;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
    letter-spacing: -0.028rem;
  }
}
body.seal {
  overflow: hidden;
  overscroll-behavior: contain;
}

input {
  position: relative;
  font-size: 1.7rem;
  letter-spacing: -0.034rem;
}
@supports (-webkit-touch-callout: none) {
  input:focus {
        outline: none;
		box-shadow: none;
	}
}
input:-webkit-autofill {
    background-color: transparent !important;
	-webkit-box-shadow: 0 0 0px 1000px white inset !important;
	box-shadow: 0 0 0px 1000px white inset !important;
}
input[type=date], input[type=time], input.date:not([type=date]), input.time:not([type=time]) {
  position: relative;
  height: 29px;
  border: none;
}
input[type=date]::-webkit-clear-button, input[type=date]::-webkit-inner-spin-button, input[type=time]::-webkit-clear-button, input[type=time]::-webkit-inner-spin-button, input.date:not([type=date])::-webkit-clear-button, input.date:not([type=date])::-webkit-inner-spin-button, input.time:not([type=time])::-webkit-clear-button, input.time:not([type=time])::-webkit-inner-spin-button {
  display: none;
}
input[type=date]::-webkit-calendar-picker-indicator, input[type=time]::-webkit-calendar-picker-indicator, input.date:not([type=date])::-webkit-calendar-picker-indicator, input.time:not([type=time])::-webkit-calendar-picker-indicator {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  color: transparent;
}
input[type=date]:valid::before, input[type=time]:valid::before, input.date:not([type=date]):valid::before, input.time:not([type=time]):valid::before {
  display: none;
}
div:has(> input[type=date])::before,
label:has(> input[type=date])::before,
div:has(> input[type=time])::before,
label:has(> input[type=time])::before {
  content: attr(data-placeholder);
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  font-family: "Pretendard", sans-serif;
  color: #9E9E9E;
  background-color: #fff;
  box-sizing: border-box;
}

button {
  font-family: "Pretendard", sans-serif;
  font-size: 1.7rem;
  letter-spacing: -0.034rem;
}

select {
  font-family: "Pretendard", sans-serif;
  font-size: 1.7rem;
  letter-spacing: -0.034rem;
}

/* tag */
.wrap-sub {
  overflow-x: hidden;
}
.wrap-sub .logo {
  margin: 0;
  margin-bottom: 10px;
  width: auto;
}

.layout {
  position: relative;
  width: 100%;
  max-width: 140rem;
  max-width: 1400px;
  margin: 0 auto;
}
@media only screen and (max-width: 1660px) {
  .layout {
    width: calc(100vw - 40px * 2);
    max-width: unset;
    margin: 0 4rem;
  }
}
@media only screen and (max-width: 767px) {
  .layout {
    width: calc(100vw - 30px * 2);
    margin: 0 3rem;
  }
}
@media only screen and (max-width: 425px) {
  .layout {
    width: calc(100vw - 15px * 2);
    margin: 0 1.5rem;
  }
}

.c-red {
  color: #E5002B;
}

.hidden {
  display: none !important;
}

/* scss 수정 */
/* //scss 수정 */



/* css 수정 */
/* //css 수정 */