/* ---------------------------------------
  MODAL :: ADD TO WISHLIST
--------------------------------------- */
#bookmarkListModal .modal_inner {
  width: 520px;
  padding: 50px;
}
#bookmarkListModal .title {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.025em;
  text-align: center;
  line-height: 1.0;
  margin-bottom: 20px;
}

#bookmarkListModal .bookmarkList-header {
    display: flex;
    border-top: 1px dotted #c0c0c0;
}
#bookmarkListModal .bookmarkList-header figure {
    margin: 5px 10px 5px 10px;
    height: 80px;
}
#bookmarkListModal .bookmarkList-header img {
    flex-shrink: 0;
    text-align: center;
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
}
#bookmarkListModal .bookmarkList-header span {
    line-height: 80px;
    vertical-align: middle;
    vertical-align: middle;
}

#bookmarkListModal .bookmarkList-body {
  border-top: 1px solid #ECECEC;
}
#bookmarkListModal .bookmarkList-body dl {
  display: block;
  padding: 11px 30px 11px 10px;
  border-bottom: 1px solid #ECECEC;
  position: relative;
  font-size: 0;
  letter-spacing: -1em;
}

#bookmarkListModal .bookmarkList-body dl .name  {
  display: inline-block;
  width: 204px;
  font-size: 11px;
  letter-spacing: 0.06em;
  vertical-align: middle;
}

#bookmarkListModal .bookmarkList-body dl .bookmark {
    display: inline-block;
    width: 176px;
    font-size: 11px;
    letter-spacing: 0.06em;
    vertical-align: middle;
    padding-right: 0px;
    
}

#bookmarkListModal .bookmarkList-body a.item:hover {
  opacity: 1 !important;
}
#bookmarkListModal .bookmarkList-body a.item:hover:before {
  background: #F7F7F7;
}


/* BOOKMARKLINK */
#bookmarkListModal .bookmark .bookmark-item {
    margin: 0 0 20px;
    position: relative;
}
#bookmarkListModal #bookmarklink {
    display: block;
    width: 40px;
    position: absolute;
    top: calc(100% + 2px);
    right: -8px;
    top: -8px;
    transform: translateZ(0);
}
#bookmarkListModal #bookmarklink:before {
  content: '';
  display: block;
  padding-top: 100%;
}
#bookmarkListModal #bookmarklink .btn_bookmark_ {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  text-indent: 100%;
  animation: none 0.5s ease-in-out both;
}
#bookmarkListModal #bookmarklink .btn_bookmark_.is-not-favorite {
  animation-name: bookmarklinkAnimationNotFavorite;
}
#bookmarkListModal #bookmarklink .btn_bookmark_.is-favorite {
  animation-name: bookmarklinkAnimationFavorite;
}
#bookmarkListModal #bookmarklink .btn_bookmark_:before,
#bookmarkListModal #bookmarklink .btn_bookmark_:after {
  content: '';
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  right: 0px;
  bottom: 0;
}
#bookmarkListModal #bookmarklink .btn_bookmark_:before {
  background-image: url(/img/icon/wishlist_inactive.png?d=202208);
}
#bookmarkListModal #bookmarklink .btn_bookmark_:after {
  background-image: url(/img/icon/wishlist_active.png?d=202208);
}
#bookmarkListModal #bookmarklink .btn_bookmark_:not(.is-not-favorite):before,
#bookmarkListModal #bookmarklink .btn_bookmark_:not(.is-favorite):after {
  opacity: 0;
  visibility: hidden;
}
@keyframes bookmarklinkAnimationNotFavorite {
  0% { transform: scale(0.3); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}
@keyframes bookmarklinkAnimationFavorite {
  0% { transform: scale(0.3); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}