@charset "UTF-8";

@font-face {
    font-family: 'WantedSansVariable';
    src: url('../fonts/WantedSansVariable.ttf') format('ttf');
    font-weight: 100 900;
    font-style: normal;
}

#wrap {
  position: relative;
  min-width: 340px;
  font-size: 16px;
  font-weight: 400;
  font-family: "WantedSansVariable",sans-serif;
  color: var(--black-color);
}

.inner {
  position: relative;
  width: 100%;
  max-width: 1920px;
  height: 100%;
  padding: 0 200px;
  margin: 0 auto;
}

@media (max-width:1600px) {
  .inner {
    padding: 0 25px;
  }
}

.notScroll {
  overflow: hidden;
  width: 100%;
  height: 100%;
  touch-action:none;
}

/* color */
:root {
  --key-color: #F6861C;
  --red-color: #E82212;
  --blue-color: #303FE2;
  --black-color: #0A0406;
  --white-color: #F5F5F5;
  --gray1: #EEEFF2;
  --gray2: #E5E8EE;
  --gray3: #CAD1DD;
  --gray4: #9CA5B2;
  --gray5: #6C7888;
  --gray6: #515861;
  --gray7: #1A1F25;
}

.bold {font-weight: 700;}
.thib {font-weight: 200;}

/* PC부터 작업 */

/* PC에서는 안보이게 */
.notPC {display: none;}
.notM {display: block;}

/* 태블릿부터 안보이게 */
@media (max-width: 1024px) {
  .notPC {display: block;}
  .notM {display: none;}
}

/* 초기 상태 */
.scroll-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
/* 애니메이션 실행 후 */
.scroll-fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------- header ---------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100px;
  z-index: 99;
}
header.black-bg {
  color: var(--white-color);
  background-color: rgba(0, 2, 6,.9);
}
header.white-bg {
  color: var(--black-color);
  background-color: rgba(255,255,255,.9);
  border-bottom: 1px solid var(--black-color);
}

header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 0 120px;
  z-index: 1;
}
header .logo {
  font-size: 36px;
  font-weight: 700;
  white-space: nowrap;
}
header .logo a {}
header .logo span {
  margin-left: 5px;
  font-size: 22px;
  font-weight: 400;
}
header .logo img {
  width: 180px;
  vertical-align: inherit;
}
header.white-bg .logo img {
  filter: brightness(0.1);
}

header .gnb {}
header .gnb .d1 {
  display: flex;
}
header .gnb .d1 > li {
  position: relative;
  width: 160px;
  text-align: center;
}
header .gnb .d1tit {
  line-height: 100px;
  font-size: 18px;
}
/* 250902 수정 */
header .gnb .d1tit::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 0;
  height: 4px;
  background-color: var(--white-color);
  transition: all 0.1s;
}
/* 250902 수정 */
header.black-bg .gnb .d1tit::before {
  background-color: var(--white-color);
}
/* 250902 수정 */
header.white-bg .gnb .d1tit::before {
  background-color: var(--black-color);
}
/* 250902 수정 */
header .gnb li.active .d1tit::before {
  width: 80%;
  transition: all 0.2s;
}
header .gnb .d1tit::after {
  content: "attr(title)";
  font-weight: 700;
  display: block;
  height: 0px;
  visibility: hidden;
}
header .gnb .d1 > li:hover .d1tit {
  font-weight: 700;
  letter-spacing: -0.6px;
}
/* 250902 수정 */
header .gnb .d2-wrap {
  display: none;
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: auto;
  padding: 0 120px;
}
header.black-bg .gnb .d2-wrap {
  background-color: rgba(0, 2, 6,.9);
  border-top: 1px solid var(--white-color);
}
header.white-bg .gnb .d2-wrap {
  background-color: rgba(255,255,255,.9);
  border-bottom: 1px solid var(--black-color);
}
header .gnb .d2-container {
  display: flex;
  margin: 0 auto;
}
header .gnb .d2 {
  width: 16.666%;
  padding: 0 10px 30px;
  text-align: center;
  border-right: 1px solid var(--white-color);
}
header .gnb .d2:first-child {
  border-left: 1px solid var(--white-color);
}
header.white-bg .gnb .d2 {
  border-color: var(--black-color);
}
header .gnb li:first-child .d2 {
  border-left: 1px solid var(--white-color);
}
header.white-bg .gnb li:first-child .d2 {
  border-color: var(--black-color);
}
header.black-bg .gnb li:hover .d2 {
  background-color: rgba(10,4,6,.8);
}
header.white-bg .gnb li:hover .d2 {
  background-color: rgba(255,255,255,.8);
}
header .gnb .d2 li {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 150%;
  word-break: keep-all;
}
header .gnb .d2 li:first-child {
  margin-top: 30px;
}
header .gnb .d2 li:last-child {
  margin-bottom: 0;
}
header .gnb .d2 li:hover {
  font-weight: 700;
  letter-spacing: -0.2px;
}
header .gnb .d2 a {}

