@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
html,
body {
  margin: 0;
}

body {
  background-color: #fefefe;
}

a {
  color: #000000;
  text-decoration: underline;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

p {
  margin: 0;
}

@font-face {
  font-family: "Pretendard";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Thin.woff2") format("woff2");
  font-weight: 100;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Black.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
}
body,
div,
p,
h1, h2, h3, h4, h5, h6 {
  color: #000000;
  letter-spacing: -0.02em;
  font-family: "Montserrat", "Pretendard", Arial, sans-serif;
  word-break: break-word;
}

body,
div,
p {
  font-size: 20px;
  line-height: 1.5em;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  line-height: 1.3em;
  letter-spacing: -0.04em;
}

._title {
  line-height: 1em;
  font-size: 10vw;
  letter-spacing: -0.03em;
  font-weight: 800;
}

a._title {
  text-indent: -0.05em;
  display: flex;
  text-decoration: none;
}

main {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  transition: opacity 1s ease, transform 1s ease;
}
main.modal_open {
  filter: blur(20px);
  opacity: 0.5;
}

.main_container {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.contents {
  display: flex;
  flex-direction: column;
}

.contents_wrapper {
  padding: 40px;
  border-top: 1px solid #777777;
}
.contents_wrapper:last-child {
  border-bottom: 1px solid #777777;
}
@media screen and (max-width: 768px) {
  .contents_wrapper {
    padding: 30px;
  }
}

.article_title {
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .article_title {
    font-size: 20px;
  }
}

ul.content_list {
  gap: 10px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  ul.content_list {
    gap: 20px;
  }
}

header {
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
header .logo {
  display: flex;
  align-items: center;
}
header a {
  font-size: 44px;
}

@media screen and (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 5px;
    padding: 20px 30px;
  }
  header a {
    font-size: 20px;
  }
}
footer {
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  gap: 5px;
}
footer p,
footer a,
footer li {
  color: #000000;
  font-size: 20px;
}
footer .nav_footer li {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 20px 30px;
    flex-direction: column;
    gap: 15px;
  }
}
ul.content_list.websites li,
ul.content_list.websites h4 {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

ul.websites ._link {
  font-weight: 400;
  color: #000000;
  text-decoration: underline;
  cursor: pointer;
}
ul.websites .meta {
  display: flex;
  gap: 30px;
  align-items: center;
}

date {
  color: rgba(0, 0, 0, 0.3);
  font-weight: 800;
}

#img-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
#img-overlay.active {
  opacity: 1;
}
#img-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

li.working {
  color: blue;
  font-size: 32px;
  line-height: 1.5em;
}

@media screen and (max-width: 768px) {
  li.working {
    font-size: 20px;
    line-height: 0.5em;
  }
}
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-47%, -45%) scale(0.96);
  z-index: 200;
  border: 1px solid #000;
  width: 520px;
  height: auto;
  box-shadow: 18px 52px 0 0 rgba(0, 0, 0, 0.1);
  background: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
@media screen and (max-width: 1024px) {
  .modal {
    width: 90vw;
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.modal-close span {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
  border-radius: 1px;
  transition: background 0.2s;
}
.modal-close span:nth-child(1) {
  transform: translateY(-50%) rotate(45deg);
}
.modal-close span:nth-child(2) {
  transform: translateY(-50%) rotate(-45deg);
}
.modal-close:hover span {
  background: rgba(0, 0, 0, 0.4);
}

.modal-body {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 60px;
  box-sizing: border-box;
}
.modal-body h2 {
  margin-bottom: 30px;
}
.modal-body p {
  margin-bottom: 5px;
  word-break: keep-all;
}
.modal-body ul {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.modal-body li {
  font-size: 32px;
  line-height: 1.4em;
  text-transform: uppercase;
  word-break: keep-all;
}
.modal-body h4 {
  font-size: 32px;
  font-weight: 400;
}

.tik-tak {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  margin-top: 24px;
}
.tik-tak p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8em;
  height: 1.8em;
  background-color: #000;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.6s ease;
  transform-origin: center center;
  font-size: 32px;
  line-height: 1;
  user-select: none;
  color: #fff;
}
.tik-tak p._blank {
  background-color: transparent !important;
  clip-path: none;
  width: 0.5em;
}

.nav_footer li[data-modal] {
  cursor: pointer;
  user-select: none;
}
.nav_footer li[data-modal]:hover {
  text-decoration: underline;
}

/*# sourceMappingURL=main.css.map */
