/* ================================================
   ORGANIZATION PAGE STYLES
   ================================================ */

/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=M+PLUS+1p:wght@500;700;800&display=swap');

/* ================================================
   Hero Section
   ================================================ */

.hero-section {
  position: relative;
  background-color: #ffffff;
  padding: 5rem 1rem;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero-title {
  font-family: 'M PLUS 1p', 'Noto Sans JP', sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: #000000;
}

.hero-subtitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  color: #718096;
}

/* ================================================
   Introduction Section
   ================================================ */

.intro-section {
  padding: 5rem 1rem;
  background-color: #f7fafc;
}

.intro-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.intro-content {
  max-width: 48rem;
}

.intro-title {
  font-family: 'M PLUS 1p', 'Noto Sans JP', sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--wedo-vibrant-blue);
}

.intro-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 1rem;
}

/* ================================================
   Departments Section
   ================================================ */

.departments-section {
  padding: 5rem 1rem;
  background-color: #ffffff;
}

.departments-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.department-item {
  margin-bottom: 5rem;
}

.department-item:last-child {
  margin-bottom: 0;
}

.department-title {
  font-family: 'M PLUS 1p', 'Noto Sans JP', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  border-bottom: 4px solid var(--wedo-vibrant-blue);
  padding-bottom: 0.5rem;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.department-subtitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #718096;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.department-description {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 1.5rem;
  white-space: pre-line;
}

.department-details {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.department-details li {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #4a5568;
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.department-details li::before {
  content: "•";
  color: var(--wedo-vibrant-blue);
  font-size: 20px;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.department-note {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #718096;
  font-style: italic;
}

/* ================================================
   Tablet Responsive (max-width: 1024px)
   ================================================ */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 40px;
  }

  .intro-title {
    font-size: 36px;
  }

  .department-title {
    font-size: 32px;
  }
}

/* ================================================
   Desktop Responsive (min-width: 768px)
   ================================================ */

@media (min-width: 768px) {
  .hero-title {
    font-size: 48px;
  }

  .intro-title {
    font-size: 42px;
  }

  .department-title {
    font-size: 36px;
  }
}

/* ================================================
   Mobile Responsive (max-width: 767px)
   ================================================ */

@media (max-width: 767px) {
  .hero-section {
    padding: 3rem 1rem;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .intro-section {
    padding: 3rem 1rem;
  }

  .intro-title {
    font-size: 28px;
  }

  .intro-text {
    font-size: 15px;
  }

  .departments-section {
    padding: 3rem 1rem;
  }

  .department-item {
    margin-bottom: 3rem;
  }

  .department-title {
    font-size: 24px;
  }

  .department-subtitle {
    font-size: 16px;
  }

  .department-description,
  .department-details li {
    font-size: 15px;
  }
}
