@charset "utf-8";
/* age */
.mob{
    display: none;
}
.modal-wrap{
    overflow-y: auto;
}
.thesis-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
}

.thesis-wrap .thesis-badge {
    display: inline-block;
    color: #004F92;
    padding: 5px 15px;
    border: 1px solid #004F92;
    border-radius: 30px;
    margin-right: 8px;
    margin-bottom: 5px;
}

.thesis-wrap .thesis-link {
    display: inline-block;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    color: #fff;
    background: #004F92;
    border-radius: 50%;
    margin-right: 5px;
    margin-bottom: 5px;
}

.thesis-wrap .thesis-link.text {
    width: auto;
    border-radius: 30px;
    padding: 0 15px;
}

.thesis-wrap .thesis-link:last-of-type {
    margin-right: 0;
}

/* ExposedSection */
#exposedSection {
    overflow: hidden;
    margin-top: -80px;
}

#exposedSection .content {
    position: relative;
    z-index: 2;
}

#exposedSection .content .title-wrap {
    float: left;
    width: 60%;
    font-size: 42px;
    margin-top: 120px;
    margin-bottom: 30px;
    color: #0d1c33;
}

#exposedSection .content .txt-wrap {
    float: left;
    width: 60%;
    font-size: 20px;
    color: #555;
}

#exposedSection .content .txt-wrap p {
    margin-bottom: 15px;
    line-height: 1.5;
}

#exposedSection .content .txt-wrap p:last-of-type {
    margin-bottom: 20px;
    font-weight: 500;
}

#exposedSection .content .img-wrap {
    float: right;
    width: 50%;
    margin-right: -10%;
    margin-top: -8%;
}

#exposedSection .content .img-wrap .pc {
    display: block;
}

#exposedSection .content .img-wrap .mob {
    display: none;
}

/* ChecklistSection */
#checklistSection {
    background: #eff9ff;
    margin-bottom: 70px;
}

#checklistSection .title {
    padding-top: 100px;
    margin-bottom: 30px;
}

#checklistSection .title h3 {
    font-weight: 600;
}


#checklistSection .content {
    padding-bottom: 100px;
}

#checklistSection .check-list {
    padding: 22px 30px;
    margin-bottom: 28px;
    border: 2px solid #b8d7ea;
    border-radius: 10px;
}

#checklistSection .check-item {
    width: calc(50% - 8px);
    margin-bottom: 16px;
    display: flex;
}

#checklistSection .check-item:nth-of-type(odd) {
    float: left;
    margin-right: 16px;
}

#checklistSection .check-item:nth-of-type(even) {
    float: right;
}

#checklistSection .check-item:last-of-type {
    margin-bottom: 0;
}

#checklistSection .check-item .checkbox {
    position: relative;
    display: inline-block;
    margin-right: 8px;
    flex-shrink: 0;
}

#checklistSection .check-item .checkbox input[type="checkbox"] {
    position: absolute;
    width: 24px;
    height: 24px;
    z-index: 2;
    opacity: 0;
}

#checklistSection .check-item input[type="checkbox"] + .checkbox-custom {
    position: relative;
    display: block;
    width: 24px;
    height: 24px;
    background: #d7dadb;
    border-radius: 4px;
    z-index: 1;
}

#checklistSection .check-item input[type="checkbox"]:checked + .checkbox-custom {
    background: url(../img/age/checkbox_selected.png) no-repeat center/cover;
}

#checklistSection .check-item label {
    font-size: 18px;
    color: #0d1c33;
    font-weight: 500;
    flex-grow: 1;
    line-height: 24px;
}

#checklistSection .check-item label span {
    vertical-align: top;
}

#checklistSection .checklist-progress {
    background: #DEEEF7;
    border: 2px solid #C4DFF0;
    border-radius: 10px;
    padding: 0 10px 10px 10px;
    box-shadow: inset 0 1px 4px 0 #c4dff0;
}

#checklistSection .progress-title h4 {
    position: relative;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    margin-top: -30px;
}

#checklistSection .progress-title img {
    width: 110px;
}

#checklistSection .progress-title span {
    margin-left: -15px;
}

#checklistSection .progress-tooltip {
    display: none;
}

