@charset "UTF-8";
html {
  font-size: 16px;
  font-family: "suit", "Arita Sans", sans-serif;
  overflow-x: hidden;
}

@media screen and (max-width: 1440px) {
  html {
    font-size: 14px;
  }
}
body {
  overflow-x: hidden;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* Gradient CSS */
section {
  width: 100%;
  min-height: 100vh;
  position: relative;
}

.container {
  width: 100%;
  height: 100%;
  position: relative;
  max-width: 93.75rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1399px) {
  .container {
    max-width: 100%;
  }
}

.wrap {
  max-width: 93.75rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1399px) {
  .wrap {
    max-width: 100%;
    padding: 0 1rem;
  }
}

.mobile-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .mobile-only {
    display: block;
  }
}

/*--- HEADER ---*/
header {
  display: flex;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 8rem;
  z-index: 9999;
  position: fixed;
  transition: all 0.3s ease-out;
  /* Menu */
}
header.on {
  height: 6rem;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 1024px) {
  header.on {
    height: 4rem;
  }
}
@media screen and (max-width: 1024px) {
  header {
    height: 5rem;
  }
}
header h1 {
  width: 20rem;
  display: flex;
  align-items: center;
  margin: 0;
  position: relative;
  z-index: 1;
}
header h1 img {
  width: 15rem;
}
@media screen and (max-width: 1024px) {
  header h1 {
    width: 13rem;
    padding-left: 1rem;
  }
  header h1 img {
    width: 100%;
  }
}
header nav {
  width: 100%;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: end;
}
@media screen and (max-width: 768px) {
  header nav {
    position: absolute;
    top: 0;
  }
}
header nav .nav-li {
  display: flex;
  position: relative;
}
header nav .nav-li li {
  font-size: 1.375rem;
  height: 2.6rem;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  position: relative;
  color: #fff;
}
header nav .nav-li li a {
  position: relative;
  overflow: hidden;
  display: block;
  text-align: center;
  font-weight: 700;
  flex-grow: 1;
  animation-duration: 1s;
  animation-fill-mode: both;
}
header nav .nav-li li a:active {
  animation-name: rubberBand;
}
header nav .nav-li li a:after {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  content: attr(data-hover);
  display: inline;
  text-align: center;
  transition: top 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
header nav .nav-li li a:hover {
  color: #e3cc5c;
}
header nav .nav-li li a:hover:after {
  top: 0;
}
header nav .nav-li li a:hover span {
  color: #e3cc5c;
  transform: translateY(-100%);
}
header nav .nav-li li a span {
  display: block;
  transition: transform 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
header .push-left {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  header .push-left {
    width: calc(100% - 11rem);
    display: flex;
    justify-content: end;
  }
}
header .hamburger {
  background: transparent;
  border: none;
  cursor: pointer;
  display: none;
  outline: none;
  height: 25px;
  position: relative;
  width: 25px;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  header .hamburger {
    display: inline-block;
    margin-right: 1rem;
  }
}
header .hamburger-line {
  height: 2px;
  position: absolute;
  left: 0;
  transition: all 0.2s ease-out;
  width: 100%;
  background: #fff;
}
.hamburger:hover header .hamburger-line {
  background: #777;
}
header .hamburger-line-top {
  top: 3px;
}
.menu-active header .hamburger-line-top {
  top: 50%;
  transform: rotate(45deg) translatey(-50%);
}
@media screen and (max-width: 768px) {
  .menu-active header .hamburger-line-top {
    background: #111;
  }
}
header .hamburger-line-middle {
  top: 50%;
  transform: translatey(-50%);
}
.menu-active header .hamburger-line-middle {
  left: 50%;
  opacity: 0;
  width: 0;
}
header .hamburger-line-bottom {
  bottom: 3px;
}
.menu-active header .hamburger-line-bottom {
  bottom: 50%;
  transform: rotate(-45deg) translatey(50%);
}
@media screen and (max-width: 768px) {
  .menu-active header .hamburger-line-bottom {
    background: #111;
  }
}
header .nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: all 0.25s ease-in;
}
@media screen and (max-width: 768px) {
  header .nav-menu {
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translatey(-100%);
    text-align: center;
    z-index: -1;
    height: 100vh;
  }
  .menu-active header .nav-menu {
    transform: translatey(0%);
    opacity: 1;
    background: #fff;
  }
}
header .nav-menu .menu-item {
  font-size: 1.375rem;
  height: 4rem;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  position: relative;
  color: #fff;
}
@media screen and (max-width: 768px) {
  header .nav-menu .menu-item {
    color: #111;
  }
}
header .nav-menu .menu-item a {
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  font-weight: 700;
  flex-grow: 1;
  animation-duration: 1s;
  animation-fill-mode: both;
}
header .nav-menu .menu-item a:active {
  animation-name: rubberBand;
}
header .nav-menu .menu-item a:after {
  position: absolute;
  top: 100%;
  height: 100%;
  left: 0;
  right: 0;
  content: attr(data-hover);
  display: flex;
  align-items: center;
  text-align: center;
  transition: top 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
header .nav-menu .menu-item a:hover {
  color: #e3cc5c;
}
header .nav-menu .menu-item a:hover:after {
  top: 0%;
}
header .nav-menu .menu-item a:hover span {
  color: #e3cc5c;
  transform: translateY(-100%);
}
header .nav-menu .menu-item a span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  transition: transform 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
header .nav__link:hover + .sub-nav {
  display: block;
}

/*--- FOOTER ---*/
footer {
  background-color: #181818;
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 3rem 0;
  }
}
footer .inner2 {
  width: 93.75rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1499px) {
  footer .inner2 {
    width: 100%;
    flex-direction: column;
    padding: 0 1rem;
  }
}
footer .left address {
  font-size: 1.125rem;
  line-height: 2em;
  color: #e9f4f1;
  letter-spacing: -0.01em;
  opacity: 0.7;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  footer .left address {
    font-size: 1rem;
  }
}
footer .right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  footer .right {
    padding: 3rem 0;
  }
}
footer .right .sns {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
footer .right .sns li a {
  transition: opacity 0.2s;
}
footer .right .sns li a img {
  width: 45px;
}
@media screen and (max-width: 768px) {
  footer .right .sns li a img {
    width: 2rem;
  }
}
footer .right .sns li a:hover {
  opacity: 0.7;
}
footer .right .per_b {
  text-align: right;
  margin-top: 2rem;
}
footer .right .per_b a {
  font-size: 18px;
  letter-spacing: -0.01em;
  color: #e9f4f1;
  opacity: 0.7;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  footer .right .per_b a {
    font-size: 0.875rem;
  }
}
footer .right .per_b p {
  margin-top: 25px;
  font-size: 18px;
  color: #e9f4f1;
  opacity: 0.2;
}
@media screen and (max-width: 768px) {
  footer .right .per_b p {
    font-size: 0.875rem;
    margin-top: 1rem;
  }
}

.search {
  display: flex;
  justify-content: center;
  height: 80px;
  position: relative;
  margin-bottom: 90px;
}
.search .wrap {
  position: relative;
}
.search input {
  width: 500px;
  height: 100%;
  background-color: #F4F4F4;
  border: none;
  font-size: 20px;
  color: #999999;
  padding-left: 30px;
}
.search button {
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
}

.page {
  margin-top: 5rem;
  display: flex;
  justify-content: center;
}
.page ul {
  display: flex;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .page ul {
    gap: 0.5rem;
  }
}
.page ul li {
  width: 3rem;
  height: 3rem;
}
@media screen and (max-width: 768px) {
  .page ul li {
    width: 2rem;
    height: 2rem;
  }
}
.page ul li a {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: #666;
  background-size: 100% 100% !important;
}
@media screen and (max-width: 768px) {
  .page ul li a {
    font-size: 1rem;
  }
}
.page ul li.on a {
  color: #fff;
  background-color: #e3cc5c;
}
.page ul li.first a {
  background: url("../images/page_first.png") center center no-repeat;
}
.page ul li.prev a {
  background: url("../images/page_prev.png") center center no-repeat;
}
.page ul li.next a {
  background: url("../images/page_next.png") center center no-repeat;
}
.page ul li.last a {
  background: url("../images/page_last.png") center center no-repeat;
}

/***************공통****************/
/*-- MAIN --*/
main {
  width: 100%;
}
main .bg-video-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: -1;
  scroll-behavior: smooth;
  --parallax: parallax linear;
}
main .bg-video-wrap:after {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
main video {
  min-width: 100%;
  width: 100%;
  min-height: 100vh;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main .bg-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  opacity: 0.4;
}
@media screen and (max-width: 768px) {
  main .bg-logo {
    width: 15rem;
  }
  main .bg-logo img {
    width: 100%;
  }
}
main .main-text {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
main .main-text .text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 6rem;
  font-weight: 900;
  line-height: 9rem;
  color: #fff;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  main .main-text .text {
    font-size: 3rem;
    line-height: 5rem;
  }
}
main .main-text .text strong {
  display: inline-flex;
  white-space: pre;
}
@media screen and (max-width: 768px) {
  main .main-text .text strong {
    flex-direction: column;
    white-space: inherit;
  }
}
main .main-text .text strong:last-of-type {
  color: #ffdd84;
}
main .main-text .text strong .ani_o:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background: url("../images/cd.png") center center no-repeat;
  background-size: contain;
  filter: drop-shadow(13px 13px 20px rgba(0, 0, 0, 0.6));
  animation: ro 2s ease-in-out infinite;
}
@media screen and (max-width: 768px) {
  main .main-text .text strong .ani_o:after {
    width: 4rem;
    height: 4rem;
  }
}
@keyframes ro {
  0% {
    transform: translate(-50%, -55%);
  }
  50% {
    transform: translate(-50%, -45%);
  }
  100% {
    transform: translate(-50%, -55%);
  }
}
main .main-text .text strong span {
  display: flex;
}
@media screen and (max-width: 768px) {
  main .main-text .text strong span {
    align-items: center;
    justify-content: center;
  }
}
main .main-text .text strong span.ani {
  color: transparent;
  position: relative;
  display: block;
  width: 150px;
}
@media screen and (max-width: 768px) {
  main .main-text .text strong span.ani {
    width: 4rem;
  }
}
main .main-text .stroke-in {
  animation: stroke-in 3s forwards;
}
main .main-text .stroke-out {
  animation: stroke-out 3s forwards;
}
@keyframes stroke-in {
  0% {
    stroke-dasharray: 0 50%;
    stroke-dashoffset: 25%;
    stroke: rgb(255, 255, 255);
    fill: transparent;
    opacity: 1;
  }
  60% {
    stroke-dasharray: 50% 0;
    stroke-dashoffset: -25%;
    stroke-width: 2;
  }
  100% {
    stroke: rgb(255, 255, 255);
    stroke-width: 2;
    opacity: 1;
  }
}
@keyframes stroke-out {
  0% {
    stroke: rgb(255, 255, 255);
    stroke-width: 2;
    opacity: 1;
  }
  60% {
    stroke-dasharray: 50% 0;
    stroke-dashoffset: -25%;
    stroke-width: 2;
  }
  100% {
    stroke-dasharray: 0 50%;
    stroke-dashoffset: 25%;
    stroke: rgb(255, 255, 255);
    fill: transparent;
    opacity: 1;
  }
}

