:root {
  /* 색상 변수 */
  --primary-color: #1B3862;
  --secondary-color: #898989;
  --blue-color: #004ab0;
  --text-color: #242424;
  --accent-color: #007bff;
  --background-color: #fff;
  --border-color: #ddd;
  --error-color: #dc3545;
  --success-color: #28a745;

  --header-height: 70px;
  --max-width: 1920px;
  --container-width: 1200px;
  
  /* 폰트 크기 */
  --font-size-2xs: 14px;
  --font-size-xs: 16px;
  --font-size-sm: 18px;
  --font-size-base: 20px;
  --font-size-lg: 24px;
  --font-size-xl: 28px;
  --font-size-2xl: 30px;
  --font-size-3xl: 32px;
  --font-size-4xl: 36px;
  --font-size-5xl: 48px;
  --font-size-6xl: 64px;
  --font-size-7xl: 96px;
  --font-size-8xl: 128px;
  
  /* 여백 */
  --gap-1: 4px;
  --gap-2: 8px;
  --gap-3: 12px;
  --gap-4: 16px;
  --gap-5: 20px;
  --gap-6: 24px;
  --gap-7: 28px;
  --gap-8: 32px;
  --gap-9: 36px;
  --gap-10: 40px;
  --gap-11: 44px;
  --gap-12: 48px;
  --gap-13: 52px;
  --gap-14: 56px;
  --gap-15: 60px;
  --gap-16: 64px;
  --gap-17: 68px;
  --gap-18: 72px;
  --gap-19: 76px;
  --gap-20: 80px;
  --gap-30: 120px;
  --gap-40: 160px;

  --padding-x: 10px;
}


@media (max-width: 768px) {
  :root{
      --header-height: 60px;

      --font-size-2xs: 1.82vw;
      --font-size-xs: 2.08vw;
      --font-size-sm: 2.34vw;
      --font-size-base: 2.60vw;
      --font-size-lg: 3.13vw;
      --font-size-xl: 3.65vw;
      --font-size-2xl: 3.91vw;
      --font-size-3xl: 4.17vw;
      --font-size-4xl: 4.69vw;
      --font-size-5xl: 6.25vw;
      --font-size-6xl: 8.33vw;
      --font-size-7xl: 12.5vw;
      --font-size-8xl: 16.67vw;

      --gap-1: 0.52vw;
      --gap-2: 1.04vw;
      --gap-3: 1.56vw;
      --gap-4: 2.08vw;
      --gap-5: 2.60vw;
      --gap-6: 3.13vw;
      --gap-7: 3.65vw;
      --gap-8: 4.17vw;
      --gap-9: 4.69vw;
      --gap-10: 5.21vw;
      --gap-11: 5.73vw;
      --gap-12: 6.25vw;
      --gap-13: 6.77vw;
      --gap-14: 7.29vw;
      --gap-15: 7.81vw;
      --gap-16: 8.33vw;
      --gap-17: 8.85vw;
      --gap-18: 9.38vw;
      --gap-19: 9.90vw;
      --gap-20: 10.42vw;
      --gap-30: 15.63vw;
      --gap-40: 20.83vw;
  }
}

@media (max-width: 480px) {
  :root{
      --font-size-2xs: 2.92vw;
      --font-size-xs: 2.50vw;
      --font-size-sm: 3.75vw;
      --font-size-base: 4.17vw;
      --font-size-lg: 5vw;
      --font-size-xl: 5.83vw;
      --font-size-2xl: 6.25vw;
      --font-size-3xl: 6.67vw;
      --font-size-4xl: 7.5vw;
      --font-size-5xl: 10vw;
      --font-size-6xl: 13.33vw;
      --font-size-7xl: 20vw;
      --font-size-8xl: 26.67vw;

      --gap-1: 0.83vw;
      --gap-2: 1.67vw;
      --gap-3: 2.50vw;
      --gap-4: 3.33vw;
      --gap-5: 4.17vw;
      --gap-6: 5.00vw;
      --gap-7: 5.83vw;
      --gap-8: 6.67vw;
      --gap-9: 7.50vw;
      --gap-10: 8.33vw;
      --gap-11: 9.17vw;
      --gap-12: 10.00vw;
      --gap-13: 10.83vw;
      --gap-14: 11.67vw;
      --gap-15: 12.50vw;
      --gap-16: 13.33vw;
      --gap-17: 14.17vw;
      --gap-18: 15.00vw;
      --gap-19: 15.83vw;
      --gap-20: 16.67vw;
      --gap-30: 25vw;
      --gap-40: 33.33vw;
  }
}

