@charset "utf-8";

/**
 * Filename : common.css
 * Description : skip navigation, title, hidden, ellipsis, width styles
 **/

/* animation */
@keyframes moveTitle {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes aniBox {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mainVisual {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}
@keyframes subVisual {
  from {
    background-size: 100% auto;
  }
  to {
    background-size: 120% auto;
  }
}
@keyframes progress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
@keyframes textClip {
  0% {
    transform: translateY(100%);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  100% {
    transform: translateY(0);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes textBlur {
  0% {
    filter: blur(10px);
    -webkit-filter: blur(10px);
    opacity: 0;
    transform: translateX(var(--aosPlus));
  }
  100% {
    filter: blur(0);
    -webkit-filter: blur(0);
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes textBlur2 {
  0% {
    filter: blur(5px);
    -webkit-filter: blur(5px);
    opacity: 0;
    transform: translateX(var(--aosPlus));
  }
  100% {
    filter: blur(0);
    -webkit-filter: blur(0);
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes circleProgress {
  0% {
    stroke-dashoffset: 95;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

/* ==========================================================================
 skip navigation
========================================================================== */

#skip-navigation a {
  position: absolute;
  left: -9999px;
  top: -9999px;
  z-index: 2000;
}
#skip-navigation a:focus,
#skip-navigation a:active {
  left: 20px;
  top: 0;
  z-index: 9999;
}

/* ==========================================================================
 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-44);
  font-weight: 700;
}
.title-mid {
  color: var(--text-900_title);
  font-size: var(--font-36);
  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%;
}
.title-desc {
  color: var(--text-900_title);
  font-size: var(--font-24);
}
.text-desc {
  color: var(--text-900_title);
  font-size: var(--font-18);
}
.text-desc.dot {
  position: relative;
  padding-left: 16px;
}
.text-desc.dot::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--text-900_title);
  position: absolute;
  left: 0;
  top: 9px;
}
.text-desc.white::before {
  background-color: #fff;
}

.title-wrap {
  display: flex;
  gap: 12px;
}
.title-wrap.column {
  flex-flow: column;
}
.title-wrap.between {
  justify-content: space-between;
}
[class^="text-"].center,
[class^="title-"].center {
  text-align: center;
}
[class^="text-"].white,
[class^="title-"].white {
  color: #fff;
}

/* mobile ============================ */

@media screen and (max-width: 768px) {
  .title-slogan {
    font-size: var(--font-32);
    font-weight: 700;
  }
  .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: 80px 30px;
}
.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);
    gap: 40px;
  }
}
@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;
}

/* 언론보도 */
/* family-card */
.family-card-wrap {
  display: flex;
  gap: 24px;
}
.family-card-wrap.scrollbar {
  overflow: auto;
  padding-bottom: 40px;
}
.family-card-wrap.scrollbar .family-card {
  flex-wrap: unset;
}
.family-card-wrap.scrollbar .family-card li {
  min-width: 586px;
}

.scrollbar::-webkit-scrollbar {
  height: 2px;
}
.scrollbar::-webkit-scrollbar-thumb {
  background: #000; /* 스크롤바 막대 색상 */
}
.scrollbar::-webkit-scrollbar-track {
  background-color: #d9d9d9;
}
.family-card-wrap .left,
.family-card-wrap .right {
  width: 50%;
}

.family-card-wrap .left .family-card {
  height: 100%;
}
.family-card-wrap .right .family-card li {
  width: calc(100% / 2 - 24px);
}
.family-card-wrap .left .family-card .family-card-caption .title-content {
  font-size: 28px;
}
@media screen and (max-width: 768px) {
  .family-card .title-content,
  .family-card-wrap .left .family-card .family-card-caption .title-content {
    font-size: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .family-card-wrap {
    flex-flow: column;
  }
  .family-card-wrap .left,
  .family-card-wrap .right {
    width: 100%;
  }
}
.family-card {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.family-card li {
  width: calc(100% / 4 - 24px);
  flex: 1;
}
.family-card.grid-3 li {
  width: calc(100% / 3 - 24px);
  flex: unset;
}
@media screen and (max-width: 1024px) {
  .family-card.grid-3 li {
    width: 100%;
  }
}
.family-card li > a {
  width: 100%;
  height: 100%;
  display: block;
}
.family-card .family-card-figure {
  height: 100%;
  display: flex;
  flex-flow: column;
  border-radius: 24px;
  border: 2px solid var(--border-02, #e7e7e7);
  background-color: var(--text-white);
  overflow: hidden;
}
.family-card.transparent .family-card-figure,
.family-card.transparent .family-card-figure:hover {
  border: 0;
}
.family-card .family-card-figure:hover {
  border: 2px solid #317cff;
}
.family-card .family-icon {
  width: 100px;
  height: 100px;
  margin-top: auto;
  margin-left: auto;
  position: relative;
}
.family-card .family-card-figure .image {
  width: 100%;
  height: auto;
  aspect-ratio: 342 / 210;
  overflow: hidden;
  position: relative;
  transition: all ease-in-out 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.family-card .family-card-figure .title-content {
  z-index: 1;
}
.family-card .family-card-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.family-card.grid-4 .family-card-figure .title-content {
  font-size: 18px;
}
.family-card .family-card-figure:hover .image img {
  transform: scale(1.2);
  transition: all ease-in-out 0.5s;
}
.family-card .family-card-figure .family-card-caption {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  flex: 1;
  padding: 24px 14px;
}
.family-card .title-content {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 18px;
}
.family-card .title-desc {
  margin-top: -20px;
}
.family-card .subcriptions {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  font-size: 14px;
  font-weight: 400;
  margin-top: auto;
}

.family-card .descriptions {
  font-size: 18px;
  color: var(--text-800_text, #333);
}

@media screen and (max-width: 1024px) {
  .family-card li {
    width: calc(100% / 2 - 24px);
  }
}
@media screen and (max-width: 768px) {
  .family-card-wrap .right .family-card li,
  .family-card li {
    width: 100%;
    flex: unset;
  }
}

/* 서브페이지 공통 작업 */

/* ==========================================================================
 CI
========================================================================== */
.group-section01 .img-ci-cnt {
  margin-bottom: 60px;
  border-radius: 12px;
  border: 1px solid var(--border-02, #e7e7e7);
  height: 400px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 20px;
}
.group-section01 .img-ci {
  width: 100%;
  height: 90px;
  margin: 0 auto;
  object-fit: contain;
}

.group-section01 h2 {
  padding-top: 60px;
  margin-bottom: 20px;
  color: var(--text-900_title, #232527);
  font-size: var(--font-32);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -1.28px;
}
.group-section01 .inner > p {
  margin-bottom: 40px;
  color: var(--text-700, #4a4a4a);
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.72px;
}
.group-section01 h3 {
  color: var(--text-900_title, #161616);
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.96px;
}
.group-section01 .logo-type-box {
  width: 100%;
  height: 250px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid var(--border-02, #e7e7e7);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.group-section01 .logo-type-box img {
  width: 100%;
  height: 50px;
  margin: 0 auto;
  object-fit: contain;
}
.group-section01 .ci-lcl-sections {
  display: flex;
  gap: 30px;
  padding-top: 60px;
}
.group-section01 .ci-lcl-items {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .group-section01 .img-ci-cnt {
    margin-bottom: 20px;
    height: 120px;
  }

  .group-section01 .img-ci {
    height: 40px;
  }
  .group-section01 .inner > p {
    margin-bottom: 24px;
  }
  .group-section01 .logo-type-box {
    padding: 0 24px;
    height: 120px;
  }
  .group-section01 .logo-type-box img {
    height: 40px;
  }

  .group-section01 .ci-lcl-sections {
    display: flex;
    gap: 30px;
    padding-top: 60px;
    flex-direction: column;
  }
  .group-section01 .inner > p {
    margin-bottom: 32px;
  }
  .group-section01 h2 {
    padding-top: 0px;
  }
  .group-section01 .ci-lcl-sections {
    padding-top: 0px;
  }

  .group-warp section.group-section01 .inner .cont-sub-text strong {
    font-size: 24px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -0.96px;
  }
  .group-section01 h2 {
    margin-bottom: 16px;
    font-size: 24px;
    letter-spacing: -0.96px;
  }
  .group-section01 p {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.64px;
  }
}

/*share */

.shares {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  padding: 16px;
  background-color: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
}

.shares > a {
  width: 48px;
  height: 48px;
  background: url("../images/common/ico_link.svg") center / contain no-repeat;
  font-size: 0;
  color: transparent;
}
.shares > a:hover {
  background: url("../images/common/ico_link_hover.svg") center / contain
    no-repeat;
}

.shares > .t {
  background-image: url("../images/common/ico_kakao.svg");
}
.shares > .t:hover {
  background-image: url("../images/common/ico_kakao_hover.svg");
}
.shares > .X {
  background-image: url("../images/common/ico_x.svg");
}
.shares > .X:hover {
  background-image: url("../images/common/ico_x_hover.svg");
}
.shares > .f {
  background-image: url("../images/common/ico_facebook.svg");
}
.shares > .f:hover {
  background-image: url("../images/common/ico_facebook_hover.svg");
}

/* view more btn */
.view-more {
  font-size: 12px;
  font-weight: 700;
  color: #333;
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  gap: 4px;
  margin-left: 24px;
  padding-bottom: 8px;
}
.view-more:hover {
  animation: textBlur 0.5s both;
}
.view-more.white {
  color: #fff;
}
.view-more::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../svg/arrows/arrow_gray.svg) center / contain no-repeat;
}
.view-more.white::after {
  background-image: url(../svg/arrows/arrow_white.svg);
}

.partners {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.partners .box {
  width: 100%;
  height: auto;
  aspect-ratio: 220 / 120;
  border: 1px solid #ccc;
  background-color: #fff;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners .box > img {
  width: 100%;
  height: 40px;
}

@media screen and (max-width: 1024px) {
  .partners {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
@media screen and (max-width: 768px) {
  .partners {
    grid-template-columns: repeat(2, 1fr);
  }
}

.family-about {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.family-about-item {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 30px;
  background-color: #fff;
  border: 1px solid #e7e7e7;
  padding: 56px 24px;
  border-radius: 20px;
}

.family-about-item > img {
  width: 64px;
  height: 64px;
  margin: 0 auto;
}

.family-about-item .text-desc {
  margin-top: -14px;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .family-about {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

@media screen and (max-width: 768px) {
  .family-about {
    grid-template-columns: repeat(1, 1fr);
  }
}

.family-about-icns-cnt {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  background-color: #fff;
  border-radius: 20px;
  padding: 80px 5%;
}
.family-about-icns-cnt.bg-gray {
  background-color: #f5f5f5;
}
.family-about-icns-cnt .family-about-infobox {
  display: flex;
  flex-flow: column;
  gap: 40px;
}
.family-about-icns-cnt .family-about-infotxt {
  display: flex;
  flex-flow: column;
  gap: 4px;
  font-size: 20px;
  font-weight: 700;
}
.family-about-icns-cnt .family-about-infotxt > em {
  font-size: 16px;
  color: #4a4a4a;
  font-weight: 500;
}
.family-about-icns-cnt .family-about-info {
  font-size: 80px;
  font-weight: 800;
  margin-top: auto;
}
.family-about-icns-cnt .family-about-info > em {
  font-size: 28px;
  font-weight: 700;
  margin-left: 8px;
}

@media screen and (max-width: 1024px) {
  .family-about-icns-cnt {
    flex-flow: column;
    padding: 40px;
  }
  .family-about-icns-cnt .family-about-infobox {
    gap: 20px;
  }
  .family-about-icns-cnt .family-about-info {
    font-size: 48px;
  }
  .family-about-icns-cnt .family-about-info > em {
    font-size: 24px;
  }
}

/* ==========================================================================
 표준내부정보관리규정
========================================================================== */

.house-rules .section-sub-text {
  margin-top: 20px;
}
.house-rules .title-group {
  margin-top: 40px;
  margin-bottom: 20px;
}
.house-rules ol li {
  display: flex;
  justify-content: start;
  font-size: 16px;
  gap: 5px;
}
.house-rules ol.order {
  margin-left: 16px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.house-rules .section-sub-text + .title-subsection {
  margin-top: 100px;
}

/**
 * Filename : policies.css
 * Description : 약관 및 정책 styles
 **/

/* ==========================================================================
 page visual
========================================================================== */

.visual-privacy-policy {
  background-image: url("../images/policies/bg_privacy_policy_pc.jpg");
}

/* mobile ============================ */

@media screen and (max-width: 768px) {
  .visual-privacy-policy {
    background-image: url("../images/policies/bg_privacy_policy_mo.jpg");
  }
}

/* ==========================================================================
 개인정보처리방침
========================================================================== */
.privacy-policy #content {
  min-height: auto;
}
.privacy-policy .container-header {
  margin-bottom: 0;
}
.privacy-policy .container-header .heading-block {
  gap: 74px;
}
.privacy-policy .container-header .heading-block p {
  text-align: left;
}

.privacy-policy .title-subsection {
  margin-top: 100px;
}
.privacy-policy .title-subsection.mgt-0 {
  margin-top: 0;
}
.privacy-policy .section-sub-text {
  margin-top: 40px;
}

.privacy-policy .title-group {
  margin-top: 40px;
  margin-bottom: 20px;
}

.privacy-policy ol li {
  display: flex;
  justify-content: start;
  font-size: 16px;
  gap: 5px;
}

.privacy-policy .ol-style-01 li {
  margin-bottom: 10px;
}
.privacy-policy .ol-style-01 li:last-child {
  margin-bottom: 0;
}

.privacy-policy .ol-style-02 {
  margin-top: 40px;
}
.privacy-policy .ol-style-02 > li {
  font-size: 18px;
  margin-bottom: 40px;
}
.privacy-policy .ol-style-02 > li ol {
  margin-top: 17px;
}

.privacy-table {
  width: 100%;
  margin-top: 40px;
  border-top: 1px solid var(--border-04, #232527);
  border-bottom: 1px solid var(--border-04, #232527);
}
.privacy-table tr th {
  padding: 20px 40px;
  background: var(--bg-01, #fbfbfb);
  font-size: 18px;
  font-weight: 700;
  border-bottom: 1px solid var(--border-02, #e7e7e7);
}
.privacy-table tr td {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border-02, #e7e7e7);
}
.privacy-table tr td ol li + li {
  margin-top: 10px;
}
.privacy-table tr:last-child th,
.privacy-table tr:last-child td {
  border-bottom: 0;
}

.privacy-policy .section-sub-text.mgb-20 {
  margin-bottom: 20px;
}
.privacy-policy .section-sub-text.mgt-20 {
  margin-top: 20px;
}
.privacy-policy .cookie-blk {
  margin-top: 40px;
}
.privacy-policy .cookie-title {
  margin: 20px 0 10px 0;
}
.privacy-policy .cookie-last {
  margin-bottom: 40px;
}

.privacy-policy .pp-strong {
  font-size: 24px;
  font-weight: 700;
  margin-top: 40px;
}

/* mobile ============================ */

@media screen and (max-width: 768px) {
  .privacy-policy .container-header .heading-block {
    gap: 40px;
  }
  .privacy-policy .title-subsection {
    margin-top: 60px;
    font-size: 18px;
  }
  .privacy-policy .title-group {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 16px;
  }
  .privacy-policy .section-sub-text {
    margin-top: 20px;
  }
  .privacy-policy ol li {
    font-size: 14px;
  }
  .privacy-policy .ol-style-02 {
    margin-top: 20px;
  }
  .privacy-policy .ol-style-02 > li {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .privacy-table tr th {
    width: 78px;
    padding: 10px;
    font-size: 14px;
  }
  .privacy-table tr td {
    padding: 10px;
    font-size: 14px;
  }
  .privacy-policy tr td ol li {
    font-size: 14px;
  }

  .privacy-policy .pp-strong {
    font-size: 14px;
  }
}

/* ==========================================================================
 마케팅 활용 동의
========================================================================== */
.privacy-policy .table-list {
  margin-top: 40px;
}
.privacy-policy .table-list table {
  width: 100%;
  border-top: 1px solid var(--border-04, #232527);
  border-bottom: 1px solid var(--border-02, #e7e7e7);
}
.privacy-policy .table-list table tr th {
  font-size: 18px;
  font-weight: 700;
  padding: 20px 16px;
  background: var(--bg-01, #fbfbfb);
  border-bottom: 1px solid var(--border-02, #e7e7e7);
}
.privacy-policy .table-list table tr td {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  padding: 20px 16px;
}
