@charset "utf-8";

/* ---------------------------------------------------- */
/* 8ページ目 */
/* ---------------------------------------------------- */
.shop-wrap{
  z-index: 20;
  position: relative;
  transform: none;
  left: 0;
  top: 0;
  overflow: visible;
  display: flex;
  align-items: end;
  max-width: 64vw;
  width: 100%;
  height: 100%;
  margin-bottom: 50px;

  & .slide-content {
    position: relative;
    padding: 0;
    width: 350px;
    min-width: 200px;
    height: 250px;
    min-height: 200px;

    & a {
      display: block;
      padding: 0;
      width: 350px;
      height: 100%;
    }

    & img {
      width: 350px;
      height: 150px;
      object-fit: cover;
      overflow: hidden;
      box-shadow: 1px 3px 3px #aaa;
    }

    & h4 {
      position: absolute;
      bottom: 0;
      color: #fff;
      filter: drop-shadow(0 1px 1px #000);
      font-weight: normal;
    }
}

#page-8 {
  margin: 100px auto 0;
  max-width: 1600px;

  & .content {
    margin-top: 60px;
  }
}

#gallery-select {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;

  & li {
    list-style: none;
    text-align: center;
    align-self: center;
    width: 120px;
    height: 32px;
    padding-top: 2px;
    font-size: 18px;
    color: #fff;
    background-color: #ff9900;
    border-radius: 0.5rem;
  }

  & li.active {
    background-color: #af6901;
  }

  & li:hover {
    opacity: 0.6;
    color: #6d4200;
    cursor: pointer;
  }
}

#gallery {
  display: flex;
  flex-wrap: wrap;

  & .card {
    max-width: 20%;
    border: none;
    padding: 0 2.5px;
    margin-bottom: 20px;
  }

  & .group01.nonSelect {
    display: none;
  }

  & .group02.nonSelect {
    display: none;
  }

  & .group03.nonSelect {
    display: none;
  }

  & .card-img-top {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center;
  }

  & .card-text {
    font-size: 13px;
  }

  & .card-text.isAppear {
    display: block;
  }

  & .card-text th img {
    width: 30px;
    height: 20px;
    margin-right: 8px;
  }

  & .card-name {
    display: inline-flex;
  }
}

/* レスポンシブ対応 1400px未満*/
@media screen and (max-width:1399px) {

  #gallery {
    & .card {
      max-width: 25%;
    }
  }
}

/* レスポンシブ対応 1200px未満*/
@media screen and (max-width:1199px) {

  #gallery {
    & .card {
      max-width: 33%;
    }
  }
}

/* レスポンシブ対応 992px未満*/
@media screen and (max-width:991px) {

  #page-8 {
    margin-top: 80px;
  }
}

/* レスポンシブ対応 576px未満*/
@media screen and (max-width:575px) {

  #page-8 {
    margin-top: 20px;

    & .content {
      margin-top: 60px;
    }
  }

  #gallery {
    & .card {
      max-width: 50%;
    }

    & .card-img-top {
      height: 105px;
    }

    & .card-body {
      padding: 5px 3px;
    }

    & .card-text {
      font-size: 12px;

      & th img {
        width: 20px;
        height: 15px;
      }
    }
  }

  #gallery-select {
    gap: 10px;

    & li {
      height: 24px;
      padding-top: 2px;
      font-size: 14px;
    }
  }
}}