body {
  font-family: "Helvetica Neue", "Helvetica", "Arial", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "MS PGothic", sans-serif;
  font-weight: 400;
  color: #2c3e50;
  background-color: #f5f5f0;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

#hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #f5f5f0 0%, #e8e8e0 100%);
}

.hero-content {
  max-width: 800px;
  padding: 0 2rem;
}

.logo-container {
  margin-bottom: 3rem;
  padding-top: 2rem;
  background: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.logo-image {
  max-width: 300px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.hero-tagline {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: #34495e;
  max-width: 600px;
  margin: 0 auto;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section-title {
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 3rem;
  color: #2c3e50;
  text-transform: uppercase;
}

#about-section {
  background: #ffffff;
  padding: 5rem 0;
}

.about-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-content h2 {
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
  color: #2c3e50;
  text-align: center;
  text-transform: uppercase;
}

.about-content p {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #34495e;
  text-align: justify;
}

#founder-section {
  background: #f8f9fa;
  padding: 5rem 0;
}

.founder-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.founder-content h2 {
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  color: #2c3e50;
  text-align: center;
  text-transform: uppercase;
}

.founder-content h3 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: #e74c3c;
  text-align: center;
  font-style: italic;
}

.founder-content p {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #34495e;
  text-align: justify;
}

#philosophy-section {
  background: #ffffff;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.philosophy-item {
  padding: 3rem 2rem;
  background: #f8f9fa;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.philosophy-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.philosophy-item h3 {
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: #e74c3c;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.philosophy-item p {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #34495e;
}

#company-section {
  background: #2c3e50;
  color: #ffffff;
  padding: 5rem 0;
}

.company-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.company-container h2 {
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  margin-bottom: 3rem;
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
}

.company-info {
  max-width: 600px;
  margin: 0 auto;
}

.company-info dl {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1.5rem 2rem;
  align-items: baseline;
}

.company-info dt {
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-weight: 600;
  color: #ecf0f1;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #34495e;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}

.company-info dd {
  font-family: "Georgia", "Times New Roman", serif;
  color: #bdc3c7;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .logo-image {
    max-width: 250px;
  }
  .logo-container {
    padding: 1.5rem;
  }
  .hero-tagline {
    font-size: 1.1rem;
  }
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .company-info dl {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .company-info dt {
    border-bottom: none;
    font-weight: 700;
    color: #e74c3c;
  }
  .about-content h2,
  .founder-content h2,
  .company-container h2 {
    font-size: 1.5rem;
  }
  .about-content p,
  .founder-content p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .logo-image {
    max-width: 200px;
  }
  .logo-container {
    padding: 1rem;
  }
  .hero-tagline {
    font-size: 1rem;
  }
}/*# sourceMappingURL=index.css.map */