/* 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: #e7f2ee;
  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: #37b0a1;
}
.info-interior .top-pagination .swiper-pagination-bullet-active .dot {
  background: #37b0a1;
  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: #37b0a1;
  }
  .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 > 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_dentist-deco{
    max-width: 150px;
    display: inline-flex;
    margin: 20px 0;
}

/* =========== 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: #e7f2ee;
    font-weight: 800;
}
.time-table h6.night-time {
    position: relative;
    background: #00000000;
    color: #37b0a1;

    transition: all 0.7s;
}
.time-table h6.night-time::after {
    content:'';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 100%;
    background: #37b0a1;
    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 {
        margin-bottom: 20px;
      }

    .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_dentist-deco{
        display: none;
    }

    /* =========== 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: #37b0a1;
    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;
}

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

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

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


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


.imp04-area1 .basic-box > li:first-child {
    text-align: right;
}
.imp04-area2.bg-gray {
    background: #e7f2ee;
}
.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;
    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;
    }
}

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

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

.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: #37b0a1;
    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: #37b0a1;;
    }
    .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;
    }
}

.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: #37b0a1;
    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: #37b0a1;;
}
.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: #37b0a1;
    color: #fff;
    border-left: 2px solid #37b0a1;
    border-right: 2px solid #37b0a1;
}
.imp01-area4 .zirconia table tbody td:first-child {
    background: #d5d5d5;
}
.imp01-area4 .zirconia table tbody td:last-child {
    border-left: 2px solid #37b0a1;
    border-right: 2px solid #37b0a1;
}
.imp01-area4 .zirconia table tbody tr:last-child td:last-child {
    border-bottom: 2px solid #37b0a1;
}
.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%;
    }
}

.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: #37b0a1;;
    color: #fff;
}


.basic01-area1 ul.flex p {
    margin-top: 20px;
    line-height: 1.5;
    color: #37b0a1;
}
.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: #37b0a1 !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;
    }
}

.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: #37b0a1;
}
.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;
    }
}

/*========================================================================================================================================= */
/*======================================================== 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: #37b0a1;
    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: #37b0a1;
}

@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: #41424a;
    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 {
  padding-bottom: 120px;
  background-color: #e7f2ee;
}
.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;
  flex-shrink: 0;
}
.info-map .info-map-sub {
    display: flex;
    flex-direction: column;
    font-size: 24px;
    font-weight: 800;
    gap: 4px;
}
.info-map h2.info-map-sub {
  font-weight: 800;
}

/* --- 진료시간 자간 및 양쪽 정렬 수정 영역 --- */
.info-map-sub .info-time {
  display: flex;
  gap: 80px;
  align-items: center;
}

/* 첫 번째 li (요일/제목) 영역 자간 균등 배분 */
.info-map-sub .info-time li:nth-child(1) {
    width: 150px;                   /* 폰트 크기(24px) 대비 적절한 너비로 조정 */
    text-align: justify;
    text-align-last: justify;
    text-justify: inter-character;  /* ★ 한글 글자 단위 자간 균등 배분 핵심 속성 */
    flex-shrink: 0;                 /* 너비 줄어듦 방지 */
    white-space: nowrap;
}
/* ------------------------------------------- */

/* 카카오 지도 박스 높이 등 레이아웃 보정 */
.info-map .root_daum_roughmap {
  width: 100% !important;
  border-radius: 15px;
  overflow: hidden;
}

/* 오시는 길 카테고리 카드 */
.info-map-category .info-map-category-box {
  text-align: center;
  background-color: #fff;
  box-shadow: 9px 10px 21px -3px #1a6db617;
  border-radius: 30px;
  padding: 20px;
}
.info-map-category .info-map-category-box strong {
  font-weight: 700;
  font-size: 24px;
}
.info-map-category .info-map-category-box > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  height: 150px;
}
.info-map-category .info-map-category-box > div:first-child {
  border-bottom: 1px solid #00000010;
}

/* 미디어 쿼리 (반응형) */
@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 h4.info-map-title-con{
    font-size: 16px;
  }
  .info-map {
    padding-bottom: 80px;
  }
  .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-sub .info-time {
    gap: 20px;
  }
  
  /* 모바일 화면에서 요일 항목 너비 자동 조정 */
  .info-map-sub .info-time li:nth-child(1) {
    width: 95px;
  }

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



/* sub */

/* sub2-1 */
.sub2-1 .basic-box:nth-of-type(2){
    text-align: right;
}

.sub2-1-banner {
    padding: 200px 0 !important;
}

.sub2-1-banner .sub2-1-banner-bg{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../img/sub/sub2-1-banner.jpg) center/cover no-repeat;
}

