/*
Theme Name: Daejeon-Dentist
*/

.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    height: 80px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    padding: 0 20px;
    box-sizing: border-box;
    overflow: hidden;
    backdrop-filter: blur(0px);
    transition: backdrop-filter 0.4s ease;
}

.top-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #111c54;
    transition: height 0.4s ease;
    z-index: -1;
}

.top-bar.scrolled::before {
    height: 100%;
}

.top-bar.scrolled {
    backdrop-filter: blur(6px);
}

.logo {
    flex-grow: 1;
}

.logo img {
    height: 40px;
}

.nav {
    flex-grow: 2;
    display: flex;
    justify-content: center;
    height: 100%;
    align-items: center;
    word-break: keep-all;
}

.nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
    align-items: center;
}

.nav ul li {
    display: flex;
    height: 100%;
    align-items: center;
}

.nav ul li a {
    display: flex;
    height: 100%;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-weight: 400;
    font-size: 1.1rem;
    word-break: keep-all;
}

.menu-toggle {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
}

/* =========================
   사이드 메뉴 (고급 버전)
========================= */

.side-menu {
    position: fixed;
    top: 0;
    right: -1000px;
    width: 20%;
    height: 100%;

    /* 🔥 톤 변경 */
    background: linear-gradient(180deg, #1e327d 0%, #0f1a3a 100%);

    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);

    transition: all 0.4s ease;
    padding: 40px 30px;
    z-index: 1000;

    color: #fff;
}

/* 열릴 때 */
.side-menu.active {
    right: 0;
}

/* 닫기 버튼 */
.close-btn {
    font-size: 26px;
    text-align: right;
    cursor: pointer;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.7);
    transition: 0.3s;
}

.close-btn:hover {
    color: #fff;
}

/* 메뉴 리스트 */
.side-menu ul {
    list-style: none;
    padding: 0;
}

.side-menu ul li {
    margin-bottom: 10px;
}

/* 링크 */
.side-menu ul li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 1.7rem;
    font-weight: 500;
    letter-spacing: -0.5px;

    display: block;
    position: relative;

    transition: all 0.3s ease;
    padding: 10px 0;
}

/* hover 효과 */
.side-menu ul li a:hover {
    color: #fff;
    transform: translateX(8px);
}

/* 밑줄 애니메이션 */
.side-menu ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.side-menu ul li a:hover::after {
    width: 100%;
}

/* =========================
   오버레이 (뒷배경)
========================= */

.side-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* 🔥 더 고급스럽게 */
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);

    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;

    z-index: 999;
}

.side-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* =========================
   메인 슬라이드
========================= */

.main-slider {
    width: 100%;
    height: 90vh;
    overflow: hidden;
    position: relative;
}

.main-slider .swiper-container {
    width: 100%;
    height: 100%;
}

.main-slider .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.main-slider .visual-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.main-slider .txt-box {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    z-index: 2;
    margin-top: -1%;
}

.main-slider .txt-box h2 {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -.04em;
    margin: 10px 0;
}

.main-slider .txt-box p {
    font-size: 1.6em;
    letter-spacing: -.03em;
}

.main-slider .txt-box .des {
    font-size: 1.3em;
    margin-top: 10px;
    opacity: 0.9;
}

.main-slider .visual-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

/* =========================
   컨트롤 UI
========================= */

.main-slider .slider-controls {
    position: absolute;
    left: 10%;
    bottom: 80px;
    z-index: 20;
    color: #fff;
}

/* nav-area */
.main-slider .nav-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* 🔥 버튼 공통 */
.main-slider .nav-area .swiper-button-prev,
.main-slider .nav-area .swiper-button-next,
.main-slider .nav-area .btn-stop,
.main-slider .nav-area .btn-play {

    width: 44px;
    height: 44px;

    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(0, 0, 0, 0.0);
    backdrop-filter: blur(4px);

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    /* 🔥 제거해야 하는 부분 */
    position: static !important;
    top: auto !important;
    transform: none !important;
    margin: 0;
}

/* swiper 기본 위치 제거 */
.main-slider .nav-area .swiper-button-prev::after,
.main-slider .nav-area .swiper-button-next::after {
    display: none;
}

/* 아이콘 */
.main-slider .slider-controls i {
    color: #fff !important;
    font-size: 14px;
    pointer-events: none;
}

/* 카운트 */
.main-slider .count-area {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    margin-top: 10px;
}

/* 프로그래스 */
.main-slider .slider-controls .swiper-progress-bar {
    width: 100px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.main-slider .slider-controls .swiper-progress-bar span {
    display: block;
    width: 0%;
    height: 100%;
    background: #fff;
}

.main-slider .btn-play {
    display: none;
}

/* =========================
   공통
========================= */

.main>.con>.txt-box {
    text-align: center;
    padding: 160px 0 60px;
}

.main .txt-box>h3 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: .5rem;
}

.main .txt-box>.line {
    width: 50px;
    height: 1px;
    margin: 1.5rem auto;
    background-color: #000;
}

.main .txt-box>p {
    font-size: 1rem;
    color: #666;
}





/* 브라운 의료진 */

.main-dentist .list-box {
    display: flex;
    justify-content: space-between;
}

.main-dentist .list-box .box {
    position: relative;
    width: calc(100% / 4);
    gap: 10px;
    transition: .5s ease;
}

.main-dentist .list-2 {
    margin-top: 70px;
}

.main-dentist .list-2{
    display: flex;
    justify-content: space-between;
}

.main-dentist .list-box .box:not(:first-child) {
    margin-left: 1rem;
}

.main-dentist .list-box .box:hover .img-box {
    opacity: 0;
    visibility: hidden;
    transition: .5s ease;
}

.main-dentist .list-box .box:hover .profile-box {
    opacity: 1;
    visibility: visible;
    transition: .5s ease;
}

.main-dentist .list-box .box .img-box {
    opacity: 1;
    visibility: visible;
    transition: .5s ease;
    background-color: #eee;
    padding: 20px 20px 0 20px;
}

.main-dentist .list-box .box .profile-box {
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
    transition: .5s ease;
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    padding: 1.7rem;
    background-color: #1e327d;
    color: #fff;
}

.main-dentist .list-box .box .profile-box .txt-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    height: 100%;
    color: #fff;
}

.main-dentist .list-box .box>p {
    position: absolute;
    padding: 10px 0;
    font-size: 1.2rem;
}

.main-dentist .list-box .box .profile-box .txt-box .nm {
    font-size: 1.6rem;
    font-weight: 600;
}

.main-dentist .list-box .box .profile-box .txt-box .nm span {
    font-size: 16px;
    font-weight: 400;
    margin-left: 5px;
}

.main-dentist .list-box .box .profile-box .txt-box .history {
    margin-top: 14px;
}

.main-dentist .list-box .box .profile-box .txt-box .history li {
    position: relative;
    padding-left: .6rem;
    word-break: keep-all;
}

.main-dentist .list-box .box .profile-box .txt-box .history li::before {
    content: '·';
    font-size: 1rem;
    font-weight: 800;
    position: absolute;
    top: 2px;
    left: 0;
    color: rgba(255, 255, 255, .4);
}

.main-dentist .list-box .box .profile-box .txt-box .history li:not(:first-child) {
    margin-top: .3rem;
}

.main-dentist .main-btn {
    width: 20%;
    display: flex;
    justify-content: space-between;
    align-items: center;

    border: 1px #000 solid;
    padding: 20px 30px;
    margin: 90px auto 0;
}

.main-dentist .main-btn p {
    font-size: 1.3rem;
    letter-spacing: -1px;
}





/* 진료안내 */

.main-subject .list-box {
    display: flex;
    justify-content: space-between;
}

.main-subject .list-box .box {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: calc(100% / 4);
}

.main-subject .list-box .box:not(:first-child) {
    margin-left: 1rem;
}

