@charset "utf-8";

/* 採用情報ページ - TOPページ基準統一デザイン */

/* 既存のpage-heroクラスは削除し、統一されたheroクラスを使用 */
/* subpage-unified.cssのheroスタイルが適用されます */

/* ==========================================================================
   採用情報ページ専用コンテンツスタイル（TOPページ基準）
   ========================================================================== */

/* 採用情報コンテンツエリア - 統一デザイン */
.recruit__content {
  background: #ffffff;
  margin-top: -80px;
  position: relative;
  z-index: 3;
  border-radius: 20px 20px 0 0;
  padding: 80px 60px;
  min-height: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* セクションタイトルシステム（TOPページ準拠） */
.sectionTtl {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 4rem;
  text-align: center;
}

.sectionTtl .en {
  font-family: var(--font_MavenPro, 'Maven Pro', sans-serif);
  font-size: 5.625rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  order: 1;
  color: #2c3e50;
}

.sectionTtl .ja {
  color: var(--col_primary, #e11f1f);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  order: 2;
  position: relative;
  padding-left: 22px;
}

/* Icon decoration removed per user request */

/* h2--whiteスタイル */
h2.h2--white, .h2--white {
  color: white;
}

h2.h2--white .en, .h2--white .en {
  color: white;
}

h2.h2--white .ja, .h2--white .ja {
  color: rgba(255, 255, 255, 0.9);
}

/* 採用情報コンテンツ */
.recruit__content {
  background: #fff;
  margin-top: -100px;
  position: relative;
  z-index: 3;
  border-radius: 12px 12px 0 0;
  padding: 80px 48px;
  min-height: 600px;
}

/* 導入セクション */
.recruit__lead {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.headline {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 24px;
  color: #2c3e50;
}

.headline .red {
  color: var(--col_primary);
}

.txt {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #495057;
}

/* 募集要項セクション */
.recruit__positions {
  margin-bottom: 80px;
}

.positions__title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 40px;
  text-align: center;
}

.position__item {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.position__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.position__header {
  background: linear-gradient(135deg, var(--col_primary) 0%, #c41414 100%);
  color: white;
  padding: 24px 32px;
  border-radius: 16px 16px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.position__header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.position__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  position: relative;
  z-index: 1;
}

.position__status {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 1;
}

.position__status--active {
  background: #28a745;
  border-color: #28a745;
}

.position__status--standby {
  background: #ffc107;
  color: #212529;
  border-color: #ffc107;
}

.position__content {
  padding: 32px;
}

.position__summary {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid var(--col_primary);
  margin-bottom: 24px;
}

.position__summary p {
  font-size: 1rem;
  line-height: 1.8;
  color: #495057;
  margin: 0;
}

.position__details {
  display: grid;
  gap: 16px;
}

.detail__item {
  display: flex;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
}

.detail__item:last-child {
  border-bottom: none;
}

.detail__label {
  font-weight: 700;
  color: #2c3e50;
  min-width: 120px;
  margin-right: 20px;
  font-size: 0.875rem;
}

.detail__value {
  flex: 1;
  color: #495057;
  line-height: 1.6;
  font-size: 0.875rem;
}

/* 福利厚生セクション */
.recruit__benefits {
  margin-bottom: 80px;
}

.benefits__title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 40px;
  text-align: center;
}

.benefits__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.benefits__category {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.benefits__category:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.category__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--col_primary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0f0f0;
}

.category__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.category__list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 0.875rem;
  color: #495057;
  line-height: 1.6;
}

.category__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--col_primary);
  font-weight: 700;
}

/* 職場環境セクション */
.recruit__workplace {
  margin-bottom: 80px;
}

.workplace__title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 40px;
  text-align: center;
}

.workplace__content {
  display: grid;
  gap: 32px;
}

.workplace__item {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 32px;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.workplace__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.workplace__item:nth-child(even) {
  grid-template-columns: 1fr 300px;
}

.workplace__item:nth-child(even) .workplace__image {
  order: 2;
}

.workplace__image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.workplace__image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.workplace__item:hover .workplace__image img {
  transform: scale(1.05);
}

.workplace__heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 16px;
}

.workplace__desc {
  font-size: 1rem;
  line-height: 1.8;
  color: #495057;
  margin: 0;
}

