@charset "utf-8";

/**
 * Filename : common.css
 * Description : skip navigation, title, hidden, ellipsis, width styles
 **/
/* ==========================================================================
 skip navigation
========================================================================== */

#skip-navigation a {
  position: absolute;
  left: -9999px;
  top: -9999px;
  z-index: 1000;
}
#skip-navigation a:focus,
#skip-navigation a:active {
  left: 20px;
  top: 20px;
}

/* ==========================================================================
 headings //
========================================================================== */

/* title */
.title-slogan {
  color: var(--text-900_title);
  font-size: var(--font-64);
  font-weight: 800;
  line-height: 1.2;
}
.title-page {
  color: var(--text-white);
  font-size: var(--font-48);
  font-weight: 700;
}
.title-section {
  color: var(--text-900_title);
  font-size: var(--font-40);
  font-weight: 700;
}
.title-subsection {
  color: var(--text-900_title);
  font-size: var(--font-32);
  font-weight: 700;
}
.title-content {
  color: var(--text-900_title);
  font-size: var(--font-28);
  font-weight: 700;
}
.title-group {
  color: var(--text-900_title);
  font-size: var(--font-24);
  font-weight: 700;
}
.title-item {
  color: var(--text-900_title);
  font-size: var(--font-20);
  font-weight: 700;
  line-height: 1.2;
}
.title-label {
  position: relative;
  padding-left: 14px;
  color: var(--text-900_title);
  font-size: var(--font-24);
  font-weight: 700;
}
.title-label::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 4px;
  height: 20px;
  background-image: url("../images/common/bullet_line.png");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
}

/* mobile ============================ */

@media screen and (max-width: 768px) {
  .title-slogan {
    font-size: var(--font-32);
    font-weight: 700;
    line-height: 1.5;
  }
  .title-page {
    font-size: var(--font-32);
  }
  .title-section {
    font-size: var(--font-28);
  }
  .title-subsection {
    font-size: var(--font-24);
  }
  .title-content {
    font-size: var(--font-20);
    line-height: 1.2;
  }
  .title-label::before {
    top: 4px;
  }
}

/* ==========================================================================
 bullet
========================================================================== */

.bullet-phrase {
  position: relative;
  padding-left: 12px;
  color: var(--text-700);
  font-size: var(--font-16);
  font-weight: 700;
  letter-spacing: -0.64px;
}
.bullet-phrase::before {
  content: "•";
  position: absolute;
  left: 0;
  color: inherit;
}

/* mobile ============================ */

@media screen and (max-width: 768px) {
  .bullet-phrase {
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.64px;
  }
}

/* ==========================================================================
 history 
========================================================================== */

.history-section .tab-area {
  position: sticky;
  top: 130px;
  width: 100%;
  z-index: 10;
  background-color: #fff;
  border-bottom: 1px solid var(--border-02);
  transition: all ease-in-out 0.3s;
}
.history-section .tab-area.fixed {
  top: 0;
  transition: all ease-in-out 0.3s;
}
.history-section .tab-list {
  max-width: 1200px;
  margin: 0 auto;
}
.history-section .tab-area.fixed .tab-list li a {
  border-bottom: 0;
}
.history-section .tab-area.fixed .tab-list li.active a {
  border-bottom: 1px solid var(--border-04);
}
.history-section .history-content {
  margin: 0 auto;
  max-width: 1200px;
}

@media screen and (max-width: 1440px) {
  .history-section .tab-area,
  .history-section .tab-area.fixed {
    top: 64px;
  }
}
/* tablet ============================ */

@media screen and (max-width: 1024px) {
  .history-section .tab-list li a p {
    display: none;
  }
}

/* mobile ============================ */

@media screen and (max-width: 768px) {
  .history-section .tab-area.fixed {
    padding: 0;
    border-bottom: 0;
  }
  .history-section .tab-area .tab-list li a {
    padding: 8px;
  }
  .history-section .tab-area.fixed .tab-list li a {
    border-bottom: 1px solid var(--border-02);
  }
  .history-section .tab-list li a span span {
    display: inline-block;
    width: 100%;
  }
}

/* ==========================================================================
 scroll 
========================================================================== */

