@charset "UTF-8";
:root {
  --primary-color: #4998db;
  --font-size-base: 14px;
  --small-spacing: 4px;
  --base-spacing: 12px;
  --large-spacing: 20px;
  --x-large-spacing: 40px;
  --heading-font-size: 28px;
  --heading-font-size-xs: 1.2em;
  --link-hover-opacity: .6;
  --link-hover-transition: opacity .3s ease;
  --border-base-color: #C7C7C7;
  --border-checked-color: black;
  --border-base-radius: 8px;
  --form-border-radius: 4px;
  --sns-icon-size: 20px;
  --sns-icon-size-large: 24px;
  --btn-radius:10rem;
  --gird-gap: 32px;
  --btn-pad-y: var(--base-spacing);
  --btn-pad-x: var(--base-spacing);
  --btn-pad-y-sm: 8px;
  --btn-pad-x-sm: var(--base-spacing);
  --btn-pad-y-lg: 18.5px;
  --btn-pad-x-lg: var(--large-spacing);
  --staff-card-image-aspect:0.75;
  --staff-card-image-radius: var(--border-base-radius);
  --staff-card-lh: 1.4;
  --input-color:#000;
  --input-bg: white;
  --input-border-color: #000;
  --input-border-radius: var(--form-border-radius);
  --input-focus-color:#000;
  --input-focus-bg: white;
  --input-focus-border-color:#000;
  --input-disabled-color:#707070;
  --input-disabled-bg:#D3D3D3;
  --input-disabled-border-color: var(--input-disabled-bg);
  --input-placeholder-color: #666666;
  --input-pad-x: var(--btn-pad-x);
  --input-pad-y: var(--btn-pad-y);
}
@media screen and (max-width: 991.98px) {
  :root {
    --gird-gap: 15px;
  }
}

.staffGalleryDetail {
  margin: 60px auto;
  font-size: var(--font-size-base);
  overflow: hidden;
  width: 100%;
  gap: var(--x-large-spacing);
  font-size: var(--font-size-base);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767.98px) {
  .staffGalleryDetail {
    margin: var(--base-spacing) auto 60px;
    gap: var(--large-spacing);
  }
}

.staffGalleryDetailCollectionList, .staffGalleryDetailOtherCollectionList {
  padding: 0 var(--x-large-spacing);
}
@media screen and (max-width: 767.98px) {
  .staffGalleryDetailCollectionList, .staffGalleryDetailOtherCollectionList {
    padding: 0 var(--large-spacing);
  }
}

.staffGalleryDetailContentProduct__title, .staffGalleryDetailContentComment__title, .staffGalleryDetailCollectionList__title, .staffGalleryDetailOtherCollectionList__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.62;
  margin-bottom: var(--large-spacing);
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767.98px) {
  .staffGalleryDetailContentProduct__title, .staffGalleryDetailContentComment__title, .staffGalleryDetailCollectionList__title, .staffGalleryDetailOtherCollectionList__title {
    font-size: 18px;
  }
}

.staffGalleryDetailCarouselMain__item, .staffGalleryDetailCarouselThumb__item, .staffGalleryDetailCollectionList__media, .staffGalleryDetailOtherCollectionListItem__media {
  overflow: hidden;
  position: relative;
}
.staffGalleryDetailCarouselMain__item > img, .staffGalleryDetailCarouselThumb__item > img, .staffGalleryDetailCollectionList__media > img, .staffGalleryDetailOtherCollectionListItem__media > img {
  display: block;
  max-width: 100%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  position: relative;
  z-index: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.staffGalleryDetailCarouselMain__item::after, .staffGalleryDetailCarouselThumb__item::after, .staffGalleryDetailCollectionList__media::after, .staffGalleryDetailOtherCollectionListItem__media::after {
  content: "";
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.staffGalleryDetailContentProduct__btn, .staffGalleryDetailContentProductCard__btn, .staffGalleryDetailCollectionListFooter__btn, .staffGalleryDetailOtherCollectionListFooter__btn {
  --btn-bg: white;
  --btn-color:#000;
  --btn-border-color:#000;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border: 1px solid var(--btn-border-color);
  background-color: var(--btn-bg);
  border-radius: var(--btn-radius);
  color: var(--btn-color);
  line-height: 1;
  gap: var(--btn-pad-x);
}
.staffGalleryDetailContentProduct__btn, .staffGalleryDetailCollectionListFooter__btn, .staffGalleryDetailOtherCollectionListFooter__btn {
  padding: var(--btn-pad-y-lg) var(--btn-pad-x-lg);
}
.staffGalleryDetailContentProductCard__btn {
  padding: var(--btn-pad-y-sm) var(--btn-pad-x-sm);
}
.staffGalleryDetailContentProduct__btn:hover, .staffGalleryDetailContentProductCard__btn:hover, .staffGalleryDetailCollectionListFooter__btn:hover, .staffGalleryDetailOtherCollectionListFooter__btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  opacity: 1;
}
.staffGalleryDetailContentProduct__btn:hover svg, .staffGalleryDetailContentProductCard__btn:hover svg, .staffGalleryDetailCollectionListFooter__btn:hover svg, .staffGalleryDetailOtherCollectionListFooter__btn:hover svg {
  fill: white;
}

.staffGalleryDetailContentProductCard__btn::after, .staffGalleryDetailCollectionListFooter__btn::after, .staffGalleryDetailOtherCollectionListFooter__btn::after {
  content: "";
  height: 0.35em;
  width: 0.35em;
  border: 1px solid;
  border-color: transparent transparent var(--btn-color) var(--btn-color);
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}
.staffGalleryDetailContentProductCard__btn:hover::after, .staffGalleryDetailCollectionListFooter__btn:hover::after, .staffGalleryDetailOtherCollectionListFooter__btn:hover::after {
  border-color: transparent transparent white white;
}

.staffGalleryDetailContentProduct__btn {
  --block-btn-max-width: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: var(--block-btn-max-width);
}

.staffGalleryDetailCollectionList__footer, .staffGalleryDetailOtherCollectionList__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: var(--base-spacing);
  margin-top: var(--x-large-spacing);
}

