/* 내과클리닉 - 만성질환 */
section.sub.msjh.tab-slide {
    width: 100vw;
    margin-top: 150px;
    background-repeat: no-repeat;
    box-sizing: border-box;
    background-size: 100% 800px;
    --radius : 40px;
}
section.sub.msjh.tab-slide > .inner {
    max-width: 100vw;
    width: 100vw;
}

section.sub.msjh.tab-slide .tab-inner {
    width: calc( var(--inner) * 0.8 ) ;
    margin: 0 auto;
/*    border: 1px dashed lime;*/
}

section.sub.msjh.tab-slide .flex.row {
/*    border: 1px dashed blue;*/
    margin-top: -250px;
}
section.sub.msjh.tab-slide .flex.row .img {
    width: 450px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
}
section.sub.msjh.tab-slide p.msjh-tab-title {
    font-size: 2.5em;
    font-weight: 800;
}
section.sub.msjh.tab-slide p.msjh-tab-subtitle {
    font-size: 1.2em;
    margin-bottom: 60px;
}

/*
    탭 컨텐츠 전체
*/
section.sub.msjh.tab-slide .tab-contents-wrap {
/*    border: 1px solid red;*/
    margin-top: 10px;
}
section.sub.msjh.tab-slide .tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--primary);
    margin: 0 auto -1px;
    border-radius: var(--radius);
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border: 5px solid var(--primary);
    border-bottom: 0;
}
section.sub.msjh.tab-slide .tabs .tab-button {
    padding: 1.25em;
    font-size: 1.1em;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    color: #fff;
    background-color: transparent;
    border-radius: var(--radius);
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    transition: all ease 0.2s;
    outline: 0;
    border: 0;
    position: relative;
}
section.sub.msjh.tab-slide .tabs .tab-button + .tab-button::before {
    content: '';
    display: block;
    width: 2px;
    height: 2em;
    background-color: rgba(255,255,255,.2);
    position: absolute;
    left: -1px;
    top: 1.1em;
}

section.sub.msjh.tab-slide .tabs .tab-button.active {
    background-color: #fff;
    color: var(--primary);
}
section.sub.msjh.tab-slide .swiper-container { overflow: hidden; }

/* 슬라이드  */
section.sub.msjh.tab-slide .swiper-slide {
    max-width: inherit;
}

/* 영역1. 탭 바로 아래부분 */
section.sub.msjh.tab-slide .swiper-slide .tab-content-01 {
    background-color: #fff;
    border-radius: var(--radius);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 50px 70px 40px 50px;
    border: 5px solid var(--primary);
    border-top: 0;
}
section.sub.msjh.tab-slide .swiper-slide .tab-content-01.bg-sugar {
    background-image: url('./img/msjh-tab-c1-dn-sugaringhand.png');
    background-repeat: no-repeat;
    background-size: 230px;
    background-position: right 50px bottom -10px;
}

section.sub.msjh.tab-slide .swiper-slide .tab-content-01 div.grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
    justify-content: center;
    grid-gap: 60px;
}
section.sub.msjh.tab-slide .swiper-slide .tab-content-01 div.grid p.subject {
    border-left: 7px solid var(--primary);
    font-size: 1.3em;
    font-weight: 700;
    padding-left: 0.5em;
    margin-bottom: 1em;
}

section.sub.msjh.tab-slide .swiper-slide .tab-content-01 div.grid .p-wrap p {
    letter-spacing: -0.05em;
}
section.sub.msjh.tab-slide .swiper-slide .tab-content-01 div.grid .tag-wrap {
    display: flex;
    flex-direction: row;
    grid-gap: 5px;
    flex-wrap: wrap;
    margin: 40px 0;
}
section.sub.msjh.tab-slide .swiper-slide .tab-content-01 div.grid .tag-wrap p {
    background-color: var(--primary);
    color: #fff;
    border-radius: 3em;
    padding: 0.35em 1.5em;
    font-size: 0.95em;
    letter-spacing: -0.05em;
}

