/* WordPress テーマ対応 Step Global CSS */
/* このコードをテーマのstyle.cssまたは独立したCSSファイルに追加してください */

/* カスタムプロパティ（CSS変数）- WordPress Customizer で編集可能 */
:root {
  --step-global-corporate-blue: #2563EB;
  --step-global-deep-blue: #1E40AF;
  --step-global-warm-amber: #F59E0B;
  --step-global-success-green: #10B981;
  --step-global-text-dark: #1F2937;
  --step-global-bg-light: #F8FAFC;
  --step-global-font-jp: 'Noto Sans JP', sans-serif;
}

/* 基本スタイル */
.step-global-landing {
  font-family: var(--step-global-font-jp);
  line-height: 1.6;
  color: var(--step-global-text-dark);
}

.step-global-header {
  background: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.step-global-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.step-global-header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.step-global-header .logo {
  font-size: 24px;
  font-weight: bold;
  color: var(--step-global-corporate-blue);
}

.step-global-header .main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.step-global-header .main-nav a {
  text-decoration: none;
  color: #6B7280;
  transition: color 0.3s ease;
}

.step-global-header .main-nav a:hover {
  color: var(--step-global-corporate-blue);
}

.step-global-header .cta-btn {
  background: var(--step-global-corporate-blue);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.step-global-header .cta-btn:hover {
  background: var(--step-global-deep-blue);
}

/* ヒーローセクション */
.step-global-hero {
  background: linear-gradient(135deg, var(--step-global-corporate-blue), var(--step-global-deep-blue));
  color: white;
  padding: 80px 0;
}

.step-global-hero .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.step-global-hero .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.step-global-hero h1 {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 16px;
}

.step-global-hero .highlight {
  color: var(--step-global-warm-amber);
}

.step-global-hero .subtitle {
  font-size: 20px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
}

.step-global-hero .description {
  font-size: 18px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.8);
}

.step-global-hero .cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.step-global-hero .btn {
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.step-global-hero .btn-primary {
  background: var(--step-global-warm-amber);
  color: white;
}

.step-global-hero .btn-primary:hover {
  background: #D97706;
}

.step-global-hero .btn-secondary {
  background: white;
  color: var(--step-global-corporate-blue);
}

.step-global-hero .btn-secondary:hover {
  background: #F3F4F6;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
  .step-global-header .header-content {
    flex-direction: column;
    height: auto;
    padding: 16px 0;
  }
  
  .step-global-header .main-nav {
    flex-direction: column;
    gap: 16px;
  }
  
  .step-global-hero .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .step-global-hero h1 {
    font-size: 32px;
  }
  
  .step-global-hero .cta-buttons {
    justify-content: center;
  }
}

/* WordPress 固有のスタイル調整 */
.step-global-landing .wp-block-group {
  margin: 0;
}

.step-global-landing .wp-block-columns {
  margin: 0;
}

/* カスタマイザー対応 */
.step-global-landing.custom-colors {
  --step-global-corporate-blue: var(--wp-custom-color-corporate-blue, #2563EB);
  --step-global-deep-blue: var(--wp-custom-color-deep-blue, #1E40AF);
  --step-global-warm-amber: var(--wp-custom-color-warm-amber, #F59E0B);
  --step-global-success-green: var(--wp-custom-color-success-green, #10B981);
}

/* 印刷用スタイル */
@media print {
  .step-global-header,
  .step-global-footer {
    display: none;
  }
  
  .step-global-hero {
    background: white;
    color: black;
  }
}