[data-js="scrollbar"] {
  position: relative;
  overflow: hidden;
}
[data-js="scrollbar"] .scroll-content {
  overflow-y: scroll;
  height: 100%;
}
[data-js="scrollbar"] .scroll-content::-webkit-scrollbar {
  display: none;
}
[data-js="scrollbar"] .scrollbar {
  position: absolute;
  top: 0;
  right: 20px;
  margin-top: 20px;
  width: 4px;
  height: calc(100% - 40px);
  background-color: transparent;
}
[data-js="scrollbar"] .scrollbar .thumb {
  position: absolute;
  top: 0;
  width: 100%;
  height: 93px;
  border-radius: 30px;
  background: var(--border-03);
  cursor: pointer;
}

/* mobile ============================ */

@media screen and (max-width: 768px) {
  [data-js="scrollbar"] .scrollbar {
    right: 8px;
  }
}

/* ==========================================================================
 ellipsis
========================================================================== */

[class*="line-clamp-"] {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}
.line-clamp-1 {
  -webkit-line-clamp: 2;
}
.line-clamp-2 {
  -webkit-line-clamp: 2;
}
.line-clamp-3 {
  -webkit-line-clamp: 3;
}

/* ==========================================================================
 hidden / overflow
========================================================================== */

.sr-only {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  padding: 0;
  width: 1px;
  height: 1px;
  border: 0;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.has-overflow {
  overflow: hidden;
  width: 100%;
}

/* ==========================================================================
 show/hide
========================================================================== */

.pc-hide {
  display: none !important;
}

/* mobile ============================ */

@media screen and (max-width: 768px) {
  .mo-hide {
    display: none !important;
  }
}

/* ==========================================================================
 size
========================================================================== */

.size-7 {
  width: 7px;
  height: 7px;
}
.size-16 {
  width: 16px;
  height: 16px;
}
.size-20 {
  width: 20px;
  height: 20px;
}
.size-24 {
  width: 24px;
  height: 24px;
}
.size-28 {
  width: 28px;
  height: 28px;
}
.size-30 {
  width: 30px;
  height: 30px;
}
.size-32 {
  width: 32px;
  height: 32px;
}
.size-48 {
  width: 48px;
  height: 48px;
}
.size-56 {
  width: 56px;
  height: 56px;
}
.size-60 {
  width: 60px;
  height: 60px;
}

/* ==========================================================================
 width
========================================================================== */

.w-10p {
  width: 10%;
}
.w-15p {
  width: 15%;
}
.w-20p {
  width: 20%;
}
.w-25p {
  width: 25%;
}
.w-30p {
  width: 30%;
}
.w-35p {
  width: 35%;
}
.w-40p {
  width: 40%;
}
.w-45p {
  width: 45%;
}
.w-50p {
  width: 50%;
}
.w-auto {
  width: auto;
}

.w-210px {
  width: 210px;
}

/* mobile ============================ */

@media screen and (max-width: 768px) {
  .w-210px {
    width: auto;
  }
}

/* ==========================================================================
 color
========================================================================== */

.text-orange {
  color: var(--secondary_orange);
}
.text-blue {
  color: var(--secondary_blue_01);
}
.text-red {
  color: var(--system-danger);
}

/* ==========================================================================
 border color
========================================================================== */

.line-gray {
  border: 1px solid var(--border-02);
}

/* ==========================================================================
 다국어 (개발팀에서 요청 / 최상단 class name boay 에 추가 됨 / 다국어에 대한 필요 사항은 여기에 추가 )
========================================================================== */

.ko_KR .lang_hide:not(.kr_show) {
  display: none;
}
.en_US .lang_hide:not(.en_show) {
  display: none;
}
.ja_JP .lang_hide:not(.ja_show) {
  display: none;
}

/* ==========================================================================
 슬릭 50% 버그
========================================================================== */
.visual-slick-wapper .visuals {
  width: 100%;
}

/* ==========================================================================
 bbs1020 (언론보도 2열 그리드)
========================================================================== */
.bbs1020.card-grid-section .card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.bbs1020.card-grid-section .card-grid {
  gap: 20px 10px;
}
.bbs1020.card-grid-section .card-item {
  width: 100%;
}
.bbs1020.card-grid-section .card-grid .image-range {
  position: relative;
  width: 100%;
  height: 100%;
}
.bbs1020.card-grid-section .card-grid .card-item:hover .image-range .image {
  border-color: var(--secondary_blue_03);
}
@media screen and (max-width: 1024px) {
  .bbs1020.card-grid-section .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .bbs1020.card-grid-section .card-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.loading-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.25);
}
.loading-wrap .loading {
  width: 120px;
  height: 120px;
}
