/* common */

/* 서브페이지 배너 */
.banner-bg-01.banner-bg {
  background: url(../img/sub/banner_01.jpg) center/cover no-repeat;
}
.banner-bg-02.banner-bg {
  background: url(../img/sub/banner_02.jpg) center/cover no-repeat;
}
.banner-bg-03.banner-bg {
  background: url(../img/sub/banner_03.jpg) center/cover no-repeat;
}
.banner-bg-04.banner-bg {
  background: url(../img/sub/banner_04.jpg) center/cover no-repeat;
}
.banner-bg-05.banner-bg {
  background: url(../img/sub/banner_05.jpg) center/cover no-repeat;
}
.banner-bg-06.banner-bg {
  background: url(../img/sub/banner_06.jpg) center/cover no-repeat;
}

/* common */
.banner-bg {
    padding: 320px 0;
}
.banner-bg h2 {
    color: #fff;
    text-align: center;
}
.banner-bg p {
    color: #fff;
    text-align: center;
    font-size: 13px;
    letter-spacing: 0.6rem;
}


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

/*================================================================ 1200px 이하 ================================================================= */
@media screen and (max-width: 1200px) {
  .banner-bg {
    padding: 220px 0;
  }
}

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

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

/*================================================================ 769px 이하 ================================================================= */
@media screen and (max-width: 769px) {
  .banner-bg {
    padding: 120px 0;
  }
}

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

/*================================================================ 425px 이하 ================================================================= */
@media screen and (max-width: 425px) {
  .banner-bg {
    padding: 80px 0;
  }
}

/*========================================================================================================================================= */
/*================================================================ banner ================================================================= */
/*========================================================================================================================================= */


/* ===== 상단 라벨 pagination ===== */
.info-interior{
  background-color: #ece7e0;
  overflow: hidden;
}

.info-interior .top-pagination {
  position: relative;
  margin: 0 auto 22px;
  overflow: auto;
  top: -50px;
  /* 스크롤 힌트 감추기용 */
  scrollbar-width: none;
}

.info-interior .top-pagination .swiper-pagination {
  display: flex;
  align-items: center;
  gap: 28px;
  min-width: max-content;
  padding: 0 6px;
  justify-content: space-between;
}
/* 연결선 */
.info-interior .top-pagination .swiper-pagination::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 22px;
  height: 2px;
  background: #9f9f9f;
  z-index: 0;
}

/* 각 라벨(불릿) */
.info-interior .top-pagination .swiper-pagination-bullet {
  position: relative;
  z-index: 1;
  opacity: 1;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  justify-content: center;
}
.top-pagination .swiper-pagination-bullet .label {
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  color: #7a7a7a;
  transition: color 0.25s ease;
}
.info-interior .top-pagination .swiper-pagination-bullet .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #9f9f9f;
  box-shadow: 0 0 0 6px #fff inset; /* 라인 위에 살짝 떠 보이게 */
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
/* 활성 라벨 */
.info-interior .top-pagination .swiper-pagination-bullet-active .label {
  color: #b08f51;
}
.info-interior .top-pagination .swiper-pagination-bullet-active .dot {
  background: #3d3337;
  transform: scale(1.1);
}

/* ===== 메인 슬라이더 ===== */
.info-interior .gallery {
  position: relative;
}
.info-interior .swiper {
  width: 100%;
  border-radius: 24px;
  overflow: visible;
  /* background: #ddd; */
}
.info-interior .swiper-slide {
  height: 56vw; /* 모바일에서 세로 비율 */
  max-height: 540px; /* 데스크톱 상한 */
  min-height: 240px;
  border-radius: 30px;
  overflow: hidden;
}
.info-interior .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 네비 버튼 */
.info-interior .swiper-button-prev,
.info-interior .swiper-button-next {
  /* transform: translateY(-50%); */
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(4px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}
.info-interior .swiper-button-prev::after,
.info-interior .swiper-button-next::after {
  font-size: 16px;
  color: #333;
  font-weight: 700;
}
.info-interior .swiper-button-prev {
  left: 18px;
}
.info-interior .swiper-button-next {
  right: 18px;
}
.info-interior .swiper-button-disabled {
  opacity: 0.35;
}

/* 반응형 미세 조정 */
@media (min-width: 768px) {
  .info-interior .top-pagination .swiper-pagination {
    gap: 38px;
  }
  .info-interior .top-pagination .swiper-pagination::before {
    top: 7px;
  }
  .info-interior .top-pagination .swiper-pagination-bullet {
    height: 16px;
    width: 16px;
    background-color: #9f9f9f;
  }
  .info-interior
    .top-pagination
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #b08f51;
  }
  .info-interior .top-pagination .swiper-pagination-bullet .label {
    font-size: 16px;
    transform: translateY(-25px);
  }
  .info-interior .swiper-button-prev,
  .info-interior .swiper-button-next {
    width: 48px;
    height: 48px;
  }
}
@media (min-width: 1024px) {
  .info-interior .swiper-slide {
    max-height: 620px;
    border-radius: 28px;
  }
  .info-interior .top-pagination {
    overflow: visible;
  }
}


/* 모바일 커스텀 */
.info-interior-name_m{
  display: none;
  text-align: center;
}
.info-interior-name_m h3{
  font-size: 24px;
  font-weight: 800;
  display: inline-block;
  position: relative;
}
.info-interior-name_m h3::after{
  content: '';
  position: absolute;
  transform: translateY(50%);
  top: 25%;
  right: -20px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background-color: #3d3337;
}
.info-interior-name_m h3::before{
  content: '';
  position: absolute;
  transform: translateY(50%);
  top: 25%;
  left: -20px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background-color: #3d3337;
}
@media(max-width:769px) {
    .info-interior-name_m{
        display: block;
    }
}




