@charset "UTF-8";

* {
    border: 0;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
}

.mobile-block {
    display: none;
}

.pc-block {
    display: block;
}

@media screen and (max-width: 768px) {
    .mobile-block {
        display: block;
    }

    .pc-block {
        display: none;
    }
}

.inner {
    max-width: 1700px;
    margin: 0 auto;
    position: relative;
}

.color-red {
    color: #6E0000;
}

.meta-head-schema {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    bottom: 0;
    overflow: hidden;
    white-space: nowrap;
    pointer-events: none;
}

/*header*/
header {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100;
    top: 0;
    background-color: transparent;
    transition: all 0.6s ease-in-out;
    pointer-events: none;
}

header .inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

header .logo {
    position: relative;
    width: 232px;
}

header .logo img {
    display: block;
    width: 100%;
    transition: all 0.6s ease-in-out;
}

header .header-container {
    padding: 24px 0;
    padding-top: 56px;
    background-color: transparent;
    transition: all 0.6s ease-in-out;
    pointer-events: auto;
    position: relative;
    z-index: 10;
}

header .header-container::after {
    content: '';
    position: absolute;
    top: 96px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #DEDEDE;
    opacity: 0;
    transition: all 0.6s ease-in-out;
}

header .logo img.logo-black {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
}

header .header-box.left {
    display: flex;
    gap: 100px;
    padding-top: 8px;
}

header .main-nav-wrap {
    transition: all 0.6s ease-in-out;
}

header .main-nav-wrap .main-nav {
    display: flex;
    gap: 80px;
    /* padding-top: 6px; */
    position: relative;
}

header .main-nav-wrap .main-nav>li {
    transform: translateX(-10%);
    opacity: 0;
    transition: all 0.6s ease-in-out;
    pointer-events: none;
}

header .main-nav-wrap .main-nav>li>a {
    color: #111;
    font-size: clamp(16px, 1.4vw, 20px);
    font-weight: 500;
    display: block;
    line-height: 34px;
    text-align: left;
}

header .main-nav-wrap .sub-menu-wrap {
    height: 0;
    overflow: hidden;
    transition: all 0.6s ease-in-out;
}

header .main-nav-wrap .sub-menu {
    transition: all 0.6s ease-in-out;
    padding-top: 58px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: absolute;
}

header .main-nav-wrap .sub-menu li {
    position: relative;
    font-size: clamp(14px, 1.2vw, 18px);
    height: 2em;
}

header .main-nav-wrap .sub-menu li a {
    color: #2C2C2C;
    font-size: 1em;
    white-space: nowrap;
    font-weight: 300;
    letter-spacing: -0.025em;
    transition: all 0.4s ease-in-out;
    display: block;
    line-height: 2em;
}

header .main-nav-wrap .sub-menu li a:hover {
    color: #6E0000;
    text-shadow: 0 0 1px #6E0000;
}

header .header-box.right .btn-wrap {
    display: flex;
    align-items: center;
    gap: 24px;
}

header .header-box .lang-btn-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background-color: #fff;
    border-radius: 50px;
    border: 1px solid #fff;
    transition: all 0.4s ease-in-out;
}

header .header-box .lang-btn-wrap button {
    font-size: 18px;
    color: #BCBCBC;
    transition: all 0.4s ease-in-out;
}

header .header-box .lang-btn-wrap button.on {
    color: #111;
}

header .header-box .lang-btn-wrap button:hover {
    color: #111;
}

header .header-box .lang-btn-wrap .line {
    display: block;
    width: 1px;
    height: 13px;
    margin: 0 12px;
    background-color: #BCBCBC;
}

header .header-box .lang-btn .symbol-color {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

header .btn-wrap .menu-btn-wrap {
    width: 48px;
    height: 48px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.6s ease-in-out;
}

header .btn-wrap .menu-btn {
    width: 18px;
    height: 18px;
    position: relative;
}

header .btn-wrap .menu-btn .line {
    width: 100%;
    height: 2px;
    border-radius: 50px;
    background-color: #141414;
    position: absolute;
    top: 50%;
    left: 0;
    transition: all 0.6s ease-in-out;
}

header .btn-wrap .menu-btn .line1 {
    transform: translateY(-6px);
}

header .btn-wrap .menu-btn .line3 {
    transform: translateY(6px);
}

header.sticky .header-container {
    background-color: #FFF;
    box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.05);
    padding-top: 24px;
    overflow: hidden;
}

