@charset "utf-8";
/* ------------------------------------------------------
                      팜이데일리 STYLE
---------------------------------------------------------- */

.color_ffefd4 {
    color: #ffefd4;
}
.color_ff1d1c {
    color: #ff1d1c;
}
.color_cc1413 {
    color: #cc1413;
}
.colo_00ffc6 {
    color: #00ffc6;
}
.color_6a88a6 {
    color: #6a88a6;
}
.bg_f5f5f5 {
    background: #f5f5f5;
}

 /* 팜이데일리 공통 */
.pharm_wrap {
    position: relative;
    min-width: 1128px;
    height: auto;
    margin: 0 auto;
    letter-spacing: -1px;
    overflow-x: hidden;
}

/* 팜이데일리 헤더 */

.m_pharm_head {
    padding: 18px 40px 45px 40px;
    background: #FFF;
}
.kiwoom_txt {
    width: 100%;
    font-size: 0.63rem;
    color: #777;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 25px;
}
.m_pharm_top {
    width: 100%; 
    display: flex; 
    flex-direction: column;
    row-gap: 10px;
}
.m_pharm_top > span {
    color: #333;
    font-size: 0.9rem;
    line-height: 20px;
    margin-top:10px;
}
.m_pharm_top > h1 > a {
    width: 222px;
    height: 39px;
}
.m_pharm_top > h1 > a > img {
    width: 40%;
    /* height: 100%; */
    /* aspect-ratio: 16 / 10; */
}
.m_pharm_tit {
    font-size: 1.2rem;
    font-weight: 500;
}
.m_pharm_tit > span {
    color: #b5403e;
    line-height: 36px;
}
.m_pharm_tit > span > b {
    font-weight: 600;
}
.m_pharm_tit > b {
    font-weight: 600;
}

/* 팜이데일리 메인/탑 */
.pharm_t_main {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* justify-content: center; */
    row-gap: 75px;
    width: 100%;
    /* height: 750px; */
    margin: 0 auto;
    background: #f9f2f4;
    padding: 65px 40px;
}
.pharm_t_main > figure {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}
.pharm_t_main > figure > img {
    width: 80%;
    height: 100%;
    aspect-ratio: 16 / 10;
}
.pharm_t_tit {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    color: #000;
}
.pharm_t_tit > b {
    font-size: 3.3rem;
    font-family: 'NanumSquareNeo';
    line-height: 4.5rem;
    letter-spacing: -4.3px;
}
.pharm_t_tit > b > span {
    font-weight: 800;
}
.pharm_t_tit > span {
    font-size: 1.23rem;
    line-height: 2.2rem;
    letter-spacing: -2px;
}
.pharm_t_tit > span > b {
    font-weight: 700;
}
.pharm_t_tit > figure {
    position: absolute;
    top: 37px;
    left: 170px;
    z-index: 1;
}
.pharm_t_tit > figure > img {
    width: 90%;
    height: 100%;
    aspect-ratio: 16 / 10;
}

/* 팜이데일리 메인/탭 */
ul.m_tabs{
    position: relative;
    width: auto;
	padding: 0px;
    height: 70px;
	list-style: none;
    background: #FFF;
    letter-spacing: -1.5px;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -5px;
}
ul.m_tabs li{
    position: relative;
    width: 49.5%;
    height: 70px;
	background: none;
	color: #222;
    font-weight: 600;
	display: inline-block;
	padding: 10px 15px;
	cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    font-size: 1.2rem;
    line-height: 50px;
}
ul.m_tabs li.current{
	background: #fe3c3a;
	color: #FFF;
    height: 70px;
    /* line-height: 77px; */
}

.m_tab_cont {
    position: relative;
    width: 100%;
    height: 100%;
}
.m_tab_content{
    position: relative;
	display: none;
    color: #FFF;
    height: auto;
}
.m_tab_content.current{
	display: inherit;
}
.m_tab_tit {
    display: flex;
    flex-direction: column;
    justify-content : center;
    height: auto;
}