/*========================================================================================================================================= */
/*================================================================ banner ================================================================= */
/*========================================================================================================================================= */

/*============================================================================================================================================= */
/*================================================================ sub1 style ================================================================= */
/*============================================================================================================================================= */

/* =========== info-dentist======== */
/* 탭 메뉴 스타일 */
.dentist .tab-btn {
    display: flex;
    margin: 20px 0 40px;
}
.dentist .tab-btn input {
    display: none;
}
.dentist .tab-btn label {
    display: inline-block;
    padding: 15px 25px;
    text-align: center;
    border: 1px solid #ccc;
    color: #bbb;
    background-color: #fff;
}
.dentist .tab-btn label:hover {
    color: #3d3337;
    cursor: pointer;
    transition: all ease 0.3s;
}
.dentist .tab-btn input:checked + label {
    color: #fff;
    background-color: #3d3337;
    transition: all ease 0.3s;
}

/* 탭 메뉴 내용 스타일 */
.dentist .tab-content {
}
#tab-content2,
#tab-content3,
#tab-content4,
#tab-content5 {
    display: none;
}
.dentist .tab-content > ul {
    display: flex;
    width: 100%;
    background: url(../img/sub/logo.png) no-repeat;
    background-position: right bottom;
    background-size: auto;
}
.dentist .tab-content > ul > li {
    width: 50%;
}
.dentist .tab-content > ul > li:last-child {
    margin-left: 30px;
}
.dentist .tab-content .tab-name {
    border-bottom: 2px dotted #ddd;
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.dentist .tab-content .tab-name > div {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.dentist .tab-content .tab-name > div h3 {
    font-weight: 900;
}
.dentist .tab-content .tab-name > div span {
    font-size: 0.6em;
    font-weight: 800;
}
.dentist .tab-content .tab-name p {
    font-weight: 700;
}
.dentist .tab-content .disc-list {
    list-style-type: disc;
    margin-left: 20px;
}
.dentist .tab-content .disc-list li {
    line-height: 1.8;
}


/* =========== info-equipment ======== */
#equipment li:nth-child(n + 4):nth-child(-n + 99) {
    margin-top: 20px;
}
#equipment li h5 {
    margin-top: 10px;
    font-family: 'NanumSquare', san-serif;
    transform: skew(-0.1deg);
    font-weight: 800;
}
#equipment li img {
    width: 100%;
    border: 1px solid #eee;
}

/* =========== info-time ======== */
.time-table * {
    text-align: center;
}
.time-table ul {
    display: flex;
    justify-content: center;
    max-width: 1000px;
    width: 100%;
    margin: 40px auto 0;
}
.time-table ul li {
    width: 100%;
}
.time-table ul li:last-child {
    margin-left: 50px;
}
.time-table h6 {
    padding: 5px 0;
    font-family: 'NanumSquare', san-serif;
    font-weight: 700;
    transform: skew(-0.1deg);
    font-size: 20px;
}
.time-table h6:nth-of-type(2n) {
    padding: 10px 0;
}
.time-table h6:nth-of-type(2n-1) {
    background-color: #f0f0f0;
    font-weight: 800;
}
.time-table h6.night-time {
    position: relative;
    background: #00000000;
    color: #000;

    transition: all 0.7s;
}
.time-table h6.night-time::after {
    content:'';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 100%;
    background: #3d3337;
    z-index: -1;

    transition: all 0.7s;
}
  .time-table h6.night-time.active {
    color: #fff;
}
 .time-table h6.night-time.active::after {
    right: 0;
}
.time-table article {
    margin-top: 80px;
}
.time-table article img {
    margin-right: 20px;
}


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

/*================================================================ 1200px 이하 ================================================================= */
@media screen and (max-width: 1200px) {
    .time-table article {
        margin-top: 40px;
    }
}

/*================================================================ 1025px 이하 ================================================================= */
@media screen and (max-width: 1025px) {
    .dentist .tab-content > ul {
        background-size: 30%;
    }
}

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

/*================================================================ 769px 이하 ================================================================= */
@media screen and (max-width: 769px) {
    /* =========== info-dentist ======== */
    .dentist .tab-btn {
        margin: 20px auto 40px;
        flex-direction: column;
        max-width: 350px;
    }
    .dentist .tab-btn label {
        padding: 8px 15px;
    }

    .dentist .tab-content .tab-name > div {
        display: block;
    }
    .dentist .tab-content img {
        max-width: 350px;
        width: 100%;
    }
    .dentist .tab-content > ul {
        display: block;
        background: none;
    }
    .dentist .tab-content > ul > li {
        width: 100%;
        text-align: center;
    }
    .dentist .tab-content > ul > li:last-child {
        margin: 20px 0 0 0;
    }
    .dentist .tab-content .disc-list {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        max-width: 400px;
        margin: 0 auto;
        text-align: left;
    }

    /* =========== info-time ======== */
    .time-table ul {
        display: block;
        max-width: 500px;
        margin: 0 auto;
    }
    .time-table ul li img {
        width: 70%;
    }
    .time-table ul li:last-child {
        margin: 40px auto 0;
    }
    .time-table h6 {
        font-size: 18px;
    }
}