@media(max-width:769px) {
    .sub2-1 .basic-box:nth-of-type(2){
        text-align: center;
        flex-direction: column-reverse;
        display: inline-flex;
    }
    .sub2-1 .basic-box li:first-child{
        margin-top: 20px;
    }
    .sub2-1-banner {
        padding: 120px 0 !important;
    }
}

/* sub2-2 */

.sub2-2-banner{
    padding: 160px 0 !important;
    background: url(../img/sub/sub2-2-banner-bg.jpg) center/cover no-repeat;
}
.sub2-2-p {
    font-size: 28px;
}

.sub2-2-box strong {
    display: inline-block;
    padding: 40px 0;
    font-size: 35px;
    font-weight: 700;
}
@media(max-width:769px) {
    .sub2-2-banner{
        padding: 80px 0 !important;
        text-align: left;
        background: url(../img/sub/m_sub2-2-banner-bg.jpg) center/cover no-repeat;
    }
    .sub2-2-p {
        font-size: 18px;
    }
    .sub2-2-box strong {
        padding: 20px 0;
        font-size: 24px;
    }
}

@media(max-width:429px) {
    .sub2-2-p {
        font-size: 16px;
    }
    .sub2-2-box strong {
        padding: 10px 0;
        font-size: 16px;
    }
}

.sub2-2-box img{
    width: 100%;
}



.sp1-tit h2 {
    font-weight: 900;
    color: #37b0a1;
    opacity: 0.5;
    font-size: 68px;
    font-style: italic;
}
.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: #37b0a1;
    padding: 40px 0;
    color: #fff;
}
.sp1-area3 ul.flex {
    align-items: center;
}

.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-3 */
.sub2-3-2 .basic-box:nth-of-type(2){
    text-align: right;
}

.sub2-3-banner {
    position: relative;
    padding: 200px 0 !important;
}

.sub2-3-banner .sub2-3-banner-bg{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../img/sub/sub2-3-banner.jpg) center/cover no-repeat;
}

.sub2-3-1{
    background-color: #d8e2e0;
    padding-bottom: 120px;
}

@media(max-width:769px) {
    .sub2-3-banner .sub2-3-banner-bg{
        position: absolute;
        background: url(../img/sub/m_sub2-3-banner.jpg) center/cover no-repeat;
    }
    .sub2-3-banner {
        margin: 0 !important;
        padding: 80px 0 400px 0 !important;
    }
    .sub2-3-2 .basic-box li:first-child{
        margin-top: 20px;
    }
    .sub2-3-banner img{
        max-width: 120px;
    }
    
    .sub2-3-2 .basic-box:nth-of-type(2){
        text-align: center;
        flex-direction: column-reverse;
        display: inline-flex;
    }
}
@media(max-width:428px) {
    .sub2-3-banner {
        padding: 80px 0 300px 0 !important;
    }
}

/* sub2-4 */
.sub2-4-banner {
    position: relative;
    padding: 200px 0 !important;
}

.sub2-4-banner .sub2-4-banner-bg{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../img/sub/sub2-4-banner.jpg) center/cover no-repeat;
}


.main-card-section li{
    display: flex;
    justify-content: center;
    align-items: center;
}

.sub2-4-2-box .sub-box, .sub2-4-1-box .sub-box{
    width: 100%;
    max-width: 500px;
}

.sub2-4-banner .middle-title h3 {
        font-weight: 500;
    }

@media(max-width:768px) {
    .main-card-section li{
        padding: 40px;
    }
    .sub2-4-2-box ul{
        flex-direction: column-reverse;
    }
    .sub2-4-banner .sub2-4-banner-bg{
        background: url(../img/sub/m_sub2-4-banner.jpg) center/cover no-repeat;
    }
}

@media(max-width:769px) {
    .sub2-4-banner {
        padding: 120px 0 200px 0 !important;
    }
    .sub2-4-banner .middle-title h3 {
        font-size: 40px;
    }
}

@media(max-width:429px) {
    .sub2-4-banner {
        padding: 80px 0 250px 0 !important;
    }
    .sub2-4-banner .middle-title h3 {
        font-size: 24px;
    }
}


/* 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: #37b0a1;
}

.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: #37b0a1;
    z-index: -1;
}
.aes01-area3 .link-btn:hover {
    color: #fff;
    border: 1px solid #37b0a1;
    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 */
.check-banner{
    overflow: hidden;
    padding: 200px 0;
}

