/* mold-design.css */

/* ワークフローセクション */
.workflow-section {
  background: linear-gradient(135deg, #f5fafd 60%, #e3f0fa 100%);
  padding: 60px 0 40px 0;
  box-shadow: 0 4px 24px rgba(52, 152, 219, 0.07);
}
.workflow-section .section-title {
  text-align: center;
  font-size: 3.5em;
  font-weight: 700;
  color: #1462b1;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
}
.workflow-timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 24px;
  margin-bottom: 20px;
}
.workflow-step {
  background: none;
  border-radius: 0;
  box-shadow: none;
  width: 110px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
  z-index: 1;
  animation: fadeInUp 0.7s both;
  padding: 0 4px;
}
.workflow-step:hover {
  transform: translateY(-8px) scale(1.07);
  box-shadow: 0 8px 32px rgba(52, 152, 219, 0.18);
  background: linear-gradient(135deg, #e3f0fa 60%, #f5fafd 100%);
}
.workflow-icon {
  font-size: 2.3em;
  margin-bottom: 8px;
  color: #3498db;
  transition: color 0.3s;
}
.workflow-label {
  margin-top: 8px;
  text-align: center;
  color: #1462b1;
  font-size: 1.05em;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.workflow-arrow {
  font-size: 2.2em;
  color: #3498db;
  margin: 0 8px;
  user-select: none;
  animation: fadeIn 1s both;
}
.workflow-note {
  text-align: center;
  color: #555;
  margin-top: 18px;
  font-size: 1.1em;
}
.workflow-img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 10px auto;
  box-shadow: 0 2px 12px rgba(52,152,219,0.10);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.workflow-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* 工程詳細セクション */
.process-detail-section {
  background: #fff;
  padding: 60px 0 40px 0;
}
.process-detail-section .section-title {
  text-align: center;
  font-size: 2em;
  color: #1462b1;
  margin-bottom: 40px;
}
.process-detail-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.process-detail-card {
  display: flex;
  align-items: center;
  background: #f5fafd;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(52, 152, 219, 0.07);
  overflow: hidden;
  transition: box-shadow 0.3s;
  animation: fadeInUp 0.8s both;
}
.process-detail-card.reverse {
  flex-direction: row-reverse;
}
.process-img {
  flex: 0 0 320px;
  height: 220px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e3f0fa;
}
.process-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 0 0;
  transition: transform 0.4s;
}
.process-detail-card:hover .process-img img {
  transform: scale(1.07);
}
.process-content {
  flex: 1 1 0%;
  padding: 32px 36px;
}
.process-content h3 {
  font-size: 1.3em;
  color: #1462b1;
  margin-bottom: 12px;
}
.process-content p {
  font-size: 1.08em;
  color: #333;
  line-height: 1.7;
}

/* 求人案内セクション */
.recruit-section {
  background: linear-gradient(135deg, #e3f0fa 60%, #f5fafd 100%);
  padding: 48px 0 60px 0;
  text-align: center;
}
.recruit-banner {
  display: inline-block;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(52, 152, 219, 0.10);
  padding: 32px 48px;
  margin: 0 auto;
  animation: fadeInUp 1s both;
}
.recruit-banner p {
  font-size: 1.2em;
  color: #1462b1;
  margin-bottom: 18px;
  font-weight: 600;
}
.recruit-link {
  display: inline-block;
  background: linear-gradient(90deg, #3498db, #1462b1);
  color: #fff;
  padding: 12px 36px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
  box-shadow: 0 2px 12px rgba(52, 152, 219, 0.13);
}
.recruit-link:hover {
  background: linear-gradient(90deg, #1462b1, #3498db);
  transform: translateY(-3px) scale(1.05);
}

/* レスポンシブ対応 */
@media (max-width: 900px) {
  .workflow-timeline {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #3498db #f5fafd;
  }

  .workflow-timeline::-webkit-scrollbar {
    height: 8px;
  }
  .workflow-timeline::-webkit-scrollbar-track {
    background: #f5fafd;
    border-radius: 4px;
  }
  .workflow-timeline::-webkit-scrollbar-thumb {
    background-color: #3498db;
    border-radius: 4px;
  }

  .workflow-step {
    flex-shrink: 0;
    width: 100px;
  }

  .workflow-img {
    width: 80px;
    height: 80px;
  }

  .workflow-label {
    font-size: 0.9em;
  }

  .workflow-arrow {
    margin: 0 16px;
  }

  .process-detail-card, .process-detail-card.reverse {
    flex-direction: column;
  }
  .process-img {
    width: 100%;
    height: 180px;
  }
  .process-content {
    padding: 24px 16px;
  }
}
@media (max-width: 600px) {
  .workflow-step {
    width: 90px;
  }
  .workflow-img {
    width: 70px;
    height: 70px;
  }
  .workflow-label {
    font-size: 0.85em;
  }
  .process-img {
    height: 120px;
  }
  .recruit-banner {
    padding: 18px 8px;
  }
} 