/* =========================================================
  動画プレイヤー
========================================================= */
video {
  width: 100%;
}

.movie-content {
  position: relative;
  max-width: 722px;
  margin: 0 auto;
  cursor: pointer;

  .movie-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  &:hover .movie-play {
    background: var(--White);
    border-color: var(--FS_primary);

    .icon-play::after {
      background: var(--FS_primary);
    }
  }
}

/* ▼▼▼ _icon.scss の下記該当箇所を書き換えてください ▼▼▼ */
.icon-play::after {
  display: flex;
}
@media screen and (max-width: 979px) {
  .movie-play {
    width: 56px;
    height: 56px;
  }
  .icon-play::after {
    width: 20px;
    height: 20px;
  }
}
/* ▲▲▲ _icon.scss ここまで ▲▲▲ */



/* =========================================================
  個別css
========================================================= */
.radius-rtlb-20 {
  border-radius: 0 20px 0 20px;
}

.anc-link-box {
  padding: 40px 94px;
  border-radius: 0 20px 0 20px;
}
@media screen and (max-width: 979px) {
  .anc-link-box {
    padding: 24px 30px;
  }
}

.business-list {
  display: flex;
  gap: 32px;
  li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 6px;
    background: var(--FS_Bg_lightblue);
    width: 100%;
    max-width: 157px;
    max-height: 140px;
  }
  span {
    margin-bottom: 10px;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--FS_primary);
    text-align: center;
    line-height: 1.4;
  }
  img {
    max-width: 70px;
  }
}
@media screen and (max-width: 979px) {
  .business-list {
    flex-direction: column;
    gap: 8px;
    li {
      flex-direction: row;
      gap: 24px;
      max-width: 100%;
      max-height: auto;
      min-height: 80px;
    }
    span {
      margin-bottom: 0;
      font-size: 1.6rem;
    }
    img {
      max-width: 60px;
    }
  }
}


.business-list-type2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  figure {
    display: flex;
    align-items: center;
    justify-content: center;
    img {
      width: auto;
    }
  }
  span {
    font-size: 1.3rem;
    color: var(--FS_text_bluegray);
  }
}
@media screen and (max-width: 979px) {
  .business-list-type2 {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 16px;
  }
}



