#top-services {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 50px;
  flex-wrap: nowrap;
}

.image-container {
  flex: 1;
  max-width: 50%;
}

.image-container img {
  max-width: 100%;
  height: auto;
  display: block;
}

.text-container {
  flex: 1;
  max-width: 50%;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.text-container h2 {
  margin: 0 0 15px;
  font-size: 1.8em;
}

.text-container p {
  margin: 0;
  line-height: 1.8;
  font-size: 1em;
}
#typewriter-text.typing {
  white-space: pre-wrap;
  display: inline-block;
  border-right: 2px solid black;
  font-size: 1em;
  line-height: 1.8;
  text-align: left;
}

#typewriter-text.done {
  border-right: none;
}



/* モバイル対応: 画像を非表示にし、テキストを全幅で表示 */
@media (max-width: 768px) {
  #top-services {
    flex-direction: column;
    padding: 30px 30px 0 30px;
  }

  .image-container.sp_none {
    display: none;
  }

  .text-container {
    max-width: 100%;
    text-align: center;
  }

  .text-container h2 {
    font-size: 1.5em;
  }

  .text-container p {
    font-size: 0.95em;
  }
}
