/* ============================================================================================================================== */
/* ======================================================= custom common 코드 ==================================================== */
/* ============================================================================================================================== */

#wrapper {
    overflow: hidden;
}
.community-menu {
    display: none;
}
.community-menu.login {
    display: block;
}

.zoom-wrap {
    overflow: hidden;
    position: relative;
}
.zoom {
    transform: scale(1.12);
    transition: transform 0.8s ease-in-out;
    width: 100%;
}
.zoom.active {
    transform: scale(1);
    transition: transform 2.4s ease-in-out;
}
.talk_banner_div {
    position: absolute;
    z-index: -1;
}

.bg-animation {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.progress-ring-circle {
    transition: 2.4s stroke-dashoffset;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}

.pc-layout {
    display: block;
}
.mobile-layout {
    display: none;
}

header .numberImp {
    display: flex;
    align-items: center;
    margin-left: 20px;
}
header .numberImp p {
    color: #fff;
    line-height: 1.3;
    width: 150px;
}

.fade {
    opacity: 1;
    transition: opacity 0.5s;
}
.fade.out {
    opacity: 0.6;
    transition: opacity 3s; /* 페이드 효과 시간 조정 */
}

.btn-hover {
    position: relative;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
}
.btn-hover::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    transition: all 0.5s ease-in-out;
    z-index: -1;
}
.btn-hover:hover::before {
    width: 100%;
}

.sub-common > ul {
    display: flex;
}
.sub-common .left {
    width: 30%;
}
.sub-common .left div {
    cursor: pointer;
}
.sub-common .left div h6 {
    padding: 25px 10px;
    color: #9b9b9b;
    text-align: center;
    transition: 0.5s ease-in-out;
    font-weight: 500;
    font-family: 'NanumSquare', san-serif;
    border: 1px solid #ccc;
}
.sub-common .left div.on h6 {
    color: #fff;
    background: #222222;
    font-weight: 900;
    border: 1px solid #222222;
}
.sub-common .left div:not(:first-child) h6 {
    border-top: 0;
}

.sub-common .right {
    width: 70%;
}
.sub-common .right article {
    position: relative;
    width: 100%;
    height: 100%;
}
.sub-common .right .img {
    width: 100%;
    height: 100%;
    background: url(../img/custom/sub_common_bg1.jpg) center/cover no-repeat;
    transition: background 0.4s ease-in-out;
}
.sub-common .right .img.case2 {
    background: url(../img/custom/sub_common_bg2.jpg) center/cover no-repeat;
}
.sub-common .right .img.case3 {
    background: url(../img/custom/sub_common_bg3.jpg) center/cover no-repeat;
}
.sub-common .right .img.case4 {
    background: url(../img/custom/sub_common_bg4.jpg) center/cover no-repeat;
}
.sub-common .right .img.case5 {
    background: url(../img/custom/sub_common_bg5.jpg) center/cover no-repeat;
}
.sub-common .right .img.case6 {
    background: url(../img/custom/sub_common_bg6.jpg) center/cover no-repeat;
}

.sub-common .right .txt {
    position: absolute;
    display: flex;
    left: 200px;
    top: -40px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, top 0.5s ease-in-out;
    z-index: -1;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    width: 100%;
    height: 100%;
}
.sub-common .right .txt.on {
    top: 0;
    opacity: 1;
    z-index: 1;
}
.sub-common .right .txt .tit {
    font-family: 'NanumSquare', san-serif;
    font-weight: 900;
    white-space: pre-line;
    line-height: 1.4;
}
.sub-common .right .txt .sub {
    margin-top: 30px;
    white-space: pre-line;
    line-height: 1.5;
}

.bd-tit {
    padding: 15px 10px;
    text-align: center;
    margin-top: 40px;
    color: #fff;
    background: #d8ab72;
    font-weight: 900;
    font-family: 'NanumSquare', san-serif;
}

ul.flex .date {
    position: absolute;
    left: 0;
    top: 0;
    padding: 2px 10px;
    color: #fff;
    font-weight: 900;
    background: #6e6e6e;
}

/*================================================================ 1500px 이하 ================================================================= */
@media screen and (max-width: 1500px) {
    .sub-common .left div h6 {
        padding: 20px 10px;
    }
    .sub-common .right .txt {
        left: 100px;
    }
}

/*================================================================ 1200px 이하 ================================================================= */
@media screen and (max-width: 1200px) {
    header .numberImp {
        display: none;
    }

    .sub-common .left div h6 {
        font-size: 20px;
    }
    .sub-common .right .txt {
        left: 60px;
    }
}

/*================================================================ 1025px 이하 ================================================================= */
@media screen and (max-width: 1025px) {
}

/*================================================================ 900px 이하 ================================================================= */
@media screen and (max-width: 900px) {
    .sub-common > ul {
        flex-wrap: wrap;
    }
    .sub-common .left {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }
    .sub-common .left div {
        width: 33.3%;
    }
    .sub-common .left div:not(:first-child) h6 {
        border-top: 1px solid #ccc;
    }
    .sub-common .left div:nth-child(n + 4):nth-child(-n + 6) h6 {
        border-top: 0;
    }
    .sub-common .right {
        width: 100%;
    }
    .sub-common .right .img {
        height: 500px;
    }
}

/*================================================================ 769px 이하 ================================================================= */
@media screen and (max-width: 769px) {
    .sub-common .left div h6 {
        font-size: 17px;
        padding: 12px 10px;
    }
    .sub-common .right .img {
        height: 400px;
    }
    .sub-common .right .txt {
        left: 40px;
    }
}

/*================================================================ 600px 이하 ================================================================= */
@media screen and (max-width: 600px) {
    .sub-common .left div {
        width: 50%;
    }
    .sub-common .left div:nth-child(n + 3):nth-child(-n + 6) h6 {
        border-top: 0;
    }

    .bd-tit {
        margin-top: 20px;
    }
}

/*================================================================ 425px 이하 ================================================================= */
@media screen and (max-width: 480px) {
    .pc-layout {
        display: none !important;
    }
    .mobile-layout {
        display: block !important;
    }

    .sub-common .left div h6 {
        font-size: 14px;
    }
    .sub-common .right .img.case1 {
        background-position-x: -420px;
    }
    .sub-common .right .txt {
        left: 20px;
    }
    .sub-common .right .txt .sub {
        margin-top: 20px;
    }
}

/* ============================================================================================================================== */
/* ======================================================= custom common 코드 ==================================================== */
/* ============================================================================================================================== */

/* ============================================================================================================================ */
/* ======================================================= sub1 custom 코드 ==================================================== */
/* ============================================================================================================================ */

.about01bg.banner-bg {
    background: url(../img/custom/about1_bg.jpg) center/cover no-repeat;
}
.about02bg.banner-bg {
    background: url(../img/custom/about2_bg.jpg) center/cover no-repeat;
}
.about03bg.banner-bg {
    background: url(../img/custom/about3_bg.jpg) center/cover no-repeat;
}
.about04bg.banner-bg {
    background: url(../img/custom/about4_bg.jpg) center/cover no-repeat;
}
.about05bg.banner-bg {
    background: url(../img/custom/about5_bg.jpg) center/cover no-repeat;
}
.about06bg.banner-bg {
    background: url(../img/custom/about6_bg.jpg) center/cover no-repeat;
}

.about2-area1 article {
    padding: 40px 20px;
    border-radius: 20px;
    background: #f3f3f3;
}
.about2-area1 article .middle-title {
    margin-top: 30px;
}
.about2-area2 > .inner > ul {
    display: flex;
    align-items: center;
}
.about2-area2 .img {
    margin-right: 60px;
}
.about2-area2 .txt .sub-tit {
    font-size: 24px;
    font-weight: 900;
    color: #222222;
}
.about2-area2 .txt .tit {
    line-height: 1;
}
.about2-area2 .txt .profile {
    margin-top: 50px;
}
.about2-area2 .txt .mo {
    display: none;
}
.about2-area2 .txt .profile li {
    position: relative;
    padding-left: 30px;
    line-height: 2;
}
.about2-area2 .txt .profile li::before {
    position: absolute;
    content: '';
    top: 15px;
    left: 10px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #333;
}

.thesis-slide {
    padding: 80px 0 !important;
    background: #f4f5f9;
    overflow: hidden;
}
.thesis-slide .inner {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}
.thesis-slide .slider {
    width: 100%;
    overflow: hidden;
}
.thesis-slide ul {
    display: flex;
    margin: 0;
    padding: 0;
}
.thesis-slide ul > li {
    flex: 0 0 auto;
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.about5-area1 {
    padding: 160px 0 !important;
    color: #fff;
}
.about5-area1 .bg-animation {
    background: url(../img/custom/about5_bg1.jpg) center/cover no-repeat;
}
.about5-area1 h3 {
    font-weight: 300;
    margin-top: 30px;
    font-size: 56px;
}
.about5-area1 h3 br {
    display: none;
}
.about5-area2 .left {
    display: flex;
    justify-content: center;
    align-items: center;
}
.about5-area2 .left img {
    margin-right: 20px;
}
.about5-area2 .left h4 {
    font-weight: 700;
}
.about5-area2 .time {
    margin-top: 25px;
}
.about5-area2 .time > li:not(:first-child) {
    margin-top: 10px;
}
.about5-area2 .time > li > ul {
    display: flex; /* align-items:center; */
    display: inline-flex;
    margin-bottom: 3px;
    text-align: left;
}
.about5-area2 .time > li > ul > li:first-child {
    margin-right: 40px;
    width: 105px;
    text-align-last: justify;
    text-align: center;
    position: relative;
}
.about5-area2 .time > li > ul > li:first-child p {
    font-weight: 900;
}
.about5-area2 .time > li p {
    font-size: 22px;
}
.about5-area2 .notice {
    margin-top: 20px;
}
.about5-area2 .notice p {
    color: #7c7b7b;
    font-weight: 600;
}
.about5-area2 .call {
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.about5-area2 .call img {
    margin-right: 20px;
}
.about5-area2 .call h4 {
    font-weight: 900;
}
.about5-area3 ul.flex {
    margin-top: 40px;
}
.about5-area3 ul.flex a {
    display: flex;
    align-items: center;
    justify-content: center;
}
.about5-area3 ul.flex .img {
    margin-right: 15px;
}
.about5-area3 ul.flex .txt p {
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid #ccc;
    font-weight: 600;
}
.about5-area3 ul.flex .txt h6 {
    font-weight: 900;
    font-family: 'NanumSquare', san-serif;
    color: #454545;
}

.about6-area1 {
    background: #edf7f8 !important;
}
.about6-area1 .map-wrap .root_daum_roughmap {
    width: 100%;
}
.about6-area1 .map-wrap .root_daum_roughmap .wrap_controllers {
    display: none;
}
.about6-area1 .map-info {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    width: 100%;
    border-top: 1px solid #333;
}
.about6-area1 .map-info > li {
    display: flex;
    align-items: center;
    padding: 30px;
    border-bottom: 1px solid #c5c7cc;
}
.about6-area1 .map-info > li .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #222222;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
}
.about6-area1 .map-info > li .text {
    margin-left: 30px;
}
.about6-area1 .map-info > li .text h6 {
    margin-bottom: 5px;
    font-family: 'NanumSquare', san-serif;
    font-weight: 900;
}
.about6-area2 .list {
    display: flex;
    justify-content: center;
}
.about6-area2 .list > li:nth-child(2) > a {
    margin: 0 20px;
}
.about6-area2 .list > li > a {
    display: inline-block;
    border-radius: 40px;
    background: #222222;
    color: #fff;
}
.about6-area2 .list .item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 30px;
    height: 70px;
}
.about6-area2 .list .item .img {
    margin-right: 10px;
}
.about6-area2 .list .item h6 {
    font-weight: 700;
    font-family: 'NanumSquare', san-serif;
}

.network.bg-gray {
    /* padding: 0; */
    color: #fff;
}
.network .bg-animation {
    background: url(../img/custom/network_bg.jpg) center/cover no-repeat;
}
.network .inner {
    max-width: 1600px;
    margin: 0 auto;
}
.network .wrap > li:first-child {
    display: flex;
    justify-content: flex-end;
}
.network .left {
    max-width: 550px;
    width: 100%;
    margin-right: 30px;
}
.network .left .tit {
    margin-bottom: 20px;
}
.network .left .box {
    position: relative;
    padding: 18px 15px 10px 15px;
    margin: 5px;
    border: 1px solid #222222;
    transition: background 0.3s ease-in-out;
}
.network .left .box.active {
    background: rgba(255, 255, 255, 0.2);
}
.network .left .box .logo {
    max-width: 115px;
    text-align: center;
}
.network .left .box .logo img {
    max-width: 45px;
}
.network .left .box .logo p {
    margin-top: 10px;
    color: #222222;
    white-space: pre-line;
    line-height: 1.3;
    font-size: 15px;
}
.network .left .box .info {
    position: absolute;
    right: 15px;
    top: 10px;
    text-align: right;
}
.network .left .box .info p {
    color: #222222;
}
.network .left .box .info a {
    display: inline-block;
    margin-top: 5px;
    padding: 0 18px;
    border-radius: 25px;
    color: #fff;
    background: #222222;
}
.network .left .box.on {
    background: #222222;
}
.network .left .box.on.active {
    background: #0789a5;
    border: 1px solid #0789a5;
}
.network .left .box.on .logo img {
    filter: brightness(0) invert(1);
}
.network .left .box.on .logo p {
    color: #fff;
}
.network .left .box.on .info p {
    color: #fff;
}
.network .left .box.on .info a {
    background: #fff;
    color: #222222;
    font-weight: 700;
}

/*================================================================ 1500px 이하 ================================================================= */
@media screen and (max-width: 1500px) {
    .thesis-slide ul > li {
        width: 25%;
    }

    .network .left .tit {
        margin-bottom: 10px;
    }
    .network .left .box .logo img {
        max-width: 40px;
    }
    .network .left .box .logo p {
        font-size: 15px;
    }
    .network .left .box .info p span {
        font-size: 1em;
    }
}

/*================================================================ 1200px 이하 ================================================================= */
@media screen and (max-width: 1200px) {
    .about2-area2 .img {
        margin-right: 30px;
        max-width: 550px;
    }

    .about5-area1 h3 {
        margin-top: 20px;
        font-size: 46px;
    }
    .about5-area3 ul.flex {
        margin-top: 0;
    }
    .about5-area3 ul.flex > li:not(:first-child) {
        margin-top: 40px;
    }

    .about6-area1 .map-wrap .root_daum_roughmap .wrap_map {
        height: 350px !important;
    }

    .network.bg-gray {
        padding: 80px 0 0;
    }
    .network .wrap {
        flex-direction: column;
    }
    .network .wrap > li {
        width: 100%;
    }
    .network .wrap > li:first-child {
        justify-content: center;
    }
    .network .left {
        max-width: 700px;
        margin: 0 0 40px 0;
    }
    .network .left .tit {
        margin-bottom: 20px;
    }
    .network .left .box .info p span {
        font-size: 1.2em;
    }
    .network .right img {
        margin: 0 auto;
    }
}