section.sub.msjh.tab-slide .swiper-slide .tab-content-01 div.grid ul {
    width: 50%;
}
section.sub.msjh.tab-slide .swiper-slide .tab-content-01 div.grid ul li {
    text-align: center;
    text-indent: 1em;
    background-image: url('./img/msjh-ul-check.svg');
    background-repeat: no-repeat;
    background-position: left 0.5em center;
    background-size: 1.1em;
    padding: 0.5em;
    font-size: 0.9em;
    border-bottom: 1px solid #c2c2c2;
}
section.sub.msjh.tab-slide .swiper-slide .tab-content-01 div.grid .gjhj p.label {
    font-size: 1.2em;
    font-weight: 600;
    padding: 0.75em 1.5em;
    border-radius: 3em;
    box-shadow: 0 0 10px rgba(0, 0, 0, .15);
    text-align: center;
    margin: 1.5em 0;
}
section.sub.msjh.tab-slide .swiper-slide .tab-content-01 div.grid .gjhj p.label span {
    background-color: #FFCBCB;
    padding: 0 0.2em;
}

section.sub.msjh.tab-slide .swiper-slide .tab-content-01 div.grid .gjhj p.desc {
    font-size: 0.95em;
    letter-spacing: -0.05em;
    border-left: 7px solid var(--primary);
    padding-left: 1.5em;
}

