body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f7f7f7;
  color: #333;
}

/* ヒーローセクション */
.hero {
  position: relative;
  width: 100%;
  height: 1vh;
  display: flex;
  align-items: center;
  justify-content: center;
    padding-top: 500px; /* ここで下にずらす量を調整 */
  background-color: #f7f7f7; /* 背景色はお好みで */
}

.hero-text {
  text-align: center;
}

.hero-title {
  position: absolute;
  top: 90%; /* ↑この値で下に移動させられる */
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: #1d1d1d;
  text-align: center;
  z-index: 1;
  margin: 0;
}

.hero-subtitle {
  position: absolute;
  top: 95%; /* タイトルの下に配置 */
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  color: #555;
  text-align: center;
  opacity: 0.9;
  margin: 0;
}


/* テレコセクション */
.section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.image-box, .text-box {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  position: relative;
}

.image-box img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.text-box h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.text-box p {
  font-size: 16px;
  line-height: 1.8;
}

.number {
  position: absolute;
  font-size: 100px;
  font-weight: bold;
  color: #e0e0e0;
  opacity: 0.3;
  z-index: 0;
}

.right-number .number {
  top: 10px;
  right: 30px;
}

.left-number .number {
  top: 10px;
  left: 30px;
}

@media (max-width: 768px) {
  .section {
    flex-direction: column;
  }
  .hero-title {
    font-size: 28px;
  }
  .hero-subtitle {
    font-size: 16px;
  }

  .number {
    font-size: 60px;
  }
}