@charset "utf-8";
/* ---------------------------------------------
求人一覧
--------------------------------------------- */
p, table th, table td, table td p {
    font-size: 1.5rem;
}

.recruit-list-page {
    font-size: 1.5rem;
    margin-bottom: 20px;
    width: 100%;
}

/* 検索
---------------------------------------------- */
.inner form {
    max-width: 1200px;
    width: 100%;
}
.lower_layer .search-condition-card {
    margin-bottom: 40px;
    padding: 10px 50px;
    background: #fff;
    box-shadow: 0px 3px 17px 0px rgba(219, 225, 240, 1);
}
.lower_layer .search-condition-inner {
    width: 100%;
}
.lower_layer .search-condition-top,
.lower_layer .search-condition-bottom {
    padding: 20px 0;
}
/* 検索 > 検索上部wrap */
.lower_layer .search-condition-top {
    border-bottom: 1px solid #DEDEDE;
}
.lower_layer .search-condition-bar {
    display: flex;
    gap: 20px;
}
/* 検索 > 検索上部wrap > 検索項目3つ */
.lower_layer .search-condition-field {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    gap: 10px;
}

.lower_layer .search-condition-field {
    width: 100%;
}
.lower_layer .search-condition-field .search-condition-group {
    display: flex;
    width: 100%;
    gap: 10px;
}

/* 検索 > 検索上部wrap > 検索ボタン */
.lower_layer .search-condition-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;    
    padding: 0 20px;
    color: #fff;
    cursor: pointer;
    min-width: 120px;
    font-size: 1.6rem;
    font-weight: bold;
    background: #0b4ea2;
    border-radius: 3px;
}
/* 検索 > 検索項目プルダウンwrap */
.filter-pill-tree {
    position: relative;
    width: 100%;
    display: grid;
    overflow: hidden;
}
/* 検索 > 検索項目プルダウン,入力欄（input type="text"） */
.lower_layer .filter-pill,
.lower_layer .freeword-pill {
    display: flex;
    align-items: center;
    /* min-height: 40px; */
    min-width: 170px;
    padding: 15px 20px;
    width: 100%;
    box-sizing: border-box;
    background: #EEF0F5;
    appearance: none;
    border: none;
    font-size: 1.5rem;
    font-family: inherit;
    line-height: 1.5;
    cursor: pointer;
}
/* 検索 > 検索項目プルダウン arrow */
.filter-pill-tree::before {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 10px;
    height: 7px;
    background: #5EA2EF;
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
    z-index: 2;
}
/* 検索項目プルダウン押下後に表示されるモーダル内のプルダウンからarrow非表示 */
.js-tree-select.filter-pill-tree::before {
    content: none;
}

.lower_layer .search-condition-top .search-condition-filters {
    width: 100%;
}
/* 検索 > 検索上部wrap > 項目wrap > 資格・雇用形態 */
.lower_layer .search-condition-top .search-condition-filters .filter_wrap {
    display: flex;
    gap: 10px;
    max-width: 60%;
    width: 100%;
}

/* 検索 > 検索下部wrap */
.lower_layer .search-condition-bottom {
    position: relative;
    display: grid;
    gap: 14px;
}
/* 検索 > 検索下部wrap > 直接応募求人・エージェント求人checkbox wrap,業種～フリーワードwrap */
.lower_layer .search-condition-bottom .search-condition-filters {
    display: flex;
    gap: 10px;
}
/* 検索 > 検索下部wrap > 項目wrap > 職種・給与・こだわり */
.lower_layer .search-condition-bottom .search-condition-filters .filter-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: 10px;
    max-width: 70%;
    width: 100%;
}
/* 検索 > 検索下部wrap > 項目wrap > 職種・給与・こだわりラベル */
.lower_layer .filter-pill-button__label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/* 検索 > 検索下部wrap > 項目wrap > 給与ラベル */
.lower_layer .filter-pill-tree--salary .filter-pill-button__label {
    max-width: 100%;
}
/* 検索 > 検索下部wrap > 項目wrap > フリーワード(input type="text") */
.lower_layer .search-condition-bottom .search-condition-filters .freeword-pill {
    max-width: calc(100% - 70%);/* 100% - (.filter-row max-width) */
    width: 100%;
}
.lower_layer .is-search-field-hidden {
    display: none;
}
/* 選択をすべてクリア */
.search-condition-clear {
    display: block;
    justify-self: end;
    color: #282f38;
    font-size: 1.3rem;
}
input[type="checkbox"] {
    appearance: auto;
    accent-color: auto;
}