header .util {
  display: flex;
  align-items: center;
}
header .util .log {
  display: flex;
  height: 100px;
  padding: 0 10px;
  border-right: 1px solid var(--white-color);
  border-left: 1px solid var(--white-color);
}
header.white-bg .util .log {
  border-color: var(--black-color);
}
header .util .log a {
  line-height: 100px;
  text-align: center;
  font-size: 14px;
}
header .util .log a:hover {
  font-weight: 700;
}
header .util .log a::after {
  content: "attr(title)";
  font-weight: 700;
  display: block;
  height: 0px;
  visibility: hidden;
}

header .util .lang {
  position: relative;
  height: 100px;
  padding: 0 20px;
  font-size: 14px;
  border-right: 1px solid var(--white-color);
}
header.white-bg .util .lang {
  border-color: var(--black-color);
}
header .util .lang button {
  display: flex;
  align-items: center;
  height: 100px;
}
header .util .lang button img {
  width: 10px;
  margin-left: 0.8vw;
  transition: all 0.2s;
}
header .util .lang button.open img {
  transform: rotate(180deg);
}
header .util .lang .langList {
  display: none;
  position: absolute;
  top: 100%;
  left: -1px;
  width: calc(100% + 2px);
  padding: 15px 0;
  text-align: center;
  background-color: #0A0406;
  border-top: 1px solid var(--white-color);
}
header.white-bg .util .lang .langList {
  background-color: #fff;
  border: 1px solid var(--black-color);
  border-top: none;
}
header .util .lang .langList li {
  margin-bottom: 15px;
  cursor: pointer;
}
header .util .lang .langList li:hover {
  font-weight: 700;
}
header .util .lang .langList li:last-child {
  margin-bottom: 0;
}

header .btnM {display: none;}

#sideM {display: none;}

@media (max-width:1620px) {
  header .inner {padding: 0 40px;}
  header .gnb .d1 > li {
    width: 150px;
  }
  header .gnb .d2-wrap {
    padding: 0 40px;
  }
}

@media (max-width:1380px) {
  header .logo {font-size: 30px;}
  header .logo span {font-size: 18px;}
  header .logo img {width: 160px;}
  header .gnb .d1 > li {width: 130px;}
  header .gnb .d1tit {
    font-size: 16px;
  }
  header .gnb .d2-wrap {
    padding: 0;
  }
  header .gnb .d2:first-child {
    border-left: none;
  }
  header .gnb .d2:last-child {
    border-right: none;
  }
  header .gnb .d2 li {font-size: 14px;}

  header .util .log {
    flex-direction: column;
    justify-content: center;
  }
  header .util .log a {
    margin-bottom: 10px;
    line-height: 130%;
  }
  header .util .log a:last-child {
    margin-bottom: 0;
  }

  header .util .lang button {
    flex-direction: column;
    justify-content: center;
  }
  header .util .lang button img {
    margin-left: 0;
    margin-top: 10px;
  }
}

@media (max-width:1120px) {
  header .inner {padding: 0 25px;}
  header .logo img {width: 140px;}
  header .gnb {display: none;} 
  header .util {display: none;}
  
  header .btnM {
    display: block;
    cursor: pointer;
  }
  header .btnM img {
    width: 40px;
  }
  header.black-bg .btnM .hBlack  {display: block;}
  header.white-bg .btnM .hWhite  {display: block;}

  #sideM {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    overflow-y: auto;
    z-index: 100;
    transition: all 0.3s;
  }
  #sideM.open {right: 0;}
  #sideM .side-header {
    position: relative;
    display: flex;
    align-items: center;
    height: 72px;
    padding: 0 25px;
    color: var(--white-color);
    background-color: var(--black-color);
  }
  #sideM .side-header > div {
    display: flex;
    align-items: center;
    height: 72px;
    padding-right: 20px;
    font-size: 14px;
    border-right: 1px solid var(--white-color);
  }
  #sideM .side-header .m-lang {
    padding-left: 20px;
  }
  #sideM .side-header a {}
  #sideM .side-header span {
    width: 2px;
    height: 2px;
    margin: 0 15px;
    background-color: var(--white-color);
  }
  #sideM .side-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  #sideM .side-close img {
    width: 36px;
  }

  #sideM .m-gnb {
    margin-top: 40px;
  }
  #sideM .m-gnb .d1 {}
  #sideM .m-gnb .d1 > li {
    padding: 0 25px;
    border-top: 1px solid var(--gray2);
  }
  #sideM .m-gnb .d1 > li:last-child {
    border-bottom: 1px solid var(--gray2);
  }
  #sideM .m-gnb .d1tit {
    position: relative;
    display: block;
    width: 100%;
    height: 72px;
    line-height: 72px;
    font-size: 20px;
  }
  #sideM .m-gnb .d1tit img {
    position: absolute;
    top: 50%;
    right: 0;
    width: 10px;
    transform: translateY(-50%);
    transition: all 0.2s;
  }
  #sideM .m-gnb .d1tit.open img {
    transform: translateY(-50%) rotate(180deg);
  }
  #sideM .m-gnb .d2 {
    display: none;
    margin: 0 -25px;
    padding: 20px 25px;
    border-top: 1px solid var(--gray1);
    overflow: hidden;
  }
  #sideM .m-gnb .d2 li {
    margin-bottom: 20px;
  }
  #sideM .m-gnb .d2 li:last-child {
    margin-bottom: 0;
  }
  #sideM .m-gnb .d2 a {}
}