.staffGalleryDetailCollectionListFooter__btn, .staffGalleryDetailOtherCollectionListFooter__btn {
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-width: 200px;
  max-width: 300px;
}

.staffGalleryDetailContentComment__tag {
  --tag-bg: white;
  --tag-border-color:#EFEFEF;
  --tag-color: #000;
  --tag-spacing: var(--small-spacing);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: var(--tag-spacing);
}
.staffGalleryDetailContentCommentTag__item {
  background-color: var(--tag-bg);
  color: var(--tag-color);
  border: 1px var(--tag-border-color) solid;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px;
  gap: var(--small-spacing);
  max-width: 100%;
}
.staffGalleryDetailContentCommentTag__item button {
  display: inline-block;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  inline-size: -webkit-fit-content;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: var(--tag-color);
  font-size: 10px;
}
.staffGalleryDetailContentCommentTag__item button:focus {
  outline: none;
}
.staffGalleryDetailContentCommentTag__item button:hover {
  opacity: 0.2;
}

.staffGalleryDetail__breadcrumb {
  font-size: 12px;
  color: #222;
  -webkit-padding-before: 8px;
          padding-block-start: 8px;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 var(--x-large-spacing);
}
@media screen and (max-width: 767.98px) {
  .staffGalleryDetail__breadcrumb {
    padding: 0 var(--large-spacing);
  }
}
.staffGalleryDetail__breadcrumb a {
  color: inherit;
  -webkit-transition: var(--link-hover-transition);
  transition: var(--link-hover-transition);
  text-decoration: none;
}
.staffGalleryDetail__breadcrumb > :not(:last-child):after {
  content: " / ";
}