.search-condition-filters {
    display: flex;
    gap: 10px;
}
.search-condition-bar {
    flex-wrap: wrap;
}
.checkbox_wrap {
    width: fit-content;
    align-self: center;
}
.lower_layer .search-condition-method {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #111;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}
.lower_layer .search-condition-method input {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #0b4ea2;
    appearance: auto;
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
    flex: 0 0 auto;
    opacity: 1;
}
.lower_layer .filter-pill-button[disabled] {
    cursor: default;
    opacity: 1;
}


/* 検索 > モーダル */
.lower_layer .filter-modal[hidden] {
    display: none;
}
.lower_layer .filter-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.lower_layer .filter-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(16, 24, 32, 0.55);
}
.lower_layer .filter-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(92vw, 920px);
    max-height: min(84vh, 760px);
    overflow: auto;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}
.lower_layer .filter-modal__header,
.lower_layer .filter-modal__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
}
.lower_layer .filter-modal__header {
    border-bottom: 1px solid #e6edf4;
}
.lower_layer .filter-modal__title {
    margin: 0;
    color: #111;
    font-size: 2rem;
    font-weight: 800;
}
.lower_layer .filter-modal__close,
.lower_layer .filter-modal__cancel {
    border: 0;
    background: #edf5fb;
    color: #0b4ea2;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
}
.lower_layer .filter-modal__close {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    font-size: 2rem;
    line-height: 1;
}
.lower_layer .filter-modal__body {
    padding: 20px;
}
.lower_layer .filter-modal__description {
    margin: 0 0 16px;
    color: #4e5d79;
    font-size: 1.4rem;
    line-height: 1.6;
}
.lower_layer .filter-modal__section+.filter-modal__section {
    margin-top: 18px;
}
.lower_layer .filter-modal__section[hidden] {
    display: none;
}
.lower_layer .filter-modal__section-title {
    margin: 0 0 10px;
    color: #111;
    font-size: 1.5rem;
    font-weight: 700;
}

/* 検索 > モーダル[職種・業種・資格] */
.lower_layer .filter-occupations {
    display: grid;
    gap: 10px;
}
.lower_layer .filter-occupations__inputs {
    display: none;
}
.lower_layer .filter-occupations__toolbar,
.lower_layer .filter-occupations__clear-row {
    display: flex;
    justify-content: flex-end;
}
.lower_layer .filter-occupations__clear-row {
    margin-top: 14px;
    padding-top: 14px;
}
.lower_layer .filter-occupations__clear {
    border: 0;
    background: transparent;
    color: #0b4ea2;
    cursor: pointer;
    font: inherit;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.lower_layer .filter-occupations__group {
    border: 1px solid #dce5ec;
    background: #fff;
}
.lower_layer .filter-occupations__group-header {
    display: flex;
    align-items: stretch;
    gap: 8px;
    padding: 8px;
    background: #fff;
}
.lower_layer .filter-occupations__group-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    flex: 1 1 auto;
    min-height: 46px;
    padding: 12px 16px;
    border: 0;
    background: #f5f7fa;
    color: #111;
    cursor: pointer;
    font: inherit;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: left;
}
.lower_layer .filter-occupations__group-select-all {
    flex: 0 0 auto;
    min-height: 46px;
    padding: 0 14px;
    border: 0;
    background: transparent;
    color: #0b4ea2;
    cursor: pointer;
    font: inherit;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    white-space: nowrap;
}
.lower_layer .filter-occupations__group-meta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    color: #0b4ea2;
}
.lower_layer .filter-occupations__group-count {
    display: none;
}
.lower_layer .filter-occupations__group-icon {
    color: #0b4ea2;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1;
}
.lower_layer .filter-occupations__group-body {
    padding: 8px 16px 14px;
}
.lower_layer .filter-occupations__options {
    display: grid;
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 0 16px;
}
.lower_layer .filter-occupations__option {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 8px 0;
    border-bottom: 1px solid #e6edf4;
    color: #111;
    cursor: pointer;
}
.lower_layer .filter-occupations__checkbox {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #0b4ea2;
    cursor: pointer;
    flex: 0 0 auto;
}
.lower_layer .filter-occupations__option-label {
    font-size: 1.4rem;
    line-height: 1.5;
}

