@charset "UTF-8";

body{
  width: 100vw;
  overflow-x: hidden;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  min-height: 74px;
  z-index: 1000;
  background-color: #FFF;
  color: var(--gray900);
  transition: all 0.5s ease-in-out;
}

#header.hide{
  transition: all 1s ease-in-out;
  top: -100%;
}

@media screen and (min-width: 1260px) {
  #header::after,
  .gnb-sub::before{
    content: '';
    position: absolute;
    top: 74px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #EBEBEB;
  }
  #header.dark::after{
    display: none;
  }
}
#header::after{
  z-index: 1000;
}
.gnb-sub::before{
  z-index: 1001;
}
.header-inner {
  padding: 18px 40px 0;
  display: flex;
  align-items: flex-start;
  height: 100%;
}
.header-inner.active{
  border-bottom: 1px solid #EBEBEB;
}
.header-inner .logo {
  margin-right: 42px;
  width: 107px;
  height: 40px;
  background: url(/images/logo-capstec.svg) no-repeat center/contain;
}
.header-inner .link-group{
  margin-left: auto;
  display: flex ;
  gap: 8px;
}
.header-inner .btn-ic{
  margin-left: 24px;
  width: 36px;
  height: 36px;
  padding: 0;
}
.top-gnb {
  margin-top: -18px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.top-gnb > li{
  width: 140px;
}
.top-gnb > li > a{
  width: 100%;
  display: block;
  padding: 25px 6px;
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 600;
  border-bottom: 2px solid transparent;
}
.top-gnb > li:hover > a{
  color: var(--blue700);
  border-bottom: 2px solid var(--primary);
}
#header.dark{
  background-color: rgba(218, 218, 218, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blue(10px);
}
#header.dark .header-inner:has(.top-gnb) .logo{
  background: url(/images/logo-capstec-wh.svg) no-repeat center / contain;
}
#header.dark .header-inner:has(.top-gnb){
  color: #FFF !important;
}
#header.dark .header-inner:has(.top-gnb) i{
  background-color: var(--gray50) !important;
}
#header.dark .header-inner:has(.top-gnb) .top-gnb > li:hover > a{
  color: #FFF;
  border-bottom: 2px solid #FFF;
}
#header.dark .header-inner:has(.top-gnb) .link-group .btn-outline-gray{
  border-color: rgba(239, 240, 242, 0.30);
  color: var(--gray100);
  background-color: transparent;
}
#header.dark .top-gnb > li > a{
  color: var(--gray200);
}

.gnb-sub {
  padding-top: 24px;
  padding-bottom: 48px;
  display: none;
  flex-direction: column;
  gap: 12px;
}
.gnb-sub.active{
  display: flex;
}
.gnb-sub li > a{
  display: block;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 500;
  color: var(--gray800);
}
.gnb-sub li > a:hover{
  color: var(--blue700);
}

#header.dark .gnb-sub li > a,
#header.dark .gnb-sub li > a:hover{
  color: #FFF;
}

.gnb-full {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #FFF;
  border-bottom: 1px solid #EBEBEB;
}
.gnb-full.active{
  display: block;
}
.gnb-full .header-inner {
  padding-bottom: 18px;
}
.gnb-full > ul{
  display: flex;
  flex-direction: column;
  padding: 40px;
  gap: 40px;
  max-height: calc(100vh - 74px);
  overflow-y: auto;
}
.gnb-full > ul > li {
  display: flex;
  gap: 24px;
}
.gnb-full > ul > li > a{
  display: block;
  width: 164px;
  font-size: 28px;
  font-weight: 600;
  line-height: 42px;
}
.gnb-full > ul > li:not(:has(.gnb-sub01)) > a{
  width: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}
.gnb-full > ul > li > ul.gnb-sub01{
  display: flex;
  width: calc(100% - 188px);
  gap: 24px;
}
.gnb-full > ul > li > ul.gnb-sub01 > li{
  width: calc((100% - 96px)/5);
}
.gnb-full > ul > li > ul.gnb-sub01 > li > a{
  font-size: 18px;
  font-weight: 500;
  line-height: 42px;
}
.gnb-full > ul > li > ul.gnb-sub01 > li > ul.gnb-sub02 {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gnb-full > ul > li > ul.gnb-sub01 > li > ul.gnb-sub02 > li > a{
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--gray800);
}
.gnb-full > ul > li > ul.gnb-sub01 > li > ul.gnb-sub02 > li > a > span{
  font-size: 13px;
}
@media screen and (max-width: 1440px) {
  #header .link-group{
    display: none;
  }
  #header .header-inner.active .link-group{
    position: absolute;
    right: 40px;
    bottom: 48px;
    display: block;
  }
  #header .header-inner.active .link-group li{
    display: block;
    text-align: right;
    margin-top: 8px;
  }
  #header .btn-ic{
    margin-left: auto;
  }
}
@media screen and (max-width: 1259px){
  .tablet-hide{
    display: none !important;
  }
  #header{
    min-height: 60px;
  }
  .header-inner{
    padding: 10px 20px;
  }
  .header-inner .btn-ic{
    width: auto;
  }
  .header-inner .btn-menu .ic-lg{
    width: 20px !important;
    height: 20px !important;
  }
  .top-gnb{
    display: none;
  }
  .gnb-full{
    width: 50%;
    right: 0;
    left: auto;
    overflow-y: auto;
  }
  .gnb-full::before{
    content: '';
    position: fixed;
    top: 60px;
    left: 0;
    width: 50vw;
    height: calc(100vh - 60px);
    background-color: rgba(0, 0, 0, 0.5);
  }
  .gnb-full .header-inner{
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .gnb-full .header-inner .logo{
    display: none;
  }
  /*
  .gnb-full > ul > li:has(.gnb-sub01) > a{
    display:none;
  }
  */
  .gnb-full > ul{
    padding: 20px;
    gap: 10px;
    max-height: calc(100vh - 60px);
    height: calc(100vh - 60px);
    overflow-y: auto;
  }
  .gnb-full  ul  li{
    width: 100%;
    flex-direction: column;
  }
  .gnb-full > ul > li{
    gap: 12px;
  }
  .gnb-full > ul > li > a{
    width: 100%;
    font-size: 1.6rem;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 16px;
  }
  .gnb-full > ul > li > a .ic-lg{
    width: 20px !important;
    height: 20px !important;
  }
  .gnb-full > ul > li > ul.gnb-sub01{
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
  }
  .gnb-full > ul > li > ul.gnb-sub01 > li{
    width: 100%;
    padding-left: 20px;
  }
  .gnb-full > ul > li > ul.gnb-sub01 > li > a {
    display: block;
    font-size: 1.4rem;
    line-height: 1.4;
    font-weight: 500;
  }
  .gnb-full > ul > li > ul.gnb-sub01 > li > ul.gnb-sub02{
    display: none;
  }

  .gnb-full > ul > li.active > ul.gnb-sub01{
    display: flex;
  }
  .gnb-full > ul > li:has(.gnb-sub01) > a{
    background: url(/images/ic/ic-sm-arrow-down.svg) no-repeat right top;
    background-size: 20px 20px;
  }
  .gnb-full > ul > li:has(.gnb-sub01).active > a{
    background: url(/images/ic/ic-sm-arrow-up.svg) no-repeat right top;
    background-size: 20px 20px;
  }
}
@media screen and (min-width: 1260px){
  .tablet-show{
    display: none;
  }
  .only-tablet-show{
    display: none;
  }
}
@media screen and ((min-width: 768px) and (max-width: 1259px)){
.only-tablet-hide{
  display: none;
}
}
@media screen and (min-width: 768px){
  .mo-show{
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .mo-hide{
    display: none;
  }
  .gnb-full{
    width: 100%;
  }
  .gnb-full::before{
    display: none;
  }
  .only-tablet-show{
    display: none;
  }
}
@media screen and (min-width: 378px){
  .x-mo-show{
    display: none;
  }
}
main{
  margin-top: 74px;
  width: 100vw;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  main{
    margin-top: 60px;
  }
}
.fixed-btn-group{
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: flex-end;
  gap: 10px;
}
.fixed-btn-group button{
  width: 54px;
  height: 54px;
  padding: 15px;
  gap: 0;

}
.fixed-btn-group button span{
  width: 0;
  overflow: hidden;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02rem;
  transition: all 0.5s ease-in-out;
}

.fixed-btn-group button:has(span):hover{
  width: auto;
}
.fixed-btn-group button:hover span{
  width: auto;
  margin-right: 6px;
}
/* 251111 수정 s. */
.fixed-btn-group .btn-insta{
  padding: 0;
  background: url(/images/bg-insta.png) no-repeat center / cover;
}
.fixed-btn-group .btn-blog{
  padding: 0;
  background: #31B44A;
}
.fixed-btn-group .btn .ic-insta{
  -webkit-mask-image: url("/images/ic-insta.svg");
  mask-image: url("/images/ic-insta.svg");
  background-color: #FFF;
}
.fixed-btn-group .btn .ic-lg-blog{
  width: 26.8px;
  -webkit-mask-image: url("/images/ic-blog.svg");
  mask-image: url("/images/ic-blog.svg");
  background-color: #FFF;
}
@media screen and (max-width: 767px) {
  .fixed-btn-group{
    bottom: 20px;
    right: 20px;
  }
  .fixed-btn-group button{
    width: 40px;
    height: 40px;
    padding: 8px;
  }
  .fixed-btn-group .btn-blog,
  .fixed-btn-group .btn-insta{
    padding: 8px;
  }
}
/* 251111 수정 e. */
#footer{
  margin-top: 80px;
  padding: 40px 0;
  background-color: var(--gray50);
}
.footer-top a{
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 500;
  color: var(--gray800);
  letter-spacing: -0.28px;
}
.accordion-sm{
  position: relative;
  width: 160px;
  background: #FFF;
}
.accordion-sm button,
.accordion-sm ul li a{
  display: block;
  position: relative;
  width: 100%;
  height: 40px;
  padding: 8px 16px;
  text-align: left;
}
.accordion-sm button{
  border: 1px solid var(--gray100);
}
.accordion-sm ul{
  display: none;
  position: absolute;
  left: 0;
  bottom: 39px;
  width: 100%;
  background: #FFF;
  border: 1px solid var(--gray100);
  border-bottom-color: #FFF;
}
.accordion-sm.active ul,
.accordion-sm ul.active{
  display: block;
}
.accordion-sm button span,
.accordion-sm ul li a span{
  color: var(--gray800);
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: -0.32px;
}
.accordion-sm button .ic,
.accordion-sm ul li a .ic{
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}
.sns-group a{
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  height: 40px;
  background-color: #FFF;
  border: 1px solid var(--gray100);
}