#checklistSection .progress-bar {
    display: flex;
    justify-content: center;
    color: #fff;
    margin-top: -15px;
    font-size: 12px;
}

#checklistSection .progress-bar .good {
    width: 21.5%;
}

#checklistSection .progress-bar .warning {
    width: 34.4%;
}

#checklistSection .progress-bar .danger {
    width: 43%;
}

#checklistSection .progress-bar .check-count {
    display: flex;
    margin-bottom: 10px;
}

#checklistSection .progress-bar .check-number {
    position: relative;
    padding: 2px;
    margin: 0 1px;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    font-weight: bold;
    background: #C4D8D5;
}

#checklistSection .progress-bar .check-number span {
    position: relative;
    z-index: 2;
}

#checklistSection .progress-bar .check-number::before {
    display: none;
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    z-index: 1;
}

#checklistSection .progress-bar .check-number.active::before {
    display: block;
}

#checklistSection .progress-bar .good .check-number {
    width: calc(100% / 5);
}

#checklistSection .progress-bar .good .check-number::before {
    width: calc(100% * 5);
    background-image: linear-gradient(to right, #31cd25 -10%, #e7db32 109%);
}

#checklistSection .progress-bar .good .check-number:nth-of-type(1)::before {
    left: 0;
}

#checklistSection .progress-bar .good .check-number:nth-of-type(2)::before {
    left: -100%;
}

#checklistSection .progress-bar .good .check-number:nth-of-type(3)::before {
    left: -200%;
}

#checklistSection .progress-bar .good .check-number:nth-of-type(4)::before {
    left: -300%;
}

#checklistSection .progress-bar .good .check-number:nth-of-type(5)::before {
    left: -400%;
}

#checklistSection .progress-bar .warning .check-number {
    width: calc(100% / 8);
}

#checklistSection .progress-bar .warning .check-number::before {
    width: calc(100% * 8);
    background-image: linear-gradient(to right, #d9cc38, #e20000);
}

#checklistSection .progress-bar .warning .check-number:nth-of-type(1)::before {
    left: 0;
}

#checklistSection .progress-bar .warning .check-number:nth-of-type(2)::before {
    left: -100%;
}

#checklistSection .progress-bar .warning .check-number:nth-of-type(3)::before {
    left: -200%;
}

#checklistSection .progress-bar .warning .check-number:nth-of-type(4)::before {
    left: -300%;
}

#checklistSection .progress-bar .warning .check-number:nth-of-type(5)::before {
    left: -400%;
}

#checklistSection .progress-bar .warning .check-number:nth-of-type(6)::before {
    left: -500%;
}

#checklistSection .progress-bar .warning .check-number:nth-of-type(7)::before {
    left: -600%;
}

#checklistSection .progress-bar .warning .check-number:nth-of-type(8)::before {
    left: -700%;
}

#checklistSection .progress-bar .danger .check-number {
    width: calc(100% / 10);
}

#checklistSection .progress-bar .danger .check-number::before {
    width: calc(100% * 10);
    background-image: linear-gradient(to right, #e30402 1%, #450100);
}

#checklistSection .progress-bar .danger .check-number:nth-of-type(1)::before {
    left: 0;
}

#checklistSection .progress-bar .danger .check-number:nth-of-type(2)::before {
    left: -100%;
}

#checklistSection .progress-bar .danger .check-number:nth-of-type(3)::before {
    left: -200%;
}

#checklistSection .progress-bar .danger .check-number:nth-of-type(4)::before {
    left: -300%;
}

#checklistSection .progress-bar .danger .check-number:nth-of-type(5)::before {
    left: -400%;
}

#checklistSection .progress-bar .danger .check-number:nth-of-type(6)::before {
    left: -500%;
}

#checklistSection .progress-bar .danger .check-number:nth-of-type(7)::before {
    left: -600%;
}

#checklistSection .progress-bar .danger .check-number:nth-of-type(8)::before {
    left: -700%;
}

#checklistSection .progress-bar .danger .check-number:nth-of-type(9)::before {
    left: -800%;
}

#checklistSection .progress-bar .danger .check-number:nth-of-type(10)::before {
    left: -900%;
}