/*================================================================ 1025px 이하 ================================================================= */
@media screen and (max-width: 1025px) {
    .about1-area3 ul.flex img {
        position: static;
    }

    .about2-area2 > .inner > ul {
        flex-direction: column;
        align-items: normal;
    }
    .about2-area2 > .inner > ul > li:first-child {
        background: #f3f3f3;
    }
    .about2-area2 .img {
        max-width: 400px;
        margin: 0 auto;
    }
    .about2-area2 .txt {
        max-width: 800px;
        margin: 0 auto;
        width: 100%;
    }
    .about2-area2 .txt .sub-tit {
        text-align: center;
        margin-top: 20px;
    }
    .about2-area2 .txt .tit {
        text-align: center;
    }
    .about2-area2 .txt .profile {
        display: flex;
        flex-direction: column;
        width: 50%;
        margin-top: 40px;
    }
    .about2-area2 .txt .profile li {
        line-height: 2.5;
    }
    .about2-area2 .txt .profile li::before {
        top: 17px;
    }
    .about2-area2 .txt .profile.pc {
        display: none;
    }
    .about2-area2 .txt .mo {
        display: flex;
    }

    .thesis-slide {
        margin-top: 40px !important;
        padding: 60px 0 !important;
    }
}

/*================================================================ 900px 이하 ================================================================= */
@media screen and (max-width: 900px) {
    .about1-area3 ul.flex img {
        max-width: 300px;
    }

    .thesis-slide ul > li {
        width: 33.3%;
    }

    .about5-area1 h3 {
        line-height: 1.2;
        margin-top: 30px;
    }
    .about5-area1 h3 br {
        display: block;
    }

    .about6-area2 .list {
        flex-direction: column;
        align-items: center;
    }
    .about6-area2 .list > li {
        max-width: 350px;
        width: 100%;
    }
    .about6-area2 .list > li > a {
        width: 100%;
    }
    .about6-area2 .list > li:nth-child(2) > a {
        margin: 15px 0;
    }
    .about6-area2 .list .item {
        justify-content: flex-start;
    }
    .about6-area2 .list .item .img {
        width: 60px;
        text-align: center;
    }
}

/*================================================================ 769px 이하 ================================================================= */
@media screen and (max-width: 769px) {
    .about1-area3 ul.flex > li:first-child > div {
        max-width: 500px;
        margin: 0 auto;
    }
    .about1-area3 ul.flex > li:last-child {
        position: absolute;
        left: 0;
        bottom: 0;
        width: auto;
        opacity: 0.1;
    }

    .about2-area1 article img {
        max-width: 250px;
    }
    .about2-area2 > .inner > ul > li:last-child {
        display: flex;
        justify-content: center;
    }

    .about5-area1 {
        padding: 120px 0 !important;
    }
    .about5-area2 .right {
        max-width: 410px;
        margin: 10px auto !important;
    }
    .about5-area2 .notice {
        text-align: center;
    }
    .about5-area2 .call {
        justify-content: center;
    }

    .about6-area1 .map-wrap .root_daum_roughmap .wrap_map {
        height: 300px !important;
    }
}

/*================================================================ 600px 이하 ================================================================= */
@media screen and (max-width: 600px) {
    .about1-area3 {
        padding: 60px 0 !important;
    }

    .thesis-slide ul > li {
        width: 50%;
    }

    .about5-area1 {
        padding: 80px 0 !important;
    }

    .network .left .box {
        padding: 18px 10px 10px 0;
    }
    .network .left .box .info p span {
        font-size: 1em;
    }
    .network .left .box .info a {
        font-size: 13px;
        padding: 0 12px;
    }
}

/*================================================================ 425px 이하 ================================================================= */
@media screen and (max-width: 480px) {
    .about1-area3 ul.flex > li:first-child > div {
        max-width: 290px;
    }
    .about1-area3 article:not(:first-child) {
        margin-top: 30px;
    }
    .about1-area4 ul.flex h5 {
        padding: 4px 10px;
    }

    .about2-area1 article img {
        max-width: 200px;
    }
    .about2-area2 .txt .sub-tit {
        font-size: 20px;
    }
    .about2-area2 .txt .profile {
        width: 100%;
        margin: 0 auto;
        max-width: 340px;
    }
    .about2-area2 .txt .profile li {
        line-height: 2.2;
    }
    .about2-area2 .txt .profile li::before {
        top: 12px;
    }
    .about2-area2 .txt .mo {
        flex-direction: column;
    }
    .about2-area2 .txt .mo .profile:first-child {
        margin-top: 30px;
    }

    .thesis-slide ul > li {
        width: 75%;
    }


    .about5-area1 {
        padding: 30px 0 !important;
    }
    .about5-area1 .bg-animation {
        background: url(../img/custom/about5_bg1m.jpg) center/cover no-repeat;
    }
    .about5-area1 ul.flex > li:last-child {
        height: 230px;
    }
    .about5-area1 h3 {
        font-size: 33px;
        margin-top: 20px;
    }
    .about5-area1 p span {
        font-size: 1.1em;
    }
    .about5-area2 .left {
        flex-direction: column;
    }
    .about5-area2 .left img {
        margin: 0 0 5px;
        max-width: 60px;
        border: 1px solid #ccc;
        border-radius: 50%;
    }
    .about5-area2 .right {
        max-width: 320px;
    }
    .about5-area2 .time > li > ul > li:first-child {
        margin-right: 20px;
        width: 85px;
    }
    .about5-area2 .time > li p {
        font-size: 18px;
    }
    .about5-area2 .call img {
        max-width: 30px;
        margin-right: 10px;
    }
    .about5-area3 ul.flex > li:not(:first-child) {
        margin-top: 15px;
    }
    .about5-area3 ul.flex .img {
        margin-right: 10px;
        max-width: 70px;
    }
    .about5-area3 ul.flex .txt p {
        padding-bottom: 0;
    }

    .about6-area1 .map-wrap .root_daum_roughmap .wrap_map {
        height: 250px !important;
    }
    .about6-area1 .map-info {
        margin-top: 20px;
    }
    .about6-area1 .map-info > li {
        padding: 20px 5px;
    }
    .about6-area1 .map-info > li .icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .about6-area1 .map-info > li .text {
        margin-left: 15px;
    }
    .about6-area2 .list > li {
        max-width: 290px;
    }
    .about6-area2 .list .item {
        height: 60px;
    }
    .about6-area2 .list .item .img {
        width: 50px;
    }
    .about6-area2 .list .item .img img {
        max-width: 35px;
    }

    .network.bg-gray {
        padding: 60px 0;
    }
    .network .left {
        margin: 0;
    }
    .network .left .box {
        margin: 5px;
    }
    .network .left .box .logo {
        max-width: 85px;
    }
    .network .left .box .logo img {
        max-width: 25px;
    }
    .network .left .box .logo p {
        font-size: 12px;
    }
    .network .left .box .info {
        right: 8px;
        top: 15px;
    }
    .network .left .box .info p {
        line-height: 1;
    }
    .network .left .box .info a {
        font-size: 12px;
    }
    .network .right {
        display: none;
    }
}

/* ============================================================================================================================ */
/* ======================================================= sub1 custom 코드 ==================================================== */
/* ============================================================================================================================ */

/* ============================================================================================================================ */
/* ======================================================= sub2 custom 코드 ==================================================== */
/* ============================================================================================================================ */

.special01bg.banner-bg {
    background: url(../img/custom/special01_bg.jpg) center/cover no-repeat;
}
.special02bg.banner-bg {
    background: url(../img/custom/special02_bg.jpg) center/cover no-repeat;
}
.special03bg.banner-bg {
    background: url(../img/custom/special03_bg.jpg) center/cover no-repeat;
}
.special04bg.banner-bg {
    background: url(../img/custom/special04_bg.jpg) center/cover no-repeat;
}
.special05bg.banner-bg {
    background: url(../img/custom/special05_bg.jpg) center/cover no-repeat;
}

.sp1-tit h2 {
    font-weight: 900;
    color: #d8ab7252;
    font-size: 68px;
}
.sp1-tit h5 {
    font-weight: 900;
}
.sp1-area1 {
    color: #fff;
}
.sp1-area1 .bg-animation {
    background: url(../img/custom/special01_bg1.jpg) center/cover no-repeat;
}
.sp1-area1 .middle-title {
    text-align: left;
    margin-bottom: 0;
}
.sp1-area1 .middle-title h3 {
    font-weight: 900;
}
.sp1-area2.bg-gray {
    background: #222222;
    padding: 40px 0;
    color: #fff;
}
.sp1-area3 ul.flex {
    align-items: flex-end;
}
.sp1-area4 ul.flex img {
    width: 100%;
}
.sp1-area4 ul.flex h6 {
    padding: 15px 5px;
    color: #333;
    background: #ededed;
    font-weight: 700;
    font-family: 'NanumSquare', san-serif;
}
.sp1-area5 .bg-img {
    position: absolute;
    left: 0;
    top: 0;
}
.sp1-area5 ul.flex:not(:nth-child(2)) {
    margin-top: 100px;
}
.sp1-area5 ul.flex .txt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.sp1-area5 ul.flex .txt > div {
    max-width: 270px;
    width: 100%;
}
.sp1-area5 ul.flex h6 {
    font-weight: 600;
    font-family: 'NanumSquare', san-serif;
}
.sp1-area5 ul.flex h4 {
    font-weight: 700;
    line-height: 1.1;
    white-space: pre-line;
}
.sp1-area5 ul.flex p {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    margin-top: 15px;
    font-weight: 900;
}

.sp2-tit .tit {
    font-weight: 700;
    padding: 8px 10px;
    width: 300px;
    margin: 0 auto 40px;
    background: #fff;
    /* border: 1px solid #ccc; */
    border-radius: 40px;
}
.sp2-area1 .tac {
    position: relative;
}
.sp2-area2{
    overflow: hidden;
}
.sp2-area2 table {
    width: 100%;
}
.sp2-area2 table td {
    padding: 20px 10px;
    border: 1px solid #ccc;
    background: #fff;
    text-align: center;
    vertical-align: middle;
}
.sp2-area2 table thead td {
    padding: 15px 10px;
}
.sp2-area2 table thead td:first-child {
    background: #d8ab72;
    color: #fff;
}
.sp2-area2 table thead td:last-child {
    background: #7c7c7c;
    color: #fff;
}
.sp2-area2 table td:first-child p {
    font-weight: 900;
}
.sp2-area3 .bg-animation {
    background: url(../img/custom/special02_bg1.jpg) center/cover no-repeat;
}
.sp2-area3 .sp2-tit .tit {
    color: #fff;
    margin: 0 auto 20px;
    background-color: #d8ab72;
}
.sp2-area3 ul.flex {
    max-width: 500px;
    margin: 0 auto;
}
.sp2-area3 ul.flex > li {
    background: #fff;
}
.sp2-area3 ul.flex > li:not(:first-child) {
    margin-top: 10px;
}
.sp2-area3 ul.flex p {
    padding: 10px;
    font-weight: 900;
    text-align: center;
}
.sp2-area4 ul.flex > li > div {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background: #f2f2f2;
    height: 360px;
}
.sp2-area4 ul.flex .img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    margin-bottom: 20px;
}
.sp2-area4 ul.flex .txt p {
    line-height: 1.5;
}
.sp2-area4 ul.flex > li:nth-child(3) .img {
    position: relative;
    left: 20px;
}

.sp3-area1.bg-gray {
    padding: 80px 0;
    color: #fff;
}
.sp3-area1 .bg-animation {
    background: url(../img/custom/special03_bg1.jpg) center/cover no-repeat;
}
.sp3-area1 .middle-title h2 {
    font-weight: 300;
}
.sp3-area1 ul.flex {
    max-width: 600px;
    margin: 0 auto;
}
.sp3-area1 ul.flex > li:first-child > div {
    margin-right: 40px;
}
.sp3-area1 ul.flex > li:last-child > div {
    margin-left: 40px;
}
.sp3-area1 ul.flex article {
    position: relative;
}
.sp3-area1 ul.flex h4 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    line-height: 1;
    font-weight: 400;
    font-family: 'NanumSquare', san-serif;
}
.sp3-area1 ul.flex h4 span {
    font-size: 1.5em;
}
.sp3-area2 ul.flex .num::before {
    margin: 20px auto 10px;
}
.sp3-area2 ul.flex .sub {
    line-height: 1.5;
    font-weight: 900;
}
.sp3-area2 ul.flex .sub span {
    color: #139da8;
}
.sp3-area3.bg-gray {
    padding: 40px 0;
    background: #b8e1e5;
}
.sp3-area3 ul.flex img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.sp3-area4 ul.flex p span {
    display: inline-block;
    margin-top: 15px;
}
.sp3-area5.bg-gray {
    background: #fff;
    padding: 0;
}
.sp3-area5 .bg-img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: calc(100% - 60px);
    background: url(../img/custom/special03_bg2.jpg) center/cover no-repeat;
}
.sp3-area5 .middle-title {
    text-align: left;
    margin: 40px 0 0;
}

.sp4-area1 ul.flex {
    max-width: 1200px;
    margin: 0 auto;
}
.sp4-area1 ul.flex > li:nth-child(n + 4):nth-child(-n + 15) {
    margin-top: 30px;
}
.sp4-area1 ul.flex img {
    width: 100%;
}
.sp4-area1 ul.flex .tit {
    margin: 20px 0 10px;
    color: #d8ab72;
    font-weight: 900;
    font-family: 'NanumSquare', san-serif;
}
.sp4-area1 ul.flex .sub {
    line-height: 1.6;
}
.sp4-area2 .tit {
    position: absolute;
    left: 0;
    bottom: 20px;
    padding: 6px 35px 6px 20px;
    color: #fff;
    background: #222222;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    font-weight: 900;
    font-family: 'NanumSquare', san-serif;
}

.sp5-area1 {
    color: #fff;
}
.sp5-area1 .bg-animation {
    background: url(../img/custom/special05_bg1.jpg) center/cover no-repeat;
}
.sp5-area2 .list {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
}
.sp5-area2 .list > li:first-child {
    margin-right: 40px;
}
.sp5-area2 .list h5 {
    font-weight: 900;
    font-family: 'NanumSquare', san-serif;
    white-space: nowrap;
}
.sp5-area2 .list .tit {
    font-weight: 900;
    font-size: 20px;
}
.sp5-area2 .list ul > li {
    position: relative;
    margin-top: 10px;
    padding-left: 20px;
}
.sp5-area2 .list ul > li::before {
    position: absolute;
    content: attr(data-num);
    left: 0;
    top: 0;
    font-size: 18px;
    font-weight: 600;
    font-family: 'NanumSquare', san-serif;
}
.sp5-area3 ul.flex {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: #fff;
    color: #000;
}
.sp5-area3 ul.flex:not(:first-child) {
    margin-top: 40px;
}
.sp5-area3 ul.flex > li:last-child > div {
    display: flex;
    align-items: center;
    justify-content: center;
}
.sp5-area3 ul.flex .txt {
    width: 300px;
}
.sp5-area3 ul.flex .txt p {
    font-size: 20px;
}
.sp5-area3 ul.flex .txt h6 {
    color: #d8ab72;
    font-weight: 900;
    font-family: 'NanumSquare', san-serif;
}
.sp5-area3 .notice {
    color: #fff;
}
.sp5-area3 .notice ul {
    margin-top: 10px;
}
.sp5-area3 .notice ul li p {
    position: relative;
    padding-left: 20px;
}
.sp5-area3 .notice ul li p::before {
    position: absolute;
    content: attr(data-num);
    left: 0;
    top: 0;
    font-size: 1em;
}

