.entry {
  color: #fff;
}
.entry main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}
.entry main.mouseenter .header {
  opacity: 0;
}
.entry main.mouseenter .item-wrap::before {
  opacity: 0;
}
.entry main.mouseenter.enter2 .footer .copyright {
  color: #000;
}
.entry main.mouseenter.enter2 .footer .language-select .item a {
  color: #000;
}
.entry main.mouseenter.enter2 .footer .language-select .item a::before, .entry main.mouseenter.enter2 .footer .language-select .item a::after {
  background-color: rgba(0, 0, 0, 0.5);
}
.entry .background {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
}
.entry .background::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.entry .background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.entry .background .project-bg {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 2;
}
.entry .header {
  padding-top: 9.26vh;
  text-align: center;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
@media only screen and (max-width: 1024px) {
  .entry .header {
    padding-top: 6.51vh;
  }
}
@media only screen and (max-width: 767px) {
  .entry .header {
    padding-top: 50px;
  }
}
.entry .header .title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.4;
}
.entry .header p {
  line-height: 1.4;
  margin-top: 15px;
}
.entry .project-select {
  margin: auto 0;
}
@media only screen and (max-width: 1024px) {
  .entry .project-select {
    padding: 50px 0 56px;
  }
}
@media only screen and (max-width: 767px) {
  .entry .project-select {
    padding: 40px 0;
  }
}
.entry .container {
  max-width: 1760px;
  width: 91.6667%;
  margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
  .entry .container {
    width: calc(100% - 40px);
  }
}
@media only screen and (max-width: 767px) {
  .entry .container {
    width: 100%;
  }
}
.entry .item-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .entry .item-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.entry .item-wrap .item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 33.3333333333%;
  padding: 6.9444vh 5.6818%;
  text-align: center;
  -webkit-animation: opac 0.4s forwards;
          animation: opac 0.4s forwards;
  animation-direction: reverse;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media only screen and (max-width: 1024px) {
  .entry .item-wrap .item {
    padding: 50px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .entry .item-wrap .item {
    width: 100%;
  }
}
.entry .item-wrap .item:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 90.9091%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
@media only screen and (max-width: 767px) {
  .entry .item-wrap .item:not(:first-child) {
    position: relative;
  }
  .entry .item-wrap .item:not(:first-child)::before {
    top: 0;
    left: 50%;
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
    width: calc(100% - 60px);
    height: 1px;
  }
}
.entry .item-wrap .item.mouseenter {
  background-color: var(--bg-color);
  color: var(--txt-color);
}
.entry .item-wrap .item.mouseenter::before {
  opacity: 0;
}
.entry .item-wrap .item.mouseenter .item-inner {
  -webkit-animation: jcc 0.5s forwards;
          animation: jcc 0.5s forwards;
}
.entry .item-wrap .item:nth-child(2).mouseenter .logo, .entry .item-wrap .item:nth-child(3).mouseenter .logo {
  -webkit-filter: brightness(0);
          filter: brightness(0);
}
.entry .item-wrap .item:nth-child(2).mouseenter .enter-btn, .entry .item-wrap .item:nth-child(3).mouseenter .enter-btn {
  border-color: rgba(0, 0, 0, 0.5);
}
.entry .item-wrap .item:nth-child(2).mouseenter .enter-btn:hover, .entry .item-wrap .item:nth-child(3).mouseenter .enter-btn:hover {
  border-color: #000;
}
.entry .item-wrap .item:nth-child(2).mouseenter svg path, .entry .item-wrap .item:nth-child(3).mouseenter svg path {
  stroke: #000;
  fill: #000;
}
@-webkit-keyframes jcc {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-box-pack: center;
            justify-content: center;
  }
}
@keyframes jcc {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@-webkit-keyframes opac {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes opac {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.entry .item-wrap .item.hidden {
  -webkit-animation: opac 0.5s forwards;
          animation: opac 0.5s forwards;
}
.entry .item-wrap .item .item-inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-animation: opac 0.4s forwards;
          animation: opac 0.4s forwards;
  animation-direction: reverse;
}
.entry .item-wrap .item .logo {
  max-width: 515px;
  width: 100%;
  margin: 0 auto;
}
.entry .item-wrap .item .title, .entry .item-wrap .item p {
  max-width: 442px;
  margin-left: auto;
  margin-right: auto;
}
.entry .item-wrap .item .title {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.5px;
  margin-top: 30px;
}
.entry .item-wrap .item p {
  font-size: 0.875rem;
  line-height: 1.5;
  margin-top: 15px;
}
.entry .item-wrap .item .enter-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 30px;
  font-size: 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  margin-top: 30px;
  -webkit-transition: border-color 0.5s;
  transition: border-color 0.5s;
}
.entry .item-wrap .item .enter-btn:hover {
  border-color: #fff;
}
.entry .item-wrap .item .enter-btn:hover svg {
  -webkit-animation: btnArrow 1.3s 0.1s infinite;
          animation: btnArrow 1.3s 0.1s infinite;
}
.entry .item-wrap .item .enter-btn .icon {
  margin-left: 30px;
}
.entry .item-wrap .item .enter-btn svg {
  display: block;
}
.entry .footer {
  margin-top: auto;
  text-align: center;
  padding: 0 30px 4.63vh;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
@media only screen and (max-width: 767px) {
  .entry .footer {
    padding-bottom: 30px;
  }
}
.entry .footer .copyright {
  color: rgba(255, 255, 255, 0.5);
}
.entry .footer .language-select {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-top: 20px;
}
.entry .footer .language-select .item {
  padding: 0 10px;
}
.entry .footer .language-select .item a {
  position: relative;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
  width: 120px;
  padding-bottom: 8px;
}
.entry .footer .language-select .item a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-transition: width 0.6s;
  transition: width 0.6s;
}
.entry .footer .language-select .item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-transition: width 0.6s 0.6s;
  transition: width 0.6s 0.6s;
}
.entry .footer .language-select .item a:hover::before {
  width: 100%;
  -webkit-transition: width 0.6s 0.6s;
  transition: width 0.6s 0.6s;
}
.entry .footer .language-select .item a:hover::after {
  width: 0;
  -webkit-transition: width 0.6s;
  transition: width 0.6s;
}
/*# sourceMappingURL=entry.css.map */