@media (max-width:1024px) {
  header {height: 72px;}
}

/* ---------------- container ---------------- */
#container {
  padding-top: 100px;
}

@media (max-width:1024px) {
  #container {
    padding-top: 72px;
  }
}

/* ---------------- footer ---------------- */
footer {
  margin-top: 140px;
  padding: 40px 0;
  color: var(--white-color);
  font-size: 13px;
  line-height: 140%;
  background-color: var(--black-color);
}
footer .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .f-left {
  display: flex;
  align-items: center;
}
footer .f-logo {
  margin-right: 40px;
}
footer .f-logo img {
  width: 160px;
}
footer .f-cont {}
footer .privacyNsns {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
footer .privacyNsns li {
  margin-right: 15px;
  font-size: 13px;
}
footer .privacyNsns li a {}
footer .privacyNsns .sns {}
footer .privacyNsns .sns img {
  width: 20px;
}

footer .company {}
footer .company > * {
  line-height: 26px;
}
footer .address {}
footer .company-info {
  display: flex;
}
footer .company-info > div {}
footer .company-info > div::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 10px;
  margin: 0 10px 0 8px;
  background-color: var(--gray6);
}
footer .company-info > div:last-child::after {
  display: none;
}
footer .company-info span {
  margin-right: 6px;
}
footer .company-info a {}
footer .copyright {
  margin-top: 40px;
  margin-bottom: 0;
  font-size: 13px;
  opacity: .6;
}

footer .f-right {
  display: flex;
  flex-direction: row-reverse;
  text-align: right;
}
footer .family-cont {
  margin-left: 30px;
}
footer .family-cont .tit {
  margin-bottom: 10px;
  font-weight: 700;
}
footer .family-cont .links {}
footer .family-cont .links a {
  display: block;
  margin-bottom: 6px;
}

@media (max-width:1600px) {
  footer .inner {padding: 0 25px;}
}

@media (max-width:1200px) {
  footer {
    margin-top: 120px;
    font-size: 13px;
  }
  footer .inner {
    flex-direction: column;
  }
  footer .f-left {
    flex-direction: column;
    margin-bottom: 40px;
  }
  footer .f-logo {
    margin-right: 0;
    margin-bottom: 30px;
  }
  footer .f-cont {
    text-align: center;
  }
  footer .privacyNsns {
    justify-content: center;
  }
  footer .privacyNsns li {
    font-size: 12px;
  }
  footer .company > * {
    line-height: 24px;
  }
  footer .company-info {
    justify-content: center;
  }
  footer .copyright {
    font-size: 12px;
  }
  footer .f-right {
    text-align: center;
  }
  footer .family-cont {
    margin: 0 30px;
  }
  footer .family-cont .links a {
    margin-bottom: 4px;
  }
}

@media (max-width:768px) {
  footer {
    margin-top: 100px;
  }
  footer .f-left {
    margin-bottom: 20px;
  }
  footer .f-logo img {
    width: 140px;
  }
  footer .company-info {
    flex-wrap: wrap;
  }
  footer .f-right {
    flex-wrap: wrap;
  }
  footer .family-cont {
    width: 100%;
    margin: 0;
    margin-bottom: 20px;
  }
  footer .family-cont:last-child {
    margin-bottom: 0;
  }
}

table {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}
th,td {
  padding: 24px 10px; 
  text-align: center;
  font-size: 22px;
  line-height: 130%;
  vertical-align: middle;
  border: 1px solid var(--gray3);
}
th {
  text-align: center;
  color: var(--white-color);
  background-color: var(--black-color);
}

@media (max-width:1280px) {
  th,td {
    padding: 20px 8px; 
    font-size: 18px;
  }
}

@media (max-width:768px) {
  th,td {
    padding: 16px 5px; 
    font-size: 16px;
  }
}