/*スライダー用スタイル by Chat GPT*/
 .slider {
      position: relative;
      width: 100%;
      max-width: 800px;
      margin: 0 auto;
      overflow: hidden;
    }
    .slider-wrapper {
      display: flex;
      transition: transform 0.5s ease;
    }
    .slide {
      height: 300px;
      min-width: 100%;
      box-sizing: border-box;
    }
    .slide img {
      object-fit: cover;
      height: 100%;
      width: 100%;
      display: block;
      object-position: 50% 50%;
    }
    .controls {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
    }
    .control {
      /*background-color: rgba(0, 0, 0, 0.5);*/
      color: #fff;
      border: none;
      padding: 10px;
      cursor: pointer;
    }
    .control:hover {
      background-color: rgba(0, 0, 0, 0.8);
    }



    .image-carousel {
      width: 480px; /* 表示領域の幅を固定（例: 480px） */
      height: 60px;  /* 高さを60pxに設定 */
      overflow: hidden;
      position: relative;
      margin: 0 auto;  /* 横方向の中央揃え */
    }
    
    .flex-60-img {
      display: flex;
      transition: transform 0.5s ease-in-out;
      width: auto;
    }
    
    .flex-60-img .i-60-img {
      object-fit: cover;
      width: 25%;
      height: 60px;
      margin-right: 10px;
      opacity: 0;
      transition: opacity 0.5s ease-in-out;
    }
    
    /* Active images */
    .flex-60-img .i-60-img.active {
      opacity: 1;
    }
    