/* ==========================================
   リセット & ベーススタイル
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* カラーパレット */
  --primary-color: #667eea;
  --primary-dark: #5568d3;
  --secondary-color: #764ba2;
  --accent-color: #f093fb;
  --text-dark: #1a202c;
  --text-gray: #4a5568;
  --text-light: #718096;
  --bg-light: #f7fafc;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  --success-color: #48bb78;
  --warning-color: #ed8936;
  --beta-color: #ff6b6b;

  /* スペーシング */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;

  /* フォント */
  --font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* ボーダー半径 */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;

  /* シャドウ */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* ==========================================
   ヘッダー / ナビゲーション
   ========================================== */
.header {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm) var(--spacing-md);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary-color);
  text-decoration: none;
}

.logo {
  height: 40px;
  width: auto;
}

.logo-text {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.nav-link {
  color: var(--text-gray);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--primary-color);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--text-dark);
  transition: all 0.3s;
}

/* ==========================================
   ボタン
   ========================================== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: white;
}

.btn-hero {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  box-shadow: var(--shadow-xl);
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.15);
}

.btn-cta {
  padding: 1rem 3rem;
  font-size: 1.25rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  box-shadow: var(--shadow-xl);
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.15);
}

.btn-pricing {
  width: 100%;
  margin-top: var(--spacing-md);
  background-color: var(--bg-light);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-pricing:hover {
  background-color: var(--primary-color);
  color: white;
}

.btn-pricing-featured {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  border: none;
}

/* ==========================================
   ヒーローセクション
   ========================================== */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: var(--spacing-2xl) 0;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  color: white;
}

.beta-badge {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  flex-wrap: wrap;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: 700;
}

.badge-beta {
  background-color: var(--beta-color);
  color: white;
}

.badge-info {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: var(--spacing-xl);
  opacity: 0.95;
}

.hero-cta {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  flex-wrap: wrap;
}

.hero-note {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* モックアップスタイル */
.mockup-placeholder {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  padding: var(--spacing-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mockup-card {
  background: white;
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-xl);
}

.mockup-header {
  height: 12px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: var(--radius-sm);
  margin-bottom: var(--spacing-sm);
}

.mockup-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.mockup-item {
  height: 40px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  animation: pulse 2s ease-in-out infinite;
}

.mockup-item:nth-child(2) {
  animation-delay: 0.2s;
}

.mockup-item:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* スクリーンショットスタイル */
.hero-image-link {
  position: relative;
  display: block;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.hero-screenshot {
  width: 100%;
  max-width: 600px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
  display: block;
}

.hero-image-link:hover .hero-screenshot {
  transform: scale(1.02);
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(102, 126, 234, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: var(--radius-xl);
}

.hero-image-link:hover .hero-image-overlay {
  opacity: 1;
}

.hero-zoom-text {
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.detail-screenshot {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

/* ==========================================
   セクション共通スタイル
   ========================================== */
section {
  padding: var(--spacing-2xl) 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: var(--spacing-lg);
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 1.125rem;
  text-align: center;
  color: var(--text-gray);
  margin-bottom: var(--spacing-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================
   問題提起セクション
   ========================================== */
.problem-section {
  background-color: var(--bg-light);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.problem-card {
  background: white;
  padding: var(--spacing-lg);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.problem-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
}

.problem-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--text-dark);
}

.problem-card p {
  color: var(--text-gray);
  line-height: 1.6;
}

/* ==========================================
   特徴セクション
   ========================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

.feature-card {
  text-align: center;
  padding: var(--spacing-lg);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-md);
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.feature-icon svg {
  width: 40px;
  height: 40px;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-gray);
  line-height: 1.8;
}

/* ==========================================
   機能詳細セクション
   ========================================== */
.details-section {
  background-color: var(--bg-light);
}

.detail-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
  margin-bottom: var(--spacing-2xl);
}

.detail-item:last-child {
  margin-bottom: 0;
}

.detail-reverse {
  direction: rtl;
}

.detail-reverse > * {
  direction: ltr;
}

.detail-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--text-dark);
}

.detail-content p {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
}

.detail-features {
  list-style: none;
  padding: 0;
}

.detail-features li {
  padding: var(--spacing-sm) 0;
  color: var(--text-gray);
  font-size: 1.125rem;
}

.mockup-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-sm);
  padding: var(--spacing-md);
}

.mockup-column {
  background: rgba(102, 126, 234, 0.1);
  height: 200px;
  border-radius: var(--radius-md);
}

.mockup-chart {
  height: 200px;
  background: linear-gradient(to top, rgba(102, 126, 234, 0.3) 0%, rgba(102, 126, 234, 0.1) 100%);
  border-radius: var(--radius-md);
}

.mockup-table {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  padding: var(--spacing-md);
}

.mockup-table::before,
.mockup-table::after {
  content: '';
  height: 30px;
  background: rgba(102, 126, 234, 0.1);
  border-radius: var(--radius-sm);
}

/* ==========================================
   ターゲット別活用例
   ========================================== */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.use-case-card {
  background: white;
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s;
}

.use-case-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.use-case-icon {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-md);
}

.use-case-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--text-dark);
}

