@charset "UTF-8";

/* recruit
---------------------------------------------------*/
#recruit .pop {
    text-align: center;
    margin-bottom: 40px;
}
#recruit .recruit-wrap {
    width: 96%;
    max-width: 690px;
    margin: 0 auto;
}
.recruit-list {
    display: flex;
    justify-content: space-between;
    border: 1px solid var(--secondary-color);
}
.recruit-list + .recruit-list {
    margin-top: 10px;
}
.recruit-list dt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 40%;
    font-size: var(--font-size-m);
    color: var(--white-color);
    background-color: var(--main-color);
    clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
    padding: 1em 3em 1em 1em;
}
.recruit-list dt span {
    font-size: var(--font-size-n);
}
.recruit-list dd {
    width: 60%;
    line-height: 1.6em;
    letter-spacing: 0.08em;
    padding: 1em;
}
ul.photo-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin: 40px auto;
}
ul.photo-list li {
    flex: 1;
}
#recruit .links {
    margin-top: 40px;
}
#recruit .links .btn + .btn {
    margin-top: 20px;
}
#recruit .links .btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--main-color);
    border-radius: 20px;
    padding: 10px;
}
#recruit .links .btn a .icon {
    text-align: center;
    width: 80px;
    margin-right: 20px;
}
#recruit .links .btn a .icon img {
    width: 100%;
}
#recruit .links .btn a .txt {
    color: var(--white-color);
    font-size: var(--font-size-x);
    font-weight: bold;
}
#recruit .links .btn a .txt .s {
    display: block;
    text-align: center;
    font-size: var(--font-size-l);
    margin-top: 0.5em;
}
#recruit .links .btn.line a {
    background-color: #06C755;
}
#recruit .links .btn.line a:hover {
    background-color: #08f368;
}

/* Below 768px */
@media screen and (max-width: 768px) {
    #recruit .pop {
        margin-bottom: 6.25vw;
    }
    #recruit .recruit-wrap {
        width: 100%;
        max-width: none;
    }
    .recruit-list {
        display: block;
    }
    .recruit-list + .recruit-list {
        margin-top: 3.125vw;
    }
    .recruit-list dt {
        width: 100%;
        clip-path: none;
        padding: 1em;
    }
    .recruit-list dd {
        width: 100%;
        padding: 1em;
    }
    ul.photo-list {
        gap: 1.5625vw;
        margin: 6.25vw auto;
    }
    ul.photo-list li {
        flex: 1;
    }
    #recruit .links {
        margin-top: 6.25vw;
    }
    #recruit .links .btn + .btn {
        margin-top: 3.125vw;
    }
    #recruit .links .btn a {
        border-radius: 3.125vw;
        padding: 3.125vw;
    }
    #recruit .links .btn a .icon {
        width: 12.5vw;
        margin-right: 6.25vw;
    }
}