.main-subject .list-box .box .img-box {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.main-subject .list-box .box .img-box img {
    transition: .3s ease;
}

.main-subject .list-box .box:hover .img-box img {
    transform: scale(1.2);
    transition: .3s ease;
}

.main-subject .list-box .box h3 {
    text-align: center;
    margin-top: .5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.main-subject .list-box .box h3 span {
    font-weight: 300;
}



/* 인테리어 */

.main-interior {
    position: relative;
    overflow: hidden;
    padding: 0 0 60px 0;
}

.main-interior .con {
    position: relative;
}

.main-interior .main-interior-slider {
    position: relative;
    width: calc(100% + 600px);

}

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

.main-interior .swiper-pagination {
    bottom: -3rem;
    font-size: 1.2rem;
    letter-spacing: .1rem;
    text-align: left;
    z-index: 100;
    position: absolute;
}

.main-interior .swiper-pagination .swiper-pagination-current {
    font-weight: 600;
    font-size: 1.7rem;
}




/* FAQ 전체 영역 */
/* ===== SEO 텍스트 ===== */
.seo-text {
  max-width: 960px;
  margin: 80px auto 60px;
  padding: 0 20px;
  color: #444;
  line-height: 1.8;
}

.seo-text h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #111;
  letter-spacing: -0.3px;
}

.seo-text p {
  font-size: 16px;
  margin-bottom: 15px;
}


/* ===== FAQ 전체 ===== */
.faq-section {
  max-width: 960px;
  margin: 80px auto;
  padding: 0 20px;
}

/* 상단 안내 */
.faq-intro {
  font-size: 15px;
  color: #777;
  margin-bottom: 25px;
}

/* 제목 */
.faq-section h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #111;
  letter-spacing: -0.3px;
}


/* ===== FAQ 카드 ===== */
.faq-item {
  border-top: 1px solid #eaeaea;
  padding: 22px 0;
  transition: all 0.3s ease;
}

/* 마지막 라인 */
.faq-item:last-child {
  border-bottom: 1px solid #eaeaea;
}


/* ===== 질문 ===== */
.faq-item h3 {
  font-size: 17px;
  font-weight: 500;
  color: #222;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
  line-height: 1.5;
}

/* + 아이콘 */
.faq-item h3::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 18px;
  color: #999;
  transition: 0.3s;
}

/* hover */
.faq-item h3:hover {
  color: #2a7fff;
}


/* ===== 답변 ===== */
.faq-item > p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-top: 10px;

  height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}


/* ===== 열렸을 때 ===== */
.faq-item.active p {
  height: auto;
}

.faq-item.active h3::after {
  content: "-";
  color: #2a7fff;
}

.faq-item.active h3 {
  color: #2a7fff;
}




/* 상담안내 */

.main-contact .list-box {
    margin-top: 3rem;
}

.main-contact .list-box>ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-contact .list-box>ul>li {
    width: calc(100% / 2);
    height: 100%;
    padding: 3rem 2rem;
}

.main-contact .list-box>ul>li:first-child {
    padding: 5rem 2rem;
    background-size: cover;
    box-sizing: border-box;
}

.main-contact .list-box>ul>li:first-child>.txt-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    color: #fff;
}

.main-contact .list-box>ul>li:first-child>.txt-box h6 {
    font-size: 1.2rem;
    font-weight: 500;
}

.main-contact .list-box>ul>li:first-child>.txt-box h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

.main-contact .list-box>ul>li:first-child>.txt-box p {
    font-size: 1rem;
    font-weight: 300;
    color: #fff;
    margin-top: 1.25rem;
}

.main-contact .list-box ul ul {
    height: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.main-contact .list-box ul ul li {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 2rem;
}

.main-contact .list-box ul ul li:not(:last-child) {
    border-bottom: 1px solid #d2d2d2;
}

.main-contact .list-box ul ul li .btn {
    display: flex;
    justify-content: space-between;
    height: 100%;
    align-items: center;
    width: 100%;
    padding: 1.5rem 0;
}

.main-contact .list-box ul ul li .btn:hover .img-box {
    opacity: 1;
    transition: opacity .3s ease;
}

.main-contact .list-box ul ul li .btn:hover p i {
    color: #333;
}

.main-contact .list-box ul ul li .img-box {
    width: 30px;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    opacity: .3;
    transition: opacity .3s ease;
}

.main-contact .list-box ul ul li h2 {
    width: 50%;
    font-size: 1.7rem;
    font-weight: 400;
    display: flex;
    height: 100%;
    align-items: center;
    letter-spacing: -.05rem;
}

.main-contact .list-box ul ul li p {
    width: 180px;
    display: flex;
    justify-content: space-between;
    height: 100%;
    align-items: center;
    letter-spacing: -.05rem;
    color: #666;
}

.main-contact .list-box ul ul li p i {
    color: #aaa;
}



/* 푸터 */

.footer {
    padding: 50px 0;
    color: #aaa;
    background-color: #f6f6f6;
}

.footer .footer-info {
    margin: 20px 0 0;
}

.footer .footer-info span {
    width: 10px;
}





/* 서브페이지 css시작 */
.sub-txt-box {
    display: flex;
    align-items: center;
    margin: 0 auto;
    justify-content: center;
    padding-bottom: 60px;
}

.sub-txt-box .title {
    font-size: 1.8rem;
    letter-spacing: -1.7px;
    line-height: 2.5rem;
    text-align: left;
    max-width: 55%;
}

.sub-txt-box .title b {
    font-weight: 700;
}

.sub-txt-box .line {
    width: 5px;
    height: 65px;
    background-color: #ddd;
    margin: 0 25px;
}

.sub-txt-box .des {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: .5px;
    text-align: right;
    color: #ddd;
    margin: 0;
    width: 25%;
}



/* 서브 공통 제목  */
.sub .title-box {
    text-align: center;
}

.sub .title-box .sub-tit {
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 38px;
    margin: 0 0 20px 5px;
}

.sub .title-box .tit {
    font-size: 62px;
    font-weight: 600;
    letter-spacing: -4px;
    line-height: 85px;
}

.sub .title-box .sub {
    font-size: 1.3rem;
    letter-spacing: -1px;
    line-height: 33px;
    margin-top: 20px;
}


/* 서브페이지 상단배너 */
/* =========================
   서브페이지 배너
========================= */

.sub-visual {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin-bottom: 6%;
}

/* 배경 */
.sub-visual .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* 어두운 오버레이 */
.sub-visual::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    top: 0;
    left: 0;
}

/* 텍스트 */
.sub-visual .inner {
    position: relative;
    z-index: 2;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    color: #fff;
    text-align: center;
}

