@charset "UTF-8";

/* ========================================
   GREEN GARDEN - Recruit Page Styles
   ======================================== */

/* Recruit Notice */
.recruit-notice-section {
  padding: 0;
}

.recruit-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: #FFF3CD;
  border: 2px solid #FFCA2C;
  border-radius: 12px;
  padding: 25px 30px;
  margin-top: 40px;
}

.recruit-notice i {
  font-size: 1.5rem;
  color: #CC8800;
  flex-shrink: 0;
}

.recruit-notice p {
  font-size: 1.1rem;
  font-weight: 600;
  color: #664D00;
  margin: 0;
  line-height: 1.6;
}

.sp-only {
  display: none;
}

/* Recruit Message */
.recruit-message {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.recruit-message-content .en-title {
  font-family: var(--font-family-en);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-color);
  letter-spacing: 0.2em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.recruit-message-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 25px;
  line-height: 1.5;
}

.recruit-lead {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.recruit-message-content p {
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 15px;
}

.recruit-message-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.recruit-message-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Appeal Grid */
.appeal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.appeal-card {
  background: var(--bg-white);
  padding: 35px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.appeal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.appeal-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.appeal-icon i {
  font-size: 1.75rem;
  color: var(--bg-white);
}

.appeal-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 12px;
}

.appeal-card p {
  color: var(--text-light);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* Job Table */
.job-table-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.job-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
}

.job-table th,
.job-table td {
  padding: 25px 30px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.job-table tr:last-child th,
.job-table tr:last-child td {
  border-bottom: none;
}

.job-table th {
  width: 160px;
  font-weight: 600;
  color: var(--text-color);
  background: var(--primary-pale);
  vertical-align: top;
}

.job-table td {
  color: var(--text-light);
  line-height: 1.8;
}

.job-table td ul {
  margin: 0;
  padding: 0;
}

.job-table td ul li {
  padding: 3px 0;
  position: relative;
  padding-left: 15px;
}

.job-table td ul li::before {
  content: '・';
  position: absolute;
  left: 0;
}

/* Application Flow */
.application-flow {
  max-width: 700px;
  margin: 0 auto;
}

.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 30px 0;
  position: relative;
}

.flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 25px;
  top: 85px;
  width: 2px;
  height: calc(100% - 55px);
  background: rgba(255, 255, 255, 0.3);
}

.flow-step-number {
  width: 50px;
  height: 50px;
  background: var(--bg-white);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-en);
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}

.flow-step-content h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 10px;
}

.flow-step-content p {
  color: var(--text-light);
  line-height: 1.7;
}

/* Application CTA */
.application-cta {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 50px;
  background: var(--bg-light);
  border-radius: 16px;
}

.application-cta h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 15px;
}

.application-cta p {
  color: var(--text-light);
  margin-bottom: 30px;
}

.application-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-line {
  background: #00B900;
  color: var(--bg-white);
  padding: 16px 32px;
}

.btn-line:hover {
  background: #009900;
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 185, 0, 0.4);
}

.btn-instagram {
  background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCAF45 100%);
  color: var(--bg-white);
  padding: 16px 32px;
}

.btn-instagram:hover {
  opacity: 0.9;
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(131, 58, 180, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
  .appeal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .recruit-notice {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 10px;
  }

  .recruit-notice p {
    font-size: 1rem;
  }

  .sp-only {
    display: inline;
  }

  .recruit-message {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .recruit-message-content h2 {
    font-size: 1.5rem;
  }

  .recruit-message-image img {
    height: 300px;
  }

  .appeal-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .job-table th,
  .job-table td {
    display: block;
    width: 100%;
    padding: 15px 20px;
  }

  .job-table th {
    border-bottom: none;
    padding-bottom: 5px;
  }

  .job-table td {
    padding-top: 5px;
  }

  .flow-step {
    gap: 15px;
  }

  .flow-step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .flow-step:not(:last-child)::after {
    left: 20px;
    top: 70px;
  }

  .application-cta {
    padding: 35px 25px;
  }

  .application-cta h3 {
    font-size: 1.25rem;
  }

  .application-buttons {
    flex-direction: column;
    align-items: center;
  }

  .application-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}
