@charset "utf-8";
@import url("unable/board.css");
@import url("unable/board_renew.css");
@import url("custom_board.css");

/*
 * layout.css
 * 레이아웃 공통요소들 작업요소에 맞게 수정하시면됩니다.
 *
 * 1) root 설정
 * 2) 폰트설정
 * 3) open-control
 * 4) 언어선택
 * 5) 준비중
 * 6) 관련사이트-목록열기형
 * 7) 레이아웃설정
 *
 */

/* 스무스 스크롤바 필수 css */
html,
body {
  height: 100%;
  margin: 0;
}
#wrap {
  height: 100vh;
  overflow: hidden;
}
.scrollbar-track {
  background: transparent !important;
}

.inr-1600 {
  position: relative;
  margin: auto;
  max-width: 1600rem;
  width: 92%;
}
.inr-1400 {
  position: relative;
  margin: auto;
  max-width: 1400rem;
  width: 92%;
}
.inr-1100 {
  position: relative;
  margin: auto;
  max-width: 1100rem;
  width: 92%;
}

/* 1) root 설정  */
:root {
  --color-base: #222; /* 선언이 안되면 #333 기본컬러로 적용됨 */
  --color-point: #004da1; /* 포인트컬러 예시 */
  --color-navy: #092d53; /* 포인트컬러 예시 */
  --color-white: #fff;
  --color-black: #000;
  --font-base: 16rem;

  --font-eng: "Poppins", Sans-serif;
  --font-combine: "Poppins", "Pretendard", Sans-serif;
  --trans-ani: 0.3s ease 0s;

  --hd-height: 100rem;

  @media (max-width: 1024px) {
    --hd-height: 80rem;
  }
  @media (max-width: 768px) {
    --hd-height: 70rem;
  }
  @media (max-width: 1024px) {
    --hd-height: 60rem;
  }
}

/* 2) 폰트설정 */
body {
  font-size: var(--font-base, 16rem);
}
@media (min-width: 1921px) {
  html {
    font-size: 0.052vw /* 1px */;
  }
}
@media (max-width: 1300px) {
  html {
    font-size: 0.077vw /* 1px */;
  }
}
@media (max-width: 1024px) {
  html {
    font-size: 0.098vw /* 1px */;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 0.13vw /* 1px */;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 0.271vw /* 1.3px */;
  }
}

/* 3) open-control */
/* div.open-control
 *     button.open-control__btn
 *     div.list or ul.list
 * */
.open-control {
  position: relative;
}
.open-control .list {
  display: none;
  position: absolute;
  top: 100%;
  width: 100%;
  padding: 15rem;
  background-color: #fff;
  border: 1rem solid #eee;
}
.open-control .list a {
  display: inline-block;
}

/* 4) 언어선택 */
.lang-area {
  position: relative;
  min-width: 120rem;
}
.lang-area .open-control__btn {
  display: flex;
  align-items: center;
  gap: 10rem;
  background-color: transparent;
  font-size: 17rem;
  font-weight: 500;
}
.lang-area .list ul {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  font-size: 15rem;
}
.lang-area .list a {
  opacity: 0.5;
  font-weight: 600;
  transition: 0.3s ease;
}
.lang-area .list a:hover {
  opacity: 1;
}

/* 5) 준비중 */
.ready-page {
  padding: 120rem 0;
  text-align: center;
}
.ready-page strong {
  display: block;
  font-size: 35rem;
}
.ready-page strong i {
  opacity: 0.2;
  display: block;
  margin-bottom: 10rem;
  font-size: 45rem;
}
.ready-page p {
  margin-top: 20rem;
  font-size: 18rem;
  line-height: 1.4;
}
@media (max-width: 480px) {
  .ready-page {
    padding: 80rem 0;
  }
  .ready-page strong {
    font-size: 30rem;
  }
  .ready-page p {
    font-size: 16rem;
    word-break: keep-all;
  }
  .ready-page p br {
    display: none;
  }
}