.ic-blog{
  width: 34px;
  height: 18.42px;
  background: url(/images/ic/ic-blog.svg) no-repeat center;
  background-size: contain;
}
.ic-instagram{
  width: 20px;
  height: 20px;
  background: url(/images/ic/ic-instagram.svg) no-repeat center;
  background-size: contain;
}
.footer-bottom{
  font-size: 1.4rem;
  line-height: 1.714;
  font-weight: 400;
  color: var(--gray800);
  letter-spacing: -0.28px;
}
.footer-bottom p:first-of-type{
  margin: 24px 0;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.32px;
}
.footer-bottom ul{
  gap: 0;
}
.footer-bottom ul li:not(:last-of-type)::after{
  content: '';
  display: inline-block;
  margin: 0 12px;
  width: 1px;
  height: 10px;
  background-color: var(--gray300);
}
/* FAQ */
.title-wrapper{
  /*
  padding: clamp(60px, 7.8125vw, 80px) 0;
  */
  padding: clamp(60px, 7.8125vw, 80px) 0 clamp(40px, 5.2084vw, 60px);
  text-align: center;
}
.title-wrapper .title{
  font-size: clamp(3.6rem, 3.174vw, 5.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray900);
}
.title-wrapper .title span{
  display: block;
  margin-top: 8px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--gray600);
}
.title-wrapper p{
  margin-top: 40px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--gray800);
  word-break: keep-all;
}
@media (max-width: 1259px){
  .title-wrapper .title span{
    margin-top: 4px;
    font-size: 1.6rem;
  }
  .title-wrapper p{
    margin-top: 20px;
    font-size: 1.6rem;
  }
}
/* tab */
.tab-header-wrapper{
  margin: 16px -20px 0;
  width: calc(100% + 40px);
  overflow-x: auto;
  -ms-overflow-style: none;
  /*
  transition: all 0.5s ease-in-out;
  */
}
.tab-header-wrapper.fixed{
  margin-top: 0;
  padding-left: 20px;
  padding-right: 20px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10; /* 250923 추가 */
}
.tab-header-wrapper.hide{
  transition: all 1s ease-in-out;
  top: -100%;
}
.tab-header-wrapper::-webkit-scrollbar{
  display: none;
}
.tab-header-wrapper{
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}
.tab-header{
  margin: 0 auto;
  padding: 4px;
  border-radius: 16px;
  display: flex;
  width: fit-content;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: rgba(227, 228, 231, 0.50);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.tab-header-wrapper.full-width .tab-header{
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 0;
}
.tab-header-button{
  width: max-content;
  height: 44px;
  padding: 0 24px;
  border-radius: 12px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--gray800);
}
.tab-header-button.active{
  background-color: var(--blue700);
  color: #FFF;
  font-weight: 600;
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.tab-content-inner{
  padding-top: 20px;
}
/*
@media screen and (min-width: 1260px) {
  .tab-content-wrapper{
    padding-left: 20px;
    padding-right: 20px;
  }
}
*/
@media screen and (max-width: 767px) {
  /*
  .tab-header-wrapper{
    background-color: rgba(227, 228, 231, 0.50);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .tab-header-wrapper .tab-header{
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 0;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }*/
}
.page-title{
  margin-top: clamp(40px, 3.125vw, 60px);
  text-align: center;
  font-size: clamp(3.2rem, 3.6458vw, 4rem);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.page-desc{
  margin-top: 10px;
  text-align: center;
  font-size: clamp(1.6rem, 2.083vw, 1.8rem);
  line-height: 1.5;
  font-weight: 500;
  color: var(--gray700);
  word-break: keep-all;
}
.page-desc.mt40{
  margin-top: clamp(20px, 2.083vw, 40px);
}
.page-desc02{
  text-align: center;
  font-size: clamp(1.4rem, 1.8229vw, 1.6rem);
  line-height: 1.5;
  font-weight: 500;
  color: var(--gray500);
}
.complain-title{
  color: var(--gray800);
  font-size: clamp(2.4rem, 3.6458vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.complain-desc{
  margin-top: 20px;
  margin-bottom: 40px;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
  color: var(--gray800);
  word-break: keep-all;
}
.complain-desc ol{
  list-style: decimal;
  padding-left: 20px;
}
.complain-desc ul{
  padding-left: 10px;
}
.complain-desc ul li{
  padding-left: 4px;
}
.complain-desc ul li::marker{
  content: '-';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: var(--gray100);
  border-radius: 50%;
  text-align: left;
  line-height: 20px;
}
/* accordion */
.accordion-list{
  margin-top: clamp(60px, 7.8125vw, 80px);
  border-top: 2px solid var(--gray700);
}
.accordion-list li{
  padding: 20px 124px 20px 60px;
  border-bottom: 1px solid var(--gray200);
  background-image: url(/images/ic/ic-lg-arrow-down.svg);
  background-repeat: no-repeat;
  background-position: right 60px top 20px;
  background-size: 24px;
}
.accordion-list li div{
  display: flex;
  gap: 40px;
  flex-wrap: nowrap;
  align-items: flex-start;
  word-break: keep-all;
}
.accordion-list li div > span{
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--gray900);
}
.accordion-list li div > p{
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 600;
}
.accordion-list li > div:first-of-type{
  cursor: pointer;
}
.accordion-list li > div:last-of-type{
  display: none;
  padding: 10px 0
}
.accordion-list li > div:last-of-type>div{
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 400;
}
.accordion-list li.active {
  background-color: rgba(235, 244, 255, 0.50);
  background-image: url(/images/ic/ic-lg-arrow-up.svg);
}
.accordion-list li.active > div:last-of-type{
  display: flex;
}
@media screen and (max-width: 1259px) {
  .accordion-list li{
    padding: 10px 44px 10px 10px;
    background-position: right 10px top 10px;
    background-size: 2.4rem;
  }
  .accordion-list li div{
    gap: 10px;
  }
  .accordion-list li div > span,
  .accordion-list li div > p{
    font-size: 1.6rem;
  }
}
.input-wrapper{
  padding-top: 40px;
  padding-bottom: 40px;
  border-top: 2px solid var(--gray700);
  border-bottom: 2px solid var(--gray700);
}
.inner-wrapper{
  width: 100%;
  max-width: 810px;
  margin: 0 auto;
  padding: 0 20px;
}
.form-info{
  margin-top: 40px;
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--gray500);
  justify-content: flex-end;
}
.flex-box.type02 .form-group,
.flex-box.type02 .half-box,
.flex-box.type02.half-box > *{
  width: calc((100% - 20px)/2);
}
.flex-box.type02.gap10 .form-group,
.flex-box.type02.gap10 .half-box,
.flex-box.type02.gap10.half-box > *{
  width: calc((100% - 10px)/2);
}
@media screen and (max-width: 767px) {
  .form-info{
    margin-top: 20px;
    justify-content: space-between
  }
  .flex-box.type02 .form-group,
  .flex-box.type02 .half-box,
  .flex-box.type02.half-box > *{
    width: 100%;
  }
}
.form-group label{
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--gray700);
  margin-bottom: 10px;
}
.form-group input, .form-group textarea, .form-group .select{
  width: 100%;
}
.form-group .rdo-group{
  display: flex;
  height: 48px;
  gap: 20px;
  align-items: center;
}
.agree-wrapper{
  margin-top: 40px;
  word-break: keep-all;
}
.agree-info{
  margin: 10px auto;
  padding: 10px 20px;
  background: var(--gray100);
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--gray800);
}

.agree-info-list {
  margin-top: 10px;
  display: flex;
  flex-flow: wrap row;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .inner-wrapper{
    padding: 0;
  }
  .agree-wrapper{
    margin-top: 20px;
  }
  .agree-info-list{
    flex-direction: column;
  }
}

.agree-info-list>li {
  flex: 1 0 0;
  border: 1px solid var(--gray100);
  display: flex;
  flex-direction: column;
}

.agree-info-list>li>p {
  font-size: 14px;
  line-height: 1.4;
  color: var(--gray700);
  word-break: keep-all;
}

.agree-info-list>li>p:first-of-type {
  padding: 4px 10px;
  background-color: var(--gray100);
}