/* 처음 페이지 로딩 시, 이미지 숨김 용도 */
.preAnimation { 
    opacity: 0; 
}   

.showAnimation {
    /* 애니메이션 이름 정의 */
    animation-name: showAnimation;
    opacity:1;
}

.hideAnimation {
    /* 애니메이션 이름 정의 */
    animation-name: hideAnimation;
    opacity:0;
}

/* 애니메이션 움직임 시간 설정 클래스 */
.duration-0-5 {
    animation-duration: 0.5s;
}

.duration-1-0 {
    animation-duration: 1.0s;
}

.duration-1-5 {
    animation-duration: 1.5s;
}

.duration-2-0 {
    animation-duration: 2.0s;
}

/* 나타내기 애니메이션 정의 */
@keyframes showAnimation {
    from {
    transform: translateY(100px);
    opacity: 0;
    }

    to {
    transform: translateY(0);
    opacity: 1;
    }
}

/* 감추기 애니메이션 정의 */
@keyframes hideAnimation {
    from {
    transform: translateY(0);
    opacity: 1;
    }

    to {
    transform: translateY(100px);
    opacity: 0;
    }
}

/* 팜이데일리 메인 탭/서비스소개 */
.tab_inner {
    position: relative;
    display: flex;
    flex-direction: column;
    /* row-gap: 100px; */
    padding: 0 40px;
}
.cont_l_zero {
    display: flex;
    position: relative;
    flex-direction: column;
    width: 100%;
    height: auto;
    color: #000;
    padding: 65px 0;
    row-gap: 45px;
    background: url("https://image.edaily.co.kr/images/pharmedaily/KW/info/mobile/bg_graph.png") no-repeat;
}
.cont_l_one {
    display: flex;
    position: relative;
    flex-direction: column;
    width: 100%;
    height: auto;
    color: #000;
    padding: 65px 0;
    row-gap: 65px;
}
.cont_l_two {
    display: flex;
    position: relative;
    width: 100%;
    height: auto;
    background: #f5f5f5;
    color:#000;
    padding: 190px 0;
}
.cont_l_two::before {
    content: '';
    position: absolute;
    left: -1120px;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #f5f5f5;
}
.cont_l_two::after {
    content: '';
    position: absolute;
    right: -1120px;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #f5f5f5;
}

.cont_r_one {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    height: auto;
    background: #f5f5f5;
    color: #000;
    padding: 65px 0;
    row-gap: 65px;
}
.inner_bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f5f5f5;
}
.cont_r_two {
    display: flex;
    position: relative;
    width: 100%;
    height: auto;
    background: #FFF;
    color: #000;
    padding: 190px 0;
}
.cont_r_two::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #FFF;
}
.cont_r_two::after {
    content: '';
    position: absolute;
    right: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #FFF;
}


.cont_info_r {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    text-align: right;
    width: 100%;
    align-items: end;
    /* position: absolute; */
    /* top: 50%;
    right: 0.5%; */
    /* transform: translate(-0%, -50%); */
    z-index: 9;
}
.cont_info_r > span {
    font-family: 'GmarketSans';
    font-size: 1.2rem;
    font-weight: 600;
}
.cont_info_r > dt {
    font-size: 2.7rem;
    font-weight: 800;
    font-family: 'NanumSquareNeo';
    line-height: 3.5rem;
}
.cont_info_r > dd {
    font-size: 1.22rem;
    line-height: 2rem;
    letter-spacing: -2px;
}
.cont_info_r > dd > b {
    font-weight: 700;
}

