@charset "UTF-8";

:root {
    --main-color: #FE985D;
    --sub-color: #105412;
    --odd-bg-color: #FFFEEC;
    --circle2-color: #247727;
    --circle3-color: #3ea541;
    --circle4-color: #53be57;
    --footer-bg-color: #7E6253;
}

html {
    font-size: 100%;
}

body {
    font-family: 'Yu Mincho';
}

a {
    text-decoration: none;
}

.el_lv1heading {
    font-size: 3rem;
}

.el_lv2heading {
    font-size: 2.5rem;
    font-weight: bold;
}

.el_underBar_lv2heading {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(transparent 1.1em, var(--main-color) 0, var(--main-color) calc(1.1em + 8px), transparent 0);
}

ul {
    list-style: none;
}

.el_beforeIcon {
    font-size: 2rem;
    font-weight: bold;
}

.el_beforeIcon::before {
    display: inline-block;
    margin-right: .3em;
    font-family: 'Font Awesome 5 Free';
    font-weight: bold;
}

.el_beforeIcon.el_beforeIcon__company::before {
    content: '\f6bb';
    color: var(--main-color);
}

.el_beforeIcon.el_beforeIcon__companyWhite::before {
    content: '\f6bb';
    color: #fff;
}

.el_afterBtn {
    display: inline-block;
    width: 300px;
    max-width: 100%;
    padding: 20px 10px;
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
    background-color: var(--main-color);
    border: 2px solid var(--main-color);
    color: #fff;
    position: relative;
}

.el_afterBtn:focus,
.el_afterBtn:hover {
    background-color: #fff;
    border-color: currentColor;

    color: var(--main-color);
}

.el_afterBtn_chevRight::after {
    content: '';
    width: 16px;
    height: 16px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg) translateY(-70%);
    position: absolute;
    top: 50%;
    right: 13%;
}

.el_afterBtn_chevRight:focus::after,
.el_afterBtn_chevRight:hover::after {
    border-top: 2px solid var(--main-color);
    border-right: 2px solid var(--main-color);
}

.hp_sp_br {
    display: none;
}

.hp_txtCenter {
    text-align: center;
}

/* header
-----------------------------------*/
.ly_header {
    width: 100%;
}

.ly_header a {
    color: #000;
}

.ly_header_inner {
    padding: 10px 4.1666%;
}

.bl_headerCont {
    display: flex;
    justify-content: space-between;
}

.ly_headerNav {
    padding-top: 10px;
}

.bl_headerNav > .el_beforeIcon {
    display: none;
}

.bl_headerNav_inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bl_headerNav_link {
    display: inline-block;
    padding-right: 26px;
    padding-left: 26px;
    font-size: 1.125rem;
    font-weight: bold;
    border: none;
}

.bl_headerNav_link:hover {
    opacity: .7;
}

.bl_headerNav_link.is_active {
    border-bottom: 3px solid var(--main-color);
}

/* main
----------------------------*/
.ly_job_main {
    background: url(../images/job.jpeg) no-repeat center top / cover;
    padding: 160px 0;
}

.ly_job_container {
    width: 70%;
    margin: 0 auto;
    background-color: #fff;
    border: 1px solid #000;
    padding: 48px;
}

/* requirement
----------------------------------*/
.bl_requirement {
    margin-bottom: 120px;
}

.bl_requirement_cont {
    text-align: center;
    margin-bottom: 48px;
}

.bl_requirement_ttl {
    margin-bottom: 24px;
}

.bl_requirement_tbl {
    width: 90%;
    margin: 0 auto;
}

.bl_requirement_tbl tr:nth-of-type(2n-1) {
    background-color: var(--odd-bg-color);
}

.bl_requirement_tbl th {
    width: 20%;
    padding: 24px;
    font-weight: bold;
}

.bl_requirement_tbl td {
    padding: 24px;
}

/* timeLine
--------------------------------*/
.bl_timeLine_ttl {
    text-align: center;
    margin-bottom: 24px;
}

.bl_timeLine_cont {
    width: 100%;
    padding: 48px;
}

.bl_timeLine_item {
    display: flex;
}

.bl_timeLine_item_ttl {
    width: 30%;
    padding: 2rem;
    text-align: center;
}

.bl_timeLine_item_txt {
    width: 70%;
    padding: 2rem 0 2rem 4rem;
    border-left: 4px solid var(--main-color);
    position: relative;
}

