@font-face {
    font-family: 'Noto Sans JP';
    src: local('NotoSansJP-Regular'), url('./fonts/NotoSansJP-Regular.otf') format('truetype');
}

@font-face {
    font-family: 'Noto Sans JP Bold';
    src: local('NotoSansJP-Bold'), url('./fonts/NotoSansJP-Bold.otf') format('truetype');
    font-weight: bold;
}

@font-face {
    font-family: 'Noto Sans JP Regular';
    src: local('NotoSansJP-Regular'), url('./fonts/NotoSansJP-Regular.otf') format('truetype');
}

@font-face {
    font-family: 'Roboto Bold';
    src: local('Roboto-Bold'), url('./fonts/Roboto-Bold.ttf') format('truetype');
}

html,
body {
    font-family: 'Noto Sans JP', Meiryo, メイリオ, Arial, Helvetica, sans-serif;
    color: #222222;
    margin: 0;
    padding: 0;
    font-size: 1rem;
    position: relative;
}
span,
p {
    color: #222222
}

.ff-noto {
    font-family: 'Noto Sans JP', Meiryo, メイリオ, Arial, Helvetica, sans-serif !important;
}

.ff-noto-bold {
    font-family: 'Noto Sans JP Bold', Meiryo, メイリオ, Arial, Helvetica, sans-serif !important;
}

.ff-roboto {
    font-family: 'Roboto', Meiryo, メイリオ, Arial, Helvetica, sans-serif !important;
}

.ff-roboto-bold {
    font-family: 'Roboto Bold', Meiryo, メイリオ, Arial, Helvetica, sans-serif !important;
}

button {
    font-family: 'Noto Sans JP Bold', Meiryo, メイリオ, Arial, Helvetica, sans-serif !important;
    min-height: 44px;
    font-size: 15px;
    outline: none;
    border: 2px solid #CCCCCC;
    border-radius: 8px;
    padding: 16px 18px 16px 16px;
    height: 56px;
    display: flex;
    align-items: center;
}

button:focus {
    outline: none;
    box-shadow: none;
}
.cursor-pointer {
    cursor: pointer;
}

.header-container {
    position: fixed;
    background: white;
    width: 100%;
    top: 0;
    z-index: 9999999;
 }

.nav-bar1-container {
    display: flex;
    padding: 13px 16px;
    justify-content: center;
    align-items: center;
    background-color: white;
}

.nav-bar1-container .branch-logo {
    width: 150px;
    height: 45px;
}

.nav-bar1-container .right {
    padding-right: 109px;
    position: absolute;
    right: 0;
}

.nav-bar2-container {
    display: flex;
    padding: 20px 0;
    justify-content: center;
    align-items: center;
    background-color: #FDF9F2;
}

.nav-bar2-container .nav-label{
    font-weight: bold;
    margin: 0;
    padding: 0 24px;
    cursor: pointer;
}

.nav-bar1-container .right .recruitment-user-button1,
.nav-bar1-container .right .recruitment-store-button1 {
    width: 80px;
    height: 20px;
    cursor: pointer;
}

.nav-bar1-container .recruitment-user-button-label1,
.nav-bar1-container .recruitment-store-button-label1 {
    font-size: 10px;
}

.menu-mobile {
    display: flex;
    flex-direction: column;
    height: 100vh;
    z-index: 99999999;
    position: fixed;
    background: white;
    width: 100%;
    top: 0;
    margin-top: 56px;
}
.menu-mobile .menu-item {
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid #CCCCCC;
}

.flex-justify-center {
    justify-content: center;
}

.menu-mobile .menu-item:first-child {
    border-top: 1px solid #CCCCCC;
}

.top-text {
    color: #2ba94e;
    font-family: "Noto Sans JP Bold", Meiryo, メイリオ, Arial, Helvetica, sans-serif;
    font-size: 8px;
    white-space: nowrap;
    padding-top: 5px;
}
.open-menu,
.close-menu {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    margin-top: 2px;
}

.close-menu {
    width: 32px;
}

.line-height-0 {
    line-height: 0;
}

@media screen and (max-width: 767px) {
    .d-mobile-none {
        display: none;
    }

    .nav-bar1-container {
        display: flex;
        padding: 13px 16px;
        justify-content: space-between;
        border-bottom: 1px solid #EFEFEF;
    }

    .nav-bar1-container .branch-logo {
        width: 100px;
        height: 30px;
    }

    .nav-bar1-container .right {
        padding-right: 16px;
    }
}

    