body {
  font-family: 'Pretendard', sans-serif;
  font-size: var(--font-size-base);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Pretendard', sans-serif;
  color: var(--text-color);
}

.clamp-1 {
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.clamp-2 {
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.clamp-3 {
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

#wrapper{
  min-height: 80vh;
  padding-top: var(--header-height);
}

.br_mobile{
  display: none;
}
.none_mobile{
  display: inline-block;
}

@media (max-width: 768px) {
  .br_pc{
    display: none;
  }
  .br_mobile{
    display: block;
  }
  .none_mobile{
    display: none;
  }
}

/* 헤더 */

header#pc-head {
  width: 100%;
  position: fixed;
  top: 0; left: 0;
  height: var(--header-height);
  z-index: 999;
  background-color: #fff;
}
.pc-head-wrap {
  width: 100%;
  height: 100%;
}
.logo_wrap {
  position: absolute;
  left: 3rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
}
.menu_wrap,
.sub_menu_wrap {
  width: 100%;
}
.gnb,
.lnb {
  display: flex;  
  justify-content: start;
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
}

.menu_wrap {
  position: relative;
  height: 100%;
}
.gnb {
  height: 100%;
  align-items: center;
  position: relative;
  z-index: 999;
}
.gnb > li {
  height: 100%;
  width: calc(100%/8);
  text-align: center;
}

.gnb > li a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xs);
  color: #000;
}
.gnb > li a:hover,
.lnb > li a:hover {
  color: var(--primary-color) ;
}

.sub_menu_wrap {
  display: none;
  position: absolute;
  top: var(--header-height);
  left: 0;
  right: 0;  
  z-index: 99;  
  background-color: #fff;
}
.lnb {
  align-items: start;
  padding: 12px 0;
  max-width: var(--container-width);
  margin-left: auto;
}
.lnb > li {
  width: calc(100%/8);
  text-align: center;
}
.lnb > li a {
  font-size: var(--font-size-2xs);
  font-weight: 500;  
  color: #000;
}
.lnb > li > ul > li {
  padding: 12px 0;
}
header#mobile-head{
  display: none;
}
@media screen and (max-width: 1320px){
  header#pc-head {
    display: none;
  }

  header#mobile-head{
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 999;
    display: block;
    padding: 0 15px;
  }
  
  header#mobile-head {
    height: var(--header-height);
    min-width: auto;
    background: #fff;
    z-index: 9999;
  }
  
  header#mobile-head > div.wrap {
    width: 100%;
    height: 100%;
    display: flex;
    gap: 18px;
    justify-content: end;
    align-items: center;
  }
  
  header#mobile-head .tp_header_logo {
    position: absolute;
    left: 50%;
    transform: translate(0, 0);
    transform: translateX(-50%);
    /* max-width: 220px; */
    /* width: 100% */
  }
  
  header#mobile-head .tp_header_logo img{
    width: 37.5vw;
    max-width: 245px;
    min-width: 150px;
  }
  .header_1{
    width: 100%;
    overflow: hidden;
  }
  
  .gnb_btn {
    position: relative;
    width: 44px;
    height: 44px;
  }
  
  .gnb_btn span {
    position: absolute;
    left: calc(50% - 10px);
    top: calc(50% - 1px);
    display: block;
    width: 28px;
    height: 2px;
    border-radius: 1px;
    /* background: #333; */
    background: #000;
    transition: .3s;
  }
  
  .gnb_btn span:nth-child(1) {
    top: calc(50% - 7px);
  }
  .gnb_btn span:nth-child(3) {
    top: calc(50% + 5px);
  }
  
  .gnb_btn.active  span:nth-child(1){
    width: 32px;
    transform: rotate(45deg) translate(-1px, 9px);
  }
  .gnb_btn.active  span:nth-child(2){
    width: 0;
  }
  .gnb_btn.active  span:nth-child(3){
    width: 32px;
    transform: rotate(-45deg) translate(-1px, -9px);
  }
  
  .mobile_gnb_wrap {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    overflow-y: auto;
    background: #fff;
    z-index: 999;
    display: none;
  }
  
  .gnb_depth_01 a {
    padding: 0 18px;
    text-align: left;
    border-bottom: 1px solid #E0E0E0; 
    color: #333;
    display: block;
    font-size: 16px;
  }
  
  .gnb_depth_01 > li > a {
    background: #fff;
    font-weight: 700;
    font-size: 20px;
    line-height: 60px;
  }
  
  .gnb_depth_02 {
    background: #F0F0F0;
    padding: 0;
  }
  
  .gnb_depth_02 li{
    height: 0;
    overflow: hidden;
    transition: .5s;
  }
  
  .gnb_depth_02 a{
    line-height: 46px;
  }
  
  .gnb_depth_01 > li > a.active + .gnb_depth_02 li {
    height: 47px;
  }
}

