/* Splash Screen */
.recruit-splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 1;
  transition: opacity 0.8s ease-out;
}
.recruit-splash.fade-out {
  opacity: 0;
  pointer-events: none;
}
.recruit-splash.hidden {
  display: none;
}
.recruit-splash-logo {
  width: auto;
  height: auto;
  max-width: 300px;
  max-height: 300px;
  animation: fadeInUp 1s ease-out;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.recruit-page {
  background: #ffffff;
  color: #111827;
  padding: 0;
  margin: 0;
  width: 100%;
}
body.page-recruit {
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
}
body.page-recruit main {
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  display: block !important;
}
html {
  padding: 0;
  margin: 0;
}
/* Hero Section */
.recruit-hero {
  padding: 0;
  margin-bottom: 0;
}
.recruit-hero-container {
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.recruit-hero-image {
  width: 100%;
  height: auto;
  display: block;
}
/* Recruitment Banner */
.recruit-banner {
  padding: 0;
  margin-top: 60px;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.recruit-banner-link {
  display: inline-block;
  cursor: pointer;
  transition: opacity 0.2s;
}
.recruit-banner-link:hover {
  opacity: 0.9;
}
.recruit-banner-image {
  width: auto;
  height: auto;
  max-width: 100%;
  display: block;
}
/* Section Styles */
.recruit-banner {
  margin-bottom: 60px;
}
.recruit-about,
.recruit-work,
.recruit-job {
  padding: 80px 0;
  margin-bottom: 0;
}
.recruit-about-container,
.recruit-work-container,
.recruit-job-container,
.recruit-faq-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
.recruit-section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
  text-align: center;
}
.recruit-section-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: 60px;
}
.recruit-work-image {
  width: 100%;
  margin: 0;
  overflow: hidden;
}
.recruit-work-image img {
  width: 100%;
  height: auto;
  display: block;
}
/* ABOUT Section */
.recruit-about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 60px;
}
.recruit-about-image {
  border-radius: 12px;
  overflow: hidden;
}
.recruit-about-image img {
  width: 100%;
  height: auto;
  display: block;
}
.recruit-about-text h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 24px;
}
.recruit-about-text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 24px;
}
.recruit-about-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 16px;
}
.recruit-about-bottom {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 2px solid var(--primary);
}
.recruit-about-bottom h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
}
.recruit-about-bottom p {
  font-size: 1rem;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 16px;
}
/* WORK Section */
.recruit-work-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.recruit-work-item {
  text-align: center;
  padding: 24px;
  background: #f9fafb;
  border-radius: 8px;
  transition: all 0.2s;
}
.recruit-work-item:hover {
  background: #fff5f9;
  transform: translateY(-4px);
}
.work-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.work-label {
  font-size: 0.875rem;
  color: #374151;
  font-weight: 500;
}
/* JOB Section */
.recruit-job-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.recruit-job-card {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.recruit-job-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.job-card-content {
  padding: 24px;
}
.job-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}
.job-card-description {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 12px;
}
.job-card-requirements {
  font-size: 0.875rem;
  color: #9ca3af;
  margin-bottom: 16px;
}
.job-card-image {
  width: auto;
  height: auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.job-card-image img {
  width: auto;
  height: auto;
  max-width: 100%;
  display: block;
}
.job-card-button {
  display: inline-block;
  padding: 12px 24px;
  background: var(--primary);
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  margin-top: 16px;
  transition: all 0.2s;
}
.job-card-button:hover {
  background: #ff6b9d;
}
/* FAQ Section */
.recruit-faq {
  background: #f9fafb;
  padding: 80px 0;
}
.recruit-faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 48px;
  text-align: center;
}
.recruit-faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.recruit-faq-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  border-left: 4px solid var(--primary);
  box-shadow: 0 2px 8px rgba(255, 103, 156, 0.1);
  transition: all 0.2s;
}
.recruit-faq-item:hover {
  box-shadow: 0 4px 12px rgba(255, 103, 156, 0.15);
  transform: translateY(-2px);
}
.faq-question {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.faq-q-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}
.faq-question-text {
  flex: 1;
}
.faq-answer {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.8;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.faq-a-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #fff5f9;
  color: var(--primary);
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
  border: 2px solid var(--primary);
}
.faq-answer-text {
  flex: 1;
}
/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.2s;
  z-index: 1000;
}
.scroll-to-top:hover {
  background: #ff6b9d;
  transform: translateY(-4px);
}
/* Scroll Fade In Animation */
.scroll-fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.scroll-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* パンくずリスト */
.recruit-breadcrumb-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 0;
}
.recruit-breadcrumb {
  font-size: 14px;
  color: #666;
}
.recruit-breadcrumb-inner {
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 1px solid #e5e5e5;
}
.recruit-breadcrumb a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}
.recruit-breadcrumb a:hover {
  color: #FF679C;
}
.recruit-breadcrumb span {
  margin: 0 8px;
  color: #999;
}
.recruit-breadcrumb .current {
  color: #333;
  font-weight: 500;
}
/* コピーライトスタイル */
body.page-recruit .site-footer {
  background: #FF679C;
  color: #ffffff;
}
body.page-recruit .site-footer p {
  color: #ffffff;
}
/* Responsive */
@media (max-width: 768px) {
  .recruit-hero-image {
    width: 100%;
    height: auto;
  }
  .recruit-about,
  .recruit-work,
  .recruit-job,
  .recruit-faq {
    padding: 48px 0;
  }
  .recruit-about-container,
  .recruit-work-container,
  .recruit-job-container,
  .recruit-faq-container {
    padding: 0 16px;
  }
  .recruit-about-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .recruit-section-title {
    font-size: 2rem;
  }
  .recruit-section-subtitle {
    font-size: 1.125rem;
    margin-bottom: 40px;
  }
  .recruit-job-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .recruit-job-list {
    gap: 24px;
  }
  .recruit-faq-title {
    font-size: 2rem;
    margin-bottom: 32px;
  }
  .scroll-to-top {
    bottom: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
  }
}

