@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap');
/* NotoSans 쓸 경우 주석 풀고, body 적용 */



* {
  word-break: keep-all !important;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans KR", "Noto Emoji", "Segoe UI Emoji", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
}

/* 초기화 */
html {
  overflow-y: auto !important;
}

html,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
img {
  margin: 0;
  padding: 0;
  border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1em;
  font-family: inherit !important;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

legend {
  position: absolute;
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
  text-indent: -9999em;
  overflow: hidden;
}

label,
input,
button,
select,
img {
  vertical-align: middle;
  font-size: 1em;
}

input,
button {
  margin: 0;
  padding: 0;
  font-family: inherit !important;
}

input[type="submit"] {
  cursor: pointer;
}

button {
  cursor: pointer;
}

textarea,
select {
  font-family: inherit !important;
}

select {
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
  word-break: break-all;
}

pre {
  overflow-x: scroll;
  font-size: 1.1em;
}

a {
  color: inherit;
  text-decoration: none;
}

/*head.sub.php로 셋팅하는 값 = full-h, full-w*/
:root {
  --primary: #222A68;
  --seconday: #666;
  --ca-color: #333;
  --full-h: calc(var(--vh, 1vh) * 100);
  --full-w: calc(var(--vw, 1vw) * 100);
  --header-h: 72px;
  --lnb-h: 52px;
}

.overlay {
  position: relative;
}

.overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 0;
}


/* 아이콘 있는 경우 header.active * {color: #000 !important;} 해주시면 됩니다. */

/* 애니메이션 관련 */


/* 버튼 */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary);
  color: #fff;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-primary:hover,
.btn-primary:focus {
  background: #fff;
  color: var(--primary);
  outline: 1px solid var(--primary);
  box-shadow: 0 2px 8px rgba(96, 165, 250, 0.15);
}

.btn-primary:active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 1px 4px rgba(96, 165, 250, 0.1);
}

.btn-secondary {
  background-color: var(--seconday);
  color: #fff;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: #fff;
  color: var(--seconday);
  outline: 1px solid var(--seconday);
  box-shadow: 0 2px 8px rgba(156, 163, 175, 0.15);
}

.btn-secondary:active {
  background: var(--seconday);
  color: #fff;
  box-shadow: 0 1px 4px rgba(156, 163, 175, 0.1);
}

.btn-primary-outline {
  background-color: transparent;
  color: var(--primary);
  outline: 1px solid var(--primary);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-primary-outline:hover,
.btn-primary-outline:focus {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(96, 165, 250, 0.15);
  outline: none;
}

.btn-primary-outline:active {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 1px 4px rgba(96, 165, 250, 0.1);
}

.btn-secondary-outline {
  background-color: transparent;
  color: var(--seconday);
  outline: 1px solid var(--seconday);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-secondary-outline:hover,
.btn-secondary-outline:focus {
  background: var(--seconday);
  color: #fff;
  box-shadow: 0 2px 8px rgba(156, 163, 175, 0.15);
  outline: none;
}

.btn-secondary-outline:active {
  background: #fff;
  color: var(--seconday);
  box-shadow: 0 1px 4px rgba(156, 163, 175, 0.1);
}



.button:disabled,
.btn-primary:disabled,
.btn-secondary:disabled,
.btn-primary-outline:disabled,
.btn-secondary-outline:disabled {
  background: #e5e7eb !important;
  /* Tailwind gray-200 */
  color: #b0b0b0 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
  opacity: 0.6;
  pointer-events: none;
  filter: grayscale(0.2);
}

.sit_icon {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
}

.editor-content img {
  display: initial;
}

#sev_himg * {
  font-family: "Pretendard", "Noto Emoji", "Segoe UI Emoji", sans-serif !important;
}

.sev_admin {
  display: none;
}


#header {

  height: var(--header-h);
  transition: all 0.3s ease;
}

#header #logo {
  background-image: url(../img/w_logo.png);
}

#header.active {
  color: #000;
}

#header.active #logo {
  background-image: url(../img/logo.png);
}

#header.active .header-bg {
  opacity: 1;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);


}

.header-bg.active {
  height: calc(var(--header-h) + var(--lnb-h));
}

.header-bg.active .header-bg-inner {
  opacity: 1;
  width: 100%;

}

#toggler span {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  max-height: 5px;
  transition: all ease 200ms;
  z-index: 100;

}

#toggler .first {
  top: 0%;
  transition: transform 100ms;
}

#toggler .second {
  top: 50%;
}

#toggler .third {
  top: 100%;
}

#toggler.active .first {
  transform: translateY(13px) translateX(0) rotate(45deg);
  transition: all ease 200ms;
}

#toggler.active .second {
  opacity: 0;
  transition: all ease 200ms;
}

#toggler.active .third {
  transform: translateY(-11px) translateX(0) rotate(-45deg);
  transition: all ease 200ms;
}

#header.active #toggler span {
  background-color: #000;
}


#header.active .lang-icon {
  fill: #000;
}

#toggler.active span {
  background-color: #fff !important;
}

#header.toggler-active #logo {
  background-image: url(../img/w_logo.png) !important;
}

.main-nav {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 0;
  height: var(--full-h);
  width: 100%;
  padding-top: var(--header-h);
  opacity: 0;
  transform: scale(0.85);
  transition: 0.5s;
  visibility: hidden;
  background-image: url(../img/mobile_bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
}

.main-nav.active {
  visibility: visible;
  z-index: 20;
  transform: scale(1);
  opacity: 1;
  transition: 0.5s;
}

.main-nav>ul>li>a {

  color: #fff;
  font-weight: 300;
  display: block;
  transition: 0.5s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-weight: 500;
}



.main-nav>ul {
  overflow: hidden;
}

.main-nav>ul>li {
  opacity: 0;
  transform: translateX(-100px)
}

.main-nav.active>ul>li {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.5s ease;
}

.main-nav.active>ul>li:nth-child(1) {
  transition-delay: 0.1s;
}

.main-nav.active>ul>li:nth-child(2) {
  transition-delay: 0.2s;
}

.main-nav.active>ul>li:nth-child(3) {
  transition-delay: 0.3s;
}

.main-nav.active>ul>li:nth-child(4) {
  transition-delay: 0.4s;
}

.main-nav.active>ul>li:nth-child(5) {
  transition-delay: 0.5s;
}

/* SPlitType */
@keyframes slide-up2 {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }

  30% {
    transform: translateX(40px);
    opacity: 1;
  }
}

.char {
  display: inline-block;
  animation: slide-up2 1.2s cubic-bezier(0.5, 0, 0.5, 1) both;
  animation-delay: calc(100ms * var(--char-index));
}

/* 메인 비주얼 스와이퍼 - Swiper 기본 스타일 오버라이드 (최소한만) */
.main-visual-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
  opacity: 1;
  margin: 0 4px;
  height: 12px;
  transition: all 0.3s ease;
}

.main-visual-swiper .swiper-pagination-bullet-active {
  background: #fff;
  width: 32px;
  border-radius: 6px;
}

/* 핵심 가치 카드 그라데이션 */
.value-card-gradient {
  background: linear-gradient(to right, #242d6e, #C2C2C2);
}

.about-img.active .about-img__cover {
  width: 101%;
  opacity: 1;
  animation: about-img-reveal 1.2s ease 0.2s forwards;
  z-index: 20;
  animation-fill-mode: forwards;
}

@keyframes about-img-reveal {
  0% {
    width: 101%;
    opacity: 1;
  }

  99% {
    width: 0%;
    opacity: 1;
  }

  100% {
    width: 0%;
    opacity: 0;
  }
}