@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nanum+Gothic&display=swap");
* {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #333;
  font-family: "Montserrat", sans-serif;
}
*.lang-ko {
  font-family: "Nanum Gothic", serif;
}
* img {
  display: block;
}
* a {
  text-decoration: none;
}
* li {
  list-style: none;
}

body {
  position: relative;
  width: calc(100% - 48px);
  margin: 0 auto;
}

.hidden {
  display: none !important;
}

.header .nav {
  display: flex;
  padding: 24px 0;
}
.header li {
  font-size: 18px;
}
.header li:first-child {
  margin-right: auto;
}
.header li:last-child {
  margin-left: 24px;
}

.index .contents {
  position: relative;
  width: 100%;
  height: calc(100vh - 70px);
}
.index .contents .viewer {
  width: 40%;
  height: 100%;
  margin-left: auto;
  margin-right: 40px;
}

.category {
  display: inline-block;
  margin-top: 80px;
}
.category li {
  cursor: pointer;
  padding: 4px 0;
}
.category li:not(:first-child) {
  margin-top: 12px;
}
.category li.on {
  text-decoration: underline;
}

.work .contents {
  margin: 80px 0;
}
.work .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 20px;
  overflow: hidden;
}
.work .list li {
  width: calc(25% - 15px);
  cursor: pointer;
}
.work .list li:nth-child(n+5) {
  margin-top: 20px;
}
.work .list img {
  width: 100%;
}
.work .list .sub {
  margin-top: 16px;
  color: #6D6D6D;
}
.work .list .sub + p {
  margin-top: 8px;
}

.active-project {
  overflow: scroll;
  position: fixed;
  width: 80%;
  min-width: 1024px;
  height: 100vh;
  top: 0;
  right: -100%;
  padding: 40px;
  box-sizing: border-box;
  background-color: #FFF;
  border-left: 1px solid #333;
  transition-duration: 0.5s;
}
.active-project.on {
  right: 0;
}
.active-project .title_wrap {
  display: flex;
  line-height: 1.4em;
}
.active-project .title_wrap .project-title {
  margin: 0 80px 80px;
  font-size: 24px;
}
.active-project .title_wrap .ico_back {
  display: block;
  width: 24px;
  height: 24px;
  background: url("../img/ico_back.png") no-repeat;
  cursor: pointer;
}
.active-project .desc_wrap {
  width: 80%;
  max-width: 1024px;
  margin: 0 auto;
}
.active-project .desc_wrap p:not(:first-of-type) {
  margin-top: 16px;
}
.active-project .desc_wrap .project-desc {
  font-size: 14px;
  line-height: 1.6em;
  letter-spacing: 0.6px;
  color: #6D6D6D;
}
.active-project .desc_wrap .project-desc::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-right: 8px;
  background: url("../img/ico_mii.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.active-project .desc_wrap .link {
  display: flex;
  justify-content: flex-end;
  margin: 40px 0 24px 0;
  text-align: right;
  line-height: 16px;
  text-decoration: underline;
}
.active-project .desc_wrap .link::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  background: url("../img/ico_back.png") no-repeat;
  background-size: cover;
  transform: rotate(180deg);
}
.active-project .desc_wrap img {
  width: 100%;
}
.active-project .desc_wrap img:nth-of-type(n+2) {
  margin-top: 24px;
}

.contact .text_wrap {
  margin-top: 80px;
}
.contact .text_wrap p {
  font-size: 24px;
}
.contact .text_wrap p:last-child {
  margin-top: 16px;
}

.footer {
  position: fixed;
  text-align: right;
  right: 24px;
  bottom: 24px;
}
.footer p:not(:first-child) {
  margin-top: 4px;
}

.non-data p {
  font-size: 24px;
  color: #6D6D6D;
}
.non-data p::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-left: 8px;
  vertical-align: -4px;
  background: url("../img/ico_nondata.png") no-repeat;
  background-size: cover;
}

@media (max-width: 1280px) {
  .work .list li {
    width: calc(33.3% - 13px);
    transition-duration: 0.5s;
  }
  .work .list li:nth-child(n+4) {
    margin-top: 20px;
  }
}
@media (max-width: 1050px) {
  .index .contents .viewer {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .work .list li {
    width: calc(50% - 10px);
  }
  .work .list li:nth-child(n+3) {
    margin-top: 20px;
  }
  .active-project {
    width: 100%;
    min-width: unset;
  }
}
@media (max-width: 430px) {
  .work .list li {
    width: 100%;
    margin-top: 16px !important;
  }
  .active-project {
    border-left: 0;
  }
  .active-project .title_wrap .ico_back {
    width: 32px;
    height: 32px;
  }
  .active-project .title_wrap .project-title {
    margin: 0 24px 40px;
    line-height: normal;
  }
  .active-project .desc_wrap .project-desc::before {
    display: block;
    margin: 0 0 8px 0;
  }
  .footer {
    text-align: center;
    right: 0;
    left: 0;
    bottom: 24px;
    font-size: 12px;
  }
}/*# sourceMappingURL=style.css.map */