/* 푸터 */
footer {
  width: 100%;
  background: #000;
  padding-top: 100px;
  padding-bottom: 90px;
}
.footer_wrap {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--padding-x);
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: var(--gap-10);
}
.footer_top {
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: var(--gap-11);
  padding-bottom: var(--gap-12);
  border-bottom: 1px solid #fff;
}
.footer_info{
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: var(--gap-2);
}
.footer_info p{
  font-family: "Montserrat", sans-serif;
  font-size: var(--font-size-base);
  color: #fff;
  text-align: center;
  line-height: 1.5;
  font-weight: 500;
}
.footer_bottom{
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  color: #fff;
  text-align: center;
  line-height: 22px;
  font-weight: 500;
}

@media (max-width: 768px) {
  footer {
    padding-top: var(--gap-12);
    padding-bottom: var(--gap-12);
  }
  .footer_wrap {
    gap: var(--gap-7);
  }
  .footer_top {
    gap: var(--gap-8);
    padding-bottom: var(--gap-8);
  }
  .footer_logo img{
    width: 25vw;
  }
  .footer_info{
    gap: 0;
  }
  .footer_info p{
    font-size: var(--font-size-xs);
  }
  .footer_bottom{
    font-size: 2.5vw;
  }
}

/* 서브 메뉴 */
.sub-visual {
  width: 100%;
  height: 475px;
  min-height: 475px;
  position: relative;
}
.sub-visual-inner {
  width: 100%;
  height: 100%;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sub-visual-title {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 60px;
}
.sub-visual-gnb-wrapper {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.sub-gnb {
  width: 100%;
}
.sub-gnb-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--padding-x);
}
.sub-gnb-list {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sub-gnb-item {
  flex: 1;
}
.sub-gnb-link {
  display: flex;
  background: #fff;
  align-items: center;
  justify-content: center;
  height: 60px;
  color: var(--text-color);
  padding: 0 var(--padding-x);
  font-size: 20px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #B7B7B7;
}
.sub-gnb-item:nth-child(even) .sub-gnb-link{
  border-left: none;
  border-right: none;
}
.sub-gnb-item:last-child .sub-gnb-link{
  border-right: 1px solid #B7B7B7;
}
.sub-gnb-link:hover {
  background: var(--primary-color);
  color: #fff;
}
.sub-gnb-item.active .sub-gnb-link {
  background: var(--primary-color);
  color: #fff;
}

@media (max-width: 768px) {
  .sub-visual {
    height: 310px;
    min-height: 310px;
    display: flex;
    flex-flow: column;
    gap: 15px;
  }
  .sub-visual-title {
    font-size: var(--font-size-4xl);
    margin-bottom: 0;
  }
  .sub-visual-gnb-wrapper {
    position: relative;
    bottom: unset;
    left: unset;
    right: unset;
  }

  .sub-gnb-list {
      gap: 0px;
      flex-wrap: wrap;
  }
  .sub-gnb-item {
      flex: 1;
  }
  .sub-gnb-item:nth-child(even) .sub-gnb-link{
      border-left: 1px solid #B7B7B7;
      border-right: 1px solid #B7B7B7;
  }
  .sub-gnb-link {
      height: var(--gap-11);
      font-size: var(--font-size-xs);
  }
}

/* 서브 제목 */
main .section-title{
  width: 100%;
  padding: 100px var(--padding-x);
  display: flex;
  justify-content: center;
  align-items: center;
}
main .section-title h1{
  font-size: var(--font-size-5xl);
  font-weight: 500;
  color: #000;
}

@media (max-width: 768px) {
  main .section-title{
    padding: var(--gap-8) var(--padding-x);
  }
  main .section-title h1{
    font-size: var(--font-size-4xl);
  }
}

/* 메인 */
.home{
  width: 100%;
  position: relative;
}
.home .section1{
  width: 100%;
  position: relative;
}
.home .section1 .main-swiper{
  width: 100%;
  /* height: 900px; */
}
.home .section1 .main-swiper.mobile{
  height: 400px;
  display: none;
}
.home .section1 .swiper-slide{
  width: 100%;
  height: 100%;
}
.home .section1 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

@media (max-width: 768px) {
  .home .section1 .main-swiper.mobile{
    display: block;
  }
  .home .section1 .main-swiper.pc{
    display: none;
  }
}


.home .section2{
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 100px var(--padding-x);
}
.home .section2 .content_wrap{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-8);
}
.home .section2 .content_wrap .content{
  position: relative;
  display: flex;
  flex-flow: column;
  gap: var(--gap-4);
  border-radius: 30px;
  padding-left: var(--gap-18);
  padding-top: var(--gap-11);
  min-height: 300px;
  overflow: hidden;
  cursor: pointer;
}
.home .section2 .content_wrap .content::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
  z-index: -1;
}
.home .section2 .content_wrap .content:nth-child(1)::before{
  background-image: url(../img/main/main_section2_img1.png);
}
.home .section2 .content_wrap .content:nth-child(2)::before{
  background-image: url(../img/main/main_section2_img2.png);
}
.home .section2 .content_wrap .content:nth-child(3)::before{
  background-image: url(../img/main/main_section2_img3.png);
}
.home .section2 .content_wrap .content:nth-child(4)::before{
  background-image: url(../img/main/main_section2_img4.png);
}
.home .section2 .content_wrap .content:hover::before{
  transform: scale(1.1);
}
.home .section2 .content_wrap .content .content_top{
  display: flex;
  flex-flow: column;
  gap: var(--gap-4);
}
.home .section2 .content_wrap .content .content_top h3{
  font-size: var(--font-size-5xl);
  font-weight: 800;
  color: #fff;
}
.home .section2 .content_wrap .content .content_top p{
  font-size: var(--font-size-lg);
  color: #fff;
  line-height: 1.3;
}
.home .section2 .content_wrap .content .content_bottom{
  display: flex;
  align-items: end;
  gap: var(--gap-10);
}
.home .section2 .content_wrap .content .arrow{
  height: 13px;
  margin-bottom: var(--gap-4);
}

