/*common css*/


:root{
    --color-primary: #7E161B;
    --color-text-gray1: #767676;
    --color-line-middle: #E5E5EC;
    --color-disabled: #999999;
    --color-subfont : #555555;
    --gnb-height : 92px;
    --footer-height : 16rem;

    --contents-side : 20.0rem;
    --contents-side-md : 10.0rem;
    --contents-side-sm : 2.0rem;
}


body {
    font-family: 'Pretendard-Regular';
    letter-spacing: -.0625rem;
}


::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 4px;
    height: 4px;
}

::-webkit-scrollbar-track {
    background-color: #F1F1F5;
    width: 4px;
    height: 4px;
}

::-webkit-scrollbar-thumb {
    border-radius: 0px;
    width: 4px;
    height: 4px;
    background-color: var(--color-primary);
    -webkit-box-shadow: 0 0 0px rgba(255, 255, 255, .5);
}


@media screen {
    body{
        font-size: 16px;
    }

    footer{

    }

    h1{
        font-family: 'Pretendard-Semibold';
        letter-spacing: -.0875rem;
    }

    h2{
        font-family: 'Pretendard-Regular';
        letter-spacing: -.0625rem;
    }


    .navi-bar{
        display: flex;
        align-items: center;
        justify-content: center;
        height: 57px;
    }

    .navi-bar > .navi-logo{
        padding-top: 15px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 15px;
        width: 1454px;
    }

    .navi-bar > .navi-logo > .dogfoot-logo > img{
        width: 172px;
    }

    .navi-bar > .navi-logo > .dogfoot-logo > img:hover{
        cursor: pointer;
    }

    .contents-body{
        display: block;
    }

    .contents-body > .hero-wrapper{
        width: 100%;
        height: calc( 100vh - ( 57px + 140px ) );

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .contents-body > .hero-wrapper > h1,
    .contents-body > .hero-wrapper > h2{
        display: block;
        font-family: notoSanEB;
        font-size: 40px;
        font-weight: 900;
        text-align: center;
    }

    .contents-body > .hero-wrapper > h1{
        padding-top: 10px;
        padding-bottom: 57px;
    }

    .contents-body > .hero-wrapper > h2{
        font-size: 24px;
    }

    .contents-body > .hero-wrapper > p.desc{
        display: block;
        font-family: notoSanN;
        font-size: 16px;
        text-align: center;
        line-height: 1.7rem;
    }

    .contents-body > .hero-wrapper > span.email-contact{
        display: block;
        font-family: notoSanN;
        font-size: 12px;
        text-align: center;
        margin-top: 3.0rem;
        font-weight: 900;
    }

    .contents-body > .hero-wrapper > span.email-contact > a:hover{
        cursor: pointer;
    }

    footer{
        display: flex;
        align-items: center;
        justify-content: center;
        /*height: 140px;*/
    }

    footer > .copy-box-wrapper{
        display: flex;
        padding-left: 1.0rem;
        padding-right: 1.0rem;
        width: 1454px;
        align-items: center;
        justify-content: center;
    }

    footer > .copy-box-wrapper > .copy-box{
        font-family: consoleB;
        font-size: 12px;
        flex:1;
    }

    footer > .copy-box-wrapper > .copy-box > p.info-area{
        display: flex;
        align-content: center;
        margin-bottom: 0.5rem;
    }

    footer > .copy-box-wrapper > .copy-box > p.info-area > strong,
    footer > .copy-box-wrapper > .copy-box > p.info-area > span{
        margin-right: 0.7rem;
    }

    footer > .copy-box-wrapper > .copy-box > p.info-area > strong{
        font-weight: 900;
    }

    footer > .copy-box-wrapper > .copy-box > p.info-area > span::before{
        display: inline-block;
        width: 1.0px;
        height: 10.0px;
        content: '';
        background-color: #bbbbbb;
        margin-right: 0.7rem;
    }

    a.sns-btn > img:hover{
        cursor: pointer;
    }

    .sns-btn > img{
        height: 35px;
    }

    
    .only-mb{
        display:none;
    }

    .no-mb{
        display:block;
    }
}

/*pc 미만 */
@media screen and (max-width : 1454px){
    .navi-bar > .navi-logo{
        width: calc(100% - 40px);
    }
    
    footer > .copy-box-wrapper{
        width: calc(100% - 1.0rem);
    }
    
    footer > .copy-box-wrapper > .copy-box > p.info-area{
        display: flex;
        flex-direction: column;
    }
    
    footer > .copy-box-wrapper > .copy-box > p.info-area > span{
        margin-top: 0.3rem;
    }

    footer > .copy-box-wrapper > .copy-box > p.info-area > span::before{
        display: inline-block;
        width: 0.0px;
        height: 0.0px;
        content: '';
        background-color: #bbbbbb;
        margin-right: 0.0rem;
    }


}


/*태블릿 미만*/
@media screen and (max-width : 568px){
    footer{

    }

    footer > .copy-box-wrapper{
        flex-direction: column;
        padding-bottom: 2.0rem;
    }

    footer > .copy-box-wrapper > .sns-box{
        margin-top: 2.0rem;
    }
    
    .only-mb{
        display:block;
    }

    .no-mb{
        display:none;
    }

    .sns-box.only-mb{
        margin-bottom: 1.0rem;
    }
    

    .contents-body > .hero-wrapper{
        height: calc( 100vh - ( 57px + 200px ) );
    }
}


/*gnb*/

.gnb-top{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--gnb-height);
    transition: background-color 0.5s ease;
    z-index : 999;
}

