/* ===========================
   GLOBAL
=========================== */
body {
  background: #000;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

/* ===========================
   HERO
=========================== */
.tc-recruit-hero {
  position: relative;
  padding: 160px 40px;
  overflow: hidden;
}

.tc-recruit-hero-inner {
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.tc-recruit-hero-inner h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.tc-recruit-hero-inner p {
  font-size: 20px;
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: 40px;
}

.tc-recruit-hero-btn {
  display: inline-block;
  background: #75aaff;
  padding: 16px 40px;
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-size: 18px;
  box-shadow: 0 0 25px rgba(117,170,255,0.5);
}

.tc-recruit-hero-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  opacity: 0.25;
  border-top-left-radius: 200px;
  transition: 1.5s ease-out;
}

/* モバイル */
@media (max-width: 768px) {
  .tc-recruit-hero {
    padding: 120px 20px;
  }
  .tc-recruit-hero-inner h1 {
    font-size: 32px;
  }
  .tc-recruit-hero-img {
    width: 100%;
    opacity: 0.15;
  }
}

/* ===========================
   SECTION 共通
=========================== */
.tc-recruit-section {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.tc-recruit-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 700;
}

/* ===========================
   募集職種
=========================== */
.tc-recruit-job-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.tc-recruit-job-card {
  background: #111;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 20px rgba(255,255,255,0.05);
}

.tc-recruit-job-card img {
  border-radius: 8px;
  margin-bottom: 20px;
}

.tc-recruit-job-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.tc-recruit-job-card p {
  opacity: 0.8;
  font-size: 15px;
}

/* モバイル */
@media (max-width: 768px) {
  .tc-recruit-job-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   募集要項（勤務条件）
=========================== */
.tc-recruit-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.tc-recruit-detail {
  background: #111;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255,255,255,0.05);
}

.tc-recruit-detail h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.tc-recruit-detail p {
  opacity: 0.8;
  font-size: 15px;
  line-height: 1.6;
}

/* モバイル */
@media (max-width: 768px) {
  .tc-recruit-detail-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   求める人物像
=========================== */
.tc-recruit-person-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.tc-recruit-person {
  background: #111;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255,255,255,0.05);
}

.tc-recruit-person h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.tc-recruit-person p {
  opacity: 0.8;
}

/* モバイル */
@media (max-width: 768px) {
  .tc-recruit-person-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   メッセージ
=========================== */
.tc-recruit-message {
  background: #111;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255,255,255,0.05);
  line-height: 1.8;
  opacity: 0.85;
}

/* ===========================
   応募フロー
=========================== */
.tc-recruit-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.tc-recruit-flow-step {
  background: #111;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 20px rgba(255,255,255,0.05);
}

.tc-recruit-flow-step h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.tc-recruit-flow-step p {
  opacity: 0.8;
}

/* モバイル */
@media (max-width: 768px) {
  .tc-recruit-flow {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   エントリー
=========================== */
.tc-recruit-entry {
  text-align: center;
  padding: 100px 40px;
  background: #111;
}

.tc-recruit-entry h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.tc-recruit-entry-btn {
  display: inline-block;
  background: #75aaff;
  padding: 16px 40px;
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-size: 20px;
  box-shadow: 0 0 25px rgba(117,170,255,0.5);
}

/* ===========================
   ANIMATION
=========================== */
.tc-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.8s ease-out;
}

.tc-animate.tc-show {
  opacity: 1;
  transform: translateY(0);
}

.tc-slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: 0.8s ease-out;
}

.tc-slide-left.tc-show {
  opacity: 1;
  transform: translateX(0);
}

.tc-slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: 0.8s ease-out;
}

.tc-slide-right.tc-show {
  opacity: 1;
  transform: translateX(0);
}

.tc-delay-1 { transition-delay: 0.2s }
.tc-delay-2 { transition-delay: 0.4s }
.tc-delay-3 { transition-delay: 0.6s }

/* カードホバー */
.tc-recruit-job-card:hover,
.tc-recruit-detail:hover,
.tc-recruit-env:hover,
.tc-recruit-person:hover,
.tc-recruit-flow-step:hover {
  transform: translateY(-6px);
  transition: 0.3s ease-out;
  box-shadow: 0 0 25px rgba(255,255,255,0.12);
}
