@charset "utf-8";

#explore > *{box-sizing: border-box;}
#explore img{max-width: 100%;}
#explore a{text-decoration: none;}
#explore ul,li{list-style:none;}

/*explore*/
#explore{
    background:#FEFEF2;
}

.exploreWrapper{
    width: 100%;
    max-width:1200px;
    margin: 0 auto;
}

.contentsArea{
    margin:2rem 0;
}

.contentsArea h3{
    text-align: center;
    color:#025457;
    font-size:2rem;
    line-height:1.6;
    line-break: strict;
    padding:1rem;
}

.exploreText{
    text-align: center;
    font-size:1.2rem;
    line-height:1.4;
    color:#025457;
}
/*exploreTabList ここから*/
.tabWrap {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding:2rem;
    margin:2rem auto;
    background: #D9ECEC;
}
.tabLabel{
    color:#025457;
    background:#ffffff;
    border:1px solid #025457;
    border-radius:50px;
    margin:0 8px 1rem 8px;
    padding:0.5rem 1.5rem;
    order: -1;
    font-size:1.2rem;
    line-height:1.4;
    font-weight:bold;
    white-space: nowrap;
}

.tabLabel:hover{
    cursor:pointer;
    opacity:0.7;
}
.tabContent {
    width: 100%;
    display: none;
    background:#D9ECEC;
    padding:2rem;
}
.tabSwitch:checked+.tabLabel {
    background:#025457;
    color:#ffffff;
}
.tabSwitch:checked+.tabLabel+.tabContent {
    display: block;
}
.tabSwitch {
    display: none;
}
/*exploreTabList ここまで*/

.exploreLinkList{
    display:flex;
    flex-wrap:wrap;
    justify-content:flex-start;
    gap:20px;
}

.exploreLink{
    width:30%;
}

.exploreLink a{
    background:#F3FFFC;
    display: block;
    color:#00898E;
    font-size:1.1rem;
    font-weight:bold;
    padding:1.5rem 3rem 1.5rem 1rem;
    border:1px solid #008E84;
    border-radius:8px;
    box-shadow:0 5px 0 #025457;
    position:relative;
    max-width: 300px;
}

.exploreLink a:before{
    content:"";
    display: block;
    background:url("/new/_app/_webroot/img/page/job/search_icon.png") no-repeat;
    background-size:cover;
    width:24px;
    height:24px;
    position:absolute;
    top: 50%;
    right:5%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

/* columnBlock */
.columnBlock{
    max-width:960px;
    margin:2rem auto 0 auto;
    background:#ffffff;
    border:1px solid #C89213;
    padding:2rem;
}

.columnBlock h3{
    color:#C89213;
    padding:0 0 1rem 0;
    margin:0 0 2rem 0;
    border-bottom:1px solid #B9B5B5;
}

.columnQuestion{
    color:#C89213;
    text-align: center;
    margin:0 0 0 0;
}

.columnBox{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    margin: 0 0 2rem 0;
}

.columnBoxLeft{
    width: 30%;
}

.columnBoxRight{
    width:65%;
}

.columnBoxTitle{
    margin: 0;
    color:#C89213;
    font-weight:bold;
}

.columnText{
    font-size:14px;
    line-height:1.8;
    margin-top:1rem;
}
/* ポップアップ */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popupContent {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
}

.popupClose {
    position: absolute;
    top: -40px;
    right: 0;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
}

#popupDynamicContent{
    height: 500px;
    overflow-y: scroll;
}

#popupDynamicContent h4{
    margin: 0;
    color:#025457;
}

.jobCategory{
    margin:2rem 0;
    font-size:1.8rem;
    font-weight:bold;
    color:#008E84;
}

.popupJobLink{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-around;
    gap:24px;
}

.popupJobLink li a{
    display: block;
    width: clamp(160px, 48vw, 360px);
    background:#0666BB;
    box-shadow:0 3px 0 #004684;
    border-radius:4px;
    color:#ffffff;
    padding:1.5rem 9rem 1.5rem 1.5rem;
    font-size:1.2rem;
    font-weight: bold;
    line-height:1.4;
    text-align-last: left;
    position:relative;
}

.popupJobLink li a:after{
    content:"CHECK!";
    display: block;
    position:absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background:#E92D2D;
    padding:0.5rem 1rem;
    box-shadow:0 4px 0 #810F0F;
    border-radius:50px;
}

@media screen and (max-width:768px) {
    .tabWrap {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        padding:2rem;
        margin:2rem auto;
        background: #D9ECEC;
        gap:1.5rem;
    }
    .tabLabel{
        color:#025457;
        background:#ffffff;
        border:1px solid #025457;
        border-radius:50px;
        margin:0 0;
        padding:1rem 1.5rem;
        order: -1;
        font-size:1.2rem;
        font-weight:bold;
        white-space: wrap;
    }

    .exploreLink{
        width:100%;
    }

    .exploreLink a{
        font-size:1.2rem;
        font-weight:bold;
        padding:1.5rem 3rem 1.5rem 1rem;
        border:1px solid #008E84;
        border-radius:8px;
        box-shadow:0 5px 0 #025457;
        position:relative;
        max-width: 300px;
    }

    .columnBox{
        display:flex;
        flex-wrap:wrap;
        justify-content:space-between;
        margin-bottom:2rem;
    }

    .columnBox:last-of-type{
        margin-bottom:0;
    }

    .columnBoxLeft{
        width: 100%;
        margin-bottom:1rem;
    }

    .columnBoxRight{
        width: 100%;
    }

    .columnText{
        font-size:13px;
    }

    .popupJobLink li a{
        display: block;
        width: clamp(280px, 48vw, 400px);
        font-size:14px;
    }

    .popupContent {
        background: #fff;
        padding: 2rem 1rem;
        border-radius: 8px;
        max-width: 500px;
        width: 94%;
        text-align: center;
        position: relative;
    }
}