/* 採用情報 - recruit.css */
.header-recruit-inner {
  background: linear-gradient(90deg, #ffe2cf 10%, #fb5f00 65%);
  box-shadow: 0 2px 4px rgba(0,0,0,0.25);
}
.header-recruit-top .header-phone { color: #fff; }
.header-recruit-top .btn-login,
.header-recruit-top .btn-cart-nav {
  background: #000;
  color: #fff;
  padding: 7px 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 17px;
}
.main-nav-recruit { background: #fff; border-bottom: 1px solid #ddd; }
.nav-list-recruit .nav-item a.active { border-bottom: 4px solid #fb5f00; }

.recruit-hero {
  position: relative;
  height: 418px;
  overflow: hidden;
  background: #c4c4c4;
}
.recruit-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recruit-hero-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 36px;
  font-weight: 500;
  color: #333;
  margin: 0;
}
.breadcrumb-wrap { padding: 20px 0; background: #fff; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 10px; }
.breadcrumb a:hover { color: #fb5f00; }

.recruit-main {
  padding: 40px 0 60px;
  background: #fff;
}
.recruit-section-title {
  font-size: 24px;
  font-weight: 500;
  color: #232323;
  text-align: center;
  margin: 0 0 24px;
}
.recruit-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 24px;
  align-items: center;
  justify-items: stretch;
  background: #f3f3f3;
  border-radius: 28px;
  padding: 12px 16px;
  min-height: 70px;
  height: auto;
  margin-bottom: 40px;
}
.recruit-tab {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #000;
  padding: 10px 16px;
  font-family: inherit;
  text-align: center;
  border-radius: 99px;
}
.recruit-tab.active {
  background: #fb5f00;
  color: #fff;
  border-radius: 99px;
  padding: 14px 20px;
}

.recruit-panel-title {
  background: #fb5f00;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  padding: 10px;
  margin-bottom: 0;
}
.recruit-table {
  border: 1px solid #a5a5a5;
  border-top: none;
}
.recruit-row {
  display: grid;
  grid-template-columns: 313px 1fr;
  min-height: 60px;
  border-bottom: 1px solid #a5a5a5;
}
.recruit-row:last-child { border-bottom: none; }
.recruit-label {
  background: #f5f5f5;
  border-right: 1px solid #a5a5a5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #000;
}
.recruit-value {
  background: #fff;
  padding: 10px 20px;
  font-size: 16px;
  color: #5d5d5d;
  display: flex;
  align-items: center;
  line-height: 1.5;
}
.recruit-cta {
  text-align: center;
  margin-top: 40px;
}
.btn-recruit-apply {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fb5f00;
  color: #fff;
  padding: 12px 32px;
  border-radius: 99px;
  font-size: 16px;
  font-weight: 700;
}
.btn-recruit-apply:hover { opacity: 0.9; }

@media (max-width: 900px) {
  .recruit-row { grid-template-columns: 1fr; }
  .recruit-label { border-right: none; border-bottom: 1px solid #a5a5a5; }
}