@media (max-width: 768px) {
  .home .section2{
    padding: 30px var(--padding-x);
  }
  .home .section2 .content_wrap{
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .home .section2 .content_wrap .content{
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    gap: var(--gap-4);
    border-radius: 15px;
    padding-left: 0;
    padding-top: 0;
    padding: 9vw var(--gap-6);
    min-height: unset;
  }
  .home .section2 .content_wrap .content .content_top{
    gap: var(--gap-3);
  }
  .home .section2 .content_wrap .content .content_top h3{
    font-size: var(--font-size-lg);
  }
  .home .section2 .content_wrap .content .content_top p{
    font-size: var(--font-size-xs);
  }
  .home .section2 .content_wrap .content .content_bottom{
    gap: var(--gap-1);
    align-self: end;
  }
  .home .section2 .content_wrap .content .content_bottom .icon{
    width: 12.5vw;
  }
  .home .section2 .content_wrap .content .arrow{
    height: 1.75vw;
    margin-bottom: var(--gap-3);
  }
}


.home .section3{
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 50px var(--padding-x);
}
.home .section3 .content_wrap{
  display: flex;
  justify-content: space-between;
}
.home .section3 .content_left{
  display: flex;
  flex-flow: column;
  gap: var(--gap-4);
}
.home .section3 .content_left>div{
  display: flex;
  flex-flow: column;
  gap: var(--gap-4);
}
.home .section3 .content_left h2{
  font-size: var(--font-size-5xl);
  font-weight: 700;
  padding-bottom: var(--gap-4);
  position: relative;
}
.home .section3 .content_left h2::after{
  content: '';
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 1px;
  background-color: var(--primary-color);
}
.home .section3 .content_left .square{
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: var(--primary-color);
}
.home .section3 .content_left p{
  font-size: var(--font-size-lg);
  font-weight: 600;
  line-height: 1.3;
}
.home .section3 .content_left button{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 50px;
  border-radius: 999px;
  font-size: var(--font-size-lg);
  font-weight: 500;
  background: transparent;
  border: 1px solid #000;
}

@media (max-width: 768px) {
  .home .section3{
    padding: 20px var(--padding-x);
  }
  .home .section3 .content_wrap{
    flex-flow: column;
    gap: var(--gap-4);
  }
  .home .section3 .content_left{
    flex-flow: row;
    align-items: end;
    justify-content: space-between;
    gap: 0;
  }
  .home .section3 .content_left>div{
    gap: var(--gap-3);
  }
  .home .section3 .content_left h2{
    font-size: var(--font-size-4xl);
    line-height: 1.3;
    padding-bottom: 0;
  }
  .home .section3 .content_left h2::after{
    width: var(--gap-15);
  }
  .home .section3 .content_left .square{
    width: var(--gap-2);
    height: var(--gap-2);
  }
  .home .section3 .content_left p{
    font-size: var(--font-size-xs);
  }
  .home .section3 .content_left button{
    width: var(--gap-20);
    height: var(--gap-6);
    border-radius: 999px;
    font-size: var(--font-size-xs);
  }
  .home .section3 .content_right{
    display: none;
  }
}


.home .section4{
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 100px var(--padding-x);
}
.home .section4 .content_wrap{
  display: flex;
  justify-content: space-between;
}
.home .section4 .content_left{
  display: flex;
  flex-flow: column;
  gap: var(--gap-4);
}
.home .section4 .content_left>div{
  display: flex;
  flex-flow: column;
  gap: var(--gap-4);
}
.home .section4 .content_left h2{
  font-size: var(--font-size-5xl);
  font-weight: 700;
  padding-bottom: var(--gap-4);
  position: relative;
}
.home .section4 .content_left h2::after{
  content: '';
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 1px;
  background-color: var(--primary-color);
}
.home .section4 .content_left .square{
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: var(--primary-color);
}
.home .section4 .content_left p{
  font-size: var(--font-size-lg);
  font-weight: 600;
  line-height: 1.3;
}
.home .section4 .content_left button{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 50px;
  border-radius: 999px;
  font-size: var(--font-size-lg);
  font-weight: 500;
  background: transparent;
  border: 1px solid #000;
}
.home .section4 .content_right{
  flex: 1;
  max-width: 500px;
}

@media (max-width: 768px) {
  .home .section4{
    padding: 30px var(--padding-x);
  }
  .home .section4 .content_wrap{
    flex-flow: column;
    gap: var(--gap-5);
  }
  .home .section4 .content_left{
    flex-flow: row;
    align-items: end;
    justify-content: space-between;
    gap: 0;
  }
  .home .section4 .content_left>div{
    gap: var(--gap-3);
  }
  .home .section4 .content_left h2{
    font-size: var(--font-size-4xl);
    line-height: 1.3;
    padding-bottom: 0;
  }
  .home .section4 .content_left h2::after{
    width: var(--gap-15);
  }
  .home .section4 .content_left .square{
    width: var(--gap-2);
    height: var(--gap-2);
  }
  .home .section4 .content_left p{
    font-size: var(--font-size-xs);
  }
  .home .section4 .content_left button{
    width: var(--gap-20);
    height: var(--gap-6);
    border-radius: 999px;
    font-size: var(--font-size-xs);
  }
  .home .section4 .content_right{
    max-width: 100%;
  }
}


.home .section5{
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--padding-x);
  padding-top: 50px;
  padding-bottom: 150px;
}
.home .section5 .content_wrap{
  display: flex;
  align-items: center;
  gap: var(--gap-8);
}
#daumRoughmapContainer1760076316769 .wrap_controllers,
#daumRoughmapContainer1760076316769 .cont{
  display: none !important;
}
.home .section5 .content_right{
  flex: 1;
  display: flex;
  flex-flow: column;
}
.home .section5 .content_right h2{
  font-size: var(--font-size-5xl);
  font-weight: 700;
  margin-bottom: var(--gap-5);
}
.home .section5 .content_right .square{
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: var(--primary-color);
}
.home .section5 .content_right .content_inner{
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-flow: column;
  gap: var(--gap-3);
  margin-bottom: var(--gap-3);
}
.home .section5 .content_right .content_inner .content_inner_item{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gap-4);
}
.home .section5 .content_right .content_inner .content_inner_item h3{
  font-size: var(--font-size-lg);
  font-weight: 500;
  line-height: 1.3;
  color: #6E6E6E;
}
.home .section5 .content_right .content_inner .content_inner_item p{
  font-size: var(--font-size-4xl);
  font-weight: 800;
  line-height: 1.3;
  color: var(--primary-color);
}
.home .section5 .content_right .content_inner .content_inner_item p.time{
  font-size: var(--font-size-lg);
  font-weight: 500;
  line-height: 1.3;
  color: #6E6E6E;
}
.home .section5 .content_right .content_inner_desc{
  font-size: var(--font-size-lg);
  font-weight: 500;
  line-height: 1.3;
  color: #6E6E6E;
}

