* {
    box-sizing: border-box;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  /*body {
    padding: 30px 50px;
  } */
  /*h1 {
    margin-bottom: 100px;
  }
  h2 {
    margin-bottom: 50px;
  }
  */
  /* スライドする要素 */
  .content_gl01 {
    width: 300px;
    height: 300px;
  }
  .content_gl01:nth-child(1) {
    background-color: #e4e4e4;
  }
  .content_gl01:nth-child(2) {
    background-color: #e4e4e4;
  }
  .content_gl01:nth-child(3) {
    background-color: #e4e4e4;
  }
  .content_gl01:nth-child(4) {
    background-color: #e4e4e4;
  }
  .content_gl01:nth-child(5) {
    background-color: #e4e4e4;
  }
  .content_gl01:nth-child(6) {
    background-color: #e4e4e4;
  }
  .content_gl01:nth-child(7) {
    background-color: #e4e4e4;
  }
  .content_gl01:nth-child(8) {
    background-color: #e4e4e4;
  }
  /* スライドレールの枠 */
  .wrap {
    overflow: hidden;
    display: flex;
    align-items: center;
    height: 340px;
    margin-bottom: 50px;
  }
  /* content4つをまとめたスライドブロック */
  .slideshow_001 {
    display: flex;
    -webkit-animation: loop-slide 40s infinite linear 1s both;
    animation: loop-slide 40s infinite linear 1s both;
  }
  @-webkit-keyframes loop-slide {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  @keyframes loop-slide {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  /* ホバー時に動きを止める（パターン2・3）*/
  .slide-paused:hover .slideshow_001 {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
  }
  /* ホバー時の装飾（パターン3） */
  .content-hover {
    transition: all 0.2s;
    margin-right: 20px;
  }
  .content-hover:hover {
    transform: translateY(-20px);
    border-radius: 0 10%;
    box-shadow: 0 3px 10px 0 #333;
    opacity: 0.8;
    cursor: pointer;
  }