/* 6) 관련사이트-목록열기형 */
.relate-site {
  position: relative;
  max-width: 260rem;
}
.relate-site .open-control__btn {
  position: relative;
  width: 100%;
  height: 55rem;
  box-sizing: border-box;
  padding: 0 30rem 0 20rem;
  background-color: transparent;
  border: 1rem solid rgba(14, 14, 14, 0.15);
  font-size: 15rem;
  font-weight: 600;
  text-align: left;
  color: #333;
  transition: 0.3s ease;
}
.relate-site .open-control__btn .xi-plus-min {
  position: absolute;
  right: 20rem;
  top: 50%;
  margin-top: -10rem;
  font-size: 20rem;
  transition: transform 0.3s;
}
.relate-site .open-control__btn.active {
  border-color: #111;
}
.relate-site .open-control__btn.active .xi-plus-min {
  transform: rotate(45deg);
}
.relate-site .list {
  display: none;
  position: absolute;
  bottom: 100%;
  top: auto;
  width: 100%;
  box-sizing: border-box;
  padding: 35rem 20rem;
  background: #fff;
  border: 1rem solid #111;
  border-bottom: 0;
}
.relate-site .list ul > li {
  margin-top: 10rem;
}
.relate-site .list ul > li:first-child {
  margin-top: 0;
}
.relate-site .list a {
  opacity: 0.5;
  display: inline-block;
  font-size: 14rem;
  font-weight: 500;
  transition: opacity 0.3s;
}
.relate-site .list a:hover {
  opacity: 1;
}
@media (max-width: 480px) {
  .relate-site {
    max-width: 100%;
  }
}

/* 7) 레이아웃설정 */
#wrap #header {
  display: none !important;
}
#header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 90;
  width: 100%;
  height: var(--hd-height);
  transition: 0.3s ease;
}
#header .inr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: auto;
  max-width: 1720rem;
  width: 94%;
  height: 100%;
  transition: 0.3s ease;
}
#header h1 a {
  display: block;
  position: relative;
  height: 50rem;
  transition: 0.3s ease;
}
#header h1 img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  transition: 0.3s ease;
}
#header h1 img.logo2 {
  opacity: 0;
}
.isScrolled #header {
  background: rgba(255, 255, 255, 0.7);
  height: calc(var(--hd-height) - 25rem);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e5e5;
}
.isScrolled #header h1 a {
  height: 40rem;
}
.isScrolled #header h1 img.logo1 {
  opacity: 0;
}
.isScrolled #header h1 img.logo2 {
  opacity: 1;
}
#header.hide {
  top: calc(var(--hd-height) * -1);
  background: none;
  backdrop-filter: none;
  border-bottom: none;
}
#header.hide h1 img.logo1 {
  opacity: 1;
}
#header.hide h1 img.logo2 {
  opacity: 0;
}
.isScrolled #header.hide {
  top: calc((var(--hd-height) - 25rem) * -1);
}
@supports not (backdrop-filter: blur(10px)) {
  .isScrolled #header {
    background: #fff;
  }
}
@media (max-width: 1024px) {
  #header h1 a {
    height: 42rem;
  }
  .isScrolled #header h1 a {
    height: 36rem;
  }
}
@media (max-width: 768px) {
  #header h1 a {
    height: 38rem;
  }
  .isScrolled #header {
    height: calc(var(--hd-height) - 15rem);
  }
  .isScrolled #header h1 a {
    height: 32rem;
  }
}
@media (max-width: 480px) {
  #header h1 a {
    height: 32rem;
  }
  .isScrolled #header {
    height: calc(var(--hd-height) - 15rem);
  }
  .isScrolled #header h1 a {
    height: 28rem;
  }
}

/* gnb */
#header nav {
  margin-right: -50rem;
  height: 100%;
}
#header nav .gnb {
  display: flex;
  align-items: center;
  height: 100%;
}
#header nav .gnb li a {
  display: inline-block;
  word-break: keep-all;
}
#header nav .gnb > li {
  position: relative;
  height: 100%;
}
#header nav .gnb > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 50rem;
  height: 100%;
  font-size: var(--fs18);
  font-weight: 500;
  color: #fff;
  transition: 0.3s ease;
}
#header nav .gnb > li .box:not(.depth03) {
  width: 100%;
  min-width: 180rem;
  padding: 20rem;
  background-color: #fff;
/*  border: 3rem solid #bbb;*/
  border: 2rem solid var(--color-point);
  box-shadow: 0 20rem 30rem rgba(0, 0, 0, 0.15);
    border-radius:10rem;
}
#header nav .gnb > li .box:not(.depth03) a {
  display: block;
  font-size: var(--fs17);
  font-weight: 500;
  transition: opacity 0.3s ease;
}
#header nav .gnb > li .box:not(.depth03):is(:hover) a {
  opacity: 0.5;
}
#header nav .gnb > li .box:not(.depth03):is(:hover) a:hover {
  opacity: 1;
    color:var(--color-point);
}
#header nav .gnb .box > ul {
  display: flex;
  flex-direction: column;
  gap: 12rem;
}
#header nav .gnb .box.depth03 {
  margin-left: 10rem;
}
/* gnb active */
#header nav .gnb .box:not(.depth03) {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -30rem);
  transition: 0.3s ease;
  transition-property: opacity, visibility, transform;
}
#header nav .gnb .active .box:not(.depth03) {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
@media (max-width: 1024px) {
  #header nav {
    display: none;
  }
}
.isScrolled #header nav .gnb > li > a {
  color: #111;
}
#header.hide nav .gnb > li > a {
  color: #fff;
}

