/* ================================================
   WORKS PAGE STYLES
   ================================================ */

/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=M+PLUS+1p:wght@500;700;800&display=swap');

/* ================================================
   Hero Section
   ================================================ */

.hero-section {
  position: relative;
  background-color: #ffffff;
  padding: 5rem 1rem;
}

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

.hero-title {
  font-family: 'M PLUS 1p', 'Noto Sans JP', sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: #000000;
}

.hero-subtitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  color: #718096;
}

/* ================================================
   Content Section
   ================================================ */

.content-section {
  padding: 5rem 1rem;
  background-color: #f7fafc;
}

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

/* Introduction Block */
.intro-block {
  margin-bottom: 4rem;
}

.intro-title {
  font-family: 'M PLUS 1p', 'Noto Sans JP', sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--wedo-vibrant-blue);
  margin-bottom: 1.5rem;
}

.intro-lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 1rem;
}

.intro-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 1rem;
}

.intro-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1rem 1rem;
}

.intro-list li {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #4a5568;
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.intro-list li::before {
  content: "•";
  color: var(--wedo-vibrant-blue);
  font-size: 20px;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

/* Coming Soon */
.coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 1rem;
  text-align: center;
}

.coming-soon-text {
  font-family: 'M PLUS 1p', 'Noto Sans JP', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6;
  color: #a0aec0;
}

/* ================================================
   Tablet Responsive (max-width: 1024px)
   ================================================ */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 40px;
  }

  .intro-title {
    font-size: 36px;
  }

  .coming-soon-text {
    font-size: 28px;
  }
}

/* ================================================
   Desktop Responsive (min-width: 768px)
   ================================================ */

@media (min-width: 768px) {
  .hero-title {
    font-size: 48px;
  }

  .intro-title {
    font-size: 42px;
  }

  .coming-soon-text {
    font-size: 32px;
  }
}

/* ================================================
   Mobile Responsive (max-width: 767px)
   ================================================ */

@media (max-width: 767px) {
  .hero-section {
    padding: 3rem 1rem;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .content-section {
    padding: 3rem 1rem;
  }

  .intro-block {
    margin-bottom: 3rem;
  }

  .intro-title {
    font-size: 28px;
  }

  .intro-lead {
    font-size: 16px;
  }

  .intro-text {
    font-size: 15px;
  }

  .intro-text br {
    display: none;
  }

  .intro-list li {
    font-size: 15px;
  }

  .coming-soon {
    padding: 4rem 1rem;
  }

  .coming-soon-text {
    font-size: 24px;
  }
}
