@charset "UTF-8";

/*===============================

共通（ページ内）

================================*/


/*===============================

recruit

================================*/

#recruit {
    position: relative;
    width: 100%;
    padding: 80px 0;
}

@media screen and (max-width:960px) {
    #recruit {
        margin-top: 50px;
    }
}

#recruit:after {
    content: "";
    clear: both;
    display: block;
}

#recruit .title {
    text-align: center;
    margin-bottom: 50px;
}


/*===============================

求人職種

================================*/

#type {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom: 80px;
}

#type:after {
    content: "";
    clear: both;
    display: block;
}

#type ul.cont {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 90%;
    margin: 0 auto;
}

#type .cont li {
    width: 46%;
    text-align: center;
}

@media screen and (max-width:960px) {
    #type .cont li {
        width: 100%;
    }
}

#type .cont li span {
    position: relative;
    display: block;
    color: #FFF;
    font-size: 1.2rem;
    padding: 10px;
    width: 100%;
    margin-bottom: 30px;
    background-color: #19612e;
    border-radius: 100px;

}

#type .cont li span:hover {
  opacity: 0.6;
}

#type .cont li span::after {
    position: absolute;
    content: '';
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    display: inline-block;
    width: 12px;
    height: 12px;
    top: 50%;
    right: 30px;
    transform: translateY(-50%) rotate(45deg);
}


#recruit .container {
    width: 90%;
    margin: 0 auto 100px;
    max-width: 1080px;
    background-color: #FFF;
}


#recruit .container table {
    width: 100%;
    text-align: left;
    border-collapse: collapse;
}

@media screen and (max-width:960px) {
    #recruit .container table {
        font-size: 1.2rem;
    }
}

#recruit .container table th {
    width: 30%;
    padding: 10px;
    background: #f6f6f6;
    border: 1px solid #d8d8d8;
    text-align: center;
}

#recruit .container table td {
    width: 70%;
    padding: 10px;
    border: 1px solid #d8d8d8;
}





/*===============================

フッター

================================*/


#footer-section {
    position: relative;
    background-color: #333;
    width: 100%;
    color: #fff;
    padding-top: 80px;
    padding-bottom: 10px;
}

#footer-section a {
    color: #b1b9c5;
}

.footer {
    width: 90%;
    position: relative;

    margin: 0 auto;
}

.footer .account {
    width: 100%;
    font-size: 90%;
    margin: 0 0 50px;
}

@media screen and (min-width: 960px) {
    .footer .account {
        width: 42%;
        margin: 0 4% 0 0;
        float: left;
    }
}

.footer .account .logo img {
    width: 150px;
    margin-bottom: 30px;
}

.footer .account .image {
    position: relative;
    width: 50%;
    padding-top: 50%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    z-index: 0;

}

.footer .account .image img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    object-fit: cover;
    z-index: 0;
}


/* アコーディオンメニュー */

.footer .category {
    width: 100%;
}

/* Acordeon styles */
.footer .tab {
    position: relative;
    margin-bottom: 1px;
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid #3e4246;
}

@media screen and (min-width: 960px) {
    .footer .tab {
        width: 23%;
        margin: 0 1%;
        border-bottom: none;
        float: left;
    }
}

.footer input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.footer label {
    position: relative;
    display: block;
    /* アコーディオン タブ背景色 */
    cursor: pointer;
    line-height: 72px;
    padding-left: 10px;
}

.footer .tab-content {
    max-height: 0;
    overflow: hidden;
    font-size: 90%;
    /* タブ内背景色 */
    -webkit-transition: max-height .20s;
    -o-transition: max-height .20s;
    transition: max-height .20s;
}

@media screen and (min-width: 960px) {
    .footer .tab-content {
        max-height: 1000px;
    }
}

.footer .tab-content p {
    margin: 15px 10px;
    color: #000;
    /* タブ内文字色 */
}

/* :checked */
.footer input:checked~.tab-content {
    max-height: 1000px;
}

/* Icon */
.footer label::after {
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    text-align: center;
    -webkit-transition: all .20s;
    -o-transition: all .20s;
    transition: all .20s;
    line-height: 72px;
    font-size: 3.0rem;
}

@media screen and (min-width: 960px) {
    .footer label::after {
        display: none;
    }
}

.footer input[type=checkbox]+label::after {
    content: "+";
}

.footer input[type=checkbox]:checked+label::after {
    transform: rotate(45deg);
}

.footer .border {
    clear: both;
    margin-bottom: 30px;
}

@media screen and (min-width: 960px) {
    .footer .border {
        padding-top: 50px;
        border-bottom: 1px solid #3e4246;
        margin-bottom: 10px;
    }
}

/* リスト */

.footer ul.list {
    color: #FFF;
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
}

.footer ul.list li {
    padding: 10px;
    margin: 10px 20px;
    font-size: 1.3rem;
}

@media screen and (max-width: 960px) {
    .footer ul.list li {
        display: block;
        width: 100%;
        padding: 3px;
        margin: 5px 10px;
    }
}

.footer .copyright {
    text-align: right;
    font-size: 80%;
}

@media screen and (max-width: 960px) {
    .footer .copyright {
        text-align: center;
    }
}