.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;
  }
  
  /* モバイル対応 */
  @media (max-width: 768px) {
    .top-services {
      flex-direction: column;
      padding: 30px;
    }
  
    .info-con .top-services {
      flex-direction: column-reverse;
    }
  
    .image-container {
      /* display: none; */
    }
  
    .text-container {
      max-width: 100%;
      text-align: center;
    }
  
    .text-container h2 {
      font-size: 1.5em;
    }
  
    .text-container p {
      font-size: 0.95em;
    }
  }
  