body {
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0;
  color: #333;
  background: #fafafa;
  line-height: 1.8;
}

/* Header */
.hero {
  background: linear-gradient(120deg, #02ccba, #132d32);
  color: white;
  text-align: center;
  padding: 100px 20px 80px;
}

.hero-content h1 {
  font-size: 2.8em;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2em;
  opacity: 0.9;
}

/* Content Sections */
main {
  padding: 60px 20px;
}

section {
  max-width: 900px;
  margin: 0 auto 80px;
  text-align: center;
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

section h2 {
  font-size: 1.8em;
  color: #02ccba;
  margin-bottom: 25px;
}

section p {
  color: #555;
}

.diagram-img {
  width: 90%;
  max-width: 700px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin: 20px 0;
  transition: transform 0.3s ease;
}

.diagram-img:hover {
  transform: scale(1.03);
}

/* System Section */
.system ul {
  text-align: left;
  display: inline-block;
  margin-top: 20px;
  line-height: 1.8;
}

/* Equipment */
.equipment {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.equip-item {
  background: #02ccba;
  color: white;
  padding: 15px 25px;
  border-radius: 30px;
  font-weight: bold;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.lang {
  background: #132d32;
  color: white;
  padding: 6px 14px;
  border-radius: 5px;
  font-weight: bold;
}

/* Demo */
.demo iframe {
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Back Button */
.back-container {
  text-align: center;
  margin-top: 40px;
}

.back-button {
  display: inline-block;
  background: #02ccba;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  transition: background 0.3s ease, transform 0.3s ease;
}

.back-button:hover {
  background: #132d32;
  transform: translateY(-3px);
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #132d32;
  color: white;
  font-size: 0.9em;
}