.staff {
  --staff-image:40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--base-spacing);
  line-height: var(--staff-card-lh);
}
.staff__header {
  width: 100%;
  min-width: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 var(--staff-image);
          flex: 0 0 var(--staff-image);
  max-width: var(--staff-image);
}
.staff__body {
  min-width: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.staff__footer {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
.staff__data span:not(:last-child)::after {
  content: " / ";
}
.staff__thum {
  overflow: hidden;
  position: relative;
  width: var(--staff-image);
  aspect-ratio: 1/1;
  border-radius: 50%;
}
.staff__thum > img {
  display: block;
  max-width: 100%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  position: relative;
  z-index: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.staff__name {
  font-weight: 700;
}
.staff__data {
  color: #3D3D3D;
}
.staff__icon {
  width: var(--sns-icon-size);
  font-size: var(--sns-icon-size);
}
.staff__shop {
  font-weight: 400;
  color: #3D3D3D;
  background-color: #F7F8F8;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 2px;
  font-size: 12px;
}
.staff__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-weight: bold;
}
.staffLink__name {
  min-width: 0;
  overflow-wrap: break-word;
}

.staffGalleryDetail {
  --block-gap: 60px;
}
/*-----------------------------------------------

header

-----------------------------------------------*/
.staffGalleryDetail__header {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  grid-auto-flow: row;
  -ms-grid-columns: 40% var(--block-gap) 1fr;
  grid-template-columns: 40% 1fr;
  gap: var(--block-gap);
}
@media screen and (min-width: 768px) {
  .staffGalleryDetail__header {
    padding: 0 var(--x-large-spacing);
  }
}
@media screen and (max-width: 767.98px) {
  .staffGalleryDetail__header {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
}

@media screen and (max-width: 767.98px) {
  .staffGalleryDetailContent {
    padding: 0 var(--large-spacing);
  }
}

/*-----------------------------------------------

メインカルーセル

-----------------------------------------------*/
.staffGalleryDetailCarousel__main {
  margin-bottom: 22px;
}

.staffGalleryDetailCarouselMain__item {
  aspect-ratio: 0.75;
}

/*-----------------------------------------------

サムネイルカルーセル

-----------------------------------------------*/
@media screen and (max-width: 767.98px) {
  .staffGalleryDetailCarousel__thumb {
    padding: 0 var(--large-spacing);
  }
}
.staffGalleryDetailCarousel__thumb .swiper-slide.swiper-slide-thumb-active .staffGalleryDetailCarouselThumb__item {
  border-color: #000;
}

.staffGalleryDetailCarouselThumb__item {
  aspect-ratio: 0.75;
  cursor: pointer;
  border: 1px solid transparent;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(20% - var(--thumb-gap));
          flex: 0 0 calc(20% - var(--thumb-gap));
  position: relative;
}

.staffGalleryDetailCarouselThumb__mark {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #EFEFEF;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 1em;
  position: absolute;
  z-index: 1;
  top: var(--small-spacing);
  right: var(--small-spacing);
}
.staffGalleryDetailCarouselThumb__mark .staffGalleryDetailCarouselThumb__icon {
  display: inline-block;
  margin-left: 2px;
  width: 1em;
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%23707070%22%20class%3D%22bi%20bi-play-fill%22%20viewBox%3D%220%200%2016%2016%22%3E%0A%20%20%3Cpath%20d%3D%22m11.596%208.697-6.363%203.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01%201.233-.696l6.363%203.692a.802.802%200%200%201%200%201.393%22%2F%3E%0A%3C%2Fsvg%3E");
}

/*-----------------------------------------------

商品情報　staffGalleryDetailContent 

-----------------------------------------------*/
.staffGalleryDetailContent {
  min-width: 0;
  overflow: hidden;
  --content-gap: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--content-gap);
}

.staffGalleryDetailContent__product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--large-spacing);
  font-size: 13px;
}

.staffGalleryDetailContentProduct__title {
  margin: 0;
}

.staffGalleryDetailContentProduct__btn svg {
  width: 35px;
}

/*-----------------------------------------------

//商品のカード

-----------------------------------------------*/
.staffGalleryDetailContentProduct__card {
  width: 100%;
  font-size: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--x-large-spacing);
  padding: 12px 12px 20px;
  border: 1px solid var(--border-base-color);
  border-radius: var(--staff-card-image-radius);
}
@media screen and (max-width: 767.98px) {
  .staffGalleryDetailContentProduct__card {
    font-size: 14px;
    --card-gap: var(--small-spacing);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: var(--large-spacing);
  }
}

.staffGalleryDetailContentProductCard__header {
  min-width: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 clamp(10rem, 15.625vw, 25rem);
          flex: 0 0 clamp(10rem, 15.625vw, 25rem);
  width: clamp(10rem, 13.0208333333vw, 25rem);
}
@media screen and (max-width: 767.98px) {
  .staffGalleryDetailContentProductCard__header {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.staffGalleryDetailContentProductCard__body {
  min-width: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(100% - clamp(20rem, 16.6666666667vw, 25rem) - var(--card-gap));
          flex: 1 1 calc(100% - clamp(20rem, 16.6666666667vw, 25rem) - var(--card-gap));
  width: calc(100% - clamp(20rem, 16.6666666667vw, 25rem) - var(--card-gap));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--small-spacing);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767.98px) {
  .staffGalleryDetailContentProductCard__body {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.staffGalleryDetailContentProductCard__btn {
  margin-top: 10px;
  font-size: 13px;
}
@media screen and (max-width: 767.98px) {
  .staffGalleryDetailContentProductCard__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin: 0 auto;
  }
}

/*-----------------------------------------------

//コメント

-----------------------------------------------*/
.staffGalleryDetailContent__comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--large-spacing);
}
@media screen and (max-width: 767.98px) {
  .staffGalleryDetailContent__comment {
    font-size: 14px;
  }
}
.staffGalleryDetailContent__comment .staff {
  --staff-image:60px;
  min-width: 260px;
}
.staffGalleryDetailContent__comment .staff__data, .staffGalleryDetailContent__comment .staff__shop {
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.staffGalleryDetailContentComment__title {
  margin: 0;
}

.staffGalleryDetailContentComment__item {
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 767.98px) {
  .staffGalleryDetailContentComment__item {
    font-size: 14px;
  }
}

.staffGalleryDetailContentComment__date {
  font-weight: 600;
  font-size: 12px;
  margin-bottom: var(--small-spacingg);
}

.staffGalleryDetailContentCommentTag__item {
  font-size: 12px;
}

/*-----------------------------------------------

body

-----------------------------------------------*/
.staffGalleryDetail__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--block-gap);
}