@layer parallax {
  @keyframes parallax {
    from {
      transform: translate(0%, -50%);
    }
    to {
      transform: translate(0%, 50%);
    }
  }
  @supports not (animation-timeline: scroll()) {
    img {
      transform: translate(0%, 0%) !important;
    }
  }
}
.con01 {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #fff;
}
.con01:after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #c5c7c7;
  position: absolute;
  left: 50%;
  top: 0;
  transition: height 2s;
}
@media screen and (max-width: 768px) {
  .con01:after {
    display: none;
  }
}
.con01.on:after {
  height: calc(100% + 30px);
}
.con01 .inner {
  width: 80rem;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .con01 .inner {
    width: 100%;
    flex-direction: column;
  }
}
.con01 .inner .title {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .con01 .inner .title {
    width: 100%;
  }
}
.con01 .inner .title strong {
  position: relative;
  display: block;
  font-weight: 800;
  font-size: 66px;
  line-height: 1.5em;
  display: flex;
  justify-content: center;
  transform: translateY(40px);
  transition: transform 1s, opacity 1s;
  transition-delay: 0.3s;
}
@media screen and (max-width: 768px) {
  .con01 .inner .title strong {
    font-size: 3rem;
    transform: none;
  }
}
.con01 .inner .title strong:before {
  content: "";
  position: absolute;
  z-index: -1;
  background: url("../images/logo-s2.png") no-repeat;
  background-size: contain;
  top: -3rem;
  left: 2rem;
  width: 6rem;
  height: 6rem;
}
.con01 .inner .txt {
  display: flex;
  flex-flow: column;
  gap: 50px;
  margin-top: 150px;
  padding-left: 50px;
  letter-spacing: -0.1em;
}
@media screen and (max-width: 768px) {
  .con01 .inner .txt {
    margin-top: 2rem;
  }
}
.con01 .inner .txt p {
  font-size: 24px;
  color: #383737;
  font-weight: 400;
  line-height: 1.9em;
  transform: translateY(40px);
  transition: transform 1s, opacity 1s;
  transition-delay: 0.5s;
}
@media screen and (max-width: 768px) {
  .con01 .inner .txt p {
    font-size: 1.25rem;
  }
}

