.container {
  max-width: 900px;   /* 好きな幅に調整可能 */
  margin: 0 auto;     /* 中央寄せの決め技 */
}

.job-body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.job-points li::before {
  content: "・";
  margin-right: 4px;
}

.job-thumb img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 4px;
  margin-left: 20px;
}

.job-card {
  background: #fff;
  padding: 24px;
  margin-bottom: 24px;   /* ← ここを広げる */
  border-left: 6px solid #e60021;
  border-radius: 4px;
  cursor: pointer;       /* ← クリック可能感 */
  transition: background 0.2s;
}

.job-card:hover {
  background: #fafafa;   /* ← ホバーで軽く反応 */
}


.search-box {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.search-box input,
.search-box select {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.job-title {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 4px;
}

.job-company {
  color: #777;
  font-size: 14px;
  margin-bottom: 12px;
}

.job-meta {
  display: flex;
  gap: 28px;
  margin-bottom: 12px;
  font-size: 15px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #333;
  font-weight: bold;
}

.job-points {
  margin: 0;
  padding-left: 20px;
  color: #444;
  font-size: 14px;
}

.job-points li {
  margin-bottom: 4px;
  line-height: 1.5;
}

.search-box {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.search-box input,
.search-box select {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* ▼ 検索フォームをカード風にする ▼ */
.search-box {
  background: #fff;
  padding: 16px 20px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  align-items: center;
}

/* 入力欄・セレクトのスタイル */
.search-box input,
.search-box select {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fafafa;
  font-size: 14px;
}

/* 入力欄の幅調整 */
.search-box input {
  flex: 1;
}

/* セレクトボックスの幅 */
.search-box select {
  width: 160px;
}


/*詳細ページ*/
/* ▼ 詳細ページ全体 */
.detail-container {
  background: #fff;
  padding: 24px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* ▼ タイトル */
.detail-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 4px;
}

/* ▼ 企業名 */
.detail-company {
  font-size: 16px;
  color: #555;
  margin-bottom: 16px;
}

/* ▼ メタ情報 */
.detail-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.detail-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #444;
}

/* ▼ 画像 */
.detail-image img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 20px;
}

/* ▼ 仕事内容ボックス */
.detail-box {
  background: #fafafa;
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 24px;
}

.detail-box h2 {
  font-size: 18px;
  margin-bottom: 12px;
}

/* ▼ 応募ボタン */
.apply-btn {
  background: #e60021;
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 20px;
}

.apply-btn:hover {
  background: #c4001c;
}

/* ▼ 戻るボタン */
.back-btn {
  background: transparent;
  border: none;
  color: #0073cc;
  cursor: pointer;
  font-size: 14px;
}

/* ▼ リクナビ風ヘッダー全体 */
.riku-header {
  width: 100%;
  background: #e60021; /* リクナビの赤 */
  padding: 10px 0;
  color: #fff;
  font-size: 14px;
}

/* ▼ 内側の横並びレイアウト */
.riku-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ▼ ロゴ */
.riku-logo {
  font-size: 20px;
  font-weight: bold;
}

/* ▼ メニュー */
.riku-nav {
  display: flex;
  gap: 20px;
  list-style: none;
  align-items: center;
}

.riku-nav li {
  cursor: pointer;
  position: relative;
}

/* ▼ オファーの通知バッジ */
.badge {
  background: #fff;
  color: #e60021;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 4px;
  font-weight: bold;
}

/* ▼ ユーザー名 */
.user-name {
  font-weight: bold;
}

/* ▼ スマホ対応 */
@media (max-width: 768px) {
  .riku-header-inner {
    flex-direction: column;
    gap: 10px;
  }

  .riku-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
}


/* ▼ ブルーナビNEXT風ヘッダー全体 */
.riku-header {
  width: 100%;
  background: #0066cc; /* 青基調に変更 */
  padding: 10px 0;
  color: #fff;
  font-size: 14px;
}

/* ▼ 内側の横並びレイアウト */
.riku-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ▼ ロゴ */
.riku-logo {
  font-size: 20px;
  font-weight: bold;
}

/* ▼ メニュー */
.riku-nav {
  display: flex;
  gap: 20px;
  list-style: none;
  align-items: center;
}

.riku-nav li {
  cursor: pointer;
  position: relative;
}

/* ▼ 通知バッジ（青バージョン） */
.badge {
  background: #fff;
  color: #0066cc; /* 青に変更 */
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 4px;
  font-weight: bold;
}

/* ▼ ユーザー名 */
.user-name {
  font-weight: bold;
}

/* ▼ スマホ対応 */
@media (max-width: 768px) {
  .riku-header-inner {
    flex-direction: column;
    gap: 10px;
  }

  .riku-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
}

.search-btn {
  background: #0066cc;
}
.search-btn:hover {
  background: #005bb5;
}

.bn-logo {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.bn-main {
  color: #005BB5; /* 濃い青 */
}

.bn-next {
  color: #0094FF; /* 明るい青 */
  margin-left: 4px;
  position: relative;
  top: -1px; /* 少し上げて前進感 */
  font-weight: 500;
}






