* {
  font-size: 1.0em;
  line-height: 1.8;
  color: #333;
}
small {
  font-size: max(0.7em, 12px);
}
.c-switching {
    max-width: 900px !important; /* 優先度を上げて幅を強制 */
    margin-left: auto !important; /* 優先度を上げて中央寄せを強制 */
    margin-right: auto !important; /* 優先度を上げて中央寄せを強制 */
}
.c-switchingTabs {
  display: flex;
  gap: 20px;
  margin-bottom: -1px;
}

.c-switchingTabs__tab {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 200px;
  padding: 0.5em 1em;
  border: 1px solid #333;
  border-bottom: none;
  border-radius: 20px 20px 0 0;
  font-size: 16px;
  line-height: 1.4;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.3s ease;
  color: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.c-switchingTabs__tab:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* 選択中のタブ */
.c-switchingTabs__tab.is-current {
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.2);
  font-weight: bold;
}

/* 赤系：新卒採用 */
.graduate-btn {
  background-color: #d9534f;
}
.graduate-btn:hover {
  background-color: #c9302c;
}

/* 緑系：キャリア採用 */
.career-btn {
  background-color: #5cb85c;
}
.career-btn:hover {
  background-color: #4cae4c;
}

/* 青系：高校生採用 */
.student-btn {
  background-color: #5bc0de;
}
.student-btn:hover {
  background-color: #31b0d5;
}

/* コンテンツ表示領域 */
.c-switchingContainer {
  width: min(100%, 1000px);
  padding: 5em 1em 6em;
  border: 1px solid #333;
  background: #E3F4FD;
}

.c-switchingContainer__contents {
  width: 100%;
}

/* 切り替えコンテンツの表示制御 */
.js-switchingContents {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: height 0.3s ease, opacity 0.3s ease;
}

.js-switchingContents.is-open {
  height: auto;
  opacity: 1;
}
/* 募集一覧　カード型 */
.job-card {
  border: 1px solid #ccc;
  padding: 1em;
  margin: 1em auto;
  border-radius: 8px;
  background-color: #f9f9f9;
  max-width: 800px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  background-color: #eef;
  padding: 0 0.5em;
  border-radius: 4px;
}

.details.show {
  max-height: 920px;
  padding: 0.5em;
}

/* ボタンで詳細表示切り替え */
button {
  margin-top: 1em;
  padding: 0.5em 1em;
  background-color: #0078d4;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* レスポンシブ対応 */
@media screen and (max-width: 600px) {
  .job-card {
    padding: 0.8em;
    font-size: 0.95em;
  }
  button {
    width: 100%;
  }
}
.recruit-status-card {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 24px;
    max-width: 480px;
    margin: 0 auto 40px auto;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.status-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 16px;
    color: #333;
}

.status-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.status-label {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    min-width: 120px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    padding: 0 20px;
}

/* 募集中（赤） */
.status-label:not(.closed) {
    background-color: #dc3545;
    color: #fff;
}

/* 受付終了（グレー） */
.status-label.closed {
    background-color: #6c757d;
    color: #fff;
}

.status-link {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.status-link:hover {
    background-color: #0056b3;
}

.status-note {
    font-size: 13px;
    color: #666;
}
.update-date {
    font-size: 13px;
    color: #999;
    margin-top: 12px;
    text-align: right;
}
.status-highlight.redesigned {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

/* 年度バッジ（丸型） */
.badge-year {
    background-color: #17a2b8;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 50px;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* 募集内容（カード風） */
.badge-detail {
    background-color: #f1f1f1;
    color: #333;
    font-size: 15px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid #ccc;
    min-width: 220px;
    text-align: center;
}