@import "https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap";
@import "https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
.inner {
  padding: 0 80px;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
}

header {
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s, height 0.3s;
}
header:hover {
  background: #fff;
}
header:hover::after {
  opacity: 1;
  visibility: visible;
}
header:hover .inner .nav .gnb > li > .dep-01 {
  color: #111;
}
header:hover .inner .nav .gnb > li:hover > .dep-01,
header:hover .inner .nav .gnb > li.on > .dep-01 {
  color: #002e92;
}
header:hover .inner .nav .gnb > li > .lnb {
  opacity: 1;
  visibility: visible;
}
header:hover .inner .logo a {
  background-image: url("/static/img/common/logo_b.svg");
}
header:hover .inner .language .ico {
  filter: invert(1) brightness(0);
}
header:hover .inner .language .btn button span {
  color: #111;
}
header::after {
  content: "";
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: 314px;
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
header .inner {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}
header .inner .logo {
  height: 40px;
  width: 173px;
  flex-shrink: 0;
}
header .inner .logo a {
  display: block;
  width: 100%;
  height: 100%;
  background: url("/static/img/common/logo.svg") no-repeat center center/contain;
}
header .inner .nav {
  display: flex;
  align-items: center;
}
header .inner .nav .sidebar-close {
  display: none;
}
header .inner .nav .sidebar-language {
  display: none;
}
header .inner .nav .gnb {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100px;
}
header .inner .nav .gnb > li {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}
header .inner .nav .gnb > li:last-child .lnb {
  border-right: 1px solid #dddddd;
}
header .inner .nav .gnb > li > .dep-01 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  display: flex;
  height: 100px;
  align-items: center;
  transition: color 0.3s;
  padding: 0 26px;
}
header .inner .nav .gnb > li > .lnb {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;
  white-space: nowrap;
  z-index: 10;
  padding-top: 30px;
  padding-bottom: 40px;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  border-left: 1px solid #dddddd;
  width: 100%;
  height: 314px;
}
header .inner .nav .gnb > li > .lnb .dep-02 {
  font-size: 14px;
  color: #555;
  line-height: 20px;
  transition: color 0.3s;
}
header .inner .nav .gnb > li > .lnb .dep-02:hover {
  color: #014c94;
}
header .allmenu {
  display: none;
}
header.white {
  background: #fff;
  border-bottom: 1px solid #eee;
}
header.white:hover {
  background: #fff;
  border-bottom: 1px solid #eee;
}
header.white:hover .inner .logo a {
  background-image: url("/static/img/common/logo_b.svg");
}
header.white:hover .inner .nav .gnb > li > .dep-01 {
  color: #111;
}
header.white:hover .inner .nav .gnb > li:hover > .dep-01,
header.white:hover .inner .nav .gnb > li.on > .dep-01 {
  color: #002e92;
}
header.white:hover .inner .language .ico {
  filter: invert(1) brightness(0);
}
header.white:hover .inner .language .btn button span {
  color: #111;
}
header.white::after {
  background: #fff;
  border-top: 1px solid #eee;
}
header.white .inner .logo a {
  background-image: url("/static/img/common/logo_b.svg");
}
header.white .inner .nav .gnb > li > .dep-01 {
  color: #111;
}
header.white .inner .nav .gnb > li:hover > .dep-01,
header.white .inner .nav .gnb > li.on > .dep-01 {
  color: #002e92;
}
header.white .inner .language .ico {
  filter: invert(1) brightness(0);
}
header.white .inner .language .btn button span {
  color: #111;
}
header.white .inner .nav .gnb > li > .lnb .dep-02 {
  color: #555;
}
header.white .inner .nav .gnb > li > .lnb .dep-02:hover {
  color: #002e92;
}