#checklistSection .progress-bar .check-range {
    padding: 2px;
    margin: 0 1px;
    text-align: center;
    border-radius: 20px;
    font-weight: 500;
}

#checklistSection .progress-bar .good .check-range {
    background: #57d027;
}

#checklistSection .progress-bar .warning .check-range {
    background: #e2a04a;
}

#checklistSection .progress-bar .danger .check-range {
    background: #c80e0e;
}



/* ChronicSection */
#chronicSection {
    margin-bottom: 0;
    padding-top: 50px;
}

#chronicSection .content {
    position: relative;
    margin-bottom: 50px;
}

#chronicSection .content .title-wrap {
    font-size: 42px;
    margin-bottom: 26px;
    color: #0d1c33;
}

#chronicSection .content .txt-wrap {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #555;
}

/* OrgansSection */
#organsSection {
    margin-bottom: 70px;
}

#organsSection .content {
    position: relative;
    border-radius: 15px;
    box-shadow: 10px 15px 40px 0 rgba(0, 0, 0, 0.16);
}

#organsSection .content.pc {
    display: flex;
    align-items: center;
}

#organsSection .content.mob {
    display: none;
}

#organsSection .left-content {
    width: 40%;
}

#organsSection .img-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#organsSection .img-wrap .body-img {
    margin-top: -70px;
}

#organsSection .right-content {
    display: flex;
    width: 60%;
    flex-direction: column;
    align-items: center;
}

#organsSection .btn-wrap {
    width: calc(85% + 18px);
    margin-left: -9px;
}

#organsSection .btn-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 45px;
}

#organsSection .btn-item {
    width: calc(20% - 18px);
    margin: 7px 9px;
}

#organsSection .btn-item .body-btn {
    width: 100%;
    height: 100%;
    font-size: 20px;
    font-weight: 500;
    color: #969696;
    border: 1px solid #757575;
    border-radius: 50%;
    transition: all .3s;
}

#organsSection .btn-item .body-btn:hover,
#organsSection .btn-item .body-btn.active {
    color: #fff;
    background: #3DBAA5;
    border: 1px solid #3DBAA5;
    box-shadow: 10px 15px 40px 0 rgba(0, 0, 0, 0.16);
}

#organsSection .txt-wrap {
    width: 85%;
    display: flex;
    align-items: center;
}

#organsSection .txt-wrap .txt-box {
    width: 60%;
}

#organsSection .txt-wrap .organs-title {
    font-size: 30px;
    color: #0D1C33;
    margin-bottom: 10px;
    font-family: 'Noto Sans KR', sans-serif;
}

#organsSection .txt-wrap .organs-txt {
    display: flex;
    font-size: 14px;
    color: #555;
}

#organsSection .txt-wrap .organs-txt::before {
    content: '※';
    margin-right: 5px;
}

#organsSection .txt-wrap .color {
    color: #3DBAA5;
}

#organsSection .txt-wrap .img-box {
    width: 40%;
}

#organsSection .txt-wrap .img-box .organs-img {
    width: 110%;
    margin-bottom: -5%;
}

/* ThesisSection */
#thesisSection {
    padding-top: 50px;
}

#thesisSection .thesis-item {
    height: 90px;
    padding: 18px 30px;
    background: #f5f5f5;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

#thesisSection .thesis-item:last-of-type {
    margin-bottom: 0;
}

#thesisSection .thesis-item .txt-wrap {
    display: flex;
    align-items: center;
}

#thesisSection .thesis-item .txt-wrap .badge {
    flex-shrink: 0;
    display: inline-block;
    padding: 5px 16px;
    margin-right: 20px;
    border: 1px solid #3dbaa5;
    border-radius: 30px;
    color: #3dbaa5;
    font-size: 14px;
    font-weight: 500;
}

#thesisSection .thesis-item .txt-wrap .thesis-title {
    flex-grow: 1;
    font-size: 18px;
    font-weight: 500;
    color: #0d1c33;
}

#thesisSection .thesis-item .btn-wrap a {
    color: #909090;
    font-size: 16px;
    font-weight: 500;
}

#thesisSection .thesis-item .btn-wrap a img {
    width: 8px;
    margin-left: 8px;
}