.gnb-top.active, .gnb-top.wmode{
    background-color : #ffffff;
}

.gnb-top::after{
    display : block;
    position: absolute;    
    top: var(--gnb-height);  
    left: 0;   
    height : 1px;
    width : 0px;
    content: ' ';
    background-color : #E5E5EC;
    transition: all 1s ease;
}

.gnb-top.active::after, .gnb-top.wmode::after{
    width : 100vw;
}

.gnb-logo{
    display : block;
    width : 166px;
    height : 39px;
    transition: all 1s ease;
    position : relative;
}

.gnb-logo > img{
    display : block;
    position : absolute;
    left:0;
    top:0;
    width : 100%;
    transition: opacity 0.5s ease;
}

.gnb-logo > img.logo-white{
    opacity: 1.0;
}

.gnb-logo > img.logo-black{
    opacity: 0.0;
}

.gnb-top.active > .gnb-logo > img.logo-white
, .gnb-top.wmode > .gnb-logo > img.logo-white{
    opacity: 0.0;
}

.gnb-top.active > .gnb-logo > img.logo-black
,.gnb-top.wmode > .gnb-logo > img.logo-black{
    opacity: 1.0;
}


.gnb-menu-btn-wrapper {
    display: flex;
    flex-direction: row;
}

.active .gnb-menu-btn-wrapper{
    padding-right: 70px;
}

.active.logged-in .gnb-menu-btn-wrapper{
    padding-right: 17px !important;
    padding-left: 17px !important;
}

.gnb-menu-btn-wrapper > .gnb-menu-btn{
    font-family: 'Pretendard-Regular';
    font-size: 18px;
    color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-left:40px;
    padding-right:40px;
    height: var(--gnb-height);
    transition: all 0.5s ease;
}

.gnb-menu-btn-wrapper > .gnb-fullmenu-wrapper{
    overflow: hidden;
    display : flex;
    flex-direction: row;
    justify-content: space-between;
    position : absolute;
    left : 0;
    top : var(--gnb-height);
    width : 100%;
    height : 0px;
    background-color : #ffffff00;
    transition: background-color 0.5s ease, opacity 0.5s ease;
    opacity : 0;
}

.gnb-top.active > .gnb-menu-btn-wrapper > .gnb-fullmenu-wrapper{
    height : auto;
    background-color : #ffffffff;
    padding : 43px 0px 32px 0px;
    opacity : 1.0;
    border-bottom: 1px solid #e2e2e2;
}

.gnb-menu-btn-wrapper > .gnb-fullmenu-wrapper > .fullmenu-center{
    display : flex;
    flex-direction: row;
}

.gnb-menu-btn-wrapper > .gnb-fullmenu-wrapper > .fullmenu-center > ul{
    display : flex;
    flex-direction : column;
    align-items: center;
}

.gnb-menu-btn-wrapper > .gnb-fullmenu-wrapper > .fullmenu-center > ul > li{
}