header.sticky .logo img.logo-white {
    opacity: 0;
}

header.sticky .logo img.logo-black {
    opacity: 1;
}

header.sticky .main-nav-wrap .main-nav>li {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

header.sticky .main-nav-wrap .main-nav>li:nth-child(2) {
    transition-delay: 0.1s;
}

header.sticky .main-nav-wrap .main-nav>li:nth-child(3) {
    transition-delay: 0.2s;
}

header.sticky .main-nav-wrap .main-nav>li:nth-child(4) {
    transition-delay: 0.3s;
}

header.sticky .main-nav-wrap .main-nav>li:nth-child(5) {
    transition-delay: 0.4s;
}

header.sticky .btn-wrap .menu-btn-wrap {
    background-color: #6E0000;
}

header.sticky .btn-wrap .menu-btn-wrap .line {
    background-color: #fff;
}

header.sticky .header-box .lang-btn .symbol-white {
    opacity: 0;
}

header.sticky .header-box .lang-btn .symbol-color {
    opacity: 1;
}

header.sticky .header-box .lang-btn-wrap {
    border-color: #BCBCBC;
}

header.sub-page .header-container {
    background-color: #FFF;
    box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.05);
    padding-top: 24px;
    overflow: hidden;
}

header.sub-page .logo img.logo-white {
    opacity: 0;
}

header.sub-page .logo img.logo-black {
    opacity: 1;
}

header.sub-page .main-nav-wrap .main-nav>li {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

header.sub-page .main-nav-wrap .main-nav>li:nth-child(2) {
    transition-delay: 0.1s;
}

header.sub-page .main-nav-wrap .main-nav>li:nth-child(3) {
    transition-delay: 0.2s;
}

header.sub-page .main-nav-wrap .main-nav>li:nth-child(4) {
    transition-delay: 0.3s;
}

header.sub-page .main-nav-wrap .main-nav>li:nth-child(5) {
    transition-delay: 0.4s;
}

header.sub-page .btn-wrap .menu-btn-wrap {
    background-color: #6E0000;
}

header.sub-page .btn-wrap .menu-btn-wrap .line {
    background-color: #fff;
}

header.sub-page .header-box .lang-btn .symbol-white {
    opacity: 0;
}

header.sub-page .header-box .lang-btn .symbol-color {
    opacity: 1;
}

header.sub-page .header-box .lang-btn-wrap {
    border-color: #BCBCBC;
}

header.click .header-container {
    box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.05);
    padding-top: 24px;
}

header.active.sticky .header-container::after {
    opacity: 1;
}

header.active {
    background-color: rgba(0, 0, 0, 0.80);
}

header.active .main-nav-wrap .sub-menu-wrap {
    height: 356px;
}

header .full-menu-wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    padding-top: 100px;
    opacity: 0;
    transition: all 0.6s ease-in-out;
    pointer-events: none;
}

header .full-menu-wrap .inner {
    padding: 40px 0;
    display: flex;
    align-items: center;
    gap: 80px;
    height: 100%;
}

header .full-menu-wrap .menu-list {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    width: clamp(400px, 60vw, 1020px);
}

header .full-menu-wrap .menu-item {
    width: calc(33.3333% - 40px);
}

header.click .full-menu-wrap .menu-item {
    pointer-events: all;
}

header .full-menu-wrap .menu-item h5 {
    color: #111;
    font-size: clamp(15px, 1.4vw, 30px);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid #ACACAC;
    transition: all 0.4s ease-in-out;
}

header .full-menu-wrap .menu-item h5 .icon {
    display: none;
}