/* 検索 > モーダル[給与] */
.lower_layer .salary-modal {
    display: grid;
    gap: 16px;
}
.lower_layer .salary-modal__type-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.lower_layer .salary-modal__type-button {
    min-height: 44px;
    border: 1px solid #cfdbe7;
    border-radius: 10px;
    background: #f4f9fd;
    color: #0b4ea2;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
}
.lower_layer .salary-modal__type-button.is-active {
    border-color: #0b4ea2;
    background: #e4f0ff;
}
.lower_layer .salary-modal__select-wrap[hidden] {
    display: none;
}
.lower_layer .salary-modal__select-wrap {
    display: grid;
    gap: 8px;
}
.lower_layer .salary-modal__select-label {
    margin: 0;
    color: #324055;
    font-size: 1.3rem;
    font-weight: 700;
}
.lower_layer .salary-modal__select {
    width: 100%;
}

/* 検索 > モーダル > 閉じる */
.lower_layer .filter-modal__footer {
    border-top: 1px solid #e6edf4;
    justify-content: flex-end;
}

/* 検索 > モーダル[こだわり] */
.lower_layer .filter-preferences {
    display: grid;
    gap: 14px;
}
.lower_layer .filter-preferences__inputs {
    display: none;
}
.lower_layer .filter-preferences__toolbar {
    display: flex;
    justify-content: flex-end;
}
.lower_layer .filter-preferences__clear {
    border: 0;
    background: transparent;
    color: #0b4ea2;
    cursor: pointer;
    font: inherit;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.lower_layer .filter-preferences__group {
    border: 1px solid #dce5ec;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}
.lower_layer .filter-preferences__group-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 18px;
    border: 0;
    background: #f5f7fa;
    color: #111;
    cursor: pointer;
    font: inherit;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: left;
}
.lower_layer .filter-preferences__group-icon {
    color: #0b4ea2;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1;
}
.lower_layer .filter-preferences__group-body {
    padding: 8px 18px 14px;
}
.lower_layer .filter-preferences__options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 16px;
}
.lower_layer .filter-preferences__option {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    border-bottom: 1px solid #e6edf4;
    cursor: pointer;
}
.lower_layer .filter-preferences__checkbox {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #ef7f1a;
    cursor: pointer;
    flex: 0 0 auto;
}
.lower_layer .filter-preferences__option-label {
    color: #111;
    font-size: 1.5rem;
    line-height: 1.5;
}

/* モーダルopen */
body.is-filter-modal-open {
    overflow: hidden;
}

/* 検索結果一覧
---------------------------------------------- */
.two-column {
    display: flex;
    justify-content: space-between;
}


/* 検索結果件数,ページネーション */
.results-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}
.results-summary--bottom {
    justify-content: flex-end;
}
/* ページネーション */
.pager {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    border: 1px solid #e5ebf3;
}
.pager_item {
    display: block;
    border-right: 1px solid #e5ebf3;
}
.pager_item:last-child {
    border-right: none;
}
.pager_item a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 40px;
    padding: 0 10px;
    background: #fff;
    font-size: 1.3rem;
    text-decoration: none;
    color: #5a8ecc;
}
.pager_item button,
.pager_item > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 40px;
    padding: 0 10px;
    background: #fff;
    font-size: 1.3rem;
    color: #5a8ecc;
    border: 0;
}
.pager_item button {
    width: 100%;
    cursor: pointer;
}
.pager_item form {
    display: block;
}
.pager_item.current a,
.pager_item.current > span,
.pager_item a:hover,
.pager_item button:hover {
    background: #e5ebf3;
}

.pager-wrapper {
    text-align: center;
}

