@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
  position: relative;
}

html {
  font-size: 18px;
  font-family: "arial", "Noto Sans TC", sans-serif;
  font-weight: 100;
  top: 0.5rem;
}
@media screen and (min-width: 919px) and (max-width: 1196px) {
  html {
    font-size: calc(12px + 0.2vw);
    top: 1rem;
  }
}
@media screen and (min-width: 375px) and (max-width: 918px) {
  html {
    font-size: calc(12px + 0.05vw);
    top: 1rem;
  }
}

:root {
  --color: #000;
}

.container {
  position: relative;
  width: 100vw;
  height: 100vh;
}

body {
  background: white;
}

.title {
  position: fixed;
  width: 100%;
  padding: 0 1rem;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}
.title h1 {
  display: flex;
  flex-direction: column;
  font-size: 5vw;
  color: var(--color);
}
.title h1 .TC {
  font-size: 4vw;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 500;
}
.title h2 {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  line-height: 0rem;
  color: var(--color);
  margin-top: -0.2rem;
}
.title h2 > svg {
  width: 100%;
  height: auto;
}
.title h2 > span:first-child {
  margin-right: 1rem;
}

/* 기본(큰 화면): 가로 배치 */
.title h2 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: min(2vw, 16px);
}

.title h2 > span {
  margin-top: 0;
}

.title h2 > span:first-child {
  margin-top: -1.8rem;
}

.title h2 > span:last-child {
  bottom: 0.1rem;
}

.title h2 svg {
  width: 100%;
  height: auto;
}

/* 919~1196px: 세로(column) + vw로 축소 */
@media screen and (min-width: 919px) and (max-width: 1196px) {
  .title h2 {
    flex-direction: column; /* 세로로 쌓기 */
    align-items: center; /* 가운데 정렬 */
    gap: 0rem; /* 세로 간격 */
  }
  .title h2 > span,
  .title h2 > span:first-child {
    margin-top: -5rem;
  } /* 가로용 마진 리셋 */
  .title h2 > span:last-child {
    bottom: 0;
  }
  .title h2 svg {
    width: 70vw;
    height: auto;
  } /* 화면폭 기준 크기 */
}
/* 375~918px: 더 작게 */
@media screen and (min-width: 500px) and (max-width: 918px) {
  .title h2 {
    flex-direction: column;
    align-items: center;
    gap: 0rem;
  }
  .title h2 > span,
  .title h2 > span:first-child {
    margin-top: -3.5rem;
  } /* 리셋 */
  .title h2 svg {
    width: 82vw;
    height: auto;
  } /* 더 작은 화면 → 더 크게 차지 */
}
/* 375~918px: 더 작게 */
@media screen and (min-width: 375px) and (max-width: 500px) {
  .title h2 {
    flex-direction: column;
    align-items: center;
    gap: 0rem;
  }
  .title h2 > span,
  .title h2 > span:first-child {
    margin-top: -2rem;
  } /* 리셋 */
  .title h2 svg {
    width: 82vw;
    height: auto;
  } /* 더 작은 화면 → 더 크게 차지 */
}
.contents {
  position: fixed;
  width: 100%;
  padding: 0 1rem;
  bottom: 2rem;
  color: var(--color);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 2rem;
}
.contents .program-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  row-gap: 0.25rem;
}
.contents .copyRight {
  font-size: 0.5rem;
  line-height: 1rem;
  color: #737373;
}
.contents .program-info span {
  white-space: nowrap;
  margin-right: 0;
}
.contents .program-info .ongoing {
  animation-name: blinkOngoing;
  animation-duration: 1.8s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-play-state: ease-in-out;
}

@media (max-width: 520px) {
  .contents .program-info {
    flex-direction: column; /* 무조건 세로 배치 */
    align-items: center; /* 가운데 정렬 */
    flex-wrap: nowrap; /* wrap 해제 */
    gap: 0.5rem 0; /* 세로 간격 */
  }
  .contents .program-info span {
    white-space: normal; /* span 안에서도 필요시 줄바꿈 허용 */
  }
}
.papers {
  position: fixed;
  background: none;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  pointer-events: none;
}

.papers-holder {
  position: relative;
  width: 100%;
  height: 100%;
  pointer-events: auto;
}

.papers .papers-holder > div {
  position: absolute;
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(180deg, #737373 0%, #000 51.44%, #a6a6a6 100%);
  mix-blend-mode: exclusion;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

@keyframes blinkOngoing {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}/*# sourceMappingURL=style.css.map */