/* FamilySection */
#familySection .problem {
    position: relative;
    background: #fef8eb;
}

#familySection .problem .bg-wrap {
    position: absolute;
    width: 100%;
    min-width: 1500px;
    max-width: 1920px;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

#familySection .problem .bg-wrap .pc {
    display: block;
}

#familySection .problem .bg-wrap .mob {
    display: none;
}

#familySection .problem .title-wrap {
    font-size: 42px;
    color: #0d1c33;
    padding-top: 120px;
    margin-bottom: 40px;
}

#familySection .problem .txt-wrap .problem-title {
    margin-bottom: 13px;
    font-size: 30px;
    color: #ed9945;
}

#familySection .problem .txt-wrap .problem-txt {
    margin-bottom: 50px;
    font-size: 30px;
    font-weight: 600;
    color: #0d1c33;
}

#familySection .problem .txt-wrap .problem-list {
    margin-bottom: 60px;
}

#familySection .problem .txt-wrap .problem-item {
    display: flex;
    align-items: center;
    height: 95px;
}

#familySection .problem .txt-wrap .problem-item .img-box {
    flex-shrink: 0;
    width: 72px;
    height: auto;
    margin-right: 22px;
}

#familySection .problem .txt-wrap .problem-item .txt-box {
    flex-grow: 1;
    /*margin-bottom: 15px;*/
    color: #0d1c33;
}

#familySection .problem .txt-wrap .problem-item .txt-box > p {
    font-size: 20px;
    margin-bottom: 3px;
}

#familySection .problem .txt-wrap .problem-item .txt-box > span {
    font-size: 16px;
}

#familySection .problem .txt-wrap .thesis-wrap {
    padding-bottom: 54px;
}

#familySection .solution1 {
    background: #edf9ff;
}

#familySection .solution1 .content {
    display: flex;
}

#familySection .solution1 .img-wrap {
    width: 50%;
    padding-top: 12px;
}

#familySection .solution1 .img-wrap.pc {
    display: block;
}

#familySection .solution1 .img-wrap.mob {
    display: none;
}

#familySection .solution1 .img-wrap img {
    display: block;
    width: 200%;
    margin-left: -90%;
}

#familySection .solution1 .txt-wrap {
    width: 50%;
    padding-top: 120px;
    text-align: right;
}

#familySection .solution-title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 30px;
    color: #5ba2ed;
    margin-bottom: 13px;
}

#familySection .solution1 .solution-title {
    justify-content: flex-end;
}

#familySection .solution-title::after {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    font-size: 23px;
    font-weight: bold;
    color: #fff;
    background: #5ba2ed;
    border-radius: 50%;
    margin-left: 5px;
}

#familySection .solution1 .solution-title::after {
    content: '1';
}

#familySection .solution2 .solution-title::after {
    content: '2';
}

#familySection .solution-subtitle {
    font-size: 30px;
    font-weight: 600;
    color: #0d1c33;
    margin-bottom: 16px; 
}

#familySection .solution-txt {
    font-size: 18px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 43px;
}

#familySection .solution1 .solution-list {
    margin-bottom: 100px;
}

#familySection .solution1 .solution-item {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 27px 38px;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 10px 15px 40px 0 rgba(0, 0, 0, 0.16);
}

#familySection .solution1 .solution-item:last-of-type {
    margin-bottom: 0;
}

#familySection .solution1 .solution-item .img-box {
    flex-shrink: 0;
    width: 40px;
    margin-right: 38px;
}

#familySection .solution1 .solution-item .txt-box {
    flex-grow: 1;
    font-size: 18px;
    font-weight: 500;
    color: #0D1C33;
}

#familySection .solution2 .content {
    position: relative;
}

#familySection .solution2 .content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0px;
    height: 0px;
    border-top: 50px solid #EDF9FF;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
}

#familySection .solution2 .content-top {
    display: flex;
}

#familySection .solution2 .content-top .txt-wrap {
    width: 50%;
    padding-top: 120px;
}

#familySection .solution2 .content-top .img-wrap {
    position: relative;
    width: 50%;
    right: -3%;
}