/*================================================================ 1500px 이하 ================================================================= */
@media screen and (max-width: 1500px) {
}

/*================================================================ 1200px 이하 ================================================================= */
@media screen and (max-width: 1200px) {
}

/*================================================================ 1025px 이하 ================================================================= */
@media screen and (max-width: 1025px) {
    .sp2-area1 .tac::before {
        left: 0;
        bottom: -40px;
        width: 160px;
        height: 232px;
    }

    .sp5-area2 .list ul > li::before {
        font-size: 16px;
    }
}

/*================================================================ 900px 이하 ================================================================= */
@media screen and (max-width: 900px) {
    .sp4-area2 ul.flex > li {
        width: 50%;
    }
}

/*================================================================ 769px 이하 ================================================================= */
@media screen and (max-width: 769px) {
    .sp1-tit h2 {
        font-size: 60px;
    }
    .sp1-area1 .inner {
        padding: 0 20px;
    }
    .sp1-area3 ul.flex {
        flex-direction: column-reverse;
        max-width: 500px;
        margin: 0 auto;
    }
    .sp1-area4 .inner,
    .sp1-area5 .inner {
        max-width: 500px;
        margin: 0 auto;
    }
    .sp1-area5 {
        margin-bottom: 80px;
    }
    .sp1-area5 .bg-img {
        left: -100px;
    }
    .sp1-area5 ul.flex > li:first-child {
        width: 100%;
    }
    .sp1-area5 ul.flex > li:not(:first-child) {
        width: 50%;
    }
    .sp1-area5 ul.flex .txt > div {
        margin-bottom: 20px;
        max-width: 100%;
        text-align: center;
    }

    .sp2-area1 .tac {
        margin-top: 20px;
    }
    .sp2-area1 .tac::before {
        opacity: 0.3;
        bottom: 0;
    }
    .sp2-area4 ul.flex > li > div {
        padding: 30px 10px;
        height: 310px;
    }
    .sp2-area4 ul.flex .img {
        align-items: flex-end;
    }

    .sp3-area1 ul.flex > li > div {
        margin: 0 !important;
    }
    .sp3-area1 .progress-ring {
        width: 220px;
        height: 220px;
    }
    .sp3-area3.bg-gray {
        margin-top: 0;
    }
    .sp3-area3 ul.flex {
        flex-direction: column-reverse;
        max-width: 500px;
        margin: 0 auto;
    }
    .sp3-area3 ul.flex img {
        position: static;
        transform: none;
    }
    .sp3-area4.mt40 {
        margin-top: 0 !important;
    }
    .sp3-area4 ul.flex {
        max-width: 500px;
        margin: 0 auto;
    }
    .sp3-area5 .bg-img {
        height: 100%;
    }
    .sp3-area5 ul.flex > li > div {
        text-align: center;
    }
    .sp3-area5 ul.flex .middle-title {
        margin: 60px auto 30px;
        text-align: center;
    }
    .sp3-area5 ul.flex img {
        max-width: 250px;
    }

    .sp4-area1 ul.flex > li > div {
        margin: 5px;
    }

    .sp5-area2 .list ul > li::before {
        font-size: 15px;
    }
    .sp5-area2 .list .tit {
        font-size: 18px;
    }
    .sp5-area3 ul.flex > li:first-child > div {
        padding: 50px 0;
    }
    .sp5-area3 ul.flex .txt p {
        font-size: 18px;
    }
}

/*================================================================ 600px 이하 ================================================================= */
@media screen and (max-width: 600px) {
    .sp2-tit .tit {
        margin: 0 auto 30px;
    }

    .sp3-area1 .bg-animation {
        background-position-x: -450px;
    }

    .sp4-area1 ul.flex > li {
        width: 50%;
    }
    .sp4-area1 ul.flex > li:nth-child(n + 3):nth-child(-n + 15) {
        margin-top: 30px;
    }
    .sp4-area2 ul.flex {
        max-width: 400px;
        margin: 0 auto;
    }
    .sp4-area2 ul.flex > li {
        width: 100%;
    }

    .sp5-area3 ul.flex:not(:first-child) {
        margin-top: 20px;
    }
}

/*================================================================ 425px 이하 ================================================================= */
@media screen and (max-width: 480px) {
    .sp1-tit h2 {
        font-size: 50px;
    }
    .sp1-area1 {
        padding: 30px 0 !important;
    }
    .sp1-area1 .bg-animation {
        background: url(../img/custom/special01_bg1m.jpg) center/cover no-repeat;
    }
    .sp1-area1 ul.flex > li:last-child {
        height: 285px;
    }
    .sp1-area2.bg-gray {
        padding: 30px 0;
    }
    .sp1-area4 ul.flex h6 {
        padding: 10px 5px;
        font-size: 17px;
    }
    .sp1-area5 .bg-img {
        max-width: 180px;
        left: -35px;
    }
    .sp1-area5 ul.flex:not(:nth-child(2)) {
        margin-top: 80px;
    }
    .sp1-area5 ul.flex p {
        line-height: 1.4;
    }
    .sp1-area5 ul.flex p span {
        font-size: 1.1em;
    }

    .sp2-tit .tit {
        margin: 0 auto 20px;
        width: 220px;
    }
    .sp2-area1 .tac::before {
        width: 100px;
        height: 145px;
    }
    .sp2-area2 colgroup col {
        width: 37.5%;
    }
    .sp2-area2 colgroup col:nth-child(2) {
        width: 25%;
    }
    .sp2-area4 ul.flex > li > div {
        height: 230px;
        margin: 2px;
    }
    .sp2-area4 ul.flex .img {
        margin-bottom: 15px;
    }
    .sp2-area4 ul.flex .img img {
        max-width: 50%;
    }
    .sp2-area4 ul.flex > li:nth-child(3) .img {
        left: 12px;
    }
    .sp2-area4 ul.flex > li:nth-child(3) .img img {
        max-width: 60%;
    }

    .sp3-area1 .bg-animation {
        background-position-x: -350px;
    }
    .sp3-area1 .progress-ring {
        width: 150px;
        height: 150px;
    }

    .sp4-area1 ul.flex .tit {
        margin: 15px 0 8px;
    }
    .sp4-area2 .tit {
        bottom: 10px;
        padding: 4px 25px 4px 15px;
        font-size: 16px;
    }

    .sp5-area1.bg-gray {
        padding: 40px 0;
    }
    .sp5-area1 .bg-animation {
        background: url(../img/custom/special05_bg1m.jpg) center/cover no-repeat;
    }
    .sp5-area1 ul.flex > li:last-child {
        height: 285px;
    }
    .sp5-area1 ul.flex img {
        max-width: 220px;
    }
    .sp5-area2 .list {
        flex-direction: column;
    }
    .sp5-area2 .list > li:first-child {
        position: relative;
        padding-left: 15px;
        margin-bottom: 20px;
    }
    .sp5-area2 .list > li:first-child::before {
        position: absolute;
        content: '';
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #222222;
    }
    .sp5-area2 .list h5 {
        font-size: 24px;
    }
    .sp5-area2 .list .tit {
        font-size: 16px;
    }
    .sp5-area2 .list ul > li::before {
        font-size: 14px;
    }
    .sp5-area3 ul.flex > li:first-child > div {
        padding: 25px 0 0;
    }
    .sp5-area3 ul.flex .txt {
        padding-bottom: 25px;
        width: 100%;
        text-align: center;
    }
}

/*================================================================ 400px 이하 ================================================================= */
@media screen and (max-width: 400px) {
    .sp4-area1 ul.flex .tit {
        font-size: 15px;
    }
    .sp4-area1 ul.flex .sub {
        font-size: 12px;
    }
}

/* ============================================================================================================================ */
/* ======================================================= sub2 custom 코드 ==================================================== */
/* ============================================================================================================================ */

/* ============================================================================================================================ */
/* ======================================================= sub3 custom 코드 ==================================================== */
/* ============================================================================================================================ */

.imp01bg.banner-bg {
    background: url(../img/custom/imp01_bg.jpg) center/cover no-repeat;
}
.imp02bg.banner-bg {
    background: url(../img/custom/imp02_bg.jpg) center/cover no-repeat;
}
.imp03bg.banner-bg {
    background: url(../img/custom/imp03_bg.jpg) center/cover no-repeat;
}
.imp04bg.banner-bg {
    background: url(../img/custom/imp04_bg.jpg) center/cover no-repeat;
}
.imp05bg.banner-bg {
    background: url(../img/custom/imp05_bg.jpg) center/cover no-repeat;
}

.imp01-tit {
    padding: 25px 0;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.15) 5.95px 7.95px 7.6px, #d8ab72 -6px -6px 0;
}
.imp01-tit h6 {
    font-weight: 900;
}
.imp01-area1{
    padding-bottom: 120px;
}
.imp01-area1 ul.flex .txt {
    margin: 0 0 0 30px;
}
.imp01-area1 ul.flex .middle-title {
    text-align: left;
    margin-bottom: 0;
}
.imp01-area1 ul.flex:nth-child(2n) {
    flex-direction: row-reverse;
}
.imp01-area1 ul.flex:nth-child(2n) .txt {
    margin: 0 30px 0 0;
}
.imp01-area1 ul.flex:nth-child(2n) .middle-title {
    text-align: right;
}
.imp01-area2 article {
    position: relative;
    border: 1px solid #898888;
}
.imp01-area2 article:not(:first-child) {
    margin-top: 80px;
}
.imp01-area2 article::before {
    position: absolute;
    content: attr(data-num);
    left: 10px;
    top: 10px;
    font-weight: 900;
    color: #ecd7c0;
    font-size: 68px;
    line-height: 1;
    z-index: 1;
}
.imp01-area2 ul.flex {
    padding: 20px 10px;
    background: #d8ab72;
    color: #fff;
}
.imp01-area2 ul.flex h2 {
    display: none;
}
.imp01-area2 ul.flex .tit {
    font-family: 'NanumSquare', san-serif;
    font-weight: 800;
}
.imp01-area3{
    padding-bottom: 80px;
}
.imp01-area3 ul.flex .tit {
    padding: 20px 10px;
    background: #d8ab72;
}
.imp01-area3 ul.flex .tit h6 {
    white-space: pre-line;
    color: #fff;
    font-family: 'NanumSquare', san-serif;
    font-weight: 800;
}
.imp01-area3 ul.flex .sub {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    line-height: 1.9;
    border: 1px solid #d8ab72;
    background-color: #fff;
    color: #000;
    padding: 20px 5px;
}
.imp01-area4::before {
    position: absolute;
    content: '';
    left: 0;
    top: 700px;
    width: 435px;
    height: 540px;
    background: url(../img/custom/imp01_09.png) center/cover no-repeat;
}
.imp01-area4 .middle-title h5 {
    font-weight: 800;
}
.imp01-area4 .middle-title h5 span {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 40px;
    color: #fff;
    background: #333;
}
.imp01-area4 .custom ul.flex > li > div {
    border: 1px solid #b1b1b1;
    background: #fff;
}
.imp01-area4 .custom ul.flex .tit {
    padding: 18px 10px;
    background: #b1b1b1;
    font-family: 'NanumSquare', san-serif;
    font-weight: 800;
}
.imp01-area4 .custom ul.flex .list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 450px;
    margin: 30px auto;
    height: 150px;
}
.imp01-area4 .custom ul.flex .list > li:not(:first-child) {
    margin-top: 10px;
}
.imp01-area4 .custom ul.flex .list > li p {
    position: relative;
    text-align: left;
    padding-left: 20px;
    white-space: pre-line;
    color: #b1b1b1;
}
.imp01-area4 .custom ul.flex .list > li p::before {
    position: absolute;
    content: '';
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #b1b1b1;
}
.imp01-area4 .custom ul.flex > li:last-child > div {
    border: 1px solid #d8ab72;
}
.imp01-area4 .custom ul.flex > li:last-child .tit {
    background: #d8ab72;
    color: #fff;
}
.imp01-area4 .custom ul.flex > li:last-child .list > li p {
    padding-left: 30px;
    color: #d8ab72;
    font-size: 22px;
    font-weight: 900;
}
.imp01-area4 .custom ul.flex > li:last-child .list > li p::before {
    width: 22px;
    height: 18px;
    background: url(../img/custom/imp01_18.png) center/cover no-repeat;
}
.imp01-area4 .zirconia table {
    width: 100%;
}
.imp01-area4 .zirconia table td {
    padding: 20px 10px;
    border: 1px solid #b3b3b3;
    background: #fff;
    text-align: center;
    vertical-align: middle;
}
.imp01-area4 .zirconia table thead td {
    padding: 15px 10px;
}
.imp01-area4 .zirconia table thead td:first-child {
    background: #333;
    color: #fff;
}
.imp01-area4 .zirconia table thead td:last-child {
    background: #d8ab72;
    color: #fff;
    border-left: 2px solid #d8ab72;
    border-right: 2px solid #d8ab72;
}
.imp01-area4 .zirconia table tbody td:first-child {
    background: #d5d5d5;
}
.imp01-area4 .zirconia table tbody td:last-child {
    border-left: 2px solid #d8ab72;
    border-right: 2px solid #d8ab72;
}
.imp01-area4 .zirconia table tbody tr:last-child td:last-child {
    border-bottom: 2px solid #d8ab72;
}
.imp01-area4 .zirconia table td:last-child p {
    font-weight: 900;
}
.imp01-area4 .zirconia .middle-title {
    margin-top: 60px;
    padding: 50px 10px;
    background: #ebebeb;
}
.imp01-area5.bg-gray {
    background: #f2feff;
}
.imp01-area5 .guarantee {
    position: relative;
    max-width: 815px;
    margin: 0 auto;
}
.imp01-area5 .guarantee img {
    position: relative;
}
.imp01-area5 .guarantee::before {
    position: absolute;
    content: '';
    left: -110px;
    bottom: -65px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: #d8ab72;
}
.imp01-area5 .box {
    margin-top: 80px;
}
.imp01-area5 .box ul.flex > li > div {
    padding: 10px;
    background: #fff;
    border: 1px solid #dfdfdf;
}
.imp01-area5 .box ul.flex h6 {
    font-family: 'NanumSquare', san-serif;
    font-weight: 800;
}
.imp01-area5 .brand {
    margin-top: 80px;
    padding: 0 10px 20px 10px;
    border: 1px solid #dfdfdf;
    background: #fff;
}
.imp01-area5 .brand ul.flex .img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
}
.imp01-area5 .brand ul.flex h6 {
    font-family: 'NanumSquare', san-serif;
    font-weight: 800;
}
.imp01-area6 ul.flex .img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 130px;
}
.imp01-area7 {
    color: #fff;
}
.imp01-area7 .bg-animation {
    background: url(../img/custom/imp01_bg1.jpg) center/cover no-repeat;
}
.imp01-area7 ul.flex {
    margin-top: 80px;
}
.imp01-area7 .circle-box > div > div {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
    background: none;
    border: 1px solid #fff;
}
.imp01-area7 .circle-box b {
    display: inline-block;
    margin-top: 10px;
    line-height: 1.3;
}