/*================================================================ 600px 이하 ================================================================= */
@media screen and (max-width: 600px) {
    /* =========== info-equipment ======== */
    #equipment li {
        width: 50%;
    }
    #equipment li:nth-child(n + 3):nth-child(-n + 99) {
        margin-top: 20px;
    }

    /* =========== info-time ======== */
    .time-table ul li:last-child {
        max-width: 320px;
    }
    .time-table article img {
        max-width: 50px;
    }
}

/*================================================================ 425px 이하 ================================================================= */
@media screen and (max-width: 425px) {
    /* =========== info-dentist ======== */
    .dentist .tab-btn {
        margin: 10px auto 30px;
    }

    .dentist .tab-content .tab-name > div h3 {
        font-size: 32px;
    }
    .dentist .tab-content .tab-name p {
        font-size: 14px;
    }
    .dentist .tab-content .disc-list {
        max-width: 260px;
    }
    .dentist .tab-content .disc-list li {
        font-size: 14px;
    }

    /* =========== info-equipment ======== */
    #equipment > li > div.m10 {
        margin: 5px;
    }

    /* =========== info-time ======== */
    .time-table ul {
        width: 100%;
    }
    .time-table h6 {
        font-size: 16px;
    }
    .time-table article {
        margin-top: 30px;
    }
    .time-table article img {
        max-width: 40px;
        margin-right: 15px;
    }
}

/*============================================================================================================================================= */
/*================================================================ sub1 style ================================================================= */
/*============================================================================================================================================= */

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

/* ============= imp-navigation ============ */
.imp-navi-area1 article {
    margin-top: 60px;
    text-align: center;
}
.imp-navi-area1 article * {
    white-space: pre-line;
}
.imp-navi-area1 article h5 {
    position: relative;
    display: inline-block;
    margin: 0 auto;
    border-bottom: 5px solid #d9dfee;
    border-top: 5px solid #d9dfee;
    padding: 30px 100px;
    font-weight: 500;
}
.imp-navi-area1 article h5::before,
.imp-navi-area1 article h5::after {
    position: absolute;
    font-size: 80px;
    font-weight: 600;
    line-height: 1;
}
.imp-navi-area1 article h5::before {
    content: '“';
    left: 0;
    top: 0;
}
.imp-navi-area1 article h5::after {
    content: '”';
    right: 0;
    top: 0;
}

/* ============= imp-highlevel ============ */
.imp-high-area1 ul.flex > li > div img {
    border: 1px solid #ccc;
    border-radius: 50%;
}


/* ============= imp-denture ============ */
.imp-den-area1 .line-box li > div {
    height: 200px;
}

.imp-den-area2 table {
    width: 100%;
}
.imp-den-area2 table tr {
    border-top: 1px solid #eee;
    border-left: 1px solid #eee;
    display: flex;
}
.imp-den-area2 table tr td {
    border-right: 1px solid #eee;

    width: 40%;
    text-align: center;
}
.imp-den-area2 table tr:last-child td {
    border-bottom: 1px solid #eee;
}
.imp-den-area2 table tr:first-child td {
    background: #f5f5f5;
    font-weight: 800;
}
.imp-den-area2 table tr:first-child td:nth-child(2) {
    background: #feeadf;
}
.imp-den-area2 table tr td:first-child {
    width: 20%;
    background: #f5f5f5;
    font-weight: 800;
}
.imp-den-area2 table tr:first-child td:not(:nth-child(2)) p {
    color: #fff;
}
.imp-den-area2 table tr td:last-child p {
    color: #314e42;
    font-weight: 800;
}
.imp-den-area2 table tr:not(:first-child) td {
    padding: 15px 5px;
}

.imp-den-area2 .middle-title p {
    display: inline-block;
    padding: 4px 14px;
    color: #fff;
    background: #314e42;
}

/* ============= imp-oneday ============ */
.imp-oneday-area1 .line-box li > div {
    height: 250px;
}

/* ============= imp-caution ============ */
.imp-caution-area1 .line-box li > div {
    height: 300px;
}

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

.insurance-box {
    border: 2px solid #eee;
    padding: 60px 0;
    background: url(../img/sub/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: #b08f51;
    color: #fff;
}

.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: #4d4e52;
}
.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: 700;
}
.insurance-box .info li p {
    white-space: pre-line;
}

/* =========== gum-therapy =========== */
.gum-therapy-area2 .basic-box li:first-child {
    text-align: center;
}
.gum-therapy-area2 .basic-box li:last-child {
    flex: 2;
}

/* =========== root-canal =========== */
.root-canal-area1 ul.flex > li:nth-child(n + 4):nth-child(-n + 5) {
    margin-top: 20px;
}
.root-canal-area2 ul.flex img {
    max-width: 90px;
}

/* =========== replantation =========== */
.rep-area1 ul.flex > li:nth-child(n + 4):nth-child(-n + 5) {
    margin-top: 30px;
}

/* =========== chin =========== */
.chin-area1 ul.flex > li:nth-child(n + 4):nth-child(-n + 5) {
    margin-top: 30px;
}
.chin-area1 ul.flex img {
    width: 100%;
}

/* =========== prosthetic =========== */
.prosthetic-area1 img {
    max-width: 350px;
}

/* =========== whitening =========== */
.whitening-area1 {
    background: #ebf4f2 !important;
}

