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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  color: #333;
  background-color: #fff;
  line-height: 1.8;
  font-size: 16px;
}

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

.navbar {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}
.navbar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}
.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2c3e50;
  text-decoration: none;
  letter-spacing: -0.5px;
}
.navbar .nav-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.navbar .nav-menu a {
  color: #333;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}
.navbar .nav-menu a:hover {
  color: #e67e22;
}

.hero {
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0;
}
.hero .hero-overlay {
  text-align: center;
  color: white;
  padding: 2rem;
}
.hero .hero-overlay h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  line-height: 1.2;
}
.hero .hero-overlay p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}
.hero .hero-overlay .btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: #e67e22;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}
.hero .hero-overlay .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.section {
  padding: 5rem 0;
}
.section.concept {
  background-color: #fff;
}
.section.coworking {
  background-color: #f8f9fa;
}
.section.cafe {
  background-color: #fff;
}
.section.rental-space {
  background-color: #f8f9fa;
}
.section.info {
  background-color: #fff;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
  color: #2c3e50;
  letter-spacing: -0.5px;
}

.concept-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
  line-height: 2;
}
.concept-content p {
  margin-bottom: 1.5rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}
.card p {
  color: #666;
  line-height: 1.8;
}

.cafe-info {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
}
.cafe-info p {
  margin-bottom: 1.5rem;
}
.cafe-info .cafe-hours {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-radius: 8px;
}
.cafe-info .cafe-hours p {
  margin-bottom: 0.5rem;
}
.cafe-info .cafe-hours p:last-child {
  margin-bottom: 0;
}

.space-info {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
}
.space-info p {
  margin-bottom: 1.5rem;
}

.info-list {
  max-width: 900px;
  margin: 0 auto;
}

.info-item {
  background: white;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #e67e22;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.info-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.info-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #2c3e50;
}
.info-item p {
  color: #666;
}

.footer {
  background-color: #2c3e50;
  color: white;
  text-align: center;
  padding: 2.5rem 0;
}
.footer p {
  font-size: 0.9rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .hero .hero-overlay h1 {
    font-size: 2.2rem;
  }
  .hero .hero-overlay p {
    font-size: 1.1rem;
  }
  .nav-menu {
    gap: 1rem;
  }
  .nav-menu a {
    font-size: 0.85rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .section {
    padding: 3rem 0;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=main.css.map */