.gnb-menu-btn-wrapper > .gnb-fullmenu-wrapper > .fullmenu-center > ul > li > a{
    font-family: 'Pretendard-Regular';
    font-size: 16px;
    letter-spacing: -0.4px;
    color : #767676;
    display : flex;
    flex-direction : row;
    height : 50px;
    align-items : center;
}

.fullmenu-width1{
    transition: width 0.5s ease;
    width : 189px;
}

.fullmenu-width2{
    transition: width 0.5s ease;
    width : 161px;
}

.gnb-top.active .fullmenu-width1{
    width : 189px;
}


.gnb-top.active .fullmenu-width2{
    width : 161px;
}

.gnb-top.active > .gnb-menu-btn-wrapper > .gnb-menu-btn
, .gnb-top.wmode > .gnb-menu-btn-wrapper > .gnb-menu-btn{
    color : black;
}

.gnb-tail-btn-wrapper{
    display: flex;
    flex-direction: row;
    transition: all 1s ease;
    margin-right : 30px;
}

.gnb-tail-btn-wrapper > .gnb-tail-btn{
    display : block;
    width : 32px;
    height : 39px;
    transition: all 1s ease;
    position : relative;
    margin : 0 12px 0 12px;
}

.gnb-tail-btn-wrapper > .gnb-tail-btn > img{
    display : block;
    position : absolute;
    left:0;
    top:0;
    width : 100%;
    transition: opacity 0.5s ease;
}

.gnb-top > .gnb-tail-btn-wrapper > .gnb-tail-btn > img.search-white,
.gnb-top > .gnb-tail-btn-wrapper > .gnb-tail-btn > img.mypage-white{
    opacity: 1.0;
}

.gnb-top > .gnb-tail-btn-wrapper > .gnb-tail-btn > img.search-black,
.gnb-top > .gnb-tail-btn-wrapper > .gnb-tail-btn > img.mypage-black{
    opacity: 0.0;
}

.gnb-top.active > .gnb-tail-btn-wrapper > .gnb-tail-btn > img.search-white,
.gnb-top.active > .gnb-tail-btn-wrapper > .gnb-tail-btn > img.mypage-white,
.gnb-top.wmode > .gnb-tail-btn-wrapper > .gnb-tail-btn > img.search-white,
.gnb-top.wmode > .gnb-tail-btn-wrapper > .gnb-tail-btn > img.mypage-white{
    opacity: 0.0;
}

.gnb-top.active > .gnb-tail-btn-wrapper > .gnb-tail-btn > img.search-black,
.gnb-top.active > .gnb-tail-btn-wrapper > .gnb-tail-btn > img.mypage-black,
.gnb-top.wmode > .gnb-tail-btn-wrapper > .gnb-tail-btn > img.search-black,
.gnb-top.wmode > .gnb-tail-btn-wrapper > .gnb-tail-btn > img.mypage-black{
    opacity: 1.0;
}

@media screen and (max-width : 1453px){
    .gnb-logo{
        margin-left : 30px;
    }

    .gnb-tail-btn-wrapper{
        margin-right : 30px;
    }

    .fullmenu-left{
        width : calc( 144px + 41px);
    
    }
    
    .fullmenu-right{
        width : calc( 112px + 30px);
    
    }
}


@media screen and (min-width : 1454px){
    .gnb-logo{
        margin-left : 190px;
    }

    .gnb-tail-btn-wrapper{
        margin-right : 190px;
    }
    
    .fullmenu-left{
        width : calc( 144px + 190px);
    
    }
    
    .fullmenu-right{
        width : calc( 112px + 190px);
    
    }
}

.gnb-menu-btn-wrapper:hover > .gnb-menu-btn{
    padding-left : 65px;
    padding-right : 65px;
}



/*slider button*/
.b-slider-btn{
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    width: 56px;
    height: 73px;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    transition: background-color 250ms ease;
    z-index: 999;
}
.b-slider-btn:hover{
    background: rgba(0, 0, 0, 0.5);
}
.b-slider-btn > img{
    width:32px;
    height:36px;
}
.b-slider-btn.left{
    left: 0;
    top: calc(50% - 36px);
}

.b-slider-btn.right{
    left: calc(100% - 56px);
    top: calc(50% - 36px);
}


/*common btns*/


.prim-btn, .transp-btn{
    display: inline-flex;
    background-color: var(--color-primary);
    padding: 1.0rem;
    width: auto;
}

.prim-btn:hover, .transp-btn:hover{
    cursor: pointer;
}

