body {
    font-family: 'Zen Maru Gothic', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ========================================
   会社概要ページ専用スタイル
   ======================================== */

/* ヒーローセクション */
.company-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
}

.company-hero-content {
  max-width: 900px;
}

.badge {
  display: inline-block;
  background: rgba(255, 120, 50, 0.15);
  color: #ff7832;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.company-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #ffffff, #ff7832);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.company-lead {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* 会社情報グリッド */
.company-grid {
  display: grid;
  gap: 2rem;
  margin: 4rem 0;
}

@media(min-width: 900px) {
  .company-grid-2 {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

/* 情報カード */
.info-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 120, 50, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: rgba(255, 120, 50, 0.4);
  box-shadow: 0 25px 50px rgba(255, 120, 50, 0.15);
  transform: translateY(-5px);
}

.info-card h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ff7832;
}

/* キーバリューグリッド */
.kv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(255, 120, 50, 0.15);
  border-radius: 12px;
  overflow: hidden;
}

.kv-item {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(255, 120, 50, 0.1);
  transition: background 0.3s ease;
}

.kv-item:nth-child(odd) {
  background: rgba(255, 120, 50, 0.05);
}

.kv-item:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.kv-item:hover {
  background: rgba(255, 120, 50, 0.1);
}

.kv-item:last-child,
.kv-item:nth-last-child(2) {
  border-bottom: none;
}

.kv-label {
  display: block;
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.kv-value {
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}

.kv-value a {
  color: #ff7832;
  text-decoration: none;
  transition: color 0.3s ease;
}

.kv-value a:hover {
  color: #ff9a56;
  text-decoration: underline;
}

/* チェックリスト */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  padding-left: 2rem;
  position: relative;
  margin: 1rem 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff7832;
  font-weight: 700;
  font-size: 1.2rem;
}

/* タイムライン */
.timeline {
  border-left: 3px solid rgba(255, 120, 50, 0.3);
  margin-left: 1rem;
  padding-left: 2rem;
}

.timeline-item {
  margin: 1.5rem 0;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.375rem;
  top: 0.4rem;
  width: 14px;
  height: 14px;
  background: #ff7832;
  border-radius: 50%;
  border: 3px solid #000;
  box-shadow: 0 0 0 3px rgba(255, 120, 50, 0.2);
}

.timeline-year {
  color: #ff7832;
  font-weight: 700;
  font-size: 1.1rem;
}

/* CTAセクション */
.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* 地図コンテナ */
.map-container {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 120, 50, 0.2);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(20%) brightness(0.9);
}

/* レスポンシブ */
@media (max-width: 768px) {
  .kv-grid {
    grid-template-columns: 1fr;
  }
  
  .company-grid-2 {
    grid-template-columns: 1fr;
  }
  
  .info-card {
    padding: 1.5rem;
  }
  
  .company-hero {
    padding: 100px 15px 60px;
  }
  
  .map-container {
    height: 300px;
  }
}

/* タブレット */
@media (max-width: 1024px) {
  .company-grid-2 {
    grid-template-columns: 1fr;
  }
}
