/* ==========================================================================
   Culture Page — 包括的カルチャーページ
   ========================================================================== */

.culture-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 100px;
}

/* -------------------------------------------------------------------
   セクション共通
   ------------------------------------------------------------------- */
.culture-section {
  padding: 80px 0;
  border-bottom: 1px solid #e9ecef;
}

.culture-section:last-child {
  border-bottom: none;
}

.culture-section-label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: #6c757d;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.culture-section-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #1a2333;
  margin: 0 0 16px;
  line-height: 1.4;
}

.culture-section-lead {
  font-size: 1rem;
  line-height: 2;
  color: #6c757d;
  margin: 0 0 48px;
  max-width: 700px;
}

/* -------------------------------------------------------------------
   1. OUR PRINCIPLES — 行動原則カード
   ------------------------------------------------------------------- */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.principle-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s ease;
}

.principle-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1a2333 0%, #3a5070 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.principle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.principle-card:hover::before {
  transform: scaleX(1);
}

.principle-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(26, 35, 51, 0.06);
  line-height: 1;
  margin-bottom: 16px;
}

.principle-title-en {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a2333;
  margin: 0 0 6px;
}

.principle-title-ja {
  font-size: 0.85rem;
  font-weight: 700;
  color: #6c757d;
  margin: 0 0 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.principle-desc {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #6c757d;
  margin: 0;
}

.principle-example {
  margin-top: 16px;
  padding: 12px 16px;
  background: #f8f9fb;
  border-radius: 10px;
  font-size: 0.85rem;
  color: #6c757d;
  line-height: 1.7;
}

.principle-example strong {
  color: #1a2333;
  font-weight: 700;
}

/* -------------------------------------------------------------------
   2. WORKPLACE — オフィス・働く環境
   ------------------------------------------------------------------- */
.workplace-highlight {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 48px;
}

.workplace-highlight-image {
  flex-shrink: 0;
  width: 480px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  min-height: 300px;
}

.workplace-highlight-text {
  flex: 1;
  min-width: 0;
}

.workplace-highlight-text h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a2333;
  margin: 0 0 16px;
}

.workplace-highlight-text p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #6c757d;
  margin: 0 0 12px;
}

.workplace-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.workplace-feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workplace-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.workplace-feature-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.workplace-feature-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a2333;
  margin: 0 0 8px;
}

.workplace-feature-card p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #6c757d;
  margin: 0;
}

/* オフィススライドショー */
.office-slideshow {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 20px;
}

.office-slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: block;
}

.office-slideshow .slide.active {
  opacity: 1;
}

.slide-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.slide-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.slide-dot.active {
  background: #fff;
  transform: scale(1.2);
}

.slide-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

/* 1日のスケジュール */
.daily-schedule {
  background: linear-gradient(135deg, #f8f9fb 0%, #eef1f5 100%);
  border-radius: 20px;
  padding: 48px 40px;
}

.daily-schedule h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a2333;
  margin: 0 0 32px;
  text-align: center;
  letter-spacing: 1px;
}

.schedule-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 600px;
  margin: 0 auto;
}

.schedule-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 16px 0;
  position: relative;
}

.schedule-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 39px;
  top: 44px;
  bottom: -16px;
  width: 2px;
  background: #dde1e6;
}

.schedule-time {
  flex-shrink: 0;
  width: 56px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a2333;
  color: #fff;
  border-radius: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 1;
}

.schedule-time.-break {
  background: #6c757d;
}

.schedule-time.-end {
  background: #3a5070;
}

.schedule-content {
  flex: 1;
  min-width: 0;
}

.schedule-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a2333;
  margin: 0 0 4px;
}

.schedule-content p {
  font-size: 0.8rem;
  color: #6c757d;
  margin: 0;
  line-height: 1.6;
}

/* -------------------------------------------------------------------
   3. PEOPLE — 社員インタビュー
   ------------------------------------------------------------------- */
.people-interviews {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.interview-card {
  display: flex;
  gap: 40px;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease;
}

.interview-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.interview-card:nth-child(even) {
  flex-direction: row-reverse;
}

.interview-profile {
  flex-shrink: 0;
  width: 200px;
  text-align: center;
}

.interview-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.interview-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a2333;
  margin: 0 0 4px;
}