.check-banner h2 {
    font-size: 50px;
}
.check-banner-list{
    display: flex;
    flex-direction: column;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.check-banner-list li{
    display: flex;
    gap: 80px;
    padding: 20px 0;
    border-top: 1px solid #fff;
}
.check-banner-list li b,.check-banner-list li p{
    font-size: 18px;
}
.check-banner-list li:last-child{
    border-bottom: 1px solid #fff;
}

@media (max-width:769px) {
    .check-banner-list li b,.check-banner-list li p{
        font-size: 16px;
    }
    .check-banner-list{
        margin-top: 40px;
    }
    .check-banner h2 {
        font-size: 28px;
    }
    .check-banner{
        padding: 80px 0 200px 0;
    }
    .check-banner-list li{
        gap: 20px;
        padding: 14px 0;
    }
}

@media(max-width:429px) {
    .check-banner-list li b,.check-banner-list li p{
        font-size: 12px;
    }
}

/* bon-imp */

.bon-imp-title-section h2{

}

.bon-imp-banner{
    background: url(../img/sub/bon-imp-banner.jpg) center/cover no-repeat;
}

@media(max-width:1200px) {
    .bon-imp-title-section h2{
        font-size: 35px;
    }
}

@media(max-width:769px) {
    .bon-imp-title-section h2{
        font-size: 28px;
    }
    .bon-imp-banner{
        background: url(../img/sub/m_bon-imp-banner.jpg) center/cover no-repeat;
    }
}
.bon-imp-font {
    font-size: 40px;
}


.aes04-area1{
    background-color: #f0f4f9;
    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: #37b0a1;
    z-index: -1;
}
.aes02-area4 ul.flex .img img {
    width: 100%;
}
.aes02-area4 ul.flex .txt .top,
.aes02-area4 ul.flex .txt .btm {
    
    font-family: 'NanumSquare', san-serif;
}
.aes02-area4 ul.flex .txt .top {
    padding: 5px 10px;
    font-weight: 800;
    color: #fff;
    background: #005667;
}
.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: #37b0a1;
    color: #fff; */
}

.aes02-area4 ul.flex .txt .btm2 {
    font-family: 'NanumSquare', san-serif;
}
.aes02-area4 ul.flex .txt .btm2 {
    padding: 10px;
    font-weight: 600;
}

/*================================================================ 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) {
    .bon-imp-font {
        font-size: 24px;
    }
    .bon-imp-p{
        font-size: 12px;
    }
    .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) {
    .bon-imp-font {
        font-size: 20px;
    }
    .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-4 */

/* imp_disease */
.imp-disease-bg {
    padding: 200px 0 !important;
    background: url(../img/sub/imp-disease-bg.jpg) center/cover no-repeat;
    background-attachment: fixed;
}

/* sub3-5 */

/* overdenture */
.overdenture-banner{
    background: url(../img/sub/overdenture-banner.jpg) center/cover no-repeat;
}

.sp4-area1 ul.flex .tit {
    margin: 20px 0 10px;
    color: #37b0a1;
    font-weight: 900;
    font-family: 'NanumSquare', san-serif;
}

.overdenture-box {
    background-color: #005667;
    border-radius: 50px; /* 둥근 모서리 */
    text-align: center;
    padding: 40px 20px; /* 상하 40px, 좌우 20px 여백 */
    max-width: 1000px; /* 박스 최대 너비 (필요에 따라 조절) */
    margin: 0 auto; /* 가운데 정렬 */
    box-sizing: border-box;
}

.overdenture-box h5 {
    color: #ffffff !important; /* 기본 텍스트 흰색 */
    font-size: 26px;
    font-weight: 700;
    line-height: 1.6;
    margin: 0;
    letter-spacing: -1px;
}

.overdenture-merit ul p {
    font-size: 18px;
}
.overdenture-merit ul p b{
    font-size: 35px;
}

@media(max-width:1200px) {
    .overdenture-merit ul p {
        font-size: 16px;
    }
    .overdenture-merit ul p b{
        font-size: 30px;
    }
}

@media(max-width:900px) {
    .overdenture-merit ul p {
        font-size: 14px;
    }
    .overdenture-merit ul p b{
        font-size: 24px;
    }
}

@media(max-width:769px) {
    .overdenture-merit .m-area {
        display: inline !important;
    }
    .overdenture-banner{
        background: url(../img/sub/m_overdenture-banner.jpg) center/cover no-repeat;
    }
}

@media(max-width:900px) {
    .overdenture-merit ul p {
        font-size: 12px;
    }
    .overdenture-merit ul p b{
        font-size: 18px;
    }
}

.overdenture-box {
    border-radius: 25px; /* 모바일에서는 모서리 둥글기를 조금 줄임 */
    padding: 30px 15px; /* 여백 축소 */
}

.overdenture-box h5 {
    font-size: 18px; /* 폰트 크기 축소 */
    line-height: 1.5;
}

