/* 求人一覧ページ専用CSS - jobs-list.css
   トップページと統一: オレンジ + ネイビー + クリーム */

/* 検索バー */
.search-bar {
    position: relative;
    z-index: 40;
    background: var(--lp-cream, #fffaf4);
    border-bottom: 1px solid var(--lp-border-cream, #f2e3d1);
    padding: 32px 16px;
    box-shadow: 0 2px 4px rgba(45, 22, 0, 0.06);
}

.search-bar-inner {
    max-width: 100%;
}

.search-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--lp-navy-2, #050b4e);
    margin: 0 0 8px 0;
}

.search-subtitle {
    font-size: 14px;
    color: var(--lp-text, #363d49);
    margin: 0 0 20px 0;
    font-weight: 500;
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.search-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input-icon {
    position: absolute;
    left: 16px;
    width: 20px;
    height: 20px;
    color: var(--lp-orange-2, #ff6a00);
    stroke: currentColor;
    pointer-events: none;
    z-index: 1;
}

.search-input {
    width: 100%;
    height: 52px;
    padding: 0 16px 0 48px;
    border: 2px solid var(--lp-border-cream, #f2e3d1);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    background: #fff;
    transition: all 0.2s ease;
    font-family: 'Noto Sans JP', sans-serif;
}

.search-input:focus {
    outline: none;
    border-color: var(--lp-orange-2, #ff6a00);
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.18);
}

.search-input::placeholder {
    color: #b9a98f;
}

.search-button {
    width: 100%;
    height: 52px;
    background: linear-gradient(90deg, #ff6a00 0%, #ff981a 100%);
    color: white;
    border: none;
    border-radius: 999px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 6px 14px rgba(255, 106, 0, 0.22);
}

.search-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 106, 0, 0.32);
    opacity: 1;
}

.search-button svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.search-button-text {
    transition: all 0.3s ease;
}

.search-bar.shrink .search-button {
    height: 44px;
}

/* メイン */
.jobs-main {
    background: white;
}
.jobs-container {
    min-height: 50vh;
}

.jobs-container {
    padding: 24px 16px;
}

/* フィルター */
.jobs-filter {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    margin-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.jobs-filter::-webkit-scrollbar {
    display: none;
}

.filter-chip {
    flex-shrink: 0;
    padding: 8px 16px;
    border: 1px solid var(--lp-border-cream, #f2e3d1);
    border-radius: 999px;
    background: #fff;
    font-size: 14px;
    font-weight: 700;
    color: var(--lp-navy-2, #050b4e);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.filter-chip:hover {
    border-color: var(--lp-orange-2, #ff6a00);
    background: var(--lp-orange-light, #ffede0);
    color: var(--lp-orange-2, #ff6a00);
}

.filter-chip.active {
    border-color: var(--lp-orange-2, #ff6a00);
    background: var(--lp-orange-2, #ff6a00);
    color: #fff;
    box-shadow: 0 4px 10px rgba(255, 106, 0, 0.22);
}

/* ページタイトル */
.jobs-page-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--lp-navy-2, #050b4e);
    margin: 0 0 12px 0;
    padding: 0;
}

/* 結果件数 */
.jobs-result-count {
    font-size: 14px;
    color: var(--lp-text, #363d49);
    margin-bottom: 20px;
    font-weight: 500;
}

.count-number {
    font-weight: 900;
    color: var(--lp-orange-2, #ff6a00);
    font-size: 20px;
}

.search-tag {
    display: inline-flex;
    align-items: center;
    background: var(--lp-orange-light, #ffede0);
    color: var(--lp-orange-2, #ff6a00);
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 12px;
    margin-right: 6px;
}

.search-clear {
    display: inline-block;
    margin-left: 8px;
    color: var(--lp-orange-2, #ff6a00);
    text-decoration: underline;
    font-size: 13px;
    font-weight: 700;
}

/* 求人リスト */
.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

/* 求人カード */
.job-card {
    overflow: hidden;
    border: 1px solid var(--lp-border-cream, #f2e3d1);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 14px rgba(45, 22, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.job-card:hover {
    box-shadow: 0 18px 28px rgba(45, 22, 0, 0.14);
    transform: translateY(-4px);
}

.job-card-top {
    display: flex;
    gap: 12px;
    padding: 16px;
}

.job-card-image {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    background: var(--lp-cream, #fffaf4);
    box-shadow: 0 4px 8px rgba(45, 22, 0, 0.08);
}

.job-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.job-card-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.job-card-category {
    background: var(--lp-orange-light, #ffede0);
    color: var(--lp-orange-2, #ff6a00);
    width: fit-content;
    margin-bottom: 8px;
    font-size: 12px;
    border: 0;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
}

.job-card-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 900;
    color: var(--lp-navy-2, #050b4e);
    margin: 0 0 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}

/* キャッチフレーズ */
.job-card-catch {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--lp-text, #363d49);
    margin: 0 0 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.job-card-company {
    font-size: 12px;
    color: var(--lp-text, #363d49);
    margin: 0 0 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

/* 店舗住所 */
.job-card-address {
    font-size: 12px;
    font-weight: 400;
    color: #6b7280;
    margin: 0 0 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.job-card-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.job-card-detail {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--lp-text, #363d49);
}

.job-card-detail svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    stroke: var(--lp-orange-2, #ff6a00);
}

.job-card-detail-salary {
    font-weight: 700;
    color: var(--lp-navy-2, #050b4e);
}

.job-card-bottom {
    padding: 0 16px 16px;
}

.job-card-score-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--lp-border-cream, #f2e3d1);
}

.job-card-score {
    font-size: 12px;
}

.job-card-score-label {
    color: var(--lp-orange-2, #ff6a00);
    font-weight: 700;
}

.job-card-score-value {
    font-weight: 900;
    margin-left: 4px;
    color: var(--lp-navy-2, #050b4e);
}

.job-card-button {
    width: 100%;
    height: 48px;
    background: linear-gradient(90deg, #ff6a00 0%, #ff981a 100%);
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    font-weight: 900;
    border: none;
    border-radius: 999px;
    box-shadow: 0 6px 12px rgba(255, 106, 0, 0.22);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.job-card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(255, 106, 0, 0.32);
    opacity: 1;
}

/* もっと見るボタン */
.jobs-load-more {
    width: 100%;
    height: 56px;
    border: 1px solid var(--lp-border-cream, #f2e3d1);
    background: #fff;
    color: var(--lp-navy-2, #050b4e);
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: 16px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(45, 22, 0, 0.06);
}

.jobs-load-more:hover {
    background: var(--lp-orange-light, #ffede0);
    border-color: var(--lp-orange-2, #ff6a00);
    color: var(--lp-orange-2, #ff6a00);
}

/* 求人なし状態 */
.jobs-empty {
    background: var(--lp-cream, #fffaf4);
    border: 1px solid var(--lp-border-cream, #f2e3d1);
    border-radius: 16px;
    padding: 48px 24px;
    text-align: center;
    color: var(--lp-text, #363d49);
}

.jobs-empty p {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    color: var(--lp-navy-2, #050b4e);
}

.job-card-detail span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
}

.job-card-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}


/**詳細ページ用**/
/* メイン画像 */
.job-hero-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: var(--lp-cream, #fffaf4);
}

.job-hero-image img,
.job-hero-image video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* 画像・動画スライダー（求人詳細ヒーロー領域） */
.detail-slider {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: var(--lp-cream, #fffaf4);
}

.detail-slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
    /* 縦スクロールはページに渡し、水平ジェスチャーのみ自前のスワイプ処理に */
    touch-action: pan-y;
}

.detail-slider-item {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
}

.detail-slider-item img,
.detail-slider-item video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.detail-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--lp-navy-2, #050b4e);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.detail-slider-btn:hover {
    background: #fff;
}

.detail-slider-btn-prev { left: 12px; }
.detail-slider-btn-next { right: 12px; }

.detail-slider-indicators {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 2;
}

.detail-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    transition: background 0.2s;
}

.detail-slider-dot.active {
    background: var(--lp-orange-2, #ff6a00);
}

/* 戻るナビゲーション */
.nav-back {
    padding: 12px 16px;
    background: var(--lp-cream, #fffaf4);
    border-bottom: 1px solid var(--lp-border-cream, #f2e3d1);
}

.nav-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--lp-orange-2, #ff6a00);
    text-decoration: none;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 700;
    transition: opacity 0.2s ease;
    padding: 6px 12px;
}

.nav-back-link:hover {
    opacity: 0.7;
    color: var(--lp-orange-2, #ff6a00);
}

.nav-back-link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* パンくずリスト */
.breadcrumb {
    padding: 10px 16px;
    background: white;
}

.breadcrumb-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px;
    line-height: 1.7;
    color: var(--lp-text, #363d49);
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
}

.breadcrumb-item:not(:first-child)::before {
    content: "/";
    margin: 0 8px;
    color: #b0b0b0;
}

.breadcrumb-item a {
    color: var(--lp-orange-2, #ff6a00);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-current {
    color: var(--lp-text, #363d49);
    font-weight: 700;
}

/* タイトルセクション */
.job-title-section {
    padding: 24px 16px;
    border-bottom: 1px solid var(--lp-border-cream, #f2e3d1);
    background: white;
}

.job-company-name {
    font-size: 13px;
    color: var(--lp-orange-2, #ff6a00);
    margin-bottom: 6px;
    font-weight: 900;
}

.job-company-name .detail-company-link {
    color: var(--lp-orange-2, #ff6a00);
    text-decoration: none;
}

.job-company-name .detail-company-link:hover {
    text-decoration: underline;
}

.job-title-main {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--lp-navy-2, #050b4e);
    margin: 0 0 6px 0;
    line-height: 1.45;
}

/* キャッチフレーズ（h1の下のサブタイトル） */
.job-title-catch {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--lp-text, #363d49);
    margin: 0 0 14px 0;
    line-height: 1.6;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.job-tag {
    background: var(--lp-orange-light, #ffede0);
    color: var(--lp-orange-2, #ff6a00);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

/* 詳細情報 */
.job-details {
    padding: 24px 16px;
    border-bottom: 1px solid var(--lp-border-cream, #f2e3d1);
    background: white;
}

.job-detail-item {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed var(--lp-border-cream, #f2e3d1);
}

.job-detail-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.job-detail-label {
    color: var(--lp-orange-2, #ff6a00);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    font-weight: 900;
    min-width: 84px;
    flex-shrink: 0;
}

.job-detail-value {
    color: var(--lp-navy-2, #050b4e);
    font-size: 14px;
    line-height: 1.75;
    flex: 1;
    font-weight: 500;
}

.job-detail-value strong {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: var(--lp-navy-2, #050b4e);
}

/* 説明セクション */
.job-description {
    padding: 24px 16px;
    border-bottom: 1px solid var(--lp-border-cream, #f2e3d1);
    background: white;
}

.job-section-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: var(--lp-navy-2, #050b4e);
    margin: 0 0 16px 0;
    padding-left: 14px;
    border-left: 4px solid var(--lp-orange-2, #ff6a00);
    line-height: 1.4;
}

.job-description-text {
    font-size: 14px;
    color: var(--lp-text, #363d49);
    line-height: 1.85;
    white-space: pre-line;
}

/* 同じ会社のその他の求人 */
.related-jobs {
    padding: 24px 16px;
    border-bottom: 1px solid var(--lp-border-cream, #f2e3d1);
    background: white;
}

.related-jobs .jobs-list {
    margin-bottom: 0;
}

.related-job-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.related-jobs-more {
    display: inline-block;
    margin-top: 16px;
    color: var(--lp-orange-2, #ff6a00);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.related-jobs-more:hover {
    text-decoration: underline;
}

/* リスト */
.job-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-list li {
    font-size: 14px;
    color: var(--lp-text, #363d49);
    line-height: 1.85;
    padding-left: 22px;
    position: relative;
    margin-bottom: 10px;
}

.job-list li:before {
    content: "";
    position: absolute;
    left: 6px;
    top: 0.7em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lp-orange-2, #ff6a00);
}

/* 固定フッター */
.fixed-footer {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border-top: 1px solid var(--lp-border-cream, #f2e3d1);
    padding: 14px 16px;
    max-width: 100%;
    width: 100%;
    z-index: 50;
    box-shadow: 0 -6px 18px rgba(45, 22, 0, 0.10);
    box-sizing: border-box;
}

.fixed-footer .btn {
    width: 100%;
    height: 56px;
    font-size: 16px;
}

/* ボタンスタイル */
.btn {
    border: none;
    border-radius: 999px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background: linear-gradient(90deg, #ff6a00 0%, #ff981a 100%);
    color: #fff;
    box-shadow: 0 8px 18px rgba(255, 106, 0, 0.28);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(255, 106, 0, 0.36);
    opacity: 1;
}

.btn-secondary {
    background: white;
    color: var(--lp-navy-2, #050b4e);
    border: 1px solid var(--lp-border-cream, #f2e3d1);
}

.btn-secondary:hover {
    background: var(--lp-orange-light, #ffede0);
    border-color: var(--lp-orange-2, #ff6a00);
    color: var(--lp-orange-2, #ff6a00);
}

/* 応募モーダル */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 100;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px;
    max-width: 400px;
    width: 100%;
    animation: modalSlideUp 0.3s ease;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-content-box .modal-title {
    font-size: 20px;
    font-weight: 900;
    margin: 0 0 16px 0;
    text-align: center;
    color: var(--lp-navy-2, #050b4e);
}

.modal-text {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 24px 0;
    text-align: center;
    line-height: 1.7;
}

.modal-actions {
    display: flex;
    gap: 12px;
}

.modal-actions .btn {
    flex: 1;
    height: 48px;
    font-size: 14px;
}

/* 検索バーのスクロール制御 */
.search-bar {
    position: sticky;
    top: 0;
    z-index: 50;
    transition: transform 0.3s ease;
}

.search-bar.hidden {
    transform: translateY(-100%);
}
/* 検索タグ (オレンジ・クリーム配色) */
.search-tag {
    display: inline-flex;
    align-items: center;
    background: var(--lp-orange-light, #ffede0);
    color: var(--lp-orange-2, #ff6a00);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    margin-right: 6px;
}

/* 条件クリアリンク */
.search-clear {
    display: inline-block;
    margin-left: 12px;
    font-size: 13px;
    color: var(--lp-orange-2, #ff6a00);
    text-decoration: underline;
    font-weight: 700;
}

.search-clear:hover {
    color: var(--lp-orange, #ff5a09);
    opacity: 0.85;
}

/* オファー経由時のメッセージ */
.offer-notice {
    margin: 0;
    padding: 16px;
    background: linear-gradient(to right, #e8f5e9, #c8e6c9);
    border-radius: 12px;
    color: #2e7d32;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
}

/* 応募ボタン直前の同意文言（白背景footer上で可読な色に調整） */
.apply-consent {
    margin: 0 0 10px;
    text-align: center;
    font-size: 12px;
    line-height: 1.6;
    color: var(--lp-text, #363d49);
}

.apply-consent a {
    color: var(--lp-orange-2, #ff6a00);
    text-decoration: underline;
}

/* ===========================
   RESPONSIVE - TABLET 以上 (≥768px)
   =========================== */
@media (min-width: 768px) {
    /* ===== 詳細ページ (PC レイアウト) ===== */
    .job-hero-image,
    .detail-slider {
        height: 380px;
        max-width: 1080px;
        margin: 0 auto;
    }
    .nav-back,
    .breadcrumb,
    .job-title-section,
    .job-details,
    .job-description,
    .related-jobs {
        max-width: 1080px;
        margin: 0 auto;
        padding-left: 32px;
        padding-right: 32px;
    }
    .job-title-main {
        font-size: 28px;
    }
    .job-section-title {
        font-size: 22px;
    }
    .fixed-footer {
        padding: 16px 32px;
    }
    .fixed-footer .btn {
        max-width: 480px;
        margin: 0 auto;
        display: block;
    }

    /* 検索バー: 横並び + センタリング */
    .search-bar {
        padding: 48px 32px;
    }
    .search-bar-inner {
        max-width: 1080px;
        margin: 0 auto;
    }
    .search-title {
        font-size: 32px;
    }
    .search-subtitle {
        font-size: 15px;
        margin-bottom: 24px;
    }
    .search-form {
        flex-direction: row;
        align-items: stretch;
        gap: 12px;
    }
    .search-input-group {
        flex-direction: row;
        flex: 1;
        gap: 12px;
    }
    .search-input-wrapper {
        flex: 1;
        min-width: 0;
    }
    .search-button {
        width: auto;
        min-width: 200px;
        padding: 0 32px;
    }

    /* メイン: 中央寄せ */
    .jobs-container {
        max-width: 1080px;
        margin: 0 auto;
        padding: 40px 32px;
    }
    .jobs-page-title {
        font-size: 32px;
        margin-bottom: 16px;
    }
    .jobs-result-count {
        font-size: 15px;
        margin-bottom: 28px;
    }

    /* 求人リスト: 2カラムグリッド */
    .jobs-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 32px;
    }

    /* もっと見るボタン: 中央配置 */
    .jobs-load-more {
        max-width: 400px;
        display: block;
        margin: 0 auto;
    }
}

/* ===========================
   RESPONSIVE - DESKTOP (≥1200px)
   =========================== */
@media (min-width: 1200px) {
    .search-bar {
        padding: 56px 40px;
    }
    .search-bar-inner,
    .jobs-container {
        max-width: 1200px;
    }
    .search-title {
        font-size: 36px;
    }
    .jobs-page-title {
        font-size: 36px;
    }
    .jobs-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* ===========================
   RESPONSIVE - WIDE DESKTOP (≥1440px)
   =========================== */
@media (min-width: 1440px) {
    .search-bar-inner,
    .jobs-container {
        max-width: 1320px;
    }
    /* カードを少し大きめに見せたいので2カラム維持 */
}