/* 영역2. 진단기준 */
section.sub.msjh.tab-slide .swiper-slide .tab-content-02 {
    padding: 120px 0;
    margin: 120px 0;
}
/* 타이틀 */
section.sub.msjh.tab-slide .swiper-slide .tab-article-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
}
section.sub.msjh.tab-slide .swiper-slide .tab-article-title div.dot-trio {
    width: fit-content;
    margin: 0 auto 1em;
}
section.sub.msjh.tab-slide .swiper-slide .tab-article-title > p {
    font-size: 2.5em;
    font-weight: 700;
}
section.sub.msjh.tab-slide .swiper-slide .tab-article-title p span {
    color: var(--primary);
}
section.sub.msjh.tab-slide .swiper-slide .tab-article-title .p-wrap { margin: 2em auto 0; }
section.sub.msjh.tab-slide .swiper-slide .tab-article-title .p-wrap p {}
/**/
section.sub.msjh.tab-slide .swiper-slide .tab-content-02 table {
    border-spacing: 0;
    min-width: 100%;
    background-color: #fff;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
section.sub.msjh.tab-slide .swiper-slide .tab-content-02 table tr > * {
    padding: 0.75em 1.5em;
    border-bottom: 1px solid rgba(30, 30, 30, .2);
}
section.sub.msjh.tab-slide .swiper-slide .tab-content-02 table th {
    text-align: center;
}
section.sub.msjh.tab-slide .swiper-slide .tab-content-02 table th + th {
    border-left: 1px solid rgba(30, 30, 30, .2);
}
section.sub.msjh.tab-slide .swiper-slide .tab-content-02 table td {
    border-left: 1px solid rgba(30, 30, 30, .2);
}
section.sub.msjh.tab-slide .swiper-slide .tab-content-02 p.caption {
    font-weight: 500;
    font-size: 0.8em;
    margin: 1em 0;
}
section.sub.msjh.tab-slide .swiper-slide .tab-content-02 .table-wrapper + p.txt-center {
    font-weight: 600;
    margin: 1.5em auto 0;
}

/*영역3. 원인 */
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 {
    padding: 120px 0;
}

/* 영역3. 원인 : 고혈압 */
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 div.msjh-gha-cause {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    grid-gap: 10px 25px;
    width: 70%;
    margin: 60px auto;
}
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 div.msjh-gha-cause > div {
    width: 8em;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: 3px solid var(--primary);
    background-color: #fff;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 div.msjh-gha-cause div .before {
    color: var(--primary);
    width: 90%;
    text-align: center;
    padding: 0.25em;
    margin: 0.5em auto;
    font-size: 0.9em;
    border-bottom: 1px solid var(--primary);
}
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 div.msjh-gha-cause div .p-wrap {
    height: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 div.msjh-gha-cause div .p-wrap p {
    text-align: center;
    line-height: 1.3;
    font-weight: 500;
}


/* 영역3. 원인 : 당뇨 */
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 div.msjh-dn-cause {}
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 div.msjh-dn-cause table {
    border-collapse: 0;
    border-spacing: 0;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
    border-top: 1px solid rgba(0, 0, 0, .4);
}
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 div.msjh-dn-cause table tr > * {
    padding: 1em;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
}
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 div.msjh-dn-cause table tr > th {
    background-color: #112F65;
    width: 30%;
    color: #fff;
    font-size: 1.2em;
    font-weight: 700;
    text-align: center;
}
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 div.msjh-dn-cause table tr:nth-child(2) th { background-color: var(--primary)}
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 div.msjh-dn-cause table tr td {
    line-height: 1.5;
    font-size: 0.9em;
    padding: 2em 0;
}
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 div.msjh-dn-cause table tr td.flex {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    grid-gap: 2em;
}
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 div.msjh-dn-cause table tr td ul {
    max-width: 16em;
}
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 div.msjh-dn-cause table tr td ul li::before {
    content: '\00b7';
    font-weight: 700;
    margin-inline: 5px;
}
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 div.msjh-dn-cause table tr td ul li {
    display: grid;
    grid-template-columns: 1em auto;
}

/* 영역3. 원인 : 고지혈증 */
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 div.msjh-gjhj-cause {
    margin: 60px auto;
    width: 65%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px;
}
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 div.msjh-gjhj-cause > div {
    border: 1px solid #d0d0d0;
    aspect-ratio: 3 / 4;
    padding: 30px 0;
    display: grid;
    align-items: flex-start;
    grid-template-columns: 1fr;
}
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 div.msjh-gjhj-cause > div .before {
    font-weight: 600;
    margin: 0 auto;
    color: var(--primary);
}
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 div.msjh-gjhj-cause > div .subject {
    font-weight: 700;
    text-align: center;
    margin: 0 auto;
}
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 div.msjh-gjhj-cause > div img { width:100% }

section.sub.msjh.tab-slide .swiper-slide .tab-content-03 div.msjh-gjhj-cause > div .p-wrap {
    height: 3em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 div.msjh-gjhj-cause > div .p-wrap p { font-size:0.9em }
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 div.msjh-gjhj-cause > div .p-wrap.grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    grid-gap: 0.5em 0;
    width: 80%;
    margin: 0 auto;
    align-items: flex-start;
}
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 div.msjh-gjhj-cause > div .p-wrap.grid p::before {
    content: '\00b7';
}
/* 영역3. 방법 그리드 */
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid {
    margin-top: 150px;
    display: grid;
    grid-template-columns: 1.75fr 1fr;

    background-color: var(--primary);
    grid-gap: 8px;
    border: 8px solid var(--primary);
}
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid div.contents {
    padding: 50px;
}
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid div.window {
    display: grid;
    grid-template-rows: 2fr 1fr;
    grid-gap: 8px;
    height: 100%;
}
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid div.window div {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid div.window > div.big.gha { background-image:url(./img/msjh-howto-gha.png); }
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid div.window > div.big.dn { background-image:url(./img/msjh-howto-dn.png); }
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid div.window > div.big.gjhj { background-image:url(./img/msjh-howto-gjhj.png); }

section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid div.window > .half {
    display: grid;
    grid-gap: 8px;
}
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid div.window > .half div:nth-child(1) { background-image:url(./img/msjh-howto-window1.png) }
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid div.window > .half div:nth-child(2) { background-image:url(./img/msjh-howto-window2.png) }

/* 영역3. 방법 그리드 내용 */
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid div.contents p.subject {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 0.25em;
}
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid div.contents .contents-box {
    display: grid;
    grid-template-columns: 1fr;
    margin: 40px auto 0;
    grid-gap: 20px;
}

section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid div.contents .contents-box > div.howto-card {
    background-color: #fff;
    border-radius: 2em;
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    align-items: center;
    justify-content: flex-start;
}
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid div.contents .contents-box > div.howto-card p.howto-subject {
    font-weight: 700;
    font-size: 1.2em;
    text-align: center;
    text-indent: 0.5em;
}
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid div.contents .contents-box > div.howto-card .txt {
    padding: 0 25px;
    border-left: 2px solid #87B2FF;
    margin: 25px 0;
}
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid div.contents .contents-box > div.howto-card .txt p {
    font-size: 0.9em;
}
/* 당뇨 치료방법 리스트처리 */
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid.dn div.contents .contents-box > div.howto-card .txt p {
    display: grid;
    grid-template-columns: 1em auto;
}
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid.dn div.contents .contents-box > div.howto-card .txt p + p {
    margin-top: 0.5em;
}
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid.dn div.contents .contents-box > div.howto-card .txt p::before {
    content: '\00b7';
    font-weight: 800;
}
/* 고혈압 치료방법 */
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid.gha div.contents .contents-box > div.howto-card:nth-child(1) { --point: #FF0000; }
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid.gha div.contents .contents-box > div.howto-card:nth-child(2) { --point: #FF9100; }
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid.gha div.contents .contents-box > div.howto-card:nth-child(3) { --point: #F7FF00; }
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid.gha div.contents .contents-box > div.howto-card:nth-child(4) { --point: #0ED900; }

section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid.gha div.contents .contents-box > div.howto-card {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    height: 8em;
    border-left : 10px solid var(--point);
}
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid.gha div.contents .contents-box > div.howto-card p.howto-subject {
    font-size: 1.1em;
    text-indent: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 2px solid #D9DEDF;
}
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid.gha div.contents .contents-box > div.howto-card p.howto-subject::before {
    content: '';
    display: inline-block;
    width: 2em; height: 2em;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80%;
    margin: 0 auto;
}
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid.gha div.contents .contents-box > div.howto-card:nth-child(1) p.howto-subject::before { background-image: url('./img/icon-msjh-heart-red.svg'); }
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid.gha div.contents .contents-box > div.howto-card:nth-child(2) p.howto-subject::before { background-image: url('./img/icon-msjh-heart-orange.svg'); }
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid.gha div.contents .contents-box > div.howto-card:nth-child(3) p.howto-subject::before { background-image: url('./img/icon-msjh-heart-yellow.svg'); }
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid.gha div.contents .contents-box > div.howto-card:nth-child(4) p.howto-subject::before { background-image: url('./img/icon-msjh-heart-green.svg'); }

section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid.gha div.contents .contents-box > div.howto-card .txt { border-left: 0; }

section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid.gha div.contents .contents-box > div.howto-card .txt p { font-weight:600; font-size:1.0em }
section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid.gha div.contents .contents-box > div.howto-card .txt p span {
    font-size: 0.9em;
    font-weight: 400;
    line-height: 1.5;
    display: block;
}






/* 초음파 반복부분 */
section.repeat-ultrasound {
    background-image: url('./img/repeat-ultrasound-bg.png');
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: bottom;
    border-top: 130px solid white;
}

section.repeat-ultrasound > .inner {
    padding: 0;
    display: grid;
    grid-template-columns: 570px auto;
    grid-gap: 60px;
    align-items: flex-end;
    margin-top: -110px;
}
section.repeat-ultrasound > .inner .img { line-height:0 }
section.repeat-ultrasound > .inner .txt {
    padding: 100px 0;
}
section.repeat-ultrasound > .inner .txt .left-border {
    border-left: 15px solid var(--primary);
    padding: 0 25px 15px;
}
section.repeat-ultrasound > .inner .txt .left-border .rowtocol {
    display: flex;
    flex-direction: row;
    grid-gap: 1em;
    align-items: center;
    margin-bottom: 1em;
}
section.repeat-ultrasound > .inner .txt .left-border p.subject {
    font-size: 2.1em;
    font-weight: 600;
}
section.repeat-ultrasound > .inner .txt .left-border i.label {
    color: var(--primary);
    background-color: rgba(33,78,158,.18);
    padding: 0.35em 1.5em;
    border-radius: 3em;
    font-size: 1.1em;
    font-weight: 600;
}
section.repeat-ultrasound > .inner .txt p.txt-primary {
    margin: 1em 0 3em;
    font-weight: 500;
}
section.repeat-ultrasound > .inner .txt a.moreview {
    background-color: #fff;
    color: var(--primary);
    border-radius: 3em;
    font-weight: 500;
    font-size: 1.1em;
    padding: 0.5em 4em 0.5em 1.75em;
    box-shadow: 0 0 15px rgba(0,0,30,.1);
    background-repeat: no-repeat;
    background-size: auto 100%;
    border: 8px solid #fff;
    background-position: right center;
    background-image: url('./img/ultrasound-moreview-arrow.svg');
    transition: all ease 0.2s;
}
section.repeat-ultrasound > .inner .txt a.moreview:hover {
    box-shadow: 0 0 15px rgba(0, 0, 30, .1), 0 0 15px #7cb8f46e;
}



/*  탭 on */
section.sub.msjh.tab-slide .tabs.on {
    position: fixed;
    z-index: 999;
    width: 160px;
    height: 200px;
    left: 0;
    border-radius: 0;
    top: 35%;
    grid-template-columns: 1fr;
    border: 3px solid var(--primary);
    border-left: 0;
    border-radius: 0 20px 20px 0;
    overflow: hidden;
    box-shadow: -9px 15px 20px rgb(23 47 134 / 15%);
}
section.sub.msjh.tab-slide .tabs.on .tab-button {
    padding: 0em;
    font-size: 1.1em;
    border-radius: 0;
    font-size: 1em;
}
section.sub.msjh.tab-slide .tabs.on .tab-button::before {
    display: none;
}





/* 탭컨텐츠 슬라이드 내부임을 표시 (추후삭제)*/
/*section.sub.msjh.tab-slide .tab-contents-wrap .swiper-slide { border: 1px solid magenta; position:relative; }*/
/*section.sub.msjh.tab-slide .tab-contents-wrap .swiper-slide::after { content:'탭 내부 영역'; display:block; background-color:rgba(255,0,255,.15); color:magenta; padding: 1em; position:absolute; z-index:1; top:0; left:5vw; height:100%; border: 1px solid magenta; border-top:0; border-bottom:0 }*/




@media screen and (max-width: 1100px) {

    /* 탭컨텐츠 슬라이드 내부임을 표시 (추후삭제)*/
    section.sub.msjh.tab-slide .tab-contents-wrap .swiper-slide::after { display:none; }

    /* 내과클리닉 - 만성질환 */
    section.sub.msjh.tab-slide {
        margin-top: 0;
        background-size: 150%;
        --radius : 20px;
        overflow: visible;
    }
    section.sub.msjh.tab-slide .tab-inner {
        width: 88%;
        margin: 0 auto;
    }

    section.sub.msjh.tab-slide .flex.row {
        margin-top: -100px;
        flex-direction: column;
        align-items: s;
    }
    section.sub.msjh.tab-slide .flex.row .img {
        width: 35%;
        align-items: center;
        order: 1;
    }
    section.sub.msjh.tab-slide .flex.row .txt {
        order:2;
        width: 100%;
    }

    section.sub.msjh.tab-slide p.msjh-tab-title {
        font-size: 5vw;
    }
    section.sub.msjh.tab-slide p.msjh-tab-subtitle {
        font-size: 4vw;
        margin-bottom: 0;
    }

    /*
        탭 컨텐츠 전체
    */
    section.sub.msjh.tab-slide .tab-contents-wrap {
        margin-top: 15px;
    }
    section.sub.msjh.tab-slide .tabs {
        border-width: 2px;
    }
    section.sub.msjh.tab-slide .tabs .tab-button {
        font-size: 4vw;
        padding: 0.75em;
    }
    section.sub.msjh.tab-slide .tabs .tab-button + .tab-button::before {
        width: 1px;
        left: 0;
        height: 1.5em;
        top: 0.75em;
    }

    /* 슬라이드  */
    section.sub.msjh.tab-slide .swiper-slide {
        height: unset;
    }

    /* 영역1. 탭 바로 아래부분 */
    section.sub.msjh.tab-slide .swiper-slide .tab-content-01 {
        padding: 6vw;
        border-width: 2px;
    }
    section.sub.msjh.tab-slide .swiper-slide .tab-content-01.bg-sugar {
        background-size: 45%;
        background-position: right 10px bottom -10px;
    }
    section.sub.msjh.tab-slide .swiper-slide .tab-content-01 div.grid {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }
    section.sub.msjh.tab-slide .swiper-slide .tab-content-01 div.grid p.subject {
        border-left: 5px solid var(--primary);
        font-size: 4.5vw;
        margin-bottom: 1em;
    }
    section.sub.msjh.tab-slide .swiper-slide .tab-content-01 div.grid .p-wrap p { font-size: 3.5vw }
    section.sub.msjh.tab-slide .swiper-slide .tab-content-01 div.grid .tag-wrap {
        grid-gap: 5px 3px;
        margin: 20px 0;
    }
    section.sub.msjh.tab-slide .swiper-slide .tab-content-01 div.grid .tag-wrap p {
        background-color: var(--primary);
        color: #fff;
        border-radius: 3em;
        padding: 0.25em 1em;
         font-size: 3.3vw
    }

    section.sub.msjh.tab-slide .swiper-slide .tab-content-01 div.grid ul { width: 100%; }
    section.sub.msjh.tab-slide .swiper-slide .tab-content-01.bg-sugar div.grid ul { width: 50%; }
    section.sub.msjh.tab-slide .swiper-slide .tab-content-01 div.grid ul li { font-size: 3.3vw; }
    section.sub.msjh.tab-slide .swiper-slide .tab-content-01 div.grid .gjhj p.label {
        font-size: 3.5vw;
        box-shadow: 0 0 6px rgba(0, 0, 0, .15);
    }
    section.sub.msjh.tab-slide .swiper-slide .tab-content-01 div.grid .gjhj p.desc {
        font-size: 3.3vw;
        border-left: 5px solid var(--primary);
        padding-left: 1em;
    }


    /* 영역2. 진단기준 */
    section.sub.msjh.tab-slide .swiper-slide .tab-content-02 {
        padding: 60px 0;
        margin: 60px 0;
    }
    /* 타이틀 */
    section.sub.msjh.tab-slide .swiper-slide .tab-article-title {
        margin: 0 auto;
    }
    section.sub.msjh.tab-slide .swiper-slide .tab-article-title > p {
        font-size: 5.5vw; margin-top: 0.5em;
    }
    section.sub.msjh.tab-slide .swiper-slide .tab-content-02 table.gha { width: 100vw; }
    section.sub.msjh.tab-slide .swiper-slide .tab-content-02 table.dn { width: 78vw; }
    section.sub.msjh.tab-slide .swiper-slide .tab-content-02 table.gjhj { width: 120vw; }

    section.sub.msjh.tab-slide .swiper-slide .tab-content-02 table tr > * {
        padding: 0.6em 1em;
        font-size: 3.5vw;
    }
    section.sub.msjh.tab-slide .swiper-slide .tab-content-02 table th { line-height: 1.3; }
    section.sub.msjh.tab-slide .swiper-slide .tab-content-02 p.caption {
        font-weight: 500;
        font-size: 3.3vw;
        margin: 1em 0;
    }
    section.sub.msjh.tab-slide .swiper-slide .tab-content-02 .table-wrapper + p.txt-center {
        font-size: 3.6vw;
    }



    /*영역3. 원인 */
    section.sub.msjh.tab-slide .swiper-slide .tab-content-03 {
        padding: 60px 0;
    }
    section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .tab-article-title .p-wrap p { font-size:3.6vw; padding:0 1em }


    /* 영역3. 원인 : 고혈압 */
    section.sub.msjh.tab-slide .swiper-slide .tab-content-03 div.msjh-gha-cause {
        grid-gap: 10px 5px;
        width: 100%;
        margin: 50px auto;
    }
    section.sub.msjh.tab-slide .swiper-slide .tab-content-03 div.msjh-gha-cause > div {
        width: 8em;
        border: 2px solid var(--primary);
        padding: 9px 15px;
        font-size: 4vw;
    }


    /* 영역3. 원인 : 당뇨 */
    section.sub.msjh.tab-slide .swiper-slide .tab-content-03 div.msjh-dn-cause {
        font-size: 4vw
    }
    section.sub.msjh.tab-slide .swiper-slide .tab-content-03 div.msjh-dn-cause table tr > * {
        padding: 0.5em 1em;
    }
    section.sub.msjh.tab-slide .swiper-slide .tab-content-03 div.msjh-dn-cause table tr > th {
        width: 6em;
        font-size: 1.0em;
        line-height: 1.3;
    }
    section.sub.msjh.tab-slide .swiper-slide .tab-content-03 div.msjh-dn-cause table tr td {
        padding: 1em;
    }
    section.sub.msjh.tab-slide .swiper-slide .tab-content-03 div.msjh-dn-cause table tr td p.txt-center { text-align:left; }
    section.sub.msjh.tab-slide .swiper-slide .tab-content-03 div.msjh-dn-cause table tr td.flex {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        grid-gap: 0;
    }
    section.sub.msjh.tab-slide .swiper-slide .tab-content-03 div.msjh-dn-cause table tr td ul {
        max-width: 110%;
        margin-left: -0.5em;
    }

    /* 영역3. 원인 : 고지혈증 */
    section.sub.msjh.tab-slide .swiper-slide .tab-content-03 div.msjh-gjhj-cause {
        margin: 40px auto;
        width: 80%;
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }
    section.sub.msjh.tab-slide .swiper-slide .tab-content-03 div.msjh-gjhj-cause > div {
        font-size: 4vw;
        aspect-ratio: unset;
        height: auto;
        padding: 20px 0;
        grid-template-columns: 1fr;
    }
    section.sub.msjh.tab-slide .swiper-slide .tab-content-03 div.msjh-gjhj-cause > div img {
        width: 80%;
        margin: 0 auto;
    }
    section.sub.msjh.tab-slide .swiper-slide .tab-content-03 div.msjh-gjhj-cause > div p.txt-center { margin-top:1em }
    section.sub.msjh.tab-slide .swiper-slide .tab-content-03 div.msjh-gjhj-cause > div .p-wrap {
        height: fit-content;
    }
    section.sub.msjh.tab-slide .swiper-slide .tab-content-03 div.msjh-gjhj-cause > div .p-wrap.grid {
        grid-template-columns: 1fr;
        width: fit-content;
        margin: 0 auto;
    }

    /* 영역3. 방법 그리드 */
    section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid {
        margin-top: 60px;
        grid-template-columns: 1fr;
        grid-gap: 10px;
        border: 10px solid var(--primary);
    }
    section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid div.contents {
        padding: 0;
    }
    section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid div.window {
        grid-template-rows: 1fr;
        grid-gap: 10px;
        height: auto;
    }
    section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid div.window div {
        height: 100px;
    }
    section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid div.window div.big { height:300px }
    section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid div.window > .half { grid-gap: 10px; }

    /* 영역3. 방법 그리드 내용 */
    section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid div.contents p.subject {
        font-size: 5vw;
        margin-top: 0.5em;
    }
    section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid div.contents p.subject + p.txt-white { font-size:3.5vw }
    section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid div.contents .contents-box {
        margin: 20px auto 0;
        grid-gap: 10px;
    }
    section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid div.contents .contents-box > div.howto-card {
        border-radius: 10px;
        grid-template-columns: 1fr;
        align-items: center;
        justify-content: flex-start;
    }
    section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid div.contents .contents-box > div.howto-card p.howto-subject {
        font-size: 3.8vw;
        text-indent: 0;
        margin: 1em auto 0.5em;
    }
    section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid div.contents .contents-box > div.howto-card .txt {
        padding: 0 25px;
        border: 0;
        margin: 0 0 25px;
    }
    section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid div.contents .contents-box > div.howto-card .txt p {
        font-size: 3.3vw;
    }
    /* 고혈압 치료방법 */
    section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid.gha div.contents .contents-box > div.howto-card {
        height: auto;
        border-top: 5px solid var(--point);
        border-left: 0;
        border-radius: 0;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }
    section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid.gha div.contents .contents-box > div.howto-card p.howto-subject {
        font-size: 4.5vw;
        border-right: 0;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 100%;
        transform: translateX(-2vw);
    }
    section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid.gha div.contents .contents-box > div.howto-card p.howto-subject::before {
        margin: 0; background-size: 60%;
    }
    section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid.gha div.contents .contents-box > div.howto-card .txt p { font-size:3.5vw; text-align:center; }
    section.sub.msjh.tab-slide .swiper-slide .tab-content-03 .msjh-howto-grid.gha div.contents .contents-box > div.howto-card .txt p span {
        font-size: 3.3vw; text-align: center;
    }






    /* 초음파 반복부분 */
    section.repeat-ultrasound {
        background-size: cover;
        background-position: left 60% center;
        border-top: 50px solid #fff;
         overflow: visible;
         margin-top: 50px;
    }
    section.repeat-ultrasound > .inner {
        padding: 0;
        grid-template-columns: 1fr;
        grid-gap: 0;
        align-items: flex-end;
        margin-top: -60px;
    }
    section.repeat-ultrasound > .inner .img { line-height:0; width:50%; margin: 0 auto }
    section.repeat-ultrasound > .inner .txt {
        padding-bottom: 100px;
        font-size: 3.5vw;
        padding: 10vw;
    }
    section.repeat-ultrasound > .inner .txt .left-border { padding: 0; border-left: 0; }
    section.repeat-ultrasound > .inner .txt .left-border p { text-align:center; }
    section.repeat-ultrasound > .inner .txt .left-border .rowtocol {
        flex-direction: column;
        grid-gap: 0;
        align-items: center;
        margin-bottom: 1em;
    }
    section.repeat-ultrasound > .inner .txt .left-border p.subject {
        font-size: 5.5vw;
    }
    section.repeat-ultrasound > .inner .txt .left-border i.label {
        font-size: 4vw;
        margin: 0.5em auto;
    }
    section.repeat-ultrasound > .inner .txt p.txt-primary {
        text-align:center;
    }
    section.repeat-ultrasound > .inner .txt a.moreview {
        display: block; margin: 0 auto; width: 70%;
        padding: 0.25em 3em 0.25em 1.25em;
         }

    /*  탭 on */
    section.sub.msjh.tab-slide .tabs.on {
        width: 100vw;
        height: 50px;
        top: 60px;
        grid-template-columns: 1fr 1fr 1fr;
        border: 1px solid var(--primary);
        border-radius: 0;
        border-left: 0;
        border-right: 0;
        box-shadow: -9px 15px 20px rgb(23 47 134 / 15%);
    }
    section.sub.msjh.tab-slide .tabs.on .tab-button {
        font-size: 3.3vw;
    }
    section.sub.msjh.tab-slide .tabs.on .tab-button::before { display:block; }



}/* mobile */