@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/earlyaccess/nanumpenscript.css');

/* 공통요소 */
body {word-break: keep-all; min-width: 1680px;max-width: 1920px;width: 100%;margin:0 auto;}
hr {height:1px;margin:60px 0;border:none;background-color: #ddd;}

.mb-hide {display: inherit;}
.mb-show, .mb-table {display: none !important;}
.pc-table {
    display: table !important;
}
.mb-flex {
    display: none !important;
}
.pc-flex {
    display: flex !important;
}
/* 
	Main
header {

    width: 1800px; 
    height: 58px; 
    left: 60px; 
    top: 40px; 
    position: absolute;
	z-index: 10;
}*/
.m-bg {
    display: none;
}

header {
    width: 100%;
    height: 110px;
    position: absolute;
    z-index: 10;
    background: transparent;
    display: flex;
    align-items: center;
    min-width: 1680px;
}

header nav {
    width: 1920px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    padding-top: 50px;
    box-sizing: border-box;
}

header nav ._top {
    width: 1680px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    /* padding: 50px 0px 0; */
    box-sizing: border-box;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

header nav .ham {
    cursor: pointer;
}

header nav .ham span {
    position: relative;
    color: #333;
    text-align: right;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.3px;
}

header nav .ham span::before {
    position: absolute;
    width: 35px;
    height: 2px;
    background-color: #333333CC;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    content: '';
}

header.fixed {
    width: 100%;
    height: 110px;
    position: fixed !important;
    z-index: 1000;
    background: #fff;
    display: flex;
    align-items: center;
    transition-property: background-color;
    transition-duration: 1s;
}

header.fixed nav {
    height: 100%;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    padding-top: 25px;
    box-sizing: border-box;
    background: #fff;
    border-bottom: 1px solid #ddd;
}

header.fixed nav .ham span {
    color: #333 !important;
}

header.fixed nav .ham span::before {
    background-color: #333333CC !important;
}

header.sub nav .ham span {
    color: #fff;
}

header.sub nav .ham span::before {
    background-color: #fff;
}

.main-menu li a {
    color: #333 !important;
}


.main-menu {
    display: flex;
    gap: 60px;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
  }
  
  /* 1차 메뉴 */
  .main-menu {
    display: flex;
    gap: 60px;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    align-items: center;
  }
  
  .main-menu > li {
    position: relative;
    padding: 20px 0;
  }
  
  .main-menu > li > a {
      text-decoration: none;
      padding: 20px 0;
      color: #333;
      font-family: "Noto Sans";
      font-size: 17px;
      font-style: normal;
      font-weight: 600;
      line-height: normal;
      letter-spacing: -1px;
  }
  
  .main-menu > li:hover > a {
      color: #29B6D5 !important;
  font-family: "Noto Sans";
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1px;
  }

  
/* 하위 메뉴: 같은 div 안에서 표시 */
.sub-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 55px; /* 1차 메뉴 아래 */
    left: 0;
    background: transparent; /* ✅ 헤더 안에 있으므로 투명하게 */
    list-style: none;
    padding: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
  }
  
  .main-menu > li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
  }
  
  /* 하위 메뉴 항목 */
  .sub-menu li a {
    display: block;
    color: #9B9B9B !important;
  font-family: "Noto Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -0.3px;
  }
  
  .sub-menu li a:hover {
      color: #333 !important;
  font-family: "Noto Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 214.286% */
  letter-spacing: -0.3px;
  }
  
  header.opensub {
    background: #fff;
    border-bottom: 1px solid #ddd;
    z-index: 100;
  }

  
  /* 1차 메뉴 */
  .main-menu {
    display: flex;
    gap: 60px;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
  }
  
  .main-menu > li {
    position: relative;
  }

  header.show-sub {
    height: 300px;
  }
  
  /* 2차 메뉴 */
  .sub-menu {
    display: none;
    position: absolute;
    top: 100%; /* header 내부 유지 */
    left: 0;
    background: #fff;
    list-style: none;
    min-width: 180px;
  }

  
/* ✅ hover 시에만 펼쳐짐 */
.main-menu > li:hover .sub-menu {
    display: block;
  }
  
  /* ✅ header 아래 전체 배경(흰색 영역) */
  .submenu-wrap {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 0;
    background: #fff;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
  }
  
  /* ✅ li hover 시 submenu-wrap 표시 */
  .main-menu:hover ~ .submenu-wrap {
    height: 200px;
    opacity: 1;
    z-index: 1;
  }

#gnb ._bottom {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 60px;
}

#gnb ._bottom span {
    color: #666;
font-family: Pretendard;
font-size: 15px;
font-style: normal;
font-weight: 400;
line-height: normal;
}

#gnb ._bottom ._sns {
    display: flex;
    align-items: center;
}

#gnb ._bottom ._sns a:not(:last-child) {
    margin-right: 30px;
}

@media all and (max-width:1700px) { 
    header nav ._top {
        padding: 0px 60px;
    }

    #gnb ._li {
        padding: 0;
        /* width: 100%; */
        display: none;
        display: flex;
        flex-direction: column;
        width: 25% !important;
        margin-right: 0 !important;
    }

    header {
        min-width: 850px;
    }

    .main-menu {
        display: flex;
        gap: 40px;
        list-style: none;
        margin: 0;
        padding: 0;
        position: relative;
    }
}

@media all and (max-width:1600px) { 
    .main-menu {
        display: flex;
        gap: 35px;
        list-style: none;
        margin: 0;
        padding: 0;
        position: relative;
    }

    .main-menu > li > a {
        text-decoration: none;
        padding: 20px 0;
        color: #333;
        font-family: "Noto Sans";
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: -0.3px;
    }

    header nav ._top {
        padding: 0px 50px;
    }
}

@media all and (max-width:1500px) { 
    .main-menu {
        display: flex;
        gap: 30px;
        list-style: none;
        margin: 0;
        padding: 0;
        position: relative;
    }

    .main-menu > li > a {
        text-decoration: none;
        padding: 20px 0;
        color: #333;
        font-family: "Noto Sans";
        font-size: 15px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: -0.3px;
    }

    header nav ._top {
        padding: 0px 30px;
    }
}

@media all and (max-width:1330px) { 
    .main-menu { 
        display: none;
    }
}

@media all and (min-width:768px) and (max-width:1817px) { 
    #gnb .wrap-menu {
        padding-left: 0 !important;
    }

    header.on nav ._top { 
        min-width: initial !important;
    }
}

@media all and (min-width:768px) and (max-width:1500px) {  

    #gnb img.mb-hide {
        display: none;
    }

    #gnb {
        padding: 90px 80px 50px 80px !important;
    }

    #gnb ._bottom { 
        margin-top: 40px;
    }
}


header nav ._top .logo {
    width: 231px; 
    height: 60px;
    left: 0px;
    top: 0px;
    position: relative;
}

header nav ._top ._menu {
    position: relative;
    display: flex;
    left: initial;
    top: initial;
    gap: initial;
    justify-content: flex-start;
}

header nav ._top ._menu li {
    margin: 0 43px;
}

header ._call {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 144px;
}

header nav ._top ._menu li a {
    cursor: pointer;
    color: #fff;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 23px; /* 127.778% */
}

header.on {
    width: 100%;
    height: 110px;
    z-index: 100;
    left: initial;
    top: initial;
    background: #fff;
}

header.on nav {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

header.on nav ._top {
    width: 1680px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    min-width: 1680px;
}

header.on nav ._top .logo {
    width: 213px;
    height: 57px;
    left: 0px;
    top: 0px;
    position: relative;
    margin-right: 242px;
}

header.on nav ._top ._menu {
    position: relative;
    display: flex;
    left: initial;
    top: initial;
    gap: initial;
    justify-content: flex-start;
}

header.on nav ._top ._menu li {
    color: #333;
    font-size: 18px;
    font-family: Pretendard;
    font-weight: 700;
    line-height: 23px;
    margin: 0 43px;
    position: relative;
}

header.on nav ._top ._menu li:hover::after {
    content: '';
    position: absolute;
    width: 149px;
    height: 3px;
    background-color: #18316B;
    left: 50%;
    bottom: -37px;
    transform: translateX(-50%);
}

header.on ._call {

}

header.on ._call ._txt span:first-child {
	color: #333;
	font-size: 22px;
	font-family: Pretendard;
	font-weight: 700;
}

header.on ._call ._txt span:nth-child(2) {
	color: #333;
	font-size: 16px;
	font-family: Pretendard;
	font-weight: 600;
}

header.on ._call ._txt span:nth-child(3) {
    color: #333;
	font-size: 22px;
	font-family: Pretendard;
	font-weight: 700;
}

header.on nav ._top ._menu li a {
    cursor: pointer;
    color: #111;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 23px; /* 127.778% */
}

header.on nav ._top ._menu li a:hover {
    color: var(--Fastbone_Color, #18316B);
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 23px; /* 127.778% */
}

.quick {
    flex-direction: column;
    width: 150px;
    position: fixed;
    right: 0;
    bottom: 0;
}

.quick ._each a {
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.quick ._each.idx01 {
    background: #6C86E3;
}

.quick ._each.idx02 {
    background: #fff;
    padding: 15px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e9e9e9;
    border-bottom: 0;
    cursor: pointer;
}

.quick ._each.idx03 {
    background: #475CA3;
}

.quick ._each.idx04 {
    background: #123785;
}

.quick ._each.idx05 {
    background: #BF3D3A;
}

.quick ._each#top {
    background: #2B2B2B;
    height: 60px;
}

.quick-mb {
    display: none;
}

.quick ._each#top p {
    margin-top: 0;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    justify-content: center;
    cursor: pointer;
}

.quick ._each p {
    margin-top: 20px;
    color: #FFF;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.quick ._each img {
    width: 60px;
}

.quick ._each.idx02 img {
    width: 70px;
}

.quick ._each.idx02 p {
    color: #333;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-top: 0;
}

@media all and (min-width:1460px) and (max-width:1700px) { 
    body {
        min-width: initial;
        max-width: initial;
        overflow-x: hidden;
    }

    header nav {
        width: 100%;
    }

    .quick {
        flex-direction: column;
        width: 100px;
        position: fixed;
        right: 0;
        bottom: 0;
    }
    
    .quick ._each a {
        width: 100px;
        height: 100px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }

    .quick ._each p {
        margin-top: 10px;
        color: #FFF;
        font-family: Pretendard;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }
    
    .quick ._each img {
        width: 35px;
    }
    
    .quick ._each.idx02 img {
        width: 38px;
    }
    
    .quick ._each.idx02 p {
        color: #333;
        font-family: Pretendard;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }

    header.on nav {
        width: 100%;
    }

    #gnb { 
        align-items: flex-start !important;
    }

    #gnb img.mb-hide {
        width: 290px;
    }
}

@media all and (min-width:768px) and (max-width:1600px) { 
    body {
		min-width: 1440px;
		overflow-x: initial;
    }

	header nav {
		width: 100%;
	}

	.box-main-02 ._inner ._content .main-doc._right ._over {
		right: 0;
	}

    .quick {
        flex-direction: column;
        width: 100px;
        position: fixed;
        right: 0;
        bottom: 0;
    }
    
    .quick ._each a {
        width: 100px;
        height: 100px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }

    .quick ._each p {
        margin-top: 10px;
        color: #FFF;
        font-family: Pretendard;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }
    
    .quick ._each img {
        width: 35px;
    }
    
    .quick ._each.idx02 img {
        width: 38px;
    }
    
    .quick ._each.idx02 p {
        color: #381E1F;
        font-family: Pretendard;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }

    header.on nav {
        width: 100%;
    }

    #gnb { 
        align-items: flex-start;
    }

    #gnb img.mb-hide {
        width: 230px;
    }
}

@media all and (max-width:800px)  {
    #gnb .wrap-menu {
        width: 950px;
        display: flex;
        flex-wrap: wrap;
        padding-left: 0 !important;
    }

    #gnb img.mb-hide { 
        display: none;
    }

    #gnb ._bottom {
        margin-top: 30px;
    }
}

#gnb {
    width: 100%;
    margin: 0 auto;
    background: #fff;
    display: flex;
    height: auto !important;
    flex-wrap: wrap;
    padding: 50px 120px 50px 120px;
    box-sizing: border-box;
    justify-content: space-between;
    align-items: center;
    display: none;
    z-index: 1;
}

#gnb .wrap-menu {
    width: 950px;
    display: flex;
    flex-wrap: wrap;
    padding-left: 120px;
}

#gnb ._li {
    padding: 0;
    /* width: 100%; */
    display: none;
    display: flex;
    flex-direction: column;
    width: 200px;
    margin-right: 50px;
}

#gnb ._li:nth-child(4n) {
    margin-right: 0;
}

#gnb ._li:nth-child(5), #gnb ._li:nth-child(6), #gnb ._li:nth-child(7), #gnb ._li:nth-child(8) {
    margin-top: 80px;
}

#gnb ._li:first-child {
}

#gnb ._li ._menu {
    position: relative;
    margin-bottom: 34px;
}

#gnb ._li ._menu a {
    position: relative;
    color: #000;
    text-align: right;
    font-family: Pretendard;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 23px;
    color: #36BAD7;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
/*
#gnb ._li ._menu a::before {
	position: absolute;
	content: '';
	height: 20px;
	width: 3px;
	background-color: #752e4a;
	left: -26px;
	top: 3px;
}
*/

#gnb .snb {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    flex-direction: column;
    background-color: #fff;
    box-sizing: border-box;
}

#gnb .snb ._box {
    display: flex;
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
}

#gnb .snb ._box:last-child {
    margin-bottom: 0;
}

#gnb .snb ._box div {
    width: 130px;
    padding-right: 40px;
}

#gnb .snb ._box .top-menu {
    width: 130px;
    padding-right: 40px;
}

#gnb .snb ._box .top-menu:hover a {
    color: var(--Fastbone_Color, #18316B);
}

#gnb .snb.-wrap {
    flex-wrap: wrap;
    display: initial;
    padding: 0;
    background: initial;
}

#gnb .top-menu {
    display: block;
    margin-bottom: 20px;
}

#gnb .top-menu a {
	cursor: pointer;
	color: #000;
	font-family: Pretendard;
	font-size: 17px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	color: #111;
	font-family: Pretendard;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

#gnb .top-menu a:visited {
    color: #000;
}

#gnb .top-menu a:hover {
    color: #000;
}

#gnb .top-menu a:active {
    color: #000;
}

#gnb .snb li {
    width: 100%;
}

#gnb .snb li a {
    color: #454545;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 38px; /* 237.5% */
    display: inline-block;
}

#gnb .snb li a:hover {
	color: #18316B;
}

#wrap {
    padding-top: 100px;
}

.wrap-loc {
    height: 62px;
    display: flex;
    border-bottom: 1px solid #D9D9D9;
}

#location {
    display: flex;
    width: 1440px;
    margin:0 auto;
}

#location .home {
    width: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: 1px solid #D9D9D9;
    border-right: 1px solid #D9D9D9;
}

#location .locDepth1,  #location .locDepth2 {
    width: 262px;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    border-right: 1px solid #D9D9D9;
    position: relative;
}

#location .home a, #location .locDepth1 button {
    position: relative;
}

#location .locDepth1 button, #location .locDepth2 button { 
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

#location button img {
	width: 12px;
}

#location .locDepth2 button, #location .locDepth3 button {
    position: relative;
}

#location button {
    color: #333;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.pageMenu ul {
    display: none;
    list-style-type: none;
    padding: 20px;
    margin: 0;
    background: #fff;
    box-sizing: border-box;
    position: absolute;
    top: 63px;
    width: 263px;
    left: 0;
    border: 1px solid #d9d9d9;
    border-top: 0;
    margin-left: -1px;
    z-index: 1;
}

.pageMenu ul li a {
    color: #000;
    font-family: Pretendard;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 18px;
    display: block;
}

