/* 部門紹介ページ専用スタイル */

.dept-card {
  display: flex;
  flex-direction: column;
  gap: 1em;
  max-width: 800px;
  margin: 0 auto;
}

.dept-icon {
  font-size: 3em;
  line-height: 1;
  margin-bottom: 0.25em;
}

.dept-card h3 {
  font-size: 1.3em;
  color: #ff6b6b;
  margin: 0 0 0.5em;
}

.dept-card p {
  margin: 0;
  line-height: 1.8;
}

.dept-card ul {
  margin: 0.5em 0 0 1.5em;
  padding: 0;
}

.dept-card li {
  margin-bottom: 0.5em;
}

.intro article p {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.8;
}

/* フェードイン用（メインstyle.cssの.fade-inと連携） */
.section.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-in-out;
}

.section.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* レスポンシブ */
@media (max-width: 768px) {
  .dept-icon {
    font-size: 2.5em;
  }
}