.cont_info_l {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    text-align: left;
    width: 100%;
    align-items: start;
    z-index: 9;
    
}
.cont_info_l > span {
    font-family: 'GmarketSans';
    font-size: 1.2rem;
    font-weight: 600;
}
.cont_info_l > dt {
    font-size: 2.7rem;
    font-weight: 800;
    font-family: 'NanumSquareNeo';
    line-height: 3.5rem;
}
.cont_info_l > dd {
    font-size: 1.22rem;
    line-height: 2rem;
    letter-spacing: -2px;
}
.cont_info_l > dd > b {
    font-weight: 700;
}
.info_img {
    position: absolute;
    max-width:50%;height:auto
    /* overflow: hidden; */
    /* /* padding-bottom: 100%; */

}
.info_img > img {
    /* position: absolute; */
    /* top: 0; */
    /* left: 0; */
    max-width: 100%;
    width: 100%;
    /* /* height: 100%; */
}

.tab_content > figure {
    margin: 0;
    border: 1px solid #e8e7e7;
    z-index: 3;
    position: absolute;
    border-radius: 30px;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 5px 9px 1px;
    overflow: hidden; background: #FFF;
    border-top: none;
}
.tab_content dl {
    opacity: 0;
}
.cont_info_m > img {
    display: flex;
    width: 100%;
    height: 100%;
}

.cont_r > figure {
    position: relative;
    width: 100%;
    margin: 0;
}
.cont_r > figure > img {
    width: 100%;
    height: 100%;
}
.cont_l > figure {
    position: relative;
    width: 100%;
    margin: 0;
}
.cont_l > figure > img {
    width: 100%;
    height: 100%;
} 
/* 팜이데일리 메인 탭/서비스 소개 > 이미지 영역 */
.info_img_wrap {
    display: flex;
    column-gap: 20px;
    align-items: center;
}
.info_box {
    /* display: flex; */
    width: 100%;
    height: 100%;
}
.info_box > img {
    width: 100%;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 5px 9px 1px;
    background: #fff;
    overflow: hidden;
    height: auto;
    border-radius: 20px;
}

.cont_info_img_l {
    display: grid; 
    grid-template-columns: 70% auto; 
    background-color: #f5f5f5;;
}
.cont_info_img_r {
    display: grid; 
    grid-template-columns: auto 70% ; 
    background-color: #f5f5f5;;
}
.cont_img > img {
    width: 100%;
    height: 100%;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 5px 9px 1px;
    overflow: hidden;
    border-radius: 20px;
    background-color: #f5f5f5;;
}

/* 팜이데일리 메인 탭/가입안내 */
.member_tit {
    font-weight: 700;
    font-size: 1.2rem;
    margin: 50px 0 30px 0;
    width: 100%;
    display: block;
    color: #000;
}
.member_table {
    border-collapse: collapse;
    width: 100%;
    margin: 1rem auto;
    border: 1px solid #555;
    background-color: white;
    border-top: 2px solid #b5403e;
    border-bottom: 2px solid #b5403e;
    border-right: hidden;
    color: #000;
}

/* 테이블 행 */
.member_table th, td {
  padding: 8px;
}
.member_table th {
    font-size: 1rem;
    font-weight: 500;
    width: 25%;
    height: 80px;
    text-align: center;
    background-color: #b5403e;
    color: #FFF;
    letter-spacing: -2px;
}
.member_table td {
    font-size: 1rem;
    padding: 15px 20px;
    text-align: left;
    letter-spacing: -1px;
    line-height: 1.5rem;
}

/* 팜이데일리 메인/프로세스 */
.pharm_process {
    position: relative;
    display: flex;
    flex-direction: column;
    row-gap: 57px;
    width: 100%;
    height: auto;
    color: #FFF;
    padding: 65px 40px;
    margin: 0 auto;
    background: #bdd0e4;
}
.pharm_process_tit {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    row-gap: 20px;
}
.pharm_process_tit > span {
    color:#FFF; 
    font-family: 'GmarketSans'; 
    font-size:1.2rem; font-weight:600;
}
.pharm_process_sub {
    font-weight: 800; 
    font-family: 'NanumSquareNeo'; 
    font-size: 2.7rem; 
    color:#000;
    line-height: 3.5rem;
}