.agree-info-list>li>p:nth-of-type(2) {
  flex: 1;
  display: flex;
  padding: 10px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}
.agree-info-list + button{
  margin-top: 40px;
}
@media (max-width: 767px){
  .agree-info-list + button{
    margin-top: 20px;
  }
}
.list-wrapper{
  margin-top: clamp(60px, 7.8125vw, 80px);
  border-top: 2px solid var(--gray700);
}
.list-group{
  display: flex;
  flex-direction: column;
}
.list-group li{
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  border-bottom: 1px solid var(--gray200);
}
.list-group li p{
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--gray900);
}
.list-group li .btn-group{
  display: flex;
  gap: 12px;
}
.addr-wrapper, .addr-wrapper .flex-box{
  gap: 10px;
}
@media screen and (max-width: 1259px){
  .list-group li{
    padding: 20px;
  }
}
@media screen and (max-width: 767px){
  #footer{
    margin-top: 60px;
  }
  .list-group li{
    padding: 16px 8px;
    gap: 20px;
  }
  .list-group li p{
    font-size: 1.6rem;
  }
  .footer-top{
    display: block !important;
  }
  .sns-group{
    margin-top: 16px;
    gap: 10px;
  }
}

.post-code{
  width: 160px;
}
input[type="text"].input-square, .input-square{
  padding: 12px 10px;
  border: 0;
  border-radius: 0;
  background: var(--gray100);
}
.form-group .chk-group{
  min-height: 48px;
  padding: 0 10px;
  border-radius: 8px;
  border: 1px solid var(--gray200);
}
.rdo-group label, .chk-group label{
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .form-group .chk-group{
    padding: 2rem;
  }
}
.area-container{
  max-height: 278px;
  flex: 1 0 0;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px;
  border-radius: 4px;
  border: 1px solid var(--gray200);
  align-content: flex-start;
}
.area-container .btn{
  border: 0;
  justify-content: flex-start;
  text-align: left;
  padding: 0;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
  color: var(--gray800);
}
.area-container .btn:hover{
  background-color: #FFF;
  font-weight: 600;
}
.area-container .btn.active{
  color: var(--blue);
  font-weight: 700;
}
.area-list{
  margin-top: 8px;
  padding: 4px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.area-list li {
  display: flex;
  gap: 6px;
  height: 28px;
  padding: 0 12px;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background: var(--blue100);
  color: var(--blue700);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.23077;
}
.area-list li button{
  border: 0;
  padding: 0;
  background-color: transparent;
}
.area-list li button .ic{
  margin-top: 4px;
  background-color: var(--gray500);
  vertical-align: top;
}
.datepicker, .datepicker-wrapper input{
  font-size: 1.4rem;
  line-height: 1.42857;
  background: url(/images/ic/ic-x-sm-calendar.svg) no-repeat center right 12px/12px 12px;
}
@media screen and (max-width: 767px) {
  .list-group li .btn-sm.btn-round{
    width: 3.6rem;
    height: 3.6rem;
    padding: 1rem;
    border-radius: 50%;
  }
}
.form-group .pick-year-wrapper,
.form-group .datepicker,
.form-group .datepicker-wrapper{
  width: 135px;
}
.form-group .pick-date,
.form-group .pick-time{
  width: 110px;
}
@media screen and (max-width: 820px) {
  .form-group .pick-year-wrapper,
  .form-group .datepicker,
  .form-group .datepicker-wrapper{
    width: calc(100% - 210px);
  }
  .form-group .pick-date,
  .form-group .pick-time{
    width: 95px;
  }
}
@media screen and (max-width: 767px) {
  .form-group .pick-year-wrapper,
  .form-group .datepicker,
  .form-group .datepicker-wrapper{
    flex: 1 0 0;
    max-width: 50%;
  }
  .form-group .pick-date,
  .form-group .pick-time{
    min-width: 80px;
    width: calc(50% - 5px);
  }
}
.network-wrapper{
  margin-top: 80px;
  margin-bottom: 120px;
  height: 800px;
}
#map{
  width: 100%;
  height: 100%;
  background-color: var(--gray100);
}
.network-wrapper .network-map{
  flex: 1 0 0;
  border-radius: 24px;
  overflow: hidden;
}
.network-wrapper .network-list{
  width: 384px;
  max-height: 800px;
  overflow-y: auto;
}
.network-wrapper .network-list-group{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.network-list-group .btn-network{
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  padding: 20px;
  border-radius: 16px;
  border: 2px solid var(--gray100);
  text-align: left;
}
.network-list-group .btn-network.active{
  border-color: var(--blue);
}
.network-list-group .btn-network p{
  color: var(--gray700);
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: -0.02rem;
  word-break: keep-all;
}
.network-list-group .btn-network p:first-of-type{
  color: var(--gray900);
  font-size: 1.6rem;
  line-height: 1.4;
  letter-spacing: -0.32px;
  font-weight: 600;
}
@media screen and (max-width: 1259px) {
  .network-wrapper{
    margin-top: 0;
    margin-bottom: 60px;
    height: auto;
    flex-direction: column;
  }
  .network-wrapper .network-map{
    flex: none;
    width: 100%;
    height: 78.125vw;
    min-height: 290px;
    max-height: 600px;
  }

  .network-wrapper .network-list{
    width: 100%;
  }
}
/* sub banner */
.sub-banner-container{
  width: 100%;
  height: 598px;
  position: relative;
  margin-bottom: clamp(4px, 0.5208vw, 40px);
  /*
  margin-bottom: 44px;
  */
}
.sub-banner{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px 40px;
  overflow: hidden;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.sub-banner-container.full-width .sub-banner{
  padding: 0;
}
.sub-banner-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  z-index: 1;
}
.sub-banner-container.full-width .sub-banner-img{
  border-radius: 0;
}
.sub-banner-container h1{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  color: #FFF;
  font-size: 5.2rem;
  font-weight: 700;
  line-height: 1.2;
}
.sub-banner-container h1 span{
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.80);
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
}
.sub-banner-content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 100%;
  padding: 0 20px;
}
.sub-banner-container .sub-banner-content h1{
  position: static;
  transform: none;
  text-align: center;
}
.sub-banner-container .sub-banner-content p{
  margin-top: 40px;
  color: #FFF;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 1259px) {
  .sub-banner{
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {

  .sub-banner-container{
    height: 500px;
  }
  .sub-banner-container h1{
    font-size: 3.6rem;
  }
  .sub-banner-container h1 span{
    margin-top: 4px;
    font-size: 1.6rem;
  }
}
.social-list{
  margin-top: clamp(60px, 7.8125vw, 80px);
}
ul.flex-box.type03 > li{
  width: calc((100% - 40px)/3);
  border-radius: 16px;
  overflow: hidden;
}
/* 250923 수정 s. */
ul.flex-box.type03 > li .social-img{
  position: relative;
  display: block;
  width: 100%;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border: 1px solid var(--gray200);
}
ul.flex-box.type03 > li .social-img::after{
  content:'';
  display: block;
  padding-top: 100%;
}
ul.flex-box.type03 > li .social-img img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* 250923 수정 e. */
ul.flex-box.type03 > li .social-info{
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1.1458vw, 16px);
  background-color: var(--gray50);
}
ul.flex-box.type03 > li .social-info p:first-of-type{
  height: clamp(4.2rem, 6.249vw, 6rem);
  color: var(--gray800);
  font-size: clamp(1.4rem, 2.083vw, 2rem);
  font-weight: 500;
  line-height: 1.5;
}
ul.flex-box.type03 > li .social-info p.date{
  color: var(--gray600);
  font-size: clamp(1.4rem, 2.083vw, 1.8rem);
  line-height: 1.4;
  letter-spacing: -0.02rem;
}
@media screen and (max-width: 767px) {
  ul.flex-box.type03 > li{
    width: calc((100% - 20px)/2);
  }
}
/* recruit */
.recruit-img{
  display: block;
  margin : 40px auto;
  width: 504px;
}
.recruit-list{
  margin-top: 40px;
  margin-bottom: 80px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
}
.recruit-list li{
  flex: 1 0 0;
  max-width: 328px;
  display: block;
  padding: 20px;
  border-radius: 16px;
  background: rgba(235, 244, 255, 0.70);
  word-break: keep-all;
}
.recruit-list li .recruit-list-img{
  overflow: hidden;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.recruit-list li p:first-of-type{
  color: var(--gray900);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}
.recruit-list li p:nth-of-type(2){
  color: var(--blue700);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}
.recruit-list li p:nth-of-type(2) strong{
  font-size: 4rem;
}
.recruit-list li p:nth-of-type(3){
  margin-top: clamp(10px, 1.3021vw, 16px);
  color: var(--gray800);
  font-size: clamp(1.6rem, 2.083vw, 1.8rem);
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .tab-content.tab-recruit01 .recruit-list{
    flex-direction: column;
  }
  .tab-content.tab-recruit01 .recruit-list li{
    width: 100%;
    max-width: 100%;
  }
  .tab-content.tab-recruit01 .recruit-list li p:nth-of-type(3){
    margin-top: 1rem;
  }
}
.tab-content.tab-recruit02 .recruit-list li{
  max-width: 100%;
  background: var(--blue100);
  padding: 0;
}
.tab-content.tab-recruit02 .recruit-list li .recruit-list-text{
  padding: 40px;
  text-align: center;
}
.tab-content.tab-recruit02 .recruit-list li .recruit-list-text p:first-of-type{
  color: var(--gray800);
  font-size: clamp(2rem,2.083vw,2.4rem);
  font-weight: 600;
  line-height: 1.4;
}
.tab-content.tab-recruit02 .recruit-list li .recruit-list-text p:nth-of-type(2){
  margin-top: 20px;
  color: var(--gray700);
  font-size: clamp(1.6rem,1.8229vw,1.8rem);
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 1259px) {
  .tab-content.tab-recruit02 .recruit-list li .recruit-list-text{
    padding: 20px;
  }
  .tab-content.tab-recruit02 .recruit-list li .recruit-list-text p:nth-of-type(2){
    margin-top: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .tab-content.tab-recruit02 .recruit-list{
    flex-direction: column;
  }
  .tab-content.tab-recruit02 .recruit-list li{
    width: 100%;
    max-width: 100%;
  }
  .tab-content.tab-recruit02 .recruit-list li p:nth-of-type(3){
    margin-top: 1rem;
  }
}
/* index */
.index main{
  margin-top: 0;
}
.main-banner{
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 40px;
  background: #000;
  overflow: hidden;
}
.main-banner-video{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.main-banner-content{
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 40px;
}

/*
@media (max-width: 1259px){
  .main-banner{
    background-image: url(/images/main-banner-tb.png);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
  }
}
@media (max-width: 768px) {
  .main-banner{
    background-image: url(/images/main-banner-mo.png);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    animation: none;
  }
}
*/
.main-banner-content h1{
  color: #FFF;
  font-size: clamp(3.6rem, 6.51vw, 9rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.02rem;
}
.main-banner-content p{
  color: rgba(255, 255, 255, 0.90);
  font-size: clamp(1.6rem, 2.083vw, 2rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.01rem;
}
.main-banner .scroll-down{
  position: absolute;
  bottom: 134px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.5s ease-in-out;
  opacity: 1;
  z-index: 3;
}
.main-banner .scroll-down.hide {
  opacity: 0;
}
.main-banner .scroll-down span{
  color: rgba(255, 255, 255, 0.60);
  text-align: center;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.5;
}
.main-banner .scroll-down div{
  height: 44px;
  overflow: hidden;
}

.main-banner .scroll-down div .ic {
  animation: scrollDownBounce 2s ease-in-out infinite;
}
@keyframes scrollDownBounce {
  0%,100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

.main-slide .swiper {
  width: 100%;
  height: 100%;
  padding: 100px 0 160px;
  overflow: visible; /* 이미지 전체가 보이도록 */
  transition: all 0.5s ease;
  background: linear-gradient(180deg, rgba(10, 30, 57, 0.00) 50%, #0A1E39 100%), #000;
}
.main-slide .swiper.bg01{
  background: linear-gradient(180deg, rgba(12, 49, 43, 0.00) 70.73%, #0C312B 100%), #000;
}
.main-slide .swiper.bg02{
  background: linear-gradient(180deg, rgba(10, 30, 57, 0.00) 71.25%, #0A1E39 100%), #000;
}
.main-slide .swiper.bg03{
  background: linear-gradient(180deg, rgba(12, 49, 43, 0.00) 71.46%, #0C312B 100%), #000;
}
.main-slide .swiper-pagination{
  top: 100px !important;
  bottom: auto;
  left: 40px !important;
  color: #FFF;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.main-slide .swiper-pagination-bullet {
  width: auto;
  height: 24px;
  display: flex;
  align-items: center;
  color: #aaa;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s;
  padding: 0;
  background: transparent;
  border: none;
}
.main-slide .swiper-pagination-bullet span.ic {
  background-color: var(--green);
  margin-right: 8px;
  transition: all 0.3s;
  opacity: 0;
}
.main-slide .swiper-pagination-bullet:nth-of-type(odd) span.ic {
  background-color: var(--blue);
}
.main-slide .swiper-pagination-bullet-active {
  color: #fff;
  font-weight: 600;
  opacity: 1;
  text-decoration: underline;
}
.main-slide .swiper-pagination-bullet-active span.ic {
  opacity: 1;
}
.main-slide .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow: visible; /* 이미지가 잘리지 않도록 visible로 변경 */
}
.main-slide .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: contain; /* 이미지가 잘리지 않도록 contain으로 변경 */
  border-radius: 24px;
  opacity: 0.5;
}
.main-slide .swiper-slide.swiper-slide-active img{
  opacity: 1;
}
.main-slide-item-content{
  margin-bottom: clamp(40px, 6.25vw, 60px);
}
.main-slide-item-content h2{
  color: #FFF;
  text-align: center;
  font-size: clamp(3.2rem, 5.625vw, 7.2rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.025rem;
}
.main-slide-item-content p{
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.90);
  text-align: center;
  font-size: clamp(1.6rem, 2.083vw, 2rem);
  font-weight: 600;
  line-height: 1.5;
  word-break: keep-all;
}
@media (max-width: 1260px){
  .main-slide-item-content p{
    height: 9.3735vw;
  }
}
.main-slide-item-content{
  opacity: 0;
  transition: all 0.5s ease;
}
.main-slide .swiper-slide-active .main-slide-item-content{
  opacity: 1;
}
.main-content{
  padding: clamp(80px, 10.4167vw, 100px) 0;
}
.main-content .title{
  text-align: center;
  color: var(--gray900);
  font-size: clamp(3.2rem, 6.25vw, 6.2rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.025rem;
}
.main-content .title span{
  display: block;
  margin-top: 8px;
  font-size: clamp(1.6rem, 2.083vw, 2rem);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.025rem;
  color: var(--gray600);
}
.main-content .service-list{
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
.main-content .service-list li{
  position: relative;
  width: calc((100% - 40px)/3);
  display: block;
  border-radius: 24px;
  overflow: hidden;
}
.main-content .service-list li:last-of-type{
  width: calc((100% - 40px)/3 * 2 + 20px);
}
.main-content .service-list li .service-item-content{
  position: absolute;
  bottom: clamp(20px, 2.6042vw, 30px);
  left: clamp(20px, 2.6042vw, 30px);
}
.main-content .service-list li:hover picture img{
  transition: all 0.3s ease;
  transform: scale(1.05);
}
.main-content .service-list li:hover .btn.hover-blue{
  background-color: var(--blue);
  color: var(--white100);
}
.main-content .service-list li:hover .btn.hover-green{
  background-color: var(--green);
  color: var(--white100);
}
.main-content .service-list li:hover .btn.hover-blue .ic,
.main-content .service-list li:hover .btn.hover-green .ic {
  background-color: var(--white100);
}

.main-content .service-list li .service-item-content p{
  font-size: clamp(2.4rem, 3.6458vw, 3.6rem);
  font-weight: 600;
  line-height: 1.2;
  color: #FFF;
}
.main-content .service-list li .service-item-content button{
  margin-top: 24px;
}
@media (max-width: 1260px){
  .main-content .service-list li .service-item-content p{
    font-size: 2.4rem;
  }
  .main-content .service-list li .service-item-content button{
    margin-top: 10px;
    height: 36px;
    padding: 6px 16px;
    font-size: 1.4rem;
    font-weight: 700;
  }
}
@media (max-width: 767px){
  .main-content .service-list li,
  .main-content .service-list li:last-of-type{
    width: calc((100% - 20px)/2);
  }
}
@media (max-width: 480px){
  .main-content .service-list li,
  .main-content .service-list li:last-of-type{
    width: 100%;
  }
}
.main-content .instagram-swiper{
  padding-top: 100px;
}
@media (max-width: 1260px){
  .main-content .instagram-swiper{
    margin-right: -20px;
    padding-top: 40px;
  }
}

.main-content .instagram-swiper .swiper-button-next,
.main-content .instagram-swiper .swiper-button-prev{
  position: absolute;
  top: 40px !important;
  left: auto !important;
  right: 0 !important;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #FFF;
  border: 1px solid var(--gray200);
  color: var(--gray900);
  justify-content: center;
  align-items: center;
}

.main-content .instagram-swiper .swiper-slide a{
  display: block;
  position: relative;
  width: 100%;
  padding-top: 125%;
  overflow: hidden;
  background: #f3f4f6;
  border-radius: 16px;
}

.main-content .instagram-swiper .swiper-slide img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.main-content .instagram-swiper .swiper-button-prev{
  right: 48px !important;
}
.main-content .instagram-swiper .swiper-button-next:disabled,
.main-content .instagram-swiper .swiper-button-prev:disabled{
  border: 1px solid var(--gray100);
  background-color: var(--gray50);
  color: var(--gray300);
  pointer-events: none;
}
.main-content .instagram-swiper .swiper-button-next:not(:disabled):hover,
.main-content .instagram-swiper .swiper-button-prev:not(:disabled):hover{
  border: 1px solid var(--gray500);
}
.main-content .instagram-swiper .swiper-button-next::after,
.main-content .instagram-swiper .swiper-button-prev::after{
  content:'';
  display: none;
}
@media (max-width: 1260px){
  .main-slide .swiper-pagination{
    display: none;
  }
  .main-content .instagram-swiper .swiper-button-next,
  .main-content .instagram-swiper .swiper-button-prev{
    display: none;
  }
}

/* service-page */
.service-banner {
  margin-top: 20px;
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 24px;
  overflow: hidden;
}
.service-banner::after{
  content:'';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 46.49%, rgba(0, 0, 0, 0.40) 75.59%), linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
}

.service-banner .banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.service-banner .banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px){
  .service-banner{
    height: 500px;
  }
}
.tb-img,
.mo-img {
  display: none;
}

@media screen and (max-width: 1024px) {
  .pc-img {
    display: none;
  }
  .tb-img {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .tb-img {
    display: none;
  }
  .mo-img {
    display: block;
  }
}

.service-banner .banner-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  z-index: 3;
  display: flex;
  gap: 40px;
  align-items: flex-end;
  justify-content: space-between;
  text-align: left;
  color: white;
}
.service-banner .banner-text{
  max-width: 900px;
}
.service-banner .banner-title {
  font-size: clamp(2.6rem, 3.6458vw, 3.2rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.02rem;
  margin-bottom: 16px;
}

.service-banner .banner-description {
  font-size: clamp(1.6rem, 2.083vw, 2rem);
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  word-break: keep-all;
}

.service-contents h3.section-title{
  margin: clamp(40px, 5.2084vw, 80px) 0 clamp(20px, 2.083vw, 40px);
  font-size: clamp(3.2rem, 2.083vw, 4rem);
  color: var(--gray800);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

@media screen and (max-width: 1259px){
  .service-banner .banner-content{
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 767px){
  .service-banner .banner-content{
    gap: 16px;
    padding: 20px;
  }
}

/* 서비스 프로세스 */
.service-process {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.process-row {
  display: flex;
  gap: 20px;
  align-items: stretch;
  width: 100%;
}

.process-card {
  flex: 1;
  display: flex;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--gray50);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/*
.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
*/
.process-card .card-icon {
  width: 94px;
  background: linear-gradient(90deg, #EBF4FF 12.77%, #F8F9FA 100%);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
}

.process-card .card-icon img {
  width: 50px;
}

.process-card .card-content {
  flex: 1;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.process-card .card-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.process-card .card-category {
  font-size: 16px;
  font-weight: 600;
  color: #3180f0;
  line-height: 1.4;
}

.process-card .card-title {
  font-size: clamp(2rem, 1.4583vw, 2.4rem);
  font-weight: 600;
  color: #393942;
  line-height: 1.4;
  margin: 0;
}

.process-card .card-description {
  font-size: clamp(1.6rem, 1.0417vw, 1.8rem);
  font-weight: 500;
  line-height: 1.5;
  color: #535a65;
  margin: 0;
}

.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
}

.process-arrow img {
  height: 24px;
}

.process-arrow-vertical {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 13px;
  padding-right: calc(25% - 12px);
}

.process-arrow-vertical img {
  width: 24px;
}

@media screen and (max-width: 767px){
  .service-process{
    gap: 10px;
  }
  .service-process .process-row{
    flex-direction: column;
    align-items: center;
    /*
    gap: 0;
    */
  }
  .service-process.pm-process .process-row{
    gap: 0;
  }
  .service-process .process-row .process-card{
    width: 100%;
    height: 240px;
    flex: none;
  }
  .service-process .process-row.row2{
    flex-direction: column-reverse;
  }
  .process-arrow-vertical{
    padding-right: 0;
    justify-content: center;
  }
  .process-arrow{
    transform: rotate(90deg);
  }
  .service-process .process-row.row2 .process-arrow{
    transform: rotate(-90deg);
  }
}
.service-process.fm-process .process-row{
  flex-flow: wrap row;

}
.service-process.fm-process .process-card{
  flex: none;
  width: calc((100% - 40px)/3);
}
.service-process.fm-process .card-icon,
.service-process.manpower-process .card-icon{
  background: var(--gray50);
}
.service-process .dot-list{
  list-style-type: none;
}
.service-process .dot-list li{
  padding-left: 12px;
  color: var(--gray700);
  font-size: clamp(1.6rem, 1.0417vw, 1.8rem);
  font-weight: 500;
  line-height: 1.5;
}
.service-process .dot-list li::before{
  content: '•';
  display: inline-block;
  margin-left: -12px;
  width: 12px;
  height: 12px;
  color: var(--gray700);
}
.service-process .dot-list.dot-list-sm li{
  font-size: 1.6rem;
}
@media screen and (max-width: 1290px){
  .service-process.fm-process .process-row{
    justify-content: space-between;
    gap: 20px;
  }
  .service-process.fm-process .process-card{
    width: calc((100% - 20px)/2);
  }
}
@media screen and (max-width: 767px){
  .service-process.fm-process .process-card{
    width: 100%;
  }
  .service-process.manpower-process .process-card .card-content{
    padding-left: 0;
  }
}
.service-banner-wrapper.service-iot{
  display: flex;
  gap: 20px;
}
.service-banner-wrapper.service-iot .service-banner .banner-content{
  flex-direction: column;
  align-items: flex-start;
}
.service-banner .banner-title span{
  display: block;
  font-size: 28px;
}
.service-banner-wrapper.service-iot .service-banner .banner-content button{
  margin-top: 20px;
}

.iot-img-wrapper{
  padding-bottom: 80px;
}
@media screen and (max-width: 767px){
  .service-banner-wrapper.service-iot{
    flex-direction: column;
  }
}

ul.flex-box.type05 > li{
  width: calc((100% - 80px)/5);
}
.link-list img{
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--gray200);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/*
.link-list img:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
}
*/
@media screen and (max-width: 1259px){
  ul.flex-box.type05 > li{
    width: calc((100% - 40px)/3);
  }
}
@media screen and (max-width: 767px){
  ul.flex-box.type05 > li{
    width: calc((100% - 20px)/2);
  }
}
.link-list .link-text{
  margin-top: 20px;
  font-size: clamp(1.8rem, 2.6042vw, 2rem);
  font-weight: 500;
  line-height: 1.5;
}
.process-card, .dot-list li{
  word-break: keep-all;
}
.process-card .card-img{
  width: 50%;
  height: 100%;
  object-fit: cover;
}
.process-card .card-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.consulting-process .process-card .card-description{
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--gray700);
}
.section-description{
  margin-top: 8px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--gray700);
}
@media screen and (max-width: 1259px){
  .service-process.consulting-process .process-card{
    flex-direction: column;
    height: auto;
  }
  .service-process.consulting-process .process-card .card-img{
    width: 100%;
    height: 190px;
  }
  .service-process.consulting-process .process-card .card-content{
    padding: 20px;
    justify-content: flex-start;
    gap: 10px;
  }
}
.service-process .process-row.type02 .process-card{
  width: calc((100% - 20px)/2);
  height: auto;
}
.service-process .process-row.type03 .process-card{
  width: calc((100% - 40px)/3);
  height: auto;
}
@media screen and (max-width: 1259px){
  .service-process .process-row.type03 .process-card{
    width: calc((100% - 20px)/2);
  }
  .service-process .process-row.type02 .process-card{
    width: calc((100% - 20px)/2);
  }
}
.service-process .process-card.vertical{
  flex-direction: column;
  background: var(--gray50);
}
.service-process .process-card.vertical .card-process-img{
  padding: 38px 20px 30px;
  background: linear-gradient(180deg, #EBF4FF 12.77%, #F8F9FA 100%);
  text-align: center;
}
.service-process .process-card.vertical .card-process-img span{
  display: inline-block;
  padding: 7px 16px;
  color: var(--blue700);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
  border-radius: 40px;
  background: var(--blue200);
}
.service-process .process-card.vertical .card-process-img img{
  height: 115px;
  margin: 0 auto;
}
.service-process .process-card.vertical .card-process-list{
  padding: 20px 20px 40px 20px;
  height: 120px;
}
.service-process .process-card.vertical .card-process-list.pb40{
  padding: 20px 20px 40px;
  height: auto;
}

.note{
  color: var(--gray500);
  text-align: right;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
}
.process-row.type03 .service-card{
  width: calc((100% - 40px)/3);
}
.service-process .process-row.type04 .process-card,
.service-process .process-row.type04 .service-card{
  width: calc((100% - 60px)/4);
}

@media screen and (max-width: 1259px){
  .service-process .process-row.type03 .process-card,
  .service-process .process-row.type03 .service-card,
  .service-process .process-row.type04 .process-card,
  .service-process .process-row.type04 .service-card{
    width: calc((100% - 20px)/2);
    flex: none;
  }
}
@media screen and (max-width: 767px){
  .service-process .process-row.type02,
  .service-process .process-row.type03{
    flex-direction: column;
    gap: 20px;
  }
  .service-process .process-row.type02 .process-card,
  .service-process .process-row.type02 .service-card,
  .service-process .process-row.type03 .process-card,
  .service-process .process-row.type03 .service-card,
  .service-process .process-row.type04 .process-card,
  .service-process .process-row.type04 .service-card{
    width: 100%;
  }
}
.service-card{
  border-radius: 16px;
  overflow: hidden;
  background: var(--gray50);
}
.service-card .service-card-title{
  padding: 16px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--gray900);
  text-align: center;
}
.service-card .service-card-description{
  padding: 20px 16px;
  color: var(--gray700);
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.32px;
}
.service-process .process-row .process-card .card-icon span{
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--blue400);
}
.service-process.bug-process .process-row .process-card{
  height: 200px;
}
.service-process.bug-process .process-row .process-card:nth-of-type(2n) .card-icon{
  background: linear-gradient(90deg, #E4FAF7 12.77%, #F8F9FA 100%);
}
.service-process.bug-process .process-row .process-card:nth-of-type(2n) .card-icon span{
  color: var(--green500);
}
.service-process.img-process-wrapper{
  margin-top: 40px;
  margin-bottom: 80px;
  padding: 30px 0;
}
.service-process.img-process-wrapper img{
  width: 100%;
  max-width: 880px;
}
.service-page-cleancare .service-process .img-process-wrapper img{
  max-width: 978px;
}
.service-page-cleancare .service-process .box-round-gray{
  padding: 40px;
  border-radius: 16px;
  background: var(--gray50);
}
.service-page-cleancare .service-process .box-round{
  border-radius: 16px;
  overflow: hidden;
}
@media screen and (max-width: 1259px){
  .service-page-cleancare .service-process .box-round{
    padding: 50px 22px 28px 0;
  }
}
@media screen and (max-width: 767px){
  .service-page-cleancare .service-process .box-round-gray{
    padding: 20px;
  }
  .service-page-cleancare .service-process .box-round{
    padding: 20px 11px 0 0;
  }
}
.service-page-cleancare .service-process .box-round img{
  margin-top: 30px;
}
.service-page-cleancare .service-process .care-description{
  margin-top: 40px;
  margin-bottom: 20px;
}
.service-page-cleancare .care-title{
  color: var(--green);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.02em;
}
.service-page-cleancare .care-description{
  margin-top: 4px;
  color: var(--gray800);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.02em;
}
.service-page-cleancare .service-process .dot-list{
  margin-top: 24px;
  margin-bottom: 40px;
}

.full-container{
  margin-top: clamp(60px, 8.333vw, 80px);
  margin-left: -40px;
  margin-right: -40px;
}
.full-container.bg-blue100{
  background: rgba(235, 244, 255, 0.70);
}
.customer-section{
  padding: clamp(60px, 8.333vw, 80px) 0;
}
.customer-section .section-title{
  color: var(--gray800);
  text-align: center;
  font-size: clamp(3.2rem, 2.083vw, 4rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: clamp(20px, 2.6042vw, 40px);
}
/* 고객사 로고 슬라이더 기본 스타일 */
.customer-logo-slider {
  overflow: hidden;
  width: 100%;
  height: 120px;
}

.customer-logo-slider .swiper-wrapper {
  transition-timing-function: linear;
  display: flex;
  align-items: center;
  height: 100%;
  animation: slideInfinite 20s linear infinite;
}

/* 무한 스크롤 애니메이션 */
@keyframes slideInfinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* RTL 슬라이더는 역방향 */
.customer-logo-slider.rtl .swiper-wrapper {
  animation: slideInfiniteRTL 20s linear infinite;
}

@keyframes slideInfiniteRTL {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}

.customer-logo-slider .swiper-slide {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 120px;
}

.customer-logo-slider .swiper-slide img {
  display: inline-block;
  width: 240px;
  height: 120px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.customer-logo-slider .swiper-slide img:hover {
  transform: scale(1.05);
}
/* 모바일 반응형 스타일 */
@media screen and (max-width: 767px) {
  .customer-logo-slider {
    height: 240px; /* 2줄 높이 설정 */
    margin-bottom: 20px;
  }

  .customer-logo-slider .swiper-slide {
    height: 120px;
  }
}


/* 메인 공지 팝업 */
.pop-group{
  position: fixed;
  top: 100px;
  left: 100px;
  width: 100%;
  z-index: 90;
  display: inline-flex;
  flex-direction: row;
  gap: 10px;
}
.pop-group .pop-notice{
  width: 400px;
  padding: 0;
}
.pop-group .pop-notice .pop-content{
  position: relative;
  width: 100%;
  padding-top: 125%;
  overflow: hidden;
  background: #f3f4f6;
}
.pop-group .pop-notice .pop-content img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pop-group .pop-notice .pop-footer{
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding: 4px 10px;
  align-items: center;
  justify-content: flex-end;
  background-color: var(--gray100);
}
.pop-group .pop-notice .pop-footer .btn-sm,
.pop-group .pop-notice .pop-footer input[type="checkbox"]+label span:not(.icon){
  color: var(--gray900);
  font-size: 13px;
  font-weight: 500;
  line-height: 28px;
  vertical-align: middle;
  padding: 0 4px;
  height: 28px;
  cursor: pointer;
}
.pop-group .pop-notice .pop-footer input[type="checkbox"]+label span.icon{
  margin-right: 0;
}
@media screen and (max-width: 1259px) {
  .pop-group{
    top: 100px;
    left: 40px;
  }
}
@media screen and (max-width: 991px){
  .pop-group .pop-notice{
    max-width: 40vw;
  }
}
@media screen and (max-width: 768px) {
  .pop-group{
    position: absolute;
    width: auto;
    max-width: 80vw;
    min-width: 280px;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
  }
  .pop-group .pop-notice{
    width: 100%;
    max-width: 100%;
  }
}

.policy-page .gray-round-box{
  margin-top: clamp(20px,2.6667vw,30px);
  padding: clamp(20px,3.125vw,40px);
  background: var(--gray50);
  border-radius: 16px;
  color: var(--gray700);
  font-size: clamp(1.6rem,2.1042vw,1.8rem);
  font-weight: 400;
  line-height: 1.5;
}
.policy-page .select-ver-box{
  padding-top: 40px;
}
.policy-page h3{
  margin-top: 40px;
  color: var(--gray900);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
}
.policy-page p{
  margin-top: 10px;
  color: var(--gray700);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4;
}
.policy-page table{
  margin-top: 24px;
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--gray100);
}
.policy-page table th,
.policy-page table td{
  border: 1px solid var(--gray100);
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--gray700);
  vertical-align: middle;
}
.policy-page table th{
  background: var(--gray100);
  padding: 4px 10px;
}
.policy-page table td{
  border-top: 1px solid var(--gray100);
  padding: 20px 10px;
}
.policy-page .gray-line-box{
  margin-top: 24px;
  border: 1px solid var(--gray100);
  padding: 20px 10px;
}
.policy-page .gray-line-box + p,
.policy-page table + p{
  margin-top: 24px;
}
.policy-page .num-list li{
  display: flex;
  gap: 4px;
  color: var(--gray700);
  font-size: 1.4rem;
  line-height: 1.7;
}
.policy-page .num-list li .num{
  display: inline-block;
  width: 16px;
  text-align: center;
}
.policy-page .num-list li .dot{
  display: inline-block;
  width: 10px;
  text-align: center;
}
.select.select-square{
  border-radius: 0;
  min-width: 140px;
  padding: 8px 36px 8px 16px;
}
.select.select-square:focus{
  border-color: var(--gray200);
  border-bottom: 1px solid var(--gray200);
}
.select.select-square .selected-item::after{
  top: 12px;
}
.select.select-square .option-list {
  top: 44px;
  border-radius: 0;
  border-color: var(--gray200);
  border-top: 1px solid var(--gray200);
}
.select.select-square .option-list .option-item{
  padding: 8px 16px;
}
.select.select-square .option-list li:first-of-type {
  background-image: none;
}
.select.select-square .option-item.active::before {
  display: none;
}
.policy-page .table-col02 th:first-of-type,
.policy-page .table-col02 td:first-of-type{
  width: 32.353%
}
.policy-page .table-col02 th:last-of-type,
.policy-page .table-col02 td:last-of-type{
  width: 67.647%;
}

@media screen and (max-width: 767px) {
  .select.select-square .selected-item,
  .select.select-square .option-list .option-item{
    font-size: 1.6rem;
    line-height: 1.5;
    height: auto;
  }
  .policy-page .table-col02 th:first-of-type,
  .policy-page .table-col02 td:first-of-type,
  .policy-page .table-col02 th:last-of-type,
  .policy-page .table-col02 td:last-of-type{
    width: 50%;
  }
}



/* 회사소개 */

.vision-wrapper{
  margin-top: clamp(20px, 2.083vw, 40px);
  padding: 40px;
  border-radius: 16px;
  background: rgba(235, 244, 255, 0.70);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vision-wrapper .vision-logo-wrapper{
  padding: 40px;
}

.vision-logo{
  display: inline-block;
  height: clamp(100px, 7.55vw, 145px);
  object-fit: contain;
}
.vision-content li{
  display: block;
}
.vision-content li:first-of-type::after{
  display: block;
  content:'';
  margin: 20px 0;
  width: 100%;
  height: 1px;
  background-color: var(--blue200);
}
.vision-content li p:first-of-type{
  color: var(--blue);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 120%;
}
.vision-content li p:nth-of-type(2){
  margin-top: 12px;
  color: var(--gray900);
  font-size: clamp(2.4rem, 1.4583vw, 2.8rem);
  font-weight: 700;
  line-height: 1.4;
}
.vision-content li p:nth-of-type(3){
  margin-top: 8px;
  color: var(--gray700);
  font-size: clamp(1.6rem, 1.0417vw, 2rem);
  line-height: 1.4;
}
@media screen and (max-width: 1259px) {
  .vision-wrapper .vision-logo-wrapper{
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .vision-wrapper{
    margin-bottom: 60px;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .vision-content li p:nth-of-type(2){
    font-size: 2rem;
  }
  .vision-content, .vision-content li, .vision-logo-wrapper{
    width: 100%;
  }
  .vision-logo-wrapper{
    text-align: right;
  }
  .vision-logo{
    margin-top: 20px;
    height: 80px;
  }
}
.core-values-wrapper{
  margin-top: clamp(40px, 5.2084vw, 80px);
}
.core-values-wrapper > p:first-of-type{
  color: var(--green600);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}
.core-values-wrapper > p:nth-of-type(2){
  margin-top: 12px;
  color: var(--gray900);
  font-size: clamp(2.4rem, 1.4583vw, 2.8rem);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.core-values-wrapper .core-values-img{
  margin: clamp(40px, 5.2084vw, 80px) auto;
  display: block;
  width: 100%;
  max-width: 900px;
}
.core-values-content{
  padding-bottom: clamp(40px, 5.2084vw, 80px);
}
.core-values-content li{
  padding: 20px;
  border-radius: 16px;
  background: rgba(235, 244, 255, 0.70);
  width: calc((100% - 60px)/4);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 1259px) {
  .core-values-content li{
    width: calc((100% - 20px)/2);
  }
}
@media screen and (max-width: 767px) {
  .core-values-content li{
    width: 100%;
  }
}
.core-values-content li p:first-of-type{
  color: var(--gray900);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}
.core-values-content li p:nth-of-type(2){
  color: var(--gray800);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.01em;
}
.core-values-content li p:nth-of-type(2) span{
  color: var(--gray900);
}
.history-tabs-wrapper{
  margin-top: 40px;
  margin-left: -20px;
  margin-right: -20px;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.history-tabs-wrapper::-webkit-scrollbar{
  display: none;
}
.history-tabs {
  min-width: 445px;
  padding-left: 20px;
  padding-right: 20px;
}
.history-tabs .history-tab{
  padding: 6px 16px;
  color: var(--gray700);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7143;
  border-radius: 30px;
  border: 1px solid var(--gray100);
  background: var(--gray100);
  cursor: pointer;
}
.history-tabs .history-tab.active{
  background: var(--gray900);
  color: #FFF;
}
.history-timeline{
  margin-top: 48px;
}
.history-timeline > li{
  display: flex;
  gap: 0;
}
.history-timeline > li > p{
  width: 180px;
  color: var(--blue700);
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.128px;
}
.history-timeline > li > ul{
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.history-timeline > li > ul::before{
  content: '';
  position: absolute;
  left: -5px;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--blue700);
  margin-right: 10px;
  vertical-align: middle;
}
.history-timeline > li > ul > li{
  padding-left: 20px;
  padding-bottom: 40px;
  color: var(--gray900);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.02em;
  border-left: 1px solid var(--blue700);
}
@media screen and (max-width: 767px) {
  .history-timeline > li{
    margin-bottom: 20px;
    flex-direction: column;
    gap: 20px;
  }
  .history-timeline > li > ul > li{
    font-size: 1.6rem;
  }
}
.anchor-header-wrapper{
  width: 100vw;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.anchor-header-wrapper::-webkit-scrollbar{
  display: none;
}
.anchor-header-wrapper{
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.anchor-header{
  width: max-content;
  min-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid var(--gray200);
  margin-bottom: 20px;
  background-color: #FFF;
}

.anchor-header-wrapper.sticky{
  position: fixed;
  top: 75px;
  left: 0;
  right: 0;
  z-index: 999;
  width: calc(100% + 40px);
}
@media screen and (max-width: 1259px){
  .anchor-header-wrapper.sticky{
    top: 60px;
  }
}
@media screen and (max-width: 767px){
  .anchor-header{
    gap: 20px;
  }
}
.anchor-header-wrapper.fixed{
  position: fixed;
  top: 0;
  left: -20px;
  right: 0;
  z-index: 999;
  width: calc(100% + 40px);
}
.anchor-header-wrapper.d-none{
  display: none;
}
.anchor-header a{
  display: block;
}
.anchor-header a span{
  display: block;
  padding: 15px 0;
  color: var(--gray600);
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}
.anchor-header a.active span{
  color: var(--blue700);
  font-weight: 600;
  border-bottom: 2px solid var(--blue700);
}

.esg-page h2.section-title{
  padding-top: clamp(40px, 5.2084vw, 80px);
  color: var(--gray800);
  font-size: clamp(3.2rem, 4.1731vw, 4rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.esg-page .esg-round-box{
  margin-top: clamp(20px, 2.6084vw, 40px);
  border-radius: 16px;
  background: var(--gray50);
}
.esg-page .esg-round-box > div:first-of-type{
  padding: clamp(20px, 2.6084vw, 40px);
}
.esg-page .esg-round-box h3{
  font-size: clamp(1.6rem, 2.1042vw, 1.8rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.02em;
}
.esg-page .esg-round-box p{
  margin-top: 4px;
  color: var(--gray800);
  font-size: clamp(2rem, 2.6084vw, 2.4rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.02em;
}
.esg-page .esg-round-box ul.list-dot{
  margin-top: 24px;
  margin-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.esg-page .esg-round-box ul.list-dot li{
  padding-left: 1.8rem;
  color: var(--gray700);
  font-size: clamp(1.6rem, 2.1042vw, 1.8rem);
  font-weight: 500;
  line-height: 1.5;
}
.esg-page .esg-round-box ul.list-dot li:before{
  content: '·';
  display: inline-block;
  margin-left: -1.8rem;
  width: 1.8rem;
  height: 1.8rem;
  color: var(--gray700);
  text-align: center;
}
.esg-page .esg-round-box .esg-A-img-box{
  width: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1259px){
  .esg-page .esg-round-box .esg-A-img-box{
    width: 187px;
    height: 240px;
  }
  .esg-page .esg-round-box .esg-A-img-box .esg-goal-ico{
    width: 140px;
    height: 140px;
    padding: 36px 0;
  }

}
@media screen and (max-width: 767px){
  .esg-page .esg-round-box{
    flex-direction: column;
  }
  .esg-page .esg-round-box .esg-A-img-box{
    width: 100%;
    height: 180px;
    padding: 20px 0;
    text-align: center;
  }
}
.esg-page .esg-round-box .esg-A-img-box .esg-goal-ico{
  width: 178px;
  height: 178px;
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-radius: 50%;
}
.esg-page .esg-round-box .esg-A-img-box .esg-goal-ico span{
  color: #FFF;
  text-align: center;
  font-size: clamp(1.6rem, 2.1042vw, 2rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}
.esg-page .esg-round-box .list-number{
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px){
  .esg-page .esg-round-box .list-number{
    margin-top: 20px;
  }
}
.esg-page .esg-round-box .list-number li{
  color: var(--gray700);
  font-size: clamp(1.6rem, 2.1042vw, 1.8rem);
  font-weight: 500;
  line-height: 24px;
  padding-left: 32px;
}
.esg-page .esg-round-box .list-number li .round-num{
  display: inline-block;
  margin-left: -32px;
  margin-right: 8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 24px;
  color: #FFF;
}
.esg-page .section-orange h3{
  color: #FF7104;
}
.esg-page .section-orange .round-num{
  background-color: #FF7104;
}
.esg-page .section-orange .esg-A-img-box .esg-goal-ico{
  background: linear-gradient(143deg, #FFA613 14.67%, #FF6C02 86.76%);
}
.esg-page .section-orange .esg-A-img-box .esg-goal-ico img{
  width: 84px;
  margin-bottom: 18px;
}
.esg-page .section-green h3{
  color: #037857;
}
.esg-page .section-green .round-num{
  background-color: #037857;
}
.esg-page .section-green .esg-goal-ico{
  background: linear-gradient(143deg, #048248 14.67%, #016E65 86.76%);
}
.esg-page .section-green .esg-A-img-box .esg-goal-ico img{
  width: 78px;
  margin-bottom: 12.8px;
}
.esg-page .section-blue h3{
  color: #08459B;
}
.esg-page .section-blue .round-num{
  background-color: #08459B;
}
.esg-page .section-blue .esg-goal-ico{
  background: linear-gradient(143deg, #065AB0 14.67%, #295598 86.76%);
}
.esg-page .section-blue .esg-A-img-box .esg-goal-ico img{
  width: 108px;
  margin-bottom: 25px;
}
.esg-page .esg-iso-list{
  margin-top: 40px;
}
.esg-page .esg-iso-list li{
  padding: 35px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: calc((100% - 40px)/3);
  border-radius: 16px;
  background: var(--gray50);
}
.esg-page .esg-iso-list li img{
  width: 232px;
}
@media screen and (max-width: 1259px){
  .esg-page .esg-iso-list li{
    width: calc((100% - 20px)/2);
    padding: 20px;
    text-align: center;
  }
  .esg-page .esg-iso-list li img{
    max-width: 100%;
  }
}
.esg-page .section-management{
  padding-bottom: clamp(40px, 5.2084vw, 80px);
}
.esg-page-safety .section-description{
  margin-top: clamp(20px, 2.1042vw, 40px);
  color: var(--gray700);
  font-size: clamp(1.6rem, 2.1042vw, 1.8rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.02em;
}
.esg-page-safety .section-img{
  margin-top: clamp(20px, 2.1042vw, 40px);
  display: block;
  width: 100%;
}
.esg-page-safety .esg-safety-list{
  margin-top: clamp(20px, 2.1042vw, 40px);
}
.esg-page-safety .esg-safety-list li{
  width: calc((100% - 60px)/4);
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1259px){
  .esg-page-safety .esg-safety-list li{
    width: calc((100% - 20px)/2);
  }
}
@media screen and (max-width: 767px){
  .esg-page-safety .esg-safety-list li{
    width: 100%;
  }
}
.esg-page-safety .esg-safety-list li img{
  border-radius: 16px;
  width: 100%;
}
.esg-page-safety .esg-safety-list li p{
  margin-top: 20px;
  color: var(--gray800);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 767px){
  .esg-page-safety .esg-safety-list li p{
    margin-top: 10px;
  }
}
.esg-page-safety section {
  padding-bottom: clamp(40px, 5.2084vw, 80px);
}
.esg-page-safety .esg-letter-list{
  margin-top: clamp(20px, 2.1042vw, 40px);
  display: flex;
  gap: 20px;
}
.esg-page-safety .esg-letter-list li{
  width: calc((100% - 60px)/4);
  padding: 20px 30px;
  background-color: var(--gray50);
  border-radius: 16px;
}
@media screen and (max-width: 1259px){
  .esg-page-safety .esg-letter-list li{
    width: calc((100% - 20px)/2);
    padding: 25px 20px;
  }
}
@media screen and (max-width: 767px){
  .esg-page-safety .esg-letter-list li{
    padding: 14px;
  }
}
.esg-page-safety .esg-letter-list li img{
  width: 100%;
}
.esg-page .regulation-list{
  margin-top: clamp(20px, 2.1042vw, 40px);
  display: flex;
  flex-wrap: wrap;
  gap: 20px 20px;
}
.esg-page .regulation-list li{
  width: calc((100% - 40px)/3);
  height: 260px;
  display: flex;
  border-radius: 16px;
  background: var(--gray50);
}
@media screen and (max-width: 1259px){
  .esg-page .regulation-list li{
    width: calc((100% - 20px)/2);
  }
}
@media screen and (max-width: 767px){
  .esg-page .regulation-list li{
    width: 100%;
    height: 240px;
  }
}
.esg-page .regulation-list li .regulation-icon{
  padding: 40px 20px;
}
.esg-page .regulation-list li .regulation-icon img{
  width: 50px;
}
.esg-page .regulation-list li .regulation-content{
  padding: 40px 20px 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between ;
}
.esg-page .regulation-list li .regulation-content .regulation-title{
  color: var(--gray800);
  font-size: clamp(2rem, 2.6084vw, 2.4rem);
  font-weight: 600;
  line-height: 1.4;
}
.esg-page .regulation-list li .regulation-content p{
  color: var(--gray700);
  font-size: clamp(1.6rem, 2.1042vw, 1.8rem);
  font-weight: 500;
  line-height: 1.5;
}
.esg-page .regulation-list li.download-item{
  background-color: var(--blue100);
}
.esg-page .regulation-list li.download-item .regulation-content{
  width: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.esg-page .regulation-list.type03 li{
  height: 360px;
}
.esg-page .regulation-list.type03 li .regulation-content{
  width: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.service-main .service-main-banner{
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  background-image: url(/images/service-banner.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.service-main .service-main-banner h1{
  color: #FFF;
  font-size: clamp(3.6rem, 2.708vw, 5.2rem);
  font-weight: 700;
  line-height: 1.2;
}
.service-main .service-main-banner h1 span{
  display: block;
  margin-top: 8px;
  font-size: clamp(1.6rem, 1.1458vw, 1.8rem);
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.80);
}
.service-main .service-main-banner .scroll-down{
  margin-top: 61px;
  padding-bottom: 96px;
  color: rgba(255, 255, 255, 0.60);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.5;
}
.service-main .service-main-banner .scroll-down div{
  height: 44px;
  overflow: hidden;
}
.service-main .service-main-banner .scroll-down div .ic {
  animation: scrollDownBounce 2s ease-in-out infinite;
}
.sub-main .breadcrumb{
  margin-top: 20px;
}
.sub-main .service-intro{
  position: relative;
  width: 100%;
  height: 598px;
  margin-top: 20px;
  margin-bottom: 80px;
}
.sub-main .service-intro-banner{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sub-main .service-intro-banner img{
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
}
.sub-main .service-intro-content{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 40px;
  display: flex;
  align-items: center;
}
.sub-main .service-intro-content > div {
  width: 100%;
}
.sub-main .service-intro-content h2{
  color: var(--white, #FFF);
  font-size: clamp(2.2rem, 1.6667vw, 3.2rem);
  font-weight: 500;
  line-height: 1.5;
}
.sub-main .service-intro-content p{
  max-width: 790px;
  color: rgba(255, 255, 255, 0.90);
  font-size: clamp(1.6rem, 0.9375vw, 1.8rem);
  font-weight: 500;
  line-height: 1.5;
}
.sub-main .section-title{
  padding-top: clamp(40px, 5.2084vw, 80px);
  padding-bottom: clamp(20px, 2.083vw, 40px);
  color: var(--gray800);
  font-size: clamp(3.2rem, 2.083vw, 4rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 767px) {
  .sub-main .service-intro-content{
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }
}
.list-service {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.list-service li {
  width: calc((100% - 40px)/3);
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1259px){
  .list-service li{
    width: calc((100% - 20px)/2);
  }
}
@media screen and (max-width: 767px){
  .list-service li{
    width: 100%;
  }
}
.list-service li .service-card{
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.service-main .list-service li .service-card{
  background: var(--blue100);
}
.service-main .list-service li .service-card:hover{
  background: var(--blue);
}
.sub-main .list-service li .service-card:hover .card-header .card-title,
.sub-main .list-service li .service-card:hover .card-content{
  color: #FFF;
}
.sub-main .list-service li .service-card:hover .ic{
  background: #FFF;
}

.esg-main .list-service li .service-card,
.service-main .list-service.cleancare li .service-card{
  background: var(--green100);
}
.esg-main .list-service li .service-card:hover,
.service-main .list-service.cleancare li .service-card:hover{
  background: var(--green);
}
.sub-main .list-service li .service-card .card-header{
  width: 100%;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sub-main .list-service li .service-card .card-header .card-title{
  color: var(--gray900);
  font-size: clamp(1.8rem, 1.0417vw, 2rem);
  font-weight: 500;
  line-height: 1.4;
}
.sub-main .list-service li .service-card .card-content{
  padding: 20px 16px;
  color: var(--gray700);
  font-size: clamp(1.6rem, 0.9375vw, 1.8rem);
  line-height: 1.6;
  letter-spacing: -0.02em;
}
.sub-main .anchor-content{
  margin-bottom: 300px;
}
@media screen and (max-width: 767px){
  .sub-main .list-service li .service-card .ic{
    display: none;
  }
}

@media screen and (max-width: 1259px){
  .process-row.process-arrow-type.type03,
  .process-row.process-arrow-type.type04{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    width: 100%;
    gap: 10px;
  }
  .process-row.process-arrow-type.type03 .process-card,
  .process-row.process-arrow-type.type04 .process-card{
    width: calc((100% - 44px)/2);
    position: relative;
  }
  .process-row.process-arrow-type.type03 .process-card:nth-child(1),
  .process-row.process-arrow-type.type03 .process-card:nth-child(3),
  .process-row.process-arrow-type.type03 .process-card:nth-child(5){
    order: 1;
  }
  .process-row.process-arrow-type.type03 .process-card:nth-child(5){
    order: 2;
    width: calc(50% - 22px);
    display: flex;
    flex-direction: column;
  }
  .process-row.process-arrow-type.type03 .process-arrow{
    order: 1;
  }
  .process-row.process-arrow-type.type03 .process-arrow:nth-child(4){
    order: 2;
    transform: rotate(90deg);
    margin-left: 50%;
    width: 50%;
    display: flex;
  }
  .process-row.process-arrow-type.type03 .process-arrow img{
    max-width: 24px;
    max-height: 24px;
  }
}
@media screen and ((min-width: 768px) and (max-width: 1259px)){
/* type04 레이아웃: 1-2-4-3 순서 */
.process-row.process-arrow-type.type04 .process-card:nth-child(1){
  order: 1; /* 현장진단 - 왼쪽 위 */
}
.process-row.process-arrow-type.type04 .process-card:nth-child(3){
  order: 2; /* 컨설팅 - 오른쪽 위 */
}
.process-row.process-arrow-type.type04 .process-card:nth-child(7){
  order: 3; /* 업무확인 및 검수 - 왼쪽 아래 */
  position: absolute;
  left: 0;
  bottom: 0;
}
.process-row.process-arrow-type.type04 .process-card:nth-child(5){
  order: 4; /* 업무수행 - 오른쪽 아래 */
}
.process-row.process-arrow-type.type04 .process-arrow:nth-child(2){
  order: 1; /* 1→2 화살표 */
}
.process-row.process-arrow-type.type04 .process-arrow:nth-child(4){
  order: 2; /* 2→3 화살표 (아래쪽) */
  transform: rotate(90deg);
  margin-left: 50%;
  width: 50%;
  display: flex;
}
.process-row.process-arrow-type.type04 .process-arrow:nth-child(6){
  order: 3; /* 4→3 화살표 (오른쪽) */
  transform: scaleX(-1); /* 화살표 방향 반전 (3←4) */
  position: absolute;
  left: 50%;
  top: 75%;
  transform: translateX(-50%) scaleX(-1);
  z-index: 10;
}
}
@media screen and (max-width: 767px){
  .process-row.process-arrow-type.type03 .process-card,
  .process-row.process-arrow-type.type04 .process-card{
    width: 100% !important;
  }
  .process-row.process-arrow-type.type03 .process-arrow:nth-child(4){
    margin-left: 0 !important;
  }
}