/* =========== children =========== */
.children-area1 .middle-title {
    background-color: #f6f4f5;
    border-radius: 30px;
    padding: 40px 20px;
}
.children-area2 {
    background-color: #f5faff;
    padding: 80px 0;
}
.children-area3 {
    background: linear-gradient(to right, #c4dcf9, #e3f1ff 20%);
    border-radius: 30px;
    padding: 40px 20px;
}
.children-area4 > li > div {
    padding: 20px 5px;
    border: 2px solid #3d3337;
    border-radius: 15px;
}

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

/*================================================================ 1200px 이하 ================================================================= */
@media screen and (max-width: 1200px) {
    .navi h5::before,
    .navi h5::after {
        font-size: 60px;
    }
}

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

/*================================================================ 900px 이하 ================================================================= */
@media screen and (max-width: 900px) {
    /* =========== prosthetic =========== */
    .prosthetic-area1.table-wrap table {
        min-width: 700px;
    }
}

/*================================================================ 769px 이하 ================================================================= */
@media screen and (max-width: 769px) {
    /* ============= imp-navigation ============ */
    .imp-navi-area1 article h5 {
        padding: 10px 0;
        display: block;
        width: 100%;
        max-width: 600px;
    }
    .imp-navi-area1 article h5::before,
    .imp-navi-area1 article h5::after {
        font-size: 50px;
        height: 40px;
        position: relative;
        width: 100%;
        display: block;
        top: 0;
    }
    .imp-navi-area1 article h5::after {
        margin-top: 5px;
    }

    /* ============= imp-denture ============ */
    .imp-den-area2 table tr:not(:first-child) td {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        height: 60px;
    }

    /* ============= imp-insurance ============= */
    .insurance-box {
        padding: 40px 10px;
    }
    .insurance-box .point li h1 {
        font-size: 70px;
    }
    .insurance-box .info::before {
        width: 10px;
    }

    /* ============= imp-caution ============ */
    .imp-caution-area1 .line-box .num::before {
        margin: 0;
    }
    .imp-caution-area2 .num-list {
        max-width: 400px;
        margin: 20px auto 0;
    }

    /* =========== gum-therapy =========== */
    .gum-therapy-area2 .basic-box img {
        max-width: 250px;
    }

    /* =========== root-canal =========== */
    .root-canal-area1 ul.flex > li:nth-child(n + 3):nth-child(-n + 5) {
        margin-top: 20px;
    }

    /* =========== replantation =========== */
    .rep-area1 ul.flex > li:nth-child(n + 3):nth-child(-n + 5) {
        margin-top: 20px;
    }

    /* =========== chin =========== */
    .chin-area1 ul.flex > li:nth-child(n + 3):nth-child(-n + 5) {
        margin-top: 20px;
    }

    /* =========== aesthetic =========== */
    .aesthetic-area1 .num-list {
        max-width: 400px;
        margin: 0 auto;
    }
}

/*================================================================ 600px 이하 ================================================================= */
@media screen and (max-width: 600px) {
    /* ============= imp-navigation ============ */
    .imp-navi-area1 ul.flex > li {
        width: 100%;
    }
    .imp-navi-area1 ul.flex > li:not(:first-child) {
        margin-top: 20px;
    }

    /* =========== gum-therapy =========== */
    .gum-therapy-area1 ul.flex > li {
        width: 50%;
    }

    /* =========== root-canal =========== */
    .root-canal-area2 ul.flex img {
        max-width: 50px;
    }
}

/*================================================================ 425px 이하 ================================================================= */
@media screen and (max-width: 425px) {
    /* ============= imp-navigation ============ */
    .imp-navi-area1 article::before,
    .imp-navi-area1 article:after {
        font-size: 35px;
        height: 25px;
    }

    /* ============= imp-highlevel ============ */
    .imp-high-area2.table-wrap table {
        min-width: 550px;
    }
    .imp-high-area2.table-wrap table td {
        padding: 10px 5px;
    }

    /* ============= imp-denture ============ */
    .imp-den-area2 table tr:not(:first-child) td {
                height: 80px;
        font-size: 12px;
        line-height: 1.4;
        font-weight: 800;
    }

    /* ============= 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;
    }

    /* ============= imp-caution ============ */
    .imp-caution-area2 .num-list {
        max-width: 280px;
        margin: 10px auto 0;
    }

    /* =========== gum-therapy =========== */
    .gum-therapy-area2 .basic-box img {
        max-width: 180px;
    }

    /* =========== root-canal =========== */
    .root-canal-area1 ul.flex > li:nth-child(n + 3):nth-child(-n + 5) {
        margin-top: 0;
    }
    .root-canal-area2 ul.flex > li > div {
        margin: 5px;
    }

    /* =========== chin =========== */
    .chin-area1 ul.flex > li:nth-child(n + 3):nth-child(-n + 5) {
        margin-top: 5px;
    }
    .chin-area1 ul.flex > li > div {
        margin: 5px;
    }

    .chin-area2 ul.flex img {
        max-width: 250px;
    }
    .chin-area2 ul.flex > li:not(:first-child) {
        margin-top: 20px;
    }

    /* =========== prosthetic =========== */
    .prosthetic-area1 img {
        max-width: 200px;
    }
    .prosthetic-area1.table-wrap table {
        min-width: 500px;
    }

    /* =========== aesthetic =========== */
    .aesthetic-area1 .num-list {
        max-width: 260px;
    }

    /* =========== children =========== */
    .children-area1 .middle-title {
        padding: 30px 15px;
    }
    .children-area2 {
        padding: 40px 0;
    }
    .children-area3 {
        padding: 30px 15px;
    }
    .children-area4 > li > div {
        padding: 10px 5px;
        margin: 5px !important;
    }
}

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

/* 이미지 섹션 */
.image_section {
    padding-bottom: 0 !important;
}


/* 케이스 */
.case-section {
    background-color: #e8e4d9;
    padding-bottom: 120px;
}
.case-content .tit {
    margin-top: 50px;
}
ul.flex .date {
    position: absolute;
    left: 0;
    top: 0;
    padding: 2px 10px;
    color: #fff;
    font-weight: 900;
    background: #4d4e52;
}
.case-content .img {
    width: 100%;
    position: relative;
    display: inline-block;
}
.case-content .img img{
    width: 100%;
}
.case-content .img h6 {
    position: absolute;
    left: 50%;
    bottom: -23px;
    transform: translateX(-50%);
    padding: 5px;
    width: 230px;
    border-radius: 40px;
    z-index: 1;
    text-align: center;
    color: #fff;
    background: #4d4e52;
    font-family: 'NanumSquare', san-serif;
    font-weight: 700;
    font-size: 20px;
}

h6.case-tit {
    margin: 120px auto 20px auto;
    padding: 5px 20px;
    width: 170px;
    border-radius: 40px;
    z-index: 1;
    text-align: center;
    color: #fff;
    background: #b08f51;
    font-family: 'NanumSquare', san-serif;
    font-weight: 700;
}

h6.case-tit:first-of-type{
    margin: 20px auto;
}

.case-content .img h6.case-bf-tit {
    background: #4d4e52;
}
.case-content .img h6.case-af-tit {
    background: #b08f51;
}

@media(max-width:769px) {
    .case-content .img h6{
        width: 35vw;
        font-size: 14px;
    }
}

.bd-tit {
    padding: 15px 10px;
    text-align: center;
    margin-top: 40px;
    color: #fff;
    background: #3d3337;
    font-weight: 900;
    font-family: 'NanumSquare', san-serif;
}
.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;
}

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



