body {
	margin: 134px 10px;
	font-family: helvetica;
	font-size: 16px;
	line-height: 24px;
	background-color: #222;
	color: #eee;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
p {
	margin: 0;
	word-break: keep-all;
}
img {
	height: 300px;
	vertical-align: top;
	margin-bottom: 10px;
	margin-right: 10px;
}
a {
	color: #eee;
	text-decoration: none;
}
.nav ul {
	display: flex;
	margin-bottom: 20px;
	position: fixed;
	top: 5px;
	width: calc(100vw - 35px);
	display: inline-block;
}
.nav li {
	width: 100%;
}
.nav li:first-child {
	text-align: left;
}
.nav li:nth-child(2) {
	text-align: center;
}
.nav li:last-child {
	text-align: right;
}
.info {
	margin-bottom: 20px;
}
.project {
	margin-bottom: 20px;
}
.title {
	border-bottom: 1px solid #ccc;
	display: flex;
	gap: 20px;
}
.title p {
	width: 50%;
	margin-left: 46px;
	padding-bottom: 2px;
}
.body {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
	margin-top: 4px;
}
.body p {
	width: 50%;
}
.body ul {
	width: 50%;
}
.gallery {
	margin-bottom: 80px;
	flex-wrap: nowrap;
	display: flex;
}
.gallery-wrap {
	padding-left: 46px;
	overflow-x: auto;
	-ms-overflow-style: none;  /* IE, Edge */
	scrollbar-width: none;     /* Firefox */
}
.gallery-wrap::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}
.text {
	margin-bottom: 80px;
}
.footer {
	display: flex;
	gap: 10px;
	position: fixed;
	bottom: 5px;
}
@media (max-width: 768px) {
	.nav ul {
		width: calc(100vw - 20px);
	}
	.title {
		display: inline-block;
		width: 100%;
	}
	.title p {
		padding-bottom: 2px;
	}
	.p-title-kr {
		line-height: 16px;
		padding-bottom: 0;
	}
	.body {
		display: inline-block;
	}
	.body p {
		width: 100%;
	}
	.body ul {
		margin-left: 49px;
		margin-top: 20px;
	}
	img {
		height: 300px;
		margin-right: 10px;
	}
}
@media (max-width: 480px) {
	.nav ul {
		display: inline;
		width: calc(100vw - 10px);
	}
	.nav li {
		text-align: left;
		width: auto;
		margin-right: 10px;
	}
	.title {
		display: inline-block;
		width: 100%;
	}
	.title p {
		width: calc(100% - 40px);
		margin-left: 46px;
		padding-bottom: 2px;
	}
	.p-title-kr {
		line-height: 16px;
		padding-bottom: 0;
	}
	.body {
		display: inline-block;
		margin-bottom: 5px;
	}
	.body p {
		width: 100%;
	}
	.body ul {
		width: calc(100% - 90px);
		margin-left: 46px;
		margin-top: 20px;
		margin-bottom: 20px;
	}
	img {
		height: 300px;
	}
	.text {
		margin-bottom: 40px;
	}
	.footer {
		display: inline;
	}
}