.process_box {
    position: relative;
    display: flex;
    flex-direction: column;
    row-gap: 33px;
}
.process_sec {
    position: relative;
    display: flex;
    width: 100%;
    height: 120px;
    background: #707f8f;
    padding: 25px 35px;
    row-gap: 20px;
    column-gap: 30px;
    align-items: center;
}
.process_sec::before {
    content: '';
    position: absolute;
    left: 46%;
    top: 120px;
    width: 0;
    height: 0;
    border-top: 15px solid #707f8f;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
}
.process_sec:nth-child(1)::before {
    border-top: 15px solid #707f8f;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
}
.process_sec:nth-child(2)::before {
    border-top: 15px solid #5e6c7a;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
}
.process_sec:nth-child(3)::before {
    border-top: 15px solid #4a5663;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
}
.process_sec:nth-child(4)::before {
    border-top: 15px solid #37424d;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
}
.process_sec:nth-child(2) {
    background: #5e6c7a;
}
.process_sec:nth-child(3) {
    background: #4a5663;
}
.process_sec:nth-child(4) {
    background: #37424d;
}
.process_sec > figure {
    width: auto;
    max-width: 58px;
    height: auto;
    max-height: 58px;
    margin: 0;
    margin-bottom: 20px;
    margin-top: 25px;
}
.process_sec > figure > img {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 14;
}
.process_sec > p {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.8rem;
    text-align: center;
    width: 30%;
}
.process_sec > span {
    font-size: 1.1rem;
    line-height: 1.7rem;
}

 /* 팜이데일리 푸터 */
 footer{
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    width: 100%;
 }
.footer_info {
    position: relative;
    display: flex;
    flex-direction: column;
    row-gap: 40px;
    font-size: 1.1rem;
    line-height: 2rem;
    font-weight: 300;
    color: #FFF;
    background: #151b21;
    height: auto;
    margin: 0;
    padding: 65px 40px 100px 40px;
}
.footer_info > dt {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 25px;
}
.footer_info > dd {
    display: flex;
    margin: 0;
}
.footer_info > dd > i {
    margin-right: 10px;
}
.footer_info > h3{
    width: 100%;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
}

.m_pharm_wrap {
    position: relative;
    width: 100%;
    max-width: 640px;
    height: auto;
    margin: 0 auto;
    overflow-x:hidden;
}

/* 팜이데일리 배너 */
.mpharm_banner {
    position: fixed;
    bottom: 0;
    max-width: 640px;
    width: 100%;
    height: 50px;
    z-index: 9;
    background-color: rgb(249, 250, 252);
}
.mpharm_banner > a {
    color: #FFF;
    font-weight: 600;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #aa3d3e;
}

.close_bn {
    padding: 1px 5px;
    font-weight: 700;
    text-shadow: 0 2px 0 #000;
    font-size: 1.3rem;
    position: absolute;
    top: 12px;
    right: 0%;
    transform: translate(-50%, 0%);
    color: #fff;
}

.close_bn:hover {
    border: 0;
    cursor: pointer;
    opacity: .75;
}


/* 서비스 안내 */
.que{
    position: relative;
    padding: 17px 0;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid #414141;
  }
.que:last-child {
    border-bottom: 0 !important;
}
    
.que::before{
    display: inline-block;
    content: 'Q';
    font-size: 20px;
    color: #fff959;
    margin: 0 5px;
}

.que.on>span{
    font-weight: 700;
    color: #fff959;
}

.anw {
    display: none;
    overflow: hidden;
    font-size: 16px;
    background-color: #151b21;
    text-align: justify;
    color:#fff;
    padding: 20px;
    letter-spacing: -1.5px;
}
.anw > section {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}
.anw_line {
    display: flex;
    column-gap: 10px;
}
.anw_line > h4 {
    line-height: 32px;
}
.anw_line > i {
    font-weight: 700;
}
.anw > dl {
    display: flex;
    column-gap: 10px;
}
.anw_line > .point > b {
    color:#e38f8f;
}