.btn {
  padding: 12px 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 6px;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
.btn p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}
.btn .ico {
  width: 6px;
  height: 10px;
}
.btn.primary {
  background: #112d52;
}
.btn.primary p {
  color: white;
}
.btn.secondary {
  border: 1px solid rgba(17, 45, 82, 0.5019607843);
}
.btn.secondary p {
  color: #112d52;
}
.btn.secondary:hover {
  background: linear-gradient(90deg, #112d52 0%, #014c94 100%);
}
.btn.secondary:hover p {
  color: white;
}
.btn.secondary:hover .ico {
  filter: invert(1) brightness(100);
}

.main .main-hero {
  height: 1080px;
  background: url("/static/img/main/01-1.webp") no-repeat center center/cover;
}
.main .main-hero .inner {
  padding-top: 340px;
  max-width: 1640px;
}
.main .main-hero .inner h1 {
  font-weight: 800;
  font-size: 72px;
  line-height: 90px;
  color: white;
}
.main .main-about {
  background: linear-gradient(180deg, rgba(240, 244, 251, 0) 0%, #f0f4fb 100%);
}
.main .main-about .inner {
  padding-top: 120px;
  padding-bottom: 120px;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}
.main .main-about .inner .about-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 488px;
}
.main .main-about .inner .about-content .about-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.main .main-about .inner .about-content .about-text .logo {
  width: 34px;
  height: 40px;
}
.main .main-about .inner .about-content .about-text h1 {
  font-weight: 800;
  font-size: 72px;
  line-height: 90px;
  color: #112d52;
}
.main .main-about .inner .about-content .about-text p {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
}
.main .main-about .inner .about-img {
  width: 610px;
  height: 704px;
}
.main .main-product .inner {
  padding-top: 120px;
  padding-bottom: 120px;
  flex-direction: column;
  gap: 80px;
  align-items: center;
}
.main .main-product .inner .product-content {
  display: flex;
  align-items: center;
  gap: 48px;
}
.main .main-product .inner .product-content .product-tab {
  padding-left: 342px;
  position: relative;
}
.main .main-product .inner .product-content .product-tab .tab-img-label {
  position: absolute;
  z-index: 10;
  left: 0;
  font-weight: 800;
  font-size: 72px;
  line-height: 72px;
  color: #014c94;
  transition: top 0.4s ease;
}
.main .main-product .inner .product-content .product-tab .tab-img-label.tab-idx-0 {
  top: calc(50% - 180px);
}
.main .main-product .inner .product-content .product-tab .tab-img-label.tab-idx-1 {
  top: calc(50% - 84px);
}
.main .main-product .inner .product-content .product-tab .tab-img-label.tab-idx-2 {
  top: calc(50% + 12px);
}
.main .main-product .inner .product-content .product-tab .tab-img-label.tab-idx-3 {
  top: calc(50% + 108px);
}
.main .main-product .inner .product-content .product-tab .tab-list {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.main .main-product .inner .product-content .product-tab .tab-list p {
  font-weight: 800;
  font-size: 72px;
  line-height: 72px;
  color: #f0f4fb;
}
.main .main-product .inner .product-content .product-tab .tab-img-list {
  position: relative;
  width: 708px;
  height: 400px;
}
.main .main-product .inner .product-content .product-tab .tab-img-list img {
  position: absolute;
  top: 0;
  left: 0;
  width: 708px;
  height: 400px;
  border-radius: 24px;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.main .main-product .inner .product-content .product-tab .tab-img-list img.active {
  opacity: 1;
}
.main .main-product .inner .product-content .desc-list .desc-item {
  display: none;
  flex-direction: column;
  gap: 48px;
}
.main .main-product .inner .product-content .desc-list .desc-item.active {
  display: flex;
  animation: productFadeIn 0.4s ease;
}
.main .main-product .inner .product-content .desc-list .desc-item p {
  font-size: 18px;
  line-height: 27.99px;
}
.main .main-product .inner .product-content .desc-list .desc-item p b {
  color: #014c94;
  font-weight: 600;
}
.main .main-map {
  overflow: hidden;
  position: relative;
  height: 700px;
}
.main .main-map iframe {
  width: 100%;
  aspect-ratio: 1920/700;
}
.main .main-map .img-wrap {
  height: 700px;
  position: absolute;
  top: 0;
  left: 0;
}
.main .main-map .img-wrap img {
  width: 602px;
  height: 700px;
  -o-object-fit: contain;
     object-fit: contain;
}
.main .main-map .img-wrap p {
  position: absolute;
  font-weight: 700;
  font-size: 64px;
  line-height: 80px;
  color: white;
  top: 160px;
  right: 73px;
  z-index: 1;
}
.main .main-contact {
  background: #f0f4fb;
  position: relative;
}
.main .main-contact .inner {
  padding-top: 120px;
  padding-bottom: 120px;
  flex-direction: column;
  gap: 80px;
  align-items: center;
}
.main .main-contact .deco-img {
  width: 972px;
  height: 538px;
  position: absolute;
  bottom: 0;
  right: 0;
}
.main .main-section-title-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px;
}
.main .main-section-title-wrap .title {
  font-weight: 700;
  font-size: 64px;
  line-height: 80px;
}
.main .main-section-title-wrap .desc {
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #555;
}

.contact-form {
  display: flex;
  gap: 24px;
  width: 100%;
}
.contact-form .form-input-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 50%;
}
.contact-form .form-input-list .form-input-item {
  display: flex;
  width: 100%;
  gap: 24px;
  align-items: center;
}
.contact-form .form-input-list .form-input-item p {
  width: 98px;
  flex-shrink: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
}
.contact-form .form-input-list .form-input-item p span {
  color: #014c94;
}
.contact-form .form-input-list .form-input-item input {
  flex-grow: 1;
  border-bottom: 1px solid #dddddd;
  padding: 16px;
  font-size: 16px;
  line-height: 24px;
  outline: none;
}
.contact-form .form-input-list .form-input-item input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3137254902);
}
.contact-form .form-input-list .form-input-item input::placeholder {
  color: rgba(0, 0, 0, 0.3137254902);
}
.contact-form .form-textarea {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form .form-textarea p {
  width: 98px;
  flex-shrink: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
}
.contact-form .form-textarea textarea {
  border: 1px solid #dddddd;
  background: rgba(255, 255, 255, 0.8);
  height: 224px;
  resize: none;
  padding: 16px;
  border-radius: 12px;
  font-size: 16px;
  outline: none;
  line-height: 24px;
  position: relative;
  z-index: 1;
  pointer-events: auto;
}
.contact-form .form-textarea textarea::-moz-placeholder::placeholder {
  color: rgba(0, 0, 0, 0.3137254902);
}
.contact-form .form-textarea textarea::placeholder::placeholder {
  color: rgba(0, 0, 0, 0.3137254902);
}

.sub .sub-header-wrap {
  border-bottom: 1px solid #dddddd;
}
.sub .sub-header-wrap .inner {
  padding-top: 280px;
  flex-direction: column;
  gap: 100px;
}
.sub .sub-header-wrap .inner .sub-header {
  display: flex;
  justify-content: space-between;
}
.sub .sub-header-wrap .inner .sub-header h1 {
  font-weight: 800;
  font-size: 72px;
  line-height: 90px;
}
.sub .sub-header-wrap .inner .sub-header .nav-wrap {
  display: flex;
  gap: 12px;
  align-items: center;
}
.sub .sub-header-wrap .inner .sub-header .nav-wrap .home {
  width: 22px;
  height: 20px;
}
.sub .sub-header-wrap .inner .sub-header .nav-wrap .arrow {
  width: 6px;
  height: 10px;
}
.sub .sub-header-wrap .inner .sub-header .nav-wrap p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #999;
}
.sub .sub-header-wrap .inner .tab-list {
  display: flex;
  align-items: center;
  gap: 24px;
}
.sub .sub-header-wrap .inner .tab-list .tab {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #555;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  padding-bottom: 16px;
}
.sub .sub-header-wrap .inner .tab-list .tab.active {
  color: #112d52;
  font-weight: 700;
  border-color: #112d52;
}
.sub .tab-box {
  display: none;
}
.sub .tab-box.on {
  display: block;
}
.sub .section-title {
  padding-left: 16px;
  position: relative;
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
}
.sub .section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 100%;
  background: #014c94;
}

