html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	font-family: "Noto Sans KR", sans-serif;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}
body {
	line-height: 1;
}
a {
	text-decoration: none;
	color: #000;
}
ol,
ul {
	list-style: none;
}
blockquote,
q {
	quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
main {
	overflow: hidden;
}
#header {
}
.pc_header {
	position: fixed;
	background-color: transparent;
	width: 100%;
	height: 150px;
	left: 0;
	top: 0;
	z-index: 10;
}
.pc_header .header_container {
	width: 100%;
	max-width: 84%;
	margin: 0 auto;
	padding: 50px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.pc_header .header_container .lang {
	display: flex;
	align-items: center;
	gap: 0 10px;
}
.pc_header .header_container .lang > a > div {
	display: flex;
	align-items: center;
	gap: 0 7px;
	padding: 6px 11px;
	background-color: #dce5e6;
	border-radius: 20px;
}
.mo_header {
	display: none;
}
.pc_header .header_container .lang > a > div span {
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
}
.pc_intro {
	width: 100vw;
	height: 100vh;
	display: flex;
	gap: 0 2px;
}
.pc_intro a {
	width: calc(100% / 4);
	height: 100%;
}
.pc_intro a section {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}
.pc_intro a section.section01 {
	background-color: #ddd1ca;
}
.pc_intro a section.section02 {
	background-color: #e2dccc;
}
.pc_intro a section.section03 {
	background-color: #e7e9de;
}
.pc_intro a section.section04 {
	background-color: #dce5e6;
}
.pc_intro section img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.3s ease;
}
.pc_intro a section:hover img {
	scale: 1.07;
	filter: brightness(0.4);
	transition: all 0.3s ease;
}
.pc_intro a section .txt {
	position: absolute;
	bottom: 206px;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	width: 100%;
}
.pc_intro a section .txt h2 {
	color: #f2f2f2;
	font-weight: 600;
	font-size: 40px;
	margin-bottom: 18px;
}
.pc_intro a section .txt p {
	font-family: "Montserrat", sans-serif;
	font-size: 30px;
	color: #f2f2f2;
}
#footer {
}
.pc_footer {
	width: 100%;
	height: 88px;
	background-color: #f2f2f2;
	position: fixed;
	bottom: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0 2%;
	font-size: 17px;
}
.mobile_intro section {
	width: 100%;
	height: auto;
	animation-duration: 1.8s;
	animation-timing-function: ease-in-out;
}
.mobile_intro section img {
	width: 100%;
	height: 100%;
	vertical-align: top;
}
.mobile_intro section:nth-child(odd) {
	animation-name: slideInLeft;
}
.mobile_intro section:nth-child(even) {
	animation-name: slideInRight;
}
/* 애니메이션 정의 */
@keyframes slideInLeft {
	from {
		transform: translateX(-100%);
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes slideInRight {
	from {
		transform: translateX(100%);
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}
/* 모바일에서만 애니메이션 */
@media (max-width: 1176px) {
	.pc_intro section img {
		object-fit: cover;
	}
}
@media (max-width: 1200px) {
	.pc_intro a section .txt h2 {
		font-size: 36px;
	}
	.pc_intro a section .txt p {
		font-size: 20px;
	}
}

/* 모바일에서만 애니메이션 */
@media (max-width: 768px) {
	.pc_header {
		display: none;
	}
	.mo_header {
		display: block;
		width: 100%;
		height: 10vh;
	}
	.mo_header .header_container {
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0 6%;
	}
	.mo_header .header_container .logo {
		width: 40%;
	}
	.mo_header .header_container .logo img {
		width: 100%;
	}
	.mo_header .header_container .lang {
		display: flex;
		gap: 0 5px;
		align-items: center;
	}
	.mo_header .header_container .lang > a > div {
		display: flex;
		align-items: center;
		gap: 0 5px;
		border: 1px solid #000;
		border-radius: 30px;
		padding: 5px 10px;
		font-size: 14px;
	}
	.mobile_intro {
		display: block;
		display: flex;
		flex-direction: column;
		gap: 3px 0;
	}
	.mobile_intro section {
		position: relative;
		overflow: hidden;
		width: 100%;
	}
	.mobile_intro section > a {
		width: 100%;
		height: 100%;
		display: inline-block;
	}
	.mobile_intro section img {
		object-fit: cover;
	}
	.mobile_intro section .txt {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		text-align: center;
	}
	.mobile_intro section:nth-child(odd) .txt {
		right: 10%;
	}
	.mobile_intro section:nth-child(even) .txt {
		left: 10%;
	}
	.mobile_intro section .txt h2 {
		font-size: 6vw;
		font-weight: 600;
	}
	.mobile_intro section .txt p {
		font-family: "Montserrat", sans-serif;
		font-size: 4vw;
		font-weight: 300;
		color: #787878;
		margin: 10% 0 18%;
	}
	.mobile_intro section .txt span {
		border: 1px solid #787878;
		padding: 3px 15px;
		font-size: 3vw;
		border-radius: 30px;
	}
	.pc_intro {
		display: none;
	}
	.pc_footer {
		display: none;
	}
}

/* 태블릿 이상에서는 메인 콘텐츠 숨기기 */
@media (min-width: 769px) {
	.mobile_intro {
		display: none;
	}
}