header .full-menu-wrap .menu-item h5 span {
    font-size: clamp(12px, 1vw, 15px);
    font-weight: 300;
    line-height: 140%;
    /* 21px */
    letter-spacing: -0.025em;
}

header .full-menu-wrap .menu-item .menu-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

header .full-menu-wrap .menu-item .menu-box>li>a {
    color: #2C2C2C;
    font-size: clamp(14px, 1.2vw, 20px);
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.025em;
    /* transition: all 0.4s ease-in-out; */
}

header .full-menu-wrap .menu-item .menu-box>li>a:hover {
    color: #6E0000;
    font-weight: 600;
}

header .full-menu-wrap .menu-item.active h5 {
    color: #6E0000;
}

header .full-menu-wrap .menu-item .sub-menu {
    padding-top: 8px;
    padding-left: 20px;
}

header .full-menu-wrap .menu-item .sub-menu li {
    margin-bottom: 4px;
}

header .full-menu-wrap .menu-item .sub-menu li a {
    color: #686868;
    font-size: clamp(14px, 1.2vw, 18px);
    font-weight: 300;
    line-height: 140%;
    letter-spacing: -0.025em;
}

header .full-menu-wrap .menu-item .sub-menu li a:hover {
    color: #6E0000;
}

header .full-menu-wrap .img-wrap {
    height: 100%;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    flex-grow: 1;
}

header .full-menu-wrap .img-wrap .img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: all 0.6s ease-in-out;
}

header.click .full-menu-wrap {
    opacity: 1;
    pointer-events: auto;
}

header.click .btn-wrap .menu-btn-wrap .line1 {
    transform: rotate(45deg);
}

header.click .btn-wrap .menu-btn-wrap .line2 {
    opacity: 0;
}

header.click .btn-wrap .menu-btn-wrap .line3 {
    transform: rotate(-45deg);
}

header.click .header-box .lang-btn-wrap {
    border-color: #BCBCBC;
}

header.click .logo img.logo-black {
    opacity: 1;
}

header.click .logo img.logo-white {
    opacity: 0;
}

header.click .main-nav-wrap {
    opacity: 0;
    pointer-events: none;
}

header.click .main-nav-wrap .main-nav>li {
    pointer-events: none;
}

header .full-menu-wrap .img-wrap .img.visible {
    opacity: 1;
}

header .full-menu-wrap .img-wrap .img1 {
    background-image: url(../img/common/header_img1.png);
}

header .full-menu-wrap .img-wrap .img2 {
    background-image: url(../img/common/header_img2.png);
}

header .full-menu-wrap .img-wrap .img3 {
    background-image: url(../img/common/header_img3.png);
}

header .full-menu-wrap .img-wrap .img4 {
    background-image: url(../img/common/header_img4.png);
}

header .full-menu-wrap .img-wrap .img5 {
    background-image: url(../img/common/header_img5.png);
}

@media screen and (max-width: 1300px) {
    header .header-box.left {
        gap: 30px;
    }

    header .header-box .lang-btn-wrap button {
        font-size: 15px;
    }

    header.sticky .header-container {
        align-items: center;
    }

    header.sticky .main-nav-wrap .main-nav>li {
        min-width: none;
    }

    header .main-nav-wrap .main-nav {
        gap: 40px;
    }

    header .full-menu-wrap .menu-list {
        gap: 30px;
    }

    header .full-menu-wrap .inner {
        gap: 50px;
    }

    header .full-menu-wrap .menu-item {
        width: calc(33.3333% - 20px);
    }
}