/* 求人詳細カード
---------------------------------------------- */
.job-card {
    background: #fff;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 3px 17px #dbe1f0;
}
/* ステータスアイコン,求人number */
.status-tags-wrap {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}
.status-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.status-tag, .job-no {
    display: block;
}
.status-tag {
    display: inline-block;
    padding: 2px 6px;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.6;
}
.status-tag.new {
    background: #E55F56;
}
.status-tag.staff {
    background: #5EA2EF;
}
.status-tag.tyokusetsu {
    background: #2EB782;
}
.status-tag.agent {
    background: #F0AF35;
}
.job-no {
    color: #7C7F85;
    font-size: 1.2rem;
    letter-spacing: 0.14em;
    white-space: nowrap;
}
/* 会社名 */
#container.lower_layer article p.job-company {
    font-size: 1.6rem;
    font-weight: bold;
}

#container.lower_layer article p.job-company.job-company--ad {
    font-size: 2.1rem;
}

/* 求人タイトル（キャッチコピー） */
.job-title-link {
    display: block;
    font-size: 2rem;
    color: #282f38;
    line-height: 1.6;
    padding: 15px 0;
    margin-bottom: 30px;
    font-weight: 600;
    border-top: solid 3px;
    border-image: linear-gradient(to right, #5fa2ef, #d02d9c);
    border-image-slice: 1;
    position: relative;
    font-weight: bold;
    margin-bottom: 2rem;
    text-decoration: none;
}
.job-title-link::after {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    background: #e1e1e1;
    bottom: 0;
    left: 0;
}

.job-title-link:hover {
    color: #D12D9C;
}
/* 求人詳細カード > 特徴 */
.hashtag_list {
    margin-bottom: 10px;
}
/* 求人詳細カード > 職種・給与・勤務地 */
.job-summary-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.job-summary-layout.is-no-thumb {
    grid-template-columns: minmax(0, 1fr);
}
.job-summary-content {
    min-width: 0;
}
.job-summary-row {
    margin-bottom: 10px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 5px;
}
.job-summary-row:last-of-type {
    margin-bottom: 0;
}
.job-summary-value {
    min-width: 0;
    line-height: 1.6;
}
.job-summary-icon {
    position: relative;
    display: block;
    width: 25px;
    height: 25px;
    flex: 0 0 auto;
}
.job-summary-icon::before {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5A8ECC;
    font-size: 1.4rem;
    font-weight: 700;
}
.jobtype::before { content: url(../img/occupation.png); }
.salary::before { content: url(../img/icon_money.png); }
.worklocation::before { content: url(../img/icon_location.png); }
.job-summary-thumb {
    margin-top: 2px;
}
.job-summary-thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

/* 求人詳細カード > 仕事内容 */
table.job-meta-table th {
    background-color: #e4ecf6;
}
/* アピールポイント */
.job-appeal {
    padding: 20px;
    background-color: #f3f4f7;
}
#container.lower_layer article p.job-appeal-title {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #5A8ECC;
    padding-left: 15px;
    position: relative;
}
#container.lower_layer article p.job-appeal-title::before {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    background: #5a8ecc;
    position: absolute;
    -webkit-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    top: 50%;
    left: 0;
}
.job-appeal-text:last-of-type {
    margin-bottom: 0;
}
/* 求人詳細カード > CTA(気になるリストへ保存・問合せボタン) */
.cta-row {
    text-align: center;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.cta-row .cta-button {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    text-decoration: none;
    max-width: 300px;
    width: 100%;
    padding: 20px 30px;
    font-weight: 700;
    border: solid 2px #00255c;
    box-sizing: border-box;
    background: #00255c;
    color: #fff;
    position: relative;
}
.cta-row .cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    right: 12px;
    bottom: 0;
    margin: auto;
    vertical-align: middle;
    width: 6px;
    height: 6px;
    border-top: 3px solid #ffffff;
    border-right: 3px solid #ffffff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.cta-row .cta-button.save {
    background: #fff;
    color: #D12D9C;
}
.cta-row .cta-button.save::before {
    border-top: 3px solid #D12D9C;
    border-right: 3px solid #D12D9C;
}
.cta-row .cta-button:hover {
    background: #fff;
    color: #00255c;
    border: solid 2px #00255c;
}
.cta-row .cta-button:hover::before {
    border-top: 3px solid #00255c;
    border-right: 3px solid #00255c;
}
.cta-row .cta-button.save:hover {
    color: #fff;
}
.cta-row .cta-button.save:hover::before {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

/* 検索条件
---------------------------------------------- */
.recruit-side {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    font-family: inherit;
}
.recruit-side .current-condition-wrap {
    padding: 0;
    background: #f3f3f3;
}
.recruit-side .current-condition {
    padding: 0 0 24px;
    background: #fff;
}
.recruit-side .heading {
    margin: 0;
    padding: 22px;
    background: #acacac;
    color: #fff;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.4px;
}
.recruit-side .condition-row {
    margin: 0;
    padding: 18px 30px 0;
    font-size: 1.4rem;
}
.recruit-side .condition-row:last-of-type {
    margin-bottom: 0;
}
.recruit-side .condition-label {
    display: block;
    margin: 0 0 14px;
    padding: 14px 16px;
    background: #f5f5f5;
    font-weight: 700;
    font-size: 1.7rem;
    line-height: 1.25;
}
.recruit-side .condition-value-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #0b2f7a;
    line-height: 1.4;
}
.recruit-side .condition-tree-list {
    gap: 18px;
}
.recruit-side .condition-tree-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.recruit-side .condition-tree-children {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.recruit-side .condition-link-form {
    margin: 0;
}
.recruit-side .condition-link {
    position: relative;
    display: inline-flex;
    align-items: flex-start;
    min-height: 22px;
    padding: 0 0 0 28px;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease;
    text-align: left;
}
.recruit-side .condition-link:hover,
.recruit-side .condition-link:focus-visible {
    color: #5478b8;
}
.recruit-side .condition-link::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 0.3em;
    width: 10px;
    height: 6px;
    border-left: 4px solid #f47b20;
    border-bottom: 4px solid #f47b20;
    transform: rotate(-45deg);
}
.recruit-side .condition-link.is-detail-link {
    margin-left: 34px;
}
.recruit-side .condition-row.is-detail-row {
    padding-top: 6px;
}
.recruit-side .condition-row.is-detail-row .condition-label {
    display: none;
}
.recruit-side .condition-empty {
    display: block;
    padding: 0 2px 4px;
    color: #0b2f7a;
    font-weight: 500;
}
.recruit-side .save-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    padding: 15px 10px;
    border: 2px solid #282f38;
    border-radius: 8px;
    background: #fff;
    color: #282f38;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.8px;
}
.recruit-side .save-button .icon {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    opacity: 0.18;
}
.recruit-side .change-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    padding: 15px 10px;
    margin: 20px auto 0;
    border: 2px solid #0b2f7a;
    border-radius: 8px;
    background: #fff;
    color: #0b2f7a;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    transition: 0.2s;
}
.recruit-side .change-button:hover {
    background: #0b2f7a;
    color: #fff;
}
.recruit-side .plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 1px solid #d5d8df;
    border-radius: 4px;
    color: #0b2f7a;
    font-size: 2.4rem;
    line-height: 1;
    font-weight: 400;
    background: #fff;
}

