@charset "UTF-8";
@import url("contents.css");
/*-------------------------------------------------
title       : 믹스인
Author      : PLAN I
Create date : 2024-10-11
-------------------------------------------------*/
/*-------------------------------------------------
title       : 서브
Author      : ㅈㅁㅈ
Create date : 2025-08-12
-------------------------------------------------*/
#main {
  padding-top: var(--header);
}

#contents {
  margin: 8rem auto;
}

#visual {
  position: relative;
  z-index: 0;
  height: 57rem;
  padding: 6rem 3rem;
  font-size: 2rem;
  color: #fff;
  text-align: center;
  word-break: keep-all;
}
#visual small {
  display: block;
  margin-top: 3rem;
  font-size: var(--size);
  color: var(--color);
}
#visual i img {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  position: absolute;
  bottom: 0;
  z-index: -1;
  max-width: var(--width2);
}
#visual h2 {
  margin-bottom: 3rem;
  font-family: "Paperlogy", "Pretendard";
  font-size: 4.4rem;
}
#visual h2 span {
  color: var(--color1);
}
#visual.cover {
  width: 172rem;
  max-width: var(--width2);
  margin-left: auto !important;
  margin-right: auto !important;
  height: auto;
  padding: 14.5rem 0 0;
  font-size: inherit;
  color: inherit;
  text-align: inherit;
}
#visual.cover i {
  display: block;
  position: relative;
  margin-top: 10rem;
  -webkit-transform-origin: center;
          transform-origin: center;
}
#visual.cover i img {
  bottom: auto;
  top: 0;
  min-width: 100%;
  max-width: initial;
  border-radius: 3rem;
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-animation: img 2s;
          animation: img 2s;
}
#visual.cover i img.active {
  position: fixed;
  top: var(--header);
}
#visual.cover .item {
  overflow: hidden;
  position: relative;
  font-weight: 700;
  color: #000;
}
#visual.cover .item p {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 47rem;
  padding-left: 4rem;
  border-left: 1px solid #000;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--color);
  -webkit-animation: txt 2s;
          animation: txt 2s;
}
#visual.cover .item h1 {
  display: inline-block;
  height: 6rem;
  padding: 0 3rem;
  border-radius: 0 3rem 3rem 3rem;
  background-color: var(--color1);
  font-size: 2.9rem;
  font-weight: inherit;
  line-height: 6rem;
  vertical-align: middle;
  -webkit-animation: subject 1s;
          animation: subject 1s;
}
#visual.cover .item strong {
  display: block;
  position: relative;
  width: 112rem;
  max-width: calc(100% - 50rem);
  margin-top: 2.5rem;
  font-size: 8.3rem;
  word-break: keep-all;
  line-height: 130%;
  -webkit-animation: title 1.2s;
          animation: title 1.2s;
}
#visual.cover .item span {
  display: block;
  margin-top: 2.5rem;
  font-size: 2.2rem;
  white-space: nowrap;
  -webkit-animation: name 2s;
          animation: name 2s;
}

@-webkit-keyframes subject {
  0% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    opacity: 0;
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    opacity: 1;
  }
}

@keyframes subject {
  0% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    opacity: 0;
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    opacity: 1;
  }
}
@-webkit-keyframes title {
  0% {
    left: -5rem;
    opacity: 0;
  }
  50% {
    left: -5rem;
    opacity: 0;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}
@keyframes title {
  0% {
    left: -5rem;
    opacity: 0;
  }
  50% {
    left: -5rem;
    opacity: 0;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}
@-webkit-keyframes name {
  0% {
    letter-spacing: 1rem;
    opacity: 0;
  }
  50% {
    letter-spacing: 1rem;
    opacity: 0;
  }
  100% {
    letter-spacing: 0;
    opacity: 1;
  }
}
@keyframes name {
  0% {
    letter-spacing: 1rem;
    opacity: 0;
  }
  50% {
    letter-spacing: 1rem;
    opacity: 0;
  }
  100% {
    letter-spacing: 0;
    opacity: 1;
  }
}
@-webkit-keyframes txt {
  0% {
    clip-path: inset(0 0 100% 0);
    color: transparent;
  }
  50% {
    clip-path: inset(0 0 100% 0);
  }
  75% {
    color: transparent;
  }
  100% {
    clip-path: inset(0 0 0 0);
    color: var(--color);
  }
}
@keyframes txt {
  0% {
    clip-path: inset(0 0 100% 0);
    color: transparent;
  }
  50% {
    clip-path: inset(0 0 100% 0);
  }
  75% {
    color: transparent;
  }
  100% {
    clip-path: inset(0 0 0 0);
    color: var(--color);
  }
}
@-webkit-keyframes img {
  0% {
    clip-path: inset(0 50% 0 50%);
  }
  75% {
    clip-path: inset(0 50% 0 50%);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes img {
  0% {
    clip-path: inset(0 50% 0 50%);
  }
  75% {
    clip-path: inset(0 50% 0 50%);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@media (max-width: 1280px) {
  #visual.cover .item {
    padding-bottom: 13rem;
  }
  #visual.cover .item strong {
    max-width: 100%;
    font-size: 7rem;
  }
  #visual.cover .item strong + p {
    float: right;
    position: static;
    margin: 3rem 0 -13rem;
  }
}
@media (max-width: 768px) {
  #visual.cover {
    padding: 5rem 0;
  }
  #visual.cover i {
    margin-top: 5rem;
  }
  #visual.cover .item {
    padding-bottom: 0;
  }
  #visual.cover .item p {
    float: none !important;
    position: static;
    margin: 3rem 0 0 !important;
    width: 100%;
  }
  #visual.cover .item strong {
    font-size: 5.5rem;
  }
  #visual.cover .item br {
    display: none;
  }
}