.bl_timeLine_item_txt::before {
    display: block;
    width: 3rem;
    height: 3rem;
    background: var(--main-color);
    text-align: center;
    padding: .5rem .3rem;
    position: absolute;
    top: 1.5rem;
    left: -1.75rem;
    font-family: 'Font Awesome 5 Free';
    color: #fff;
    font-size: 1.75rem;
    font-weight: 900;
}

.bl_timeLine_item_txt_file::before {
    content: '\f56e';
}

.bl_timeLine_item_txt__chat::before {
    content: '\f086';
}

.bl_timeLine_item_txt__lastChat::before {
    content: '\f086';
}

.bl_timeLine_item_txt__hands::before {
    content: '\f2b5';
}

/* footer
-------------------------------*/
.bl_footer {
    width: 100%;
    height: 320px;
    background-color: var(--footer-bg-color);
}

.bl_footer a {
    color: #fff;
}

.bl_footer_inner {
    text-align: center;
    position: relative;
    top: 50%;
    transform: translateY(-60%);
}

.bl_footer_menu {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}

.bl_footer_menu_link {
    display: inline-block;
    padding-right: 26px;
    padding-left: 26px;
}

.bl_footer_menu_link:hover {
    opacity: .7;
}

@media screen and (max-width: 1000px) {
    .hp_sp_br {
        display: block;
    }
}

@media screen and (max-width: 800px) {
    .el_lv2heading {
        font-size: 2rem;
    }

    /* ナビゲーションをハンバーガーメニューに変更 */
    .bl_hamburger {
        display: block;
        width: 70px;
        height: 70px;
        background-color: var(--main-color);
        border: none;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 10;
    }
    
    .bl_hamburger.is_active .el_hamburgerLine {
        transform: rotate(45deg);
    }
    
    .bl_hamburger.is_active .el_hamburgerLine::before {
        top: 0;
        transform: rotate(-90deg);
    }
    
    .bl_hamburger.is_active .el_hamburgerLine::after {
        top: 0;
    }
    
    .el_hamburgerLine {
        display: block;
        height: 2px;
        position: absolute;
        top: 50%;
        left: 20%;
        width: 46px;
        background-color: #fff;
        transition: 0.4s;
    }
    
    .el_hamburgerLine:before,
    .el_hamburgerLine:after {
        content: '';
        display: block;
        height: 100%;
        width: 100%;
        position: absolute;
        background-color: #fff;
        transition: inherit;
    }
    
    .el_hamburgerLine:before {
        top: -14px;
    }
    
    .el_hamburgerLine:after {
        top: 14px;
    }

    .bl_headerNav {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9;
        height: 100vh;
        width: 100vw;
        visibility: hidden;
        background-color: var(--main-color);
        padding: 10px 4.1666%;
    }
    
    .bl_headerNav.is_active {
        visibility: visible;
    }

    .bl_headerNav > .el_beforeIcon {
        display: inline-block;
    }

    .bl_headerNav a {
        color: #fff;
    }

    .bl_headerNav_inner {
        flex-direction: column;
    }

    .bl_headerNav_link {
        padding: 16px 0;
    }

    .bl_requirement th{
        display: block;
        width: 100%;
        background-color: var(--odd-bg-color);;
        text-align: left;
    }

    .bl_requirement td{
        display: block;
        width: 100%;
    }

    .bl_requirement_tbl tr:nth-of-type(2n-1) {
        background-color: #fff;
    }

    .bl_timeLine_cont {
        padding: 48px;
    }

    .bl_timeLine_item {
        display: list-item;
    }

    .bl_timeLine_item_ttl {
        width: 100%;
        padding: 0;
        text-align: left;
    }

    .bl_timeLine_item_txt {
        width: 100%;
        padding: 1rem 0 2rem;
        border: none;
    }

    .bl_timeLine_item_txt::before {
        display: none;
        border: none;
    }
}

@media screen and (max-width: 600px) {
    .el_lv1heading {
        font-size: 2.5rem;
    }

    .el_underBar_lv2heading {
        font-size: 2rem;
    }

    .ly_job_container {
        padding: 48px 24px;
    }

    .bl_requirement_tbl {
        width: 100%;
    }

    .bl_timeLine_cont {
        padding: 48px 24px;
    }

    .bl_footer_inner {
        transform: translateY(-50%);
    }

    .bl_footer_menu {
        flex-direction: column;
        margin-top: 24px;
    }

    .bl_footer_menu_link {
        padding: 0 0 16px;
    }
}