.transp-btn{
    background-color: #00000000;
}

.prim-btn > span, .transp-btn > span{
    display: block;
    color : white;
    font-size : 1.0rem;
    font-family: 'Pretendard-Semibold';
}
.transp-btn > span{
    color : #111111;
}
.prim-btn > span:hover, .transp-btn > span:hover{
    cursor: pointer;
}

.prim-btn > img, .transp-btn > img{
    width: 1.2rem;
    margin-left: 0.5rem;
}

.prim-btn > img:hover, .transp-btn > img:hover{
    cursor: pointer;
}


footer .section-inner{
    height: var(--footer-height);
    width: 100%;
    background-color: white;
    border-top: 1px solid #E5E5EC;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.footer-contents-wrapper{
    width: calc(100% - (var(--contents-side) * 2));
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top:2.5rem;
}

.footer-left > h5{
    letter-spacing: -.0875rem;
    font-size : 1.5rem;
    font-family: 'Pretendard-Semibold';
    color: #111111;
}

.footer-left address,
.footer-left > p.copyright{
    margin-top:0.75rem;
    font-size : 0.81rem;
    font-family: 'Pretendard-Regular';
    letter-spacing: -.0875rem;
    color: #505050;
}

.footer-left address > a{
    margin-bottom: 0.5rem;
    display: block;
    color: #505050;
}


@media screen and (max-width : 1453px){
    

    .footer-contents-wrapper{
        width: calc(100% - (var(--contents-side-sm) * 2));
    }


}

@media screen and (min-width : 1454px) and (max-width : 1599px){
    .footer-contents-wrapper{
        width: calc(100% - (var(--contents-side-md) * 2));
    }

}

.footer-info-wrapper{
    display: flex;
    flex-direction: row;
    margin-top:2.5rem;
}

.footer-info-wrapper > a{
    letter-spacing: -.0875rem;
    font-size : 0.875rem;
    font-family: 'Pretendard-Regular';
    color : #505050;
}

a.privacy-policy{
    color : #111111;
}

.footer-info-wrapper > span.divider{
    display: block;
    width: 1px;
    height: 1.25rem;
    background: #E5E5EC;
    margin : 0 1.50rem 0 1.50rem;
}

.footer-right{
    display: flex;
    flex-direction: column;
    align-items: end;
}

.footer-right .tel-no{
    letter-spacing: -.0875rem;
    font-size : 1.5rem;
    font-family: 'Pretendard-Semibold';
    color: #111111;
}

.footer-right .service-time{
    display: block;
    margin-top: 0.5rem;
    letter-spacing: -.0875rem;
    font-size : 0.875rem;
    font-family: 'Pretendard-Regular';
    color : #505050;
}

.kkjb-app-banner{
    padding : 0.90rem 1px 0.90rem 1.25rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border : 1px #E5E5EC solid;
    margin-top:1.5rem;
}

.kkjb-app-banner h5{
    letter-spacing: -.0875rem;
    font-size : 0.875rem;
    font-family: 'Pretendard-Semibold';
    color: #111111;
    line-height: 1.27rem;
}

.kkjb-app-banner span{
    font-size : 0.812rem;
    font-family: 'Pretendard-Regular';
    letter-spacing: -.0875rem;
    margin-top: 0.3rem;
    display: block;
}

.kkjb-app-banner .appqr{
    width: 4rem;
    height: 4rem;
    margin-left:1.25rem;
}



.contents-wrapper{
    width:100%;
    display:flex;
    flex-direction : column;
    align-items: center;
    /*padding-top : var(--gnb-height);*/
    /*min-height: calc( 100vh - ( var(--gnb-height) + var(--footer-height)) );*/
    /*250503 여백줄이기*/
    padding-top : calc(var(--gnb-height) + 2.25rem);
}

.subpage-header{
    display: flex;
    flex-direction: row;
    width: 1280px;
    justify-content: right;
    padding-bottom : 4.625rem;
}

.subpage-body{
    flex : 1;
}


.subpage-body > h2{
    color: #7E161B;
    font-size : 1.125rem;
    font-family: "Noto Serif KR", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    /*display : block; 250503 삭제요청*/
    display : none;
    margin : 0;
}