.imp02-tit {
    position: relative;
    padding: 50px 10px;
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
    background: #fff;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}
.imp02-tit::before {
    position: absolute;
    content: '';
    left: -15px;
    bottom: -30px;
    width: 120px;
    height: 174px;
    background: url(../img/custom/logo_img.svg) center/cover no-repeat;
}
.imp02-tit h5 {
    margin-bottom: 10px;
    color: #d8ab72;
    font-family: 'NanumSquare', san-serif;
    font-weight: 800;
}
.imp02-tit p {
    white-space: pre-line;
}
.imp02-case .img {
    position: relative;
    display: inline-block;
}
.imp02-case .img h6 {
    position: absolute;
    left: 50%;
    bottom: -23px;
    transform: translateX(-50%);
    padding: 5px 45px;
    width: 170px;
    border-radius: 40px;
    z-index: 1;
    text-align: center;
    color: #fff;
    background: #908f8f;
    font-family: 'NanumSquare', san-serif;
    font-weight: 700;
}
.imp02-case .img h6.case-bf-tit {
    background: #6e6e6e;
}
.imp02-case .img h6.case-af-tit {
    background: #d8ab72;
}

.imp02-area1.bg-gray {
    padding: 200px 0;
    color: #fff;
}
.imp02-area1 .bg-animation {
    background: url(../img/custom/imp02_bg1.jpg) center/cover no-repeat;
}
.imp02-area2 .imp02-case .tit {
    margin-top: 50px;
}
.imp02-area3 .basic-box {
    max-width: calc(100% - 20px);
    margin: 0 auto;
}
.imp02-area3 .link-btn {
    margin-top: 40px;
    text-align: center;
}
.imp02-area3 .link-btn a {
    display: inline-block;
    padding: 8px 10px;
    width: 240px;
    border-radius: 40px;
    text-align: center;
    color: #fff;
    background: #d8ab72;
}
.imp02-area3 .link-btn h5 {
    font-family: 'NanumSquare', san-serif;
    font-weight: 500;
}
.imp02-area4 ul.flex > li:first-child {
    width: 66.6%;
}
.imp02-area4 ul.flex > li:last-child {
    width: 33.3%;
}
.imp02-area4 ul.flex > li:last-child .img h6 {
    display: none;
}
.imp02-area5 {
    padding: 70px 10px;
    max-width: 980px;
    margin: 0 auto;
}
.imp02-area5 .bg-animation {
    background: url(../img/custom/imp02_bg2.jpg) center/cover no-repeat;
}
.imp02-area5 .list {
    max-width: 420px;
    margin: 0 auto;
}
.imp02-area5 .list > li:not(:first-child) {
    margin-top: 10px;
}
.imp02-area5 .list > li p {
    position: relative;
    padding-left: 30px;
    color: #fff;
}
.imp02-area5 .list > li p::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 25px;
    height: 23px;
    background: url(../img/custom/imp02_21.png) center/cover no-repeat;
}

.imp03-area1 .bg-animation {
    background: url(../img/custom/imp03_bg1.jpg) center/cover no-repeat;
}
.imp03-area2.bg-gray {
    padding: 80px 0;
    background: #f4f4f4;
}
.imp03-area2 ul.flex > li:nth-child(n + 5):nth-child(-n + 8) {
    margin-top: 40px;
}
.imp03-area2 ul.flex > li > div {
    margin: 10px 25px;
}
.imp03-area2 ul.flex .img {
    position: relative;
}
.imp03-area2 ul.flex .img::before {
    position: absolute;
    content: '';
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 45px;
    background: url(../img/custom/imp03_24.png) center/cover no-repeat;
}
.imp03-area2 ul.flex .img p {
    display: none;
}
.imp03-area2 ul.flex > li:nth-child(4) .img::before {
    right: auto;
    top: auto;
    left: 50%;
    bottom: -100px;
    transform: translateX(-50%) rotate(90deg);
}
.imp03-area2 ul.flex > li:nth-child(n + 5):nth-child(-n + 7) .img::before {
    transform: translateY(-50%) rotate(180deg);
}
.imp03-area2 ul.flex > li:nth-child(8) .img::before {
    display: none;
}
.imp03-area2 ul.flex p {
    margin-top: 20px;
    white-space: pre-line;
    line-height: 1.3;
    font-weight: 900;
}
.imp03-area3 ul.flex .txt img {
    margin: 15px 0 10px;
}
.imp03-area3 ul.flex .txt p {
    line-height: 1.4;
}
.imp03-area4.bg-gray {
    padding: 180px 0;
    color: #fff;
}
.imp03-area4 .bg-animation {
    background: url(../img/custom/imp03_bg2.jpg) center/cover no-repeat;
}
.imp03-area4 .middle-title h5 {
    white-space: pre-line;
    font-weight: 600;
}
.imp03-area5 ul.flex > li > div {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
}
.imp03-area5 ul.flex > li .bg-animation {
    background: url(../img/custom/imp03_14.jpg) center/cover no-repeat;
}
.imp03-area5 ul.flex > li:nth-child(2) .bg-animation {
    background: url(../img/custom/imp03_15.jpg) center/cover no-repeat;
}
.imp03-area5 ul.flex > li:nth-child(3) .bg-animation {
    background: url(../img/custom/imp03_16.jpg) center/cover no-repeat;
}
.imp03-area5 ul.flex > li:nth-child(4) .bg-animation {
    background: url(../img/custom/imp03_17.jpg) center/cover no-repeat;
}
.imp03-area5 ul.flex h6 {
    white-space: pre-line;
    font-family: 'NanumSquare', san-serif;
    font-weight: 700;
    color: #fff;
    z-index: 1;
}
.imp03-area5 ul.flex h6 b {
    font-weight: 900;
    color: #07d9e6;
}
.imp03-area6 ul.flex > li:nth-child(n + 4):nth-child(-n + 6) {
    margin-top: 20px;
}
.imp03-area6 ul.flex .tit {
    margin: 20px 0 5px;
    font-family: 'NanumSquare', san-serif;
    font-weight: 900;
}

.imp04-area1 .basic-box > li:first-child {
    text-align: right;
}
.imp04-area2.bg-gray {
    background: #f7f7f7;
}
.imp04-area2 ul.flex img {
    width: 100%;
}
.imp04-area3 ul.flex .tit {
    position: relative;
    margin-bottom: 15px;
    font-size: 68px;
    font-weight: 900;
    font-family: 'Jeju Myeongjo', serif;
    transform: skew(-0.1deg);
}
.imp04-area3 ul.flex .tit::before {
    position: absolute;
    content: '';
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: #333;
}
.imp04-area3 ul.flex p {
    font-weight: 900;
}
.imp04-area5.bg-gray {
    padding: 120px 0 0;
    color: #fff;
}
.imp04-area5 .bg-animation {
    background: url(../img/custom/imp04_bg1.jpg) center/cover no-repeat;
}

.imp05-area1.bg-gray {
    padding: 300px 0 80px;
    color: #fff;
}
.imp05-area1 .bg-animation {
    background: url(../img/custom/imp05_bg1.jpg) center/cover no-repeat;
}
.imp05-area2.bg-gray {
    background: #f7f7f7;
}
.imp05-area2 ul.flex h5 {
    margin: 20px 0 10px;
    color: #d8ab72;
    font-family: 'NanumSquare', san-serif;
    font-weight: 900;
}
.imp05-area2 ul.flex p {
    line-height: 1.5;
    font-weight: 600;
}
.imp05-area3 .list h6 {
    padding: 15px 10px;
    text-align: center;
    color: #fff;
    background: #d8ab72;
    font-family: 'NanumSquare', san-serif;
    font-weight: 500;
}
.imp05-area3 .list > li:nth-child(2n) h6 {
    color: #333;
    background: #dfdfdf;
}

/*================================================================ 1500px 이하 ================================================================= */
@media screen and (max-width: 1500px) {
}

/*================================================================ 1200px 이하 ================================================================= */
@media screen and (max-width: 1200px) {
    .imp01-area4::before {
        display: none;
    }
    .imp01-area4 .custom ul.flex .list {
        max-width: 390px;
    }

    .imp02-area1.bg-gray {
        padding: 150px 0;
    }

    .imp03-area2 ul.flex .img::before {
        right: -38px;
        width: 26px;
        height: 34px;
    }
}

/*================================================================ 1025px 이하 ================================================================= */
@media screen and (max-width: 1025px) {
    .imp01-area4 .custom ul.flex .list {
        max-width: 340px;
    }
    .imp01-area4 .custom ul.flex > li:last-child .list > li p {
        font-size: 20px;
    }
    .imp01-area4 .custom ul.flex > li:last-child .list > li p::before {
        top: 6px;
    }
}

/*================================================================ 900px 이하 ================================================================= */
@media screen and (max-width: 900px) {
    .imp02-area2 ul.flex > li {
        width: 50%;
    }
    .imp02-area2 ul.flex > li:last-child {
        margin-top: 20px;
    }
}

/*================================================================ 769px 이하 ================================================================= */
@media screen and (max-width: 769px) {
    .imp01-area1 ul.flex {
        max-width: 500px;
        margin: 0 auto;
    }
    .imp01-area1 ul.flex:not(:first-child) {
        margin-top: 50px;
    }
    .imp01-area1 ul.flex .txt {
        margin: 15px 0 0 15px;
    }
    .imp01-area1 ul.flex:nth-child(2n) .txt {
        margin: 15px 15px 0 0;
    }
    .imp01-area2 article::before {
        display: none;
    }
    .imp01-area2 ul.flex {
        padding: 0 10px 20px;
    }
    .imp01-area2 ul.flex > li {
        text-align: center;
    }
    .imp01-area2 ul.flex h2 {
        display: block;
        font-weight: 900;
        color: #fff;
        font-size: 60px;
    }
    .imp01-area3 ul.flex .sub {
        height: auto;
    }
    .imp01-area4 .middle-title h5 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .imp01-area4 .middle-title h5 span {
        margin-bottom: 10px;
    }
    .imp01-area4 .custom ul.flex .list {
        height: auto;
    }
    .imp01-area4 .custom ul.flex > li:last-child .list > li p {
        font-size: 18px;
    }
    .imp01-area4 .custom ul.flex > li:last-child .list > li p::before {
        top: 4px;
    }
    .imp01-area4 .anesthesia ul.flex > li:last-child {
        margin-top: 20px;
    }
    .imp01-area4 .anesthesia ul.flex > li > div {
        margin: 5px;
    }
    .imp01-area5 .brand ul.flex .img {
        height: 115px;
    }
    .imp01-area7 ul.flex {
        margin-top: 40px;
    }

    .imp02-tit {
        margin: 0 auto 40px;
    }
    .imp02-tit::before {
        left: -10px;
        bottom: -15px;
        width: 80px;
        height: 116px;
    }
    .imp02-tit p {
        max-width: calc(100% - 100px);
        margin: 0 auto;
    }
    .imp02-case .img h6 {
        bottom: -20px;
    }
    .imp02-area5 .list {
        max-width: 340px;
    }

    .imp03-area2 ul.flex > li:nth-child(n + 3):nth-child(-n + 8) {
        margin-top: 30px;
    }
    .imp03-area2 ul.flex > li > div {
        margin: 10px 20px;
    }
    .imp03-area2 ul.flex .img {
        position: relative;
        display: inline-block;
        border-radius: 49%;
        overflow: hidden;
    }
    .imp03-area2 ul.flex > li .img::before {
        display: none;
    }
    .imp03-area2 ul.flex > li > div::before {
        position: absolute;
        content: '';
        right: -120px;
        top: 50%;
        transform: translateY(-50%);
        width: 200px;
        height: 2px;
        background: #d8ab72;
    }
    .imp03-area2 ul.flex > li:nth-child(2n) > div::before {
        right: auto;
        top: auto;
        left: 0;
        bottom: -200px;
        transform: rotate(45deg);
        width: 2px;
        height: 300px;
    }
    .imp03-area2 ul.flex > li:last-child > div::before {
        display: none;
    }
    .imp03-area2 ul.flex p {
        display: none;
    }
    .imp03-area2 ul.flex .img p {
        position: absolute;
        display: flex;
        margin-top: 0;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 100%;
        height: 65px;
        background: #fff;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .imp03-area4.bg-gray {
        padding: 150px 0;
    }
    .imp03-area5 ul.flex > li > div {
        height: 200px;
    }

    .imp04-area1 .basic-box > li:first-child {
        text-align: center;
    }
    .imp04-area5.bg-gray {
        padding: 80px 0 0;
    }

    .imp05-area1.bg-gray {
        padding: 240px 0 60px;
    }
}

/*================================================================ 600px 이하 ================================================================= */
@media screen and (max-width: 600px) {
    .imp01-area2 article:not(:first-child) {
        margin-top: 40px;
    }
    .imp01-area5 .brand ul.flex .img {
        height: 90px;
    }
    .imp01-area6 ul.flex .img {
        height: 105px;
    }
    .imp01-area7 ul.flex {
        justify-content: center;
    }
    .imp01-area7 ul.flex > li {
        width: 50%;
    }

    .imp02-area2 ul.flex {
        max-width: 400px;
        margin: 0 auto;
    }
    .imp02-area2 ul.flex > li {
        width: 100%;
    }
    .imp02-area2 ul.flex > li:nth-child(2) {
        margin-top: 20px;
    }

    .imp03-area2.bg-gray {
        padding: 60px 0;
    }
    .imp03-area6 ul.flex > li {
        width: 50%;
    }
    .imp03-area6 ul.flex > li:nth-child(n + 3):nth-child(-n + 6) {
        margin-top: 20px;
    }

    .imp05-area2 ul.flex > li {
        width: 50%;
    }
}