/* info-map */
.info-map{
    background-color: #ece7e0;
}
.info-map h4.info-map-title-con {
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.info-map p {
  font-size: 18px;
}
.info-map h4.info-map-title-con > span:first-child{
  flex-shrink: 0;
}
.info-map h4.info-map-title-con img {
  height: 35px;
  width: 35px;
}
.info-map .info-map-sub {
  font-size: 24px;
  font-weight: 800;
}
.info-map h2.info-map-sub{
  font-weight: 800;
}
.info-map-sub .info-time {
  display: flex;
  gap: 30px;
}
.info-map-sub .info-time li:nth-child(1) {
  width: 20%;
}
.info-map-category .info-map-category-box{
  text-align: left;
  display: flex;
  justify-content: space-between;
  background-color: #ffffff;
  border-radius: 30px;
  padding: 20px;
  margin: 10px;
}
.info-map-category .info-map-category-box p {
  font-size: 18px;
}
.info-map-category .info-map-category-box strong {
  font-weight: 800;
  font-size: 28px;
  color: #3d3337;
}
.info-map-category .info-map-category-box .info-map-category-box-con > div{
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  height: 170px;
}
.info-map-category .info-map-category-box .info-map-category-box-con > div:first-child{
  border-bottom: 1px solid #00000010;
}

.info-map-category .info-map-category-block:nth-child(1){
  width: 50%;
}
.info-map-category .info-map-category-block:nth-child(2){
  width: 50%
}
.info-map-category .info-map-category-block:nth-child(2)
.info-map-category-box
.info-map-category-box-con
> div:first-child{
  border-bottom: 1px solid #ffffff10;
}
.info-map-category .info-map-category-block:nth-child(2)
.info-map-category-box
.info-map-category-box-con:last-child
> div:first-child {
  border-bottom: 1px solid #ffffff67;
}
.info-map-category .info-map-category-block:nth-child(2)
.info-map-category-box{
  background-color: #3d3337;
  color: #fff;
}
.info-map-category .info-map-category-block:nth-child(2)
.info-map-category-box strong {
  color: #fff;
}

@media(max-width:1200px) {
  .info-map .info-map-sub{
    font-size: 20px;
  }
  .info-map-btn a{
    font-size: 18px;
    padding: 8px;
  }
}
@media(max-width:769px) {

  .info-map-btn {
    max-width: 100%;
  }

  .info-map-btn a{
    font-size: 18px;
    padding: 2px;
  }

  .info-map .info-map-sub{
    font-size: 18px;
  }
  .info-map-category .info-map-category-box .info-map-category-box-con > div {
    max-height: 170px;
    height: auto;
  }
  .info-map-category .info-map-category-box p{
    font-size: 16px;
    font-weight: 700;
  }
  .info-map-category .info-map-category-block:nth-child(1) {
    width: 100%;
  }
  .info-map-category .info-map-category-block:nth-child(2) {
    width: 100%;
  }
}



/* sub */

/* sub2-1 */
.sub2-1-banner{
    padding: 120px 0;
    color: #fff;
    background: url(../img/sub/sub2-1-banner-bg.jpg) center/cover no-repeat;
}

.sub2-1-area2{
    background-color: #f8f5f0;
    padding-bottom: 120px;
}

.sub2-box1-con{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.sub2-box1{
    width: 33.333%;
}

.sub2-box1 > div{
    height: stretch;
    margin: 20px;
    border-radius: 20px;
    border: 1px solid #b08f51;
    background-color: #fff;
    padding: 30px;
    box-sizing: border-box;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sub2-box1:nth-child(1) > div{
    background: url(../img/sub/sub2-1-box1-bg.jpg) right/cover no-repeat;
}
.sub2-box1:nth-child(2) > div{
    background: url(../img/sub/sub2-1-box2-bg.jpg) right/cover no-repeat;
}
.sub2-box1:nth-child(3) > div{
    background: url(../img/sub/sub2-1-box3-bg.jpg) right/cover no-repeat;
}

.sub2-box1 h3 {
    color: #b08f51;
}
.sub2-box1 .sub2-up {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.sub2-box1 .sub2-down {
    margin-top: 80px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.sub2-down >  span {
    font-size: 14px;
    border: 1px solid #b08f51;
    border-radius: 999px;
    padding: 6px 16px;
    line-height: 1;
    color: #b08f51;
    display: inline-block;
}

.sub2-1-area3 ul:nth-of-type(2n){
    flex-direction: row-reverse;
}
.sub2-1-area3 ul:nth-of-type(2n) .txt{
    margin-left: 40px;
}

.sub2-1-area4{
    margin-top: 120px;
    padding-bottom: 120px;
    background-color: #3d3337;
    color: #fff;
}

.sub2-1-area4 h4{
    font-weight: 700;
}

.sub2-1-area4 ul > li > div {
    margin: 10px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    color: #000;
    display: flex;
    flex-direction: column;
    padding: 30px;
    height: stretch;
}

.sub2-1-area5{
    background-color: #f8f5f0;
}
.sub2-1-area5 h5{
    font-weight: 700;
}
.sub2-1-area5 ul > li > div {
    margin: 10px;
    background-color: #3d3337;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    color: #fff;
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    gap: 4px;
    text-align: center;
    padding: 40px;
    height: stretch;
}

@media(max-width:769px) {
    .sub2-1-banner{
        padding: 80px 0;
        text-align: center;
        background: url(../img/sub/m_sub2-1-banner-bg.jpg) center/cover no-repeat;
    }
    .sub2-box1{
        width: 100%;
    }
    .sub2-box1 .sub2-down {
        margin-top: 40px;
    }
    
    .sub2-1-area2,
    .sub2-1-area4{
        padding-bottom: 80px;
    }
    .sub2-1-area3 ul:nth-of-type(2n){
        flex-direction: row;
    }
    .sub2-1-area3 ul:nth-of-type(2n) .txt{
        margin-left: 0px;
    }
    .sub2-1-area3 ul .txt{
        margin-bottom: 40px;
    }
}

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

.sp3-area1.bg-gray {
    padding: 80px 0;
    color: #fff;
}
.sp3-area1 .bg-animation {
    background: url(../img/sub/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: #b08f51;
}
.sp3-area3.bg-gray {
    padding: 40px 0;
    background: #3d3337;
    color: #fff;
}
.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/sub/special03_bg2.jpg) center/cover no-repeat;
}
.sp3-area5 .middle-title {
    text-align: left;
    margin: 40px 0 0;
}


/*================================================================ 769px 이하 ================================================================= */
@media screen and (max-width: 769px) {
    .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;
    }
}

/*================================================================ 600px 이하 ================================================================= */
@media screen and (max-width: 600px) {
    .sp3-area1 .bg-animation {
        background-position-x: -450px;
    }
}

/*================================================================ 425px 이하 ================================================================= */
@media screen and (max-width: 480px) {
    .sp3-area1 .bg-animation {
        background-position-x: -350px;
    }
    .sp3-area1 .progress-ring {
        width: 150px;
        height: 150px;
    }
}

/* sub2-3 */
.sub2-3-banner{
    padding: 160px 0 !important;
    background: url(../img/sub/sub2-3-banner-bg.jpg) center/cover no-repeat;
}
@media(max-width:769px) {
    .sub2-3-banner{
        padding: 80px 0 !important;
        text-align: center;
        background: url(../img/sub/m_sub2-3-banner-bg.jpg) center/cover no-repeat;
    }
}
.sp1-tit h2 {
    font-weight: 900;
    color: #d8ab72;
    opacity: 0.4;
    font-size: 68px;
}
.sp1-tit h5 {
    font-weight: 900;
}
.sp1-area1 {
    color: #fff;
}
.sp1-area1 .bg-animation {
    background: url(../img/sub/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: #b08f51;;
    padding: 40px 0;
    color: #fff;
}
.sp1-area3 ul.flex {
    align-items: flex-end;
}

.sp1-area3 ul:nth-of-type(2n) {
    flex-direction: row-reverse;
}

.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{
    padding-bottom: 200px !important;
}
.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;
}


/*================================================================ 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-area3 ul:nth-of-type(2n) {
        flex-direction: column-reverse;
    }
    .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;
    }
}

/*================================================================ 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/sub/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;
    }
}

/* sub2-4 */
.sub2-4-banner{
    padding: 160px 0 !important;
    background: url(../img/sub/sub2-4-banner-bg.jpg) center/cover no-repeat;
}
@media(max-width:769px) {
    .sub2-4-banner{
        padding: 80px 0 !important;
        text-align: center;
        background: url(../img/sub/m_sub2-4-banner-bg.jpg) center/cover no-repeat;
    }
}

.imp01-tit h6 {
    font-weight: 900;
}
.imp01-area1 ul.flex .txt {
    margin: 0 0 0 30px;
}

.imp01-area1 img{
    width: 100%;
}

.imp01-area1 ul.flex .middle-title {
    text-align: right;
    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:  left;
}


/*================================================================ 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-area1 ul.flex .middle-title {
        text-align: left !important;
    }
    .imp01-area2 article::before {
        display: none;
    }
}

/*================================================================ 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%;
    }
}


/* sub2-5 */
.sub2-5-banner{
    color: #fff;
    padding: 160px 0 !important;
    background: url(../img/sub/sub2-5-banner-bg.jpg) center/cover no-repeat;
}
@media(max-width:769px) {
    .sub2-5-banner{
        padding: 80px 0 !important;
        text-align: center;
        background: url(../img/sub/m_sub2-5-banner-bg.jpg) center/cover no-repeat;
    }
}


.sub2-5-area3{
    margin-top: 120px;
    padding-bottom: 120px;
    background-color: #ece7e0;
}

.sub2-5-area3 h4{
    font-weight: 700;
    font-size: 24px;
    color: #b08f51;
}

.sub2-5-area3 ul > li > div {
    margin: 10px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    color: #000;
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    height: stretch;
}

.sub2-5-area4 {
    background: url(../img/sub/sub2-5-area4-bg.jpg) center/cover no-repeat;
}

.sub2-5-area4 .middle-title h5 {
    font-size: 45px;
}

.sub2-5-area4-box{
    margin: 80px auto 0 auto;
    font-size: 35px;
    border-radius: 999px;
    background-color: #3d3337;
    text-align: center;
    color: #fff;
    padding: 30px 80px;
}

.sub2-5-area4 li:last-child img{
    max-width: 400px;
}

@media(max-width:1200px) {
    .sub2-5-area4-box{
        font-size: 28px;
    }
}

@media(max-width:769px) {
    .sub2-5-area3{
        padding-bottom: 80px;
    }
    .sub2-5-area4 {
        background: url(../img/sub/sub2-5-area4-bg.jpg) right/cover no-repeat;
    }
    .sub2-5-area4 li:last-child img{
        margin-top: 60px;
        max-width: 250px;
    }
    .sub2-5-area4-box{
        border-radius: 20px;
        font-size: 24px;
        padding: 20px;
    }
    .sub2-5-area4 .middle-title h5 {
        font-size: 35px;
    }
}

@media(max-width:429px) {
    .sub2-5-area4 .middle-title h5 {
        font-size: 28px;
    }
    .sub2-5-area4-box{
        border-radius: 15px;
        font-size: 18px;
    }
}



/* sub3-1 */

.aes01-area1.bg-gray {
    padding: 200px 0;
    color: #fff;
}
.aes01-area2.bg-gray {
    padding: 80px 0;
}
.aes01-area2 .bg-animation {
    background: url(../img/sub/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: #b08f51;
    z-index: -1;
}
.aes01-area3 .link-btn:hover {
    color: #fff;
    border: 1px solid #b08f51;
    font-weight: 700;
}
.aes01-area3 .link-btn:hover::before {
    width: 100%;
}
.aes01-area4 .notice {
    max-width: 540px;
}


/*================================================================ 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;
    }
}

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

/*================================================================ 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;
    }
}

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


/* sub3-3 */
.sub3-3-area1 {
    background-color: #f8f5f0;
    padding-bottom: 120px;
}

.sub3-3-area-box-con{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.sub3-3-area-box-con .sub3-3-area-box {
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 9px 10px 21px -3px rgba(0, 0, 0, 0.21);
    padding: 30px;
}

@media(max-width:769px) {
    .sub3-3-area-box-con .sub3-3-area-box{
        padding: 20px 10px;
    }
    .sub3-3-area1 img{
        margin: 20px 0px;
        width: 60% !important;
    }
}

/* sub3-4 */
.aes04-area1{
    background-color: #ece7e0;
    padding-bottom: 120px;
}
.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: #b08f51;
    z-index: -1;
}
.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: #3d3337;
}
.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: #b08f51;
    color: #fff;
}

/*================================================================ 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;
    }
}

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

    .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;
    }
}

/*================================================================ 425px 이하 ================================================================= */
@media screen and (max-width: 480px) {
    .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-area4 ul.flex .txt .mid {
        height: 150px;
        padding: 20px 10px;
    }
}

/* sub3-5 */

.aes05-area1.bg-gray {
    background: url(../img/sub/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;
}


/*================================================================ 900px 이하 ================================================================= */
@media screen and (max-width: 900px) {
    .aes05-area1 ul.flex > li:nth-child(n + 3):nth-child(-n + 4) {
        margin-top: 20px;
    }
}

/*================================================================ 600px 이하 ================================================================= */
@media screen and (max-width: 600px) {
    .aes05-area1 .list li:not(:first-child) {
        margin-top: 10px;
    }
}


/* sub4-1 */

.imp04-area1 .basic-box > li:first-child {
    text-align: right;
}
.imp04-area2.bg-gray {
    background: #ece7e0;
}
.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 {
    margin-top: 0;
    padding: 120px 0 0;
    color: #fff;
}
.imp04-area5 .bg-animation {
    background: url(../img/sub/imp04_bg1.jpg) center/cover no-repeat;
}


/*================================================================ 769px 이하 ================================================================= */
@media screen and (max-width: 769px) {
    .imp04-area1 .basic-box > li:first-child {
        text-align: center;
    }
    .imp04-area5.bg-gray {
        padding: 80px 0 0;
    }
}

/*================================================================ 425px 이하 ================================================================= */
@media screen and (max-width: 480px) {
    .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;
    }
}

/* =========== info-equipment ======== */
#imp04-equipment li:nth-child(n + 4):nth-child(-n + 99) {
    margin-top: 20px;
}
#imp04-equipment li h5 {
    margin-top: 10px;
    font-family: 'NanumSquare', san-serif;
    transform: skew(-0.1deg);
    font-weight: 800;
}
#imp04-equipment li img {
    width: 100%;
}