.con02 {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  .con02 {
    overflow: hidden;
  }
}
.con02:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 5%, rgb(255, 255, 255) 50%, rgb(0, 0, 0) 95%, rgb(0, 0, 0) 100%);
  z-index: 2;
  mix-blend-mode: multiply;
}
.con02 ul {
  width: 100%;
}
.con02 ul li {
  margin-bottom: 16px;
}
.con02 ul li:last-child {
  margin-bottom: 0;
}
.con02 ul li .track_w {
  position: relative;
  height: 216px;
}
@media screen and (max-width: 768px) {
  .con02 ul li .track_w {
    height: 96px;
  }
}
.con02 ul li .track_w .track {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 100s linear infinite;
  left: 0;
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .con02 ul li .track_w .track {
    overflow: hidden;
    gap: 0.24rem;
  }
}
.con02 ul li .track_w .track img {
  display: block;
  height: 216px;
}
@media screen and (max-width: 768px) {
  .con02 ul li .track_w .track img {
    height: 96px;
  }
}
.con02 ul li .track_w .track2 {
  animation: marquee2 100s linear infinite;
  left: auto;
  right: 0;
}

@keyframes marquee {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes marquee2 {
  from {
    transform: translateX(50%);
  }
  to {
    transform: translateX(100%);
  }
}
.con03 {
  height: 100vh;
}
.con03.bg-w {
  background: #fff;
}
.con03 .m_tit {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 10rem;
}
@media screen and (max-width: 1200px) {
  .con03 .m_tit {
    margin-bottom: 3rem;
  }
}
.con03 .m_tit strong {
  display: block;
  font-size: 4rem;
  line-height: 1.5em;
  font-weight: 800;
}
@media screen and (max-width: 768px) {
  .con03 .m_tit strong {
    font-size: 2rem;
    width: calc(100% - 4rem);
  }
}
@media screen and (max-width: 768px) {
  .con03 .m_tit .go_btn {
    width: 4rem;
  }
}
.con03 .m_tit .go_btn a {
  display: flex;
  font-size: 26px;
  color: #fff;
  margin-right: 20px;
  gap: 0 10px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .con03 .m_tit .go_btn a {
    margin-right: 0;
  }
}
.con03 .m_tit .go_btn a:hover .pl {
  background-color: #e3cc5c;
}
.con03 .m_tit .go_btn a:hover .pl .plus {
  transition: transform 0.4s;
  transform: rotate(90deg);
}
.con03 .m_tit .go_btn a .pl {
  display: block;
  width: 60px;
  height: 60px;
  background-color: #e3cc5c;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s;
}
.con03 .m_tit .go_btn a .pl .plus {
  width: 30px;
  height: 30px;
  position: relative;
}
.con03 .m_tit .go_btn a .pl .plus span {
  background-color: #fff;
  display: block;
  position: absolute;
}
.con03 .m_tit .go_btn a .pl .plus span:nth-child(1) {
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.con03 .m_tit .go_btn a .pl .plus span:nth-child(2) {
  width: 4px;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
}
.con03 .list ul {
  gap: 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 768px) {
  .con03 .list ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
.con03 .list ul li {
  width: 100%;
}
.con03 .list ul li a {
  display: block;
  background-color: #181818;
  transition: background 0.4s;
  height: 100%;
}
.con03 .list ul li a .img {
  position: relative;
  aspect-ratio: 1/0.65;
  overflow: hidden;
}
.con03 .list ul li a .img .hover {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e3cc5c;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.4s;
  opacity: 0;
  z-index: 1;
}
.con03 .list ul li a .img .hover .plus {
  width: 92px;
  height: 92px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .con03 .list ul li a .img .hover .plus {
    width: 3rem;
    height: 3rem;
  }
}
.con03 .list ul li a .img .hover .plus span {
  background-color: #fff;
  display: block;
  position: absolute;
}
.con03 .list ul li a .img .hover .plus span:nth-child(1) {
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.con03 .list ul li a .img .hover .plus span:nth-child(2) {
  width: 4px;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
}
.con03 .list ul li a .img img {
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}
.con03 .list ul li a .txt {
  padding: 1.5rem;
}
@media screen and (max-width: 768px) {
  .con03 .list ul li a .txt {
    padding: 1rem;
  }
}
.con03 .list ul li a .txt strong {
  display: block;
  font-size: 22px;
  line-height: 1.5em;
  color: #fff;
  font-weight: 800;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 768px) {
  .con03 .list ul li a .txt strong {
    font-size: 1rem;
  }
}
.con03 .list ul li a .txt .more {
  margin-top: 50px;
  display: flex;
  flex-flow: row-reverse;
}
@media screen and (max-width: 768px) {
  .con03 .list ul li a .txt .more {
    margin-top: 1rem;
  }
}
.con03 .list ul li a .txt .more p {
  font-size: 1.5rem;
  color: #999;
}
@media screen and (max-width: 768px) {
  .con03 .list ul li a .txt .more p {
    font-size: 0.875rem;
  }
}
.con03 .list ul li a:hover {
  background-color: #e3cc5c;
}
.con03 .list ul li a:hover .img .hover {
  opacity: 1;
}
.con03 .list ul li a:hover .img .hover .plus {
  transform: rotate(90deg);
  transition: transform 0.4s;
}
.con03 .list ul li a:hover .img img {
  filter: grayscale(100%);
}

/*-- 서브페이지 --*/
.sub .sub-top {
  width: 100%;
  height: 30rem;
  padding-top: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 4rem;
  font-weight: 900;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sub .sub-top {
    height: 20rem;
    font-size: 3rem;
    padding-top: 3rem;
  }
}
.sub .sub-top.sub-bg1 {
  background: #181818;
  background: url("../images/sub-bg.png") no-repeat top center;
  background-size: cover;
}
.sub .sub-top.sub-bg2 {
  background: #181818;
  background: url("../images/sub-bg2.jpg") no-repeat center center;
  background-size: cover;
}
.sub .sub-top.sub-bg3 {
  background: #181818;
  background: url("../images/sub-bg3.jpg") no-repeat center center;
  background-size: cover;
}
.sub .sub-top.sub-bg4 {
  background: #181818;
  background: url("../images/sub-bg4.jpg") no-repeat center center;
  background-size: cover;
}
.sub .sub-top:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
}
.sub .sub-top span {
  position: relative;
  z-index: 1;
}

.sub-container {
  background: #fff;
  /*-- ABOUT --*/
  /*-- HISTORY --*/
  /*-- 조직도 --*/
  /*-- PARTNER --*/
  /*-- BUSINESS --*/
  /*--- NEWS ---*/
  /* CONTACT */
}
.sub-container.bg-b {
  background: #111;
  color: #fff;
  position: relative;
  z-index: 1;
}
.sub-container.bg-g {
  background: #f3f5f6;
  position: relative;
  z-index: 1;
}
.sub-container .sub-nav {
  background: #222;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sub-container .sub-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.sub-container .sub-nav ul li {
  display: flex;
  align-items: center;
  padding: 0 3rem;
  height: 100%;
  font-size: 1.25rem;
  color: #777;
  font-weight: 800;
}
@media screen and (max-width: 768px) {
  .sub-container .sub-nav ul li {
    font-size: 0.875rem;
    padding: 0 0.875rem;
  }
}
.sub-container .sub-nav ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .sub-container .sub-nav ul li a span {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
.sub-container .sub-nav ul li a.on {
  position: relative;
  color: #fff;
}
.sub-container .sub-nav ul li a.on:after {
  content: "";
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #e3cc5c;
}
.sub-container .sub-nav ul li a:hover {
  position: relative;
  color: #fff;
}
.sub-container .sub-nav ul li a:hover:after {
  content: "";
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #e3cc5c;
}
.sub-container.sub-about {
  margin-bottom: 30rem;
}
@media screen and (max-width: 768px) {
  .sub-container.sub-about {
    margin-bottom: 20rem;
  }
}
.sub-container .con-about-logo {
  padding: 5rem 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sub-container .con-about-logo img {
  width: 50rem;
}
@media screen and (max-width: 768px) {
  .sub-container .con-about-logo img {
    width: 80%;
  }
}
.sub-container .con-about {
  padding: 3rem 0 10rem;
  font-size: 1.25rem;
  line-height: 1.8;
  display: flex;
  align-items: center;
  word-break: keep-all;
  justify-content: center;
  gap: 3rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .sub-container .con-about {
    padding: 1rem 0 5rem;
    font-size: 1rem;
  }
}
.sub-container .con-about span img {
  width: 100%;
}
.sub-container .history-list {
  padding: 5rem 0;
  width: 55rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .sub-container .history-list {
    width: 100%;
  }
}
.sub-container .history-list .sm-columns {
  grid-template-columns: 1fr 2fr;
  padding-bottom: 4rem;
  display: grid;
}
.sub-container .history-list .sm-columns:last-child .column + .column::before {
  display: none;
}
.sub-container .history-list .sm-columns:hover .column h1 {
  color: #e3cc5c;
}
.sub-container .history-list .sm-columns .column {
  padding: 0;
  position: relative;
}
.sub-container .history-list .sm-columns .column h1 {
  color: #ddd;
  font-weight: 900;
  transition: color 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  font-size: 5rem;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .sub-container .history-list .sm-columns .column h1 {
    font-size: 3.5rem;
  }
}
.sub-container .history-list .sm-columns .column h4 {
  padding-top: 1.8rem;
  position: relative;
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  .sub-container .history-list .sm-columns .column h4 {
    font-size: 1rem;
    padding-top: 1rem;
    word-break: keep-all;
    line-height: 1.5rem;
  }
}
.sub-container .history-list .sm-columns .column h4:before {
  background: #fff;
  border: 2px solid #ccc;
  border-radius: 50%;
  content: "";
  width: 22px;
  height: 22px;
  position: absolute;
  top: 26px;
  left: -54px;
}
@media screen and (max-width: 768px) {
  .sub-container .history-list .sm-columns .column h4:before {
    top: 1rem;
    left: -2rem;
    width: 1.25rem;
    height: 1.25rem;
  }
}
.sub-container .history-list .sm-columns .column + .column {
  position: relative;
}
.sub-container .history-list .sm-columns .column + .column:before {
  background-color: #ccc;
  content: "";
  width: 1.5px;
  height: calc(100% + 44px);
  position: absolute;
  top: 46px;
  left: -42px;
}
@media screen and (max-width: 768px) {
  .sub-container .history-list .sm-columns .column + .column:before {
    top: 2rem;
    left: -1.25rem;
  }
}
.sub-container .organization {
  padding: 5rem 0;
}
.sub-container .organization .org-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sub-container .organization .org-container .group {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.sub-container .organization .org-container .group .node2 {
  background: #13213c;
  border: none;
  color: #fff;
  border-radius: 12px;
  padding: 12px 24px;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 20rem;
  font-size: 1.25rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  position: relative;
}
.sub-container .organization .org-container .group .connector {
  position: absolute;
  top: 4rem;
  left: 50%;
  width: 2px;
  height: 1.5rem;
  background-color: #444;
  transform: translateX(-50%);
}
.sub-container .organization .org-container .group .connector.connector2 {
  height: 4rem;
}
.sub-container .organization .org-container .group .sublevel {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 3rem;
  position: relative;
}
.sub-container .organization .org-container .group .sublevel:before {
  content: "";
  position: absolute;
  width: 53%;
  height: 2px;
  background: #444;
  top: -1.5rem;
}
@media screen and (max-width: 768px) {
  .sub-container .organization .org-container .group .sublevel:before {
    background: transparent;
  }
}
@media screen and (max-width: 768px) {
  .sub-container .organization .org-container .group .sublevel {
    margin-top: 2rem;
  }
}
.sub-container .organization .org-container .group .sublevel .node {
  background: #fff;
  border: 2px solid #444;
  border-radius: 12px;
  padding: 12px 24px;
  min-width: 10rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  position: relative;
}
.sub-container .organization .org-container .group .sublevel .node:before {
  content: "";
  position: absolute;
  height: 1.5rem;
  top: -1.5rem;
  background: #444;
  width: 2px;
  transform: translateX(-50%);
  left: 50%;
}
.sub-container .organization .org-container .level {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 3rem;
  position: relative;
}
@media (max-width: 768px) {
  .sub-container .level, .sub-container .sublevel {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .sub-container .horizontal-line {
    display: none;
  }
}
.sub-container .partner {
  width: 100%;
  padding: 5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #000;
}
.sub-container .partner ul {
  display: grid;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 768px) {
  .sub-container .partner ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
.sub-container .partner ul li {
  background: #181818;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sub-container .partner ul li img {
  max-width: 6rem;
  filter: brightness(0) invert(1);
  opacity: 0.4;
}
.sub-container .partner ul li img:hover {
  opacity: 1;
}
.sub-container .business {
  padding: 5rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 2rem;
}
@media screen and (max-width: 768px) {
  .sub-container .business {
    grid-template-columns: repeat(1, 1fr);
  }
}
.sub-container .business .box {
  background: #fff;
  position: relative;
}
.sub-container .business .box .image {
  height: 30rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sub-container .business .box .image {
    height: 16rem;
  }
}
.sub-container .business .box .image img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sub-container .business .box .text {
  padding: 3rem 2rem;
}
@media screen and (max-width: 768px) {
  .sub-container .business .box .text {
    padding: 2rem 1rem;
  }
}
.sub-container .business .box .text h2 {
  font-size: 1.5rem;
  font-weight: 800;
}
.sub-container .business .box .text p {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: #555;
  word-break: keep-all;
  line-height: 1.5;
}
.sub-container .news {
  padding: 5rem 0;
}
.sub-container .news .con03 {
  min-height: 100%;
  height: 100%;
}
.sub-container .contact-info {
  display: flex;
  height: 6.25rem;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #222222;
}
.sub-container .contact-info .contact-info-wrap {
  width: 93.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .sub-container .contact-info .contact-info-wrap {
    width: 100%;
    flex-direction: column;
  }
}
.sub-container .contact-info .contact-info-wrap strong {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  width: 50%;
  gap: 0 10px;
}
@media screen and (max-width: 768px) {
  .sub-container .contact-info .contact-info-wrap strong {
    font-size: 1rem;
  }
}
.sub-container .contact-info .contact-info-wrap strong svg {
  display: block;
}
.sub-container .contact-info .contact-info-wrap strong:nth-child(1) {
  border-right: 1px solid #222222;
}
@media screen and (max-width: 768px) {
  .sub-container .contact-info .contact-info-wrap strong:nth-child(1) {
    border-right: none;
  }
}
.sub-container .contact-form {
  padding-bottom: 10rem;
}
.sub-container .contact-form form {
  margin-top: 50px;
  display: flex;
  flex-flow: column;
  gap: 3rem;
}
.sub-container .contact-form form ul {
  display: flex;
  gap: 3rem 7.5rem;
  flex-flow: wrap;
}
@media screen and (max-width: 768px) {
  .sub-container .contact-form form ul {
    flex-direction: column;
  }
}
.sub-container .contact-form form ul li {
  width: calc(50% - 60px);
}
@media screen and (max-width: 768px) {
  .sub-container .contact-form form ul li {
    width: 100%;
  }
}
.sub-container .contact-form form .f_box {
  display: flex;
  flex-flow: column;
  gap: 1.25rem;
}
.sub-container .contact-form form .f_box label {
  font-size: 1.25rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .sub-container .contact-form form .f_box label {
    font-size: 1rem;
  }
}
.sub-container .contact-form form .f_box label span {
  color: #e3cc5c;
  display: inline-block;
  margin-left: 3px;
}
.sub-container .contact-form form .f_box input {
  width: 100%;
  height: 3.75rem;
  padding-left: 30px;
  font-size: 1rem;
  border: 1px solid #282828;
  background-color: #282828;
  color: #fff;
  transition: border 0.3s, background-color 0.3s;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .sub-container .contact-form form .f_box input {
    padding-left: 1rem;
  }
}
.sub-container .contact-form form .f_box input:focus {
  background-color: #222;
  color: #fff;
  border: none;
  outline: none;
}
.sub-container .contact-form form .f_box textarea {
  width: 100%;
  height: 18.75rem;
  padding: 30px;
  font-size: 1rem;
  border: 1px solid #282828;
  background-color: #282828;
  transition: border 0.3s, background-color 0.3s;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .sub-container .contact-form form .f_box textarea {
    padding: 1rem;
    height: 12.5rem;
  }
}
.sub-container .contact-form form .f_box textarea:focus {
  outline: none;
  background-color: #222;
}
.sub-container .contact-form form .agree {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}
.sub-container .contact-form form .agree input {
  width: 30px;
  height: 30px;
  position: relative;
}
.sub-container .contact-form form .agree input:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url("../images/chk.jpg") center center no-repeat;
}
.sub-container .contact-form form .agree input:checked:after {
  background: url("../images//sub/chk2.jpg") center center no-repeat;
}
.sub-container .contact-form form .agree p {
  font-size: 1rem;
  font-weight: 600;
}
.sub-container .contact-form form .go_btn {
  display: flex;
  justify-content: center;
}
.sub-container .contact-form form .go_btn a {
  width: 25rem;
  height: 5rem;
  background-color: #e3cc5c;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sub-container .contact-form form .go_btn a strong {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}
.sub-container .contact-form form .go_btn a strong svg {
  width: 27px;
  height: auto;
}
.sub-container .contact-form form .go_btn a:after {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  background-color: #e3cc5c;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
  transition: width 0.5s;
}
.sub-container .contact-form form .go_btn a:hover:after {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .sub-container .map iframe {
    height: 400px;
  }
}

.about-bg {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url("../images/about-bg.png") no-repeat center bottom/cover;
  z-index: -1;
  pointer-events: none;
}

/*메인팝업*/
.popup {
  width: 80rem;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}
@media screen and (max-width: 1024px) {
  .popup {
    width: 100%;
  }
}
.popup .popup-banner {
  position: absolute;
  top: 17rem;
  left: 0;
  width: 500px;
  max-width: 500px;
  background-color: #fff;
  text-align: center;
  padding: 0;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1000;
}
@media screen and (max-width: 1024px) {
  .popup .popup-banner {
    width: 90%;
  }
}
.popup .popup-banner img {
  max-width: 100%;
  height: auto;
}
.popup .popup-banner .popup-buttons {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.popup .popup-banner .popup-buttons button {
  flex: 1;
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  padding: 1rem 0;
}
.popup .popup-banner .popup-buttons button:first-of-type {
  border-right: 1px solid #e9e9e9;
}

/*메인팝업*//*# sourceMappingURL=style.css.map */