.jobs__match {
    margin: 0;
    /* color: #5db0c2; */
}

.jobs__search {
    text-align: center;
    margin-bottom: 20px;
    background: #ffffff;
    border-bottom: 1px dashed #ddd;
    border-top: 1px dashed #ddd;
    padding: 6px;
}

.js-target {
    display: none;
}

.js-target.js-selected {
    display: block;
}

.jobs label {
    display: inline;
}

.jobs input {
    display: none;
}

.jobs__check label .checkbox {
    position: relative;
    top: 3px;
    width: 14px;
    height: 14px;
    display: inline-block;
    margin-right: 5px;
    border: 1px solid #5db0c2;
}

.jobs__check label .checkbox:after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    bottom: 4px;
    right: 4px;
}

.jobs__check input[type=checkbox]:checked+label .checkbox:after {
    background: #5db0c2;
}

.jobs {
    border: 1px solid #efefef;
    background: #f9f9f9;
    padding: 30px;
    box-sizing: border-box;
    margin-bottom: 24px;
    font-size: 14px;
    letter-spacing: 0.1em;
}

.jobs__select {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    margin-bottom: 16px;
}

.jobs__check label {
    cursor: pointer;
}

.jobs__heading2 {
    color: #5db0c2;
    text-align: center;
    margin: 0 0 18px;
}

.jobs__list .jobs__heading2 {
    margin-top: 50px;
    font-size: 25px;
    color: #222222de;
}

.jobs__list .jobs__heading2:not(:first-of-type) {
    border-top: 1px dashed #ddd;
    padding-top: 30px;
}

.jobs__heading3 {
    margin: 6px 20px 6px 0;
    font-size: 16px;
    width: 60px;
}

@media screen and (max-width: 765px) {
    .jobs__list .jobs__heading2 {
        font-size: 20px;
    }

    .jobs__heading3 {
        margin: 0 20px 10px 0;
    }
}

.jobs__check {
    display: inline-block;
}

.jobs__check:not(:last-of-type) {
    margin-right: 20px;
    margin-bottom: 12px;
}

.jobs__release {
    text-align: center;
    color: #fff;
    background-color: #5db0c2;
    padding: 14px 20px;
    max-width: 300px;
    margin: 0 auto;
    appearance: none;
    outline: none;
    border: none;
    display: block;
}

.js-release {
    cursor: pointer;
}

.jobs__list-item {
    box-shadow: 0 3px 5px rgb(0 0 0 / 25%);
    padding: 20px;
    text-decoration: none;
    color: #5db0c2;
    font-size: 20px;
    font-weight: 700;
    transition: .2s;
    border-radius: 6px;
    position: relative;
    line-height: 1.3;
}

.jobs__list-item:hover,
.jobs__list-item:visited {
    color: #5db0c2;
}

.jobs__list-item:hover {
    box-shadow: 0 3px 12px rgb(0 0 0 / 25%);
}

.jobs__list-item:not(:last-of-type) {
    margin-bottom: 20px;
}

.jobs__tag-wrapper {
    margin-top: 2px;
    margin-bottom: 12px;
}

.jobs__tag {
    display: inline-block;
    font-size: 12px;
    padding: 2px 5px;
    color: #fff;
}

.jobs__tag:not(:last-of-type) {
    margin-right: 2px;
}

.jobs__tag--type {
    background: #50a68e;
}

.jobs__tag--area {
    background: #e8892a;
}

.jobs__tag--important {
    background: #fff;
    border: solid 1px #ec5454;
    color: #ec5454;
    padding: 1px 4px;
}

.jobs__description {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: #222;
    line-height: 1.75;
}

.jobs__cta {
    text-align: right;
    margin: 0;
    font-size: 16px;
}

.jobs__cta::after {
    content: "›";
    font-size: 22px;
    margin-left: 6px;
}

.jobs__empty {
    display: none;
    background: #ffdcda;
    color: #a1322c;
    padding: 10px;
    text-align: center;
    font-weight: 700;
}

.jobs__empty.show {
    display: block;
}

/* フォーム */
.jobs-forms .jobs__list-item-wrapper {
    display: flex;
    gap: 30px 20px;
    flex-wrap: wrap;
}

.jobs-forms .jobs__list-item {
    width: calc(50% - 10px);
    padding-bottom: 50px;
}

.jobs-forms .jobs__tag-wrapper,
.jobs-forms .jobs__list-item:not(:last-of-type) {
    margin-bottom: 0;
}

.jobs-forms .jobs__list-item::after {
    content: "";
}

.jobs-forms .jobs__cta {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: right;
    padding: 2px 20px 4px 0;
    border-top: 1px dashed #ddd;
/*    background: #f9f9f9;*/
    border-radius: 0 0 6px 6px;
}

@media screen and (max-width: 765px) {
    .jobs-forms .jobs__list-item-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .jobs-forms .jobs__list-item {
        width: 100%;
        font-size: 18px;
    }
    .jobs-forms .jobs__cta {
        font-size: 14px;
        padding: 0 20px 4px 0;
    }

}