.arrow_wrap {
    position: absolute;
    top:43%; right: 10px;
    transform: translate(0, -50%);
}

.arrow_wrap .arrow {
    position: relative;
    width: 30px;
    height: 30px;
    overflow: hidden;
    vertical-align: middle;
  }

  .arrow_wrap .arrow:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height:10px;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    margin-top: 2px;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
  }  
    .arrow.top:before {
    transform: translate(-50%, -50%) rotate(45deg);
}            
  .arrow.down:before {
    transform: translate(-50%, -50%) rotate(-135deg);
}
.que .arrow_top {
    display: none;
}
.que .arrow_bottom {
    display: block;
}
.que.on .arrow_bottom {
    display: none;
}
.que.on .arrow_top {
    display: block; 
}

.tab_area {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}
.tab_area th, td {
    padding: 10px;
    border: 1px solid #ddd;
    font-size: 13px;
    text-align: center;
}
.tab_area th {
    background: #151b21;
}
.process_sec > figure > img {
    width: 85%;
}

@media only screen and (max-width : 560px) {

    /* 팜 헤더 */
    .m_pharm_head {
        padding: 18px 35px 40px 35px;
    }
    .m_pharm_tit {
        font-size: 1.15rem;
    }

    /* 팜 서비스소개 */
    .tab_inner {
        /* row-gap: 80px; */
        padding: 0 35px;
    }
    .pharm_t_main {
        padding: 55px 35px;
    }
    .pharm_t_tit > b {
        font-size: 2.5rem;
        line-height: 3.5rem;
    }
    .pharm_t_tit > figure {
        top: 37px;
        left: 128px;
    }
    .pharm_t_tit > figure > img {
        width: 68%;
        aspect-ratio: 16 / 10;
    }

    .pharm_t_tit > span {
        font-size: 1.1rem;
        line-height: 2rem;
    }
    .cont_l_zero {
        padding: 50px 0;
    }
    .cont_l_one {
        padding: 50px 0;
        row-gap: 50px;
    }
    .cont_info_l {
        row-gap: 10px;
    }
    .cont_info_l > dt {
        font-size: 2.1rem;
        line-height: 3rem;
    }
    .cont_info_l > dd {
        font-size: 1.1rem;
        line-height: 1.8rem;
    }
    .cont_info_l > span {
        font-size: 0.95rem;
    }
    .cont_r_one {
        padding: 50px 0;
    }
    .cont_info_r {
        row-gap: 10px;
    }
    .cont_info_r > dt {
        font-size: 2.1rem;
        line-height: 3rem;
    }
    .cont_info_r > dd {
        font-size: 1.1rem;
        line-height: 1.8rem;
    }
    .cont_info_r > span {
        font-size: 0.95rem;
    }

    /* 팜 프로세스 */
    .pharm_process {
        padding: 50px 35px;
        row-gap: 40px;
    }
    .process_sec {
        padding: 20px 25px;
        height: 110px;
    }
    .process_sec::before {
        top: 110px;
    }
    .pharm_process_sub {
        font-size: 2.1rem;
        line-height: 3rem;
    }
    .pharm_process_tit > span {
        font-size: 1rem;
    }
    .process_sec > p {
        font-size: 1rem;
        line-height: 25px;
    }
    /* .process_sec > figure > img {
        width: 80%;
    } */
    .process_sec > span {
        width: 45%;
        font-size: 0.85rem;
        line-height: 1.3rem;
    }
    
}