/* .imp-overdenture 전용 스타일 */
    .imp-overdenture {
        width: 100%;
        line-height: 1.6;
    }

    .imp-overdenture .dark-section h3 .text-yellow {
        color: #ffc824; /* 노란색 강조 텍스트 */
    }

    .imp-overdenture .divider {
        max-width: 1000px;
        margin: 60px auto;
        height: 1px;
        background-color: rgba(255, 255, 255, 0.2);
    }

    /* 틀니 보험 테이블 레이아웃 */
    .imp-overdenture .insurance-wrap {
        max-width: 1000px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        background-color: #fff;
    }
    
    .imp-overdenture .insurance-img {
        width: 35%;
        background-color: #fff;
    }
    .imp-overdenture .insurance-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    
    .imp-overdenture .insurance-table-wrap {
        width: 65%;
        background: #fff;
        color: #333;
    }
    
    .imp-overdenture table {
        width: 100%;
        height: 100%;
        border-collapse: collapse;
        text-align: center;
    }
    
    .imp-overdenture table th {
        color: #fff;
        padding: 15px 10px;
        font-size: 18px;
        font-weight: 600;
        border: 1px solid #e0e0e0;
        border-top: none;
    }
    .imp-overdenture table th:first-child { background-color: #155464; width: 25%; }
    .imp-overdenture table th:last-child { background-color: #155464; width: 75%; border-right: none;}
    
    .imp-overdenture table td {
        padding: 15px 10px;
        font-size: 16px;
        border: 1px solid #e0e0e0;
        text-align: left;
        padding-left: 30px;
    }
    .imp-overdenture table td:first-child {
        text-align: center;
        padding-left: 10px;
        font-weight: 600;
        background-color: #32a89a;
        color: #fff;
    }
    .imp-overdenture table td:last-child {
        border-right: none;
    }
    .imp-overdenture tr:last-child td {
        border-bottom: none;
    }
    
    .imp-overdenture table td .text-blue {
        color: #309bce;
        font-weight: 700;
    }


    .imp-overdenture .type-card {
        background-color: #e7f2ee;
        border-radius: 10px;
        padding: 30px 40px;
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .imp-overdenture .type-card .img-box {
        width: 130px;
        flex-shrink: 0;
        margin-right: 40px;
    }
    .imp-overdenture .type-card .img-box img {
        width: 100%;
        display: block;
    }
    
    .imp-overdenture .type-card .txt-box {
        flex-grow: 1;
    }
    
    .imp-overdenture .type-card .badge {
        display: inline-block;
        background-color: #005667;
        color: #fff;
        padding: 6px 20px;
        border-radius: 5px;
        font-weight: 700;
        font-size: 20px;
        margin-bottom: 12px;
        letter-spacing: -1px;
    }
    
    .imp-overdenture .type-card p {
        font-size: 20px;
        line-height: 1.6;
        color: #333;
        margin: 0;
        word-break: keep-all;
    }

    .imp-overdenture-box-con .tit{
        padding: 10px 0;
    }
    
    /* 모바일 반응형 처리 */
    @media (max-width: 768px) {
        .imp-overdenture .dark-section h3 { font-size: 24px; }
        .imp-overdenture .insurance-img, 
        .imp-overdenture .insurance-table-wrap {
            width: 100%;
        }
        .imp-overdenture table th { font-size: 16px; padding: 12px 10px; }
        .imp-overdenture table td { padding-left: 15px; font-size: 14px; padding: 12px 15px; }
        .imp-overdenture table th:last-child { border-right: 1px solid #e0e0e0; }
        .imp-overdenture table td:last-child { border-right: 1px solid #e0e0e0; }
        .imp-overdenture tr:last-child td { border-bottom: 1px solid #e0e0e0; }
        
        .imp-overdenture .type-card {
            flex-direction: column;
            text-align: center;
            padding: 30px 20px;
        }
        .imp-overdenture .type-card .img-box {
            margin-right: 0;
            margin-bottom: 20px;
        }
    }



    

/* caries2 */
.caries2-area1 {
    padding-bottom: 120px;
}


.caries2-area-box-con{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.caries2-area-box-con .caries2-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) {
    .caries2-area-box .basic-box{
        flex-direction: column;
    }
    .caries2-area-box-con .caries2-area-box{
        padding: 20px 10px;
    }
    .caries2-area1 img{
        margin: 20px 0px;
        width: 60% !important;
    }
}

/* sub4-3 */

/* root-canal */
.root-canal-banner{
    background: url(../img/sub/root-canal-banner.jpg) center/cover no-repeat;
}

@media(max-width:769px) {
    .overdenture-merit .m-area {
        display: inline !important;
    }
    .root-canal-banner{
        background: url(../img/sub/m_root-canal-banner.jpg) center/cover no-repeat;
    }
}