@charset "utf-8";

.jobHeader > *{
    box-sizing:border-box;
    list-style: none;
    margin: 0;
    padding: 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, 0.8);
    display:flex;
    justify-content: space-between;
    padding:8px 12px 4px 8px;
    position: fixed;
    bottom:2%;
    right:12%;
    width: 60%;
    border-radius:8px;
    align-items:center;
    z-index:999;
}

.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: 100vh; /* 念のためvh */
    background-color: #00898E;
    color: #fff;
    transition: right 0.3s ease;
    z-index: 999;
    padding-top: 30px;
}

.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:auto; /* 高さが足りている時は隠す */
    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: 15px 20px;
}

.drawerMenu .drawerMenuList li a {
    color: #fff;
    text-decoration: none;
    display:inline-block;
    font-size:1.4rem;
}

.drawerMenu .drawerMenuList li a:hover {
    background-color: #e4dddd;
    transition:0.2s;
}

.drawerMenu .drawerMenuList li ul{
    list-style:none;
    margin: 0;
    padding: 0;
}

@media screen and (max-width:768px) {
    .fixedMenu{
        width: 80%;
        /* bottom: 7%; */
        bottom: calc(var(--cmnMenuHt) + 16px); /* SPの下の固定バーの最低高さ + 少々 */
        right: 17%;
    }
    .drawerMenu {
        right:-100%;
        width: 100%;
}
}

.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;
}