* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  background: #d6d6d6;
  padding: 0 20px;
}

header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #ea8600;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  color: #1f2937;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #ea8600;
}

.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-primary {
  background: #ea8600;
  color: #ffffff;
}

.btn-primary:hover {
  background: #d97706;
}

.btn-outline {
  border: 2px solid #ea8600;
  color: #ea8600;
  background: transparent;
}

.btn-outline:hover {
  background: #ea8600;
  color: #ffffff;
}

.hero {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1f2937;
}

.hero p {
  font-size: 20px;
  color: #6b7280;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.features {
  padding: 80px 0;
  background: #ffffff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.feature-card {
  padding: 32px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s;
}

.feature-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 48px;
  color: #ea8600;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1f2937;
}

.feature-card p {
  color: #6b7280;
  line-height: 1.8;
}

.pricing {
  padding: 80px 0;
  background: #f9fafb;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1f2937;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 60px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s;
}

.pricing-card.featured {
  border-color: #ea8600;
  transform: scale(1.05);
}

.pricing-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pricing-badge {
  display: inline-block;
  background: #ea8600;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.pricing-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 48px;
  font-weight: 700;
  color: #ea8600;
  margin-bottom: 8px;
}

.pricing-period {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 32px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid #f3f4f6;
  color: #4b5563;
}

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

.pricing-features li i {
  color: #10b981;
  margin-right: 8px;
}

.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #ea8600 0%, #d97706 100%);
  color: #ffffff;
  text-align: center;
}

.cta h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.cta .btn {
  background: #ffffff;
  color: #ea8600;
}

.cta .btn:hover {
  background: #f9fafb;
}

footer {
  background: #1f2937;
  color: #ffffff;
  padding: 40px 0;
  text-align: center;
}

footer p {
  color: #9ca3af;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }
  .hero p {
    font-size: 18px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card.featured {
    transform: none;
  }
}/*# sourceMappingURL=welcome.css.map */