@charset "utf-8";

.jobHeader > *{
    box-sizing:border-box;
    list-style: none;
    margin: 0;
    padding: 0;
}

#jobContent .jobHeader picture img,
#jobContent .jobHeader img{
  max-width:100%;
  margin-bottom:0;
}

.jobHeader {
    width: 100%;
    position: relative;
}

.jobHeader::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawerMenu.open ~ .jobHeader::after {
    opacity: 1;
    visibility: visible;
}


.fixedMenu{
    height:62px;
    background: rgba(235, 235, 220, 1);
    display:flex;
    justify-content: space-between;
    padding:0 12px 0 0;
    position: fixed;
    bottom:2%;
    right:12%;
    width: 60%;
    border-radius:8px;
    align-items:center;
    z-index:999;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.fixedMenu li{
    display:flex;
    align-items: center;
}

.fixedMenu button{
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    outline: none;
    box-shadow: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.topButton img{
    display: block;
    width: 56px;
    height: 45px;
}

.fixedMenu button img{
    display: block;
    width: 40px;
    height: 37px;
}

.drawerMenu {
    position: fixed;
    top: 0;
    right: -30%;
    width: 30%;
    height: 100%;
    background-color: #00898E;
    color: #fff;
    transition: right 0.3s ease;
    z-index: 999;
    padding-top: 2rem;
}

.drawerMenu.open {
    right: 0;
}

.drawerMenu .closeButton{
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: transparent;
    color: #fff;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.drawerMenu .closeButton span{
    font-size:16px;
    vertical-align: top;
    margin-left:4px;
}

.drawerMenu .drawerMenuList{
    list-style-type: none;
    padding: 0;
    height:clamp(90%, 70vw, 500px);
    overflow-y:scroll;
    scrollbar-color:#985219 #CFCFCF;
    scrollbar-width: thin;
}

.drawerMenu .drawerMenuList::-webkit-scrollbar {
  width: 12px;
  background-color:#CFCFCF;
  border-radius:50px;
}

.drawerMenu .drawerMenuList::-webkit-scrollbar-thumb {
  background-color:#985219;
  border-radius: 6px;
}

.drawerMenu .drawerMenuList::-webkit-scrollbar-track {
  background-color:rgba(255,255,255,0.15);
}


.drawerMenu .drawerMenuList li {
    padding:1rem 2rem;
}

.drawerMenu .drawerMenuList li a {
    color: #fff;
    text-decoration: none;
    display: block;
    font-size:1.3rem;
}

.drawerMenu .drawerMenuList li a:hover {
    background-color: #e4dddd;
    transition:0.2s;
}

.drawerMenu .drawerMenuList li ul{
    list-style:none;
    margin: 0;
    padding: 0;
}

.drawerMenu .drawerMenuList li ul li a{
    font-size:1.2rem;
}

/* count */

.fixedMenu li.countBox{
    min-height:55px;
    align-items:center;
}

.count{
    display:flex;
    justify-content: space-between;
    width: 100%;
    max-width:360px;
    gap: 8px;
}

.countShow{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width:140px;
}

.countShowText{
    color:#006f75;
    display:flex;
    align-items:center;
    justify-content: center;
    flex-direction:column;
    font-weight:bold;
    font-size: 1.2rem;
    margin: 0 0 4px 0;
    padding: 0;
}

.nowRank{
    width: 30%;
    font-size: 1rem;
    color: #025457;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 6px;
}

.nowRank p{
    font-size:1rem;
    color:#025457;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.realTimeRank{
    font-size:1.8rem;
    text-align: center;
}

.countNumText span{
    color:#E92D2D;
    font-size:1.4rem;
    font-weight:bold;
}

.countNumText span.countNum{
    font-size:2.2rem;
}

.resultButton{
    width: 100%;
    max-width:126px;
    max-height:40px;
    display: flex;
    justify-content: center;
}

.button{
    box-sizing: border-box;
    box-shadow: 0 3px 0 #025457;
    display:block;
    text-align: center;
    padding: 0.75rem;
    background-color: #00898E;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.2rem;
    font-weight:bold;
    display: flex;
    justify-content: center;
    align-items: center;
}

.button span{
    width: 100px;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: bold;
}

@media screen and (min-width:768px){
    .fixedMenu li.topBtn{
        display:block;
    }
}

@media screen and (max-width:900px){
    .fixedMenu {
        width:84%;
        bottom: 8%;
        left: 45%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
    }
    .fixedMenu li.topBtn{
        display:none;
    }

    .fixedMenu li.countBox{
        width: 100%;
    }

    .count{
        max-width:initial;
    }

    .fixedMenu li.menuBtn{
        width: 20%;
        align-items: flex-end;
        justify-content: flex-end;
    }
}


@media screen and (max-width:768px) {
    .pageTop{
        display:none;
    }
    .fixedMenu{
        width:90%;
        bottom:9%;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
    }
    .drawerMenu {
        right:-100%;
        width: 100%;
    }
    .nowRank{
        display:none;
    }
    .button span{
        width: 100px;
        font-size: 1.2rem;
        line-height: 1.6;
        font-weight: bold;
    }
}

@media screen and (max-width:325px) {
    .nowRank{
        display:none;
    }
}


.breadList{
    color: #156ad1;
}

.breadList {
    margin: 0 .25rem;
    list-style-type: none;
    padding: 16px 8px;
    overflow: hidden;
    line-height: 2
}

.breadList li {
    display: inline;
    color: #156ad1;
    line-height: 1.4;
    padding-right: 5px
}

.breadList li:first-of-type {
    margin-left: 0
}

.breadList li+li:before {
    content: ">";
    position: relative;
    left: -.25rem;
    bottom: 0;
    font-size: 1rem;
    padding-right: 4px
}

.breadList li,
.breadList li a {
    color: #156ad1;
    font-size: 12px;
}