@charset "UTF-8";

* {
    box-sizing: border-box;
}

/* ----------------------------------------------------------
common
---------------------------------------------------------- */
.pc{
    display: block;
}
.sp{
    display: none;
}
:root {
    /* 色指定 */
    --basic: #4d5868;
    --brown: #71665c;
    --red: #a22324;
    --blue: #1b4476;
    --gray: #888;
    --navy: #0e233c;
    --lightgray: #d4d4d4;
    --lightgray2: #eee;
}
.flex{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.inner_1200{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.inner_1000{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ----------------------------------------------------------
header
---------------------------------------------------------- */
header{
    line-height: inherit;
}
.tabsp_hdr{
    display: none;
    font-family: 'Noto Sans JP',sans-serif;
}
#globalMenu{
    position: relative;
    z-index: 10000;
    font-family: 'Noto Sans JP',sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0.06em;
    background: #f5f5f5;
    padding-bottom: 5px;
}
/* ヘッダー上段 */
.hdr_top{
    position: fixed;
    width: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #f5f5f5;
    padding: 10px 0;
    z-index: 1;
}
.hdr_top_inner{
    align-items: center;
    flex-wrap: nowrap;
}
.hdr_top .hdr_ttl{
    width: 24%;
    max-width: 250px;
}
.hdr_top .hdr_ttl a:hover{
    opacity: 0.7;
}
.hdr_top .hdr_top_right{
    align-items: center;
    flex-wrap: nowrap;
}
.hdr_top .acc_menu_Box .acc_List li{
    position: relative;
    padding: 5px 30px 5px 15px;
    text-align: center;
    cursor: pointer;
}
.hdr_top .acc_menu_Box .acc_List li:not(:last-child):after{
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background: #ccc;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.hdr_top .acc_menu_Box .acc_List li:last-child{
    margin-right: 5px;
}
.hdr_top .acc_menu_Box .acc_List li .acc_ttl{
    position: relative;
    color: var(--basic);
    font-size: 1.4rem;
    line-height: 1;
}
.hdr_top .acc_menu_Box .acc_List li .acc_ttl::after{
    position: absolute;
    content: "\e313";
    font-family:  "Material Symbols Outlined";
    font-size: 2rem;
    font-weight: 200;
    color: #ccc;
    top: 50%;
    right: -24px;
    transform: translateY(-50%);
}
.hdr_top .acc_menu_Box .acc_List li .acc_inner{
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    background: #fff;
    box-shadow: 0 0 5px #888;
    padding: 5px 10px;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: 0.3s;
}
.hdr_top .acc_menu_Box .acc_List li .acc_inner .acc_link{
    position: relative;
    display: block;
    width: 100%;
    font-size: 1.4rem;
    color: var(--basic);
    padding: 12px 0 12px 8px;
    border-bottom: 1px solid var(--lightgray2);
}
.hdr_top .acc_menu_Box .acc_List li .acc_inner .acc_link:first-child{
    /* padding-top: 5px; */
}
.hdr_top .acc_menu_Box .acc_List li .acc_inner .acc_link:last-child{
    /* padding-bottom: 5px; */
    border-bottom: none;
}
.hdr_top .acc_menu_Box .acc_List li .acc_inner .acc_link::after{
    position: absolute;
    content: "\e5e1";
    font-family: "Material Symbols Outlined";
    font-size: 1.2rem;
    font-weight: 200;
    color: #ccc;
    top: 50%;
    right: 2px;
    transform: translateY(-50%);
}
.hdr_top .acc_menu_Box .acc_List li .acc_inner .acc_link:hover{
    background: #eee;
}
.hdr_top .acc_menu_Box .acc_List li:hover{
    background: #ddd;
}
.hdr_top .acc_menu_Box .acc_List li:hover .acc_inner{
    opacity: 1;
    visibility: visible;
}
.hdr_top .cta_Box .hdr_cta{
    display: block;
    width: auto;
    padding: 8px 10px;
    text-align: center;
    border: 1px solid;
    border-radius: 3px;
    color: #fff;
    font-size: 1.6rem;
    letter-spacing: -0.02em;
    line-height: 1;
}
.hdr_top .cta_Box .hdr_cta:not(:last-child){
    margin-right: 5px;
}
.hdr_top .cta_Box .hdr_cta.search{
    background: var(--blue);
    border-color: var(--blue);
}
.hdr_top .cta_Box .hdr_cta.join{
    background: var(--red);
    border-color: var(--red);
}
.hdr_top .cta_Box .hdr_cta.login{
    background: #fff;
    color: var(--basic);
    border-color: var(--lightgray);
}
.hdr_top .cta_Box .hdr_cta span.material-symbols-outlined{
    font-size: 2rem;
    color: #fff;
    vertical-align: sub;
    padding-right: 3px;
}
.hdr_top .cta_Box .hdr_cta.login span.material-symbols-outlined{
    color: var(--basic);
}
.hdr_top .cta_Box .hdr_cta.search:hover{
    color: var(--blue);
    background: #fff;
}
.hdr_top .cta_Box .hdr_cta.join:hover{
    color: var(--red);
    background: #fff;
}
.hdr_top .cta_Box .hdr_cta.login:hover{
    background: #ddd;
}
.hdr_top .cta_Box .hdr_cta:hover span.material-symbols-outlined{
    color: inherit;
}
/* ヘッダー下段 */
.hdr_bottom{
    margin-top: 58px;
}
.hdr_bottom .job-category-Btn{
    width: 90%;
    border: 1px solid var(--blue);
    border-radius: 3px;
}
.hdr_bottom .job-category-Btn a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 10%;
    background: #fff;
    color: var(--blue);
    font-size: 1.4rem;
    line-height: 1.2;
    text-align: center;
    padding: 5px;
}
.hdr_bottom .job-category-Btn a:hover{
    background: #ced8e4;
    opacity: 1 !important;
}
.hdr_bottom .job-category-Btn a:not(:last-child){
    border-right: 1px solid var(--blue);
}
.hdr_bottom .job-category-Btn a:first-child{
    border-radius: 3px 0 0 3px;
}
.hdr_bottom .job-category-Btn a:last-child{
    border-radius: 0 3px 3px 0;
    font-size: 1.2rem;
}
.hdr_bottom .job-category-Btn a .icon img{
    display: block;
    width: auto;
    max-height: 30px;
    padding-bottom: 5px;
}
.hdr_bottom .job-category-Btn a:last-child .icon img{
    max-height: 22px;
}
.hdr_bottom .corporate_Btn{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 9.5%;
    border: 1px solid var(--lightgray);
    background: #fff;
    color: var(--basic);
    font-size: 1.4rem;
    line-height: 1.2;
    border-radius: 0 3px 3px 0;
    padding: 10px;
    text-align: center;
}
.hdr_bottom .corporate_Btn::after{
    position: absolute;
    content: "\e5e1";
    font-family: "Material Symbols Outlined";
    font-size: 1.4rem;
    font-weight: 200;
    color: #ccc;
    top: 50%;
    right: -1px;
    transform: translateY(-50%);
}
.hdr_bottom .corporate_Btn:hover{
    background: #ddd;
}

/* ==============================================================
PC(~1230px)
============================================================== */
@media only screen and (max-width: 1230px) {

    /* ----------------------------
    header
    ------------------------------- */
    .hdr_top .cta_Box .hdr_cta {
        display: flex;
        flex-direction: column;
        font-size: 1.2rem;
        letter-spacing: 0.02em;
        padding: 8px 5px;
    }
    .hdr_top .cta_Box .hdr_cta span.material-symbols-outlined {
        font-size: 2.5rem;
    }
    .hdr_top .acc_menu_Box .acc_List li .acc_ttl{
        font-size: 1.2rem;
    }
    .hdr_bottom {
        margin-top: 75px;
    }

}

/* ==============================================================
TAB(~1024px)
============================================================== */
@media only screen and (max-width: 1024px) {

    /* ----------------------------
    header
    ------------------------------- */
    header {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        background: #f5f5f5;
        padding: 10px 15px!important;
        z-index: 99;
    }
    .tabsp_hdr{
        display: block;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    header .hdr_ttl.tabsp,
    .hdr_top .hdr_ttl{
        display: block;
        width: 50%;
        max-width: 200px;
        margin-bottom: 10px;
    }
    header .hdr_ttl.tabsp{
        margin: 0;
    }
    .tabsp_hdr_right .hdr_cta.join{
        display: block;
        width: auto;
        margin-right: 10px;
        padding: 6px 8px;
        text-align: center;
        border: 1px solid;
        background: var(--red);
        border-color: var(--red);
        border-radius: 3px;
        color: #fff;
        font-size: 1.4rem;
        letter-spacing: -0.02em;
        line-height: 1;
    }
    .tabsp_hdr_right .hdr_cta.join span.material-symbols-outlined{
        font-size: 2rem;
        vertical-align: sub;
        margin-right: 3px;
    }
    #menu {
        position: relative;
        display: block;
        width: 30px;
        height: 30px;
        cursor: pointer;
        z-index: 200;
    }
    #menu span{
        position: absolute;
        display: block;
        background: var(--basic);
        width: 30px;
        height: 1px;
        left: 50%;
        transform: translate(-50%);
        transition: 0.3s;
    }
    #menu span:nth-child(1){
        top: 5px;
    }
    #menu span:nth-child(2){
        top: 15px;
    }
    #menu span:nth-child(3){
        top: 25px;
    }
    /* ナビ開いてる時のボタン */
    #menu.active span:nth-child(1) {
        top : 15px;
        -webkit-transform: translateX(-50%) rotate(-45deg);
        -moz-transform   : translateX(-50%) rotate(-45deg);
        transform        : translateX(-50%) rotate(-45deg);
    }
    #menu.active span:nth-child(2){
        display: none;
    }
    #menu.active span:nth-child(3) {
        top: 15px;
        -webkit-transform: translateX(-50%) rotate(45deg);
        -moz-transform   : translateX(-50%) rotate(45deg);
        transform        : translateX(-50%) rotate(45deg);
    }
    header #globalMenu{
        position: fixed;
        top: 0;
        right: -100vw;
        width: 100%;
        height: 100vh;
        background: #f5f5f5;
        text-align: center;
        transition: .4s all;
        overscroll-behavior-y: contain;
        overflow-y: scroll;
        padding: 20px 0;
        z-index: 100;
    }
    header #globalMenu.active{
        right: 0;
    }
    .hdr_top{
        position: relative;
        top: unset;
        left: unset;
        transform: none;
    }
    .hdr_top_inner{
        flex-direction: column;
        align-items: flex-start;
    }
    .hdr_top .hdr_top_right{
        width: 100%;
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    /* アコーディオン */
    .hdr_top .acc_menu_Box .acc_List{
        flex-direction: column;
    }
    .hdr_top .acc_menu_Box{
        width: 100%;
    }
    .hdr_top .acc_menu_Box .acc_List li{
        padding: 20px 0 0;
        border-bottom: 1px solid #ccc;
        text-align: left;
    }
    .hdr_top .acc_menu_Box .acc_List li:last-child{
        margin-right: 0;
    }
    .hdr_top .acc_menu_Box .acc_List li:hover{
        background: none;
    }
    .hdr_top .acc_menu_Box .acc_List li:not(:last-child):after{
        content: none;
    }
    .hdr_top .acc_menu_Box .acc_List li .acc_ttl {
        font-size: 1.6rem;
        padding: 0 5px 20px;
    }
    .hdr_top .acc_menu_Box .acc_List li .acc_ttl::after{
        content: "\e145";
        font-size: 3rem;
        top: calc(50% - 10px);
        right: 0;
    }
    .hdr_top .acc_menu_Box .acc_List li .acc_ttl.active{
        border-bottom: 1px solid #ccc;
    }
    .hdr_top .acc_menu_Box .acc_List li .acc_ttl.active::after{
        content: "\e15b";
    }
    .hdr_top .acc_menu_Box .acc_List li .acc_inner{
        display: none;
        opacity: unset;
        visibility: unset;
        position: relative;
        width: 100%;
        top: unset;
        left: unset;
        transform: none;
        box-shadow: none;
        padding: 0;
        transition: 0s;
    }
    .hdr_top .acc_menu_Box .acc_List li .acc_inner .acc_link{
        padding: 15px;
    }
    .hdr_top .acc_menu_Box .acc_List li .acc_inner .acc_link::after {
        font-size: 1.6rem;
        right: 5px;
    }

    /* CTA */
    .hdr_top .cta_Box{
        width: 100%;
    }
    .hdr_top .cta_Box .hdr_cta{
        flex-direction: row;
        justify-content: center;
        align-items: center;
        font-size: 1.6rem;
        letter-spacing: 0.05em;
    }
    .hdr_top .cta_Box .hdr_cta.search{
        order: 3;
        width: 100%;
        margin-top: 7px;
    }
    .hdr_top .cta_Box .hdr_cta.join{
        order: 1;
        width: 49%;
    }
    .hdr_top .cta_Box .hdr_cta.login{
        order: 2;
        width: 49%;
    }
    .hdr_top .cta_Box .hdr_cta:not(:last-child){
        margin-right: 0;
    }

    .hdr_bottom{
        margin-top: 10px;
        flex-direction: column;
    }
    .hdr_bottom .job-category-Btn {
        width: 100%;
    }
    .hdr_bottom .job-category-Btn a {
        position: relative;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        width: 50%;
        border: none;
        font-size: 1.6rem;
        padding: 12px 15px;
        border-bottom: 1px solid var(--blue);
    }
    .hdr_bottom .job-category-Btn a::after{
        position: absolute;
        content: "\e5cc";
        font-family: "Material Symbols Outlined";
        font-size: 2rem;
        color: #ccc;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
    }
    .hdr_bottom .job-category-Btn a:first-child {
        border-radius: 0;
    }
    .hdr_bottom .job-category-Btn a:nth-child(2){
        border-radius: 0 3px 0 0;
    }
    .hdr_bottom .job-category-Btn a:nth-last-child(-n+2){
        border-radius: 0 0 0 3px;
        border-bottom: none;
    }
    .hdr_bottom .job-category-Btn a:last-child{
        border-radius: 0 0 3px 0;
    }
    .hdr_bottom .job-category-Btn a:nth-child(even){
        border-right: none;
    }
    .hdr_bottom .job-category-Btn a .icon img {
        max-height: 24px;
        padding-bottom: 0;
        padding-right: 8px;
    }
    .hdr_bottom .corporate_Btn {
        width: 100%;
        font-size: 1.6rem;
        border-radius: 3px;
        padding: 12px;
        margin-top: 15px;
    }
    .hdr_bottom .corporate_Btn::after{
        right: 3px;
    }

    /* ----------------------------------------------------------
    コンテンツ・サイドバー
    ---------------------------------------------------------- */
    main{
        width: 100%;
        max-width: none;
    }
    aside{
        width: 100%;
        max-width: none;
        margin-top: 50px;
    }
}

/* ==============================================================
SP(~800px)
============================================================== */
@media only screen and (max-width: 800px) {
    .pc {
        display: none !important;
    }
    .sp {
        display: block !important;
    }

}