/*================================================================ 425px 이하 ================================================================= */
@media screen and (max-width: 480px) {
    .imp01-area2 ul.flex h2 {
        font-size: 50px;
    }
    .imp01-area4 .middle-title h5 span {
        padding: 5px 20px;
        margin-bottom: 5px;
    }
    .imp01-area4 .custom ul.flex .list {
        max-width: 300px;
    }
    .imp01-area4 .custom ul.flex .list > li p::before {
        top: 8px;
        left: 5px;
        width: 4px;
        height: 4px;
    }
    .imp01-area4 .custom ul.flex > li:last-child .list {
        max-width: 275px;
    }
    .imp01-area4 .custom ul.flex > li:last-child .list > li p {
        font-size: 16px;
    }
    .imp01-area4 .custom ul.flex > li:last-child .list > li p::before {
        top: 6px;
        width: 16px;
        height: 13px;
    }
    .imp01-area4 .zirconia .middle-title {
        margin-top: 40px;
    }
    .imp01-area4 .zirconia colgroup col {
        width: 37.5%;
    }
    .imp01-area4 .zirconia colgroup col:nth-child(2) {
        width: 25%;
    }
    .imp01-area4 .anesthesia ul.flex > li:nth-child(2) {
        margin-top: 20px;
    }
    .imp01-area5 .box {
        margin-top: 40px;
    }
    .imp01-area5 .box ul.flex > li > div {
        margin: 3px;
    }
    .imp01-area5 .box ul.flex h6 {
        font-size: 17px;
    }
    .imp01-area5 .brand {
        padding: 30px 10px;
    }
    .imp01-area5 .brand ul.flex > li:nth-child(2) > div {
        padding: 20px 0;
        margin: 20px 0;
        border-top: 1px solid #dfdfdf;
        border-bottom: 1px solid #dfdfdf;
    }
    .imp01-area5 .brand ul.flex .img {
        height: auto;
    }
    .imp01-area5 .brand ul.flex h6 {
        margin-top: 20px;
    }
    .imp01-area6 ul.flex .img {
        height: 90px;
    }
    .imp01-area7 .circle-box b {
        margin-top: 5px;
        font-size: 1.5em;
    }

    .imp02-tit {
        padding: 40px 20px;
    }
    .imp02-tit::before {
        left: 0;
        bottom: 0;
        opacity: 0.15;
    }
    .imp02-tit p {
        max-width: 100%;
        margin: 0 auto;
    }
    .imp02-case .img h6 {
        bottom: -18px;
    }
    .imp02-area1.bg-gray {
        padding: 120px 0;
    }
    .imp02-area2 .imp02-case .tit {
        margin-top: 40px;
    }
    .imp02-area3 .link-btn {
        margin-top: 20px;
    }
    .imp02-area3 ul.flex > li:last-child {
        margin-top: 20px;
    }
    .imp02-area4 ul.flex > li:first-child {
        width: 100%;
    }
    .imp02-area4 ul.flex > li:last-child {
        width: 100%;
    }
    .imp02-area4 ul.flex > li:last-child > div {
        text-align: left !important;
    }
    .imp02-area4 ul.flex > li:first-child .img h6 {
        display: none;
    }
    .imp02-area4 ul.flex > li:last-child .img {
        display: flex;
        align-items: center;
        background: #908f8f;
    }
    .imp02-area4 ul.flex.after > li:last-child .img {
        background: #d8ab72;
    }
    .imp02-area4 ul.flex > li:last-child .img > div {
        width: 100%;
    }
    .imp02-area4 ul.flex > li:last-child .img h6 {
        display: block;
        position: static;
        transform: none;
        padding: 10px;
        width: 100%;
        border-radius: 0;
    }
    .imp02-area5 .list {
        max-width: 320px;
    }

    .imp03-area2 ul.flex > li > div {
        margin: 5px 8px;
    }
    .imp03-area2 ul.flex .img p {
        height: 50px;
    }
    .imp03-area4.bg-gray {
        padding: 120px 0;
    }
    .imp03-area4 .middle-title h5 {
        font-size: 18px;
    }

    .imp04-area3 ul.flex .tit {
        font-size: 52px;
        margin-bottom: 10px;
    }
    .imp04-area3 ul.flex .tit::before {
        width: 85px;
    }
    .imp04-area4 ul.flex > li:not(:first-child) {
        margin-top: 20px;
    }
    .imp04-area5.bg-gray {
        padding: 60px 0 0;
    }

    .imp05-area1.bg-gray {
        padding: 200px 0 50px;
    }
    .imp05-area2 .middle-title h6 {
        font-size: 16px;
    }
    .imp05-area3 .list h6 {
        font-size: 16px;
    }
}

/* ============================================================================================================================ */
/* ======================================================= sub3 custom 코드 ==================================================== */
/* ============================================================================================================================ */

/* ============================================================================================================================ */
/* ======================================================= sub4 custom 코드 ==================================================== */
/* ============================================================================================================================ */

.ortho01bg.banner-bg {
    background: url(../img/custom/ortho01_bg.jpg) center/cover no-repeat;
}
.ortho02bg.banner-bg {
    background: url(../img/custom/ortho02_bg.jpg) center/cover no-repeat;
}
.ortho03bg.banner-bg {
    background: url(../img/custom/ortho03_bg.jpg) center/cover no-repeat;
}
.ortho04bg.banner-bg {
    background: url(../img/custom/ortho04_bg.jpg) center/cover no-repeat;
}

.ortho01-area1 .num::before {
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    font-size: 38px;
}
.ortho01-area1 .basic-box {
    max-width: 1000px;
    margin: 0 auto;
}
.ortho01-area1 .basic-box:not(:first-child) {
    margin-top: 40px;
}
.ortho01-area1 .basic-box:nth-child(2n) {
    flex-direction: row-reverse;
}
.ortho01-area2 .middle-title h4 {
    line-height: 1.2;
}
.ortho01-area2 article {
    position: relative;
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    background: linear-gradient(to bottom, #384c5c, #29313d);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.ortho01-area2 article::before {
    position: absolute;
    content: '';
    left: 50%;
    top: 15px;
    transform: translateX(-50%);
    width: 380px;
    height: 114px;
    background: url(../img/custom/ortho01_05.jpg) center/cover no-repeat;
}
.ortho01-area2 article > div {
    padding: 100px 20px 40px;
    background: #f2f2f2;
}
.ortho01-area2 .list {
    max-width: 480px;
    margin: 0 auto;
}
.ortho01-area2 .list > li:not(:first-child) {
    margin-top: 40px;
}
.ortho01-area2 .list p {
    position: relative;
    padding-left: 55px;
    white-space: pre-line;
}
.ortho01-area2 .list p::before {
    position: absolute;
    display: flex;
    content: attr(data-num);
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #222222;
    font-weight: 700;
}
.ortho01-area3.bg-gray {
    background: #f4f4f4;
}
.ortho01-area3 ul.dentist {
    display: flex;
    justify-content: center;
    align-items: center;
}
.ortho01-area3 ul.dentist .img {
    max-width: 500px;
}
.ortho01-area3 ul.dentist .img a {
    display: inline-block;
    width: 100%;
    padding: 15px 10px;
    margin-top: 20px;
    text-align: center;
    border-radius: 40px;
    color: #fff;
    background: #d8ab72;
    transition: opacity 0.3s ease-in;
}
.ortho01-area3 ul.dentist .img a:hover {
    opacity: 0.7;
}
.ortho01-area3 ul.dentist .txt {
    margin-left: 50px;
}
.ortho01-area3 ul.dentist .txt ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 40px;
}
.ortho01-area3 ul.dentist .txt ul p {
    margin-right: 20px;
    line-height: 1.5;
}
.ortho01-area3 ul.dentist p {
    white-space: pre-line;
}
.ortho01-area4 .imp02-case .img h6.case-af-tit {
    width: 220px;
}
.ortho01-area5 ul.flex p {
    line-height: 1.5;
}
.ortho01-area6 ul.flex > li:nth-child(n + 5):nth-child(-n + 8) {
    margin-top: 40px;
}
.ortho01-area7.bg-gray {
    background: #f3feff;
}
.ortho01-area7 .basic-box {
    justify-content: center;
}
.ortho01-area7 .basic-box > li {
    width: auto;
    flex: none;
}
.ortho01-area7 .basic-box > li:last-child {
    margin-left: 50px;
}
.ortho01-area7 .basic-box .img {
    position: relative;
    display: inline-block;
}
.ortho01-area7 .basic-box .img::before {
    position: absolute;
    content: '';
    left: -90px;
    bottom: -15px;
    width: 120px;
    height: 174px;
    background: url(../img/custom/logo_img.svg) center/cover no-repeat;
}