.recruit-list-page {
    padding-top: 10px;
}
.recruit-list-page .page-title {
    margin: 0 0 28px;
    color: #111;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 0.4px;
    line-height: 1.2;
}
.recruit-list-page .results-block {
    margin-top: 22px;
}
.recruit-list-page .results-title {
    margin: 0 0 22px;
    color: #111;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.4px;
}

.recruit-list-page .tags-toggle-button {
    background: none;
    border: none;
    padding: 0;
    appearance: none;
    font-weight: 500;
    color: #0c2d76;
    margin-left: auto;
    margin-bottom: 12px;
    cursor: pointer;
}
.recruit-list-page .chip-area .chip-list {
    max-height: none;
    overflow: visible;
}
.recruit-list-page .chip-area.is-collapsed .chip-list {
    max-height: 50px;
    overflow: hidden;
}
.recruit-list-page .chip-area.is-expanded .chip-list {
    max-height: none;
    overflow: visible;
}
.recruit-list-page .tags-toggle-sign {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: 1px solid #d7d7d7;
    border-radius: 5px;
    background: #fff;
    color: #0b4ea2;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    box-sizing: border-box;
}
.recruit-list-page .tags-toggle-label {
    font-size: 1.2rem;
}
.recruit-list-page .results-empty {
    background: #fffbf9;
    color: #ed392c;
    padding: 30px;
    border: solid 2px;
    font-weight: 500;
}


