
.tab11 {
    margin-top: 4%;
    margin-left: 4%;
}
/* タブのスタイル */
.tab {
    cursor: pointer;
    padding: 10px;
    margin-right: 5px;
    background: #eee;
    display: inline-block;
  }
  
  /* アクティブなタブのスタイル */
  .active {
    background: #ccc;
  }
  
  /* タブの内容のスタイル */
  .content {
    display: none;
    padding: 10px;
    border: 1px solid #ccc;
  }
  
  /* アクティブな内容のスタイル */
  .active-content {
    display: block;
  }


  .slider-container {
    width: 800px;
    height: 400px;
    overflow: hidden;
    position: relative;
    margin: 20px auto;
    border-left: 1px solid black;
    border-bottom: 2px solid #00b170;
    border-right: 1px solid #00b170;
    border-top: 2px solid #000000;
}

.slides {
    display: flex;
    width: 100%;
    /* height: 100%; */
    position: absolute;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
}