/* 先輩社員の声セクション */
.recruit__voices {
  margin-bottom: 80px;
}

.voices__title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 40px;
  text-align: center;
}

.voices__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
}

.voice__item {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.voice__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.voice__profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.voice__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.voice__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voice__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 4px;
}

.voice__position {
  font-size: 0.875rem;
  color: var(--col_primary);
  font-weight: 600;
  margin-bottom: 4px;
}

.voice__experience {
  font-size: 0.75rem;
  color: #6c757d;
  margin: 0;
}

.voice__text {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #495057;
}

.voice__text p {
  margin: 0;
}

/* 応募方法セクション */
.recruit__application {
  margin-bottom: 80px;
}

.application__title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 40px;
  text-align: center;
}

.application__content {
  display: grid;
  gap: 40px;
}

.application__methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.method__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.method__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.method__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--col_primary), #ff6b6b);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.method__icon img {
  filter: brightness(0) invert(1);
}

.method__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 12px;
}

.method__desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #495057;
  margin-bottom: 12px;
}

.method__tel {
  margin: 12px 0;
}

.method__tel a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--col_primary);
  text-decoration: none;
}

.method__tel a:hover {
  text-decoration: underline;
}

/* 選考フロー */
.application__flow {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 40px;
  border: 1px solid #e9ecef;
}

.flow__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 32px;
  text-align: center;
}

.flow__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.step__item {
  background: white;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.step__item:hover {
  transform: translateY(-4px);
}

.step__number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--col_primary), #ff6b6b);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 16px;
}

.step__title {
  font-size: 1rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 8px;
}

.step__desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #6c757d;
  margin: 0;
}

/* CTAセクション */
.recruit__cta {
  background: linear-gradient(135deg, var(--col_primary) 0%, #c41414 100%);
  color: white;
  border-radius: 20px;
  padding: 60px;
  text-align: center;
  margin: 80px auto;
  max-width: 1200px;
  position: relative;
  overflow: hidden;
}

.recruit__cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta__text {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta__buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 180px;
  justify-content: center;
}

.btn--primary {
  background: white;
  color: var(--col_primary, #e11f1f);
  border-color: white;
}

.btn--primary:hover {
  background: transparent;
  color: white;
  border-color: white;
  transform: translateY(-2px);
}

.btn--secondary {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.8);
}

.btn--secondary:hover {
  background: white;
  color: var(--col_primary, #e11f1f);
  border-color: white;
  transform: translateY(-2px);
}

/* アニメーションクラス */
.intersect-elem {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.intersect-elem.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.intersect-elem.active,
.intersect-elem.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .recruit__content {
    padding: 60px 32px;
  }
  
  .sectionTtl .en {
    font-size: 4rem;
  }
  
  .workplace__item {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .workplace__item:nth-child(even) {
    grid-template-columns: 1fr;
  }
  
  .workplace__item:nth-child(even) .workplace__image {
    order: 0;
  }
  
  .application__methods {
    grid-template-columns: 1fr;
  }
  
  .voices__content {
    grid-template-columns: 1fr;
  }
  
  .recruit__cta {
    padding: 40px 24px;
    margin: 60px 16px;
  }
  
  .benefits__content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .recruit__content {
    padding: 40px 24px;
    margin-top: -50px;
  }
  
  .sectionTtl .en {
    font-size: 3rem;
  }
  
  .sectionTtl .ja {
    font-size: 1.125rem;
  }
  
  .headline {
    font-size: 2rem;
  }
  
  .position__header {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .detail__item {
    flex-direction: column;
    gap: 8px;
  }
  
  .detail__label {
    min-width: auto;
    margin-right: 0;
  }
  
  .benefits__content {
    grid-template-columns: 1fr;
  }
  
  .flow__steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .recruit__cta {
    padding: 32px 20px;
    margin: 40px 16px;
  }
  
  .cta__buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .voice__profile {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .sectionTtl .en {
    font-size: 2.5rem;
  }
  
  .recruit__content {
    padding: 32px 16px;
  }
  
  .headline {
    font-size: 1.75rem;
  }
  
  .flow__steps {
    grid-template-columns: 1fr;
  }
  
  .method__item {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .recruit__cta {
    padding: 24px 16px;
  }
}