/*================================================================ 600px 이하 ================================================================= */
@media screen and (max-width: 600px) {
    /* =========== info-equipment ======== */
    #imp04-equipment li {
        width: 50%;
    }
    #imp04-equipment li:nth-child(n + 3):nth-child(-n + 99) {
        margin-top: 20px;
    }
}

/*================================================================ 425px 이하 ================================================================= */
@media screen and (max-width: 425px) {
    /* =========== info-equipment ======== */
    #imp04-equipment > li > div.m10 {
        margin: 5px;
    }
}

/* sub4-6 */

.sp5-area1 {
    color: #fff;
}
.sp5-area1 .bg-animation {
    background: url(../img/sub/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;
}
.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: #b08f51;
    font-weight: 900;
    font-family: 'NanumSquare', san-serif;
}
.sp5-area3 .notice {
    color: #8c8c8c;
}
.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;
}

/*================================================================ 1025px 이하 ================================================================= */
@media screen and (max-width: 1025px) {
    .sp5-area2 .list ul > li::before {
        font-size: 16px;
    }
}
/*================================================================ 769px 이하 ================================================================= */
@media screen and (max-width: 769px) {
    .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) {
    .sp5-area3 ul.flex:not(:first-child) {
        margin-top: 20px;
    }
}

/*================================================================ 425px 이하 ================================================================= */
@media screen and (max-width: 480px) {
    .sp5-area1.bg-gray {
        padding: 40px 0;
    }
    .sp5-area1 .bg-animation {
        background: url(../img/sub/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: #b08f51;;
    }
    .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;
    }
}