.subpage-body > h1{
    color: #000000;
    letter-spacing: -.0875rem;
    font-size : 3.5rem;
    font-family: 'Pretendard-Semibold';
    display : block;
    margin : 1.0rem 0 0 0;
}

.subpage-breadcrumb-wrapper{
    display: flex;
    flex-direction: column-reverse;
}

.subpage-breadcrumb{
    display: flex;
    flex-direction: row;
    align-items: center;
}


.subpage-breadcrumb > a > *::hover{
    cursor:pointer;
}

.subpage-breadcrumb > a{
    display: flex;
    align-items: center;
}

.subpage-breadcrumb > a > span{
    display : block;
    color : #111111;
    letter-spacing: -.0875rem;
    font-size : 1.0rem;
    font-family: 'Pretendard-Regular';
}

.subpage-breadcrumb > a.home{
    display : block;
    width : 1.5rem;
    height : 1.5rem;
}
.subpage-breadcrumb > a.home > img{
    width : 100%;
    height : 100%;
}

.subpage-breadcrumb > a.gnb::before,
.subpage-breadcrumb > a.sub::before{
    content : ' ';
    display : block;
    width : 6px;
    height : 6px;
    background-color : #D9D9D9;
    border-radius : 50%;
    margin-left : 1.1875rem;
    margin-right : 1.1875rem;
    cursor:default;
}


.subpage-tab{
    width: 1280px;
    height : 3.5rem;
    border-bottom : #F1F1F5 1px solid;
    display:flex;

}

.subpage-tab > .tab-btn{
    width : 12.875rem;
    height : 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size : 1.45rem;
    font-family: 'Pretendard-Regular';
    letter-spacing: -.0875rem;
    color : #505050;
    text-decoration: none;
}

.subpage-tab > .tab-btn.active{
    font-family: 'Pretendard-Semibold';
    color : #111111;
    border-bottom : var(--color-primary) 2px solid;
}

.subpage-contents{
    width: 1280px;
}



/*글 상세 하단 */

.article-footer{
    border-top : 1px solid #E5E5EC;
    padding-top : 1.5rem;
    display : flex;
    flex-direction : row;
    align-items : center;
    justify-content : space-between;
    padding-bottom : 10.0rem;
}

.go-to-list-btn{
    border : 1px solid #111111;
    border-radius : 6px;
}

.article-btn:hover,
.article-btn:hover > *{
    cursor : pointer;
}


.article-btn {
    display : flex;
    flex-direction : row;
    padding-top : 0.5rem;
    padding-bottom : 0.5rem;
}

.article-prev-btn > img{
    width : 1.0rem;
    height : 1.0rem;
    margin-right : 0.5rem;
}


.article-next-btn > img{
    width : 1.0rem;
    height : 1.0rem;
    margin-left : 0.5rem;
}

.article-btn > span{
    font-size: 1.0rem;
    font-family: 'Pretendard-Regular';
    letter-spacing: -.0875rem;
}

.prev-article-title{
    font-size: 0.8rem;
    margin-left : 1.875rem;
    color : #999999;
}

.next-article-title{
    font-size: 0.8rem;
    margin-right : 1.875rem;
    color : #999999;
}


.error-wrapper{
    display: flex;
    flex-direction : row;
    align-items : center;
    justify-content : center;
    width : 100vw;
    padding-bottom: 7rem;
    height: calc(100vh - 33rem);
}

.error-wrapper > h2{
    font-family: 'Pretendard-Semibold';
    font-size : 3.0rem;
}



/*admin quill editor와 함께 스타일 맞출것.*/
.quill-contents{
    line-height: 1.8rem;
    font-family: 'Pretendard-Regular';
    font-size: 1.0rem;
}

.quill-contents p:empty:before {
  content: ' ';
  white-space: pre;
}

.quill-contents h1{
    font-family: 'Pretendard-Regular';
    font-size: 2.0rem;
    line-height : 2.7rem;
}

.quill-contents h2{
    font-family: 'Pretendard-Regular';
    font-size: 1.5rem;
    line-height: 2.025rem;
}

.quill-contents strong{
    font-family: 'Pretendard-Bold';
}

.quill-contents em{
    font-style: italic;
}


.quill-contents ol{
    list-style: auto;
    padding-left: 3.0em;
}

.quill-contents ul{
    list-style: disc;
    padding-left: 3.0em;
}

.quill-contents a{
    color: #06c;
    text-decoration: underline;
}