.interview-role {
  font-size: 0.8rem;
  color: #6c757d;
  margin: 0 0 4px;
}

.interview-role-en {
  font-size: 0.75rem;
  font-family: 'Outfit', sans-serif;
  color: #adb5bd;
  letter-spacing: 0.03em;
  margin: 0 0 4px;
}

.interview-year {
  font-size: 0.75rem;
  color: #adb5bd;
}

.interview-body {
  flex: 1;
  min-width: 0;
}

.interview-catch {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1a2333;
  margin: 0 0 20px;
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
}

.interview-catch::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  background: #1a2333;
  border-radius: 2px;
}

.interview-qa {
  margin: 0;
}

.interview-q {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a2333;
  margin: 16px 0 8px;
  padding-left: 12px;
  border-left: 3px solid #dde1e6;
}

.interview-q:first-child {
  margin-top: 0;
}

.interview-a {
  font-size: 0.9rem;
  line-height: 1.9;
  color: #6c757d;
  margin: 0 0 8px;
}

/* -------------------------------------------------------------------
   4. GROWTH — 評価・成長支援
   ------------------------------------------------------------------- */
.growth-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.growth-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.growth-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.growth-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #f8f9fb 0%, #eef1f5 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.growth-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a2333;
  margin: 0 0 12px;
}

.growth-card p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #6c757d;
  margin: 0;
}

/* 評価プロセス */
.evaluation-process {
  background: linear-gradient(135deg, #1a2333 0%, #2d3a4f 100%);
  border-radius: 20px;
  padding: 48px 40px;
  color: #fff;
}

.evaluation-process h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 32px;
  text-align: center;
  letter-spacing: 1px;
}

.evaluation-steps {
  display: flex;
  gap: 0;
  align-items: flex-start;
  justify-content: center;
}

.eval-step {
  flex: 1;
  max-width: 220px;
  text-align: center;
  position: relative;
  padding: 0 16px;
}

.eval-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 24px;
  right: -8px;
  width: 16px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
}

.eval-step-num {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.eval-step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.eval-step p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* -------------------------------------------------------------------
   ページ下部ナビ
   ------------------------------------------------------------------- */
.culture-bottom-nav {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding-top: 40px;
}

.culture-bottom-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 36px;
  background: #fff;
  border-radius: 16px;
  text-decoration: none;
  color: #1a2333;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  min-width: 240px;
}

.culture-bottom-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  background-color: #1a2333;
  color: #fff;
}

.culture-bottom-link-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.culture-bottom-link:hover .culture-bottom-link-arrow {
  transform: translateX(6px);
}

/* -------------------------------------------------------------------
   レスポンシブ
   ------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  .culture-page {
    padding: 0 20px 60px;
  }

  .culture-section {
    padding: 50px 0;
  }

  .culture-section-title {
    font-size: 1.5rem;
  }

  /* Principles */
  .principles-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .principle-card {
    padding: 28px 24px;
  }

  .principle-num {
    font-size: 2.2rem;
  }

  /* Workplace */
  .workplace-highlight {
    flex-direction: column;
    gap: 24px;
  }

  .workplace-highlight-image {
    width: 100%;
  }

  .workplace-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .daily-schedule {
    padding: 32px 24px;
  }

  .schedule-item:not(:last-child)::after {
    left: 27px;
  }

  .schedule-time {
    width: 48px;
    font-size: 0.7rem;
  }

  /* People */
  .interview-card {
    flex-direction: column !important;
    padding: 28px 24px;
    gap: 24px;
  }

  .interview-profile {
    width: 100%;
  }

  .interview-avatar {
    width: 100px;
    height: 100px;
  }

  .interview-catch {
    font-size: 1.1rem;
  }

  /* Growth */
  .growth-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .evaluation-process {
    padding: 32px 20px;
  }

  .evaluation-steps {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .eval-step {
    max-width: 100%;
  }

  .eval-step:not(:last-child)::after {
    display: none;
  }

  /* Bottom nav */
  .culture-bottom-nav {
    flex-direction: column;
    gap: 12px;
  }

  .culture-bottom-link {
    min-width: auto;
  }
}
