/* ===== キャッチ ===== */
.rc-catch {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}
.rc-catch-lead {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 2;
  max-width: 760px;
  margin: 0 auto 56px;
}
.rc-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.rc-point {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 32px 24px;
  border-top: 4px solid var(--blue);
  text-align: left;
}
.rc-point-num {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.rc-point h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  min-height: 2.8em;
  display: flex;
  align-items: flex-start;
}
.rc-point p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ===== 応募ボタン帯 ===== */
.rc-apply-bar {
  padding: 40px 0;
  background: var(--navy);
  text-align: center;
}
.rc-apply-bar p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
.rc-apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 48px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: opacity 0.2s;
}
.rc-apply-btn:hover { opacity: 0.85; }

/* ===== 会社紹介 ===== */
.rc-about {
  padding: 80px 0;
  background: var(--bg-alt);
}
.rc-about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.rc-about-img {
  border-radius: var(--radius);
  overflow: hidden;
}
.rc-about-img img {
  width: 100%;
  height: auto;
  display: block;
}
.rc-about-title {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.4;
}
.rc-about-text p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 16px;
}

/* ===== 募集要項 ===== */
.rc-jobs {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}
.rc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  text-align: left;
  margin-top: 48px;
}
.rc-table tr {
  border-bottom: 1px solid #e0e6ef;
}
.rc-table tr:first-child {
  border-top: 1px solid #e0e6ef;
}
.rc-table th {
  background: var(--bg-alt);
  color: var(--navy);
  font-weight: 700;
  padding: 20px 24px;
  white-space: nowrap;
  vertical-align: top;
  width: 180px;
}
.rc-table td {
  padding: 20px 24px;
  color: var(--text);
  line-height: 1.85;
  vertical-align: top;
}
.rc-table td small {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ===== 先輩インタビュー ===== */
.rc-interview {
  padding: 80px 0;
  background: var(--bg-alt);
  text-align: center;
}
.rc-interview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
  text-align: left;
}
.rc-interview-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.rc-interview-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e6ef;
}
.rc-interview-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.rc-interview-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rc-interview-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}
.rc-interview-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.rc-interview-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 12px;
}
.rc-interview-quote {
  font-size: 0.9rem !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
  background: var(--bg-alt);
  border-left: 3px solid var(--blue);
  padding: 12px 16px !important;
  border-radius: 0 6px 6px 0;
  margin-top: 16px !important;
  margin-bottom: 0 !important;
}

/* ===== 職場環境 ===== */
.rc-env {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}
.rc-env-lead {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 700px;
  margin: 0 auto 48px;
}
.rc-env-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.rc-env-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: left;
}
.rc-env-img {
  height: 160px;
  overflow: hidden;
}
.rc-env-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rc-env-body {
  padding: 20px 18px 22px;
}
.rc-env-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.rc-env-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ===== 1日の流れ ===== */
.rc-flow {
  padding: 80px 0;
  background: var(--bg-alt);
  text-align: center;
}
.rc-flow-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 40px 0 32px;
  flex-wrap: wrap;
}
.rc-flow-tab {
  padding: 10px 28px;
  border: 1.5px solid #c8d5e8;
  border-radius: 4px;
  background: #fff;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}
.rc-flow-tab.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.rc-flow-content {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  text-align: left;
}
.rc-flow-content--hidden { display: none; }
.rc-flow-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rc-flow-steps li {
  display: flex;
  gap: 20px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid #e0e6ef;
}
.rc-flow-steps li:last-child { border-bottom: none; }
.rc-flow-time {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
  min-width: 48px;
}
.rc-flow-desc {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
}
.rc-flow-desc small {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ===== 求める人材 ===== */
.rc-wanted {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}
.rc-wanted-inner {
  max-width: 600px;
  margin: 40px auto 0;
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 40px 48px;
  text-align: left;
}
.rc-wanted-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #dce6f0;
}
.rc-wanted-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}
.rc-wanted-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin: 0;
}
@media (max-width: 600px) {
  .rc-wanted-inner { padding: 28px 24px; }
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .rc-about-inner { grid-template-columns: 1fr; }
  .rc-interview-grid { grid-template-columns: 1fr; }
  .rc-env-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .rc-points { grid-template-columns: 1fr; }
  .rc-env-grid { grid-template-columns: 1fr; }
  .rc-table th { width: 100px; padding: 14px 16px; font-size: 0.85rem; }
  .rc-table td { padding: 14px 16px; font-size: 0.88rem; }
  .rc-interview-card { padding: 24px 20px; }
  .rc-flow-content { padding: 24px 20px; }
  .rc-flow-tab { padding: 8px 16px; font-size: 0.83rem; }
}
