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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Noto Sans JP", sans-serif;
  color: #222;
  background: #fff;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.hero {
  padding: 100px 0;
  text-align: center;
}

.subtitle {
  color: #666;
  margin: 15px 0 30px;
}

.cta-btn {
  background: #d81b60;
  color: #fff;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 6px;
}

.site-header, .site-footer {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.partial-divider {
  width: 120px;          /* controls how long the line is */
  height: 2px;
  background-color: #d81b60; /* or #eee for subtle */
  border: none;
  margin: 40px auto;     /* centers it */
}