#familySection .solution2 .content-bot .card {
    margin-bottom: 40px;
    padding: 30px 30px 39px 30px;
    box-shadow: 10px 10px 20px 0 rgb(0 0 0 / 16%);
    border-radius: 20px;
    background-color: #fff;
}

#familySection .solution2 .content-bot .card .img-wrap {
    display: flex;
}

#familySection .solution2 .content-bot .card .card-img {
    width: calc(50% - 9px);
    margin-right: 18px;
}

#familySection .solution2 .content-bot .card .card-img:last-of-type {
    margin-right: 0;
}

#familySection .solution2 .content-bot .btn-wrap {
    text-align: center;
}

#pharmacySection {
    padding: 83px 0;
    background: #f5f5f5;
    margin-bottom: 0;
}

#pharmacySection .content {
    position: relative;
}

#pharmacySection .txt-wrap {
    color: #181504;
    margin-bottom: 16px;
}

#pharmacySection .txt-wrap h3 {
    font-size: 20px;
}

#pharmacySection .txt-wrap h2 {
    font-size: 36px;
}

#pharmacySection .img-wrap {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* responsive */
@media all and (max-width: 1440px) {
    #organsSection .img-wrap .body-img {
        margin-top: -4.8611vw;
    }
}

@media all and (max-width: 1366px) {
    #exposedSection .content .title-wrap {
        width: calc(100% - 550px + 14.6413vw);
        font-size: 33px;
    }

    #exposedSection .content .txt-wrap {
        width: calc(100% - 550px + 14.6413vw);
        font-size: 17px;
    }

    #exposedSection .content .img-wrap {
        width: 550px;
        margin-right: -14.6413vw;
    }

    #checklistSection .check-item label {
        font-size: 16px;
    }

    #chronicSection .content .title-wrap {
        font-size: 33px;
        margin-bottom: 13px;
    }

    #chronicSection .content .txt-wrap {
        font-size: 17px;
    }

    #organsSection .txt-wrap .organs-title {
        font-size: 25px;
    }
    
    #organsSection .btn-item .body-btn {
        font-size: 18px;
    }

    #thesisSection .thesis-item {
        padding: 17px 25px;
        margin-bottom: 15px;
        height: auto;
    }

    #thesisSection .thesis-item .txt-wrap .badge {
        padding: 4px 13px;
    }

    #thesisSection .thesis-item .txt-wrap .thesis-title {
        font-size: 16px;
    }

    #thesisSection .thesis-item .btn-wrap a {
        font-size: 14px;
    }

    #familySection .problem .title-wrap {
        font-size: 33px;
        margin-bottom: 27px;
    }

    #familySection .problem .txt-wrap .problem-title {
        margin-bottom: 10px;
        font-size: 23px;
    }

    #familySection .problem .txt-wrap .problem-txt {
        margin-bottom: 35px;
        font-size: 23px;
    }

    #familySection .problem .txt-wrap .problem-list {
        margin-bottom: 30px;
    }

    #familySection .problem .txt-wrap .problem-item {
        height: 83px;
    }

    #familySection .problem .txt-wrap .problem-item .img-box {
        width: 60px;
        margin-right: 18px;
    }

    #familySection .problem .txt-wrap .problem-item .txt-box > p {
        font-size: 18px;
    }

    #familySection .problem .txt-wrap .problem-item .txt-box > span {
        font-size: 15px;
    }

    #familySection .problem .txt-wrap .thesis-wrap {
        padding-bottom: 30px;
    }

    #familySection .solution .solution-title {
        margin-bottom: 10px;
        font-size: 23px;
    }

    #familySection .solution-title::after {
        width: 24px;
        height: 24px;
        font-size: 17px; 
    }

    #familySection .solution-subtitle {
        font-size: 23px;
    }

    #familySection .solution-txt {
        font-size: 18px;
    }

    #familySection .solution1 .solution-list {
        margin-bottom: 50px;
    }

    #familySection .solution1 .solution-item {
        padding: 20px 23px;
        margin-bottom: 15px;
        border-radius: 15px;
    }

    #familySection .solution1 .solution-item .img-box {
        width: 26px;
        margin-right: 22px;
    }

    #familySection .solution1 .solution-item .txt-box {
        font-size: 16px;
    }

    #pharmacySection .txt-wrap h3 {
        font-size: 18px;
    }

    #pharmacySection .txt-wrap h2 {
        font-size: 30px;
    }
}

