/* ヒーローセクション */
.hero-section {
  position: relative;
  background-color: #fff;
  color: var(--text-color);
  padding: 80px 0;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-left {
  width: 550px;
  padding-right: 30px;
}

.hero-right {
  width: 730px;
}

.hero-image {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
}

.hero-title {
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 20px;
  line-height: 1.3;
  text-align: center;
  color: #000000;
  text-transform: lowercase;
}

.hero-description {
  font-size: 15px;
  margin: 0;
  line-height: 237%;
  text-align: center;
  color: #000000;
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
}
