/* main_banner */
.main_banner {
    padding-top: 224px;
    padding-bottom: 217px;
    position: relative;
}
.main_banner > img:nth-of-type(1) {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: -2;
}
.main_banner > img:nth-of-type(2) {
    position: absolute;
    right: 16%;
    bottom: 0px;
    z-index: -1;
}
.main_banner_wrap {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    padding-left: 101px;
    padding-right: 19px;
    justify-content: space-between;
    align-items: center;
}
.main_banner_left h2 {
    font-size: 43px;
    font-weight: 400;
    color: #2a2a2a;
    line-height: 54px;
    margin-top: 22px;
    margin-bottom: 59px;
}
.main_banner_left h2 > span {
    font-size: 43px;
    font-weight: 600;
    color: #4aacc6;
}
.main_banner_left > span {
    font-size: 14px;
    font-weight: 300;
    color: #2a2a2a;
    opacity: 0.4;
    letter-spacing: 8.5px;
}
.main_banner_left p {
    font-size: 22px;
    font-weight: 400;
    color: #2a2a2a;
    line-height: 39px;
    margin-bottom: 58px;
}
.main_banner_right h3 {
    font-size: 18px;
    font-weight: 400;
    color: #2a2a2a;
    margin-bottom: 6px;
}
.main_banner_right h3 > span {
    font-size: 28px;
    font-weight: 700;
}
.main_banner_right p {
    font-size: 20px;
    font-weight: 400;
    color: #5e5e5e;
    margin-bottom: 26px;
}
.main_banner_right > span {
    font-size: 16px;
    font-weight: 400;
    color: #5e5e5e;
    border-radius: 26px;
    background-color: #ececec;
    line-height: 42px;
    padding: 0px 15px;
    display: flex;
    width: 161px;
    justify-content: space-between;
}
.main_banner_link {
    display: flex;
}
#main_docter01 {
    margin-bottom: 11px;
}
.main_banner_link a {
    font-size: 22px;
    font-weight: 400;
    color: #4aacc6;
    text-decoration: underline;
}
.main_banner_link > a:first-child {
    margin-right: 37px;
}