@media only screen and (max-width : 480px) {
    /* 팜 헤더 */
    .m_pharm_head {
        padding: 18px 30px 40px 30px;
    }
    .m_pharm_top > span {
        margin-top: 10px;
        text-align: justify;
        font-size: 0.8rem;
    }
    .m_pharm_tit {
        font-size: 1.1rem;
    }
    

    /* 팜 서비스소개 */
    .pharm_t_main {
        padding: 40px 30px;
    }
    .tab_inner {
        /* row-gap: 50px; */
        padding: 0 30px;
    }
    .pharm_t_tit > b {
        font-size: 2.2rem;
        line-height: 3.2rem;
    }
    .pharm_t_tit > figure {
        top: 31px;
        left: 104px;
    }
    .pharm_t_tit > figure > img {
        width: 58%;
    }
    .pharm_t_main {
        padding: 35px 25px;
        row-gap: 60px;
    }
    .pharm_t_tit > span {
        font-size: 1rem;
        line-height: 1.5rem;
    }
    .cont_l_zero {
        padding: 40px 0;
        row-gap: 40px;
    }
    .cont_l_one {
        padding: 30px 0;
        row-gap: 30px;
    }
    .cont_info_l {
        row-gap: 15px;
    }
    .cont_info_l > span {
        font-size: 0.9rem;
    }
    .cont_info_l > dt {
        font-size: 1.95rem;
        line-height: 2.7rem;
    }
    .cont_info_l > dd {
        font-size: 1rem;
        line-height: 1.6rem;
    }
    .cont_info_r {
        row-gap: 15px;
    }
    .cont_info_r > span {
        font-size: 0.9rem;
    }
    .cont_info_r > dt {
        font-size: 1.95rem;
        line-height: 2.7rem;
    }
    .cont_info_r > dd {
        font-size: 1rem;
        line-height: 1.6rem;
    }
    .cont_r_one {
        padding: 40px 0;
        row-gap: 40px;
    }

    /* 팜 프로세스 */
    .pharm_process {
        padding: 50px 20px;
    }
    .process_sec {
        height: 105px;
        column-gap: 10px;
        padding: 20px 25px;
        justify-content: space-between;
    }
    .process_sec::before {
        top: 105px;
    }
    .process_sec > span {
        font-size: 0.95rem;
        line-height: 1.5rem;
    }
    .process_sec > p {
        font-size: 1rem;
        line-height: 1.7rem;
    }
    .process_sec > figure {
        width: 20%;
    }
    .process_sec > figure > img {
        width: 70%;
    }

    /* 팜 탭 */
    ul.m_tabs {
        height: 60px;
    }
    ul.m_tabs li{
        height: 60px;
        font-size: 1rem;
        line-height: 40px;
    }
    ul.m_tabs li.current {
        height: 60px;
    }

    /* 팜 탭/가입안내 */
    .commission_txt {
        padding: 0 20px;
    }
    .member_tit {
        font-size: 1rem;
    }
    .member_table {
        margin: 1rem auto 3rem auto;
    }
    .member_table th, .member_table td {
        font-size: 0.9rem;
    }

    /* 유의사항 안내 */
    .footer_info {
        font-size: 1rem;
        padding: 50px 20px 70px 20px;
        row-gap: 30px;
        line-height: 1.8rem;
    }
    .imgg_03 {
        top: 80px;
    }

    /* 서비스 안내 */
    .footer_info > h3 {
        font-size: 18px;
    }
    .que {
        font-size: 16px;
    }
    .que::before {
        font-size: 16px;
    }
    .anw {
        font-size: 14px;
    }
    .tab_area th, td {
        padding: 0;
        font-size: 10px;
        letter-spacing: -1px;
    }
}