@keyframes productFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ceo_message .section-message .inner {
  padding-top: 120px;
  flex-direction: column;
  gap: 48px;
}
.ceo_message .section-message .inner .intro {
  font-weight: 700;
  font-size: 40px;
  line-height: 50px;
}
.ceo_message .section-message .inner .txt-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ceo_message .section-message .inner .txt-wrap .txt {
  font-size: 16px;
  line-height: 24px;
  color: #555;
}
.ceo_message .section-message .inner .name {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  line-height: 24px;
}
.ceo_message .section-message .inner .name b {
  font-weight: 600;
}
.ceo_message .section-overview {
  background: linear-gradient(180deg, rgba(240, 244, 251, 0) 0%, #f0f4fb 100%);
}
.ceo_message .section-overview .inner {
  padding-top: 120px;
  padding-bottom: 120px;
  flex-direction: column;
  gap: 48px;
}
.ceo_message .section-overview .inner .overview-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ceo_message .section-overview .inner .overview-list .overview-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #f0f4fb;
  min-height: 238px;
}
.ceo_message .section-overview .inner .overview-list .overview-item .icon {
  width: 60px;
  height: 60px;
}
.ceo_message .section-overview .inner .overview-list .overview-item .txt-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ceo_message .section-overview .inner .overview-list .overview-item .txt-wrap .title {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
}
.ceo_message .section-overview .inner .overview-list .overview-item .txt-wrap .txt {
  font-size: 16px;
  line-height: 24px;
  color: #555;
}