.ortho02-area1.bg-gray {
    padding: 200px 0;
    color: #fff;
}
.ortho02-area1 .bg-animation {
    background: url(../img/custom/ortho02_bg1.jpg) center/cover no-repeat;
}
.ortho02-area2.bg-gray {
    background: #f7f7f7;
}
.ortho02-area2 article {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}
.ortho02-area2 article:last-child {
    margin: 100px auto 0;
}
.ortho02-area2 article .tit {
    position: relative;
    padding-left: 70px;
}
.ortho02-area2 article .tit::before {
    position: absolute;
    display: flex;
    content: attr(data-num);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    background: #333;
    color: #fff;
    font-size: 1em;
}
.ortho02-area2 article ul {
    display: flex;
    max-width: 625px;
    margin: 60px auto 0;
}
.ortho02-area2 article ul img {
    margin-right: 50px;
}
.ortho02-area2 article ul p {
    white-space: pre-line;
    margin-top: 10px;
}
.ortho02-area3 .basic-box .img {
    position: relative;
    display: inline-block;
}
.ortho02-area3 .basic-box .img::before {
    position: absolute;
    content: '';
    left: -110px;
    bottom: -110px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: #d8ab72;
    z-index: -1;
}
.ortho02-area4 ul.flex > li:last-child > div::before {
    position: absolute;
    content: '';
    right: -110px;
    bottom: -90px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #d8ab72;
    z-index: -1;
}
.ortho02-area4 ul.flex img {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.ortho02-area5 ul.flex .tit {
    width: 250px;
    padding: 8px 10px;
    margin: 0 auto 30px;
    text-align: center;
    border-radius: 40px;
    background: #222222;
    color: #fff;
}
.ortho02-area5 ul.flex > li:last-child .tit {
    background: #999898;
}
.ortho02-area5 ul.flex .img img:last-child {
    margin-top: 40px;
}
.ortho02-area6.bg-gray {
    padding: 200px 0;
    color: #fff;
}
.ortho02-area6 .bg-animation {
    background: url(../img/custom/ortho02_bg2.jpg) center/cover no-repeat;
}
.ortho02-area7 .tit {
    text-align: center;
    font-family: 'InkLipquid';
    transform: skew(-0.1deg);
    font-weight: 300;
}
.ortho02-area7 .tit span {
    color: #222222;
}
.ortho02-area8.bg-gray {
    padding: 160px 0;
    color: #fff;
}
.ortho02-area8 .bg-animation {
    background: url(../img/custom/ortho02_bg3.jpg) center/cover no-repeat;
}
.ortho02-area9.bg-gray {
    padding: 160px 0;
    color: #fff;
}
.ortho02-area9 .bg-animation {
    background: url(../img/custom/ortho02_bg4.jpg) center/cover no-repeat;
}

.ortho03-area1 .advan ul.flex > li > div {
    display: flex;
    justify-content: center;
    height: 220px;
    padding: 30px 10px;
    border-radius: 10px;
    color: #fff;
    background: #222222;
}
.ortho03-area1 .advan .tit {
    display: inline-block;
    padding: 0px 25px;
    margin-bottom: 20px;
    border-radius: 40px;
    font-weight: 900;
    color: #222222;
    background: #fff;
    font-size: 22px;
}
.ortho03-area1 .comparison ul.flex {
    max-width: 800px;
    margin: 0 auto;
}
.ortho03-area1 .comparison ul.flex > li > div {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.ortho03-area1 .comparison .tit {
    width: 100%;
    padding: 3px 10px;
    color: #fff;
    background: #222222;
}
.ortho03-area1 .comparison ul.flex > li:last-child .tit {
    background: #6e6e6e;
}
.ortho03-area1 .comparison .list {
    margin-top: 40px;
}
.ortho03-area1 .comparison .list > li:not(:first-child) {
    margin-top: 15px;
}
.ortho03-area1 .comparison .list p {
    position: relative;
    padding-left: 30px;
    text-align: left;
    font-size: 22px;
}
.ortho03-area1 .comparison .list p::before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 19px;
    height: 19px;
    background: url(../img/custom/ortho03_14.png) center/cover no-repeat;
}
.ortho03-area1 .comparison ul.flex > li:last-child .list p::before {
    background: url(../img/custom/ortho03_15.png) center/cover no-repeat;
}
.ortho03-area2 ul.flex .tit {
    margin: 30px auto 0;
    padding: 10px 15px;
    width: calc(100% - 40px);
    border-radius: 10px;
    color: #929191;
    background: #dfdfdf;
}
.ortho03-area2 ul.flex > li:last-child .tit {
    background: #222222;
    color: #fff;
}
.ortho03-area3 ul.flex > li:nth-child(n + 4):nth-child(-n + 6) {
    margin-top: 30px;
}
.ortho03-area3 ul.flex .tit {
    margin: 15px 0 5px;
}
.ortho03-area3 ul.flex .sub {
    line-height: 1.5;
}

.ortho04-area1.bg-gray {
    padding: 100px 0 80px;
}
.ortho04-area1 ul.flex {
    max-width: 1000px;
    margin: 0 auto;
}
.ortho04-area1 ul.flex .img {
    position: relative;
    display: inline-block;
}
.ortho04-area1 ul.flex .tit {
    position: absolute;
    left: 50%;
    bottom: -23px;
    transform: translateX(-50%);
    padding: 5px 45px;
    width: 170px;
    border-radius: 40px;
    z-index: 1;
    text-align: center;
    color: #fff;
    background: #6e6e6e;
    font-family: 'NanumSquare', san-serif;
    font-weight: 700;
}
.ortho04-area1 ul.flex > li:last-child .tit {
    background: #d8ab72;
}
.ortho04-area1 .notice {
    max-width: 515px;
    margin: 60px auto 0;
}
.ortho04-area1 .notice p {
    position: relative;
    padding-left: 15px;
    line-height: 2.2;
    font-weight: 600;
    white-space: pre-line;
    font-size: 16px;
}
.ortho04-area1 .notice p::before {
    position: absolute;
    content: '*';
    font-size: 1em;
    left: 0;
    top: 2px;
}

/*================================================================ 1500px 이하 ================================================================= */
@media screen and (max-width: 1500px) {
}

/*================================================================ 1200px 이하 ================================================================= */
@media screen and (max-width: 1200px) {
}

/*================================================================ 1025px 이하 ================================================================= */
@media screen and (max-width: 1025px) {
    .ortho01-area3 ul.dentist {
        flex-direction: column;
    }
    .ortho01-area3 ul.dentist .txt {
        margin: 40px 0 0;
    }
}

/*================================================================ 900px 이하 ================================================================= */
@media screen and (max-width: 900px) {
}

/*================================================================ 769px 이하 ================================================================= */
@media screen and (max-width: 769px) {
    .ortho01-area1 .num::before {
        width: 45px;
        height: 45px;
        font-size: 25px;
        margin-bottom: 0;
    }
    .ortho01-area5 ul.flex:nth-child(2) > li:last-child {
        margin-top: 20px;
    }
    .ortho01-area7 .basic-box > li:last-child {
        margin-left: 0;
    }
    .ortho01-area7 .basic-box li img {
        width: auto;
    }
    .ortho01-area7 .basic-box .img::before {
        left: -60px;
        bottom: -30px;
        width: 100px;
        height: 145px;
    }

    .ortho02-area1.bg-gray {
        padding: 140px 0;
    }
    .ortho02-area2 article {
        margin: 60px auto 0;
    }
    .ortho02-area3 .basic-box .img::before {
        left: -105px;
        bottom: -50px;
        width: 150px;
        height: 150px;
    }
    .ortho02-area4 ul.flex > li:last-child > div::before {
        right: -70px;
        bottom: -60px;
        width: 150px;
        height: 150px;
    }
    .ortho02-area6.bg-gray {
        padding: 140px 0;
    }
    .ortho02-area8.bg-gray {
        padding: 120px 0;
    }
    .ortho02-area9.bg-gray {
        padding: 120px 0;
    }

    .ortho03-area1 .advan ul.flex > li > div {
        margin: 5px;
        height: 200px;
    }
    .ortho03-area1 .comparison ul.flex > li > div {
        margin: 5px;
    }
    .ortho03-area1 .comparison .list {
        margin-top: 20px;
    }
    .ortho03-area1 .comparison .list p {
        font-size: 18px;
    }
    .ortho03-area2 ul.flex > li {
        width: 100%;
    }
    .ortho03-area2 ul.flex > li:last-child {
        margin-top: 40px;
    }
    .ortho03-area2 ul.flex .tit {
        margin: 20px auto 0;
        width: 350px;
    }

    .ortho04-area1.bg-gray {
        padding: 80px 0;
    }
}

/*================================================================ 600px 이하 ================================================================= */
@media screen and (max-width: 600px) {
    .ortho01-area2 article {
        padding: 50px 15px;
    }
    .ortho01-area2 article > div {
        padding: 60px 10px 20px;
    }
    .ortho01-area2 article::before {
        top: 32px;
        width: 200px;
        height: 60px;
    }
    .ortho01-area2 .list {
        max-width: 400px;
    }
    .ortho01-area4 .imp02-case .img h6.case-af-tit {
        width: 190px;
    }
    .ortho01-area6 ul.flex > li {
        width: 33.3%;
    }
    .ortho01-area6 ul.flex > li:nth-child(n + 4):nth-child(-n + 8) {
        margin-top: 30px;
    }

    .ortho02-area2 article ul {
        max-width: 410px;
        margin: 50px auto 0;
    }
    .ortho02-area2 article ul img {
        max-width: 120px;
        margin-right: 40px;
    }
    .ortho02-area4 ul.flex > li {
        width: 50%;
    }
    .ortho02-area5 ul.flex .tit {
        width: 200px;
    }
    .ortho02-area6 .bg-animation {
        background-position-x: -500px;
    }

    .ortho03-area1 .advan ul.flex > li {
        width: 50%;
    }
    .ortho03-area1 .comparison .list p {
        padding-left: 25px;
        font-size: 16px;
    }
    .ortho03-area3 ul.flex > li {
        width: 50%;
    }
    .ortho03-area3 ul.flex > li:nth-child(n + 3):nth-child(-n + 6) {
        margin-top: 20px;
    }

    .ortho04-area1 .notice {
        max-width: 445px;
        margin: 50px auto 0;
    }
    .ortho04-area1 .notice p {
        font-size: 14px;
    }
}

/*================================================================ 425px 이하 ================================================================= */
@media screen and (max-width: 480px) {
    .ortho01-area1 .num::before {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
    .ortho01-area2 .list > li:not(:first-child) {
        margin-top: 30px;
    }
    .ortho01-area2 .list p {
        padding-left: 40px;
        font-size: 13px;
    }
    .ortho01-area2 .list p::before {
        top: -5px;
        width: 30px;
        height: 30px;
    }
    .ortho01-area3 ul.dentist .img a {
        padding: 10px;
    }
    .ortho01-area3 ul.dentist .txt {
        margin: 20px 0 0;
    }
    .ortho01-area3 ul.dentist .txt ul img {
        max-width: 140px;
    }
    .ortho01-area5 ul.flex:nth-child(2) > li:nth-child(2) {
        margin-top: 20px;
    }
    .ortho01-area6 ul.flex > li {
        width: 50%;
    }
    .ortho01-area6 ul.flex > li:nth-child(n + 3):nth-child(-n + 8) {
        margin-top: 30px;
    }
    .ortho01-area7 .basic-box .img::before {
        left: 0;
        bottom: -10px;
        width: 80px;
        height: 116px;
    }

    .ortho02-area1.bg-gray {
        padding: 80px 0;
    }
    .ortho02-area2 article {
        margin: 40px auto 0;
    }
    .ortho02-area2 article:last-child {
        margin: 60px auto 0;
    }
    .ortho02-area2 article .tit {
        padding-left: 50px;
    }
    .ortho02-area2 article .tit::before {
        width: 40px;
        height: 40px;
    }
    .ortho02-area2 article ul {
        max-width: 340px;
        margin: 35px auto 0;
    }
    .ortho02-area2 article ul img {
        max-width: 90px;
        margin-right: 20px;
    }
    .ortho02-area3 .basic-box .img::before {
        left: 0;
        bottom: -20px;
        width: 110px;
        height: 110px;
    }
    .ortho02-area5 ul.flex .img img:last-child {
        margin-top: 15px;
    }
    .ortho02-area5 ul.flex > li:last-child {
        margin-top: 40px;
    }
    .ortho02-area6.bg-gray {
        padding: 100px 0;
    }
    .ortho02-area6 .bg-animation {
        background-position-x: -420px;
    }
    .ortho02-area8.bg-gray {
        padding: 100px 0;
    }
    .ortho02-area8 .bg-animation {
        background-position-x: -320px;
    }
    .ortho02-area9.bg-gray {
        padding: 100px 0;
    }

    .ortho03-area1 .advan ul.flex > li {
        width: 100%;
    }
    .ortho03-area1 .advan ul.flex > li > div {
        height: auto;
    }
    .ortho03-area1 .advan .tit {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .ortho03-area1 .comparison .list p {
        font-size: 14px;
    }
    .ortho03-area1 .comparison .list p::before {
        top: 1px;
        transform: none;
    }
    .ortho03-area2 ul.flex > li:last-child {
        margin-top: 10px;
    }
    .ortho03-area2 ul.flex .tit {
        margin: 10px auto 0;
        padding: 5px 15px;
        width: 100%;
    }

    .ortho04-area1.bg-gray {
        padding: 60px 0;
    }
    .ortho04-area1 ul.flex > li:last-child {
        margin-top: 20px;
    }
    .ortho04-area1 .notice {
        max-width: 255px;
    }
    .ortho04-area1 .notice p {
        line-height: 1.5;
        font-size: 12px;
    }
    .ortho04-area1 .notice p:last-child {
        margin-top: 5px;
    }
}

/* ============================================================================================================================ */
/* ======================================================= sub4 custom 코드 ==================================================== */
/* ============================================================================================================================ */

/* ============================================================================================================================ */
/* ======================================================= sub5 custom 코드 ==================================================== */
/* ============================================================================================================================ */

.aes01bg.banner-bg {
    background: url(../img/custom/aes01_bg.jpg) center/cover no-repeat;
}
.aes02bg.banner-bg {
    background: url(../img/custom/aes02_bg.jpg) center/cover no-repeat;
}
.aes03bg.banner-bg {
    background: url(../img/custom/aes03_bg.jpg) center/cover no-repeat;
}
.aes04bg.banner-bg {
    background: url(../img/custom/aes04_bg.jpg) center/cover no-repeat;
}
.aes05bg.banner-bg {
    background: url(../img/custom/aes05_bg.jpg) center/cover no-repeat;
}

.aes01-area1.bg-gray {
    padding: 200px 0;
    color: #fff;
}
.aes01-area1 .bg-animation {
    background: url(../img/custom/aes01_bg1.jpg) center/cover no-repeat;
}
.aes01-area2.bg-gray {
    padding: 80px 0;
}
.aes01-area2 .bg-animation {
    background: url(../img/custom/aes01_bg2.jpg) center/cover no-repeat;
}
.aes01-area3 .link-btn {
    position: relative;
    display: inline-block;
    margin-top: 40px;
    padding: 10px;
    width: 280px;
    text-align: center;
    font-size: 22px;
    border: 1px solid #333;
    transition: 0.2s ease-in;
}
.aes01-area3 .link-btn::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    transition: width 0.3s ease-in;
    background: #d8ab72;
    z-index: -1;
}
.aes01-area3 .link-btn:hover {
    color: #fff;
    border: 1px solid #d8ab72;
    font-weight: 700;
}
.aes01-area3 .link-btn:hover::before {
    width: 100%;
}
.aes01-area4 .notice {
    max-width: 540px;
}

.aes02-area1 .basic-box {
    margin-top: 40px;
}
.aes02-area1 .basic-box h3 {
    margin-bottom: 20px;
    color: #f1f1f1;
}
.aes02-area1 .basic-box .img {
    display: inline-block;
    position: relative;
}
.aes02-area1 .basic-box .img::before {
    position: absolute;
    content: '';
    left: -20px;
    top: -20px;
    width: 100%;
    height: 100%;
    background: #d8ab72;
    z-index: -1;
}
.aes02-area2.bg-gray {
    padding: 100px 0;
}
.aes02-area2 .bg-animation {
    background: url(../img/custom/aes02_bg1.jpg) center/cover no-repeat;
}
.aes02-area3 ul.flex > li > div {
    border: 1px solid #c3c2c2;
}
.aes02-area3 ul.flex .img {
    position: relative;
}
.aes02-area3 ul.flex .img .tit {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 50%;
    bottom: -40px;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    font-size: 40px;
    background: #d8ab72;
    color: #fff;
}
.aes02-area3 ul.flex .txt {
    display: flex;
    justify-content: center;
    padding: 60px 10px;
    height: 200px;
}
.aes02-area4 ul.flex .img img {
    width: 100%;
}
.aes02-area4 ul.flex .txt .top,
.aes02-area4 ul.flex .txt .btm {
    color: #fff;
    font-family: 'NanumSquare', san-serif;
}
.aes02-area4 ul.flex .txt .top {
    padding: 5px 10px;
    font-weight: 800;
    background: #828282;
}
.aes02-area4 ul.flex .txt .mid {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 10px;
    height: 175px;
    background: #ededed;
}
.aes02-area4 ul.flex .txt .btm {
    padding: 10px;
    font-weight: 600;
    background: #222222;
}
.aes02-area5 table {
    width: 100%;
}
.aes02-area5 table td {
    padding: 30px 10px;
    text-align: center;
    border: 1px solid #828282;
    vertical-align: middle;
}
.aes02-area5 table thead td {
    background: #222222;
    border: 1px solid #fff;
    border-top: 1px solid #828282;
}
.aes02-area5 table thead td:first-child {
    border-left: 1px solid #828282;
}
.aes02-area5 table thead td:last-child {
    border-right: 1px solid #828282;
}
.aes02-area5 table tbody td:first-child {
    background: #e2e2e2;
}
.aes02-area5 table td p {
    white-space: pre-line;
}
.aes02-area5 table thead td p {
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    line-height: 1.5;
}
.aes02-area5 table tbody td:first-child p {
    font-weight: 900;
}
.aes02-area6.bg-gray {
    padding: 80px 0;
}
.aes02-area6 ul.flex .tit {
    color: #222222;
}
.aes02-area6 ul.flex .sub {
    font-weight: 900;
}

.aes03-area1 ul.flex .txt .mid {
    padding: 20px 10px;
    height: auto !important;
}

.aes04-area1 ul.flex .txt .btm {
    font-size: 19px;
}
.aes04-area2.bg-gray {
    padding: 80px 0;
}
.aes04-area2 img {
    border-radius: 0 !important;
}
.aes04-area3 .num-list {
    max-width: 565px;
    margin: 0 auto;
}
.aes04-area3 .num-list .num {
    white-space: pre-line;
}
.aes04-area3 .num-list .num::before {
    top: -3px;
}

.aes05-area1.bg-gray {
    background: url(../img/custom/aes05_bg1.jpg) center/cover no-repeat;
    color: #fff;
}
.aes05-area1 .list {
    max-width: 800px;
    margin: 0 auto;
}
.aes05-area1 .list li {
    padding: 20px 10px;
    border: 1px solid #fff;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    text-align: center;
}
.aes05-area1 .list li:not(:first-child) {
    margin-top: 20px;
}
.aes05-area2.bg-gray {
    margin-top: 80px;
    padding: 80px 0;
    background: #222222;
    color: #fff;
}

/*================================================================ 1500px 이하 ================================================================= */
@media screen and (max-width: 1500px) {
}

/*================================================================ 1200px 이하 ================================================================= */
@media screen and (max-width: 1200px) {
    .aes02-area2 .bg-animation {
        background-position-x: -150px;
    }
}

/*================================================================ 1025px 이하 ================================================================= */
@media screen and (max-width: 1025px) {
    .aes02-area2 .bg-animation {
        background-position-x: -200px;
    }
    .aes02-area3 ul.flex .img .tit {
        bottom: -32px;
        width: 65px;
        height: 65px;
        font-size: 30px;
    }
    .aes02-area3 ul.flex .txt {
        padding: 50px 10px;
        height: 170px;
    }
    .aes02-area5 table thead td p {
        font-size: 18px;
    }

    .aes04-area3 .num-list {
        max-width: 460px;
    }
}

/*================================================================ 900px 이하 ================================================================= */
@media screen and (max-width: 900px) {
    .aes02-area4 ul.flex {
        max-width: 600px;
        margin: 0 auto;
    }
    .aes02-area4 ul.flex > li {
        width: 50%;
    }
    .aes02-area4 ul.flex .txt .mid {
        height: 160px;
    }
    .aes02-area5 table {
        min-width: 800px;
    }

    .aes05-area1 ul.flex > li:nth-child(n + 3):nth-child(-n + 4) {
        margin-top: 20px;
    }
}

/*================================================================ 769px 이하 ================================================================= */
@media screen and (max-width: 769px) {
    .aes01-area1.bg-gray {
        padding: 140px 0;
    }
    .aes01-area1 .bg-animation {
        background-position-x: -350px;
    }
    .aes01-area2.bg-gray {
        padding: 60px 0;
    }
    .aes01-area2 .bg-animation {
        background-position-x: -120px;
    }
    .aes01-area3 .link-btn {
        margin-top: 30px;
        font-size: 20px;
        width: 250px;
        padding: 8px 10px;
    }

    .aes02-area1 .basic-box h3 {
        margin-bottom: 0;
    }
    .aes02-area1 .basic-box .img::before {
        left: -10px;
        top: -10px;
        border-radius: 20px;
    }
    .aes02-area2.bg-gray {
        padding: 80px 0;
    }
    .aes02-area2 .bg-animation {
        background-position-x: -250px;
    }
    .aes02-area3 ul.flex > li > div {
        margin: 5px;
    }
    .aes02-area5 table thead td {
        padding: 20px 10px;
    }
    .aes02-area5 table {
        min-width: 700px;
    }
    .aes02-area6.bg-gray {
        padding: 60px 0;
    }

    .aes04-area2.bg-gray {
        padding: 60px 0;
    }
    .aes04-area3 .num-list {
        max-width: 430px;
    }

    .aes05-area2.bg-gray {
        padding: 60px 0;
        margin-top: 60px;
    }
}

/*================================================================ 600px 이하 ================================================================= */
@media screen and (max-width: 600px) {
    .aes01-area2 ul.flex > li:last-child {
        height: 250px;
    }
    .aes01-area2 .bg-animation {
        background: url(../img/custom/aes01_bg2m.jpg) center/cover no-repeat;
    }

    .aes02-area2 ul.flex > li:last-child {
        height: 300px;
    }
    .aes02-area2 .bg-animation {
        background: url(../img/custom/aes02_bg1m.jpg) center/cover no-repeat;
    }
    .aes02-area3 ul.flex > li {
        width: 50%;
    }

    .aes05-area1 .list li:not(:first-child) {
        margin-top: 10px;
    }
}

/*================================================================ 425px 이하 ================================================================= */
@media screen and (max-width: 480px) {
    .aes01-area1.bg-gray {
        padding: 100px 0;
    }
    .aes01-area3 .link-btn {
        margin-top: 20px;
        font-size: 16px;
        width: 200px;
        padding: 6px;
    }
    .aes01-area4 .notice {
        max-width: 265px;
    }

    .aes02-area1 .basic-box {
        margin-top: 20px;
    }
    .aes02-area1 .basic-box .img {
        max-width: 300px;
    }
    .aes02-area1 .basic-box .img::before {
        left: -8px;
        top: -8px;
        border-radius: 10px;
    }
    .aes02-area1 .basic-box .img img {
        max-width: 100%;
    }
    .aes02-area2.bg-gray {
        padding: 60px 0;
    }
    .aes02-area2 ul.flex > li:last-child {
        height: 180px;
    }
    .aes02-area3 ul.flex > li {
        width: 100%;
    }
    .aes02-area3 ul.flex > li > div {
        max-width: 320px;
        margin: 10px auto;
    }
    .aes02-area3 ul.flex .img .tit {
        bottom: -25px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    .aes02-area3 ul.flex .txt {
        padding: 40px 10px 30px;
        height: auto;
    }
    .aes02-area4 ul.flex .txt .mid {
        height: 150px;
        padding: 20px 10px;
    }
    .aes02-area5 table {
        min-width: 500px;
    }
    .aes02-area5 table thead td p {
        font-size: 16px;
    }

    .aes04-area1 ul.flex .txt .btm {
        font-size: 15px;
    }
    .aes04-area3 .num-list {
        max-width: 290px;
    }

    .aes05-area2.bg-gray {
        padding: 40px 0;
        margin-top: 40px;
    }
}

/* ============================================================================================================================ */
/* ======================================================= sub5 custom 코드 ==================================================== */
/* ============================================================================================================================ */

/* ============================================================================================================================ */
/* ======================================================= sub6 custom 코드 ==================================================== */
/* ============================================================================================================================ */

.basic01bg.banner-bg {
    background: url(../img/custom/basic01_bg.jpg) center/cover no-repeat;
}
.basic02bg.banner-bg {
    background: url(../img/custom/basic02_bg.jpg) center/cover no-repeat;
}
.basic03bg.banner-bg {
    background: url(../img/custom/basic03_bg.jpg) center/cover no-repeat;
}
.basic04bg.banner-bg {
    background: url(../img/custom/basic04_bg.jpg) center/cover no-repeat;
}
.basic05bg.banner-bg {
    background: url(../img/custom/basic05_bg.jpg) center/cover no-repeat;
}

.basic01-area1 ul.flex p {
    margin-top: 20px;
    line-height: 1.5;
    color: #222222;
}
.basic01-area2 ul.flex .img {
    display: inline-block;
}
.basic01-area2 ul.flex .tit {
    margin: 20px 0 10px;
}
.basic01-area2 ul.flex > li:nth-child(n + 4):nth-child(-n + 6) {
    margin-top: 20px;
}
.basic01-area3 .num-list .num::before {
    top: -3px;
    border-radius: 50%;
    background: #d8ab72 !important;
}
.basic01-area4.bg-gray {
    padding: 250px 0;
    color: #fff;
}
.basic01-area4 .bg-animation {
    background: url(../img/custom/basic01_bg1.jpg) center/cover no-repeat;
}

.basic02-area1::before {
    display: none;
}
.basic02-area1 .table-scroll {
    overflow-x: auto !important;
}
.basic02-area1 table td .img img {
    width: 100%;
}
.basic02-area1 table td p {
    white-space: pre-line;
}
.basic02-area1 table thead tr:first-child td {
    padding: 0;
    border: 0 !important;
}
.basic02-area1 table tbody td:nth-child(2) p {
    font-weight: 700;
}
.basic02-area4::before {
    position: absolute;
    content: '';
    left: -30px;
    bottom: -120px;
    width: 523px;
    height: 580px;
    background: url(../img/custom/basic02_12.png) center/cover no-repeat;
}
.basic02-area4 .imp02-tit {
    max-width: 1000px;
    margin: 40px auto 0;
}
.basic02-area4 .imp02-tit h5 {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 25px;
}
.basic02-area4 .imp02-tit h5::before {
    position: absolute;
    content: '';
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #222222;
}
.basic02-area5.bg-gray {
    padding: 0;
    color: #fff;
}
.basic02-area5 .bg-animation {
    background: url(../img/custom/basic02_13.jpg) center/cover no-repeat;
}
.basic02-area5 .middle-title {
    padding: 200px 0 180px;
}

.basic03-area1 ul.flex > li > div {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    height: 150px;
    background: linear-gradient(to top, #04939c, #97e0d8);
}
.basic03-area1 ul.flex p {
    color: #fff;
}
.basic03-area2 ul.flex .tit {
    margin: 15px 0 2px;
    font-weight: 700;
    color: #222222;
}
.basic03-area3 .img {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}
.basic03-area3 .img h6 {
    padding: 12px 10px;
    color: #fff;
    background: #222222;
}
.basic03-area3 article {
    background: linear-gradient(to top, #f7f7f7 90%, transparent 90%);
    padding-bottom: 30px;
}
.basic03-area3 article ul.flex {
    align-items: flex-end;
}
.basic03-area4 .num-list {
    max-width: 800px;
}

.basic04-area2 article {
    max-width: 1000px;
    margin: 40px auto 0;
}
.basic04-area2 .basic-box:nth-child(2n) {
    flex-direction: row;
}
.basic04-area2 .basic-box:nth-child(2n-1) {
    flex-direction: row-reverse;
}
.basic04-area2 article .txt {
    padding: 30px 25px;
    background: #222222;
    color: #fff;
}
.basic04-area3 .num-list {
    max-width: 940px;
}

.basic05-area1 .list > li:not(:first-child) {
    margin-top: 15px;
}
.basic05-area1 .list p {
    padding: 15px 10px;
    text-align: center;
    font-weight: 700;
    background: #ecebeb;
}
.basic05-area2 ul {
    display: flex;
    justify-content: center;
    align-items: center;
}
.basic05-area2 ul > li:nth-child(2) {
    margin: 0 60px;
}
.basic05-area2 ul > li:nth-child(2) .img {
    margin-top: 25px;
}
.basic05-area2 article .middle-title {
    max-width: 800px;
    margin: 60px auto 0;
    padding: 60px 20px;
    border-radius: 15px;
    background: #fff;
}
.basic05-area3 ul.flex > li > div {
    margin: 3px;
}
.basic05-area3 ul.flex .tit {
    padding: 8px 10px;
    color: #fff;
    background: #d8ab72;
}
.basic05-area3 ul.flex p {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 160px;
    padding: 15px 10px;
    font-weight: 700;
    background: #ecebeb;
}
.basic05-area4 ul.flex > li:nth-child(2) .tit {
    background: #0c9ba5;
}
.basic05-area4 ul.flex > li:nth-child(3) .tit {
    background: #0a828b;
}
.basic05-area4 ul.flex > li:nth-child(4) .tit {
    background: #09646a;
}
.basic05-area4 ul.flex p {
    height: 130px;
}

/*================================================================ 1500px 이하 ================================================================= */
@media screen and (max-width: 1500px) {
}

/*================================================================ 1200px 이하 ================================================================= */
@media screen and (max-width: 1200px) {
    .basic02-area4::before {
        display: none;
    }
}

/*================================================================ 1025px 이하 ================================================================= */
@media screen and (max-width: 1025px) {
    .basic01-area1 ul.flex > li > div {
        margin: 5px;
    }
}

/*================================================================ 900px 이하 ================================================================= */
@media screen and (max-width: 900px) {
    .basic03-area3 article {
        margin-top: 40px;
        padding: 40px 0;
        background: #f7f7f7;
    }
    .basic03-area3 article ul.flex > li {
        width: 100%;
    }
    .basic03-area3 article ul.flex .middle-title {
        text-align: center !important;
    }
    .basic03-area3 article ul.flex img {
        max-width: 400px;
    }
}

/*================================================================ 769px 이하 ================================================================= */
@media screen and (max-width: 769px) {
    .basic01-area1 ul.flex > li {
        width: 33.3%;
    }
    .basic01-area1 ul.flex > li:nth-child(n + 4):nth-child(-n + 6) {
        margin-top: 30px;
    }
    .basic01-area2 ul.flex > li {
        width: 50%;
    }
    .basic01-area2 ul.flex > li:nth-child(n + 3):nth-child(-n + 6) {
        margin-top: 20px;
    }
    .basic01-area3 .num-list {
        max-width: 420px;
        margin: 40px auto 0;
    }
    .basic01-area4.bg-gray {
        padding: 120px 0;
    }

    .basic02-area2 article ul.flex {
        flex-direction: column-reverse;
        max-width: 500px;
        margin: 0 auto;
    }
    .basic02-area2 .sp1-tit h2 {
        line-height: 1;
        margin-bottom: 10px;
    }
    .basic02-area5 .middle-title {
        padding: 140px 0 120px;
    }

    .basic03-area1 ul.flex > li > div {
        margin: 5px;
    }
    .basic03-area2 ul.flex > li:nth-child(n + 3):nth-child(-n + 4) {
        margin-top: 20px;
    }

    .basic04-area1 ul.flex > li > div {
        margin: 5px;
    }

    .basic05-area2 ul {
        flex-direction: column;
    }
    .basic05-area2 ul > li:nth-child(2) {
        margin: 40px 0 20px;
    }
    .basic05-area2 ul > li:nth-child(2) .img {
        margin-top: 0;
    }
    .basic05-area3 ul.flex > li {
        width: 50%;
    }
}

/*================================================================ 600px 이하 ================================================================= */
@media screen and (max-width: 600px) {
    .basic04-area1 ul.flex > li {
        width: 50%;
    }
}

/*================================================================ 425px 이하 ================================================================= */
@media screen and (max-width: 480px) {
    .basic01-area1 ul.flex > li:nth-child(n + 4):nth-child(-n + 6) {
        margin-top: 20px;
    }
    .basic01-area2 ul.flex > li > div {
        margin: 5px;
    }
    .basic01-area3 .num-list {
        max-width: 280px;
    }
    .basic01-area4.bg-gray {
        padding: 100px 0;
    }

    .basic02-area1 .table-scroll {
        overflow-x: scroll !important;
    }
    .basic02-area1 table {
        min-width: 500px;
    }
    .basic02-area4 .imp02-tit {
        margin: 20px auto 0;
    }
    .basic02-area4 .imp02-tit h5 {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    .basic02-area5 .middle-title {
        padding: 80px 0 50px;
    }

    .basic03-area1 ul.flex {
        max-width: 300px;
    }
    .basic03-area1 ul.flex > li {
        width: 100%;
    }
    .basic03-area1 ul.flex > li > div {
        height: 120px;
    }
    .basic03-area3 article ul.flex img {
        max-width: 280px;
    }

    .basic05-area2 ul > li:nth-child(2) {
        margin: 25px 0 5px;
    }
    .basic05-area2 ul > li:nth-child(1) .img,
    .basic05-area2 ul > li:nth-child(3) .img {
        max-width: 200px;
    }
    .basic05-area2 ul > li:nth-child(2) .img {
        max-width: 40px;
    }
    .basic05-area2 article .middle-title {
        padding: 40px 0;
        margin: 40px auto 0;
    }
    .basic05-area3 ul.flex p {
        height: 135px;
    }
    .basic05-area4 ul.flex p {
        height: 110px;
    }
}

/*================================================================ 380px 이하 ================================================================= */
@media screen and (max-width: 380px) {
    .basic01-area2 ul.flex > li > div {
        margin: 3px;
    }
    .basic01-area2 ul.flex p {
        font-size: 13px;
    }
}

/* ============================================================================================================================ */
/* ======================================================= sub6 custom 코드 ==================================================== */
/* ============================================================================================================================ */

/* ============================================================================================================================ */
/* ======================================================= sub footer branch 코드 ==================================================== */
/* ============================================================================================================================ */

.branch .wrap {
    display: flex;
    justify-content: center;
}
.branch .wrap > li:last-child {
    flex: 1;
}
.branch .wrap > li > div {
    height: 350px;
}
.branch .left {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-right: 10px;
    width: 300px;
    background: #222222;
    color: #fff;
}
.branch .left .logo {
    max-width: 220px;
    margin: 0 auto;
    width: 100%;
}
.branch .left .hospital-logo {
    margin: 30px auto;
}
.branch .right {
    padding: 30px 50px;
    width: 100%;
    border: 1px solid #d3d3d3;
}
.branch .right ul.list {
    display: flex;
    width: 100%;
}
.branch .right ul.list > li {
    position: relative;
    flex: 1;
    margin-left: -1px;
    border: 1px solid #222222;
    transition: background 0.3s ease-in, color 0.3s ease-in;
    cursor: pointer;
}
.branch .right ul.list > li.on {
    background: #222222;
    color: #fff;
}
.branch .right ul.list p {
    padding: 5px 10px;
    text-align: center;
    font-weight: 600;
}
.branch .right .info-wrap {
    margin-top: 30px;
}
.branch .right .info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.branch .right .info > li {
    width: calc(50% - 20px);
}
.branch .right .info .name .tit {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 10px;
}
.branch .right .info .name .tit::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 50px;
    height: 4px;
    background: #222222;
}
.branch .right .info .name a {
    position: relative;
    display: inline-block;
    margin-top: 15px;
    padding: 6px 20px;
    width: 100%;
    color: #898989;
    font-weight: 700;
    text-align: center;
    border: 2px solid #dfdfdf;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
}
.branch .right .info .name a::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: #222222;
    transition: all 0.5s ease-in-out;
    z-index: -1;
}
.branch .right .info .name a:hover {
    color: #fff;
}
.branch .right .info .name a:hover::before {
    width: 100%;
}
.branch .right .info .time > ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.branch .right .info .time > ul > li:first-child p {
    font-weight: 700;
    color: #222222;
}
.branch .right .info .time > ul > li:not(:first-child) {
    margin-top: 7px;
}
.branch .right .info .time > ul > li > ul {
    display: flex; /* align-items:center; */
    display: inline-flex;
    margin-bottom: 3px;
    text-align: left;
}
.branch .right .info .time > ul > li > ul > li:first-child {
    margin-right: 15px;
    width: 85px;
    text-align-last: justify;
    text-align: center;
    position: relative;
}
.branch .right .info .time > ul > li > ul > li:first-child p {
    font-weight: 900;
}
.branch .right .info .time > ul p {
}

/*================================================================ 1500px 이하 ================================================================= */
@media screen and (max-width: 1500px) {
}

/*================================================================ 1200px 이하 ================================================================= */
@media screen and (max-width: 1200px) {
    .branch .wrap {
        flex-direction: column;
    }
    .branch .wrap > li {
        width: 100%;
    }
    .branch .wrap > li > div {
        height: auto;
    }
    .branch .left {
        width: 100%;
        padding: 30px 10px;
    }
}

/*================================================================ 1025px 이하 ================================================================= */
@media screen and (max-width: 1025px) {
}

/*================================================================ 900px 이하 ================================================================= */
@media screen and (max-width: 900px) {
}

/*================================================================ 769px 이하 ================================================================= */
@media screen and (max-width: 769px) {
    .branch .left .hospital-logo {
        margin: 20px auto;
    }
    .branch .right {
        padding: 30px 20px;
    }
    .branch .right .info > li {
        width: calc(50% - 10px);
    }
    .branch {
        padding-bottom: 0 !important;
    }
}

/*================================================================ 600px 이하 ================================================================= */
@media screen and (max-width: 600px) {
    .branch .left {
        padding: 20px 10px;
    }
    .branch .left .logo {
        max-width: 180px;
    }
    .branch .left .hospital-logo img {
        max-width: 90px;
    }
    .branch .right ul.list {
        flex-wrap: wrap;
    }
    .branch .right ul.list > li {
        flex: none;
        width: 25%;
    }
    .branch .right ul.list > li:nth-child(n + 5):nth-child(-n + 99) {
        border-top: 0;
    }
    .branch .right .info {
        flex-direction: column;
    }
    .branch .right .info > li {
        width: 100%;
    }
    .branch .right .info .time {
        margin-top: 30px;
    }
    .branch .right .info .time > ul p {
        font-size: 18px;
    }
}

/*================================================================ 425px 이하 ================================================================= */
@media screen and (max-width: 480px) {
    .branch .right {
        padding: 20px;
    }
    .branch .right .info .time > ul p {
        font-size: 16px;
    }
}

/*================================================================ 380px 이하 ================================================================= */
@media screen and (max-width: 380px) {
}

/* ============================================================================================================================ */
/* ======================================================= sub footer branch 코드 ==================================================== */
/* ============================================================================================================================ */


/* 1-1, 2-4 소스공유 */
.about1-area2 ul{
    position: relative;
}
.about1-area2 ul:after{
    content:'';
    display: block;
    background-color: #d8ab72;
    width: 80px;
    height: 10px;
    position: absolute;
    top: 0;
}
.about1-area2 ul:nth-child(2n-1):after{
    left: 30px;
}
.about1-area2 ul:nth-child(2n):after{
    right: 30px;
}
.about1-area2 ul.flex .txt {
    margin: 0 0 0 30px;
}
.about1-area2 ul.flex .middle-title {
    text-align: left;
    margin-bottom: 0;
}
.about1-area2 ul.flex:nth-child(2n) {
    flex-direction: row-reverse;
}
.about1-area2 ul.flex:nth-child(2n) .txt {
    margin: 0 30px 0 0;
}
.about1-area2 ul.flex:nth-child(2n) .middle-title {
    text-align: right;
}

@media screen and (max-width: 769px) {
    .about1-area2 ul:nth-child(2n-1):after{
        left: 15px;
    }
    .about1-area2 ul:nth-child(2n):after{
        right: 15px;
    }
    .about1-area2 ul.flex {
        max-width: 500px;
        margin: 0 auto;
    }
    .about1-area2 ul.flex:not(:first-child) {
        margin-top: 50px;
    }
    .about1-area2 ul.flex .txt {
        margin: 15px 0 0 15px;
    }
    .about1-area2 ul.flex:nth-child(2n) .txt {
        margin: 15px 15px 0 0;
    }
    .about1-area2 .m-block-1{
        margin-top: 40px;
    }
}


.about2-area1 .doctor_name{
    display: flex;
    gap: 10px;
    align-items: end;
}
.about2-area1 .doctor_name b{
    margin-bottom: 6px;
}

.about2-area1 .middle-title p{
    padding-top: 20px;
    border-top: 1px solid #d8ab72;
}

.about2-area1 ul.flex .txt {
    margin: 0 0 0 80px;
}
.about2-area1 ul.flex .middle-title {
    text-align: left;
    margin-bottom: 0;
}
.about2-area1 ul.flex:nth-of-type(2n) {
    flex-direction: row-reverse;
}
.about2-area1 ul.flex:nth-of-type(2n) .txt {
    margin: 0 30px 0 0;
}
@media screen and (max-width: 769px) {
    .about2-area1 .doctor_name b{
        margin-bottom: 0px;
    }
    .about2-area1 ul.flex {
        max-width: 500px;
        margin: 0 auto;
    }
    .about2-area1 ul.flex:not(:first-child) {
        margin-top: 50px;
    }
    .about2-area1 ul.flex .txt {
        margin: 15px 0 0 0;
    }
    .about2-area1 ul.flex:nth-of-type(2n) .txt {
        margin: 15px 15px 0 0;
    }
    .about2-area1 .m-block-1{
        margin-top: 40px;
    }
}

.about3-eq{
    display:flex;
    flex-direction: column;
    gap: 40px;
}

.about3-eq li {
    border-radius: 30px;
    box-shadow: 0px 0px 15px #44444436;
}

#gallery {
    background-color: #fff4e7;
    padding: 120px 0 ;
}
#gallery img{
    width: 100%;
}
#gallery  .swiper-slide{
    overflow: hidden;
    border-radius: 15px;
}
#gallery .swiper, swiper-container{
    overflow: visible;
}
#gallery  .swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal{
    bottom: -30px;
}
#gallery .swiper-slide {
  filter: brightness(0.5);
  transition: filter 0.3s ease;
}