@media (max-width: 768px) {
  .home .section5{
    padding-top: 20px;
    padding-bottom: 50px;
  }
  .home .section5 .content_wrap{
    flex-flow: column;
    gap: var(--gap-5);
  }
  #daumRoughmapContainer1763020602738{
    width: 100% !important;
  }
  #daumRoughmapContainer1760076316769{
    width: 100% !important;
  }
  #daumRoughmapContainer1760076316769 .wrap_map{
    height: 250px !important;
  }
  .home .section5 .content_right h2{
    font-size: var(--font-size-4xl);
    margin-bottom: var(--gap-3);
  }
  .home .section5 .content_right .square{
    width: var(--gap-2);
    height: var(--gap-2);
  }
  .home .section5 .content_right .content_inner{
    max-width: 70vw;
  }
  .home .section5 .content_right .content_inner .content_inner_item{
    gap: var(--gap-4);
  }
  .home .section5 .content_right .content_inner .content_inner_item h3{
    font-size: var(--font-size-sm);
  }
  .home .section5 .content_right .content_inner .content_inner_item p{
    font-size: var(--font-size-xl);
  }
  .home .section5 .content_right .content_inner .content_inner_item p.time{
    font-size: var(--font-size-sm);
  }
  .home .section5 .content_right .content_inner_desc{
    font-size: var(--font-size-sm);
  }
}