@media all and (max-width: 1024px) {
    .mob{
        display: block;
    }
    .pc{
        display: none;
    }
    .thesis-wrap {
        font-size: 11px;
    }

    .thesis-wrap .thesis-badge {
        padding: 4px 13px;
        margin-right: 6px;
    }

    .thesis-wrap .thesis-link {
        width: 24px;
        height: 24px;
        line-height: 24px;
        margin-right: 3px;
    }

    #exposedSection {
        margin-top: 0;
    }

    #exposedSection .content .title-wrap {
        float: none;
        width: 100%;
        font-size: 24px;
        margin-top: 0;
        margin-bottom: 20px;
        text-align: center;
    }

    #exposedSection .content .txt-wrap {
        float: none;
        width: 100%;
        font-size: 12px;
    }

    #exposedSection .content .txt-wrap p {
        line-height: 1.6;
    }
    
    #exposedSection .content .txt-wrap p:last-of-type {
        margin-bottom: 30px;
    }

    #exposedSection .content .txt-wrap br {
        display: none;
    }

    #exposedSection .content .img-wrap {
        float: none;
        width: 70%;
        margin: 0 auto;
        margin-bottom: 22px;
    }

    #exposedSection .content .img-wrap .pc {
        display: none;
    }

    #exposedSection .content .img-wrap .mob {
        display: block;
    }

    #checklistSection .check-list {
        padding: 0;
        border: 0;
        border-radius: 0;
        background: #fff;
        box-shadow: 4px 4px 8px 0 rgba(129, 162, 181, 0.2);
        border-radius: 5px;
        padding: 14px 20px;
    }

    #checklistSection .check-item {
        width: 100%;
        margin-bottom: 7px;
    }

    #checklistSection .check-item:nth-of-type(odd),
    #checklistSection .check-item:nth-of-type(even) {
        float: none;
        margin-right: 0;
    }

    #checklistSection .check-item:last-of-type {
        margin-bottom: 0;
    }

    #checklistSection .check-item label {
        position: relative;
        font-size: 14px;
    }

    #checklistSection .check-item label span {
        display: block;
        font-size: 12px;
        line-height: 1.3;
    }

    #checklistSection .checklist-progress {
        padding: 15px 22px;
    }

    #checklistSection .progress-title h4 {
        font-size: 15px;
        margin-top: 0;
        margin-bottom: 15px;
    }

    #checklistSection .progress-title img {
        display: none;
    }

    #checklistSection .progress-title span {
        margin-left: 0;
    }

    #checklistSection .progress-tooltip {
        display: none;
        margin-bottom: 10px;
    }

    #checklistSection .progress-tooltip .info-wrap {
        position: relative;
        display: flex;
        justify-content: center;
        width: 150px;
        margin: 0 auto;
        padding: 5px 0;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 500;
        color: #fff;
    }
    
    #checklistSection .progress-tooltip .info-wrap::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 0px;
        height: 0px;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
    }

    #checklistSection .progress-tooltip.good .info-wrap {
        background: #57D027;
    }

    #checklistSection .progress-tooltip.good .info-wrap::after {
        border-top: 6px solid #57D027;
    }
    
    #checklistSection .progress-tooltip.warning .info-wrap {
        background: #E2A04A;
    }

    #checklistSection .progress-tooltip.warning .info-wrap::after {
        border-top: 6px solid #E2A04A;
    }
        
    #checklistSection .progress-tooltip.danger .info-wrap {
        background: #C80E0E;
    }

    #checklistSection .progress-tooltip.danger .info-wrap::after {
        border-top: 6px solid #C80E0E;
    }

    #checklistSection .progress-tooltip .count-info {
        margin-right: 5px;
    }

    #checklistSection .progress-tooltip .count-info span,
    #checklistSection .progress-tooltip .level-info span {
        vertical-align: top;
    }

    #checklistSection .progress-bar {
        margin-top: 0;
        background: #fff;
        padding: 3px 2px;
        border: 2px solid #B3ECE2;
        border-radius: 8px;
    }

    #checklistSection .progress-bar .check-count {
        margin-bottom: 0;
    }

    #checklistSection .progress-bar .check-number {
        height: 32px;
        border-radius: 5px;
    }

    #checklistSection .progress-bar .check-number span {
        display: none;
    }

    #checklistSection .progress-bar .check-range {
        display: none;
    }

    #chronicSection {
        padding-top: 30px;
    }

    #chronicSection .content {
        width: 100%;
        margin-bottom: 15px;
    }

    #chronicSection .content .title-wrap {
        font-size: 24px;
        margin-bottom: 15px;
        text-align: center;
    }

    #chronicSection .content .txt-wrap {
        font-size: 12px;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    #organsSection .content.pc {
        display: none;
    }

    #organsSection .content.mob {
        display: block;
    }

    #organsSection .content {
        padding: 30px 17px 0 17px;
    }

    #organsSection .btn-wrap {
        width: calc(100% + 10px);
        margin-left: -5px;
    }

    #organsSection .btn-list {
        margin-bottom: 0;
    }

    #organsSection .btn-item {
        width: calc(20% - 10px);
        margin: 5px;
    }

    #organsSection .btn-item .body-btn {
        font-size: 16px;
    }

    #organsSection .txt-wrap {
        display: block;
        width: 100%;
    }

    #organsSection .txt-wrap .txt-top {
        display: flex;
        align-items: center;
        margin: 5px 0;
    }

    #organsSection .txt-wrap .organs-title {
        flex-grow: 1;
        margin-bottom: 0;
    }

    #organsSection .txt-wrap .organs-img {
        width: 35%;
        max-width: 200px;
        flex-shrink: 0;
    }

    #organsSection .img-wrap {
        align-items: center;
    }

    #organsSection .img-wrap .organs-img {
        width: 50%;
    }
    
    #organsSection .img-wrap .body-img {
        width: 50%;
        min-width: 200px;
    }

    #thesisSection {
        padding-top: 30px;
    }

    #thesisSection .thesis-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
        border-radius : 15px;
        margin-bottom: 10px;
        min-height: auto;
    }

    #thesisSection .thesis-item .txt-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    #thesisSection .thesis-item .txt-wrap .badge {
        margin-bottom: 5px;
        padding: 3px 10px;
        font-size: 13px;
    }

    #thesisSection .thesis-item .txt-wrap .thesis-title {
        font-size: 15px;
        margin-bottom: 7px;
    }

    #thesisSection .thesis-item .btn-wrap a {
        font-size: 13px;
    }

    #thesisSection .thesis-item .btn-wrap a img {
        width: 5px;
    }

    #familySection .problem {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
    }

    #familySection .problem .bg-wrap {
        position: relative;
        left: 0;
        transform: translateX(0);
        min-width: 800px;
        width: 200%;
        margin-top: -5%;
        height: 100%;
    }

    #familySection .problem .bg-wrap .pc {
        display: none;
    }
    
    #familySection .problem .bg-wrap .mob {
        display: block;
    }

    #familySection .problem .title-wrap {
        text-align: center;
        padding-top: 100px;
        font-size: 24px;
        margin-bottom: 15px;
    }

    #familySection .problem .txt-wrap {
        text-align: center;
    }

    #familySection .problem .txt-wrap .problem-title {
        margin-bottom: 5px;
        font-size: 16px;
    }

    #familySection .problem .txt-wrap .problem-txt {
        margin-bottom: 20px;
        font-size: 16px;
    }

    #familySection .problem .txt-wrap .problem-list {
        text-align: left;
        width: 80%;
        max-width: 550px;
        margin: 0 auto;
        margin-bottom: 10px;
    }

    #familySection .problem .txt-wrap .problem-item {
        height: 70px;
    }

    #familySection .problem .txt-wrap .problem-item .img-box {
        width: 50px;
        margin-right: 14px;
    }

    #familySection .problem .txt-wrap .problem-item .txt-box > p {
        font-size: 16px;
    }

    #familySection .problem .txt-wrap .problem-item .txt-box > span {
        font-size: 14px;
    }

    #familySection .problem .txt-wrap .thesis-wrap {
        width: 80%;
        max-width: 550px;
        margin: 0 auto;
        padding-bottom: 0;
    }

    #familySection .solution1 .img-wrap.pc {
        display: none;
    }

    #familySection .solution1 .img-wrap.mob {
        display: block;
    }

    #familySection .solution1 .txt-wrap {
        width: 100%;
        padding-top: 100px;
        text-align: center;
    }

    #familySection .solution .solution-title {
        position: relative;
        justify-content: center;
        margin-bottom: 5px;
        font-size: 16px;
        z-index: 2;
    }
    
    #familySection .solution-title::after {
        width: 16px;
        height: 16px;
        font-size: 12px; 
    }

    #familySection .solution-subtitle {
        position: relative;
        margin-bottom: 20px;
        font-size: 16px;
        z-index: 2;
    }

    #familySection .solution-txt {
        position: relative;
        margin-bottom: 0;
        font-size: 12px;
        line-height: 1.6;
        z-index: 2;
    }

    #familySection .solution1 .img-wrap {
        position: relative;
        width: 100%;
        padding-top: 0;
        z-index: 1;
        margin-bottom: 10px;
    }

    #familySection .solution1 .img-wrap img {
        width: 140%;
        margin-left: -40%;
        margin-top: -13%;
    }

    #familySection .solution1 .solution-list {
        margin-bottom: 100px;
    }

    #familySection .solution1 .solution-item {
        padding: 12px 8px;
        margin-bottom: 10px;
        border-radius: 10px;;
    }

    #familySection .solution1 .solution-item .img-box {
        width: 12px;
        margin-right: 5px;
    }

    #familySection .solution1 .solution-item .txt-box {
        font-size: 14px;
    }

    #familySection .solution2 .content-top {
        display: block;
    }

    #familySection .solution2 .content::before {
        border-top: 25px solid #EDF9FF;
        border-left: 25px solid transparent;
        border-right: 25px solid transparent;
    }

    #familySection .solution2 .content-top .txt-wrap {
        padding-top: 100px;
        text-align: center;
        width: 70%;
        margin: 0 auto;
    }

    #familySection .solution2 .content-top .img-wrap {
        width: 70%;
        right: -7%;
        margin: 0 auto;
    }

    #familySection .solution2 .content-bot .card {
        margin-bottom: 20px;
    }

    #familySection .solution2 .content-bot .card .img-wrap {
        display: block;
    }

    #familySection .solution2 .content-bot .card .card-img {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    #familySection .solution2 .content-bot .card .card-img:last-of-type {
        margin-bottom: 0;
    }

    #pharmacySection {
        padding: 30px 0 45px 0;
    }

    #pharmacySection .txt-wrap {
        text-align: center;
        margin-bottom: 13px;
    }

    #pharmacySection .txt-wrap h3 {
        font-size: 14px;
        margin-bottom: 5px;
    }

    #pharmacySection .txt-wrap h2 {
        font-size: 24px;
    }

    #pharmacySection .img-wrap {
        position: relative;
        display: block;
        width: 70%;
        max-width: 340px;
        margin: 0 auto;
        margin-bottom: 17px;
        top: 0;
        transform: translateY(0);
    }
    
    #pharmacySection .btn-wrap {
        text-align: center;
    }

    .view-btn {
        display: flex;
    }
}

@media (max-width: 640px) {
    #organsSection .btn-item {
        width: calc(25% - 4px);
        margin: 2px;
    }
    
    #organsSection .btn-item .body-btn {
        font-size: 14px;
    }
    
    #organsSection .txt-wrap .organs-title {
        font-size: 20px;
    }

    #familySection .problem .bg-wrap {
        width: 250%;
    }

    #familySection .problem .txt-wrap .problem-list {
        width: 95%;
    }

    #familySection .problem .txt-wrap .problem-item .txt-box > p {
        font-size: 14px;
    }

    #familySection .problem .txt-wrap .thesis-wrap {
        width: 95%;
    }

    #familySection .solution2 .content-top .txt-wrap {
        width: 100%;
    }

    #familySection .solution2 .content-top .img-wrap {
        width: 80%;
    }
    
    #familySection .solution2 .content-bot .card {
        padding: 15px;
    }
}