@media only screen and (max-width : 420px) {
    /* 팜 헤더 */
    .m_pharm_tit {
        font-size: 1.02rem;
    }
    .m_pharm_head {
        padding: 18px 25px 40px 25px;
    }

    /* 팜 서비스소개 */
    .pharm_t_tit > b {
        font-size: 2rem;
        line-height: 2.8rem;
        letter-spacing: -1px;
    }
    .pharm_t_main {
        padding: 35px 25px;
        row-gap: 55px;
    }
    .tab_inner {
        padding: 0 25px;
    }
    .pharm_t_tit > figure {
        top: 20px;
        left: 115px;
    }
    .pharm_t_tit > figure > img {
        width: 54%;
    }

    .cont_info_l > dt {
        font-size: 1.85rem;
        line-height: 2.5rem;
    }
    .cont_info_l > dd {
        font-size: 0.9rem;
        line-height: 1.4rem;
    }
    .cont_info_l > span {
        font-size: 0.8rem;
    }
    .cont_info_r > dt {
        font-size: 1.85rem;
        line-height: 2.5rem;
    }
    .cont_info_r > dd {
        font-size: 0.9rem;
        line-height: 1.4rem;
    }
    .cont_info_r > span {
        font-size: 0.8rem;
    }
    .pharm_process_sub {
        font-size: 1.85rem;
    }
    .cont_img > img {
        border-radius: 10px;
    }

    /* 팜 탭 */
    ul.m_tabs li {
        width: 49.4%;
    }

    /* 팜 탭/가입안내 */ 
    .commission_txt {
        padding: 0 20px;
    }
    .member_table th {
        width: 30%;
    }

    /* 팜 프로세스 */ 
    .pharm_process {
        padding: 50px 25px;
        row-gap: 30px;
    }
    .footer_info > dt {
        font-size: 1.2rem;
     }
     .footer_info > dd {
        text-align: justify;
     }
    .process_sec {
        column-gap: 5px;
        padding: 15px 20px;
    }
    .pharm_process_tit {
        row-gap: 10px;
    }
    .process_sec > p {
        font-size: 0.9rem;
        line-height: 1.5rem;
        text-align: center;
    }
    .process_sec > span {
        font-size: 0.9rem;
        line-height: 1.3rem;
        width: 40%;
    }
    .process_sec:nth-child(1)::before {
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
    }
    .process_sec:nth-child(2)::before {
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
    }
    .process_sec:nth-child(3)::before {
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
    }
    .process_sec:nth-child(4)::before {
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
    }

    /* 유의사항 */
    .footer_info {
        padding: 50px 25px 80px 25px;
        line-height: 1.7rem;
        font-size: 0.95rem;
    }
}

@media only screen and (max-width : 380px) {
    /* 팜 헤더 */
    .m_pharm_head {
        padding: 18px 20px 40px 20px;
    }

    /* 팜 서비스소개 */
    .pharm_t_tit > b {
        font-size: 1.8rem;
        line-height: 2.5rem;
    }
    .pharm_t_main {
        row-gap: 45px;
    }
    .pharm_t_tit > figure {
        top: 22px;
        left: 107px;
    }
    .pharm_t_tit > figure > img {
        width: 50%;
    }
    .pharm_process_sub {
        font-size: 1.7rem;
    }
    

    /* 팜 탭/가입안내 */ 
    .member_table th {
        width: 30%;
    }
    .member_table td {
        text-align: justify;
    }

    /* 팜 프로세스 */
    .process_sec {
    padding: 20px 20px;
    }
    .footer_info > dt {
    font-size: 1.1rem;
    }
}

@media only screen and (max-width : 340px) {
    /* 팜 헤더 */
    .m_pharm_tit {
        font-size: 0.92rem;
        line-height: 15px;
    }
    /* 팜 서비스소개 */ 
    .pharm_process_sub {
        font-size: 1.55rem;
    }
    .pharm_t_tit > b {
        font-size: 1.6rem;
        line-height: 2.3rem;
    }
    .pharm_t_main {
        row-gap: 35px;
    }
    .pharm_t_tit > figure {
        top: 23px;
    }

    /* 팜 탭 */
    ul.m_tabs li {
        width: 49.3%;
    }

    /* 팜 탭/가입안내 */ 
    .commission_txt {
        padding: 0 15px;
    }

    /* 팜 프로세스 */
    .pharm_process_tit {
        row-gap: 0px;
    }
    .pharm_process {
        row-gap: 20px;
    }
}