/* main_docter */
.main_docter {
    background-image: url(../img/main_docter_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 244px;
    padding-bottom: 191px;
}
.main_docter > div {
    display: flex;
    justify-content: space-between;
}
.main_docter_title h2 {
    font-size: 61px;
    font-weight: 300;
    color: #2a2a2a;
    margin-bottom: 32px;
}
.main_docter_title h2 > span {
    font-weight: 700;
}
.main_docter_title h3 {
    font-size: 36px;
    font-weight: 400;
    color: #2a2a2a;
    margin-bottom: 129px;
    line-height: 51px;
}
.main_docter_title h3 > span {
    color: #4aacc6;
}
.main_docter_title p {
    font-size: 18px;
    font-weight: 400;
    color: #5e5e5e;
    margin-bottom: 10px;
}
.main_docter_title p:last-child {
    margin-bottom: 0px;
}
.main_docter_con h3 {
    font-size: 18px;
    font-weight: 400;
    color: #2a2a2a;
    margin-bottom: 6px;
    margin-top: 83px;
}
.main_docter_con h3 > span {
    font-size: 28px;
    font-weight: 700;
}
.main_docter_con p {
    font-size: 20px;
    font-weight: 400;
    color: #5e5e5e;
    margin-bottom: 26px;
    line-height: 29px;
}
.main_docter_con > span {
    font-size: 13px;
    font-weight: 400;
    color: #5e5e5e;
    margin-bottom: 9px;
    display: flex;
    justify-content: space-between;
    width: 130px;
    line-height: 34px;
    padding-left: 12px;
    padding-right: 13px;
    background-color: #ececec;
    border-radius: 26px;
    cursor: pointer;
}
.main_docter_con > span:last-child {
    margin-bottom: 0px;
}
.main_docter01 {
    margin-left: 130px;
}
.main_docter02 {
    transform: translateX(30px);
}

/* 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: var(--layoutwidth);
}
.modal-container .modal-background .modal .inner {
    height: 100%;
}
.modal-container .modal-background .modal img {
    width: 100%;
}
.modal-close {
    position: absolute;
    top: 22px;
    right: 25px;
    width: 36px;
    height: 36px;
    font-size: 1.4rem;
    color: #fff;
    cursor: pointer;
    background-color: #4aacc6;
}
.viewMore {
    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;
        padding-right: 2vw;
    }
    .modal-close {
        top: 10px;
        right: 30px;
    }
}

/* new_interior */
.new_interior {
    padding-top: 127px;
    padding-bottom: 155px;
    background-color: rgba(243, 243, 243, 0.76);
}
.new_interior_wrap {
    text-align: center;
    max-width: 1171px;
    width: 100%;
    margin: 0 auto;
}
.new_interior_wrap > span {
    font-size: 12px;
    font-weight: 300;
    color: rgba(42, 42, 42, 0.4);
    letter-spacing: 6.5px;
}
.new_interior_wrap > h2 {
    font-size: 42px;
    font-weight: 400;
    color: #2a2a2a;
    margin-top: 8px;
    margin-bottom: 68px;
}
.new_interior_wrap > h2 > span {
    color: #4aacc6;
}
.new_interior_swiper01 {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.new_interior_prev {
    position: absolute;
    left: 23px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1;
}
.new_interior_swiper02 {
    width: 100%;
    overflow: hidden;
    margin-top: 48px;
}
.new_interior_next {
    position: absolute;
    right: 23px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1;
}
.new_interior_swiper02 .swiper-slide {
    opacity: 0.24;
    cursor: pointer;
}
.new_interior_swiper02 .swiper-slide-thumb-active {
    opacity: 1;
}

/* main_come */
.main_come {
    padding-top: 34px;
}
.main_come > span {
    font-size: 18px;
    font-weight: 400;
    color: #5e5e5e;
    display: block;
    text-align: center;
}
.main_come > h2 {
    font-size: 42px;
    font-weight: 400;
    color: #2a2a2a;
    text-align: center;
    margin-top: 12px;
    margin-bottom: 61px;
}
.main_come > h2 > span {
    color: #4aacc6;
}
.main_come_con {
    display: flex;
    width: 100%;
}
.main_come_right {
    width: 50%;
    background-color: #f6f6f6;
    padding-top: 62px;
    padding-left: 75px;
}
.main_come_right > h3 {
    font-size: 69px;
    font-weight: 700;
    color: #4aacc6;
}
.main_come_right > h4 {
    font-size: 24px;
    font-weight: 500;
    color: #2a2a2a;
    margin-top: 25px;
    margin-bottom: 7px;
}
.main_come_right > p {
    font-size: 20px;
    font-weight: 400;
    line-height: 36px;
    color: #2a2a2a;
    margin-bottom: 89px;
}
.main_come_right > span {
    font-size: 20px;
    font-weight: 400;
    color: #2a2a2a;
    display: block;
}
.main_come_right > span:last-child {
    margin-top: 26px;
}
.main_come_right > span > img {
    margin-right: 9px;
}

/* new_orthodontics */
.new_orthodontics {
    background-image: url(../img/new_orthodontics_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 157px;
    padding-bottom: 140px;
    display: flex;
    justify-content: flex-end;
}
.new_orthodontics_wrap {
    max-width: 1530px;
    width: 100%;
}
.new_orthodontics_text {
    display: flex;
    margin-top: 61px;
    padding-left: 33px;
}
.new_orthodontics_left h2 {
    font-size: 38px;
    font-weight: 300;
    color: #2a2a2a;
    line-height: 55px;
    margin-bottom: 25px;
}
.new_orthodontics_left h2 > span {
    color: #4aacc6;
}
.new_orthodontics_left > p:nth-of-type(1) {
    line-height: 40px;
    font-size: 20px;
    font-weight: 700;
    color: #4aacc6;
    margin-bottom: 6px;
}
.new_orthodontics_left > p:nth-of-type(1) > span {
    font-weight: 300;
    color: #fff;
    background-color: #4aacc6;
    width: 311px;
    text-align: center;
    margin-right: 22px;
    display: inline-block;
}
.new_orthodontics_left > p:nth-of-type(2) {
    line-height: 40px;
    font-size: 20px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 6px;
}
.new_orthodontics_left > p:nth-of-type(2) > span {
    font-weight: 300;
    color: #fff;
    background-color: #2a2a2a;
    width: 101px;
    text-align: center;
    display: inline-block;
    margin-right: 19px;
}
.new_orthodontics_right {
    margin-left: 93px;
}
.new_orthodontics_right > p:nth-of-type(1) {
    font-size: 18px;
    font-weight: 300;
    color: #2a2a2a;
    line-height: 32px;
    margin-bottom: 49px;
    margin-top: 9px;
}
.new_orthodontics_right > p:nth-of-type(1) > span {
    font-weight: 700;
    color: #4aacc6;
}
.new_orthodontics_right > p:nth-of-type(2) {
    font-size: 18px;
    font-weight: 300;
    color: #2a2a2a;
    line-height: 32px;
}
.new_orthodontics_right > p:nth-of-type(2) > span {
    font-weight: 500;
}