.pageMenu ul li a:hover {
    color: var(--Fastbone_Color, #18316B);
}

.pageMenu ul li:last-child a { 
    margin-bottom: 0;
}

.pageMenu ul li:last-child {
    border-bottom: none;
}

.container .swiper-container {
    position: relative;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.main-slide {
    position: relative;
    width: 100%;
    isolation: isolate;
}

.main-slide.idx01 {
    background: url(/resource/images/main-slide01.png) lightgray no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}

/*
.main-slide.idx02 {
    background: url(/resource/images/main-slide02.png) lightgray no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}*/

.main-slide.idx02 {
    background: url(/resource/images/main-slide02-new.png) lightgray no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}

.main-slide .box-txt {
    position: absolute;
    left: 120px;
    bottom: initial;
    top: 60%;
}

.main-slide.idx03 {
    background: url(/resource/images/main-slide03.png) lightgray no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}

.main-slide.idx04 {
    background: url(/resource/images/main-slide04.png) lightgray no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}

.main-slide .box-slide-content {
    width: 100%;
    height: 100%;
    position: relative;
}

/*
.main-slide .box-txt {
    position: absolute;
    left: 120px;
    bottom: 177px;
}*/

.main-slide .box-txt .swiper-counter {
    position: absolute;
    top: -66px;
    left: 0px;
    display: flex;
    align-items: center;
}

.main-slide .box-txt .swiper-counter .total,
.main-slide .box-txt .swiper-counter ._bar {
    color: #333 !important;
    font-family: Pretendard;
    font-size: 16px !important;
    font-style: normal;
    font-weight: 500 !important;
    line-height: normal;
    display: inline-block !important;
}

.main-slide .box-txt._idx02 .swiper-counter .total,
.main-slide .box-txt._idx04 .swiper-counter .total,
.main-slide .box-txt._idx02 .swiper-counter ._bar,
.main-slide .box-txt._idx04 .swiper-counter ._bar {
    color: #fff !important;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.main-slide .box-txt .swiper-counter .current {
    color: #3CD4F5;
    font-family: Pretendard;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.main-slide .box-txt._idx01 p {
    color: #00184B;
font-family: Pretendard;
font-size: 24px;
font-style: normal;
font-weight: 600;
line-height: normal;
margin-bottom: 20px;
}
.main-slide .box-txt._idx01 span {
    color: #00184B;
font-family: Pretendard;
font-size: 66px;
font-style: normal;
font-weight: 700;
line-height: 78px; /* 118.182% */
}

.main-slide .box-txt._idx02 p {
    color: #FFF;
    font-family: Pretendard;
    font-size: 70px;
    font-style: normal;
    font-weight: 800;
    line-height: 84px;
}

.main-slide .box-txt._idx02 p a {
    color: #3CD4F5;
    font-family: Pretendard;
    font-size: 70px;
    font-style: normal;
    font-weight: 800;
    line-height: 84px; /* 120% */
}
.main-slide .box-txt._idx02 p b {
    color: #FFF;
    font-family: Pretendard;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 84px;
}

.main-slide .box-txt._idx03 p {
    color: #111;
    font-family: Pretendard;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 20px;
}

.main-slide .box-txt._idx03 span:nth-child(3) {
    color: #00184B;
    font-family: Pretendard;
    font-size: 66px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    display: block;
    margin-bottom: 8px;
}

.main-slide .box-txt._idx03 span:nth-child(3) b {
    color: #E62525;
    font-family: Pretendard;
    font-size: 66px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.main-slide .box-txt._idx03 span:nth-child(4) {
    color: #00184B;
    font-family: Pretendard;
    font-size: 72px;
    font-style: normal;
    font-weight: 700;
    line-height: 78px; /* 108.333% */
}

.main-slide .box-txt._idx03 span:nth-child(4) b {
    color: #E62525;
    font-family: Pretendard;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 78px;
}

.main-slide .box-txt._idx04 p {
    color: #FFF;
    font-family: Pretendard;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 20px;
}

.main-slide .box-txt._idx04 span {
    color: #FFF;
    font-family: Pretendard;
    font-size: 66px;
    font-style: normal;
    font-weight: 700;
    line-height: 78px; /* 118.182% */
}

.swiper-container.main .slide-control {
    position: absolute;
    bottom: 40px;
    display: flex;
    width: 200px;
    left: 120px;
}

.swiper-container.main .slide-control .box-control {
    align-items: center;
    justify-content: center;
    display: flex;
}

.swiper-container.main .swiper-pagination-bullet {
    margin: 0 7px;
}

.swiper-container.main .swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: #36BAD7 !important;
}

.swiper-container.main .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #a6a6a6;
    opacity: 1;
}

.swiper-container.main .swiper-pagination {
    position: relative !important;
}

.swiper-container.main .swiper-btn-prev {
    background: url('/resource/images/main-slide-prev.png');
    width: 17px;
    height: 17px;
    z-index: 1;
    margin-right: 15px;
    cursor: pointer;
}

.swiper-container.main .swiper-btn-next {
    background: url('/resource/images/main-slide-next.png');
    width: 17px;
    height: 17px;
    z-index: 1;
    margin-left: 15px;
    cursor: pointer;
}


.box-main-01 {
    display: flex;
    padding-top: 200px;
}

.box-main-01 ._inner {
    width: 1440px;
    margin: 0 auto;
}

._main ._title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

._main ._title span {
    color: #111;
    text-align: center;
    font-family: Pretendard;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    display: block;
    margin-bottom: 30px;
}

._main ._title p::before {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -33px;
    width: 40px;
    height: 4px;
    background: var(--Primary, #4FC6E0);
    content: '';
}
._main ._title p {
    color: #454545;
    text-align: center;
    font-family: Pretendard;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; /* 145.455% */
    letter-spacing: -0.3px;
    position: relative;
    margin-top: 30px;
}

.box-main-01 .box-menu {
    width: 100%;
    margin-top: 100px;
}

.box-main-01 .box-menu ._wrap {
    display: flex;
    flex-direction: column;
}

.box-main-01 .box-menu ._wrap ._top {
    display: flex;
}

.box-main-01 .box-menu ._wrap ._top ._each {
    width: 50%;
    position: relative;
    box-sizing: border-box;
    height: 410px;
}

.box-main-01 .box-menu ._wrap ._top ._each a {
    padding: 60px 48px 32px 60px;
    display: block;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.box-main-01 .box-menu ._wrap ._top ._each p {
    margin-bottom: 20px;
    color: var(--White, #FFF);
    font-family: Pretendard;
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.box-main-01 .box-menu ._wrap ._top ._each span {
    color: var(--White, #FFF);
    font-family: Pretendard;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px; /* 145.455% */
    opacity: 0.9;
}

.box-main-01 .box-menu ._wrap ._top ._each img {
    position: absolute;
    bottom: 32px;
    right: 48px;
}

.box-main-01 .box-menu ._wrap ._top ._each:first-child {
    background: var(--Secondry, #546DC7);
}

.box-main-01 .box-menu ._wrap ._top ._each:nth-child(2) {
    background: #4FC6E0;
}

.box-main-01 .box-menu ._wrap ._bottom {
    display: flex;
}

.box-main-01 .box-menu ._wrap ._bottom ._each {
    width: 25%;
    height: 360px;
}

.box-main-01 .box-menu ._wrap ._bottom ._each:first-child {
    background: #DBE3FF;
    position: relative;
}

.box-main-01 .box-menu ._wrap ._bottom ._each:first-child a {
    padding: 40px 34px 22px 40px;
    box-sizing: border-box;
    display: block;
    width: 100%;
    height: 100%;
}

.box-main-01 .box-menu ._wrap ._bottom ._each:first-child p {
    color: #2A45A6;
    font-family: Pretendard;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 8px;
}

.box-main-01 .box-menu ._wrap ._bottom ._each:first-child span {
    color: #FFF;
    font-family: Pretendard;
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    background: #4C67C6;
    padding: 6px 16px;
    box-sizing: border-box;
    display: inline-block;
}

.box-main-01 .box-menu ._wrap ._bottom ._each:first-child ._img {
    position: absolute;
    bottom: 22px;
    right: 34px;
}

.box-main-01 .box-menu ._wrap ._bottom ._each:nth-child(2) {
    background: #6C86E3;
    position: relative;
}

.box-main-01 .box-menu ._wrap ._bottom ._each:nth-child(2) a {
    padding: 40px 34px 30px 24px;
    box-sizing: border-box;
    display: block;
    width: 100%;
    height: 100%;
}

.box-main-01 .box-menu ._wrap ._bottom ._each:nth-child(2) span {
    color: #4C67C6;
    font-family: Pretendard;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    padding: 6px 16px;
    box-sizing: border-box;
    display: inline-block;
    background-color: #fff;
}

.box-main-01 .box-menu ._wrap ._bottom ._each:nth-child(2) a span:first-child {
    margin-bottom: 6px;
}

.box-main-01 .box-menu ._wrap ._bottom ._each:nth-child(2) ._img {
    position: absolute;
    bottom: 24px;
    right: 30px;
}

.box-main-01 .box-menu ._wrap ._bottom ._each:nth-child(3) {
    background: #F8F8F8;
    position: relative;
}

.box-main-01 .box-menu ._wrap ._bottom ._each:nth-child(3) a {
    padding: 40px 30px 30px 40px;
    box-sizing: border-box;
    display: block;
    width: 100%;
    height: 100%;
}

.box-main-01 .box-menu ._wrap ._bottom ._each:nth-child(3) span {
    color: #FFF;
    font-family: Pretendard;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    padding: 7px 16px;
    box-sizing: border-box;
    display: inline-block;
    background: #4FC6E0;
}

.box-main-01 .box-menu ._wrap ._bottom ._each:nth-child(3) ._img {
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.box-main-01 .box-menu ._wrap ._bottom ._each:nth-child(4) {
    background: #D3F7FF;
    position: relative;
}

.box-main-01 .box-menu ._wrap ._bottom ._each:nth-child(4) a {
    padding: 36px 30px 22px 36px;
    box-sizing: border-box;
    display: block;
    width: 100%;
    height: 100%;
}

.box-main-01 .box-menu ._wrap ._bottom ._each:nth-child(4) p {
    color: #18B2D3;
    font-family: Pretendard;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 8px;
}

.box-main-01 .box-menu ._wrap ._bottom ._each:nth-child(4) span {
    color: #FFF;
    font-family: Pretendard;
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    padding: 6px 16px;
    box-sizing: border-box;
    display: inline-block;
    background: #27BDDE;
}

.box-main-01 .box-menu ._wrap ._bottom ._each:nth-child(4) ._img {
    position: absolute;
    bottom: 22px;
    right: 30px;
}

.box-main-02 {
    padding-top: 180px;
    position: relative;
}

.box-main-02 ._inner {
    width: 100%;
    margin:0 auto;
}

.box-main-02 ._inner ._content {
    width: 1280px;
    display: flex;
    justify-content: center;
    position: relative;
    margin: 0 auto;
    margin-top: 100px;
}

.box-main-02 ._inner ._content img {
    z-index: 1;
    position: relative;
}

.box-main-02 ._inner ._content .main-doc {
    position: absolute;
    bottom: 197px;
    cursor: pointer;
}

.box-main-02 ._inner ._content .main-doc._left {
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.box-main-02 ._inner ._content .main-doc._left ._over {
    display: flex;
    position: absolute;
    border-radius: 20px;
    background: #546DC7;
    width: 340px;
    height: 376px;
    flex-shrink: 0;
    flex-direction: column;
    align-items: center;
    padding: 60px 0;
    box-sizing: border-box;
    top: -115px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.0s ease, visibility 1.0s ease;
}

.box-main-02 ._inner ._content .main-doc._left ._over.visible {
    opacity: 1;
    visibility: visible;
}

.box-main-02 ._inner ._content .main-doc._left ._over h1 {
    color: #FFF;
    text-align: center;
    font-family: Pretendard;
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px; /* 144% */
    letter-spacing: -0.5px;
    margin-bottom: 40px;
    margin-top: 24px;
}

.box-main-02 ._inner ._content .main-doc._left ._over p {
    color: #FFF;
    font-family: Pretendard;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
}

.box-main-02 ._inner ._content .main-doc._left ._over p span {
    color: rgba(255, 255, 255, 0.80);
    text-align: center;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px; /* 200% */
}

.box-main-02 ._inner ._content .main-doc._right ._over {
    display: flex;
    position: absolute;
    border-radius: 20px;
    background: #4FC6E0;
    width: 340px;
    height: 376px;
    flex-shrink: 0;
    flex-direction: column;
    align-items: center;
    padding: 60px 0;
    box-sizing: border-box;
    top: -115px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.0s ease, visibility 1.0s ease;
}

.box-main-02 ._inner ._content .main-doc._right ._over.visible {
    opacity: 1;
    visibility: visible;
}

.box-main-02 ._inner ._content .main-doc._right ._over h1 {
    color: #FFF;
    text-align: center;
    font-family: Pretendard;
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px; /* 144% */
    letter-spacing: -0.5px;
    margin-bottom: 40px;
    margin-top: 24px;
}

.box-main-02 ._inner ._content .main-doc._right ._over p {
    color: #FFF;
    font-family: Pretendard;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
}

.box-main-02 ._inner ._content .main-doc._right ._over p span {
    color: rgba(255, 255, 255, 0.80);
    text-align: center;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px; /* 200% */
}


.box-main-02 ._inner ._content .main-doc._left span {
    text-align: right;
}

.box-main-02 ._inner ._content .main-doc._right {
    right: 0;
}

.box-main-02 ._inner ._content .main-doc span b {
    color: #36BAD7;
    text-align: right;
    font-family: Pretendard;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 38px; /* 172.727% */
    letter-spacing: -0.5px;
}

.box-main-02 ._inner ._content .main-doc span {
    margin-top: 12px;
    display: block;
    color: #333;
    font-family: Pretendard;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 38px;
    letter-spacing: -0.5px;
}

.box-move-text .text {
    display: flex;
    flex: 0 0 auto;
    white-space: nowrap;
    overflow: hidden;
    transition: 0.3s;
    color: #36BAD7;
    font-family: Pretendard;
    font-size: 200px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    letter-spacing: -3px;
    text-transform: uppercase;
    position: absolute;
    bottom: 420px;
    opacity: 0.12;
    width: -webkit-fill-available;
}

.box-move-text .text p {
    animation: textLoop 70s linear infinite;
    padding-right: 0.3rem;
    line-height: 1.4;
    font-weight: 700;
}

@keyframes textLoop {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	100% {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}

.box-main-03 {
    padding: 180px 0 200px;
    background: url(/resource/images/img-main03-bg.png) no-repeat;
    height: 1301px;
    background-color: #DEEFF3;
    box-sizing: border-box;
}

.box-main-03 ._inner {
    width: 1440px;
    margin: 0 auto;
}

.box-main-03 ._inner ._youtube {
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.box-main-03 ._inner ._youtube ._thum {
    position: relative;
}

.box-main-03 ._inner ._youtube ._thum ._arrow-up {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -30px;
    z-index: 1;
    cursor: pointer;
}

.box-main-03 ._inner ._youtube ._thum ._arrow-down {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -30px;
    z-index: 1;
    cursor: pointer;
}

.box-main-03 ._inner ._youtube ._big {
    width: 1120px;
    height: 645px;
    flex-shrink: 0;
}

.box-main-03 ._inner ._youtube .box-utube-list {
    overflow-y: scroll;
    height: 645px;
}
  
/* 스크롤바의 폭 너비 */
.box-main-03 ._inner ._youtube .box-utube-list::-webkit-scrollbar {
    width: 5px;  
}

.box-main-03 ._inner ._youtube .box-utube-list::-webkit-scrollbar-thumb {
    background: #29B6D5; /* 스크롤바 색상 */
    border-radius: 10px; /* 스크롤바 둥근 테두리 */
}

.box-main-03 ._inner ._youtube .box-utube-list::-webkit-scrollbar-track {
    background: #d0d0d030;  /*스크롤바 뒷 배경 색상*/
}

.box-main-03 ._inner ._youtube .box-utube-list li {
    margin-bottom: 17px;
    width: 270px;
    height: 146px;
}

.box-main-03 ._inner ._youtube .box-utube-list li:last-child {
    margin-bottom: 0;
}

.box-main-03 ._inner ._youtube .box-utube-list li a img {
    width: 100%;
}

.box-main-04 {
    padding: 180px 0;
    box-sizing: border-box;
}

.box-main-04 ._inner {
    width: 1440px;
    margin: 0 auto;
    height: 570px;
    position: relative;
}

.box-main-04 ._inner ._img {
    position: absolute;
    left: 0;
    top: 0;
    width: 800px;
    height: 460px;
    z-index: 1;
}

.box-main-04 ._inner ._content {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 1162px;
    height: 480px;
    border: 18px solid #36BAD720;
    padding: 82px 80px 100px 604px;
    box-sizing: border-box;
}

.box-main-04 ._inner ._content h1 {
    color: #111;
    font-family: Pretendard;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 46px; /* 127.778% */
    margin: 30px 0;
}

.box-main-04 ._inner ._content h1 b {
    color: #29B6D5;
font-family: Pretendard;
font-size: 36px;
font-style: normal;
font-weight: 700;
line-height: 46px;
}

.box-main-04 ._inner ._content p {
    margin: 30px 0;
    color: #454545;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 150% */
    letter-spacing: -0.3px;
}

.box-main-04 ._inner ._content a {
    border-radius: 30px;
    background: #36BAD7;
    display: flex;
    padding: 14px 28px 15px 28px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #FFF;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.3px;
    width: 309px;
    box-sizing: border-box;
}

.box-main-05 {
    padding: 180px 0;
    box-sizing: border-box;
    background: #F7F7F7;
}

.box-main-05 ._inner {
    width: 1440px;
    margin: 0 auto;
}

.box-main-05 ._inner ._title {
    color: #111;
    text-align: center;
    font-family: Pretendard;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 100px;
}

.box-main-05 ._inner .main-notice {
    display: flex;
}

.box-main-05 ._inner .main-notice li {
    margin-right: 30px;
    width: calc(100%/3 - 20px);
    background: #FFF;
    padding: 50px;
    box-sizing: border-box;
}

.box-main-05 ._inner .main-notice li:last-child {
    margin-right: 0px;
}

.box-main-05 ._inner .main-notice li h1 {
    color: var(--Dark, #333);
    font-family: Pretendard;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.044px;
    margin-bottom: 6px;
}

.box-main-05 ._inner .main-notice li span:nth-child(2) {
    color: #A4A4A4;
    font-family: Pretendard;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 171.429% */
}

.box-main-05 ._inner .main-notice li p {
    margin: 16px 0 20px;
    color: #666;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.box-main-05 ._inner .main-notice li span:last-child {
    color: #36BAD7;
    text-align: center;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: inline-block;
    margin-right: 2px;
}

.box-main-06 {
    display: flex;
    width: 100%;
}

.box-main-06 ._left {
    width: 50%;
}

.box-main-06 ._left ._map {
    width: 100% !important;
}

.box-main-06 ._left ._map .root_daum_roughmap {
    width: 100% !important;
}

.box-main-06 ._right {
    width: 50%;
    background-color: #4fc6e0;
    padding: 114px 119px 96px;
    box-sizing: border-box;
    position: relative;
}

.box-main-06 ._right ._logo {
    background: url(/resource/images/img-main-logo-bg.png);
    height: 739px;
    width: 508px;
    bottom: 0;
    right: 0;
    position: absolute;
}

.box-main-06 ._right ._each {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    align-items: flex-start;
}

.box-main-06 ._right ._each div {
    display: flex;
    align-items: center;
}

.box-main-06 ._right ._each span {
    color: #FFF;
    font-family: Pretendard;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    display: inline-block;
    margin-left: 12px;
}

.box-main-06 ._right ._each.idx01 p {
    margin-top: 20px;
}

.box-main-06 ._right ._each p {
    color: #FFF;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px; /* 160% */
    margin-top: 16px;
}

.box-main-06 ._right ._each.idx02 p, .box-main-06 ._right ._each.idx02 p a {
    color: #FFF;
    font-family: Pretendard;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; /* 100% */
    background-color: transparent;
    padding:0;
    border-radius: 0;
    width: initial;
    display: inline-block;
}

.box-main-06 ._right ._each.idx02 p:nth-child(3) {
    margin-top: 10px;
}

.box-main-06 ._right ._each.idx02 p b {
    color: #FFF;
    font-family: Pretendard;
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px; 
}

.box-main-06 ._right ._each p b {
    color: #F7FF85;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
}

.box-main-06 ._right ._each p ._small {
    color: #FFF !important;
font-family: Pretendard;
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: 30px !important;
letter-spacing: 2.3px !important;
}

.box-main-06 ._right ._each.idx03 p b {
    color: #fff;
    font-family: Pretendard;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
}

.box-main-06 ._right ._each.idx03 p ._stress {
    color: #F7FF85;
    font-size: 20px;
}

.box-main-06 ._right ._each ._s-stress {
    color: #F7FF85;
font-family: Pretendard;
font-size: 17px;
font-style: normal;
font-weight: 600;
line-height: 26px; /* 152.941% */
display: block;
margin-top: 20px;
margin-left: 0;
}

.box-main-06 ._right a {
    color: #36BAD7;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.3px;
    display: flex;
    padding: 14px 28px 15px 28px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    background: #FFF;
    width: 198px;
    box-sizing: border-box;
}


.sub-bnnr.idx01-01 {
    background: url(/resource/images/sub-banner-01-01.png) lightgray no-repeat;
}

.sub-bnnr.idx01-01::after {
    content: '';
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: 0.4;
    background: #000;
}

.sub-bnnr.idx02-01 {
    background: url(/resource/images/sub-banner-02-01.png) lightgray no-repeat;
}

.sub-bnnr.idx03-01 {
    background: url(/resource/images/sub-banner-03-01.png) lightgray no-repeat;
}

.sub-bnnr.idx04-01 {
    background: url(/resource/images/sub-banner-04-01.png) lightgray no-repeat;
}

.sub-bnnr.idx05-01 {
    background: url(/resource/images/sub-banner-05-01.png) lightgray no-repeat;
}

.sub-bnnr.idx06-01 {
    background: url(/resource/images/sub-banner-06-01.png) lightgray no-repeat;
}

.sub-bnnr.idx07-01 {
    background: url(/resource/images/sub-banner-07-01.png) lightgray no-repeat;
}

.sub-bnnr.idx08-01 {
	background: url(/resource/images/sub-banner-08-01.png) lightgray no-repeat;
}

.sub-bnnr.idx02-01::after, .sub-bnnr.idx03-01::after, .sub-bnnr.idx04-01::after,
.sub-bnnr.idx05-01::after, .sub-bnnr.idx06-01::after {
    content: '';
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: 0.4;
    background: #000;
}

.sub-bnnr.idx07-01::after, .sub-bnnr.idx08-01::after {
	content: '';
	position: absolute;
	z-index: -1;
	inset: 0;
	opacity: 0.45;
	background: #000;
}

.sub-bnnr {
    width: 100%;
    height: 410px;
    margin: 0 auto;
    position: relative;
    isolation: isolate;
}

.sub-bnnr .inner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.sub-bnnr .inner p {
    color: #FFF;
    text-align: center;
    font-family: Pretendard;
    font-size: 38px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 20px;
}

.sub-bnnr .inner span {
    color: #FFF;
    text-align: center;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: block;
}

._video {
    margin-bottom: 88px;
    display: flex;
    justify-content: center;
}

.box-sub01-01-1 {
    display: flex;
    padding-top: 150px;
    box-sizing: border-box;
    flex-direction: column;
}

.box-sub01-01-1 ._title {
    color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1px;
    margin-bottom: 100px;
}

.box-sub01-01-1 ._bg {
    background: url(/resource/images/img-sub01-01-bg.png) no-repeat;
    width: 100%;
    height: 1021px;
    padding: 120px 0 130px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    align-items: center;
}

.box-sub01-01-1 ._bg span {
    display: block;
    color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 22px;
}

.box-sub01-01-1 ._bg p {
    color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 67px; /* 167.5% */
    letter-spacing: -1px;
    margin-bottom: 70px;
}

.box-sub01-01-1 ._bg p b {
    color: #36BAD7;
    font-family: Pretendard;
    font-size: 52px;
    font-style: normal;
    font-weight: 600;
    line-height: 67px;
    letter-spacing: -1px;
}

.box-sub01-02-1 {
    display: flex;
    padding: 120px 0 180px;
    flex-direction: column;
    align-items: center;
}

.box-sub01-02-1 h1 {
    color: #111;
    text-align: left;
    font-family: Pretendard;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 48px; /* 133.333% */
    letter-spacing: -0.72px; 
    margin-bottom: 50px;
}

.box-sub01-02-1 h1 b {
    color: #4561C3;
    font-family: Pretendard;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
    letter-spacing: -0.36px;
}

.box-sub01-02-1 svg {
    margin: 30px 0;
}

.box-sub01-02-1 p {
    margin-bottom: 60px;
    color: #333;
font-family: Pretendard;
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 38px;
letter-spacing: -0.6px;
text-align: center;
}

.box-sub01-02-1 p b {
    color: #111;
text-align: center;
font-family: Pretendard;
font-size: 20px;
font-style: normal;
font-weight: 600;
line-height: 38px; /* 190% */
letter-spacing: -0.6px;
}

.box-sub01-02-1 span {
    color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 38px; /* 172.727% */
    letter-spacing: -0.44px;
}

.box-sub01-02-1 span a {
    position: relative;
}

.box-sub01-02-1 span a::after {
    position: absolute;
    width: 187px;
    height: 12px;
    flex-shrink: 0;
    opacity: 0.3;
    background: #36BAD7;
    content: '';
    left: 0;
    bottom: -2px;
}

.box-sub01-02-1 span a:active, .box-sub01-02-1 span a:hover {
    color: initial;
}

.box-sub01-02-1 {
    padding: 150px 0 180px;
}

.box-sub01-02-1 ._title {
    color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 100px;
}

.box-sub01-02-1 .box-songpa {
    margin-top: 170px;
    width: 1240px;
    display: flex;
    flex-wrap: wrap;
}

.box-sub01-02-1 .box-songpa h1 {
    color: #000;
    font-family: Pretendard;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    text-align: left;
    width: 100%;
    margin-bottom: 34px;
}

.box-sub01-02-1 .box-songpa h1 b {
    color: #6C86E3;
    font-family: Pretendard;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
}

.box-sub01-02-1 .box-songpa .doc-box {
    width: 100%;
    max-width: initial;
    padding-bottom: 0;
    flex-direction: row;
    align-items: flex-start;
}

.box-sub01-02-1 .box-songpa .doc-box .doc {
    margin-left: 0;
    width: calc(50% - 24px);
    margin-right: 48px;
    cursor: default;
}

.box-sub01-02-1 .box-songpa #doc-01 .his {
    left: initial;
}

.box-sub01-02-1 .box-songpa .doc-box.on .his {
    display: block;
    width: calc(50% - 24px);
    max-width: initial;
}

.box-sub01-02-1 .box-songpa .doc-box .his {
    display: none;
    z-index: 10;
    position: relative;
    left: initial;
    width: calc(50% - 24px);
    margin-top: 0;
    max-width: initial;
    height: initial;
    bottom: initial;
}

.box-sub01-02-1 .box-songpa .doc-box.on .doc .text {
    background: #6C86E3;
}

.box-sub01-02-1 .box-songpa .doc-box .his .his-tab li.active a {
    border: 1px solid #6C86E3;
    background: #6C86E3;
}



/* 의료진 소개 */
.doc-wrap {
	display: flex;
	justify-content: space-between;
}
.doc-box {
	position: relative;
	width: 50%;
	max-width: 620px;
	margin-bottom: 120px;
	padding-bottom: 580px;
	display: flex;
	flex-direction: column;
}

.doc-box .doc {
	/* overflow: hidden; */
	width: calc(100% - 24px);
	/* margin:0 auto; */
	cursor: pointer;
}
.doc-box:nth-child(2) .doc {
	margin-left: auto;
}
.doc-box .doc .img {
    border-radius: 24px 24px 0px 0px;
    background: linear-gradient(180deg, #FAFAFA 0%, #FAF9F8 100%);
}
.doc-box .doc .img img {
	width: 100%;
	max-width: 100%;
}

.doc-box .doc .text {
	display: flex;
	justify-content: center;
	padding: 40px 0;
	border-radius: 0px 0px 24px 24px;
    background: #939393;
    align-items: center;
    box-sizing: border-box;
}

.doc-box .doc .text span:first-child {
	color: #FFF;
    font-family: Pretendard;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: inline-block;
    margin-right: 12px;
}

.doc-box .doc .text span:nth-child(2) {
	color: #FFF;
    font-family: Pretendard;
    font-size: 34px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.5px;
}

.doc-box .his {
	position: absolute;
	bottom: -40px;
	display: none;
	height: 500px;
	margin-top: 120px;
	z-index: 10;
}
#doc-01 .his {
	left: 0;
}
#doc-02 .his {
	right: 0;
}

.doc-box .his .his-tab {
	display: flex;
	border-bottom: 1px solid #BABABA;
    align-items: baseline;
}

.doc-box .his .his-tab li a {
	display: block;
	width: 248px;
    height: 76px;
	color: #666;
    text-align: center;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 0.5px;
	border: 1px solid #BABABA;
	background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px 16px 0px 0px;
    border-bottom: 0;
}

.doc-box .his .his-tab li.active a {
	border: 1px solid transparent;
	box-sizing: border-box;
	border-radius: 16px 16px 0px 0px;
	border: 1px solid #4561C3;
    background: #4561C3;
    color: #FFF;
    text-align: center;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 0.5px;
}

.doc-box .his [class*="tab-"] {
	overflow-y: auto;
	display: none;
	height: 100%;
	padding: 40px 20px;
	color: #000;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px; /* 211.111% */
}

.doc-box .his [class*="tab-"].on {
	display: block;
}
.doc-box.on .doc .text {
	position: relative;
    background: #4561C3;
}

.doc-box.on .his {
	display: block;
	width: 200%;
	max-width: 1288px;
}

.box-sub01-03-1 {
    padding-top: 150px;
}

.box-sub01-03-1 ._inner {
    width: 1440px;
    margin: 0 auto;
}

.box-sub01-03-1 ._inner ._title {
    color: #000;
text-align: center;
font-family: Pretendard;
font-size: 40px;
font-style: normal;
font-weight: 600;
line-height: normal;
    margin-bottom: 120px;
}

.box-sub01-03-1 ._inner ._wrap {
    display: flex;
    /* padding: 68px 0 70px; */
    box-sizing: border-box;
    flex: d;
    /* flex-direction: column; */
    align-items: flex-start;
    flex-wrap: wrap;
}

.box-sub01-03-1 ._inner ._wrap ._title {
    color: #000;
    font-family: Pretendard;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-bottom: 34px;
    display: block;
    width: 100%;
    text-align: left;
}

.box-sub01-03-1 ._inner ._wrap ._box {
    padding: 68px 0 70px;
    display: flex;
    width: 100%;
    background: #FCFCFC;
} 

.box-sub01-03-1 ._inner ._wrap ._each {
    display: flex;
    flex-direction: column;
    background: #FCFCFC;
    width: 25%;
    height: 176px;
    padding: 0 80px;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-between;
}

.box-sub01-03-1 ._inner ._wrap ._each:not(:last-child) {
    border-right: 1px solid #EAEAEA;
}

.box-sub01-03-1 ._inner ._wrap ._each div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.box-sub01-03-1 ._inner ._wrap ._each span:first-child {
    color: #FFF;
    text-align: center;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1px;
    display: inline-flex;
    padding: 7px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
    border-radius: 20px;
    background: #4FC4E0;
}

.box-sub01-03-1 ._inner ._wrap ._each p {
    color: #333;
    text-align: center;
    font-family: Pretendard;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 22px;
    margin-bottom: 5px;
}

.box-sub01-03-1 ._inner ._wrap ._each span:nth-child(3) {
    color: #A6A6A6;
text-align: center;
font-family: Pretendard;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: normal;
}

.box-sub01-03-1 ._txt {
    display: block;
    margin-top: 12px;
    color: #BF3D3A;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.box-sub01-03-2 {
    padding-top: 80px;
    display: flex;
}

.box-sub01-03-2 ._inner {
    width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 100px;
    box-sizing: border-box;
    height: 440px;
    background: #40A9BF;
    align-items: flex-end;
}

.box-sub01-03-2 ._inner ._txt {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.box-sub01-03-2 ._inner ._txt span:first-child {
    color: #FFF;
    font-family: Pretendard;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.box-sub01-03-2 ._inner ._txt p {
    color: #FFF;
    font-family: Pretendard;
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 16px;
    margin-bottom: 48px;
}

.box-sub01-03-2 ._inner ._txt span:last-child {
    color: #FFF;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px; /* 150% */
}

.box-sub01-03-3 {
    padding: 120px 0;
    display: flex;
}

.box-sub01-03-3 ._inner {
    width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.box-sub01-03-3 ._inner ._title {
    color: #000;
    font-family: Pretendard;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    width: 100%;
}

.box-sub01-03-3 ._inner ._sub-title {
    color: #333;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-bottom: 47px;
    display: block;
}

.box-sub01-03-3 ._inner ._sub-title b {
    font-weight: 600;
}

.box-sub01-03-3 ._inner ._wrap {
    display: flex;
}

.box-sub01-03-3 ._inner ._wrap ._each {
    display: flex;
    flex-direction: column;
    width: calc(100% / 3 - 20px);
}

.box-sub01-03-3 ._inner ._wrap ._each ._img {
    width: 460px;
    height: 260px;
    border-radius: 20px 20px 0px 0px;
}

.box-sub01-03-3 ._inner ._wrap ._each ._img.idx01 {
    background: url(/resource/images/img-sub01-03-4.png) lightgray 50% / cover no-repeat;
}
.box-sub01-03-3 ._inner ._wrap ._each ._img.idx02 {
    background: url(/resource/images/img-sub01-03-5.png) lightgray 50% / cover no-repeat;
}
.box-sub01-03-3 ._inner ._wrap ._each ._img.idx03 {
    background: url(/resource/images/img-sub01-03-6.png) lightgray 50% / cover no-repeat;
}

.box-sub01-03-3 ._inner ._wrap ._each:not(:last-child) {
    margin-right: 30px;
}

.box-sub01-03-3 ._inner ._wrap ._each ._txt {
    display: flex;
    flex-direction: column;
    border-radius: 0px 0px 20px 20px;
    background: #FAFAFA;
    padding: 30px 40px 32px 40px;
    box-sizing: border-box;
}

.box-sub01-03-3 ._inner ._wrap ._each ._txt p {
    color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 14px;
}

.box-sub01-03-3 ._inner ._wrap ._each ._txt span {
    color: #454545;
    text-align: center;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 133.333% */
    display: block  ;
}

.box-sub01-03-4 {
    background: #F7F7F7;
    padding: 120px 0 204px;
    position: relative;
}

.box-sub01-03-4 ._title {
    color: #000;
    font-family: Pretendard;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px; /* 125% */
    letter-spacing: -0.5px;
    width: 1440px;
    margin: 0 auto;
    margin-bottom: 60px;
}

.box-sub01-03-4 .swiper-container {
    height: 340px;
}

.box-sub01-03-4 .swiper-slide {
    display: flex;
    height: 340px;
    margin-right: 40px;
}

.box-sub01-03-4 .swiper-slide ._txt {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 480px;
    border-radius: 0px 20px 20px 0px;
    background: #FFF;
    padding: 50px;
    box-sizing: border-box;
    height: 100%;
}

.box-sub01-03-4 .swiper-slide ._txt ._num {
    color: #000;
    font-family: Pretendard;
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    opacity: 0.3;
}

.box-sub01-03-4 .swiper-slide ._txt div p {
    color: #000;
    font-family: Pretendard;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 24px;
}

.box-sub01-03-4 .swiper-slide ._txt div span {
    color: #333;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 140% */
}

.box-sub01-03-4 .swiper-slide ._img {
    width: 480px;
    height: 340px;
    border-radius: 20px 0px 0px 20px;
}

.box-sub01-03-4 .swiper-slide ._img.idx01 {
    background: url(/resource/images/img-sub01-03-7.png) lightgray 50% / cover no-repeat;
}

.box-sub01-03-4 .swiper-slide ._img.idx02 {
    background: url(/resource/images/img-sub01-03-8.png) lightgray 50% / cover no-repeat;
}

.box-sub01-03-4 .swiper-slide ._img.idx03 {
    background: url(/resource/images/img-sub01-03-9.png) lightgray 50% / cover no-repeat;
}

.box-sub01-03-4 .slide-control {
    position: absolute;
    bottom: 130px;
    display: flex;
    width: 100%;
    margin: 0 auto;
    left: 0px;
    height: 20px;
}

.box-sub01-03-4 .slide-control .box-control {
    align-items: center;
    justify-content: center;
    display: flex;
    width: 100%;
}

.box-sub01-03-4 .swiper-pagination-bullet {
    margin: 0 7px;
}

.box-sub01-03-4 .swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: #36BAD7 !important;
}

.box-sub01-03-4 .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #a6a6a6;
    opacity: 1;
}

.box-sub01-03-4 .swiper-pagination {
    position: relative !important;
}

.box-sub01-03-4 .swiper-btn-prev {
    background: url('/resource/images/main-slide-prev.png');
    width: 17px;
    height: 17px;
    z-index: 1;
    margin-right: 15px;
    cursor: pointer;
}

.box-sub01-03-4 .swiper-btn-next {
    background: url('/resource/images/main-slide-next.png');
    width: 17px;
    height: 17px;
    z-index: 1;
    margin-left: 15px;
    cursor: pointer;
}

.box-sub01-03-5 {
    display: flex;
}

.box-sub01-03-5 ._left {
    background: #3FAFC7; 
    width: 432px;
    padding: 110px 240px;
    box-sizing: border-box;
    width: 50%;
}

.box-sub01-03-5 ._right {
    background: #475CA3;
    width: 486px;
    box-sizing: border-box;
    padding: 110px 100px;
    width: 50%;
}

.box-sub01-03-5 ._left span:first-child, .box-sub01-03-5 ._right span:first-child {
    color: #FFF;
    font-family: Pretendard;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.box-sub01-03-5 ._left p:nth-child(2), .box-sub01-03-5 ._right p:nth-child(2) {
    color: #FFF;
    font-family: Pretendard;
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1px;
    margin-top: 14px;
    margin-bottom: 40px;
}

.box-sub01-03-5 ._right p:nth-child(2) b {
    color: #FFF;
font-family: Pretendard;
font-size: 24px;
font-style: normal;
font-weight: 600;
line-height: normal;
letter-spacing: 1px;
}

.box-sub01-03-5 ._left span:nth-child(3), .box-sub01-03-5 ._right span:nth-child(3) {
    color: #FFF;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 34px; /* 170% */
}

.box-sub01-04-1 {
    padding:150px 0 180px;
}

.box-sub01-04-1 ._inner {
    width: 1440px;
    margin: 0 auto;
}

.box-sub01-04-1 ._inner ._title {
    color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 20px;
}

.box-sub01-04-1 ._inner ._sub-title {
    color: #333;
    text-align: center;
    font-family: Pretendard;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 100px;
    display: block;
}

.box-sub01-04-1 ._inner ._wrap {
    display: flex;
    width: 1400px;
    flex-direction: column;
}

.box-sub01-04-1 ._inner ._wrap .swiper-container ul li {
    width: 100%;
}

.gallery-top {
    height: 70.5%;
    width: 100%;
}

.gallery-thumbs {
    /* height: 16%; */
    box-sizing: border-box;
    padding: 10px 0;
    width: 100%;
    display: flex;
    margin-top: 40px;
}

.gallery-thumbs .swiper-slide {
    width: calc(20% - 16px) !important;
    margin-right: 20px !important;
    max-height: 170px;
    height: max-content;
    background-color: #000;
    opacity: 1;
}

.gallery-thumbs .swiper-slide img {
    width: -webkit-fill-available;
}

.gallery-thumbs .swiper-slide:last-child {
    margin-right: 0;
}

.gallery-thumbs .swiper-slide-thumb-active {
    border: 2px solid #2f65bd;
    box-sizing: border-box;
    opacity: 1;
}

.swiper-button-next {
    right: 0;
    padding:20px 26px 20px 30px;
    background-color: transparent;
    opacity: 0.7;
}

.swiper-button-prev {
    left: 0;
    padding:20px 30px 20px 26px;
    background-color: transparent;
    opacity: 0.7;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 1;
}

.box-sub01-05-1 {
    display: flex;
    padding: 150px 0 120px;
    box-sizing: border-box;
    flex-direction: column;
}

.box-sub01-05-1 ._inner {
    width: 1440px;
    margin: 0 auto;
}

.box-sub01-05-1 ._inner ._title {
    color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 100px;
}

.box-sub01-05-1 ._inner ._box {
    display: flex;
    flex-direction: column;
    background: url(/resource/images/img-sub01-05-01-bg.png);
    height: 491px;
    width: 100%;
    padding:100px 0 120px;
    box-sizing: border-box;
    align-items: center;
}

.box-sub01-05-1 ._inner ._box ._title {
    color: #FFF;
    font-family: Pretendard;
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-bottom: 60px;
}

.box-sub01-05-1 ._inner ._box ._wrap {
    width: 1260px;
    position: relative;
    height: 100%;
}

.box-sub01-05-1 ._inner ._box ._wrap ._each {
    background: url(/resource/images/img-sub01-05-01.png);
    height: 170px;
    width: 460px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.box-sub01-05-1 ._inner ._box ._wrap ._each p {
    color: #FFF;
    font-family: Pretendard;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.box-sub01-05-1 ._inner ._box ._wrap ._each p b {
    color: #32C2E1;
    font-family: Pretendard;
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;    
}

.box-sub01-05-1 ._inner ._box ._wrap ._each span {
    color: #FFF;
    text-align: center;
    font-family: Pretendard;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.box-sub01-05-1 ._inner ._box ._wrap ._each:first-child {
    position: absolute;
    left: 0;
    top:0;
}

.box-sub01-05-1 ._inner ._box ._wrap ._each:nth-child(2) {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top:0;
}

.box-sub01-05-1 ._inner ._box ._wrap ._each:nth-child(3) {
    position: absolute;
    right: 0;
    top:0;
}

.box-sub01-05-1.sub03 {
    padding: 160px 0 0 0;
}

.box-sub01-05-1 ._inner ._box2 {
    display: flex;
    flex-direction: column;
    background: url(/resource/images/img-sub01-05-27.png);
    height: 538px;
    width: 100%;
    padding:136px 0 112px 104px;
    box-sizing: border-box;
    align-items: flex-start;
    position: relative;
}

.box-sub01-05-1 ._inner ._box2 .bg-logo {
    position: absolute;
    top: 58px;
    right: 13px;
}

.box-sub01-05-1 ._inner ._box2 ._title {
    color: #FFF;
    font-family: Pretendard;
    margin-bottom: 50px;
    font-size: 42px;
    font-style: normal;
    font-weight: 500;
    line-height: 50px; /* 119.048% */
    letter-spacing: -2.1px;
    text-align: left;
}

.box-sub01-05-1 ._inner ._box2 ._title b {
    color: #4FC6E0;
    font-weight: 700;
}

.box-sub01-05-1 ._inner ._box2 span {
    color: #FFF;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 155.556% */
    letter-spacing: -0.36px;
}

.box-sub01-05-1 ._inner ._box2 span b {
    font-weight: 600;
}

.box-sub01-05-1 ._inner ._box2 span .bg {
    background: #19A1BE;
}

.box-sub01-05-2 {
    padding-bottom: 120px;
    display: flex;
}

.box-sub01-05-2.pb {
    padding-bottom: 160px;
}

.box-sub01-05-2.pb0 {
    padding-bottom: 0px;
}

.box-sub01-05-2 ._inner {
    width: 1440px;
    margin: 0 auto;
}

.box-sub01-05-2 ._utube .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 145px;
    height: 145px;
    pointer-events: none;
}

/* Swiper 컨테이너 */
.box-sub01-05-2 ._utube .swiper-container {
    width: 100%;
    max-width: 1860px; /* 100%에서 60px 빼기 */
    min-width: 300px;
    overflow: hidden;
    padding: 0;
    box-sizing: border-box;
}

/* Swiper 내부 요소 스타일 */
.box-sub01-05-2 ._utube .swiper-wrapper {
    display: flex;
}

.box-sub01-05-2 ._utube .swiper-slide {
    width: 240px !important;
    height: 170px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-sub01-05-2 .swiper-slide a._each {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.box-sub01-05-2 .swiper-slide a._each img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 꽉 차게 */
}

.box-sub01-05-2 ._utube .swiper-container._thum-utube {
    margin-top: 98px;
}

.box-sub01-05-2 ._utube .swiper-container._thum-utube .swiper-slide {
    width: 240px;
    height: 170px;
    display: flex;
}

.box-sub01-05-2 ._utube .swiper-container._thum-utube ._each {
    width: 100%;
}

.box-sub01-05-2 ._utube .swiper-container._thum-utube ._each img {
    width: 240px;
    height: 135px;
}

.box-sub01-05-2 ._utube .swiper-container._thum-utube ._each .txt {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
}

.box-sub01-05-2 ._utube .swiper-container._thum-utube ._each .txt p {
    color: #333;
    font-family: "Noto Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px; /* 128.571% */
    letter-spacing: -0.7px;
    text-align: left;
}

.box-img-cross {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.box-img-cross ._title {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
}

.box-img-cross ._title span {
    display: block;
    color: #5CB8CC;
    font-family: Pretendard;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 14px;
}

.box-img-cross ._title p {
    color: #333;
    font-family: Pretendard;
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.box-img-cross ._title p b {
    color: #333;
    font-family: Pretendard;
    font-size: 34px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.box-img-cross ._each {
    display: flex;
    align-items: center;
}

.box-img-cross ._each:nth-child(even) ._txt {
    padding-left: 70px;
    box-sizing: border-box;
}

.box-img-cross ._each:nth-child(odd) ._txt {
    padding-left: 20px;
    box-sizing: border-box;
}

.box-img-cross ._each ._txt {
    width: 720px;
    display: flex;
    flex-direction: column;
}

.box-img-cross ._each ._txt p {
    color: #000;
    font-family: Pretendard;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-bottom: 30px;
}

.box-img-cross ._each ._txt p b {
    color: #36BAD7;
    font-weight: 800;
}

.box-img-cross ._each ._txt span {
    color: #000;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; /* 177.778% */
    letter-spacing: -0.5px;
}

.box-img-cross ._each ._txt span b {
    font-weight: 700;
}

.box-img-cross ._each ._txt span ._stress {
    color: #D8615B;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.5px;
}

.box-sub01-05-2.type2 {
    padding-bottom: 100px;
}

.box-sub01-05-2.type2 .box-img-cross ._each:nth-child(odd) ._txt {
    padding-left: 70px;
}

.box-sub01-05-3 {
    padding-bottom: 120px;
    display: flex;
}

.box-sub01-05-3 ._inner {
    width: 1440px;
    margin: 0 auto;
}

.box-img-thum {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.box-img-thum ._title {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    width: 100%;
}

.box-img-thum ._title span:first-child {
    display: block;
    color: #5CB8CC;
    font-family: Pretendard;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 14px;
}

.box-img-thum ._title p {
    color: #333;
    font-family: Pretendard;
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 50px;
}

.box-img-thum ._title span:nth-child(3), .box-img-thum ._title ._small {
    color: #111 !important;
    font-family: Pretendard;
    font-size: 26px !important;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px !important;
    margin-bottom: 0 !important;
}

.box-img-thum.n4 ._each {
    width: 340px;
    margin-right: 26px;
}

.box-img-thum.n4 ._each:last-child {
    margin-right: 0;
}

.box-img-thum.n3 ._each {
    width: 462px;
    margin-right: 27px;
}

.box-img-thum.n3 ._each:last-child {
    margin-right: 0;
}

.box-img-thum ._each {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box-img-thum ._each ._txt {
    background: #F2F6F7;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: 0px 0px 16px 16px;
}

.box-img-thum ._each ._txt span {
    color: #000;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
}

.box-img-thum.type2 {
    margin-top: 60px;
}

.box-img-thum.type2 ._each ._txt {
    background: #FAFAFA;
    height: 287px;
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 0px 0px 16px 16px;
    padding: 36px 40px 66px 40px;
    box-sizing: border-box;
    align-items: flex-start;
}

.box-img-thum.type2 ._each ._txt span:first-child {
    color: #000;
font-family: Pretendard;
font-size: 24px;
font-style: normal;
font-weight: 600;
line-height: normal;
display: block;
margin-bottom: 16px;
}

.box-img-thum.type2 ._each ._txt span:first-child b {
    color: #000;
font-family: Pretendard;
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: normal;
}

.box-img-thum.type2 ._each ._txt span:nth-child(2) {
    color: #454545;
font-family: Pretendard;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 28px; /* 155.556% */
letter-spacing: -0.5px;
}

.box-img-thum.type2 ._each ._txt span:nth-child(2) b {
    color: #333;
font-family: Pretendard;
font-size: 18px;
font-style: normal;
font-weight: 600;
line-height: 28px;
letter-spacing: -0.5px;
}

.box-sub01-05-3 .box-img-cross {
    margin: 100px 0;
}

.box-sub01-05-3 .box-img-cross ._each ._txt {
    padding-left: 70px;
}

.box-sub01-05-4 {
    padding-bottom: 120px;
    display: flex;
}

.box-sub01-05-4 ._inner {
    width: 1440px;
    margin: 0 auto;
}

.box-sub01-05-5 {
    padding-bottom: 180px;
    display: flex;
}

.box-sub01-05-5 ._inner {
    width: 1440px;
    margin: 0 auto;
}

.box-sub01-05-6 {
    padding-top: 60px;
    display: flex;
    padding-bottom: 120px;
}

.box-sub01-05-6 ._inner {
    width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    background: #F8F9FA;
    padding: 60px 28px 54px 70px;
    box-sizing: border-box;
}

.box-sub01-05-6 ._inner ._title {
    margin-bottom: 40px;
}

.box-sub01-05-6 ._inner ._title p {
    color: #111;
    font-family: Pretendard;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.5px;
}

.box-sub01-05-6 ._inner ._title p b {
    color: #111;
    font-family: Pretendard;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
}

.box-sub01-05-6 ._inner ._content {
    display: flex;
}

.box-sub01-05-6 ._inner ._content ._txt {
    margin-left: 50px;
}

.box-sub01-05-7 {
    margin-top: 117px;
}

.box-sub01-05-7 ._inner {
    width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box-sub01-05-7 ._inner ._title {
    color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-top: 20px;
    margin-bottom: 74px;
}

.box-sub01-05-7 ._inner ._title b {
    color: #36BAD7;
    font-weight: 600;
}

.box-sub01-05-7 ._inner .bg-circle {
    display: flex;
    background: url(/resource/images/img-sub01-05-28.png);
    height: 410px;
    width: 1070px;
    position: relative;
    justify-content: space-between;
    margin: 0 auto;
}

.box-sub01-05-7 ._inner .bg-circle ._each:first-child {
    margin-left: 50px;
}

.box-sub01-05-7 ._inner .bg-circle ._each:last-child {
    margin-right: 50px;
}
.box-sub01-05-7 ._inner .bg-circle ._each {
    width: 310px;
    height: 310px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 50px;
}

.box-sub01-05-7 ._inner .bg-circle ._each p {
    color: #9B9B9B;
    font-family: Pretendard;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-top: 20px;
}

.box-sub01-05-7 ._inner .bg-circle ._each p b {
    color: #333;
    text-align: center;
    font-family: Pretendard;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
}

.box-sub01-05-7 ._inner .bg-circle ._each h1 {
    color: #000;
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.5px;
}

.box-sub01-05-7 ._inner .box-info {
    display: flex;
    margin-top: 60px;
}

.box-sub01-05-7 ._inner .box-info ._each {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 370px;
    position: relative;
}

.box-sub01-05-7 ._inner .box-info ._each::before {
    position: absolute;
    width: 1px;
    height: 177px;
    left: -21px;
    top: -8px;
    background-color: #d9d9d9;
    content: '';
}

.box-sub01-05-7 ._inner .box-info ._each:not(:last-child) {
    margin-right: 100px;
}

.box-sub01-05-7 ._inner .box-info ._each h1 {
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
}

.box-sub01-05-7 ._inner .box-info ._each:first-child h1 {
    color: #FFCB05;
}

.box-sub01-05-7 ._inner .box-info ._each:nth-child(2) h1 {
    color: #B2D235;
}

.box-sub01-05-7 ._inner .box-info ._each:nth-child(3) h1 {
    color: #29B6D5;
}

.box-sub01-05-7 ._inner .box-info ._each p {
    color: #111;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
}

.box-sub01-05-7 ._inner .box-info ._each ul {
    margin-top: 18px;
}

.box-sub01-05-7 ._inner .box-info ._each ul li {
    position: relative;
    color: #666;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 144.444% */
    letter-spacing: -0.5px;
    margin-bottom: 5px;
    padding-left: 13px;
}

.box-sub01-05-7 ._inner .box-info ._each ul li::before {
    position: absolute;
    left: 0;
    top: 12px;
    width: 3px;
    height: 3px;
    background-color: #333;
    border-radius: 50%;
    content: '';
}

.box-sub01-05-8 {
    margin-top: 150px;
}

.box-sub01-05-8 ._inner {
    width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box-sub01-05-8 ._inner ._title {
    color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-top: 20px;
    margin-bottom: 40px;
}

.box-sub01-05-8 ._inner ._title b {
    color: #36BAD7;
    font-weight: 600;
}

.box-sub01-05-8 ._inner ._sub-title {
    color: #333;
    text-align: center;
    font-size: 19px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px; /* 189.474% */
    letter-spacing: -0.5px;
}

.box-sub01-05-8 ._inner ._sub-title .bg {
    position: relative;
    font-weight: 600;
}

.box-sub01-05-8 ._inner ._sub-title .bg::after {
    position: absolute;
    background: rgba(255, 203, 5, 0.30);
    height: 7px;
    width: 100%;
    top: 19px;
    left: 0;
    content: '';
    z-index: -1;
}

.box-sub01-05-8 ._inner .box-step {
    display: flex;
    width: 100%;
    margin-top: 73px;
    margin-bottom: 87px;
}

.box-sub01-05-8 ._inner .box-step ._each {
    width: calc(100%/3 - 20px);
    margin-right: 30px;
    display: flex;
    flex-direction: column;
    height: 350px;
}

.box-sub01-05-8 ._inner .box-step ._each:last-child {
    margin-right: 0;
}

.box-sub01-05-8 ._inner .box-step ._each .top {
    height: 100px;
    border-radius: 10px 10px 0px 0px;
    background: #36BAD7;
    display: flex;
    align-items: center;
    padding-left: 38px;
    box-sizing: border-box;
    position: relative;
}

.box-sub01-05-8 ._inner .box-step ._each .top span {
    color: #FFF;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px; /* 138.462% */
    letter-spacing: -0.5px;
}

.box-sub01-05-8 ._inner .box-step ._each:first-child .top img {
    position: absolute;
    right: 38px;
    bottom: 0;
}

.box-sub01-05-8 ._inner .box-step ._each:nth-child(2) .top img {
    position: absolute;
    right: 33px;
    bottom: 0;
}

.box-sub01-05-8 ._inner .box-step ._each:nth-child(3) .top img {
    position: absolute;
    right: 19px;
    bottom: 0;
}

.box-sub01-05-8 ._inner .box-step ._each .bottom {
    border-radius: 10px;
    background: rgba(224, 237, 240, 0.30);
    padding: 38px 47px;
    box-sizing: border-box;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.box-sub01-05-8 ._inner .box-step ._each .bottom p {
    color: #333;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px; /* 180% */
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.box-sub01-05-8 ._inner .box-step ._each .bottom p span {
    color: #333;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px; /* 200% */
    letter-spacing: -0.5px;
}

.box-sub01-05-8 ._inner .box-recommend {
    display: flex;
    margin-bottom: 150px;
    border-radius: 10px;
    border: 1px solid #D9D9D9;
    width: 100%;
    padding: 26px 40px 40px 40px;
    box-sizing: border-box;
    align-items: center;
}

.box-sub01-05-8 ._inner .box-recommend .box-content {
    margin-left: 110px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.box-sub01-05-8 ._inner .box-recommend .box-content p {
    position: relative;
    color: #000;
    font-family: "Nanum Pen Script";
    font-size: 46px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px; /* 78.261% */
    letter-spacing: -0.5px;
    margin-bottom: 50px;
}

.box-sub01-05-8 ._inner .box-recommend .box-content p::before {
    position: absolute;
    bottom: -17px;
    left: -16px;
    content: url(/resource/images/img-sub01-05-33.png);
    width: 523px;
    height: 34px;
    z-index: -1;
}

.box-sub01-05-8 ._inner .box-recommend .box-content p::after {
    position: absolute;
    top: -33px;
    right: -59px;
    content: url(/resource/images/img-sub01-05-34.png);
    width: 53px;
    height: 55px;
}

.box-sub01-05-8 ._inner .box-recommend .box-content ul {
    display: flex;
    flex-direction: column;
}

.box-sub01-05-8 ._inner .box-recommend .box-content ul li {
    color: #111;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.5px;
    padding-left: 30px;
    margin-bottom: 20px;
    position: relative;
}

.box-sub01-05-8 ._inner .box-recommend .box-content ul li::before {
    position: absolute;
    top: 9px;
    left: 0px;
    content: url(/resource/images/img-sub01-05-check.png);
    width: 18px;
    height: 18px;
}

.box-sub01-05-9 {
    margin-bottom: 240px;
}

.box-sub01-05-9 ._inner {
    width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box-sub01-05-9 ._inner ._title {
    color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-top: 20px;
    margin-bottom: 40px;
}

.box-sub01-05-9 ._inner ._title b {
    color: #36BAD7;
    font-weight: 600;
}

.box-sub01-05-9 ._inner ._sub-title {
    color: #333;
    text-align: center;
    font-size: 19px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px; /* 189.474% */
    letter-spacing: -0.5px;
}

.box-sub01-05-9 ._inner ._sub-title .bg {
    position: relative;
    font-weight: 600;
}

.box-sub01-05-9 ._inner ._sub-title .bg::after {
    position: absolute;
    background: rgba(255, 203, 5, 0.30);
    height: 7px;
    width: 100%;
    top: 19px;
    left: 0;
    content: '';
    z-index: -1;
}

.box-sub01-05-9 ._inner .box-supply {
    display: flex;
    margin-top: 70px;
}

.box-sub01-05-9 ._inner .box-supply ._each {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    margin-right: 30px;
}

.box-sub01-05-9 ._inner .box-supply ._each:last-child {
    margin-right: 0;
}

.box-sub01-05-9 ._inner .box-supply ._each.idx01 {
    background: url(/resource/images/img-sub01-05-36.png);
    width: 360px;
    height: 360px;
    background-size: cover;
}

.box-sub01-05-9 ._inner .box-supply ._each.idx02 {
    background: url(/resource/images/img-sub01-05-37.png);
    width: 360px;
    height: 360px;
    background-size: cover;
}

.box-sub01-05-9 ._inner .box-supply ._each.idx03 {
    background: url(/resource/images/img-sub01-05-38.png);
    width: 360px;
    height: 360px;
    background-size: cover;
}

.box-sub01-05-9 ._inner .box-supply ._each img {
    position: absolute;
    top: -20px;
    left: 55%;
    transform: translateX(-55%);
}

.box-sub01-05-9 ._inner .box-supply ._each p {
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px; /* 150% */
    letter-spacing: -0.5px;
}

.box-sub01-05-10 {
    margin-top: 150px;
}

.box-sub01-05-10 ._inner {
    width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box-sub01-05-10 ._inner ._title {
    color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-top: 20px;
    margin-bottom: 40px;
}

.box-sub01-05-10 ._inner ._title b {
    color: #36BAD7;
    font-weight: 600;
}

.box-sub01-05-10 ._inner ._sub-title {
    color: #333;
    text-align: center;
    font-size: 19px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px; /* 189.474% */
    letter-spacing: -0.5px;
}

.box-sub01-05-10 ._inner ._sub-title .bg {
    position: relative;
    font-weight: 600;
}

.box-sub01-05-10 ._inner ._sub-title .bg::after {
    position: absolute;
    background: rgba(255, 203, 5, 0.30);
    height: 7px;
    width: 100%;
    top: 19px;
    left: 0;
    content: '';
    z-index: -1;
}

.box-sub01-05-10 .box-number {
    display: flex;
    width: 100%;
    margin-top: 100px;
}

.box-sub01-05-10 .box-number .item {
    width: calc(100%/3);
    border-right: 1px solid #d9d9d9;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box-sub01-05-10 .box-number .item:last-child {
    border-right: 0;
}

.box-sub01-05-10 .box-number .item p {
    margin-bottom: 32px;
    color: #29B6D5;
    text-align: center;
    font-family: "Poller One";
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px; /* 56.25% */
    letter-spacing: -0.5px;
}

.box-sub01-05-10 .box-number .item span {
    color: #111;
    text-align: center;
    font-family: "Noto Sans kr";
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px; /* 163.636% */
    letter-spacing: -0.5px;
}

.box-sub01-06-1 {
    display: flex;
    padding: 150px 0 180px;
    box-sizing: border-box;
    flex-direction: column;
}

.box-sub01-06-1 ._inner {
    width: 1440px;
    margin: 0 auto;
}

.box-sub01-06-1 ._inner ._title {
    color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1px;
    margin-bottom: 100px;
}

.box-sub01-06-1 ._inner ._map {
    margin-bottom: 40px;
    width: 100%;
    height: 700px !important;
    flex-direction: column;
}

.box-sub01-06-1 ._inner ._map ._top {
    display: flex;
    background: #29B6D5;
    padding: 28px 40px;
    box-sizing: border-box;
    height: 120px;
}

.box-sub01-06-1 ._inner ._map ._top ._left {
    display: flex;
    margin-right: 20px;
    align-items: flex-start;
}

.box-sub01-06-1 ._inner ._map ._top ._left span {
    color: #FFF;
    font-family: Pretendard;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    display: inline-block;
    margin-right: 20px;
    margin-left: 15px;
}

.box-sub01-06-1 ._inner ._map ._top ._left p {
    color: #FFF;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px; /* 160% */
    width: 700px;
}

.box-sub01-06-1 ._inner ._map ._top ._right {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	width: 400px;
}

.box-sub01-06-1 ._inner ._map ._top ._right .top {
	width: 100%;
	display: flex;
	margin-bottom: 10px;
	align-items: center;
}

.box-sub01-06-1 ._inner ._map ._top ._right .bottom {
	width: 100%;
	display: flex;
	padding-left: 21px;
}

.box-sub01-06-1 ._inner ._map ._top ._right span {
    color: #FFF;
    font-family: Pretendard;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    display: inline-block;
    margin-right: 16px;
    margin-left: 15px;
}

.box-sub01-06-1 ._inner ._map ._top ._right a {
    color: #FFF;
    font-family: Pretendard;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px; /* 125% */
	cursor: pointer;
}

.box-sub01-06-1 ._inner ._map ._top ._right a:hover {
	color: #fff;
}

.box-sub01-06-1 ._inner ._txt {
    display: flex;
    padding: 0 58px;
    box-sizing: border-box;
    justify-content: space-between;
}

.box-sub01-06-1 ._inner ._txt ._left, .box-sub01-06-1 ._inner ._txt ._right {
    width: 596px;
    display: flex;
    flex-direction: column;
}

.box-sub01-06-1 ._inner ._txt ._left ._each div span {
    display: inline-block;
    margin-left: 12px;
    color: #333;
    font-family: Pretendard;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
}

.box-sub01-06-1 ._inner ._txt ._left ._each:first-child {
    margin-bottom: 46px;
}

.box-sub01-06-1 ._inner ._txt ._left ._each:first-child p {
    margin-top: 20px;
    color: #333;
font-family: Pretendard;
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 32px; /* 160% */
display: flex;
align-items: center;
}

.box-sub01-06-1 ._inner ._txt ._left ._each:nth-child(2) {
    margin-bottom: 46px;
}

.box-sub01-06-1 ._inner ._txt ._left ._each:nth-child(2) p {
    margin-top: 16px;
    color: #333;
    font-family: Pretendard;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px; /* 125% */
}

.box-sub01-06-1 ._inner ._txt ._left ._each:nth-child(3) p {
    color: #333;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px; /* 150% */
    margin-top: 16px;
}

.box-sub01-06-1 ._inner ._txt ._left ._each div, 
.box-sub01-06-1 ._inner ._txt ._right ._each div {
    display: flex;
    align-items: center;
}

.box-sub01-06-1 ._inner ._txt ._right ._each div span {
    display: inline-block;
    margin-left: 12px;
    color: #333;
    font-family: Pretendard;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
}

.box-sub01-06-1 ._inner ._txt ._right ._each:first-child {
    margin-bottom: 46px;
}

.box-sub01-06-1 ._inner ._txt ._right ._each:first-child p {
    color: #333;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px; /* 150% */
}

.box-sub01-06-1 ._inner ._txt ._right ._each:first-child p.mt {
    margin-top: 24px;
}

.box-sub01-06-1 ._inner ._txt ._right ._each:nth-child(2) p {
    color: #333;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.box-sub01-06-1 ._inner ._txt ._right ._each:nth-child(2) p:nth-child(2) {
    margin-top: 24px;
}

.box-sub01-06-1 ._inner ._txt ._right ._each:nth-child(2) p:nth-child(even) {
    margin-bottom: 10px;
}

.box-sub01-06-1 ._inner ._txt ._right ._each:nth-child(2) p:nth-child(odd) {
    margin-bottom: 24px;
}

.box-sub01-06-1 ._inner ._txt ._green {
    color: #61B013;
    display: inline-block;
    margin-right: 16px;
}

.box-sub01-06-1 ._inner ._txt ._blue {
    color: #1134AE;
    display: inline-block;
    margin-right: 16px;
}

.box-sub01-06-1 ._inner ._txt ._dark-green {
    color: #278505;
    display: inline-block;
    margin-right: 16px;
}

.box-sub01-06-1 ._inner ._txt ._orange {
    color: #EF7D1D;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
}

._go-map {
    margin-top: 40px;
    margin-bottom: 150px;
}

._go-map ._inner {
    width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

._go-map ._inner ._txt { 
    color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.5px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

._go-map ._inner ._txt b {
    color: #475CA3;
    font-family: Pretendard;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.5px;
} 

._go-map ._inner .go-map {
    display: flex;
    width: 100%;
}

._go-map ._inner .go-map ._each {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #BABABA;
    background: #FFF;
    height: 76px;
    width: calc(100%/3);
    cursor: pointer;
}

._go-map ._inner .go-map ._each:not(:last-child) {
    border-right: 0;
}

._go-map ._inner .go-map ._each span {
    display: inline-block;
    margin-left: 10px;
    color: #333;
    text-align: center;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.5px;
}

.box-sub01-06-1 ._inner .content-1 {
	display: none;
}

.box-sub01-06-1 ._inner .content-2 {
    flex-direction: column;
    padding: 13px 110px 0 74px;
    box-sizing: border-box;
}

.box-sub01-06-1 ._inner .content-2 ._each {
    display: flex;
    flex-direction: column;
    margin-bottom: 29px;
}

.box-sub01-06-1 ._inner .content-2 ._each ._title {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.box-sub01-06-1 ._inner .content-2 ._each ._title span {
    color: #333;
    font-family: Pretendard;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    display: inline-block;
    margin-left: 10px;
}

.box-sub01-06-1 ._inner .content-2 ._small {
    padding-left: 35px;
    box-sizing: border-box;
    margin-bottom: 90px;
}

.box-sub01-06-1 ._inner .content-2 ._small p {
    color: #666;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px; /* 200% */
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.box-sub01-06-1 ._inner .content-2 ._small p img {
    margin-right: 11px;
}

.box-sub01-06-1 ._inner .content-2 ._small p a {
    color: #666;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
}

.box-sub01-06-1 ._inner .content-2 ._small p b {
    color: #BF3D3A;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    display: block;
    width: 100%;
    padding-left: 39px;
}


.box-sub01-06-1 .box-songpa {
    margin-top: 220px;
}

.box-sub01-06-1 ._inner .box-songpa ._map {
    margin-bottom: 40px;
    width: 100%;
    height: 520px !important;
    flex-direction: column;
}

.box-sub01-06-1 ._title2 {
    color: #000;
    font-family: 'Pretendard';
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-bottom: 40px;
}

.box-sub01-06-1 ._title2 b {
    color: #36BAD7;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
}

.box-sub01-06-1 .box-songpa h1 {
    color: #000;
    font-family: 'Pretendard';
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-bottom: 40px;
}

.box-sub01-06-1 .box-songpa h1 b {
    color: #6C86E3;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
}

.box-sub01-06-1 ._inner .box-songpa ._map ._top {
    background: #6C86E3;
}

.box-sub02-01-1 {
    display: flex;
    padding-top: 150px;
}

.box-sub02-01-1 ._inner {
    width: 1440px;
    margin: 0 auto;
}

.box-sub02-01-1 ._inner ._title {
    color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 120px;
}

.box-sub02-01-1 ._inner ._sub-title {
    color: #111;
    text-align: center;
    font-family: Pretendard;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px; /* 133.333% */
    letter-spacing: -0.72px;
    display: block;
    margin-bottom: 150px;
}

.box-sub02-01-1 ._inner ._sub-title b {
    color: #29B6D5;
    font-family: Pretendard;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: -0.72px;
}

.top-info {
    display: flex;
    width: 100%;
    align-items: center;
}

.top-info ._txt {
    width: 730px;
    padding-left: 90px;
    box-sizing: border-box;
}

.top-info ._txt p {
    color: #000;
    font-family: Pretendard;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-bottom: 40px;
}

.top-info ._txt p b {
    color: #36BAD7;
    font-family: Pretendard;
    font-size: 32px;
    font-style: normal;
    font-weight: 800;
}

.top-info ._txt p b a {
    font-weight: 500;
}

.top-info ._txt p b a:focus, .top-info ._txt p b a:hover {
    color: #36BAD7;
}

.top-info ._txt span {
    color: #333;
    font-family: Pretendard;
    font-size: 19px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: -0.5px;
    width: 660px;
    display: block;
}

.top-info ._txt span b {
    font-weight: 700;
}

.top-info ._txt span .highlight {
    color: #36BAD7;
font-weight: 700;
}

.box-sub02-01-2 {
    padding-top: 160px;
    display: flex;
}

.box-tab {
    width: 100%;
}

.box-tab ._tab {
    width: 1440px;
    margin: 0 auto;
}

.box-tab ._tab ._title {
    color: #000;
    font-family: Pretendard;
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-bottom: 80px;
    text-align: center;
}

.box-tab ._tab ._menu {
    display: flex;
    justify-content: center;
}

.box-tab ._tab ._menu li {
    padding-bottom: 28px;
}

.box-tab ._tab ._menu li a {
    color: #B2B2B2;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-right: 73px;
    position: relative;
    cursor: pointer;
}

.box-tab ._tab ._menu li a.active {
    color: #29B6D5;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.5px;
    cursor: pointer;
}

.box-tab ._tab ._menu li a.active::after {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% + 54px);
    height: 4px;
    content: '';
    background-color: #29B6D5;
}

.box-tab.n4 ._content ._inner {
    padding: 120px 0;
}

.box-tab.n4 ._content ._inner ._box ._list {
    width: 100%;
}

.box-tab.n4 ._tab ._menu li a {
    margin-right: 80px;
}

.box-tab.n4 ._tab ._menu li a.active::after {
    width: calc(100% + 116px);
    height: 4px;
    content: '';
    background-color: #29B6D5;
}

.box-tab.n4 ._tab ._title {
    color: #000;
    font-family: Pretendard;
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-bottom: 26px;
    text-align: center;
}

.box-tab.n4 ._tab ._small {
    color: #666;
text-align: center;
font-family: Pretendard;
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: 30px; /* 166.667% */
letter-spacing: -0.5px;
display: block;
margin-bottom: 80px;
}

.box-tab.n4 ._tab ._small b {
    color: #333;
font-family: Pretendard;
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: 30px;
letter-spacing: -0.5px;
}

.box-tab.n6 ._content ._inner {
    padding: 120px 0;
}

.box-tab.n6 ._content ._inner ._box ._list {
    width: 100%;
}

.box-tab.n6 ._tab ._menu li a {
    margin-right: 73px;
}

.box-tab.n6 ._tab ._menu li a.active::after {
    width: calc(100% + 72px);
    height: 4px;
    content: '';
    background-color: #29B6D5;
}

.box-tab.n7 ._content ._inner {
    padding: 120px 0;
}

.box-tab.n7 ._content ._inner ._box ._list {
    width: 100%;
}

.box-tab.n7 ._tab ._menu li a {
    margin-right: 73px;
}

.box-tab.n7 ._tab ._menu li a.active::after {
    width: calc(100% + 69px);
    height: 4px;
    content: '';
    background-color: #29B6D5;
}


.box-tab ._tab ._menu li:last-child a{
    margin-right: 0;
}

.box-sub02-01-2 .box-tab ._content {
    background: url(/resource/images/img-box-tab-bg.png) no-repeat;
    width: 100%;
    display: none;
}

.box-tab ._content ._inner {
    width: 1440px;
    margin: 0 auto;
    padding: 100px 0;
}

.box-tab ._content ._inner ._title {
    color: #111;
    font-family: Pretendard;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-bottom: 50px;
}

.box-tab ._content ._inner ._box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.box-tab ._content ._inner ._box ._list.type1 {
    display: flex;
    flex-direction: column;
    width: 862px;
}

.box-tab ._content ._inner ._box ._list.type1 ._each {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.box-tab ._content ._inner ._box ._list.type1 ._each:first-child {
    padding-top: 60px;
}

.box-tab ._content ._inner ._box ._list.type1 ._each:not(:first-child) {
    margin-top: 40px;
}

.box-tab ._content ._inner ._box ._list.type1 ._each ._top {
    border-bottom: 1px solid #D0D0D0;
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.box-tab ._content ._inner ._box ._list.type1 ._each ._top.bd-0 {
    border-bottom: 0;
}

.box-tab ._content ._inner ._box ._list.type1 ._each ._top span:first-child {
    color: #FFF;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    display: flex;
    padding: 7px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    background: #29B6D5;
}

.box-tab ._content ._inner ._box ._list.type1 ._each ._top span:nth-child(2) {
    color: #111;
    font-family: Pretendard;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.5px;
    display: inline-block;
    margin-left: 12px;
}

.box-tab ._content ._inner ._box ._list.type1 ._each table {
    width: 100%;
    margin-top: 16px;
    margin-bottom: 20px;
}

.box-tab ._content ._inner ._box ._list.type1 ._each table tr {
    border-top: 1px solid #D0D0D0;
}

.box-tab ._content ._inner ._box ._list.type1 ._each table tr:last-child {
    border-bottom: 1px solid #D0D0D0;
}

.box-tab ._content ._inner ._box ._list.type1 ._each table tr td {
    color: #333;
    text-align: center;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px; /* 180% */
    letter-spacing: -0.5px;
    background-color: transparent;
    padding: 7px 0;
}

.box-tab ._content ._inner ._box ._list.type1 ._each table tr th {
    background: #E3ECEE;
    color: #29B6D5;
    font-family: Pretendard;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px; /* 163.636% */
    letter-spacing: -0.5px;
    padding: 7px 0;
}

.box-tab ._content ._inner ._box ._list.type1 ._each table tr th:first-child,
.box-tab ._content ._inner ._box ._list.type1 ._each table tr th:nth-child(2) {
    width: 50%;
}

.box-tab ._content ._inner ._box ._list.type1 ._each table tr th:first-child,
.box-tab ._content ._inner ._box ._list.type1 ._each table tr td:first-child {
    border-right: 1px solid #D0D0D0;
}

.box-tab ._content ._inner ._box ._list.type1 ._each ._bottom {
    padding-top: 20px;
}

.box-tab ._content ._inner ._box ._list.type1 ._each ._bottom span {
    color: #333;
    font-family: Pretendard;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px; /* 163.636% */
    letter-spacing: -0.5px;
}

.box-tab ._content ._inner ._box ._list.type3 ._each {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.box-tab ._content ._inner ._box ._list.type3 ._each ._txt {
    display: flex;
    flex-direction: column;
    width: 800px;
}

.box-tab ._content ._inner ._box ._list.type3 ._each ._txt span:first-child {
    color: #111;
    font-family: Pretendard;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-bottom: 30px;
    display: block;
}

.box-tab ._content ._inner ._box ._list.type3 ._each ._txt span:first-child b {
    font-weight: 500;
}

.box-tab ._content ._inner ._box ._list.type3 ._each ._txt span:nth-child(2) {
    color: #333;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px; /* 163.636% */
    letter-spacing: -0.5px;
}

.box-tab ._content.tab-sub4-1 {
    background: url(/resource/images/img-sub04-tab01-bg.png) no-repeat;
    width: 100%;
    height: 749px !important;
}

.box-tab ._content.tab-sub4-2 {
    background: url(/resource/images/img-sub04-tab02-bg.png) no-repeat;
    width: 100%;
    height: 1274px !important;
}

.box-tab ._content.tab-sub4-3 {
    background: url(/resource/images/img-sub04-tab03-bg.png) no-repeat;
    width: 100%;
    height: 660px !important;
}

.box-tab ._content.tab-sub4-4 {
    background: url(/resource/images/img-sub04-tab04-bg.png) no-repeat;
    width: 100%;
    height: 850px !important;
}

.box-tab ._content.tab-sub4-5, .box-tab ._content.tab-sub4-6 {
    height: initial !important;
}

.box-tab ._content.tab-sub4-5 ._section1 {
    background: url(/resource/images/img-sub04-tab05-bg.png) no-repeat;
    width: 100%;
    height: 850px !important;
}

.box-tab ._content.tab-sub4-6 ._section1 {
    background: url(/resource/images/img-sub04-tab06-bg.png) no-repeat;
    width: 100%;
    height: 660px !important;
}

.box-tab ._content.tab-sub4-7 {
    background: url(/resource/images/img-sub04-tab07-bg.png) no-repeat;
    width: 100%;
    height: 1720px !important;
}

.box-tab ._content.tab-sub4-1 ._inner {
    padding: 193px 0 154px;
}

.box-tab ._content.tab-sub4-2 ._inner {
    padding: 193px 0 216px;
}

.box-tab ._content.tab-sub4-3 ._inner {
    padding: 170px 0;
}

.box-tab ._content.tab-sub4-4 ._inner {
    padding: 193px 0 169px;
}

.box-tab ._content.tab-sub4-5 ._inner {
    padding: 193px 0 241px;
}

.box-tab ._content.tab-sub4-5 .box-sub02-02-2 ._inner {
    padding: 130px 0 244px;
}

.box-tab ._content.tab-sub4-6 ._inner {
    padding: 170px 0;
}

.box-tab ._content.tab-sub4-7 ._inner {
    padding: 193px 0 176px;
}

.box-tab ._content.tab-sub4-2 ._inner ._box ._list.type1 ._each table {
    margin-bottom: 0;
}

.box-tab ._content.tab-sub4-2 ._inner ._box ._list.type1 ._each ._top.bd-0 {
    padding-bottom: 0;
}

.box-tab ._content.tab-sub4-3 ._inner ._box {
    margin-top: 0 !important;
}

.box-tab ._content.tab-sub4-4 ._inner ._box {
    margin-top: 0 !important;
}

.box-tab ._content.tab-sub4-5 ._inner ._box {
    margin-top: 0 !important;
}

.box-tab ._content.tab-sub4-6 ._inner ._box {
    margin-top: 0 !important;
}

.box-tab ._content.tab-sub4-7 ._inner ._box {
    margin-top: 0 !important;
}

.box-sub02-03-3 .box-tab ._content ._inner ._box {
    margin-top: 0px;
}

.box-sub02-03-3 .box-tab ._content ._inner ._box ._list.type1 ._each:first-child {
    padding-top: 0;
}

.box-sub02-03-3 .box-tab ._content ._inner ._box ._list.type1 {
     width: 840px;
}

.box-sub02-01-2 .box-tab ._content {
    height: 817px;
}

.box-sub02-01-3 {
    padding-top: 160px;
}

.box-sub02-01-3 ._inner {
    width: 1440px;
    margin: 0 auto;
}

.box-img-cross.type2 ._each {
    display: flex;
    align-items: center;
}

.box-img-cross.type2 ._each:nth-child(even) ._txt {
    padding-left: 20px;
    box-sizing: border-box;
}

.box-img-cross.type2 ._each:nth-child(odd) ._txt {
    padding-left: 80px;
    box-sizing: border-box;
}

.box-img-cross.type2 ._each ._txt {
    width: 720px;
    display: flex;
    flex-direction: column;
}

.box-img-cross.type2 ._each ._txt p {
    color: #000;
    font-family: Pretendard;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-bottom: 30px;
}

.box-img-cross.type2 ._each ._txt p b {
    color: #29B6D5;
    font-family: Pretendard;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
}

.box-img-cross.type2 ._each ._txt span {
    color: #000;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px; /* 188.889% */
    letter-spacing: -0.5px;
}

.box-span {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 666px;
}

.bd-sky {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 206px;
    height: 71px;
    text-align: center;
    border-radius: 60px;
    border: 5px solid #21B3D6;
    background: rgba(255, 255, 255, 0.00);
    color: #000;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.5px;
    margin-right: 6px;
    margin-bottom: 6px;
}

.bd-sky:hover {
    color: #000;
}

.box-sub02-01-4 {
    padding-top: 160px;
}

.box-sub02-01-4 ._inner {
    width: 1440px;
    margin: 0 auto;
}

.box-sub02-01-4 ._inner ._content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.box-sub02-01-4 ._inner ._content ._txt {
    width: 650px;
}

.box-sub02-01-4 ._inner ._content ._txt ._title {
    color: #000;
    font-family: Pretendard;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-bottom: 34px;
}

.box-sub02-01-4 ._inner ._content ._txt ._title b {
    color: #29B6D5;
    font-family: Pretendard;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.5px;
}

.ul-check {
    width: 100%;
}

.ul-check li {
    padding: 38px 0 38px 68px;
    color: #000;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.5px;
    border-bottom: 1px solid #D9D9D9;
    position: relative;
}

.ul-check li::before {
    background: url(/resource/images/img-check-circle.png);
    background-size: 24px 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    position: absolute;
    left: 30px;
    content: '';
}

.ul-check li:first-child {
    border-top: 1px solid #D9D9D9;
}

.ul-check.type2 {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 30px;
}

.ul-check.type2 li {
    padding: 0;
    color: #454545;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px; /* 177.778% */
    letter-spacing: -0.5px;
    border-bottom: 0;
    position: relative;
    margin-bottom: 15px;
    width: 50%;
    box-sizing: border-box;
    padding-left: 95px;
}

.ul-check.type2 li::before {
    left: 56px;
}

.ul-check.type2 li:first-child {
    border-top: 0;
}

.ul-check.type3 {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 50px;
}

.ul-check.type3 li {
	padding: 0;
	color: #454545;
	font-family: Pretendard;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 32px;
	/* 177.778% */
	letter-spacing: -0.5px;
	border-bottom: 0;
	position: relative;
	margin-bottom: 15px;
	width: 50%;
	box-sizing: border-box;
	padding-left: 40px;
	width: 320px;
}

.ul-check.type3 li:nth-child(4n) {
	margin-right: 0;
}

.ul-check.type3 li:first-child {
	border-top: 0;
}

.ul-check.type3 li::before {
	left: 0px;
}

.ul-check.type4 {
	display: flex;
	flex-wrap: wrap;
}

.ul-check.type4 li {
	padding: 0;
	color: #454545;
	font-family: Pretendard;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 32px;
	/* 177.778% */
	letter-spacing: -0.5px;
	border-bottom: 0;
	position: relative;
	margin-bottom: 15px;
	width: 100%;
	box-sizing: border-box;
	padding-left: 40px;
}

.ul-check.type4 li:first-child {
    border-top: 0;
}

.ul-check.type4 li::before { 
    left: 0;
}

.ul-check.type4 li:last-child {
    margin-bottom: 0;
}

.ul-check.type5 {
	display: flex;
	flex-wrap: wrap;
}

.ul-check.type5 li {
	padding: 0;
	color: #000;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 53px; /* 265% */
    letter-spacing: -0.5px;
	border-bottom: 0;
	position: relative;
	margin-bottom: 20px;
	width: 100%;
	box-sizing: border-box;
	padding-left: 40px;
}

.ul-check.type5 li:first-child {
    border-top: 0;
}

.ul-check.type5 li::before { 
    left: 0;
}

.ul-check.type5 li:last-child {
    margin-bottom: 0;
}

.ul-check.type5 li .ul-dash {
}

.ul-check.type5 li .ul-dash li {
    color: #333;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px; /* 177.778% */
    letter-spacing: -0.5px;
    padding-left: 15px;
    margin-bottom: 0;
}

.ul-check.type5 li::before {
    background: url(/resource/images/img-check-circle.png);
    background-size: 24px 24px;
    top: 14px;
    transform: initial;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0px;
    content: '';
}

.ul-check.type5 .ul-dash li::before {
    display: none;
}

.ul-check.type6 li:first-child {
	border-top: 0;
}

.ul-check.type6 {
	display: flex;
	flex-wrap: wrap;
	margin: 20px 0 25px;
}

.ul-check.type6 li {
	padding: 0;
	color: #454545;
	font-family: Pretendard;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 32px;
	/* 177.778% */
	letter-spacing: -0.5px;
	border-bottom: 0;
	position: relative;
	margin-bottom: 10px;
	width: 100%;
	box-sizing: border-box;
	padding-left: 34px;
}

.ul-check.type6 li:first-child {
	border-top: 0;
}

.ul-check.type6 li::before {
	left: 0;
}

.ul-check.type6 li:last-child {
	margin-bottom: 0;
}

.ul-check.type7 {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 10px;
	margin-top: 40px;
}

.ul-check.type7 li {
	padding: 0;
	color: #454545;
	font-family: Pretendard;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 32px;
	/* 177.778% */
	letter-spacing: -0.5px;
	border-bottom: 0;
	position: relative;
	margin-bottom: 0px;
	width: 50%;
	box-sizing: border-box;
	padding-left: 40px;
	width: initial;
	margin-right: 54px;
}

.ul-check.type7 li:nth-child(4n) {
	margin-right: 0;
}

.ul-check.type7 li:first-child {
	border-top: 0;
}

.ul-check.type7 li::before {
	left: 0px;
}

.ul-circle {
    width: 100%;
}

.ul-circle li {
    color: #000;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px; /* 188.889% */
    letter-spacing: -0.5px;
    position: relative;
    padding-left: 27px;
}

.ul-circle li::before {
    content: '';
    top: 15px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    position: absolute;
    left: 12px;
    background: #000;
}

.ul-circle li b {
    color: #29B6D5;
font-family: Pretendard;
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: 36px; /* 200% */
letter-spacing: -0.5px;
}

.ul-circle li.none-red {
    color: #BF3D3A;
font-family: Pretendard;
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 36px; /* 180% */
letter-spacing: -0.5px;
}

.ul-circle li.none-red::before {
    display: none;
}

.box-sub02-01-5 {
    padding-top: 160px;
}

.box-sub02-01-5 .box-tab ._content {
    height: 589px;
    background: url(/resource/images/img-box-tab-bg2.png) no-repeat;
    width: 100%;
    display: none;
}

.box-tab ._content ._inner ._box ._list.type2 {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.box-tab ._content ._inner ._box ._list.type2 ._each {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.box-tab ._content ._inner ._box ._list.type2 ._each:first-child {
    padding-top: 40px;
}

.box-tab ._content ._inner ._box ._list.type2 ._each:not(:first-child) {
    margin-top: 40px;
}

.box-tab ._content ._inner ._box ._list.type2 ._each ._top {
    border-bottom: 1px solid #D0D0D0;
    padding-bottom: 40px;
    display: flex;
    align-items: center;
}

.box-tab ._content ._inner ._box ._list.type2 ._each ._top span:first-child {
    color: #FFF;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    display: flex;
    padding: 7px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    background: #29B6D5;
}

.box-tab ._content ._inner ._box ._list.type2 ._each ._top span:nth-child(2) {
    color: #333;
    font-family: Pretendard;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px; /* 163.636% */
    letter-spacing: -0.5px;
    display: inline-block;
    margin-left: 20px;
}

.box-sub02-01-6 {
    padding: 160px 0;
}

.box-sub02-01-6 ._inner {
    width: 1440px;
    margin: 0 auto;
}

.box-gradation {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.box-gradation ._title {
    color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-bottom: 80px;
}

.box-gradation ._each {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: calc(100% - 16px);
    height: 96px;
    margin-bottom: 16px;
    border: 8px solid transparent;
    border-radius: 100px;
    background-image: linear-gradient(#fff, #fff), linear-gradient(to right, #52C5DE 40%, #475CA3 75%, #475CA3 100%);
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.box-gradation ._each span {
    color: #111;
    font-family: Pretendard;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px; /* 163.636% */
    letter-spacing: -0.5px;
    display: inline-block;
    margin-left: 12px;  
}

.box-sub-footer {
    width: 100%;
    position: relative;
    background: linear-gradient(92deg, #46BCD5 0%, #3D54A2 100%);
    height: 328px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-sub-footer .mask {
    position: absolute;
    top: 0;
    left: 0;
}

.box-sub-footer ._inner {
    width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.box-sub-footer ._inner p {
    margin: 24px 0 20px;
    color: #FFF;
text-align: center;
font-family: Pretendard;
font-size: 24px;
font-style: normal;
font-weight: 500;
line-height: 40px; /* 166.667% */
letter-spacing: -0.48px;
}

.box-sub-footer ._inner p span {
    font-weight: 600;
    position: relative;
}

.box-sub-footer ._inner p span::after {
    content: '';
    height: 12px;
    width: 100%;
    opacity: 0.5;
    background: #44CBE9;
    position: absolute;
    bottom: -3px;
    left: 0;
}

.box-sub02-02-1 {
    display: flex;
    padding-top: 150px;
}

.box-sub02-02-1 ._inner {
    width: 1440px;
    margin: 0 auto;
}

.box-sub02-02-1 ._inner ._title {
    color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 120px;
}

.box-sub02-02-2.sub06 {
    padding-top: 0px;
    padding-bottom: 150px;
}

.box-sub02-02-2 {
    display: flex;
    padding-top: 160px;
}

.box-sub02-02-2 ._inner {
    width: 1440px;
    margin: 0 auto;
}

.box-sub02-02-2 ._inner ._title {
    color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-bottom: 100px;
}

.box-sub02-02-2 ._inner ._title b {
    font-weight: 400;
}

.box-img-cross.type3 ._each {
    display: flex;
    align-items: center;
}

.box-img-cross.type3 ._each:nth-child(even) ._txt {
    padding-left: 20px;
    box-sizing: border-box;
}

.box-img-cross.type3 ._each:nth-child(odd) ._txt {
    padding-left: 80px;
    box-sizing: border-box;
}

.box-img-cross.type3 ._each ._txt {
    width: 720px;
    display: flex;
    flex-direction: column;
}

.box-img-cross.type3 ._each ._txt p {
    color: #000;
    font-family: Pretendard;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
}

.box-img-cross.type3 ._each ._txt p span {
    color: #FFF;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #29B6D5;
}

.box-img-cross.type3 ._each ._txt span {
    color: #000;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px; /* 188.889% */
    letter-spacing: -1px;
    width: 637px;
}

.box-sub02-02-3 {
    display: flex;
    margin-top: 160px;
    background: url(/resource/images/img-sub02-02-3-bg.png) lightgray 50% / cover no-repeat;;
    padding: 120px 0;
    box-sizing: border-box;
    height: 790px;
    position: relative;
}

.box-sub02-02-3 ._mask {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.85;
    width: 100%;
    height: inherit;
}

.box-sub02-02-3 ._inner {
    width: 1440px;
    margin: 0 auto;
    position: relative;
}

.box-sub02-02-3 ._inner ._title {
    color: #111;
    font-family: Pretendard;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-bottom: 60px;
}

.box-sub02-02-3 ._inner ._content {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.box-sub02-02-3 ._inner ._content ._each {
    padding: 40px 0;
    display: flex;
    border-bottom: 1px solid #C8C8C8;
    padding-left: 10px;
    align-items: center;
}

.box-sub02-02-3 ._inner ._content ._each:first-child {
    border-top: 1px solid #c8c8c8;
}

.box-sub02-02-3 ._inner ._content ._each span:first-child {
    color: #FFF;
    text-align: center;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: -0.5px;
    margin-right: 24px;
    border-radius: 16px;
    background: #29B6D5;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
    min-width: 92px;
    max-width: 92px;
}

.box-sub02-02-3 ._inner ._content ._each span:first-child b {
    color: #FFF;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: -0.5px;
}

.box-sub02-02-3 ._inner ._content ._each span:nth-child(2) {
    color: #333;
    font-family: Pretendard;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px; /* 163.636% */
    letter-spacing: -0.5px;
}

.box-sub02-02-4 {
    padding-top: 160px;
}

.box-sub02-02-4 ._title {
    color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-bottom: 100px;
}

.box-sub02-02-4 ._inner {
    width: 1390px;
    margin: 0 auto;
}

.sub-swiper {
    width: 100%;
    position: relative;
}

.sub-swiper .swiper-wrapper {
    height: initial;
}
/*
.sub-swiper .swiper-slide-active {
    opacity: 1 !important;
}

.sub-swiper .swiper-slide {
    opacity: 0;
}
*/

.sub-swiper .swiper-slide {
    width: 100%;
}

.sub-swiper .button-box {
    position: absolute;
    bottom: 50px;
    z-index: 10;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 620px;
    right: 0;
}

.sub-swiper .button-box.wide {
    width: 690px;
}

.sub-swiper .button-box .swiper-pagination {
    position: relative;
}

.sub-swiper .button-box .swiper-pagination-progressbar { 
    background-color: #fff;
    display: flex;
    align-items: center;
}

.sub-swiper .button-box .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 100%;
    margin: 0 12px;
}

.sub-swiper .button-box .swiper-pagination-bullet:first-child {
    margin-left: 30px;
}

.sub-swiper .button-box .swiper-pagination-bullet:last-child {
    margin-right: 30px;
}

.sub-swiper .button-box .swiper-prev {
    background: url(/resource/images/arrow-swiper-prev.png);
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.sub-swiper .button-box .swiper-next {
    background: url(/resource/images/arrow-swiper-next.png);
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.sub-swiper .button-box .swiper-pagination-bullet-active {
    background-color: #4FC4E0 !important;
}

.sub-swiper ul li ._each {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.box-sub02-02-4 ._each ._txt {
    width: 620px;
    display: flex;
    flex-direction: column;
}

.box-sub02-02-4 ._each ._txt p {
    color: #000;
    font-family: Pretendard;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
}

.box-sub02-02-4 ._each ._txt p span:first-child {
    color: #FFF;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #29B6D5;
}

.box-sub02-02-4 ._each ._txt span {
    color: #000;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px; /* 188.889% */
    letter-spacing: -0.5px;
}

.box-sub02-02-4 ._each ._txt p span:nth-child(3) {
    color: #000;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
}

.box-sub02-02-4 ._each ._txt.mb-show div {
    display: flex;
    align-items: center;
}

.box-sub02-02-4 ._each ._txt.mb-show div span:first-child {
    margin-right: 7px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #29B6D5;
    color: #FFF;
    font-family: Pretendard;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-sub02-02-4 ._each ._txt.mb-show div span:nth-child(2){
    display: inline-block;
    align-items: center;
    color: #000;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    width: initial;
}

.box-sub02-02-4 ._each ._txt.mb-show ._small {
    color: #000;
    font-family: Pretendard;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.5px;
    width: 100%;
    margin-bottom: 24px;
    display: inline-block;
    padding-left: 25px;
}

.box-sub02-02-4 ._each ._txt.mb-show ._bt {
    color: #000;
    font-family: Pretendard;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.5px;
    width: 100%;
    display: inline-block;
}

.box-sub02-02-5 {
    display: flex;
    padding: 160px 0;
}

.box-sub02-02-5 ._inner {
    width: 1440px;
    margin: 0 auto;
}

.box-sub02-02-5 ._inner ._title {
    color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-bottom: 100px;
}

.box-img-cross.type4 ._each {
    display: flex;
    align-items: center;
}

.box-img-cross.type4 ._each:nth-child(even) ._txt {
    padding-left: 20px;
    box-sizing: border-box;
}

.box-img-cross.type4 ._each:nth-child(odd) ._txt {
    padding-left: 80px;
    box-sizing: border-box;
}

.box-img-cross.type4 ._each ._txt {
    width: 720px;
    display: flex;
    flex-direction: column;
}

.box-img-cross.type4 ._each ._txt p {
    color: #000;
    font-family: Pretendard;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-bottom: 34px;
    display: flex;
    align-items: center;
}

.box-img-cross.type4 ._each ._txt p span {
    color: #FFF;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #29B6D5;
}

.box-img-cross.type4 ._each ._txt span {
    color: #000;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px; /* 188.889% */
    letter-spacing: -0.5px;
}

.ul-dash li {
    color: #000;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    padding-left: 17px;
    position: relative;
}

.ul-dash li b {
    color: #29B6D5;
font-family: Pretendard;
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: 36px; /* 200% */
letter-spacing: -0.5px;
}

.ul-dash li:last-child, .ul-dash li.mb-0{
    margin-bottom: 0;
}

.ul-dash li::after {
    content: '-';
    position: absolute;
    left: 0;
    top: 0px;
}

.ul-dash.type2 li {
    color: #333;
    font-family: Pretendard;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px; /* 181.818% */
    margin-bottom: 14px;
    padding-left: 37px;
    position: relative;
}

.ul-dash.type2 li b {
    color: #29B6D5;
    font-family: Pretendard;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
}

.ul-dash.type2 li:last-child, .ul-dash.type2 li.mb-0 {
    margin-bottom: 0;
}

.ul-dash.type2 li::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #B2B2B2;
    width: 11px;
    height: 3px;
}

.box-sub02-02-6 {
    display: flex;
    padding: 140px 0 150px;
    background: url(/resource/images/img-sub02-02-6-bg.png) no-repeat;
    height: 1105px;
    box-sizing: border-box;
}

.box-sub02-02-6 ._inner {
    width: 1440px;
    margin: 0 auto;
}

.box-sub02-02-6 ._inner ._title {
    color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-bottom: 60px;
}

._accordion {
    width: 100%;
    display: flex;
    flex-direction: column;
}

._accordion ._each {
    height: 130px;
    width: 100%;
    border-radius: 20px;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    box-sizing: border-box;
    margin-bottom: 16px;
    cursor: pointer;
}

._accordion ._each:last-child {
    margin-bottom: 0;
}

._accordion ._each ._txt {
    display: flex;
    align-items: center;
}

._accordion ._each ._txt span:first-child {
    color: #FFF;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    border-radius: 30px;
    background: #3FC3E0;
    display: flex;
    padding: 7px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

._accordion ._each ._txt span:nth-child(2) {
    display: inline-block;
    margin-left: 20px;
    color: #111;
    font-family: Pretendard;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px; /* 138.462% */
}

._accordion ._each ._txt span:nth-child(2) a:hover {
    color: #111;
}

.rotate-180 {
    transform: rotate(180deg);
    transition: transform 0.5s; /* 애니메이션 속도 */
}

._accordion ._each.on {
    height: 130px;
    width: 100%;
    border-radius: 20px 20px 0 0;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    box-sizing: border-box;
    margin-bottom: 0px;
    cursor: pointer;
    border-bottom: 1px solid #E4E4E4;
    margin-top: 16px;
}

._accordion ._each.on:first-child {
    margin-top: 0;
}

._accordion ._content {
    display: none;
    padding: 50px 80px 60px;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 0 0 20px 20px;
    margin-bottom: 16px;
}

._accordion ._content ._img {
    display: flex;
}

._accordion ._content ._img img:first-child {
    margin-right: 20px;
}

._accordion ._content ._img + p {
    margin-top: 50px;
}

._accordion ._content p {
    color: #333;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px; /* 200% */
    letter-spacing: -0.5px;
}

._accordion ._content p b {
	color: #36BAD7;
	font-family: Pretendard;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 36px;
	letter-spacing: -0.5px;
}

._accordion ._content p + .ul-dash {
    margin-top: 30px;
}

.ul-dash span {
    color: #FFF;
    font-family: Pretendard;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    display: inline-flex;
    padding: 8px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    background: #7F7F7F;
    margin-bottom: 16px;
}

._accordion ._content ._img + p {
    margin-top:  50px;
}

.box-sub02-02-7 {
    padding: 160px 0;
}

.box-sub02-02-7 ._inner {
    width: 1440px;
    margin: 0 auto;
}

.box-sub02-02-7 ._inner ._content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.box-sub02-02-7 ._inner ._content ._txt {
    width: 650px;
}

.box-sub02-02-7 ._inner ._content ._txt ._title {
    color: #000;
    font-family: Pretendard;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-bottom: 34px;
}

.box-sub02-02-7 ._inner ._content ._txt ._title b {
    color: #29B6D5;
    font-family: Pretendard;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.5px;
}

.box-sub02-02-8 {
    padding-top: 160px;
}

.box-sub02-02-8 ._inner {
    width: 1440px;
    margin: 0 auto;
}

.box-gradation.type2 {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.box-gradation.type2 ._each {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: calc(100% - 16px);
    height: 96px;
    margin-bottom: 16px;
    border: 12px solid transparent;
    border-radius: 50px;
    background-image: linear-gradient(#fff, #fff), linear-gradient(to right, #52C5DE 40%, #475CA3 75%, #475CA3 100%);
    background-origin: border-box;
    background-clip: content-box, border-box;
    box-sizing: border-box;
    height: 356px;
    flex-direction: column;
}

.box-gradation.type2 ._each .pd {
    padding: 42px 56px 56px;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    flex-direction: column;
}


.box-gradation.type2 ._each p {
    color: #111;
    font-family: Pretendard;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: -0.5px;
    padding-bottom: 36px;
    border-bottom: 1px solid #ddd;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-gradation.type2 ._each p span {
    color: #38C0DD;
font-family: Pretendard;
font-size: 40px;
font-style: normal;
font-weight: 600;
line-height: normal;
letter-spacing: -0.5px;
display: inline-block;
margin-right: 14px;
}

.box-gradation.type2 ._each p b {
    color: #29B6D5;
    font-family: Pretendard;
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 36px;
    letter-spacing: -0.5px;
}

.box-gradation.type2 ._each ._small {
    color: #454545;
    text-align: center;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: -0.5px;
    display: inline-block;
    text-align: center;
    width: 100%;
    padding-top: 40px;
}

.box-gradation.type2 ._each ._small b {
    font-weight: 700;
}

.box-gradation.type2 ._each ._small ._color {
    color: #29B6D5;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: -0.5px;
}

.box-sub02-02-8.sub07 {
    padding-top: 0;
    padding-bottom: 135px;
}

.box-sub02-02-8.sub07 .box-gradation.type2 ._each {
    height: 329px;
}

.box-sub02-03-1 {
    display: flex;
    padding-top: 150px;
}

.box-sub02-03-1 ._inner {
    width: 1440px;
    margin: 0 auto;
}

.box-sub02-03-1 ._inner ._title {
    color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 114px;
}

.box-sub02-03-1 ._inner ._sub-title {
	color: #111;
	text-align: center;
	font-family: Pretendard;
	font-size: 36px;
	font-style: normal;
	font-weight: 600;
	line-height: 48px;
	/* 133.333% */
	letter-spacing: -0.72px;
	display: block;
	margin-bottom: 102px;
}

.box-sub02-03-1 ._inner ._sub-title b {
	color: #29B6D5;
	font-family: Pretendard;
	font-size: 36px;
	font-style: normal;
	font-weight: 600;
	line-height: 48px;
	letter-spacing: -0.72px;
}

.box-sub02-03-1.sub05-02 ._inner ._sub-title {
	color: #111;
    text-align: center;
    font-family: Pretendard;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px; /* 160% */
    letter-spacing: -0.6px;
	display: block;
	margin-bottom: 150px;
}

.box-sub02-03-1.sub05-02 ._inner ._sub-title b {
	color: #29B6D5;
font-family: Pretendard;
font-size: 30px;
font-style: normal;
font-weight: 600;
line-height: 48px;
letter-spacing: -0.6px;
}

.box-sub02-03-2 {
    display: flex;
    padding-top: 160px;
}

.box-sub02-03-2 ._inner {
    width: 1440px;
    margin: 0 auto;
}

.box-sub02-03-2 ._inner ._title {
    color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-bottom: 100px;
}

.box-sub02-03-3 {
    padding: 160px 0;
}

.box-sub02-03-3 .box-tab ._content {
    height: 560px;
    display: none;
}

.box-sub02-03-3.sub03-2 {
	padding-bottom: 0;
}

.box-tab ._content {
    background: url(/resource/images/img-sub02-03-3-bg.png) no-repeat;
    width: 100%;
}

.box-sub02-03-4 {
    padding-top: 160px;
}

.box-sub02-03-4 ._inner {
    width: 1440px;
    margin: 0 auto;
}

.box-sub02-03-4 ._title {
    color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-bottom: 100px;
}

.box-sub02-03-4.type2 ._each ._txt {
    width: 640px !important;
}

.box-sub02-03-4.type2.ex {
    padding-bottom: 160px;
}

.box-sub02-03-4.type2.ex .sub-swiper ul li ._each {
    align-items: flex-start;
}

.box-sub02-03-4.type2.ex ._each ._txt {
    padding-top: 63px;
}


.box-sub02-03-4 ._each ._txt {
    width: 690px;
    display: flex;
    flex-direction: column;
}

.box-sub02-03-4 ._each ._txt p {
    color: #000;
    font-family: Pretendard;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
}

.box-sub02-03-4 ._each ._txt p b {
    color: #000;
font-family: Pretendard;
font-size: 18px;
font-style: normal;
font-weight: 600;
line-height: normal;
letter-spacing: -0.5px;
margin-bottom: -4px;
}

.box-sub02-03-4 ._each ._txt p ._thin {
    font-weight: 400;
}

.box-sub02-03-4 ._each ._txt p span:first-child {
    color: #FFF;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #29B6D5;
}

.box-sub02-03-4 ._each ._txt span {
    color: #000;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px; /* 188.889% */
    letter-spacing: -0.5px;
}

.box-sub02-03-4 ._each ._txt p span:nth-child(2) {
    color: #000;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-bottom: -4px;
}

.box-sub02-03-4 ._each ._txt a {
    color: #21B3D6;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    text-decoration-line: underline;
    display: flex;
    align-items: center;
    margin-top: 50px;
    cursor: pointer;
}

.box-sub02-03-4 ._each ._txt a img {
    margin-left: 8px;
}

.box-sub02-03-4 ._each ._txt.mt-minus {
    margin-top: -80px;
}

.box-sub02-03-5 {
    display: flex;
    padding-bottom: 160px;
}

.box-sub02-03-5 ._inner {
    width: 1440px;
    margin: 0 auto;
}

.box-sub02-03-5 ._inner ._title {
    color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-bottom: 100px;
}

.box-sub02-guide {
    width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    background-image: none;
}

.box-sub02-03-6 {
    padding-top: 160px;
    margin-bottom: 200px;
}

.box-sub02-03-6 ._inner {
    width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.box-sub02-03-6 ._title {
    color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-bottom: 100px;
}

.box-sub02-03-6 ._each {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.box-sub02-03-6 ._each ._txt {
    width: 690px;
    display: flex;
    flex-direction: column;
    margin-left: 100px;
}

.box-sub02-03-6 ._each ._txt p {
    color: #000;
    font-family: Pretendard;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
}

.box-sub02-03-6 ._each ._txt p b {
    color: #000;
font-family: Pretendard;
font-size: 18px;
font-style: normal;
font-weight: 600;
line-height: normal;
letter-spacing: -0.5px;
margin-bottom: -4px;
}

.box-sub02-03-6 ._each ._txt p ._thin {
    font-weight: 400;
}

.box-sub02-03-6 ._each ._txt p span:first-child {
    color: #FFF;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #29B6D5;
}

.box-sub02-03-6 ._each ._txt span {
    color: #000;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px; /* 188.889% */
    letter-spacing: -0.5px;
}

.box-sub02-03-6 ._each ._txt p span:nth-child(2) {
    color: #000;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-bottom: -4px;
}

.box-sub02-03-6 ._each ._txt a {
    color: #21B3D6;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    text-decoration-line: underline;
    display: flex;
    align-items: center;
    margin-top: 50px;
    cursor: pointer;
}

.box-sub02-03-6 ._each ._txt a img {
    margin-left: 8px;
}

.box-sub02-03-6 ._each ._txt.mt-minus {
    margin-top: -80px;
}


.modal {
    position: fixed;
  top:0; left: 0; bottom: 0; right: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 100000;
  display: none;
}

.box-popup {
    width: 1000px;
    height: 700px;
    background: url(/resource/images/img-popup-bg.png) no-repeat;
    padding: 40px 60px 100px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow-y: scroll;
    -ms-overflow-style: none;  /*IE, Edge*/
    scrollbar-width: none; /*Firefox*/
    z-index: 11;
}

.box-popup::-webkit-scrollbar {
    display: none; /*Chrome, Safari, Opera*/
    width: 0px;
} 

.box-popup ._close {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
    cursor: pointer;
}

.box-gradation.type3 {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.box-gradation.type3 ._title {
    color: #000;
    font-family: Pretendard;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.box-gradation.type3 ._title.mt {
    margin-top: 60px;
}

.box-gradation.type3 ._title span {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-family: Pretendard;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #29B6D5;
    margin-right: 10px;
}

.box-gradation.type3 ._each {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    width: calc(100% - 12px);
    height: 74px;
    margin-bottom: 10px;
    border: 6px solid transparent;
    border-radius: 100px;
    background-image: linear-gradient(#fff, #fff), linear-gradient(to right, #52C5DE 40%, #475CA3 75%, #475CA3 100%);
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.box-gradation.type3 ._each img {
    margin-left: 50px;
}

.box-gradation.type3 ._each span {
    color: #111;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.5px;
    display: inline-block;
    margin-left: 12px;  
}

.box-sub03-01-1 {
    display: flex;
    padding-top: 150px;
}

.box-sub03-01-1 ._inner {
    width: 1440px;
    margin: 0 auto;
}

.box-sub03-01-1 ._inner ._title {
    color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 114px;
}

.box-sub03-01-1 ._inner ._sub-title {
	color: #111;
	text-align: center;
	font-family: Pretendard;
	font-size: 36px;
	font-style: normal;
	font-weight: 600;
	line-height: 48px;
	/* 133.333% */
	letter-spacing: -0.72px;
	display: block;
	margin-bottom: 150px;
}

.box-sub03-01-1 ._inner ._sub-title b {
	color: #29B6D5;
	font-family: Pretendard;
	font-size: 36px;
	font-style: normal;
	font-weight: 600;
	line-height: 48px;
	letter-spacing: -0.72px;
	text-align: center;
}

.box-sub03-01-3 {
    display: flex;
    padding-top: 160px;
}

.box-sub03-01-3.pd {
    padding-top: 0;
}

.box-sub03-01-3 ._inner {
    width: 1440px;
    margin: 0 auto;
}

.box-sub03-01-3 ._inner ._title {
    color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-bottom: 100px;
}

.ul-dash ._title {
    color: #000;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 34px; /* 188.889% */
    letter-spacing: -0.5px;
    display: block;
    margin-bottom: 12px;
    margin-top: 24px;
    text-align: left;
}

.ul-dash ._stress {
    color: #000;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px; /* 188.889% */
    letter-spacing: -0.5px;
    margin-top: 6px;
}

.box-sub03-02-1 {
    padding: 160px 0 0;
}

.box-sub03-02-1 ._inner {
    width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.box-sub03-02-1 ._inner ._txt {
    width: 717px;
    display: flex;
    flex-direction: column;
}

.box-sub03-02-1 ._inner ._txt p {
    color: #000;
    font-family: Pretendard;
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-bottom: 30px;
}

.box-sub03-02-1 ._inner ._txt span {
    color: #000;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px; /* 188.889% */
    letter-spacing: -0.5px;
}

.box-sub03-02-1 ._inner ._txt span b {
    color: #29B6D5;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    letter-spacing: -0.5px;
}

.box-sub03-02-2 {
    padding: 160px 0;
}

.box-sub03-02-2 ._inner {
    width: 1440px;
    margin: 0 auto;
}

.box-sub04-01-2 ._inner {
    width: 1440px;
    margin: 0 auto;
}

.tab-sub4-6 ._section2 {
    padding: 113px 0 124px !important;
    display: flex;
    flex-direction: column;
}

.tab-sub4-6 ._section2 ._title {
    color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-bottom: 100px;
}

.tab-sub4-6 ._section2 ._box {
    display: flex;
    align-items: center !important;
    justify-content: space-between;
}

.tab-sub4-6 ._section2 ._txt span {
    width: 640px;
    color: #000;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px; /* 188.889% */
    letter-spacing: -0.5px;
    display: block;
}

.tab-sub4-6 ._section3 {
    padding: 108px 0 132px !important;
    display: flex;
    flex-direction: column;
    background: #F7F7F7;
}

.tab-sub4-6 ._section3 ._title {
    color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-bottom: 74px;
}

.tab-sub4-6 ._section3 ._box {
    display: flex;
    flex-direction: column;
}

.tab-sub4-6 ._section3 ._box ._each {
    padding: 40px 0;
    display: flex;
    border-bottom: 1px solid #d0d0d0;
    padding-left: 10px;
    align-items: center;
    width: 100%;
}

.tab-sub4-6 ._section3 ._box ._each:first-child {
    border-top: 1px solid #d0d0d0;
}

.tab-sub4-6 ._section3 ._box ._each span:first-child {
    color: #FFF;
    text-align: center;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: -0.5px;
    margin-right: 20px;
    border-radius: 30px;
    background: #29B6D5;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
    min-width: 158px;
    max-width: 158px;
}

.tab-sub4-6 ._section3 ._box ._each span:nth-child(2) {
    color: #333;
    font-family: Pretendard;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px; /* 163.636% */
    letter-spacing: -0.5px;
}

.tab-sub4-6 ._section4 {
    padding: 113px 0 124px !important;
    display: flex;
    flex-direction: column;
}

.tab-sub4-6 ._section4 ._title {
    color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-bottom: 74px;
}

.tab-sub4-6 ._section4 ._box {
    display: flex;
    align-items: center !important;
    justify-content: space-between;
}

.tab-sub4-6 ._section4 ._txt span {
    width: 620px;
    color: #000;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px; /* 188.889% */
    letter-spacing: -0.5px;
    display: block;
}

.tab-sub4-6 ._section4 ._txt span b {
    font-weight: 700;
}

.tab-sub4-6 ._section4 ._txt span ._color {
    color: #29B6D5;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px; /* 188.889% */
    letter-spacing: -0.5px;
}

.tab-sub4-7 ._intro {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.tab-sub4-7 ._intro ._up {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.tab-sub4-7 ._intro ._up ._txt {
    display: flex;
    flex-direction: column;
    width: 805px;
}

.tab-sub4-7 ._intro ._up ._txt ._title {
    color: #111;
    font-family: Pretendard;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-bottom: 50px;
}

.tab-sub4-7 ._intro ._up ._txt span {
    color: #333;
    font-family: Pretendard;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px; /* 163.636% */
    letter-spacing: -0.5px;
}

.tab-sub4-7 ._intro ._down span {
    color: #333;
    font-family: Pretendard;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px; /* 163.636% */
    letter-spacing: -0.5px;
    display: block;
    margin-bottom: 120px;
}

._content.tab-sub4-7 ._inner ._box ._list.type1 {
    width: 100% !important;
}

._content.tab-sub4-7 ._inner ._num+table {
    margin-top: 40px !important;
}

._content.tab-sub4-7 ._inner ._num {
    width: 100%;
    color: #000;
font-family: Pretendard;
font-size: 22px;
font-style: normal;
font-weight: 600;
line-height: normal;
letter-spacing: -0.5px;
display: flex;
align-items: center;
flex-wrap: wrap;
margin-top: 40px;
}

._content.tab-sub4-7 ._inner .mo-b { 
    display: none;
}

._content.tab-sub4-7 ._inner ._num b {
    font-weight: 500;
    /* display: block; */
    width: 100%;
    margin-left: 38px;
    margin-top: 10px;
}

._content.tab-sub4-7 ._inner ._num span {
    color: #FFF !important;
    font-family: Pretendard;
    font-size: 16px !important;
    font-style: normal;
    font-weight: 600 !important;
    line-height: normal;
    letter-spacing: -0.5px !important;
    margin-right: 10px !important;
    width: 28px !important;
    height: 28px !important;
    border-radius: 50% !important;
    background-color: #29B6D5;
    padding: initial !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-sub05-01-1 {
    background: url(/resource/images/img-sub05-01-1-bg.png) no-repeat;
    width: 100%;
    height: 790px;
    padding: 130px 0 98px;
    display: flex;
    box-sizing: border-box;
    margin-top: 150px;
    flex-direction: column;
}

.box-sub05-01-1 ._inner {
    width: 1440px;
    margin: 0 auto;
}

.box-sub05-01-1 ._inner ._title {
    color: #111;
    font-family: Pretendard;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-bottom: 40px;
}

.box-sub05-01-2 {
    padding: 150px 0 160px;
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
}

.box-sub05-01-2 ._inner {
    width: 1440px;
    margin: 0 auto;
}

.box-sub05-01-2 ._inner ._title {
    color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-bottom: 74px;
}

.box-sub05-01-2 ._inner ._content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.box-sub05-01-2 ._inner ._content ._txt {
    width: 640px;
}

.box-sub05-01-2 ._inner ._content ._txt p {
    color: #000;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px; /* 188.889% */
    letter-spacing: -0.5px;
    margin-bottom: 15px;
}

.box-sub05-01-2 ._inner ._content ._txt span {
    color: #000;
font-family: Pretendard;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 34px;
letter-spacing: -0.5px;
}

.box-sub05-01-2 ._inner ._content ._txt span a {
    color: #BF3D3A;
font-family: Pretendard;
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: 34px;
letter-spacing: -0.5px;
}

._checklist {
    display: flex;
}

._checklist ._box {
    display: flex;
    flex-wrap: wrap;
}

._checklist ._box ._each {
    width: calc(100%/2 - 20px);
    padding: 30px 10px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #c8c8c8;
    box-sizing: border-box;
}

._checklist ._box ._each:first-child, 
._checklist ._box ._each:nth-child(2) {
    border-top: 1px solid #c8c8c8;
}

._checklist ._box ._each span {
    display: inline-block;
    margin-left: 24px;
    color: #333;
    font-family: Pretendard;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px; /* 163.636% */
    letter-spacing: -0.5px;
}

._checklist ._box ._each:nth-child(odd) {
    margin-right: 40px;
}

._checklist.type2 ._box ._each {
    width: 100%;
    padding: 30px 10px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #c8c8c8;
    box-sizing: border-box;
}

._checklist.type2 ._box ._each:nth-child(2) {
    border-top: 0
}

._checklist.type2 ._box ._each:nth-child(odd) {
    margin-right: 0px;
}

._checklist.type3 ul li {
	width: 100%;
	position: relative;
	padding: 40px 0;
	border-bottom: 1px solid #D0D0D0;
	box-sizing: border-box;
	padding-left: 58px;
}

._checklist.type3 ul li span {
	color: #111;
	font-family: Pretendard;
	font-size: 25px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: -0.5px;
	display: inline-block;
}

._checklist.type3 ul li p {
	color: #333;
	font-family: Pretendard;
	font-size: 22px;
	font-style: normal;
	font-weight: 500;
	line-height: 36px;
	/* 163.636% */
	letter-spacing: -0.5px;
	margin-top: 17px;
}

._checklist.type3 ul li::before {
	content: url(/resource/images/icon-check-box.png);
	width: 46px;
	height: 36px;
	position: absolute;
	left: 0;
	top: 36px;
}

.box-sub06-02-2 {
	background: url(/resource/images/img-sub06-02-2-bg.png);
	height: 1263px;
	margin-top: 147px;
}

.box-sub05-03-1 {
    background: url(/resource/images/img-sub05-03-1-bg.png);
    height: 1360px;
    margin-top: 150px;
}

.box-sub05-03-1 ._inner {
    width: 1440px;
    margin: 0 auto;
    padding: 140px 0 264px;
}

.box-sub05-03-1 ._inner ._title {
    margin-bottom: 124px;
    color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
}

.box-sub05-03-1 ._inner ._box {
    display: flex;
    flex-direction: column;
}

.box-sub05-03-1 ._inner ._box ._each {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.box-sub05-03-1 ._inner ._box ._each:last-child {
    margin-bottom: 0;
}

.box-sub05-03-1 ._inner ._box ._each ._top {
    width: 100%;
    padding-bottom: 18px;
    border-bottom: 1px solid #d0d0d0;
    display: flex;
    align-items: center;
}

.box-sub05-03-1 ._inner ._box ._each ._top span:first-child {
    border-radius: 30px;
    background: #29B6D5;
    display: flex;
    padding: 7px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #FFF;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    display: inline-block;
    margin-right: 12px;
}

.box-sub05-03-1 ._inner ._box ._each ._top span:nth-child(2) { 
    color: #111;
    font-family: Pretendard;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.5px;
}

.box-sub05-03-1 ._inner ._box ._each ._top span:nth-child(2) b {
    font-weight: 400;
} 

.box-sub05-03-1 ._inner ._box ._each p {
    color: #333;
    font-family: Pretendard;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px; /* 163.636% */
    letter-spacing: -0.5px;
    width: 100%;
    padding-top: 18px;
}

.box-sub05-03-2 {
    padding: 150px 0;
}

.box-sub05-03-2 ._inner {
    width: 1440px;
    margin: 0 auto;
}

.box-sub05-03-2 ._inner ._title {
    margin-bottom: 100px;
    color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
}

.box-sub05-03-2 ._inner ._content { 
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.box-sub05-03-2 ._inner ._content ._txt {
    width: 690px;
    display: flex;
    flex-direction: column;
}

.box-sub05-03-2 ._inner ._content ._txt ._each {
    display: flex;
    flex-direction: column;
}

.box-sub05-03-2 ._inner ._content ._txt h1 {
    color: #000;
    font-family: Pretendard;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px; /* 163.636% */
    letter-spacing: -0.5px;
    margin-bottom: 82px;
}

.box-sub05-03-2 ._inner ._content ._txt h1 b {
    color: #29B6D5;
font-family: Pretendard;
font-size: 22px;
font-style: normal;
font-weight: 700;
line-height: 36px; /* 163.636% */
letter-spacing: -0.5px;
}

.box-sub05-03-2 ._inner ._content ._txt ._each p:first-child {
    color: #000;
font-family: Pretendard;
font-size: 24px;
font-style: normal;
font-weight: 600;
line-height: normal;
letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.box-sub05-03-2 ._inner ._content ._txt ._each p:first-child {
    margin-bottom: 24px;
}

.box-sub05-03-2 ._inner ._content ._txt ._each {
    margin-bottom: 40px;
}

.box-sub05-03-2 ._inner ._content ._txt ._each:nth-child(2) {
    margin-bottom: 30px;
}

.box-sub05-03-2 ._inner ._content ._txt ._each p:first-child span {
    width: 28px;
    height: 28px;
    background-color: #29B6D5;
    border-radius: 50%;
    color: #FFF;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.box-sub05-03-2 ._inner ._content ._txt ._each p:nth-child(2) {
    color: #000;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px; /* 188.889% */
    letter-spacing: -0.5px;
}

.box-sub06-01-1 {
    padding: 150px 0 0;
}

.box-sub06-01-1 ._inner {
    width: 1440px;
    margin: 0 auto;
}

.box-sub06-01-1 ._inner ._title {
    margin-bottom: 63px;
    color: #000;
text-align: center;
font-family: Pretendard;
font-size: 34px;
font-style: normal;
font-weight: 600;
line-height: normal;
letter-spacing: -0.5px;
}

.box-sub06-01-1 ._inner ._content { 
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.box-sub06-01-1 ._inner ._content ._txt {
    width: 620px;
    display: flex;
    flex-direction: column;
}

.box-sub06-01-1 ._inner ._content ._txt p {
    color: #000;
    font-family: Pretendard;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-bottom: 22px;
}

.box-sub06-01-1 ._inner ._content ._txt p b {
    color: #36BAD7;
    font-family: Pretendard;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
}

.box-sub06-01-1 ._inner ._content ._txt span {
    color: #000;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px; /* 188.889% */
    letter-spacing: -0.5px;
}

.box-sub06-01-2 {
    display: flex;
    padding-top: 80px;
    background-color: #ECEEEF;
    height: 850px;
    box-sizing: border-box;
}

.box-sub06-01-2 ._inner {
    width: 1440px;
    margin: 0 auto;
}

.box-sub06-01-2 ._inner ._title {
    color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-bottom: 60px;
}

._accordion ._content ._box1 {
    display: flex;
    margin-top: 23px;
    justify-content: space-between;
    align-items: center;
    width: 1250px;
}

._accordion ._content ._box1 ._txt {}
._accordion ._content ._box1 ._txt p {
    color: #333;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px; /* 200% */
    letter-spacing: -0.5px;
    position: relative;
    padding-left: 15px;
}
._accordion ._content ._box1 ._txt p::before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #333;
    border-radius: 50%;
    width: 4px;
    height: 4px;
}
._accordion ._content ._box1 ._txt span {
    color: #333;
font-family: Pretendard;
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: 36px; /* 200% */
letter-spacing: -0.5px;
}
._accordion ._content ._box1 ._txt span ._stress {
    color: #BF3D3A;
font-family: Pretendard;
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: 36px;
letter-spacing: -0.5px;
}

._accordion ._content ._box2 {
    border-radius: 15px;
    background: #F8F9FA;
    display: flex;
    padding: 34px 36px 40px;
    align-items: center;
}

._accordion ._content ._box2 img {
    margin-top: 20px;
}

._accordion ._content ._box2 ._txt ._title {
    color: #36BAD7;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px; /* 200% */
    letter-spacing: -0.5px;
    margin-bottom: 22px;
    text-align: left;
}

._accordion ._content ._box2 ._txt .ul-check.type5 li {
    color: #454545;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 53px; /* 294.444% */
    letter-spacing: -0.5px;
}

._accordion ._content ._box2 ._txt .ul-check.type5 li .ul-dash li {
    color: #666;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px; /* 177.778% */
    letter-spacing: -0.5px;
}

.box-sub06-01-2 ._accordion ._content._idx03 ._txt01 {
    display: flex;
    flex-wrap: wrap;
}

.box-sub06-01-2 ._accordion ._content._idx03 ._txt01 h1 {
    color: #333;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px; /* 200% */
    letter-spacing: -0.5px;
    position: relative;
    margin-bottom: 7px;
    width: 100%;
}

.box-sub06-01-2 ._accordion ._content._idx03 ._txt01 h1::before {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #000;
    content: '';
    top: 15px;
    left: -10px;
}

.box-sub06-01-2 ._accordion ._content._idx03 ._txt01 p {
    color: #333;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px; /* 200% */
    letter-spacing: -0.5px;
}

.box-sub06-01-2 ._accordion ._content._idx03 ._txt01 ._block {
    border-radius: 15px;
    background: #F8F9FA;
    margin-top: 32px;
    padding: 34px 17px 37px 44px;
    box-sizing: border-box;
    width: 100%;
}

.box-sub06-01-2 ._accordion ._content._idx03 ._txt01 ._block h2 {
    color: #36BAD7;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: -0.5px;
    margin-bottom: 11px;
}

.box-sub06-01-2 ._accordion ._content._idx03 ._txt01 ._block h2 b {
    font-weight: 700;
}

.box-sub06-01-2 ._accordion ._content._idx03 ._txt01 ._block p {
    color: #666;
font-family: Pretendard;
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: 36px; /* 200% */
letter-spacing: -1px;
}

.box-sub06-01-2 ._accordion ._content._idx03 ._qna {
    display: flex;
    flex-direction: column;
    margin-top: 52px;
}

.box-sub06-01-2 ._accordion ._content._idx03 ._qna p {
    display: flex;
        color: #111;
    font-family: Pretendard;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: -0.5px;
    padding-bottom: 23px;
    border-bottom: 1px solid #ddd;
    align-items: center;
}

.box-sub06-01-2 ._accordion ._content._idx03 ._qna a {
    color: #38C0DD;
    font-family: Pretendard;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    display: inline-block;
    margin-right: 25px;
}

.box-sub06-01-2 ._accordion ._content._idx03 ._qna b {
    color: #36BAD7;
    font-family: Pretendard;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px; /* 150% */
    letter-spacing: -0.5px;
}

._diagram {
    width: 1250px;
    position: relative;
    height: 170px;
    margin-bottom: 107px;
}

._diagram ._left, ._diagram ._right {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    width: 616px;
    height: 154px;
    margin-bottom: 107px;
    border: 8px solid transparent;
    border-radius: 100px;
    background-image: linear-gradient(#fff, #fff), linear-gradient(to right, #52C5DE 40%, #475CA3 75%, #475CA3 100%);
    background-origin: border-box;
    background-clip: content-box, border-box;
}

._diagram ._left {
    position: absolute;
    left: 0;
    top: 0;
}

._diagram ._left p, ._diagram ._right p {
    color: #36BAD7 !important;
font-family: Pretendard !important;
font-size: 30px !important;
font-style: normal !important;
font-weight: 700 !important;
line-height: 36px !important; /* 120% */
letter-spacing: -0.5px !important;
border-bottom: 0 !important;
}

._diagram ._left span, ._diagram ._right span {
    color: #000;
text-align: center;
font-family: Pretendard;
font-size: 22px;
font-style: normal;
font-weight: 500;
line-height: 36px; /* 163.636% */
letter-spacing: -0.5px;
}

._diagram ._right {
    position: absolute;
    right: 0;
    top: 0;
}

._diagram ._mid {
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 10;
}

.box-sub06-01-2 ._accordion ._content._idx03 ._txt02 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 54px;
}

.box-sub06-01-2 ._accordion ._content._idx03 ._txt02 ._txt {
    width: 500px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.box-sub06-01-2 ._accordion ._content._idx03 ._txt02 ._txt ._title {
    color: #000;
	font-family: Pretendard;
	font-size: 30px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: -0.5px;
	margin-bottom: 34px;
}

.box-sub06-02-1 {
	display: flex;
	padding-top: 150px;
}

.box-sub06-02-1 ._inner {
	width: 1440px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.box-sub06-02-1 ._inner ._title {
	color: #000;
	text-align: center;
	font-family: Pretendard;
	font-size: 40px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 114px;
}

.box-sub06-02-1 ._inner ._sub-title {
	color: #111;
	font-family: Pretendard;
	font-size: 36px;
	font-style: normal;
	font-weight: 700;
	line-height: 48px;
	letter-spacing: -0.72px;
    text-align: center;
}

.box-sub06-02-1 ._inner ._sub-title a {
	color: #36BAD6;
	text-align: center;
	font-family: Pretendard;
	font-size: 36px;
	font-style: normal;
	font-weight: 700;
	line-height: 48px;
	/* 133.333% */
	letter-spacing: -0.72px;
}

.box-sub06-02-1 ._inner ._sub-title b {
	color: #43BED8;
	font-family: Pretendard;
	font-size: 36px;
	font-style: normal;
	font-weight: 700;
	line-height: 48px;
	letter-spacing: -0.72px;
}

.box-sub06-02-1 ._inner svg {
	margin-top: 30px;
	margin-bottom: 80px;
}

.box-sub06-02-2 ._inner {
	width: 1440px;
	margin: 0 auto;
	padding: 143px 0 158px;
}

.box-sub06-02-2 ._inner ._title {
	color: #000;
	text-align: center;
	font-family: Pretendard;
	font-size: 34px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: -0.5px;
	margin-bottom: 70px;
}

.box-sub06-02-3 {
	display: flex;
	padding: 150px 0;
}

.box-sub06-02-3.sub07-02 {
    padding: 150px 0 0;
}

.box-sub06-02-3 ._inner {
	width: 1440px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
}

.box-sub06-02-3 ._inner ._title {
	color: #000;
	text-align: center;
	font-family: Pretendard;
	font-size: 34px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: -0.5px;
	margin-bottom: 100px;
}

.box-sub06-02-3 ._inner ._content {
	display: flex;
	justify-content: space-between;
    align-items: center;
}

.box-sub06-02-3 ._inner ._content ._txt {
	display: flex;
	flex-direction: column;
	width: 655px;
}

.box-sub06-02-3 ._inner ._content ._txt h1 {
	display: flex;
	align-items: center;
}

.box-sub06-02-3 ._inner ._content ._txt h1 span:first-child {
	color: #FFF;
	font-family: Pretendard;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: -0.5px;
	width: 28px;
	height: 28px;
	flex-shrink: 0;
	background-color: #29B6D5;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	margin-right: 10px;
}

.box-sub06-02-3 ._inner ._content ._txt h1 span:nth-child(2) {
	color: #000;
	font-family: Pretendard;
	font-size: 26px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: -0.5px;
}

.box-sub06-02-3 ._inner ._content ._txt h1 span:nth-child(2) b {
	color: #000;
	font-family: Pretendard;
	font-size: 22px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: -0.5px;
}

.box-sub06-02-3 ._inner ._content ._txt p {
	color: #000;
	font-family: Pretendard;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 34px;
	/* 188.889% */
	letter-spacing: -0.5px;
	margin-top: 24px;
	margin-bottom: 40px;
}

.box-sub06-02-3 ._inner ._content ._txt ._bottom {
	margin-top: 56px;
	color: #000;
	font-family: Pretendard;
	font-size: 22px;
	font-style: normal;
	font-weight: 500;
	line-height: 36px;
	/* 163.636% */
	letter-spacing: -0.5px;
	display: block;
}

.box-sub06-02-3 ._inner ._content ._txt ._top {
    color: #000;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px; /* 188.889% */
    letter-spacing: -0.5px;
    margin-bottom: 55px;
}

.box-sub06-02-4 {
	display: flex;
	background-color: #ECEEEF;
	height: 890px;
}

.box-sub06-02-4 ._inner {
	width: 1440px;
	margin: 0 auto;
	padding-top: 140px;
}

.box-sub06-02-4 ._inner ._title {
	color: #000;
	text-align: center;
	font-family: Pretendard;
	font-size: 34px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: -0.5px;
	margin-bottom: 40px;
}

.box-sub06-02-4 ._inner ._sub-title {
	color: #000;
	text-align: center;
	font-family: Pretendard;
	font-size: 22px;
	font-style: normal;
	font-weight: 500;
	line-height: 36px;
	/* 163.636% */
	letter-spacing: -0.5px;
	display: block;
	margin-bottom: 60px;
}

.box-sub06-02-4 ._inner ._sub-title b {
	color: #36BAD7;
	font-family: Pretendard;
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	line-height: 36px;
	letter-spacing: -0.5px;
}

.box-sub08-01-1 {
	padding: 150px 0 160px;
}

.box-sub08-01-1 ._inner {
	width: 1440px;
	margin: 0 auto;
}

.box-sub08-01-1 ._inner ._title {
	color: #000;
	text-align: center;
	font-family: Pretendard;
	font-size: 40px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 120px;
}

.box-sub08-01-1 ._inner .fixed {
	width: 100%;
	padding: 29px 30px;
	box-sizing: border-box;
	border-radius: 20px;
	border: 1px solid #D0D0D0;
	background: #FFF;
}

.box-sub08-01-1 ._inner .fixed span:first-child {
	color: #000;
	text-align: center;
	font-family: Pretendard;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	margin-right: 15px;
	display: inline-block;
}

.box-sub08-01-1 ._inner .fixed span:nth-child(2) {
	margin-right: 15px;
	display: inline-block;
	color: #D9D9D9;
	text-align: center;
	font-family: Pretendard;
	font-size: 18px;
	font-style: normal;
	font-weight: 300;
	line-height: normal;
} 

.box-sub08-01-1 ._inner .fixed span:nth-child(3) {
	color: #000;
	text-align: center;
	font-family: Pretendard;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.box-sub08-01-1 ul {
	display: flex;
	margin-top: 80px;
	width: 100%;
	flex-wrap: wrap;
}

.box-sub08-01-1 ul li a {
	width: 460px;
	margin-right: 30px;
	display: block;
	margin-bottom: 114px;
}

.box-sub08-01-1 ul li:nth-child(3n) a {
	margin-right: 0;
}

.box-sub08-01-1 ul li a ._each {
	display: flex;
	flex-direction: column;
    width: 460px;
    height: 670px;
}

.box-sub08-01-1 ul li a ._each ._img {
    height: 602px;
    border-radius: 24px;
    overflow: hidden;
}

.box-sub08-01-1 ul li a ._each ._txt {
	display: flex;
	flex-direction: column;
}

.box-sub08-01-1 ul li a ._each ._txt p {
	margin: 20px 0 10px;
	color: #000;
	font-family: "Inter", sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: -0.5px;
}

.box-sub08-01-1 ul li a ._each ._txt span {
    color: #A6A6A6;
	font-family: "Inter", sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: -0.5px;
}

.box-search {
    margin: 0 auto;
    margin-top: 76px;
    width: 480px;
}

.input-grey-rounded {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.5px;
    line-height: 1.5;
    color: #333;
    border: 1px solid #D9D9D9;
    background: #F8F9FA;
    background-image: url(/resource/images/icon-search.png);
    background-repeat: no-repeat;
    background-position: 423px 15px;
    background-size: 29px 29px;
    border-radius: 50px;
    width: 100%;
    padding: 15px 28px;
}

.input-grey-rounded:focus{outline: 0;}

.input-grey-rounded:focus-visible {
    border: 1px solid #D9D9D9 !important;
}

.input-grey-rounded2 {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.5px;
    line-height: 1.5;
    color: #333;
    border: 1px solid #D9D9D9;
    background: #F8F9FA;
    border-radius: 15px;
    width: 100%;
    padding: 17px 25px;
    box-sizing: border-box;
}

.input-grey-rounded2.width480 {
    width: 480px !important;
}

.box-sub08-01-2 {
	padding: 150px 0 235px;
}

.box-sub08-01-2 ._inner {
	width: 1440px;
	margin: 0 auto;
}

.box-sub08-01-2 ._inner ._title {
	color: #000;
	text-align: center;
	font-family: Pretendard;
	font-size: 40px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 120px;
}

.box-sub08-01-2 ._inner ._content {
    display: flex;
    flex-direction: column;
}

.box-sub08-01-2 ._inner ._content ._top {
    display: flex;
    flex-direction: column;       
    border-radius: 20px;
    border: 1px solid #D0D0D0;
    background: #FFF;
    padding: 29px 30px;
    box-sizing: border-box;
align-items: center;
}

.box-sub08-01-2 ._inner ._content ._top p {
    color: #000;
text-align: center;
font-family: "Inter", sans-serif;
font-size: 23px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: -0.5px;
margin-bottom: 15px;
}

.box-sub08-01-2 ._inner ._content ._top div {
    display: flex;
}

.box-sub08-01-2 ._inner ._content ._top div span {
    color: #A6A6A6;
text-align: center;
font-family: "Inter", sans-serif;
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: -0.5px;
}

.box-sub08-01-2 ._inner ._content ._top div span:nth-child(2) {
    display: inline-block;
    margin: 0 10px;
}

.box-sub08-01-2 ._inner ._content ._bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 70px 0 83px;
    border-bottom: 1px solid #D9D9D9;
    flex-direction: column;
}

.box-sub08-01-2 ._inner ._content ._bottom img {
    margin-bottom: 50px;
}

.box-sub08-01-2 ._inner ._content ._bottom div {
    width: 100%;
    color: #000;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-style: normal;
    /* font-weight: 700; */
    line-height: normal;
    letter-spacing: -0.5px;
}

.btn-go-list {
    margin: 0 auto;
    margin-top: 60px;
    display: inline-flex;
    padding: 14px 28px 15px 28px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    background: #D0D0D0;
    color: #FFF;
    font-family: Pretendard;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.3px;
    width: 140px;
}

.box-sub08-02-1 {
	padding: 150px 0 160px;
}

.box-sub08-02-1 ._inner {
	width: 1440px;
	margin: 0 auto;
}

.box-sub08-02-1 ._inner ._title {
	color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
	margin-bottom: 120px;
}

.box-sub08-02-1 ._inner h1 {
    color: #111;
    font-family: Pretendard;
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: 48px;
    letter-spacing: -0.52px;
    margin-bottom: 60px;
    text-align: center;
}

.box-sub08-02-1 ._inner h1 a {
    color: #111;
    text-align: center;
    font-family: Pretendard;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px; /* 133.333% */
    letter-spacing: -0.72px;
}

.box-sub08-02-1 ._inner h1 b {
    color: #36BAD7;
    font-family: Pretendard;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
    letter-spacing: -0.52px;
}

textarea:focus {
    outline: none;
    border: 1px solid #D9D9D9;
}

.expandable-textarea {
    display: grid;
    min-height: 174px;
}

.expandable-textarea.gray textarea{
    border-radius: 15px;
    border: 1px solid #D9D9D9;
    background: #F8F9FA;
    height: 140px;
}

.expandable-textarea textarea,
.expandable-textarea::after {
    grid-area: 1 / 1 / 2 / 2;
    padding: 24px 30px;
    border-radius: 20px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    color: #666;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.expandable-textarea textarea {
    resize: none;
    overflow: auto;
}

.expandable-textarea::after {
    content: attr(data-replicated-value) " ";
    white-space: pre-wrap;
    visibility: hidden;
}

.box-sub08-02-1 ._agree {
    display: flex;
    align-items: center;
    margin-top: 19px;
}

.form-group {
    display: block;
    margin-right: 10px;
}
  
.form-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}
  
.form-group label {
    position: relative;
    cursor: pointer;
}
  
.form-group label:before {
    content:'';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #D9D9D9;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
  }
  
  .form-group input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    left: 9px;
    width: 6px;
    height: 14px;
    border: solid #535353;
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
  }

.box-sub08-02-1 ._agree span {
    color: #666;
    font-family: Pretendard;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.box-sub08-02-1 ._input {
    width: 100%;
    margin-top: 65px;
}

.box-sub08-02-1 ._input ._each {
    display: flex;
}

.box-sub08-02-1 ._input ._each ._panel {
    width: 346px;
    border-radius: 20px;
    background: #36BAD7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 34px;
    flex-wrap: wrap;
}

.box-sub08-02-1 ._input ._each ._panel p {
    color: #FFF;
    text-align: center;
    font-family: Pretendard;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px; /* 100% */
    width: 100%;
    margin-bottom: 10px;
}

.box-sub08-02-1 ._input ._each ._panel span {
    color: #FFF;
    font-family: Pretendard;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px;
}

.box-sub08-02-1 ._input ._each.idx01 {
    height: 307px;
    margin-bottom: 30px;
}

.box-sub08-02-1 ._input ._each.idx02 {
    height: 176px;
    margin-bottom: 30px;
}

.box-sub08-02-1 ._input ._each.idx03 {
    height: 393px;
}

.box-sub08-02-1 ._input ._each ._table {
    border-top: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;
    width: calc(100% - 380px);
    padding-top: 17px;
}

.box-sub08-02-1 ._input ._each ._table table {
    width: 100%;
}

.box-sub08-02-1 ._input ._each ._table table tr:first-child td {
    padding-top: 10px;
    padding-bottom: 10px;
    box-sizing: border-box;
}

.box-sub08-02-1 ._input ._each ._table table tr td {
    padding-top: 20px;
    padding-bottom: 20px;
    box-sizing: border-box;
}

.box-sub08-02-1 ._input ._each ._table table tr td ._txt {
    color: #666;
    font-family: Pretendard;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 171.429% */
}

.box-sub08-02-1 ._input ._each ._table table tr td._phone {
    display: flex;
    align-items: center;
}

.box-sub08-02-1 ._input ._each ._table table tr td._phone .wrapSelect,
.box-sub08-02-1 ._input ._each ._table table tr td._phone input {
    width: 146px;
}

.box-sub08-02-1 ._input ._each ._table table tr td._phone span {
    margin: 0 8px;
}

.box-sub08-02-1 ._input ._each ._table table tr td:first-child {
    color: #000;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    width: 190px;
    padding-right: 60px;
    padding-left: 30px;
    box-sizing: border-box;
}

.box-sub08-02-1 ._input ._each ._table table tr td:nth-child(2) {
    width: calc(100% - 220px);
    padding-right: 30px;
    box-sizing: border-box;
}

.wrapSelect {
	height: 60px;
	text-align: center;
	position: relative;
}

.wrapSelect select {
	margin: 0 auto;
	width: 100%;
    height: 100%;
	box-sizing: border-box;
	border-radius: 15px;
    border: 1px solid #D9D9D9;
    background: #F8F9FA;
    color: #333;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 0 20px;
}

.wrapSelect .arrow {
	position: absolute;
	top: 50%;
    transform: translateY(-50%);
	right: 33px;
	width: 10px;
    height: 20px;
	text-align: center;
	pointer-events: none;
}

.box-sub08-02-1 ._btn {
    margin: 0 auto;
    margin-top: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-sub08-02-1 ._btn .go-reserve {
    display: inline-flex;
padding: 14px 28px 15px 28px;
justify-content: center;
align-items: center;
gap: 10px;
color: #FFF;
font-family: Pretendard;
font-size: 24px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: -0.3px;
border-radius: 30px;
background: #36BAD7;
margin-right: 8px;
}

.box-sub08-02-1 ._btn .btn-cancel {
    display: inline-flex;
padding: 14px 28px 15px 28px;
justify-content: center;
align-items: center;
gap: 10px;
border-radius: 30px;
background: #D0D0D0;
color: #FFF;
font-family: Pretendard;
font-size: 24px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: -0.3px;
}

.box-sub08-03-1 {
	padding: 150px 0;
}

.box-sub08-03-1 ._inner {
	width: 1440px;
	margin: 0 auto;
}

.box-sub08-03-1 ._inner ._title {
	color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
	margin-bottom: 120px;
}

.tab {
    border-bottom: 1px solid #BABABA;
    display: flex;
    margin-bottom: 55px;
}

.tab li { 
    border-radius: 16px 16px 0px 0px;
    border: 1px solid #BABABA;
    background: #FFF;
    height: 76px;
    border-bottom: 0;
}

.tab li a {
    color: #666;
    text-align: center;
    font-family: Pretendard;
    font-size: 22px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 0.5px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.tab.n4 li {
    width: 248px;
}

.tab.n4 li.active {
    width: 248px;
    background: #36BAD7;
    border: 1px solid #36BAD7;
}

.tab.n4 li.active a {
    color: #fff;
}

.tab.n2 li {
    width: 300px;
}

.tab.n2 li.active {
    width: 300px;
    background: #36BAD7;
    border: 1px solid #36BAD7;
}

.tab.n2 li.active a {
    color: #fff;
}

.box-sub06-03-1 {
	display: flex;
	padding: 150px 0;
}

.box-sub06-03-1 ._inner {
	width: 1440px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
}

.box-sub06-03-1 ._inner ._title {
	color: #000;
	text-align: center;
	font-family: Pretendard;
	font-size: 34px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: -0.5px;
	margin-bottom: 100px;
}

.box-sub06-03-1 ._inner ._title b {
    font-weight: 400;
}

.box-sub06-03-1 ._inner ._content {
	display: flex;
	justify-content: space-between;
    align-items: center;
}

.box-sub06-03-1 ._inner ._content ._txt {
	display: flex;
	flex-direction: column;
	width: 640px;
}

.box-sub06-03-1 ._inner ._content ._txt h1 {
	display: flex;
	align-items: center;
    margin-top: 40px;
}

.box-sub06-03-1 ._inner ._content ._txt h1 span:first-child {
	color: #FFF;
	font-family: Pretendard;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: -0.5px;
	width: 28px;
	height: 28px;
	flex-shrink: 0;
	background-color: #29B6D5;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	margin-right: 10px;
}

.box-sub06-03-1 ._inner ._content ._txt h1 span:nth-child(2) {
	color: #000;
	font-family: Pretendard;
	font-size: 26px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: -0.5px;
}

.box-sub06-03-1 ._inner ._content ._txt h1 span:nth-child(2) b {
	color: #000;
	font-family: Pretendard;
	font-size: 22px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: -0.5px;
}

.box-sub06-03-1 ._inner ._content ._txt p {
	color: #000;
	font-family: Pretendard;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 34px;
	/* 188.889% */
	letter-spacing: -0.5px;
	margin-top: 24px;
}

.box-sub06-03-1 ._inner ._content ._txt ._bottom {
	margin-top: 64px;
	color: #666;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px; /* 188.889% */
    letter-spacing: -0.5px;
	display: block;
}

.box-sub06-03-2 {
    display: flex;
    padding-top: 140px;
    background-color: #ECEEEF;
    height: 1090px;
    box-sizing: border-box;
}

.box-sub06-03-2.bg-ex-m {
    background-color: #ECEEEF;
}

.box-sub06-03-2 ._inner {
    width: 1440px;
    margin: 0 auto;
}

.box-sub06-03-2 ._inner ._title {
    color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-bottom: 60px;
}

.box-sub06-03-2 ._inner ._title b {
    font-weight: 400;
}

.box-sub06-03-2 ._accordion ._content._idx04 ._txt01 {
    display: flex;
    flex-wrap: wrap;
}

.box-sub06-03-2 ._accordion ._content._idx04 ._txt01 h1 {
    color: #333;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px; /* 200% */
    letter-spacing: -0.5px;
    position: relative;
    margin-bottom: 7px;
    width: 100%;
}

.box-sub06-03-2 ._accordion ._content._idx04 ._txt01 h1::before {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #000;
    content: '';
    top: 15px;
    left: -10px;
}

.box-sub06-03-2 ._accordion ._content._idx04 ._txt01 p {
    color: #333;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px; /* 200% */
    letter-spacing: -0.5px;
}

.box-sub06-03-2 ._accordion ._content._idx04 ._txt01 ._block {
    border-radius: 15px;
    background: #F8F9FA;
    margin-top: 32px;
    padding: 34px 17px 37px 44px;
    box-sizing: border-box;
    width: 100%;
}

.box-sub06-03-2 ._accordion ._content._idx04 ._txt01 ._block h2 {
    color: #36BAD7;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: -0.5px;
    margin-bottom: 11px;
}

.box-sub06-03-2 ._accordion ._content._idx04 ._txt01 ._block h2 b {
    font-weight: 700;
}

.box-sub06-03-2 ._accordion ._content._idx04 ._txt01 ._block p {
    color: #333;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px; /* 200% */
    letter-spacing: -0.5px;
}

.box-sub06-03-2 ._accordion ._content._idx04 ._qna {
    display: flex;
    flex-direction: column;
    margin-top: 52px;
}

.box-sub06-03-2 ._accordion ._content._idx04 ._qna p {
    display: flex;
        color: #111;
    font-family: Pretendard;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: -0.5px;
    padding-bottom: 23px;
    border-bottom: 1px solid #ddd;
    align-items: center;
}

.box-sub06-03-2 ._accordion ._content._idx04 ._qna a {
    color: #38C0DD;
    font-family: Pretendard;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    display: inline-block;
    margin-right: 25px;
}

.box-sub06-03-2 ._accordion ._content._idx04 ._qna b {
    color: #36BAD7;
    font-family: Pretendard;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px; /* 150% */
    letter-spacing: -0.5px;
}


._accordion ._content ._normal {
    color: #333;
font-family: Pretendard;
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: 36px; /* 200% */
letter-spacing: -0.5px;
}


._accordion ._content ._normal b {
    color: #333;
font-family: Pretendard;
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: 36px; /* 200% */
letter-spacing: -0.5px;
}

._accordion ._content ._normal ._red {
    color: #BF3D3A;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: -0.5px;
}


.box-sub07-02-1 {
    background: url(/resource/images/img-sub07-02-1-bg.png) no-repeat;
    height: 1000px;
    box-sizing: border-box;
    margin-top: 150px;
}

.box-sub07-02-1 ._inner {
    padding: 120px 0 144px;
    display: flex;
    flex-direction: column;
    width: 1440px;
    margin: 0 auto;
}

.box-sub07-02-1 ._inner ._title {
    color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-bottom: 60px;
}

.box-sub07-02-1 ._inner ._box {
    display: flex;
    flex-direction: column;
}

.box-sub07-02-1 ._inner ._box ._each {
    padding: 40px 0;
    display: flex;
    border-bottom: 1px solid #d0d0d0;
    padding-left: 10px;
    align-items: center;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
}

.box-sub07-02-1 ._inner ._box ._each:first-child {
    border-top: 1px solid #d0d0d0;
}

.box-sub07-02-1 ._inner ._box ._each div {
    display: flex;
}

.box-sub07-02-1 ._inner ._box ._each div:nth-child(odd) {
    padding-bottom: 40px;
    box-sizing: border-box;
}

.box-sub07-02-1 ._inner ._box ._each div span:first-child {
    color: #FFF;
    text-align: center;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: -0.5px;
    margin-right: 20px;
    border-radius: 16px;
    background: #29B6D5;
    padding: 12px 18px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
    min-width: 180px;
    max-width: 180px;
}

.box-sub07-02-1 ._inner ._box ._each div span:nth-child(2) {
    color: #333;
    font-family: Pretendard;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px; /* 163.636% */
    letter-spacing: -0.5px;
}

.box-sub07-02-2 {
    padding: 160px 0;
}

.box-sub07-02-2 ._inner {
    width: 1440px;
    margin: 0 auto;
}

.box-sub07-02-2 ._inner ._content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.box-sub07-02-2 ._inner ._content ._txt {
    width: 650px;
}

.box-sub07-02-2 ._inner ._content ._txt ._title {
    color: #000;
    font-family: Pretendard;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    margin-bottom: 30px;
}

.box-sub07-02-2 ._inner ._content ._txt ._title b {
    color: #29B6D5;
    font-family: Pretendard;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.5px;
}

.box-sub07-02-2 ._inner ._content ._txt ._sub-title {
    display: inline-block;
    margin-bottom: 89px;
    color: #000;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px; /* 188.889% */
    letter-spacing: -0.5px;
}

.box-sub09-01-1 {
    display: flex;
    padding: 150px 0;

}

.box-sub09-01-1 ._inner {
    width: 1288px;
    margin: 0 auto;
}

.box-sub09-01-1 ._inner ._title {
    color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 120px;
}

.box-sub09-01-1 ._inner ._content {
    border-radius: 20px;
    border: 1px solid #D0D0D0;
    background: #FFF;
    padding: 50px;
}

.box-sub09-01-1 ._inner ._content ._section {
    margin-bottom: 50px;
    display: block;
}

.box-sub09-01-1 ._inner ._content ._section span {
    color: #222;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px; /* 185.714% */
    letter-spacing: -1px;
}

.box-sub09-01-1 ._inner ._content ._section span b {
    font-weight: 700;
}

.box-sub09-01-1 ._inner ._content ._section span ._color {
    color: #29B6D5;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px; /* 185.714% */
    letter-spacing: -1px;
}

.box-sub09-01-1 ._inner ._content ._section ._circle {
    color: #4FC6E0;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: -1px;
}

.box-sub09-01-2 {
    display: flex;
    padding: 150px 0;

}

.box-sub09-01-2 ._inner {
    width: 1288px;
    margin: 0 auto;
}

.box-sub09-01-2 ._inner ._title {
    color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 120px;
}

.box-sub09-01-2 ._inner ._content {
    border-radius: 20px;
    border: 1px solid #D0D0D0;
    background: #FFF;
    padding: 50px;
}

.box-sub09-01-2 ._inner ._content ._section {
    margin-bottom: 50px;
    display: block;
}

.box-sub09-01-2 ._inner ._content ._section span {
    color: #222;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: -1px;
}

.box-sub09-01-2 ._inner ._content ._section span a {
    display: flex;
    align-items: center;
}

.box-sub09-01-2 ._inner ._content ._section span b {
    font-weight: 700;
}

.box-sub09-01-2 ._inner ._content ._section span ._color {
    color: #29B6D5;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 38px; /* 211.111% */
    letter-spacing: -1px;
}

.box-sub09-01-2 ._inner ._content ._section ._circle {
    color: #4FC6E0;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: -1px;
}

.box-sub06-1 {
    display: flex;
    padding-top: 150px;
}

.box-sub06-1 ._inner {
    width: 1440px;
    margin: 0 auto;
}

.box-sub06-1 .sub-title {
    color: #111;
    font-family: "Noto Sans";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: -0.72px;
    text-align: center;
    width: 100%;
    display: block;
    margin-bottom: 50px;
}

.box-sub06-1 .sub-title b {
    color: #36BAD7;
text-align: center;
font-family: "Noto Sans";
font-size: 36px;
font-style: normal;
font-weight: 700;
line-height: 48px; /* 133.333% */
letter-spacing: -0.72px;
}

.img-bar {
    margin: 0 auto;
    margin-bottom: 80px;
}

.box-sub06-1 ._inner ._title {
    color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 114px;
}

.box-sub06-1 ._inner ._sub-title {
	color: #111;
	text-align: center;
	font-family: Pretendard;
	font-size: 36px;
	font-style: normal;
	font-weight: 600;
	line-height: 48px;
	/* 133.333% */
	letter-spacing: -0.72px;
	display: block;
	margin-bottom: 102px;
}

.box-sub06-1 ._inner ._sub-title b {
	color: #29B6D5;
	font-family: Pretendard;
	font-size: 36px;
	font-style: normal;
	font-weight: 600;
	line-height: 48px;
	letter-spacing: -0.72px;
}

.box-sub06-1 ._inner ._sub-title {
	color: #111;
    text-align: center;
    font-family: Pretendard;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px; /* 160% */
    letter-spacing: -0.6px;
	display: block;
	margin-bottom: 150px;
}

.box-sub06-2 {
    margin-top: 160px;
padding: 150px 0 186px;
background: #F8F9FA;
}

.box-sub06-2 ._inner {
width: 1440px;
margin: 0 auto;
}

.box-sub06-2 ._inner ._title {
margin-bottom: 63px;
color: #000;
text-align: center;
font-family: Pretendard;
font-size: 34px;
font-style: normal;
font-weight: 600;
line-height: normal;
letter-spacing: -0.5px;
}
.box-sub06-2 .symptom-card {
padding: 45px 50px;
margin: 0 auto;
border-radius: 20px;
background: #FFF;
box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.10);
position: relative;
min-height: 538px;
box-sizing: border-box;
margin-bottom: 40px;
}

.box-sub06-2 .card-title {
        text-align: center;
        font-size: 24px;
        font-weight: bold;
        color: #333;
        margin-bottom: 30px;
    }

    .box-sub06-2 .patient-info {
        display: flex;
        align-items: flex-start;
        gap: 30px;
    }

    .box-sub06-2 .patient-details {
        flex: 1;
        display: flex;
        align-items: center;
        gap: 30px;
        padding-top: 29px;
    }

    .box-sub06-2 .patient-age {
        color: #111;
        font-family: "Noto Sans";
        font-size: 25px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        letter-spacing: -0.5px;
    }

    .box-sub06-2 .patient-symptoms {
        color: #111;
        font-family: "Noto Sans";
        font-size: 25px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: -0.5px;
    }

    .box-sub06-2 .chat-message {
        margin-bottom: 20px;
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }

    .box-sub06-2 .message-left {
        justify-content: flex-start;
        position: absolute;
        left: 280px;
    }

    .box-sub06-2 .message-right {
        justify-content: flex-end;
        position: absolute;
        right: 200px;
        align-items: center;
    }

    .box-sub06-2 .message-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        flex-shrink: 0;
    }

    .box-sub06-2 .message-bubble {
        max-width: 70%;
        padding: 15px 20px;
        border-radius: 20px;
        position: relative;
        word-wrap: break-word;
    }

    .box-sub06-2 .bubble-left {
        background: #f0f0f0;
        color: #333;
        border-bottom-left-radius: 5px;
    }

    .box-sub06-2 .message-left.idx01 {
        top: 153px;
    }

    .box-sub06-2 .message-left.idx02 {
        top:325px;
    }

    .box-sub06-2 .message-right.idx01 {
        top: 195px;
        right: 50px;
    }

    .box-sub06-2 .message-right.idx02 {
        top:395px;
    }

    .box-sub06-2 .bubble-right {
        background: #40E0D0;
        color: white;
        border-bottom-right-radius: 5px;
    }

    .box-sub06-2 .doctor-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: #e8f5e8;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
    }

    .trust-reasons-container {
        padding: 140px 0 245px; 
    }

    .trust-reasons-container ._inner {
        width: 1440px;
margin: 0 auto;
    }

    .trust-reasons-container .main-title {
        color: #000;
        text-align: center;
        font-family: "Noto Sans";
        font-size: 34px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        letter-spacing: -0.5px;
        margin-bottom: 80px;
    }

    .trust-reasons-container .title-highlight {
        color: #36BAD7;
    }

    .trust-reasons-container .reasons-grid {
       display: flex;
       justify-content: space-between;
        gap: 20px;
        margin-top: 40px;
    }

    .trust-reasons-container .reason-card {
        border-radius: 0 0 11.826px 11.826px;
background: #FAFAFA;
    }

    .card-text {
        color: #000;
text-align: center;
font-family: "Noto Sans";
font-size: 25px;
font-style: normal;
font-weight: 600;
line-height: normal;
height: 106px;
display: flex;
align-items: center;
justify-content: center;
    }

/* footer start */
footer ._wrap {
    display: flex;
    flex-direction: column;
}

footer ._wrap ._top {
    background: rgb(43 43 43 / 90%);
    padding: 28px 0;
}

footer ._wrap ._top ._inner {
    width: 1440px;
    margin:0 auto;
    display: flex;
    align-items: center;
    align-self: stretch;
}

footer ._wrap ._top ._logo {
    margin-right: 90px;
}

footer ._wrap ._top ._right {
    width: 1012px;
}

footer ._wrap ._top ._right ._fnb {
    display: flex;
    border-bottom: 1px solid rgba(217, 217, 217, 0.10);
    padding-bottom: 12px;
}

footer ._wrap ._top ._right ._fnb a {
    margin-right: 16px;
}

footer ._wrap ._top ._right ._fnb a li {
    color: rgb(255 255 255 / 80%);
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

footer ._wrap ._top ._right ._info {
    padding-top: 13px;
}

footer ._wrap ._top ._right ._info p {
    color: #9B9B9B;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 4px;
}

footer ._wrap ._top ._right ._info p:last-child {
    margin-bottom: 0;
}

footer ._wrap ._bottom {
    background: var(--Dark, #2B2B2B);
}

footer ._wrap ._bottom ._inner {
    width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    height: 80px;
}

footer ._wrap ._bottom span {
    color: rgb(255 255 255 / 50%);
    font-family: "Source Sans Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

footer ._wrap ._bottom ._sns {
    display: flex;
    align-items: center;
}

footer ._wrap ._bottom ._sns a {
    margin-right: 24px;
}

footer ._wrap ._bottom ._sns a:last-child {
    margin-right: 0px;
}

#daumRoughmapContainer1722909662818 {
	height: 100% !important;
}

.root_daum_roughmap .wrap_map {
    position: relative;
    height: 100% !important;
}

.faq-wrap {
    max-width: 1440px;
    margin: 0 auto;
    padding: 150px 0px;
    
  }
  
  .faq-title {
      color: #000;
  text-align: center;
  font-family: "Noto Sans";
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
    margin-bottom: 20px;
  }
  
  .faq-desc {
      color: #666;
  text-align: center;
  font-family: "Noto Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 160% */
    margin-bottom: 120px;
  }
  
  .faq-list {
      margin-bottom: 120px;
  }
  
  .faq-item {
      margin-bottom: 20px;
      border-radius: 20px;
      border: 1px solid #D9D9D9;
      background: #FFF;
  }
  
  .faq-question {
      width: 100%;
      padding: 46px 50px;
      font-size: 16px;
      font-weight: 600;
      text-align: left;
      background: none;
      border: none;
      cursor: pointer;
      position: relative;
      color: #111;
      font-family: "Noto Sans";
      font-size: 26px;
      font-style: normal;
      font-weight: 600;
      line-height: 36px;
      display: flex;
      align-items: center;
      gap: 20px;
      letter-spacing: -0.51px;
  }
  
  .faq-question .arrow {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
  }
  
  .faq-question .arrow img {
    width: 16px;
    height: 16px;
    display: block;
  }
  
  /* 열렸을 때 화살표 180도 회전 */
  .faq-question.active .arrow {
    transform: translateY(-50%) rotate(180deg);
  }
  
  .faq-answer {
      display: none;
      padding: 44px 70px;
      border-top: 1px solid #d9d9d9;
      color: #333;
      font-family: "Noto Sans";
      font-size: 18px;
      font-style: normal;
      font-weight: 500;
      line-height: 36px;
      letter-spacing: -0.5px;
  }
  
  .faq-wrap .box-tag {
      display: flex;
      padding-bottom: 40px;
  }
  
  .faq-wrap .box-tag a {
      border-radius: 50px;
      background: #F5F5F5;
      display: flex;
      height: 67px;
      justify-content: center;
      align-items: center;
      color: #666;
      font-family: "Noto Sans";
      font-size: 20px;
      font-style: normal;
      font-weight: 500;
      line-height: normal;
      letter-spacing: -0.5px;
      margin-right: 12px;
      padding:20px 32px;
      box-sizing: border-box;
      min-width: 100px;
      transition: all 0.25s ease; /* ★ 추가 */
  }
  
  .faq-wrap .box-tag a.on {
      border-radius: 50px;
      background: #3FC3E0;
      color: #FFF;
      font-family: "Noto Sans";
      font-size: 20px;
      font-style: normal;
      font-weight: 600;
      line-height: normal;
      letter-spacing: -0.5px;
  }

  .faq-wrap .box-tag a:hover {
    background: #3FC3E0;   /* 포인트 컬러 */
    color: #fff;
}

  @media screen and (max-width:1440px) { 
    .faq-wrap {
        max-width: initial;
        margin: 0 auto;
        padding: 150px 30px;
        box-sizing: border-box;
    }

    .faq-question {
        width: 100%;
        padding: 36px 50px;
        font-size: 16px;
        font-weight: 600;
        text-align: left;
        background: none;
        border: none;
        cursor: pointer;
        position: relative;
        color: #111;
        font-family: "Noto Sans";
        font-size: 22px;
        font-style: normal;
        font-weight: 600;
        line-height: 36px;
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .faq-answer {
        display: none;
        padding: 34px 70px;
        border-top: 1px solid #d9d9d9;
        color: #333;
        font-family: "Noto Sans";
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 36px;
        letter-spacing: -0.5px;
    }

    .faq-wrap .box-tag a {
        border-radius: 50px;
        background: #F5F5F5;
        display: flex;
        height: 60px;
        justify-content: center;
        align-items: center;
        color: #666;
        font-family: "Noto Sans";
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: -0.5px;
        margin-right: 12px;
        padding:20px 32px;
        box-sizing: border-box;
        min-width: 100px;
    }
    
    .faq-wrap .box-tag a.on {
        border-radius: 50px;
        background: #3FC3E0;
        color: #FFF;
        font-family: "Noto Sans";
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        letter-spacing: -0.5px;
    }

  
  }