/* intro02_s01 */
.intro02_s01 {
    padding: 300px 0px;
    color: #333;
    text-align: center;
}
.sub_menu {
    display: flex;
    align-items: center;
    justify-content: center;
}
.sub_menu > * {
    margin-right: 10px;
}
.sub_menu p {
    font-size: 15px;
    font-weight: 500;
    color: #9b9b9b;
}
.sub_menu p.active {
    font-weight: 700;
    color: #333;
}
.intro02_s01 h3 {
    margin: 50px 0px 15px;
    font-size: 24px;
    font-weight: 500;
    color: #666666;
}
.intro02_s01 h2 {
    margin-bottom: 130px;
    font-size: 60px;
    font-weight: 700;
}

/* intro02_s02 */
.intro02_s02 {
    color: #000;
    overflow: hidden;
}
.intro02_s02_wrap {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}
.intro02_s02_wrap > div {
    background-color: #fff;
    border-radius: 30px;
    padding: 43px 80px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.doctor_txt h3 {
    font-size: 20px;
    font-weight: 500;
    color: #666;
}
.doctor_txt h2 {
    font-size: 24px;
    font-weight: 500;
    margin: 10px 0px 30px;
}
.doctor_txt h2 > span {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-right: 15px;
}
.doctor_txt h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
.doctor_txt h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 30px;
}
.doctor_txt p {
    font-size: 16px;
    font-weight: 400;
    color: #4a4a4a;
    line-height: 160%;
    letter-spacing: -0.04px;
}
.doctor_txt > div {
    display: flex;
    align-items: flex-start;
}
.doctor01 .doctor_txt_right {
    margin-left: 15px;
}
.doctor02 .doctor_txt_right {
    margin-left: 40px;
}
.case_btn {
    display: inline-block;
    padding: 0px 30px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background-color: #333;
    border-radius: 99px;
    line-height: 55px;
    margin-top: 25px;
    cursor: pointer;
}
.doctor01_mark {
    display: flex;
    align-items: center;
    margin-top: 30px;
}
.doctor01_mark > div {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin-right: 10px;
}
.doctor01_mark > div:last-child {
    margin-right: 0px;
}
.doctor01_mark span {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}
.doctor01_mark img {
    margin-bottom: 10px;
}
.doctor01 {
    margin-bottom: 50px;
}
.doctor02_mark {
    display: flex;
    align-items: center;
    margin-top: 30px;
    flex-wrap: wrap;
    max-width: 233px;
    width: 100%;
    justify-content: space-between;
}
.doctor02_mark > div {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: 100px;
}
.doctor02_mark > div:nth-child(1),
.doctor02_mark > div:nth-child(2) {
    margin-bottom: 20px;
}
.doctor02_mark span {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}
.doctor02_mark img {
    margin-bottom: 10px;
}

/* modal */
html.modal-active,
body.modal-active {
    overflow: hidden;
}
.modal-container {
    position: fixed;
    display: table;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    transform: scale(0);
    z-index: 99999;
}
.modal-container.on {
    transform: scaleY(0.01) scaleX(0);
    animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.modal-container.on .modal-background .modal {
    transform: scale(0);
    animation: zoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.modal-container.on.out {
    transform: scale(1);
    animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.modal-container.on.out .modal-background .modal {
    animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.modal-container .modal-background {
    display: table-cell;
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
    vertical-align: middle;
}
.modal-container .modal-background .modal {
    background: white;
    display: inline-block;
    font-weight: 300;
    position: relative;
    width: 1440px;
}
.modal-container .modal-background .modal .inner {
    display: flex;
    align-items: flex-start;
    padding: 100px 75px;
    overflow-y: scroll;
    height: 80vh;
}
.modal-close {
    position: absolute;
    top: 36px;
    right: 42px;
    cursor: pointer;
}

@keyframes unfoldIn {
    0% {
        transform: scaleY(0.005) scaleX(0);
    }
    50% {
        transform: scaleY(0.005) scaleX(1);
    }
    100% {
        transform: scaleY(1) scaleX(1);
    }
}
@keyframes unfoldOut {
    0% {
        transform: scaleY(1) scaleX(1);
    }
    50% {
        transform: scaleY(0.005) scaleX(1);
    }
    100% {
        transform: scaleY(0.005) scaleX(0);
    }
}
@keyframes zoomIn {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes zoomOut {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}

@media (max-width: 1580px) {
    .modal-container .modal-background .modal {
        width: 90%;
        padding: 40px 4vw;
    }
    .modal-close {
        top: 10px;
        right: 30px;
    }
}
.doctor01_pop_right {
    text-align: justify;
    padding-top: 23px;
    padding-left: 61px;
    color: #333;
}
.doctor01_pop_right h2 {
    font-size: 48px;
    font-weight: 300;
    color: #000;
    line-height: 140%;
}
.doctor01_pop_right h3 {
    font-size: 48px;
    font-weight: 300;
    color: #000;
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    line-height: 140%;
}
.doctor01_pop_right h3 > img {
    margin: 0px 10px;
}
.doctor01_pop_right h3 > span {
    font-weight: 700;
}
.doctor01_pop_right h4 {
    font-size: 20px;
    font-weight: 400;
    color: #000;
}
.doctor01_pop_right h4 > span {
    font-size: 28px;
    font-weight: 700;
}
.doctor01_pop_right h5 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 30px 0px 20px;
}
.doctor01_pop_right p {
    font-size: 18px;
    font-weight: 400;
    color: #333;
    margin-bottom: 50px;
    line-height: 160%;
}

.main_implant_con {
    display: flex;
    align-items: flex-start;
    max-width: 426px;
    width: 100%;
    justify-content: space-between;
}
.main_implant_con h4 {
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    margin-top: 10px;
    text-align: center;
}