/* sub5-1 */

.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: #b08f51;
    z-index: -1;
}



.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/sub/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: #b08f51;;
}
.basic02-area5.bg-gray {
    padding: 0;
    color: #fff;
}
.basic02-area5 .bg-animation {
    background: url(../img/sub/basic02_13.jpg) center/cover no-repeat;
}
.basic02-area5 .middle-title {
    padding: 200px 0 180px;
}

.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: #b08f51;
    color: #fff;
    border-left: 2px solid #b08f51;
    border-right: 2px solid #b08f51;
}
.imp01-area4 .zirconia table tbody td:first-child {
    background: #d5d5d5;
}
.imp01-area4 .zirconia table tbody td:last-child {
    border-left: 2px solid #b08f51;
    border-right: 2px solid #b08f51;
}
.imp01-area4 .zirconia table tbody tr:last-child td:last-child {
    border-bottom: 2px solid #b08f51;
}
.imp01-area4 .zirconia table td:last-child p {
    font-weight: 900;
}
.imp01-area4 .zirconia .middle-title {
    margin-top: 60px;
    padding: 50px 10px;
    background: #ebebeb;
}

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


/*================================================================ 769px 이하 ================================================================= */
@media screen and (max-width: 769px) {
    .aes02-area1 .basic-box h3 {
        margin-bottom: 0;
    }
    .aes02-area1 .basic-box .img::before {
        left: -10px;
        top: -10px;
        border-radius: 20px;
    }

    .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;
    }
}