@media (max-width: 1080px) {
    .lower_layer .search-condition-card {
        padding: 10px 20px;
    }
    .lower_layer .search-condition-top .search-condition-filters {
        max-width: 100%;
    }
}
@media (max-width: 980px) {
    .recruit-list-page .filter-row {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    .recruit-list-page .results-summary {
        flex-direction: column;
        align-items: flex-start;
    }
    .lower_layer .filter-pill,
    .lower_layer .freeword-pill {
        padding: 15px;
    }
    .lower_layer .filter-preferences__options {
        grid-template-columns: 1fr;
    }
    .lower_layer .filter-occupations__options {
        grid-template-columns: 1fr;
    }
    .lower_layer .filter-occupations__group-header {
        flex-direction: column;
        gap: 0;
        padding: 8px;
    }
    .lower_layer .filter-occupations__group-select-all {
        align-self: flex-end;
        min-height: auto;
        padding: 8px 8px 4px;
    }
    .recruit-list-page .job-save-btn {
        min-width: 0;
        width: 100%;
    }
}
@media screen and (max-width: 780px) {
    .recruit-list-page, p, table th, table td, table td p {
        font-size: 1.4rem;
    }
    
    .lower_layer .search-condition-card {
        padding: 15px;
    }
    .lower_layer .search-condition-top .search-condition-filters:last-of-type {
        flex-direction: column;
    }
    .lower_layer .search-condition-top .search-condition-filters .filter_wrap {
        max-width: 100%;
    }
    .lower_layer .search-condition-bottom .search-condition-filters {
        flex-wrap: wrap;
    }
    .lower_layer .search-condition-bottom .search-condition-filters .filter-row {
        max-width: 100%;
        grid-auto-flow: row;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .lower_layer .search-condition-bottom .search-condition-filters .freeword-pill {
        max-width: 100%;
    }

    /* 検索 > 検索上部wrap > 検索項目3つ */
    .lower_layer .search-condition-field {
        display: flex;
        flex-wrap: wrap;
    }
    /* 検索 > 検索項目プルダウン,入力欄（input type="text"） */
    .lower_layer .filter-pill,
    .lower_layer .freeword-pill {
        font-size: 1.3rem;
    }

    .lower_layer .search-condition-bar {
        flex-wrap: wrap;
        justify-content: center;
    }
    .lower_layer .search-condition-submit {
        padding: 10px 20px;
    }

    /* 検索 > モーダル[職種・業種・資格] */
    .lower_layer .filter-occupations__group-toggle {
        padding: 12px;
    }
    .lower_layer .filter-occupations__group-toggle span {
        line-height: 1.4;
    }

    .two-column {
        flex-direction: column-reverse;
    }
    .recruit-side {
        max-width: 100%;
        margin: 0 auto 40px;
    }
    .recruit-side .heading {
        padding: 18px 14px 16px;
        font-size: 1.6rem;
    }
    .recruit-side .condition-row {
        padding: 16px 15px 0;
    }
    .recruit-side .condition-label {
        font-size: 1.6rem;
        padding: 12px 14px;
    }
    .recruit-side .condition-tree-group {
        gap: 8px;
    }
    .recruit-side .condition-link::before {
        left: 2px;
        top: 0.3em;
        width: 10px;
        height: 6px;
        border-left: 2px solid #f47b20;
        border-bottom: 2px solid #f47b20;
    }
    .recruit-side .condition-link.is-detail-link {
        margin-left: 22px;
    }



    .job-card {
        padding: 25px 15px;
        margin-bottom: 30px;
    }
    .status-tags-wrap {
        margin-bottom: 12px;
    }
    .status-tag {
        font-size: 1rem;
    }
    .job-title-link {
        font-size: 17px;
        margin-bottom: 15px;
    }
    .job-summary-layout {
        gap: 14px;
        grid-template-columns: 1fr;
    }
    .job-summary-content {
        order: 2;
    }
    .job-summary-thumb {
        order: 1;
        max-width: 380px;
        margin: 0 auto;
    }
    .job-summary-row {
        margin-bottom: 8px;
    }
    .job-appeal {
        padding: 15px;
    }
    #container.lower_layer article p.job-appeal-title {
        margin-bottom: 5px;
    }
    .cta-row {
        gap: 10px;
        margin-top: 20px;
    }
    .cta-row .cta-button {
        font-size: 1.5rem;
        padding: 16px 20px;
    }

}
