/* 会社情報ページ専用スタイル */

/* 会社概要セクション */
.company-overview {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  position: relative;
  overflow: hidden;
}

/* 情報カード */
.info-card {
  background: white;
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #14b8a6 0%, #3b82f6 100%);
}

.info-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  transform: translateY(-0.5rem);
}

/* 情報テーブル */
.info-table {
  width: 100%;
}

.info-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.3s ease;
}

.info-row:hover {
  background: #f9fafb;
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  font-weight: 700;
  color: #1f2937;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.info-label i {
  color: #14b8a6;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.info-value {
  color: #4b5563;
  line-height: 1.8;
}

.info-value ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-value ul li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.info-value ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 6px;
  height: 6px;
  background: #14b8a6;
  border-radius: 50%;
}

/* アクセスマップセクション */
.access-section {
  background: white;
  position: relative;
}

.map-container {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  height: 450px;
  background: #e5e7eb;
  position: relative;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
}

/* 沿革セクション */
.history-section {
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.history-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.history-line {
  position: absolute;
  left: 60px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #14b8a6 0%, #3b82f6 100%);
}

.history-item {
  position: relative;
  padding-left: 120px;
  margin-bottom: 3rem;
  transition: all 0.3s ease;
}

.history-item:hover {
  transform: translateX(0.5rem);
}

.history-year {
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #14b8a6;
  font-family: 'Courier New', monospace;
}

.history-dot {
  position: absolute;
  left: 52px;
  top: 0.5rem;
  width: 18px;
  height: 18px;
  background: white;
  border: 3px solid #14b8a6;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1);
  transition: all 0.3s ease;
}

.history-item:hover .history-dot {
  transform: scale(1.3);
  box-shadow: 0 0 0 8px rgba(20, 184, 166, 0.15);
}

.history-content {
  background: white;
  padding: 1.5rem 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #14b8a6;
}

.history-month {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.history-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.6;
}

/* 認定・受賞セクション */
.awards-section {
  background: white;
}

.award-card {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  border: 2px solid #e5e7eb;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}

.award-card:hover {
  border-color: #14b8a6;
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.15);
  transform: translateY(-0.5rem);
}

.award-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #14b8a6 0%, #3b82f6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 20px rgba(20, 184, 166, 0.3);
}

.award-year {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.award-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.6;
}

/* セクションタイトル */
.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.section-title p {
  color: #6b7280;
  font-size: 1.125rem;
}

.section-title-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #14b8a6 0%, #3b82f6 100%);
  margin: 0 auto;
  border-radius: 2px;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .info-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .info-card {
    padding: 2rem 1.5rem;
  }

  .history-item {
    padding-left: 80px;
  }

  .history-year {
    font-size: 1rem;
    width: 60px;
  }

  .history-line {
    left: 40px;
  }

  .history-dot {
    left: 32px;
  }

  .history-content {
    padding: 1rem 1.5rem;
  }

  .map-container {
    height: 300px;
  }
}

/* 背景デコレーション */
.bg-decoration {
  position: absolute;
  opacity: 0.05;
  pointer-events: none;
  font-size: 15rem;
  font-weight: 700;
  color: #14b8a6;
  z-index: 0;
}

.bg-decoration.top-right {
  top: -2rem;
  right: -2rem;
}

.bg-decoration.bottom-left {
  bottom: -2rem;
  left: -2rem;
}