.sub-visual .title {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.sub-visual .sub {
    margin-top: 10px;
    font-size: 1.1rem;
    opacity: 0.4;
    letter-spacing: 0.2rem;
}


/* 치과소개 시작*/

.sub-sb-intro .img-box {
    /* width: 1607px; */
    width: auto;
    margin: 0 auto;
}


.sub-sb-profile {
    padding-top: 120px;
}

.sub-sb-profile .title-box {
    text-align: center;
}

.sub-sb-profile .title-box .tit {
    font-size: 62px;
    font-weight: 600;
    letter-spacing: -4px;
    line-height: 85px;
}

.sub-sb-profile .title-box .sub {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -.5px;
    line-height: 30px;
    margin-top: 20px;
}

.sub-sb-profile .item-box {
    margin-top: 60px;
}

.sub-sb-profile .item-box .item {
    padding: 80px 0;
}

.sub-sb-profile .item-box .item .con {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sub-sb-profile .item-box .item .info .nm {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -1px;
    margin-top: 0;
}

.sub-sb-profile .item-box .item .info p {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 1.5rem;
    font-weight: 600;
}

.sub-sb-profile .item-box .item .info ul li {
    letter-spacing: -1px;
    line-height: 23px;
    font-size: 1.1rem;
    position: relative;
    padding-left: 7px;
    margin-top: 5px;
}

.sub-sb-profile .item-box .item .info ul.up li {
    font-size: 20px;
    margin-top: 13px;
    line-height: 27px;
}

.sub-sb-profile .item-box .item .info ul li::before {
    content: '·';
    font-size: 20px;
    position: absolute;
    top: 0;
    left: 0;
    color: #999;
}




.sub-sb-interior {
    padding: 160px 0;
}

.sub-sb-interior .title-box {
    text-align: center;
}

.sub-sb-interior .title-box .tit {
    font-size: 62px;
    font-weight: 600;
    letter-spacing: -4px;
    line-height: 85px;
}

.sub-sb-interior .title-box .sub {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -.5px;
    line-height: 30px;
    margin-top: 20px;
}

/* =========================
   인테리어 슬라이드 전체 구조
========================= */

.sub-sb-interior .interior-sl-box {
    margin: 40px auto 0;
    width: 70%;
}

/* swiper 기준 영역 */
.sub-sb-interior .swiper-container {
    position: relative;
    height: 500px;
    overflow: hidden;
}

/* =========================
   슬라이드
========================= */

.sub-sb-interior .swiper-wrapper,
.sub-sb-interior .swiper-slide {
    height: 100%;
}

.sub-sb-interior .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 🔥 swiper 기본 화살표 완전 제거 */
.swiper-button-prev::after,
.swiper-button-next::after {
    display: none !important;
    content: none !important;
}

/* 버튼 디자인 덮어쓰기 */
.sub-sb-interior .swiper-button-prev,
.sub-sb-interior .swiper-button-next {
    width: 60px !important;
    height: 60px !important;

    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(6px);

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;

    z-index: 999 !important;
}

/* 위치 */
.sub-sb-interior .swiper-button-prev {
    left: 20px !important;
}

.sub-sb-interior .swiper-button-next {
    right: 20px !important;
}

/* 아이콘 */
.sub-sb-interior .swiper-button {
    color: #fff;
    font-size: 18px;
}

/* =========================
   🔥 pagination (썸네일)
========================= */

.sub-sb-interior .swiper-pagination {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100% !important;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.sub-sb-interior .swiper-pagination-bullet {
    width: 80px;
    height: 60px;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    border: 2px solid transparent;
    margin: 0 !important;
    border-radius: 0;
}

.sub-sb-interior .swiper-pagination-bullet-active {
    opacity: 1;
    border: 4px solid #2a3972;
}

/* 치과소개 끝 */

/* 필요한경우 */

.sub-sb-need {
    padding: 160px 0;
    background-color: #f0f3fe;
}

.sub-sb-need .con {
    display: flex;
    justify-content: center;
}

.sub-sb-need .title-box {
    text-align: left;
}

/* .sub-sb-need .title-box .sub-tit {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -.6px;
    line-height: 20px;
    margin: 0 0 20px 5px;
}

.sub-sb-need .title-box .tit {
    font-size: 58px;
    font-weight: 600;
    letter-spacing: -4px;
    line-height: 73px;
}

.sub-sb-need .title-box .sub {
    font-size: 18px;
    letter-spacing: -.5px;
    line-height: 30px;
    margin-top: 20px;
} */

.sub-sb-need .chk-list {
    margin-left: 200px;
    width: 55%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5em 1.5em;
    font-size: 22px;
    font-weight: 500;
    margin-top: 20px;
}

.sub-sb-need .chk-list .box i {
    color: #2a3972;
    margin-right: 5px;
}

/* 임플란트시작 */

.sub-im-intro {
    background-color: #f5f7f9;
    margin-top: 60px;
    position: relative;
    padding: 160px 0 200px;
}

.sub-im-intro .con {
    display: flex;
    z-index: 1;
    position: relative;
}

.sub-im-intro .title-box {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.sub-im-intro .title-box .sub-tit {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -.6px;
    line-height: 20px;
    margin-bottom: 12px;
}

.sub-im-intro .title-box .tit {
    font-size: 62px;
    font-weight: 600;
    letter-spacing: -4px;
    line-height: 85px;
}

.sub-im-intro .title-box .sub {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -.5px;
    line-height: 30px;
    margin-top: 20px;
}

.sub-im-intro .img-box {
    position: absolute;
    bottom: 0;
    right: 100px;
    width: 52%;
}

.sub-im-bna {
    padding: 160px 0;
}

.sub-im-bna .title-box {
    margin-top: -20px;
    text-align: left;
}

.sub-im-bna .con {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub-im-bna .title-box .sub-tit {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -.6px;
    line-height: 20px;
    margin: 0 0 20px 5px;
}

.sub-im-bna .title-box .tit {
    font-size: 58px;
    font-weight: 600;
    letter-spacing: -4px;
    line-height: 73px;
}

.sub-im-bna .im-bna-sl-box {
    width: 60%;
    position: relative;
    margin-left: 100px;
}

.sub-im-bna .im-bna-sl-box .swiper-slide {
    visibility: hidden;
}

.sub-im-bna .im-bna-sl-box .swiper-slide-active {
    visibility: visible;
}

.sub-im-bna .txt-box {
    display: flex;
    align-items: center;
    font-size: 26px;
    font-weight: 600;
    margin-top: 20px;
    letter-spacing: -1px;
}

.sub-im-bna .txt-box .nm {
    margin: 5px 5px 0 0;
    font-size: 13px;
    line-height: 20px;
    background-color: #d8def3;
    color: #2a3972;
    padding: 1px 12px;
    border-radius: 50px;
}

.sub-im-bna .txt-box .nm:nth-of-type(2) {
    margin-left: 20px;
}

.sub-im-bna .arrows {
    position: absolute;
    height: 50px;
    z-index: 1;
    bottom: 0;
    right: 0;
    width: 150px;
    transform: none;
    translate: none;
    top: auto;
    left: auto;
}

.sub-im-bna .arrows .swiper-button {
    border: 1px solid #aaa;
    border-radius: 0;
}

.sub-im-bna .arrows .swiper-button:hover {
    background-color: #d8def3;
    transition: .5s;
}




.sub-im-special {
    padding: 160px 0;
}

.sub-im-special .title-box {
    text-align: center;
}

.sub-im-special .title-box .sub-tit {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -.6px;
    line-height: 20px;
    margin: 0 0 20px 5px;
}

.sub-im-special .title-box .tit {
    font-size: 58px;
    font-weight: 600;
    letter-spacing: -4px;
    line-height: 73px;
}

.sub-im-special .im-special-slide {
    margin-top: 40px;
}

.sub-im-special .im-special-slide .swiper-wrapper {
    margin-top: 100px;
}

.sub-im-special .im-special-slide .img-box {
    border-radius: 30px;
    overflow: hidden;
}

.sub-im-special .im-special-slide .swiper-pagination {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100% !important;
    height: 65px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.sub-im-special .im-special-slide .swiper-pagination-bullet {
    width: calc(100% / 5);
    height: 60px;
    background-color: inherit;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 1;
    position: relative;
    border: 1px solid #bcbcbc;
    border-radius: 100px;
}

.sub-im-special .im-special-slide .swiper-pagination-bullet::before {
    font-size: 1.25em;
    font-weight: 400;
    letter-spacing: -.04em;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: center;
}

.sub-im-special .im-special-slide .swiper-pagination-bullet-active::before {
    font-weight: 700;
}

.sub-im-special .im-special-slide .swiper-pagination-bullet-active {
    background-color: #2a3972 !important;
    color: #fff;
    border: #2a3972 solid 1px !important;
}

.sub-im-special .im-special-slide .swiper-pagination-bullet:nth-of-type(1)::before {
    content: '분과별 전문의 상주';
}

.sub-im-special .im-special-slide .swiper-pagination-bullet:nth-of-type(2)::before {
    content: '풍부한 수술 경험';
}

.sub-im-special .im-special-slide .swiper-pagination-bullet:nth-of-type(3)::before {
    content: '의식하진정법';
}

.sub-im-special .im-special-slide .swiper-pagination-bullet:nth-of-type(4)::before {
    content: '3D 첨단 장비';
}

.sub-im-special .im-special-slide .swiper-pagination-bullet:nth-of-type(5)::before {
    content: '자체기공실';
}

.sub-im-special .im-special-slide .txt-box {
    color: #666666;
    font-size: 26px;
    letter-spacing: -1px;
    word-break: keep-all;
    width: 75%;
    margin: 20px auto 0;
    text-align: center;
}


.sub-im-special .im-special-slide .swiper-slide .txt-box {
    visibility: hidden;
}

.sub-im-special .im-special-slide .swiper-slide-active .txt-box {
    visibility: visible;
}





.sub-im-allonx {
    background-image: url(/wp-content/themes/daejeon-dentist/img/imp-allonx-bg.jpg) !important;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100%;
    background-color: #1b3158;
    color: #fff;
    padding: 180px 0 160px;
}

.sub-im-allonx .title-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}



.sub-im-allonx .con>.box {
    display: flex;
    justify-content: space-between;
}

.sub-im-allonx .con>.box .allon-box {
    position: relative;
}

.sub-im-allonx .con>.box .circle {
    width: 180px;
    height: 180px;
    border-radius: 100px;
    border: 7px #4d6b9e solid;
    background-color: #fff;
    color: #1b3158;
    font-size: 2em;
    font-weight: 800;
    letter-spacing: -.05em;
    line-height: 1.4em;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 5px 5px 20px rgba(0, 0, 0, .3);
}

.sub-im-allonx .con>.box .img1 {
    width: 70%;
    margin: 0 auto;
}

.sub-im-allonx .con>.box .txt1 {
    font-size: 40px;
    font-weight: 800;
    line-height: 50px;
    width: 190px;
    height: 190px;
    border-radius: 200px;
    left: 50%;
    transform: translateX(-50%);
    margin-top: -100px;
    margin-left: 30px;
}

.sub-im-allonx .con>.box .txt2 {
    margin-top: -140px;
    left: 150px;
    width: 130px;
    height: 130px;
    line-height: 35px;
    font-weight: 700;
    font-size: 26px;
}

.sub-im-allonx .con>.box .txt3 {
    margin-top: -180px;
    right: 100px;
    width: 150px;
    height: 150px;
    line-height: 35px;
    font-weight: 700;
    font-size: 26px;
}

.sub-im-allonx .con>.box .txt4 {
    top: 270px;
    left: 120px;
    width: 150px;
    height: 150px;
    font-size: 1.6em;
    line-height: 1.2em;
    font-weight: 700;
}

.sub-im-allonx .con>.box .txt5 {
    right: 30px;
    font-size: 25px;
    line-height: 1.3em;
    font-weight: 700;
    width: 160px;
    height: 160px;
}

.sub-im-allonx .con>.box .txt6 {
    top: 380px;
    left: 260px;
    font-size: 18px;
    font-weight: 700;
    width: 120px;
    height: 120px;
}

.sub-im-allonx .box-2 {
    margin-top: 240px;
}

.sub-im-allonx .box-2 .title-box {
    text-align: center;
}


.sub-im-allonx .box-2 .allonx-vs {
    margin-top: 40px;
}

.sub-im-allonx .box-2 .allonx-vs {
    width: 1288px;
    margin: 60px auto;
}

.sub-im-allonx .box-2 .des {
    text-align: center;
    font-size: 32px;
    letter-spacing: -1.5px;
    line-height: 48px;
    margin-top: 50px;
}

.sub-im-allonx .box-2 .des span {
    font-weight: 600;
}





.sub-im-step {
    padding: 160px 0;
}

.sub-im-step .im-step-sl-box {
    margin-top: 60px;
}

.sub-im-step .im-step-sl-box .swiper-container {
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    list-style: none;
    z-index: 1;
    padding: 0 150px 160px;
}

.sub-im-step .im-step-sl-box .item {
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 3px 15px 0 rgba(0, 0, 0, .12);
    transition: transform 1s;
}

.sub-im-step .im-step-sl-box .swiper-slide[class$=-active]+.item,
.sub-im-step .im-step-sl-box .swiper-slide[class$=-active]+.item+.item+.item,
.sub-im-step .im-step-sl-box .swiper-slide[class$=-prev] {
    transform: translateY(7rem);
    transition: transform 1s;
}

.sub-im-step .im-step-sl-box .swiper-pagination {
    position: relative;
    width: 40% !important;
    margin: 60px auto 0;
    height: 2px;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #000 !important;
}

.sub-im-step .im-step-sl-box .swiper-slide .img-box {
    position: relative;
    width: 100%;
}

.sub-im-step .im-step-sl-box .swiper-slide .txt-box {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    padding: 35px 25px;
    gap: 0 1.5em;
    text-align: left;
}

.sub-im-step .im-step-sl-box .swiper-slide .txt-box .nm {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-row: 1/3;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    color: #2a3972;
    font-weight: 700;
    background-color: #f0f3fe;
    margin: 0;
}

.sub-im-step .im-step-sl-box .swiper-slide .txt-box .tit {
    font-weight: 700;
    font-size: 24px;
    margin: 0;
}

.sub-im-step .im-step-sl-box .swiper-slide .txt-box .des {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 24px;
}






.sub-im-sleep-intro {
    background-image: url(/wp-content/themes/daejeon-dentist/img/sub-im-sleep-intro-bg.png);
    margin-top: 60px;
    position: relative;
    padding: 160px 0 200px;
}

.sub-im-sleep-intro .con {
    display: flex;
    z-index: 1;
    position: relative;
}

.sub-im-sleep-intro .title-box {
    display: flex;
    flex-direction: column;
    text-align: left;
}


.sub-im-sleep-intro .img-box {
    position: absolute;
    bottom: 0;
    right: 100px;
    width: 53%;
}



.sub-im-sleep-point {
    padding: 160px 0;
}

.sub-im-sleep-point .con {}

.sub-im-sleep-point .title-box {
    text-align: center;
}


.sub-im-sleep-point .item-box {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
}

.sub-im-sleep-point .item-box {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
}

.sub-im-sleep-point .item-box .item {
    width: calc(100% / 3);
}

.sub-im-sleep-point .item-box .item:not(:first-child) {
    margin-left: 30px;
}

.sub-im-sleep-point .item-box .img-box {
    border-radius: 30px;
    overflow: hidden;
}

.sub-im-sleep-point .item-box .txt-box .tit {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: -2px;
    margin-top: 20px;
}

.sub-im-sleep-point .item-box .txt-box .des {
    color: #000;
    font-size: 1.2rem;
    margin-top: 10px;
    letter-spacing: -1px;
}




.sub-im-soi-intro {
    background-image: url(/wp-content/themes/daejeon-dentist/img/sub-im-soi-intro-bg.png);
    background-repeat: no-repeat;
    background-color: #4e5c90;
    background-position: top right;
    position: relative;
    padding: 160px 0 200px;
}

.sub-im-soi-intro .title-box {
    text-align: center;
    color: #fff;
}


.sub-im-soi-intro .con>.img-box {
    border-radius: 30px;
    overflow: hidden;
    width: 1280px;
    margin: 50px auto 0;
    z-index: 1;
    position: relative;
}

.sub-im-soi-intro>.img-box {
    width: 1118px;
    position: absolute;
    bottom: 0;
    left: -150px;
}


.sub-im-soi-point {
    padding: 160px 0;
}


.sub-im-soi-point .item-box {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
}

.sub-im-soi-point .item-box {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
}

.sub-im-soi-point .item-box .item {
    width: calc(100% / 3);
}

.sub-im-soi-point .item-box .item:not(:first-child) {
    margin-left: 30px;
}

.sub-im-soi-point .item-box .img-box {
    border-radius: 30px;
    overflow: hidden;
}

.sub-im-soi-point .item-box .txt-box .tit {
    font-size: 28px;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: -1.7px;
    margin-top: 20px;
}

.sub-im-soi-point .point {
    font-size: 28px;
    background-color: #2a3972;
    border-radius: 30px;
    display: inline-block;
    padding: 15px 60px 20px;
    color: #fff;
    line-height: 30px;
    letter-spacing: -1px;
    font-weight: 600;
    margin-top: 60px;
}







.sub-im-3d {
    padding: 160px 0;
    background-color: #f3f3f3;
}


.sub-im-3d .img-box {
    margin: 60px auto 0;
    width: 1107px;
}

.sub-im-3d .img-box:last-child {
    margin: 40px auto 0;
    width: 1115px;
}

.sub-im-3d .title-box-2 {
    text-align: center;
    margin-top: 160px;
}


.sub-im-3d .title-box-2 .tit {
    font-size: 62px;
    font-weight: 600;
    letter-spacing: -4px;
    line-height: 85px;
}

.sub-im-3d .con>.des {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-top: 60px;
    letter-spacing: -1px;
    line-height: 45px;
}

.sub-im-3d .con>.des span {
    color: #af002f;
    background-color: #fffcd1;
}


.sub-im-abut {
    position: relative;
    padding: 160px 0;
}


.sub-im-abut .img-box {
    width: 1160px;
    margin: 100px auto 0;
}

.sub-im-abut .des {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -1px;
    color: #2a3972;
    margin-top: 80px;
    text-align: center;
}

.sub-im-bone-intro {
    background-color: #2a3972;
    position: relative;
    padding: 160px 0;
}

.sub-im-bone-intro .con {
    display: flex;
    z-index: 1;
    position: relative;
}

.sub-im-bone-intro .title-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    text-align: left;
}



.sub-im-bone-intro .img-box {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 65%;
    margin-top: 30px;
}

.sub-im-bone {
    padding: 160px 0;
}

.sub-im-bone .item-box {
    display: flex;
    justify-content: space-between;
    margin: 50px auto 0;
}

.sub-im-bone .item-box .item {
    text-align: center;
    padding: 50px 80px;
    border-radius: 30px;
    width: 50%;
}

.sub-im-bone .item-box .item:nth-of-type(1) {
    background-color: #f0f3fe;
}

.sub-im-bone .item-box .item:nth-of-type(2) {
    background-color: #dbf1fb;
    margin-left: 40px;
}

.sub-im-bone .item-box .item .tit {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 32px;
}

.sub-im-bone .item-box .item .tit span {
    font-weight: 400;
    font-size: 28px;
}

.sub-im-bone .item-box .item .des {
    font-size: 16px;
    color: #000;
    margin-top: 10px;
    line-height: 24px;
    letter-spacing: -.5px;
}

.sub-im-bone .item-box .item .img-box {
    margin-top: 30px;
}

.sub-im-bone .item-box .item ul {
    margin-top: 30px;
}

.sub-im-bone .item-box .item ul li {
    background-color: #fff;
    border-radius: 50px;
    padding: 9px 0;
    font-size: 17px;
    letter-spacing: -.5px;
    margin-top: 10px;
    position: relative;
}

.sub-im-bone .item-box .item ul li:nth-of-type(1):before {
    content: '1';
}

.sub-im-bone .item-box .item ul li:nth-of-type(2):before {
    content: '2';
}

.sub-im-bone .item-box .item ul li:nth-of-type(3):before {
    content: '3';
}

.sub-im-bone .item-box .item ul li:nth-of-type(4):before {
    content: '4';
}

.sub-im-bone .item-box .item ul li::before {
    background-color: #c4cbe6;
    border-radius: 100px;
    color: #fff;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    line-height: 30px;
}

.sub-im-bone .item-box .item:nth-of-type(2) ul li::before {
    background-color: #aad3e6;
}


.sub-im-nhis-intro {
    background-image: url(/wp-content/themes/daejeon-dentist/img/sub-im-nhis-intro-bg.png);
    margin-top: 60px;
    position: relative;
    padding: 160px 0 200px;
}

.sub-im-nhis-intro .con {
    display: flex;
    z-index: 1;
    position: relative;
}

.sub-im-nhis-intro .title-box {
    display: flex;
    flex-direction: column;
    text-align: left;
}


.sub-im-nhis-intro .img-box {
    position: absolute;
    bottom: 0;
    right: 100px;
    width: 53%;
}



.sub-im-nhis-table {
    padding: 160px 0;
}


.sub-im-nhis-table .table-box {
    margin-top: 40px;
}

.sub-im-nhis-table .table-box table {
    width: 100%;

}

.sub-im-nhis-table .table-box .division {
    width: 30%;
}

.sub-im-nhis-table .table-box table tr td {
    font-size: 24px;
    letter-spacing: -1px;
    padding: 20px 35px 25px;
}

.sub-im-nhis-table .table-box table tr td:nth-of-type(1) {
    text-align: center;
}



.sub-im-nhis-qna {
    padding: 160px 0;
}

.sub-im-nhis-qna .box {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
}

.sub-im-nhis-qna .box:not(:first-child) {
    margin-top: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid #bbb;
}

.sub-im-nhis-qna .box .num {
    font-size: 48px;
    font-weight: 600;
    background-color: #2a3972;
    border-radius: 100px;
    line-height: 60px;
    width: 65px;
    height: 65px;
    text-align: center;
    color: #fff;
    margin-top: 10px;
}

.sub-im-nhis-qna .box .txt {
    padding-left: 25px;
}


.sub-im-nhis-qna .box .txt .tit {
    font-size: 34px;
    font-weight: 600;
    letter-spacing: -2px;
}

.sub-im-nhis-qna .box .txt .des {
    font-size: 26px;
    letter-spacing: -1px;
    margin-top: 10px;
}


/* 임플란트 끝 */



/* 치아교정 시작 */

.sub-or-intro {
    background-color: #2a3972;
    margin-top: 60px;
    position: relative;
    padding: 160px 0 200px;
}

.sub-or-intro .con {
    display: flex;
    z-index: 1;
    position: relative;
}


.sub-or-intro .title-box {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}


.sub-or-intro .title-box .tit {
    display: flex;
    flex-direction: column;

}

.sub-or-intro .title-box .tit p {
    display: inline-block;
    /* 글자 크기만큼 줄어듦 */
    line-height: 1;
    padding: 6px 12px 6px 0px;
    margin: 0;
    font-weight: 600 !important;
    letter-spacing: -2px;

}

.sub-or-intro .title-box .tit p em {
    display: inline-block;
    /* 🔥 여기만 적용 */
    line-height: 1;
    padding: 0 6px 8px;
    background: #ffd973;
    color: #2a3972;
    font-weight: 600 !important;
    margin-top: 7px;
}

.sub-or-intro .img-box {
    position: absolute;
    top: 0;
    right: 100px;
    width: 60%;
}


.sub-or-certifi {
    background-color: #2a3972;
    color: #fff;
    text-align: center;
    padding: 160px 0;
}

.sub-or-certifi .title-box .sub-tit {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -.6px;
    line-height: 20px;
    margin-bottom: 12px;
}

.sub-or-certifi .title-box .tit {
    font-size: 62px;
    font-weight: 600;
    letter-spacing: -4px;
    line-height: 85px;
}

.sub-or-certifi .title-box .tit i {
    margin-right: 15px;
}

.sub-or-certifi .title-box .sub {
    font-size: 18px;
    letter-spacing: -.5px;
    line-height: 30px;
    margin-top: 20px;
}

.sub-or-certifi .item-box {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.sub-or-certifi .item-box .item:not(:first-child) {
    margin-left: 40px;
}

.sub-or-need {
    padding: 160px 0;
    background-color: #f0f3fe;
}

.sub-or-need .con {
    display: flex;
    justify-content: center;
}

.sub-or-need .title-box {
    text-align: left;
}




.sub-or-need .chk-list {
    margin-left: 200px;
    width: 55%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5em 1.5em;
    font-size: 22px;
    font-weight: 500;
    margin-top: 20px;
}

.sub-or-need .chk-list .box i {
    color: #2a3972;
    margin-right: 5px;
}



.sub-or-bracket {
    padding: 160px 0;
}

.sub-or-bracket .item-box {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.sub-or-bracket .item-box .item {
    width: calc(100% / 6);
}

.sub-or-bracket .item-box .item:not(:first-child) {
    margin-left: 30px;
}

.sub-or-bracket .item-box .item .txt-box {
    padding: 0 5px;
    text-align: center;
}

.sub-or-bracket .item-box .item .txt-box .tit {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -1px;
}

.sub-or-bracket .item-box .item .txt-box .des {
    margin-top: 10px;
    font-size: 16px;
    color: #000;
    line-height: 22px;
    word-break: keep-all;
}




.sub-or-pay {
    padding: 160px 0;
}

.sub-or-pay .con {
    display: flex;
}

.sub-or-pay .title-box {
    text-align: left;
}

.sub-or-pay .title-box .sub-tit {
    margin-top: 30px;
}

.sub-or-pay .item-box {
    margin-left: 180px;
}

.sub-or-pay .item-box .item {
    display: flex;
    align-items: center;
}

.sub-or-pay .item-box .item .img-box {
    border-radius: 100px;
}

.sub-or-pay .item-box .item {
    margin-top: 10px;
}

.sub-or-pay .item-box .item:not(:first-child) {
    margin-top: 30px;
}

.sub-or-pay .item-box .item:nth-of-type(1) .img-box {
    background-color: #7d88b2;
}

.sub-or-pay .item-box .item:nth-of-type(2) .img-box {
    background-color: #596697;
}

.sub-or-pay .item-box .item:nth-of-type(3) .img-box {
    background-color: #2a3972;
}

.sub-or-pay .item-box .item .txt-box {
    color: #000;
    text-align: left;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -1px;
    margin-left: 25px;
}

.sub-or-pay .item-box .item:nth-of-type(3) .txt-box span {
    color: #979797;
    text-decoration-line: line-through;
}






.sub-or-bna {
    padding: 160px 0;
}

.sub-or-bna .title-box {
    margin-top: -20px;
    text-align: left;
}

.sub-or-bna .con {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sub-or-bna .title-box .sub-tit {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -.6px;
    line-height: 20px;
    margin: 0 0 20px 5px;
}

.sub-or-bna .title-box .tit {
    font-size: 58px;
    font-weight: 600;
    letter-spacing: -4px;
    line-height: 73px;
}

.sub-or-bna .or-bna-sl-box {
    width: 60%;
    position: relative;
    margin-left: 100px;
}

.sub-or-bna .or-bna-sl-box .swiper-slide {
    visibility: hidden;
}

.sub-or-bna .or-bna-sl-box .swiper-slide-active {
    visibility: visible;
}

.sub-or-bna .txt-box {
    display: flex;
    align-items: center;
    font-size: 26px;
    font-weight: 600;
    margin-top: 20px;
    letter-spacing: -1px;
}

.sub-or-bna .txt-box .nm {
    margin: 5px 5px 0 0;
    font-size: 13px;
    line-height: 20px;
    background-color: #d8def3;
    color: #2a3972;
    padding: 1px 12px;
    border-radius: 50px;
}

.sub-or-bna .txt-box .nm:nth-of-type(2) {
    margin-left: 20px;
}

.sub-or-bna .arrows {
    position: absolute;
    height: 50px;
    z-index: 1;
    bottom: 0;
    right: 0;
    width: 150px;
    transform: none;
    translate: none;
    top: auto;
    left: auto;
}

.sub-or-bna .arrows .swiper-button {
    border: 1px solid #aaa;
    border-radius: 0;
}

.sub-or-bna .arrows .swiper-button:hover {
    background-color: #d8def3;
    transition: .5s;
}





.sub-or-child-intro {
    padding: 160px 0;
}

.sub-or-child-intro .title-box {
    text-align: center;
}

.sub-or-child-intro .title-box .sub-tit {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 35px;
    margin-top: 20px;
}

.sub-or-child-intro .title-box .tit {
    font-size: 58px;
    font-weight: 600;
    letter-spacing: -4px;
    line-height: 73px;
}

.sub-or-child-intro .title-box .sub {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 35px;
    margin-top: 20px;
}

.sub-or-child-intro .img-box {
    width: 1270px;
    margin: 60px auto 0;
    border-radius: 30px;
    overflow: hidden;
}

.sub-or-child-ai {
    padding: 0 0 160px;
}


.sub-or-child-ai .title-box .tit span {
    color: #008ffe;
}



.sub-or-child-ai .icon-box {
    display: flex;
    justify-content: space-between;
    margin: 80px auto 0;
}

.sub-or-child-ai .icon-box .icon {
    background-color: #eaf6ff;
    border-radius: 200px;
    overflow: hidden;
}


.sub-or-child-ai .box {
    text-align: center;
    margin-top: 20px;
}

.sub-or-child-ai .box .tit {
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1;
    margin: 0;
}

.sub-or-child-ai .box .des {
    font-size: 1.25rem;
    color: #000;
    margin-top: 10px;
    letter-spacing: -1px;
}

.sub-or-child-ai .tip-box {
    margin-top: 70px;
    text-align: center;
}

.sub-or-child-ai .tip-box .tit span {
    color: #ea0d0d;
    padding: 10px 40px;
    background-color: #ffeded;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: -1px;
    border-radius: 150px;
}

.sub-or-child-ai .tip-box .tit span i {
    margin-right: 10px;
}

.sub-or-child-ai .tip-box .des {
    margin-top: 30px;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -1px;
}

.sub-or-child-ai .tip-box .des span {
    color: #008ffe;
}

.sub-or-child-need {
    background-color: #eaf6ff;
    padding: 160px 0;
}

.sub-or-child-need .title-box {
    text-align: center;
}

/* 
.sub-or-child-need .title-box .sub-tit {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 35px;
    margin-bottom: 20px;
}

.sub-or-child-need .title-box .tit {
    font-size: 58px;
    font-weight: 600;
    letter-spacing: -4px;
    line-height: 73px;
} */

.sub-or-child-need .title-box .tit span {
    color: #008ffe;
}

/* 
.sub-or-child-need .title-box .sub {
    font-size: 23px;
    font-weight: 600;
    letter-spacing: -.7px;
    line-height: 35px;
    margin-top: 20px;
} */

.sub-or-child-need .item-box {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
}

.sub-or-child-need .item-box .item {
    width: calc(100% / 3);
    text-align: center;
}

.sub-or-child-need .item-box .item:not(:first-child) {
    margin-left: 30px;
}

.sub-or-child-need .item-box .img-box {
    border-radius: 30px;
    overflow: hidden;
}

.sub-or-child-need .item-box .txt-box {
    margin-top: 20px;
}

.sub-or-child-need .item-box .txt-box .tit {
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1;
    margin: 0;
}

.sub-or-child-need .item-box .txt-box .des {
    font-size: 1.25rem;
    color: #000;
    margin-top: 10px;
    letter-spacing: -1px;
}

.sub-or-step {
    padding: 160px 0;
}

.sub-or-step .title-box {
    text-align: center;
}

.sub-or-step .title-box .sub-tit {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 35px;
    margin-bottom: 10px;
}

.sub-or-step .title-box .tit {
    font-size: 58px;
    font-weight: 600;
    letter-spacing: -4px;
    line-height: 73px;
}

.sub-or-step .title-box .sub {
    font-size: 20px;
    letter-spacing: -.7px;
    line-height: 32px;
    margin-top: 20px;
}

.sub-or-step .or-step-sl-box {
    margin-top: 60px;
}

.sub-or-step .or-step-sl-box .swiper-container {
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    list-style: none;
    z-index: 1;
    padding: 0 150px 160px;
}

.sub-or-step .or-step-sl-box .item {
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 3px 15px 0 rgba(0, 0, 0, .12);
    transition: transform 1s;
}

.sub-or-step .or-step-sl-box .swiper-slide[class$=-active]+.item,
.sub-or-step .or-step-sl-box .swiper-slide[class$=-active]+.item+.item+.item,
.sub-or-step .or-step-sl-box .swiper-slide[class$=-prev] {
    transform: translateY(7rem);
    transition: transform 1s;
}

.sub-or-step .or-step-sl-box .swiper-pagination {
    position: relative;
    width: 40% !important;
    margin: 60px auto 0;
    height: 2px;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #000 !important;
}

.sub-or-step .or-step-sl-box .swiper-slide .img-box {
    position: relative;
    width: 100%;
}

.sub-or-step .or-step-sl-box .swiper-slide .txt-box {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    padding: 35px 25px;
    gap: 0 1.5em;
    text-align: left;
}

.sub-or-step .or-step-sl-box .swiper-slide .txt-box .nm {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-row: 1/3;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    color: #2a3972;
    font-weight: 700;
    background-color: #f0f3fe;
    margin: 0;
}

.sub-or-step .or-step-sl-box .swiper-slide .txt-box .tit {
    font-weight: 700;
    font-size: 24px;
    margin: 0;
}

.sub-or-step .or-step-sl-box .swiper-slide .txt-box .des {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 24px;
}

.sub-or-adult-intro {
    background-image: url(/wp-content/themes/daejeon-dentist/img/sub-or-adult-intro-bg.jpg);
    background-position: center;
    background-size: cover;
    padding: 160px 0;
}

.sub-or-adult-intro .title-box {
    text-align: left;
    color: #fff;
    width: 40%;
    word-break: keep-all;
}


.sub-or-adult-effects {
    padding: 160px 0;
}


.sub-or-adult-effects .item-box {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
    padding: 0 100px;
}

.sub-or-adult-effects .item-box .item {
    width: calc(100% / 4);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sub-or-adult-effects .item-box .item .img-box {
    width: 130px;
}

.sub-or-adult-effects .item-box .des {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -1px;
    margin-top: 20px;
}

.sub-or-onestop {
    background-color: #2a3972;
    padding: 160px 0;
    color: #fff;
}

.sub-or-onestop .title-box {
    color: #fff;
    word-break: keep-all;
    text-align: center;
}


.sub-or-onestop .icon-box {
    display: flex;
    justify-content: space-between;
    margin: 80px auto 0;
}

.sub-or-onestop .icon-box .icon {
    background-color: #6c7dbf;
    border-radius: 200px;
    overflow: hidden;
    padding: 35px;
}

.sub-or-onestop .box {
    margin-top: 0 !important;
    width: calc((100% / 4) - 60px);
}

.sub-or-onestop .txt-box {
    text-align: center;
    margin-top: 20px;
}

.sub-or-onestop .txt-box .tit {
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1;
}

.sub-or-onestop .txt-box .des {
    font-size: 1.25rem;
    margin-top: 10px;
    letter-spacing: -1px;
}

.sub-or-senior-intro {
    background-image: url(/wp-content/themes/daejeon-dentist/img/sub-or-senior-intro-bg.png);
    background-position: center;
    background-size: cover;
    padding: 160px 0;
}

.sub-or-senior-intro .title-box {
    text-align: left;
    width: 38%;
    word-break: keep-all;
}


.sub-or-senior-effects {
    padding: 160px 0;
}


.sub-or-senior-effects .item-box {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
    padding: 0 100px;
}

.sub-or-senior-effects .item-box .item {
    width: calc(100% / 4);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sub-or-senior-effects .item-box .item .img-box {
    width: 130px;
}

.sub-or-senior-effects .item-box .des {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -1px;
    margin-top: 20px;
}

.sub-or-senior-partial {
    padding: 160px 0;
    background-color: #f0f3fe;
}


.sub-or-senior-partial .partial-box {
    margin-top: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sub-or-senior-partial .partial-box .arrow {
    width: 28px;
    margin: 0 20px;
}

.sub-or-senior-partial .partial-box .img {
    width: 442px;
}

.sub-or-senior-partial .hash {
    text-align: center;
    margin-top: 30px;
    font-size: 30px;
    font-weight: 600;
    color: #2a3972;
    letter-spacing: -1px;
}

.sub-or-solution {
    padding: 160px 0;
}


.sub-or-solution .item-box {
    display: flex;
    justify-content: space-between;
    width: 1300px;
    margin: 70px auto 0;
}

.sub-or-solution .item-box .item {
    text-align: center;
    padding: 50px 80px;
    border-radius: 30px;
}

.sub-or-solution .item-box .item:nth-of-type(1) {
    background-color: #f0f3fe;
}

.sub-or-solution .item-box .item:nth-of-type(2) {
    background-color: #dbf1fb;
}

.sub-or-solution .item-box .item .txt-box .tit {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -1px;
}

.sub-or-solution .item-box .item .txt-box .des {
    font-size: 16px;
    color: #000;
    margin-top: 10px;
    line-height: 24px;
}

.sub-or-solution .item-box .item .img-box {
    margin-top: 40px;
}

.sub-or-solution .item-box .item .hash-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.sub-or-solution .item-box .item .hash-box .hash {
    padding: 5px 17px 5px 15px;
    border: 1px solid #000;
    border-radius: 100px;
    line-height: 25px;
    font-weight: 600;
    letter-spacing: -.5px;
}

.sub-or-solution .item-box .item .hash-box .hash:not(:first-child) {
    margin-left: 10px;
}

.sub-or-ivs-intro {
    padding: 160px 0 0;
    background-color: #f0f3fe;
}

.sub-or-ivs-intro .con {
    display: flex;
    justify-content: space-between;
}

.sub-or-ivs-intro .title-box {
    margin-top: 80px;
    text-align: left;
}

.sub-or-ivs-intro .title-box .tit {
    font-size: 58px;
    font-weight: 600;
    letter-spacing: -4px;
    line-height: 73px;
}

.sub-or-ivs-intro .title-box .sub {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -.5px;
    line-height: 30px;
    margin-top: 20px;
}

.sub-or-ivs-vs {
    padding: 160px 0 0;
}

.sub-or-ivs-vs .title-box {
    text-align: center;
}

.sub-or-ivs-vs .title-box .sub-tit {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 30px;
    margin-bottom: 15px;
}

.sub-or-ivs-vs .title-box .tit {
    font-size: 58px;
    font-weight: 600;
    letter-spacing: -4px;
    line-height: 73px;
}

.sub-or-ivs-vs .title-box .sub {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -.5px;
    line-height: 30px;
    margin-top: 20px;
}

.sub-or-ivs-vs .table-box {
    margin-top: 40px;
    justify-content: center;
    display: flex;
}

.sub-or-ivs-vs .table-box table {
    font-size: 26px;
    text-align: center;
    letter-spacing: -1px;
    background-color: #fff;
    line-height: 36px;
    width: 100%;
    border: 0;
}

.sub-or-ivs-vs .table-box table,
.sub-or-ivs-vs .table-box th,
.sub-or-ivs-vs .table-box td {
    border: 0;
    border-collapse: collapse;
}

.sub-or-ivs-vs .table-box table .top .img-box {
    width: 385px;
    margin: 0 auto;
}

.sub-or-ivs-vs .table-box tr td {
    background-color: #f6f6f6;
    padding: 20px 0;
    letter-spacing: -1.3px;
}

.sub-or-ivs-point {
    padding: 160px 0 0;
}

.sub-or-ivs-point .title-box .tit {
    font-size: 58px;
    font-weight: 600;
    letter-spacing: -4px;
    line-height: 73px;
}

.sub-or-ivs-point .title-box .sub {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -.5px;
    line-height: 30px;
    margin-top: 20px;
}

.sub-or-ivs-point .item-box {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
}

.sub-or-ivs-point .item-box .item:not(:first-child) {
    margin-left: 50px;
}

.sub-or-ivs-point .item-box .item .txt-box {
    background-color: #efefef;
    padding: 35px 50px;
    text-align: left;
}

.sub-or-ivs-point .item-box .item .txt-box .tit {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -1px;
}

.sub-or-ivs-point .item-box .item .txt-box .des {
    margin-top: 10px;
    color: #000;
    line-height: 28px;
}

.sub-or-ivs-caution {
    padding: 160px 0;
}

.sub-or-ivs-caution .title-box {
    text-align: center;
}

.sub-or-ivs-caution .title-box .tit {
    font-size: 58px;
    font-weight: 600;
    letter-spacing: -4px;
    line-height: 73px;
}

.sub-or-ivs-caution .title-box .sub {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -.5px;
    line-height: 30px;
    margin-top: 20px;
}

.sub-or-ivs-caution .notice-box {
    text-align: center;
    margin-top: 40px;
}

.sub-or-ivs-caution .notice-box ul li {
    background-color: #efefef;
    padding: 20px;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -1.5px;
    margin-top: 20px;
    border-radius: 50px;
}

.sub-or-ivs-caution .notice-box ul li:nth-of-type(2n) {
    background-color: #dedede;
}

.sub-or-ivs-case {
    padding: 0 0 160px;
}

.sub-or-ivs-case .title-box {
    text-align: center;
}

.sub-or-ivs-case .title-box .tit {
    font-size: 58px;
    font-weight: 600;
    letter-spacing: -4px;
    line-height: 73px;
}

.sub-or-ivs-case .title-box .sub {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -.5px;
    line-height: 30px;
    margin-top: 20px;
}

.sub-or-ivs-case .or-ivs-case-sl-box {
    margin: 40px auto 0;
    position: relative;
    overflow: hidden;
}

.sub-or-ivs-case .or-ivs-case-sl-box .swiper-container {
    position: relative;
}

.sub-or-ivs-case .or-ivs-case-sl-box .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 130px;
    padding: 0 100px;
}

.sub-or-ivs-case .or-ivs-case-sl-box .img-box {
    display: flex;
}

.sub-or-ivs-case .or-ivs-case-sl-box .txt-box {
    text-align: left;
    margin-left: 60px;
    width: 60%;
}

.sub-or-ivs-case .or-ivs-case-sl-box .txt-box .tit {
    margin: 0;
    font-size: 32px;
    font-weight: 600;
    line-height: 36px;
}

.sub-or-ivs-case .or-ivs-case-sl-box .txt-box .des {
    word-break: keep-all;
    font-size: 20px;
    color: #000;
    margin: 15px 0 0 0;
}

.sub-or-ivs-case .swiper-pagination {
    position: absolute;
    top: 0 !important;
    left: 50% !important;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    height: 70px;
    width: 100%;
    font-weight: 500;
    font-size: 28px;
}

.sub-or-ivs-case .swiper-pagination span {
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    line-height: 32px;
    color: #000;
    background-color: #f0f0f0;
    opacity: 1;
    margin: 0 5px;
    letter-spacing: -1px;
}

.sub-or-ivs-case .swiper-pagination span::before {
    display: flex;
}

.sub-or-ivs-case .swiper-pagination-bullet-active {
    background-color: #2a3972 !important;
}

.sub-or-ivs-case .swiper-pagination-bullet-active::before {
    font-weight: 600;
    color: #fff;
}

.sub-or-ivs-case .or-ivs-case-sl-box .swiper-pagination span:nth-of-type(1)::before {
    content: '수직피개';
}

.sub-or-ivs-case .or-ivs-case-sl-box .swiper-pagination span:nth-of-type(2)::before {
    content: '반대교합';
}

.sub-or-ivs-case .or-ivs-case-sl-box .swiper-pagination span:nth-of-type(3)::before {
    content: '교차교합';
}

.sub-or-ivs-case .or-ivs-case-sl-box .swiper-pagination span:nth-of-type(4)::before {
    content: '벌어진 치아';
}

.sub-or-ivs-case .or-ivs-case-sl-box .swiper-pagination span:nth-of-type(5)::before {
    content: '개방교합';
}

.sub-or-ivs-prime {
    padding: 160px 0 0;
    background-color: #f4f4f4;
}

.sub-or-ivs-prime .con {
    display: flex;
    justify-content: space-between;
}

.sub-or-ivs-prime .con .txt-box {
    text-align: left;
}

.sub-or-ivs-prime .title-box {
    text-align: left;
}

.sub-or-ivs-prime .title-box .tit {
    font-size: 58px;
    font-weight: 600;
    letter-spacing: -4px;
    line-height: 73px;
}

.sub-or-ivs-prime .title-box .sub {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -.5px;
    line-height: 30px;
    margin-top: 20px;
}

.sub-or-ivs-prime .txt-box {
    margin-top: 60px;
    flex-direction: column;
    display: flex;
}

.sub-or-ivs-prime .txt-box p {
    position: relative;
    padding-left: 36px;
    font-size: 30px !important;
    font-weight: 600;
    letter-spacing: -1.5px !important;
}

.sub-or-ivs-prime .txt-box p::before {
    content: '';
    background-image: url(/wp-content/themes/daejeon-dentist/img/check-icon-blue.png);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
}

.sub-or-ivs-prime .txt-box p:not(:first-child) {
    margin-top: 5px;
}

/* 치아교정 끝 */




/* 라미네이트 시작 */


.sub-la-intro {
    background-image: url(/wp-content/themes/daejeon-dentist/img/sub-la-intro-bg.png);
    background-size: cover;
    position: relative;
    padding: 160px 0 200px;
    margin-top: 100px;
}

.sub-la-intro .title-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    text-align: left;
}



.sub-la-need {
    padding: 120px 0;
    background-color: #f0f3fe;
}

.sub-la-need .con {
    display: flex;
    justify-content: center;
}

.sub-la-need .title-box {
    text-align: left;
}

.sub-la-need .title-box .sub-tit {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -.6px;
    line-height: 20px;
    margin: 0 0 20px 5px;
}

.sub-la-need .title-box .tit {
    font-size: 58px;
    font-weight: 600;
    letter-spacing: -4px;
    line-height: 73px;
}

.sub-la-need .title-box .sub {
    font-size: 18px;
    letter-spacing: -.5px;
    line-height: 30px;
    margin-top: 20px;
}

.sub-la-need .chk-list {
    margin-left: 200px;
    width: 60%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5em 1.5em;
    font-size: 22px;
    font-weight: 500;
    margin-top: 20px;
}

.sub-la-need .chk-list .box i {
    color: #2a3972;
    margin-right: 5px;
}

.sub-la-con {
    padding: 120px 0;
}

.sub-la-con .img-box {
    width: 1280px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
}

.sub-la-con .title-box {
    margin-top: 60px;
    text-align: center;
}




.sub-la-bna {
    padding: 160px 0;
}

.sub-la-bna .title-box {
    margin-top: -20px;
    text-align: left;
}

.sub-la-bna .con {
    display: flex;
    justify-content: center;
    align-items: center;
}


.sub-la-bna .la-bna-sl-box {
    width: 60%;
    position: relative;
    margin-left: 100px;
}

.sub-la-bna .la-bna-sl-box .swiper-slide {
    visibility: hidden;
}

.sub-la-bna .la-bna-sl-box .swiper-slide-active {
    visibility: visible;
}

.sub-la-bna .txt-box {
    display: flex;
    align-items: center;
    font-size: 26px;
    font-weight: 600;
    margin-top: 20px;
    letter-spacing: -1px;
}

.sub-la-bna .txt-box .nm {
    margin: 5px 5px 0 0;
    font-size: 13px;
    line-height: 20px;
    background-color: #d8def3;
    color: #2a3972;
    padding: 1px 12px;
    border-radius: 50px;
}

.sub-la-bna .txt-box .nm:nth-of-type(2) {
    margin-left: 20px;
}

.sub-la-bna .arrows {
    position: absolute;
    height: 50px;
    z-index: 1;
    bottom: 0;
    right: 0;
    width: 150px;
    transform: none;
    translate: none;
    top: auto;
    left: auto;
}

.sub-la-bna .arrows .swiper-button {
    border: 1px solid #aaa;
    border-radius: 0;
}

.sub-la-bna .arrows .swiper-button:hover {
    background-color: #d8def3;
    transition: .5s;
}


.sub-la-1day {
    background-image: url(/wp-content/themes/daejeon-dentist/img/sub-la-1day-bg.png);
    background-size: cover;
    position: relative;
    padding: 160px 0 200px;
    box-sizing: border-box;
    height: 700px;
}

.sub-la-1day .con {
    position: relative;
    height: 100%;
}

.sub-la-1day .title-box {
    color: #fff;
    width: 50%;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.sub-la-1day .title-box .tit {
    font-size: 62px;
    font-weight: 600;
    letter-spacing: -4px;
    line-height: 85px;
}

.sub-la-1day .title-box .sub {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -.5px;
    line-height: 30px;
    margin-top: 20px;
}

.sub-la-step {
    padding: 160px 0;
}


.sub-la-step .la-step-sl-box {
    margin-top: 60px;
}

.sub-la-step .la-step-sl-box .swiper-container {
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    list-style: none;
    z-index: 1;
    padding: 0 150px 160px;
}

.sub-la-step .la-step-sl-box .item {
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 3px 15px 0 rgba(0, 0, 0, .12);
    transition: transform 1s;
}

.sub-la-step .la-step-sl-box .swiper-slide[class$=-active]+.item,
.sub-la-step .la-step-sl-box .swiper-slide[class$=-active]+.item+.item+.item,
.sub-la-step .la-step-sl-box .swiper-slide[class$=-prev] {
    transform: translateY(7rem);
    transition: transform 1s;
}

.sub-la-step .la-step-sl-box .swiper-pagination {
    position: relative;
    width: 40% !important;
    margin: 60px auto 0;
    height: 2px;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #000 !important;
}

.sub-la-step .la-step-sl-box .swiper-slide .img-box {
    position: relative;
    width: 100%;
}

.sub-la-step .la-step-sl-box .swiper-slide .txt-box {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    padding: 35px 25px;
    gap: 0 1.5em;
    text-align: left;
}

.sub-la-step .la-step-sl-box .swiper-slide .txt-box .nm {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-row: 1/3;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    color: #2a3972;
    font-weight: 700;
    background-color: #f0f3fe;
    margin: 0;
}

.sub-la-step .la-step-sl-box .swiper-slide .txt-box .tit {
    font-weight: 700;
    font-size: 24px;
    margin: 0;
}

.sub-la-step .la-step-sl-box .swiper-slide .txt-box .des {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 24px;
}

.sub-la-reason {
    background-image: url(/wp-content/themes/daejeon-dentist/img/sub-la-reason-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding: 160px 0;
}

.sub-la-reason .title-box {
    text-align: left;
    color: #fff;
}



.sub-la-cerec {
    padding: 120px 0;
    background-image: url(/wp-content/themes/daejeon-dentist/img/sub-la-cerec-bg.png);
}

.sub-la-cerec .con {}



.sub-la-cerec>.con>.img-box {
    width: 80%;
    margin: 60px auto 0;
}

.sub-la-cerec .title-box-2 {
    text-align: center;
    margin-top: 160px;
}

.sub-la-cerec .title-box-2 .tit {
    font-size: 58px;
    font-weight: 600;
    letter-spacing: -4px;
    line-height: 73px;
}

.sub-la-cerec .title-box-2 .sub {
    font-size: 18px;
    letter-spacing: -.5px;
    line-height: 30px;
    margin-top: 20px;
}

.sub-la-cerec .item-box {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sub-la-cerec .item {
    width: calc(100% / 3);
}

.sub-la-cerec .item:not(:first-child) {
    margin-left: 20px;
}

.sub-la-cerec .item .img-box {
    border-radius: 20px;
    overflow: hidden;
}

.sub-la-cerec .item .tit {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    line-height: 40px;
    letter-spacing: -2px;
    margin-top: 20px;
}




.sub-la-vs {
    padding: 120px 0;
}

.sub-la-vs .table-box {
    margin-top: 40px;
}

.sub-la-vs .table-box .tit {
    background-color: #e9e9e9;
    font-size: 22px;
    font-weight: 500;
    text-align: center;
}

.sub-la-vs .table-box .des {
    background-color: #f6f6f6;
    font-size: 22px;
    padding: 30px 60px;
    letter-spacing: -1px;
    line-height: 32px;
    word-break: keep-all;
    text-align: center;
}

.sub-la-vs th,
.sub-la-vs td {
    border: 3px solid #fff;
}

.sub-la-vs .tit-1 {
    font-size: 1.8rem;
    font-weight: 700;
    background-color: #2a3972;
    padding: 20px 0;
    width: 50%;
    letter-spacing: -.03em;
}

.sub-la-vs .tit-2 {
    font-size: 1.8rem;
    font-weight: 700;
    background-color: #4a4a4a;
    padding: 20px 0;
    width: 50%;
    letter-spacing: -.03em;
}

.sub-la-vs .tit-vs {
    font-size: 2.5rem;
    font-weight: 700;
    background-color: #d1d1d1;
    color: #000;
    padding: 20px 40px;
}

/* 라미네이트 끝 */



