.home .float_btn{
  position: fixed;
  bottom: var(--gap-16);
  right: 0;
  width: 150px;
  display: flex;
  flex-flow: column;
  gap: 10px;
  z-index: 999;
}
.home .float_btn a{
  display: flex;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 10px 0 0 10px;
  border: 3px solid #42D31A;
  border-right: none;
  padding: var(--gap-2) var(--gap-3);
  padding-right: 0;
  position: relative;
}
.home .float_btn a.phone{
  border-color: #1B3862;
}
.home .float_btn a.naver{
  border-color: #42D31A;
}
.home .float_btn a.kakao{
  border-color: #FDE500;
}
.home .float_btn a.insta{
  border: none;
  padding: 0;
  background: transparent;
}
.home .float_btn a.insta::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px 0 0 10px;
  padding: 3px;
  background: linear-gradient(70deg, #614DC6 0%, #DD2D76 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
.home .float_btn a.insta > *{
  position: relative;
  z-index: 1;
}
.home .float_btn a.insta > img{
  margin-left: var(--gap-4);
}
.home .float_btn a.insta::after{
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  right: -3px;
  bottom: 3px;
  background: #fff;
  border-radius: 10px 0 0 10px;
  z-index: 0;
}
.home .float_btn a p{
  flex: 1;
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: #000;
  text-align: center;
}

@media (max-width: 768px) {
  .home .float_btn{
    bottom: var(--gap-4);
    right: var(--gap-2);
    gap: var(--gap-1);
    width: unset;
  }
  .home .float_btn a{
    width: 8.75vw;
    height: 8.75vw;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    border: 2px solid #42D31A;
    border-right: 2px solid #42D31A;
    padding: var(--gap-1) var(--gap-1);
    padding-right: var(--gap-1);
    position: relative;
  }
  .home .float_btn a img{
    width: 6.25vw;
    height: 6.25vw;
  }
  .home .float_btn a.insta::before{
    border-radius: 10px;
    padding: 3px;
  }
  .home .float_btn a.insta > img{
    margin-left: 1.36vw;
  }
  .home .float_btn a.insta::after{
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 10px;
  }
  .home .float_btn a p{
    display: none;
  }
}