/*================================================================ 425px 이하 ================================================================= */
@media screen and (max-width: 480px) {
    .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%;
    }

    .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;
    }

    .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%;
    }
}

/* sub5-3 */

.aes05-area1.bg-gray {
    background: url(../img/sub/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: #b08f51;;
    color: #fff;
}


.basic01-area1 ul.flex p {
    margin-top: 20px;
    line-height: 1.5;
    color: #b08f51;;
}
.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: #b08f51 !important;
}
.basic01-area4.bg-gray {
    padding: 250px 0;
    color: #fff;
}
.basic01-area4 .bg-animation {
    background: url(../img/sub/basic01_bg1.jpg) center/cover no-repeat;
}

/*================================================================ 900px 이하 ================================================================= */
@media screen and (max-width: 900px) {
    .aes05-area1 ul.flex > li:nth-child(n + 3):nth-child(-n + 4) {
        margin-top: 20px;
    }
}

/*================================================================ 769px 이하 ================================================================= */
@media screen and (max-width: 769px) {
    .aes05-area2.bg-gray {
        padding: 60px 0;
        margin-top: 60px;
    }

    .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;
    }

}

/*================================================================ 600px 이하 ================================================================= */
@media screen and (max-width: 600px) {
    .aes05-area1 .list li:not(:first-child) {
        margin-top: 10px;
    }
}


/*================================================================ 425px 이하 ================================================================= */
@media screen and (max-width: 480px) {
    .aes05-area2.bg-gray {
        padding: 40px 0;
        margin-top: 40px;
    }

    .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;
    }
}

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

/* sub5-5 */

.basic05-area1 .list > li:not(:first-child) {
    margin-top: 15px;
}
.basic05-area1 .list p {
    padding: 15px 10px;
    text-align: center;
    font-weight: 700;
    background: #f5f0e6;
}
.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: #3e3337;
    color: #fff;
}
.basic05-area3 ul.flex > li > div {
    margin: 3px;
}
.basic05-area3 ul.flex .tit {
    padding: 8px 10px;
    color: #fff;
    background: #b08f51;
}
.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: #9c7938;
}
.basic05-area4 ul.flex > li:nth-child(3) .tit {
    background: #755313;
}
.basic05-area4 ul.flex > li:nth-child(4) .tit {
    background: #3e3337;
}
.basic05-area4 ul.flex p {
    height: 130px;
}

/*================================================================ 769px 이하 ================================================================= */
@media screen and (max-width: 769px) {
    .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%;
    }
}

/*================================================================ 425px 이하 ================================================================= */
@media screen and (max-width: 480px) {
    .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;
    }
}