/*-----------------------------------------------

ユーザーのコレクション

-----------------------------------------------*/
.staffGalleryDetailCollectionList__grid {
  display: -ms-grid;
  display: grid;
  gap: 25px;
  -ms-grid-columns: minmax(0, 1fr) 25px minmax(0, 1fr) 25px minmax(0, 1fr) 25px minmax(0, 1fr) 25px minmax(0, 1fr);
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
@media screen and (max-width: 767.98px) {
  .staffGalleryDetailCollectionList__grid {
    gap: 15px;
    -ms-grid-columns: minmax(0, 1fr) 15px minmax(0, 1fr);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.staffGalleryDetailCollectionList__item {
  position: relative;
}

.staffGalleryDetailCollectionList__media {
  width: var(--staff-image);
  position: relative;
  z-index: 0;
  border-radius: var(--border-base-radius);
}

.staffGalleryDetailCollectionListItem__mark {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #EFEFEF;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  font-size: 1.25em;
  position: absolute;
  z-index: 1;
  top: var(--base-spacing);
  right: var(--base-spacing);
}
.staffGalleryDetailCollectionListItem__mark .staffGalleryDetailCollectionListItemMark__icon {
  display: inline-block;
  margin-left: 2px;
  width: 1em;
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%23707070%22%20class%3D%22bi%20bi-play-fill%22%20viewBox%3D%220%200%2016%2016%22%3E%0A%20%20%3Cpath%20d%3D%22m11.596%208.697-6.363%203.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01%201.233-.696l6.363%203.692a.802.802%200%200%201%200%201.393%22%2F%3E%0A%3C%2Fsvg%3E");
}

@media screen and (max-width: 767.98px) {
  .staffGalleryDetailCollectionListFooter__btn {
    font-size: 15px;
  }
}

/*-----------------------------------------------

その他のコレクション

-----------------------------------------------*/
.staffGalleryDetailOtherCollectionList__grid {
  display: -ms-grid;
  display: grid;
  gap: 25px;
  -ms-grid-columns: minmax(0, 1fr) 25px minmax(0, 1fr) 25px minmax(0, 1fr) 25px minmax(0, 1fr) 25px minmax(0, 1fr);
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
@media screen and (max-width: 767.98px) {
  .staffGalleryDetailOtherCollectionList__grid {
    gap: 32px 15px;
    -ms-grid-columns: minmax(0, 1fr) 15px minmax(0, 1fr);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.staffGalleryDetailOtherCollectionList__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--base-spacing);
}
.staffGalleryDetailOtherCollectionList__item .staff__name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.staffGalleryDetailOtherCollectionList__item .staff__shop {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.staffGalleryDetailOtherCollectionListItem__header {
  display: block;
  position: relative;
}

.staffGalleryDetailOtherCollectionListItem__media {
  width: var(--staff-image);
  position: relative;
  z-index: 0;
  border-radius: var(--border-base-radius);
}

.staffGalleryDetailOtherCollectionListItem__body {
  display: block;
}
.staffGalleryDetailOtherCollectionListItem__body .staff {
  --staff-image:60px;
}

.staffGalleryDetailOtherCollectionListItem__mark {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #EFEFEF;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  font-size: 1.25em;
  position: absolute;
  z-index: 1;
  top: var(--base-spacing);
  right: var(--base-spacing);
}
.staffGalleryDetailOtherCollectionListItem__mark .staffGalleryDetailOtherCollectionListItem__icon {
  display: inline-block;
  margin-left: 2px;
  width: 1em;
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%23707070%22%20class%3D%22bi%20bi-play-fill%22%20viewBox%3D%220%200%2016%2016%22%3E%0A%20%20%3Cpath%20d%3D%22m11.596%208.697-6.363%203.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01%201.233-.696l6.363%203.692a.802.802%200%200%201%200%201.393%22%2F%3E%0A%3C%2Fsvg%3E");
}

@media screen and (max-width: 767.98px) {
  .staffGalleryDetailOtherCollectionListFooter__btn {
    font-size: 15px;
  }
}