#gallery .swiper-slide.swiper-slide-active {
  filter: brightness(1);
}

            .info-wrap {display: flex; align-items: center; flex-wrap: wrap; background: #f9f9f9;}
            .info-wrap > li {width: 50%; height: 100%;}
            .info-wrap .time-wrap {display: flex; justify-content: center;}
            .time-wrap .time {display: flex; flex-direction: column;}
            .time-wrap .time > ul {display: flex; flex-direction: column;}
            .time-wrap .time > ul > li {padding: 0 10px;}
            .time-wrap .time > ul > li:not(:first-child) {margin-top: 10px;}
            .time-wrap .time > ul > li:nth-child(2) {position: relative; background: #d8ab72; color: #fff; border-radius: 20px 0 20px 0;}
            .time-wrap .time > ul > li:nth-child(2)::before {position: absolute; content: ''; left: -50px; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; background: url(../img/custom/night_icon.png) center/cover no-repeat;}
            .time-wrap .time > ul ul {display: flex; align-items: center;}
            .time-wrap .time > ul ul > li:first-child {width: 160px; text-align-last: justify; margin-right: 30px;}
            .time-wrap .time > ul ul > li:first-child h4 {font-weight: bold;}
            .time-wrap .time > ul ul > li:last-child h4 {font-weight: 300;}
            .time-wrap .time .notice {margin-top: 20px;}
            .time-wrap .time .notice p {white-space: pre-line; font-size: 22px; line-height: 1.5;}
            .map-wrap .root_daum_roughmap {width: 100%;}
            .map-wrap .wrap_map {width: 100%; height: 500px !important;}
            .map-wrap .root_daum_roughmap .wrap_controllers {display: none;}

            .btm {padding: 40px 20px; background: #000; color: #fff;}
            .btm > ul {display: flex; align-items: center;}
            .btm > ul > li {width: 50%;}
            .btm .tit {display: inline-block; width: 160px; text-align: center; padding: 2px 20px; border-radius: 20px; font-weight: 900; background: #d8ab72; color: #fff;}
            .btm .left {text-align: center;}
            .btm .right ul > li {display: flex; align-items: center; margin-top: 10px;}
            .btm .right ul > li p.sub {margin-left: 15px;}

            /* ===================== Mobile size : 1500px ======================= */

            @media screen and (max-width: 1500px){
            
            }


            /* ===================== Mobile size : 1200px ======================= */

            @media screen and (max-width: 1200px){
            .info-wrap > li {width: 100%;}
            .time-wrap > div {padding: 40px 0;}
            .map-wrap .wrap_map {height: 350px !important;}
            
            .btm .right ul > li {display: block;}
            .btm .right ul > li p.sub {margin: 5px 0 0 0;}
            }


            /* ===================== Mobile size : 1024px ======================= */

            @media screen and (max-width: 1024px){
            
            }

            /* ===================== Mobile size : 900px ======================= */

            @media screen and (max-width: 900px){
            
            }

            /* ===================== Mobile size : 769px ======================= */

            @media screen and (max-width: 769px){
            .time-wrap .time > ul ul > li:first-child {width: 120px; margin-right: 20px;}
            .time-wrap .time .notice p {font-size: 18px;}
            .map-wrap .wrap_map {height: 300px !important;}
            }

            /* ===================== Mobile size : 600px ======================= */

            @media screen and (max-width: 600px) {
            .btm > ul {flex-wrap: wrap;}
            .btm > ul > li {width: 100%;}
            .btm .right ul {margin-top: 40px; text-align: center;}
            }

            /* ===================== Mobile size : 480px ======================= */

            @media screen and (max-width: 480px){
            .time-wrap .time > ul > li:nth-child(1) {border-radius: 10px 0 10px 0;}
            .time-wrap .time > ul > li:nth-child(1)::before {width: 30px; height: 30px; left: -35px;}
            .time-wrap .time > ul ul > li:first-child {width: 85px;}
            .time-wrap .time h4 {font-size: 20px;}
            .time-wrap .time .notice p {font-size: 15px;}
            
            .btm .right ul {margin-top: 20px;}
            }

            /* ===================== Mobile size : 380px ======================= */

            @media screen and (max-width: 380px){
            
            }

            .info_kakao img{
                    max-width: 280px;
            }

            .about06-area1{
                
            }

            .about06-area1 .about06-info{
                display: flex;
                justify-content: space-between;
                gap: 40px;
            }

            .about06-area1 .about06-info > div{
                display: flex;
                justify-content: center;
                overflow: hidden;
                border-radius: 30px;
                box-shadow: 0px 0px 15px #44444436;
            }

            @media screen and (max-width: 769px){
                .about06-area1 .about06-info{
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
                    gap: 0px;
                }
                .about06-area1 .about06-info > div{
                    margin: 30px;
                }
            }

            .about06-area .root_daum_roughmap{
                width: 100%;
            }
            .about06-area .root_daum_roughmap .cont{
                max-width: 1000px;
                margin: 0 auto;
            }

        .agd {
			overflow: hidden;
			position: relative;
			height: 780px;
		}
		.agd h2{
			font-size: 50px;
			margin-top: 40px;
			margin-bottom: 80px;
		}
		
		.sub2-deco {
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			position: absolute;
			display: flex;
			justify-content: center;
			align-items: center;
		}
		.agd .middle-title{
			display: flex;
			align-items: center;
			justify-content: center;
			flex-direction: column;
			margin-top: 70px;
			margin-bottom: 0;
		}
		.agd .middle-title span{
			display: flex;
			align-items: center;
			justify-content: center;
		}
		.agd .middle-title span{
			font-size: 32px;
		}
		.agd .middle-title span img{
			width: 34px;
			margin-right: 8px;
		}
		.sub2-deco img {
			max-width: 600px;
		}
		.agd .inner {
			 height: 100%;
			display: flex;
			justify-content: center;
			align-items: center;
		}
		
		@media(max-width:456px) {
			.agd h2{
				font-size: 28px;
				margin-top: 20px;
				margin-bottom: 40px;
			}
			.agd .middle-title span{
				font-size: 18px;
			}
			.agd .middle-title span img{
				width: 18px;
				margin-right: 8px;
			}
		}
        .block-digital {
	    	width: 66.6% !important;
	    }
       
        .sp2-area2 .deco{
            position: absolute;
            display: block;
            bottom: -80px;
        }
        .sp2-area2 .deco img{
            height: 150px;
        }
        .sp2-area2 .deco1{
            left: -130px;
        }
        .sp2-area2 .deco2{
            right: -130px;
        }

        .sub2-4-ab{
            display: flex;
            gap: 40px;
            justify-content: center;

        }
        .sub2-4-ab div{
            max-width: 468px;
        }

        @media(max-width:769px) {
			.agd {
				height: 480px;
			}
			.sub2-deco img {
				max-width: 300px;
			}
			.agd h2{
				font-size: 32px;
				margin-top: 20px;
				margin-bottom: 40px;
			}
			.agd .middle-title span{
				font-size: 24px;
			}
			.agd .middle-title span img{
				width: 24px;
				margin-right: 8px;
			}

            .sp2-area2 .deco{
                bottom: -70px;
            }
            .sp2-area2 .deco img{
                height: 80px;
            }
            .sp2-area2 .deco1{
                left: 10px;
            }
            .sp2-area2 .deco2{
                right: 10px;
            }

            .sub2-4-ab{
                align-items: center;
                flex-direction: column;
                gap: 20px;
                justify-content: center;
            }
		}

        .sub2-4-count{
            padding: 200px 0 !important;
            margin-top: 150px;
            color: #fff;
            background: url(../img/custom/sub2-4-bg.png) center/cover no-repeat;
        }

        .sub2-4-count-con > div{
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            font-size: 25px;
        }
        .sub2-4-count-con h3{
            font-size: 70px;
        }
        .sub2-4-count-con > div > span:first-child{
            display: flex;
            align-items: end;
            gap: 10px;
        }
        .sub2-4-count-con > div > span:first-child > span:last-child{
            margin-bottom: 12px;
        }

        .sub3-3-box-con > li{
            padding: 10px;
        }
        .sub3-7-box > div{
            padding: 20px;
        }
        .sub3-7-area02 {
            padding-bottom: 120px;
        }

        @media(max-width:769px) {
            .sub2-4-count-con > div{
                margin-top: 40px;
            }
            .sub3-7-box > div:last-child{
                margin-top: 40px;
            }
        }


/* ============= imp-insurance ============== */
.imp-insurance {
    text-align: center;
}

.denture-area1{
    padding-bottom: 120px;
    color: #000;
}

.insurance-box {
    border: 2px solid #eee;
    padding: 60px 0;
    background: url(../img/custom/imp_insurance.jpg) no-repeat;
    background-size: cover;
    background-position: center bottom;
}
.insurance-box .point {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.insurance-box .point li:nth-child(2) {
    margin: 0 20px;
}
.insurance-box .point li h1 {
    font-size: 90px;
    font-family: 'GmarketSansMedium';
    transform: skew(-0.1deg);
    letter-spacing: -3px;
}
.insurance-box .point li p {
    display: inline-block;
    padding: 2px 10px;
    font-weight: 600;
    background-color: #f5f5f5;
}
.insurance-box .point li:last-child h1 {
    font-family: 'GmarketSansBold';
    transform: skew(-0.1deg);
}
.insurance-box .point li:last-child p {
    background-color: #d9dfee;
}

.insurance-box .info {
    position: relative;
    margin: 40px auto 0;
    padding: 15px 30px 15px 40px;
    width: 100%;
    max-width: 550px;
    border: 2px solid #eee;
    text-align: left;
    background: #fff;
}
.insurance-box .info::before {
    position: absolute;
    content: '';
    display: block;
    left: 0;
    top: 0;
    width: 15px;
    height: 100%;
    background-color: #000000;
}
.insurance-box .info li {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 2px solid #eee;
}
.insurance-box .info li:last-child {
    border-bottom: none;
}
.insurance-box .info li h6 {
    margin-right: 30px;
    font-weight: 500;
}
.insurance-box .info li p {
    white-space: pre-line;
}


/*================================================================ 769px 이하 ================================================================= */
@media screen and (max-width: 769px) {
    /* ============= imp-insurance ============= */
    .insurance-box {
        padding: 40px 10px;
    }
    .insurance-box .point li h1 {
        font-size: 70px;
    }
    .insurance-box .info::before {
        width: 10px;
    }
}
/*================================================================ 425px 이하 ================================================================= */
@media screen and (max-width: 425px) {
    /* ============= imp-insurance ============= */
    .insurance-box {
    }
    .insurance-box .point li h1 {
        font-size: 50px;
    }
    .insurance-box .info {
        padding: 10px 20px;
        margin: 20px auto 0;
    }
    .insurance-box .info::before {
        width: 5px;
    }
    .insurance-box .info li {
        padding: 15px 0;
    }
    .insurance-box .info li h6 {
        margin-right: 20px;
    }
}

/*========================================================================================================================================= */
/*======================================================== sub etc style ================================================================== */
/*========================================================================================================================================= */