@media screen and (max-width: 1024px) {
    header .main-nav-wrap {
        display: none;
    }

    header .full-menu-wrap .img-wrap {
        display: none;
    }

    header .full-menu-wrap .menu-list {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    header .header-container {
        padding: 15px 0;
        padding-top: 15px;
        border-bottom: 1px solid #DEDEDE;
    }

    header .full-menu-wrap .menu-item .menu-box>li>a:hover {
        color: #2c2c2c;
        font-weight: 400;
    }

    header .full-menu-wrap .menu-item.active h5 {
        color: #111;
    }

    header.click .header-container {
        padding-top: 15px;
        background-color: #fff;
    }

    header .header-box.left {
        padding-top: 5px;
    }

    header.sticky .header-container {
        padding-top: 15px;
    }

    header.sub-page .header-container {
        padding-top: 15px;
    }

    header.click {
        background-color: rgba(0, 0, 0, 0.80);
        pointer-events: auto;
    }

    header .header-box .lang-btn-wrap {
        padding: 5px 12px;
    }

    header .header-box .lang-btn-wrap button {
        font-size: 12px;
    }

    header .header-box.right .btn-wrap {
        gap: 8px;
    }

    header .btn-wrap .menu-btn-wrap {
        width: 24px;
        height: 24px;
    }

    header .btn-wrap .menu-btn {
        width: 12px;
        height: 12px;
    }

    header .btn-wrap .menu-btn .line {
        height: 1px;
    }

    header .btn-wrap .menu-btn .line1 {
        transform: translateY(-3px);
    }

    header .btn-wrap .menu-btn .line3 {
        transform: translateY(3px);
    }

    header .full-menu-wrap {
        top: 56px;
        padding-top: 0px;
        width: 100%;
        height: auto;
        max-height: calc(100% - 56px);
        position: fixed;
        z-index: 500;
    }

    header .full-menu-wrap .inner {
        gap: 0;
        padding: 0;
        width: 100%;
        align-items: flex-start;
    }

    header .full-menu-wrap .menu-wrap {
        width: 100%;
        height: auto;
        max-height: 100%;
        overflow-y: auto;
    }

    header .full-menu-wrap .menu-list {
        gap: 0;
        flex-direction: column;
        width: 100%;
    }

    header .full-menu-wrap .menu-item {
        width: 100%;
    }

    header .full-menu-wrap .menu-item h5 {
        padding: 18px 23px;
        margin-bottom: 0;
        font-size: 15px;
        position: relative;
    }

    header .full-menu-wrap .menu-item h5 span {
        font-size: 13px;
    }

    header .full-menu-wrap .menu-item h5 .icon-wrap {
        display: block;
        display: flex;
        align-items: center;
        position: absolute;
        right: 30px;
        transition: all 0.4s ease-in-out;
    }

    header .full-menu-wrap .menu-item h5 .icon-wrap path {
        fill: #5C5C5C;
        transition: all 0.4s ease-in-out;
    }

    header .full-menu-wrap .menu-item .menu-box-roller {
        height: 0;
        overflow: hidden;
        transition: all 0.4s ease-in-out;
    }

    header .full-menu-wrap .menu-item .menu-box {
        gap: 0;
    }

    header .full-menu-wrap .menu-item .menu-box>li {
        width: 100%;
        border-bottom: 1px solid #DEDEDE;
    }


    header .full-menu-wrap .menu-item .menu-box>li>a {
        width: 100%;
        display: flex;
        padding: 0 23px;
        line-height: 50px;
        font-size: 15px;
        transition: all 0.4s ease-in-out;
    }

    header .full-menu-wrap .menu-item .menu-box>li>a::before {
        content: "-";
        display: block;
        margin-right: 5px;
    }

    header .full-menu-wrap .menu-item .menu-box>li>a {
        position: relative;
    }

    header .full-menu-wrap .menu-item .menu-box>li>a .icon-wrap {
        position: absolute;
        right: 30px;
        transition: all 0.4s ease-in-out;
    }

    header .full-menu-wrap .menu-item .menu-box>li.active>a .icon-wrap {
        transform: rotate(180deg);
    }

    header .full-menu-wrap .menu-item .menu-box>li>a svg path {
        fill: #111111;
    }

    header .full-menu-wrap .menu-item .menu-box>li.active>a {
        background-color: #F6F6F6;
    }

    header .full-menu-wrap .menu-item .sub-menu {
        padding-left: 0;
        padding-top: 0;
    }

    header .full-menu-wrap .menu-item .sub-menu li {
        border-bottom: 1px solid #DEDEDE;
        margin-bottom: 0;
    }

    header .full-menu-wrap .menu-item .sub-menu li:last-child {
        border-bottom: 0;
    }

    header .full-menu-wrap .menu-item .sub-menu li:first-child {
        border-top: 1px solid #DEDEDE;
    }

    header .full-menu-wrap .menu-item .sub-menu li a {
        line-height: 40px;
        color: #111;
        font-size: 14px;
        font-weight: 300;
        padding-left: 33px;
        display: block;
    }

    .two-depth-menu-box {
        height: 0;
        overflow: hidden;
        transition: all 0.4s ease-in-out;
    }

    header .full-menu-wrap .menu-item.visible h5 {
        background-color: #6E0000;
        color: #fff;
    }

    header .full-menu-wrap .menu-item.visible h5 .icon-wrap {
        transform: rotate(180deg);
    }

    header .full-menu-wrap .menu-item.visible h5 svg path {
        fill: #fff;
    }

    header .logo {
        width: 121px;
    }

}

/*footer*/
footer {
    background-color: #111;
    padding: 48px 0;
    overflow: hidden;
}

footer .ft-frame {
    border: 1px solid #3F3F3F;
    border-width: 1px 0;
}

footer .inner {
    border: 1px solid #3F3F3F;
    border-width: 0 1px;
}

footer .nav-list {
    color: #FFF;
    display: flex
}

footer .nav-list>li {
    flex: 1;
    padding: 56px 48px;
    width: 340px;
    height: 306px;
    border-right: 1px solid #3F3F3F;
}

footer .nav-list .nav li {
    color: #D9D9D9;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    /* 24px */
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

footer .nav-list h5 {
    font-size: 20px;
    font-weight: 600;
    line-height: 150%;
    /* 30px */
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    text-transform: uppercase;
}

footer .ft-info {
    display: flex;
    width: 100%;
}

footer .ft-info.info-depth1 {
    border-bottom: 1px solid #3F3F3F;
}

footer .ft-info.info-depth1 .img-wrap {
    flex-grow: 1;
}

footer .ft-info.info-depth1 .img-wrap .img {
    width: 100%;
    height: 100%;
    background-image: url(../img/common/ft_img.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

footer .info-depth2 .ft-txt-wrap {
    flex-grow: 1;
    border-right: 1px solid #3F3F3F;
}

footer .info-depth2 .ft-txt-wrap .txt-box {
    border-bottom: 1px solid #3F3F3F;
    padding: 47px 30px;
}

footer .info-depth2 .logo {
    display: block;
    margin-bottom: 32px;
    width: 231px;
}

footer .info-depth2 .txt-wrap .txt {
    margin-bottom: 8px;
    display: flex;
    gap: 24px;
}

footer .info-depth2 .txt-wrap .txt>span {
    display: flex;
    gap: 8px;
}

footer .info-depth2 .txt-wrap .txt b {
    font-weight: 500;
    color: #FFF;
}

footer .info-depth2 .txt-wrap .txt {
    color: #B7B7B7;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
    /* 25.2px */
    letter-spacing: -0.45px;
}

footer .info-depth2 .copyright-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
}

footer .info-depth2 .copyright-wrap .policy-list {
    display: flex;
    align-items: center;
    gap: 15px;
}

footer .info-depth2 .copyright-wrap .policy-list li a {
    color: #B9B9B9;
    font-size: 14px;
    font-weight: 600;
    line-height: 150%;
    /* 21px */
    letter-spacing: -0.03em;
}

footer .info-depth2 .copyright-wrap .copyright {
    color: #B9B9B9;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.03em;
}

footer .info-depth2 .nav-list li {
    height: auto;
}

footer .ft-info.info-depth2 .ft-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 47px 30px;
}

@media screen and (max-width: 1024px) {}

@media screen and (max-width: 768px) {
    footer .nav-list>li {
        display: none;
    }

    footer .info-depth2 .ft-txt-wrap .txt-box {
        padding: 40px 0 32px 0;
    }

    footer .ft-info.info-depth1 .img-wrap {
        height: 50vw;
    }

    footer .ft-info.info-depth1 {
        border: 0;
    }

    footer .info-depth2 .txt-wrap .txt {
        flex-direction: column;
        text-align: center;
        font-size: 16px;
    }

    footer .info-depth2 .txt-wrap .txt {
        gap: 8px;
        align-items: center;
    }

    footer .info-depth2 .ft-txt-wrap .txt-box {
        border-bottom: 0;
    }

    footer .info-depth2 .ft-txt-wrap {
        border-right: 0;
    }

    footer .info-depth2 .logo {
        margin: 0 auto;
        margin-bottom: 32px;
    }

    footer .inner {
        border: 0;
    }

    footer .ft-frame {
        border: 0;
        border-bottom: 1px solid #3F3F3F;
    }

    footer {
        padding-top: 60px;
        padding-bottom: 8px;
    }

    footer .info-depth2 .copyright-wrap {
        padding: 0;
        flex-direction: column;
        margin-bottom: 52px;
    }

    /* footer .info-depth2 .txt-wrap .txt > span {
        flex-direction: column;
    } */
}

/*swiper progress*/
.progress-wrap {
    display: flex;
    align-items: center;
}

.progress-wrap .num {
    font-size: 16px;
    width: 1.6em;
}

.progress-wrap .progress-bar {
    width: 300px;
    height: 3px;
    border-radius: 100px;
    position: relative;
    background-color: rgba(255, 255, 255, 0.20);
    margin: 0 12px;
    overflow: hidden;
}

.progress-wrap .progress-bar .bar {
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: absolute;
    transform: scaleX(0);
}

.swiper-slide {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

@media (max-width: 1800px) {
    .inner {
        width: calc(100% - 100px);
    }
}

@media (max-width: 1024px) {
    .inner {
        width: calc(100% - 40px);
    }
}



/*의료 전문가 체크 팝업*/
.pop_doctor {
    z-index: 10000;
}

.pop_doctor .modal_head {
    border-bottom: 1px solid #E5E5E5;
    padding: 0;
}

.pop_doctor .modal_content {
    padding: 0;
    max-width: 780px;
}

.pop_doctor img {
    display: flex;
    margin: 22px auto;
    padding: 0;
    display: block;
    justify-content: center;
    align-items: center;
}

.pop_doctor .modal_con {
    padding: 53px 60px 40px;
    text-align: center;
}

.pop_doctor .txt_box p {
    font-size: 22px;
    font-weight: 300;
    line-height: 130%;
    color: #262626;
    letter-spacing: -0.22px;
}

.pop_doctor .txt_box p:first-child {
    padding-bottom: 30px;
}

.pop_doctor .txt_box p:last-child {
    padding-bottom: 52px;
}

.pop_doctor .btn_box {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    gap: 20px;
}

.pop_doctor button {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.36px;
    gap: 2px;
    border-radius: 0;
    padding: 13px 23px;
}

.pop_doctor button p {
    width: 58px;
    text-align: center;
}

.pop_doctor .btn_blue {
    color: #FFF;
    background: #0B5B84;
}

.pop_doctor .btn_line {
    color: #262626;
    border: 1px solid #000;
}

@media screen and (max-width:768px) {
    .pop_doctor img {
        max-width: 136px;
        margin: 18px auto;
    }

    .pop_doctor .modal_con {
        gap: 0;
        padding: 30px 20px 36px;
    }

    .pop_doctor .txt_box p {
        font-size: 17px;
        line-height: 140%;
        letter-spacing: -0.34px;
    }

    .pop_doctor .txt_box p:first-child {
        padding-bottom: 24px;
    }

    .pop_doctor .txt_box p:last-child {
        padding-bottom: 30px;
    }

    .pop_doctor .btn_box {
        width: 100%;
        gap: 12px;
    }

    .pop_doctor button {
        max-width: 130px;
        padding: 9px 23px;
        font-size: 16px;
    }

    .pop_doctor button p {
        width: 42px;
    }
}

html.user_doctor .customer-content {
    display: none !important;
}

html.user_not_doctor .doctor-content {
    display: none !important;
}