.directions {
  overflow: hidden;
}
.directions .direction-info-wrap .inner {
  padding-top: 120px;
  padding-bottom: 120px;
  justify-content: space-between;
  gap: 48px;
  overflow: hidden;
}
.directions .direction-info-wrap .inner .direction-title {
  font-weight: 700;
  font-size: 40px;
  line-height: 50px;
}
.directions .direction-info-wrap .inner .direction-title b {
  color: #014c94;
}
.directions .direction-info-wrap .inner .info-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.directions .direction-info-wrap .inner .info-wrap .info {
  display: flex;
  gap: 12px;
  align-items: center;
}
.directions .direction-info-wrap .inner .info-wrap .info .title {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
}
.directions .direction-info-wrap .inner .info-wrap .info .txt {
  font-size: 16px;
  line-height: 24px;
  color: #555;
}
.directions iframe {
  width: 100%;
  aspect-ratio: 1920/600;
  height: auto;
}

.product-page .inner {
  padding-top: 120px;
  padding-bottom: 120px;
  flex-direction: column;
  gap: 120px;
}
.product-page .inner .section-overview {
  display: flex;
  gap: 24px;
}
.product-page .inner .section-overview > div {
  flex: 1 1 50%;
}
.product-page .inner .section-overview .left {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.product-page .inner .section-overview .left h1 {
  font-weight: 700;
  font-size: 40px;
  line-height: 50px;
}
.product-page .inner .section-overview .left .desc {
  font-size: 18px;
  line-height: 28px;
  color: #555;
}
.product-page .inner .section-overview .img {
  border-radius: 24px;
  aspect-ratio: 708/400;
  height: auto;
}
.product-page .inner .section-product {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.product-page .inner .section-product .product-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-page .inner .section-product .product-list .product-item {
  width: 100%;
  padding: 48px 24px;
  border: 1px solid #dddddd;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-radius: 12px;
  align-items: center;
  cursor: pointer;
}
.product-page .inner .section-product .product-list .product-item:hover {
  border: 2px solid #014c94;
}
.product-page .inner .section-product .product-list .product-item .logo {
  width: 52px;
  height: 60px;
}
.product-page .inner .section-product .product-list .product-item .txt-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product-page .inner .section-product .product-list .product-item .txt-wrap .product-name {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
}
.product-page .inner .section-product .product-list .product-item .txt-wrap .desc {
  font-size: 18px;
  line-height: 28px;
  color: #555;
}

/* ===============================
   MODAL
   =============================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-overlay .modal {
  background: #fff;
  width: 952px;
  max-width: 90vw;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 60px;
  border-radius: 24px;
  gap: 60px;
}
.modal-overlay .modal .modal-close {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 20px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}
.modal-overlay .modal .modal-close img {
  width: 20px;
  height: 20px;
}
.modal-overlay .modal .modal-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.modal-overlay .modal .modal-header .modal-title-wrap {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.modal-overlay .modal .modal-header .modal-title-wrap .modal-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
}
.modal-overlay .modal .modal-header .modal-title-wrap .modal-subtitle {
  font-size: 32px;
  line-height: 40px;
  color: #555;
}
.modal-overlay .modal .modal-header .modal-desc {
  font-size: 18px;
  line-height: 28px;
  color: #555;
}
.modal-overlay .modal .modal-body .option-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #dddddd;
}
.modal-overlay .modal .modal-body .option-list .option-item {
  border-bottom: 1px solid #dddddd;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px;
}
.modal-overlay .modal .modal-body .option-list .option-item .num {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #112d52;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: white;
}
.modal-overlay .modal .modal-body .option-list .option-item p {
  font-size: 18px;
  line-height: 28px;
}

.inquiry .section-title-wrap .inner {
  padding-top: 120px;
  flex-direction: column;
  gap: 48px;
}
.inquiry .section-title-wrap .inner .title {
  font-weight: 700;
  font-size: 40px;
  line-height: 50px;
}
.inquiry .section-title-wrap .inner .desc {
  font-size: 16px;
  line-height: 24px;
  color: #555;
}
.inquiry .contact-form-wrap {
  position: relative;
  background: linear-gradient(180deg, rgba(240, 244, 251, 0) 0%, #f0f4fb 100%);
}
.inquiry .contact-form-wrap .deco-img {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 972px;
  height: 538px;
}
.inquiry .contact-form-wrap .inner {
  padding-top: 120px;
  padding-bottom: 120px;
  flex-direction: column;
  gap: 80px;
  align-items: center;
}

.faq .inner {
  padding-top: 120px;
  padding-bottom: 120px;
  flex-direction: column;
  gap: 80px;
}
.faq .inner .board-wrap {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.faq .inner .board-wrap .board-search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 100;
}
.faq .inner .board-wrap .board-search .board-total {
  font-size: 16px;
  line-height: 24px;
  color: #555;
}
.faq .inner .board-wrap .board-search .board-total b {
  color: #112d52;
  font-weight: 600;
}
.faq .inner .board-wrap .board-search .board-search-form {
  display: flex;
  align-items: center;
  width: 366px;
  padding: 16px;
  justify-content: space-between;
  border: 1px solid #ddd;
  border-radius: 6px;
  gap: 12px;
}
.faq .inner .board-wrap .board-search .board-search-form .board-search-select {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  width: -moz-fit-content;
  width: fit-content;
  flex-shrink: 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 50;
}
.faq .inner .board-wrap .board-search .board-search-form .board-search-select p {
  font-size: 14px;
  line-height: 20px;
  color: #555;
}
.faq .inner .board-wrap .board-search .board-search-form .board-search-select .icon {
  width: 8px;
  height: 5px;
  transition: transform 0.2s ease;
}
.faq .inner .board-wrap .board-search .board-search-form .board-search-select .board-select-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 140px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  opacity: 1;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 10;
}
.faq .inner .board-wrap .board-search .board-search-form .board-search-select .board-select-options li {
  padding: 10px 14px;
  font-size: 14px;
  line-height: 20px;
  color: #555;
  white-space: nowrap;
  cursor: pointer;
}
.faq .inner .board-wrap .board-search .board-search-form .board-search-select .board-select-options li:hover {
  background: #f5f5f5;
}
.faq .inner .board-wrap .board-search .board-search-form .board-search-select .board-select-options li.active {
  color: #000;
  font-weight: 600;
}
.faq .inner .board-wrap .board-search .board-search-form .board-search-select.open .icon {
  transform: rotate(180deg);
}
.faq .inner .board-wrap .board-search .board-search-form .board-search-select.open .board-select-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.faq .inner .board-wrap .board-search .board-search-form .board-search-input {
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: 30px;
}
.faq .inner .board-wrap .board-search .board-search-form .board-search-input input {
  outline: none;
  font-size: 14px;
  line-height: 20px;
  flex-grow: 1;
}
.faq .inner .board-wrap .board-search .board-search-form .board-search-input input::-moz-placeholder {
  color: #555;
}
.faq .inner .board-wrap .board-search .board-search-form .board-search-input input::placeholder {
  color: #555;
}
.faq .inner .board-wrap .board-search .board-search-form .board-search-input .icon {
  width: 16px;
  height: 16px;
}
.faq .inner .board-wrap table {
  border-top: 2px solid #000000;
}
.faq .inner .board-wrap table th,
.faq .inner .board-wrap table td {
  padding: 24px;
}
.faq .inner .board-wrap table th {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  border-bottom: 1px solid #dddddd;
}
.faq .inner .board-wrap table td {
  border-bottom: 1px solid #dddddd;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #999;
}
.faq .inner .board-wrap table td.title {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #000;
  text-align: left;
}
.faq .inner .board-wrap table tr:has(td):hover td {
  border-bottom: 1px solid #014c94;
}
.faq .inner .board-wrap table tr:has(td):hover td.title {
  color: #014c94;
}
.faq .inner .board-pagination {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
}
.faq .inner .board-pagination .arrow {
  width: 6px;
  height: 10px;
}
.faq .inner .board-pagination .arrow img {
  width: 100%;
  height: 100%;
}
.faq .inner .board-pagination .page-nums {
  display: flex;
  align-items: center;
}
.faq .inner .board-pagination .page-nums .page-num {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #999;
  cursor: pointer;
}
.faq .inner .board-pagination .page-nums .page-num.active {
  background: #112d52;
  color: white;
}

.faq-detail .inner {
  padding-top: 120px;
  padding-bottom: 120px;
  flex-direction: column;
  gap: 80px;
  align-items: center;
}
.faq-detail .inner .faq-content-wrap {
  border-top: 2px solid #000000;
  width: 100%;
}
.faq-detail .inner .faq-content-wrap .faq-header-wrap {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-bottom: 1px solid #dddddd;
}
.faq-detail .inner .faq-content-wrap .faq-header-wrap .faq-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
}
.faq-detail .inner .faq-content-wrap .faq-header-wrap .faq-info-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.faq-detail .inner .faq-content-wrap .faq-header-wrap .faq-info-wrap .faq-info {
  display: flex;
  align-items: center;
  gap: 6px;
}
.faq-detail .inner .faq-content-wrap .faq-header-wrap .faq-info-wrap .faq-info .title {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #999;
}
.faq-detail .inner .faq-content-wrap .faq-header-wrap .faq-info-wrap .faq-info .content {
  font-size: 14px;
  line-height: 20px;
  color: #999;
}
.faq-detail .inner .faq-content-wrap .file-list {
  border-bottom: 1px solid #dddddd;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.faq-detail .inner .faq-content-wrap .file-list .file-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.faq-detail .inner .faq-content-wrap .file-list .file-item .title {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #555;
}
.faq-detail .inner .faq-content-wrap .file-list .file-item .file {
  font-size: 14px;
  line-height: 20px;
  text-decoration: underline;
  color: #555;
  cursor: pointer;
}
.faq-detail .inner .faq-content-wrap .faq-content {
  border-bottom: 1px solid #dddddd;
  padding: 48px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-detail .inner .faq-content-wrap .faq-content img {
  width: 448px;
  height: 252px;
}
.faq-detail .inner .faq-content-wrap .faq-content p {
  font-size: 16px;
  line-height: 24px;
  color: rgba(85, 85, 85, 0.3333333333);
}
.faq-detail .inner .faq-content-wrap .faq-nav-wrap {
  padding-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-detail .inner .faq-content-wrap .faq-nav-wrap .nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.faq-detail .inner .faq-content-wrap .faq-nav-wrap .nav .nav-btn {
  display: flex;
  align-items: center;
  gap: 12px;
}
.faq-detail .inner .faq-content-wrap .faq-nav-wrap .nav .nav-btn .icon {
  width: 6px;
  height: 10px;
}
.faq-detail .inner .faq-content-wrap .faq-nav-wrap .nav .nav-btn p {
  font-size: 16px;
  line-height: 24px;
  color: #555;
}
.faq-detail .inner .faq-content-wrap .faq-nav-wrap .nav .faq-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
}

footer {
  position: relative;
  background: #112d52;
}
footer .deco-img {
  position: absolute;
  width: 305px;
  left: 0;
  top: 20px;
}
footer .inner {
  padding-top: 100px;
  padding-bottom: 60px;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
footer .inner .left {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
footer .inner .left .logo {
  width: 259px;
  height: 60px;
}
footer .inner .left .copyright {
  font-size: 14px;
  line-height: 20px;
  color: #ddd;
}
footer .inner .right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .inner .right .company-info-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
footer .inner .right .company-info-row .company-info {
  display: flex;
  align-items: center;
  gap: 6px;
}
footer .inner .right .company-info-row .company-info .title {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: white;
}
footer .inner .right .company-info-row .company-info .content {
  font-size: 16px;
  line-height: 24px;
  color: #ddd;
}
footer .inner .right .company-info-row .company-info::after {
  content: "";
  display: block;
  width: 1px;
  height: 14px;
  background: #fff;
  margin-left: 4px;
  opacity: 0.2;
}
footer .inner .right .company-info-row .company-info:last-child::after {
  content: unset;
}/*# sourceMappingURL=layout.css.map */