.use-case-card p {
  color: var(--text-gray);
  line-height: 1.8;
}

/* ==========================================
   料金セクション
   ========================================== */
.pricing-section {
  background-color: var(--bg-light);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: white;
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.pricing-featured {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-xl);
}

.pricing-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--bg-light);
  color: var(--primary-color);
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.pricing-badge-featured {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
}

.pricing-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--text-dark);
}

.pricing-price {
  margin-bottom: var(--spacing-md);
}

.price-amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-dark);
}

.price-period {
  font-size: 1.125rem;
  color: var(--text-gray);
}

.pricing-description {
  color: var(--text-gray);
  margin-bottom: var(--spacing-lg);
  font-size: 1.125rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: var(--spacing-lg);
}

.pricing-features li {
  padding: var(--spacing-sm) 0;
  color: var(--text-gray);
  border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-note {
  text-align: center;
  color: var(--text-light);
  font-size: 0.875rem;
  margin-top: var(--spacing-lg);
}

.pricing-disabled {
  opacity: 0.6;
  border-color: var(--border-color);
}

.pricing-disabled:hover {
  transform: none;
  box-shadow: var(--shadow-md);
}

.btn-disabled {
  background-color: var(--border-color);
  color: var(--text-light);
  border: none;
  cursor: not-allowed;
}

.btn-disabled:hover {
  background-color: var(--border-color);
  color: var(--text-light);
  transform: none;
}

/* ==========================================
   信頼・セキュリティセクション
   ========================================== */
.trust-section {
  background-color: var(--bg-light);
  padding: var(--spacing-2xl) 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

.trust-card {
  background: white;
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.trust-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
}

.trust-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
}

.trust-card p {
  color: var(--text-gray);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ==========================================
   CTAセクション
   ========================================== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  text-align: center;
  padding: var(--spacing-2xl) 0;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: var(--spacing-md);
}

.cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xl);
  opacity: 0.95;
}

.cta-buttons {
  margin-bottom: var(--spacing-md);
}

.cta-note {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* ==========================================
   フッター
   ========================================== */
.footer {
  background-color: var(--text-dark);
  color: white;
  padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-xl);
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  margin-bottom: var(--spacing-sm);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.footer-column h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: white;
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: var(--spacing-sm);
  transition: color 0.3s;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

/* ==========================================
   レスポンシブデザイン
   ========================================== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-image {
    order: -1;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .section-title {
    font-size: 1.875rem;
  }

  .detail-item,
  .detail-reverse {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .detail-reverse {
    direction: ltr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .cta-title {
    font-size: 1.875rem;
  }

  .cta-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--spacing-sm);
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .btn-hero,
  .btn-cta {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}
