@charset "utf-8";
/*workplace*/
#workplace{
    background:#FEFEF2;
}

#workplace > *{
    box-sizing: border-box;
}
.workplaceWrapper{
    width: 100%;
    max-width:1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.contentsArea{
    margin:2rem 0;
    padding:2rem 2rem 0 2rem;
    box-sizing: border-box;
}

.contentsArea h3{
    text-align: center;
    color:#004684;
    font-size:24px;
    line-height:1.2;
    margin-bottom:1rem;
}

.contentsPageText{
    color:#004684;
    font-size:13px;
    line-height:1.6;
    margin-bottom:1rem;
}

.contentsPageText span{
    font-weight:bold;
}

.workplaceMapBlock{
    background: #E4EEEC;
    min-height:600px;
    margin-bottom:2rem;
}

.memoBlock{
    background:#ffffff;
    border:1px solid #C89213;
    padding:2rem;
    margin:2rem 0;
}

.memoBlock h4{
    color:#C89213;
    font-size:24px;
    text-align: center;
    margin: 0;
    padding:0 0 2rem 0;
    border-bottom:1px solid #B9B5B5;
}

.memoList{
    display:flex;
    justify-content: space-between;
}

.memo{
    width: 30%;
}

.memoTitle{
    color:#C89213;
    font-weight:bold;
    margin:2rem 0 1rem 0;
    word-break: auto-phrase;
    line-height:1.4;
}

.memoText{
    font-size:12px;
    line-height:1.8;
}

@media screen and (max-width:768px){
    .memoList{
        display:flex;
        justify-content: space-between;
        flex-wrap:wrap;
    }

    .memo{
        width: 100%;
        border-bottom:1px solid #B9B5B5;
    }
}

/*guide*/
.guideList {
    display: flex;
    justify-content: center;
    flex-wrap:wrap;
    list-style: none;
    padding: 0;
    margin: 20px 0;
    box-sizing:border-box;
    gap:16px 10px;
}

.guideList::-webkit-scrollbar{
    display:none;
}

.guideList button{
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    background-color: #ffffff;
    color: #0666bb;
    border:2px solid #0666bb;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.guideList button:hover {
    background-color: #51b7fa;
    color: #ffffff;
}

.guideList button:focus {
    outline: none;
    box-shadow: 0 0 5px 2px rgba(0, 123, 255, 0.5);
}

.guideList button.active {
    background-color: #0666bb;
    color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.guideBlock{
    width: 100%; 
    min-height:70vh;
    margin: 0 auto; 
    overflow:scroll;
    position:relative;
}

.guideBlock.hand {
    cursor: grabbing;
}

.mapContainer {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

#workplace .mapImage{
    position: absolute;
    top: 0;
    left: 0;
    width: 2000px;
}

@media screen and (max-width:768px) {
    #workplace .mapImage{
        width: 1500px;
    }
    .guideList button{
        font-size: 14px;
    }
}


/* 虫眼鏡 */
.mapContainer {cursor: url('../../../img/page/job/glass.png') 10 10, auto;}

.jobArea{
    position:absolute;
    top:auto;
    left:auto;
}
.jobArea:hover{cursor: url('../../../img/page/job/glass_hit.png') 10 10, auto;}

.tooltip{
    background-color: #ffffff;
    border-radius:8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    color: #ccc;
    display: none;
    font-size: 1.2rem;
    padding:1.5rem 1rem;
    position: absolute;
    text-align: center;
    z-index:701;
    width: 100%;
    max-width: 220px;
    opacity:0.95;
    word-break: break-all;
}

.tooltip:before{
    content:"";
    display: block;
    border-style: solid;
    border-right: 9px solid transparent;
    border-left: 9px solid transparent;
    border-bottom: 15px solid #ffffff;
    border-top: 0;
    width: 0;
    height: 0;
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.tooltip a{
    display:block;
    margin-top: 5px;
    color:#ffffff;
    background:#0666bb;
    border-radius:8px;
    text-decoration: none;
    font-size: 1.2rem;
    padding:8px 10px;
    line-height:1.4;
    word-break: auto-phrase;
}

.tooltipHead{
    color:#0666bb;
    font-size:1.2rem;
    font-weight:bold;
    line-height:1.4;
    word-break: auto-phrase;
}

.tooltipLead{
    padding: 1rem 0;
    font-size: 1.2rem;
    line-height: 1.4;
    word-break: auto-phrase;
}