@charset "utf-8";
/* CSS Document */
@import url("recruit_sp.css");
@import url("recruit_pc.css");
@import url("recruit_tb.css");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
.white {
  background-color: #fff;
}

/* fixed_menu */
.fixed_menu {
  display: none;
}
@media (max-width: 1000px) {
    .fixed_menu {
        width: 100%;
        padding: 10px 11px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 1;
        background: rgba(34, 34, 34, 0.7);
    }
}
.fixed_menu .entry,
.fixed_menu .casual {
    width: 49.3%;
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    background: #fff;
    border: 2px solid;
    border-radius: 5px;
}
.fixed_menu .entry {
    border-color: #ff8908;
    box-shadow: 1.5px 1.5px 0px 0px #ff8908;
    color: #ff8908;
}
.fixed_menu .entry::before {
    content: "";
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.fixed_menu .casual {
    border-color: #007DF3;
    box-shadow: 1.5px 1.5px 0px 0px #007DF3;
    color: #007DF3;
}
.fixed_menu .casual::before {
    content: "";
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