/* maga menu */
.mega-menu {
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: stretch;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  transition: 0.3s ease;
  transition-property: opacity, visibility;
}
.mega-menu.active {
  opacity: 1;
  visibility: visible;
}
.gnb-mob {
  overflow-y: auto;
  width: 80%;
  background-color: #fff;
}
.gnb-mob .gnb {
  padding: 30rem;
}
.gnb-mob .gnb > li {
  position: relative;
  border-bottom: 1rem solid rgba(0, 0, 0, 0.1);
}
.gnb-mob .gnb > li > a {
  display: flex;
  align-items: center;
  padding: 20rem 20rem;
  font-size: var(--fs25);
  font-weight: 500;
}
.gnb-mob .gnb > li .open {
  position: absolute;
  top: 20rem;
  right: 20rem;
  width: 20rem;
  height: 20rem;
  background-color: transparent;
  font-size: 0;
}
.gnb-mob .gnb > li .open:before {
  content: "\e913";
  display: block;
  font-family: xeicon !important;
  font-size: 20rem;
}
.gnb-mob .gnb > li > a.active ~ .open:before {
  content: "\e91a";
}
.gnb-mob .gnb > li > a.on {
  color: var(--color-point);
}
.gnb-mob .box {
  display: none;
  padding: 30rem;
  background-color: #f3f3f3;
}
.gnb-mob .box ul {
  display: flex;
  flex-direction: column;
  gap: 15rem;
}
.gnb-mob .box a {
  display: block;
  font-size: var(--fs18);
}
.gnb-mob .box a span {
  line-height: 1.4;
  background: linear-gradient(90deg, #222, #222);
  background-size: 0 2rem;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: 0.5s;
}
.gnb-mob .box a.on span {
  background-size: 100% 2rem;
  font-weight: 700;
}
/* maga control */
[class*="mega-menu__"] {
  display: block;
  width: 30rem;
  height: 30rem;
  background-color: transparent;
}
[class*="mega-menu__"] span {
  display: block;
  position: relative;
  width: 30rem;
  height: 18rem;
  margin: 0 auto;
  font-size: 0;
}
[class*="mega-menu__"] span i,
[class*="mega-menu__"] span:before,
[class*="mega-menu__"] span:after {
  display: block;
  position: absolute;
  height: 2rem;
  background-color: #fff;
  transform: rotate(0);
}
[class*="mega-menu__"] span:before,
[class*="mega-menu__"] span:after {
  content: "";
  width: 100%;
}
[class*="mega-menu__"] span:before {
  right: 0;
  top: 0;
  transition: 0.5s ease 0s;
}
[class*="mega-menu__"] span:after {
  left: 0;
  bottom: 0;
  transition: 0.5s ease 0s;
}
[class*="mega-menu__"] span i {
  opacity: 1;
  left: 0;
  top: 8rem;
  width: 100%;
  transition: opacity 0.3s, transform 0.5s ease 1.1s;
}
[class*="mega-menu__"].active i {
  opacity: 0;
}
[class*="mega-menu__"].active span:before {
  right: 0;
  top: 5rem;
  transform: rotate(45deg);
}
[class*="mega-menu__"].active span:after {
  left: 0;
  bottom: 7rem;
  transform: rotate(-45deg);
}
.isScrolled [class*="mega-menu__"] span i,
.isScrolled [class*="mega-menu__"] span:before,
.isScrolled [class*="mega-menu__"] span:after {
  background: #222;
}
/* mega menu - open btn */
/* pc에서만 사용한다면 display none처리 */
.mega-menu__btn {
  display: none;
}
/* mega menu - close btn */
.mega-menu__close {
  flex: auto;
  width: auto;
  height: auto;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.mega-menu__close em {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30rem;
  height: 30rem;
}
.mega-menu__close span {
  width: 26rem !important;
  height: 24rem !important;
}
.mega-menu__close span i,
.mega-menu__close span:before,
.mega-menu__close span:after {
  background-color: #fff !important;
}
.mega-menu__close.active span:before {
  top: 11rem;
}
.mega-menu__close.active span:after {
  bottom: 11rem;
}
.mega-menu__close:focus {
  outline: none;
}
@media (hover: hover) {
  .gnb-mob .box a:hover span {
    background-size: 100% 2rem;
  }
}
@media (max-width: 1024px) {
  [class*="mega-menu__"] {
    display: block;
  }
  .mega-menu__close {
    display: flex;
    justify-content: flex-end;
    padding-right: 3%;
    padding-top: 24rem;
  }
  .mega-menu .open {
    display: block;
  }
  .isScrolled .mega-menu__close {
    padding-top: 13rem;
  }
}
@media (max-width: 768px) {
  .mega-menu__close {
    padding-top: 20rem;
  }
}
@media (max-width: 480px) {
  [class*="mega-menu__"] span {
    width: 26rem;
    height: 14rem;
  }
  [class*="mega-menu__"] span i {
    top: 6rem;
  }
  .mega-menu__close {
    padding-top: 16rem;
  }
  .isScrolled .mega-menu__close {
    padding-top: 9rem;
  }
  .gnb-mob .gnb {
    padding: 20rem 0;
  }
  .gnb-mob .gnb > li > a {
    font-size: 18rem;
  }
  .gnb-mob .box {
    padding: 25rem 20rem;
  }
  .gnb-mob .box a {
    font-size: 16rem;
  }
}

/* util */
.util-area {
  display: flex;
  align-items: center;
  gap: 10rem;
}

/* footer */
#footer * {
  box-sizing: border-box;
  word-break: keep-all;
}
#footer {
  background: #191919;
}
#footer .inr-1600 {
  display: flex;
  justify-content: space-between;
  padding: 70rem 0;
  gap: 200rem;
}
#footer .logo {
  display: block;
  height: 40rem;
  opacity: 0.6;
}
#footer .logo img {
  display: block;
  height: 100%;
}
#footer .cnt {
  display: flex;
  padding-top: 12rem;
  width: 76.88%;
}
#footer .cnt_tit {
  display: block;
  margin-bottom: 20rem;
  font-size: var(--fs18);
  font-weight: bold;
  font-family: var(--font-eng);
  line-height: 1;
  color: #fff;
}
#footer .cntCompany {
  padding-right: 50rem;
  width: 67.48%;
}
#footer .cntCompany address {
  font-size: var(--fs15);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
}
#footer .cntCompany span {
  display: inline-block;
  margin: 0 30rem 12rem 0;
}
#footer .cntGuide {
  width: 32.52%;
}
#footer .cntGuide ul {
  display: flex;
  gap: 30rem;
  font-size: var(--fs15);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
}
#footer .copyright {
  display: block;
  padding: 30rem 4%;
  font-size: var(--fs14);
  font-weight: 300;
  line-height: 1;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 1024px) {
  #footer .inr-1600 {
    gap: 0;
    padding: 60rem 0;
  }
  #footer .cnt {
    width: 70%;
  }
  #footer .cntCompany {
    padding-right: 30rem;
    width: 75%;
  }
  #footer .cntGuide {
    width: 25%;
  }
  #footer .cntGuide ul {
    flex-direction: column;
    gap: 15rem;
  }
  #footer .copyright {
    padding: 25rem 4%;
  }
}
@media (max-width: 480px) {
  #footer .inr-1600 {
    display: block;
    padding: 45rem 0;
  }
  #footer .logo {
    height: 32rem;
  }
  #footer .cnt {
    display: block;
    padding-top: 0;
    width: 100%;
  }
  #footer .cnt_tit {
    margin-bottom: 15rem;
  }
  #footer .cntCompany {
    margin: 40rem 0 30rem;
    padding-right: 0;
    width: 100%;
  }
  #footer .cntCompany span {
    margin: 0 25rem 8rem 0;
  }
  #footer .cntGuide {
    width: 25%;
  }
  #footer .cntGuide ul {
    flex-direction: row;
    gap: 25rem;
  }
  #footer .copyright {
    padding: 15rem 4%;
  }
}

/* fix bar */
.fixBar {
  position: fixed;
  right: 1.2%;
  bottom: 30rem;
  opacity: 0;
  transform: translateY(30rem);
  transition: 0.5s ease;
}
.fixBar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  box-shadow: 3rem 3rem 15rem rgba(0, 0, 0, 0.15);
}
.fixBar a + a {
  margin-top: 15rem;
}
.fixBar a.quick_inquiry {
  background: var(--color-navy);
}
.fixBar a.quick_inquiry img {
  display: block;
  width: 26rem;
}
.fixBar a.top-btn {
  background: #fff;
}
.fixBar a.top-btn img {
  display: block;
  width: 14rem;
}
.isScrolled .fixBar {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1024px) {
  .fixBar {
    right: 2%;
  }
  .fixBar a {
    width: 60rem;
  }
}
@media (max-width: 480px) {
  .fixBar {
    right: 2%;
  }
  .fixBar a {
    width: 45rem;
  }
  .fixBar a + a {
    margin-top: 10rem;
  }
  .fixBar a.top-btn img {
    width: 12rem;
  }
  .fixBar a.quick_inquiry img {
    width: 20rem;
  }
}
