@charset "utf-8";

/********** 共通 **********/
.sub-menu-list-item.is_album .sub-menu-list-item__link {
  box-shadow: 0 -2px 0 #ee8aa4 inset;
  font-weight: bold;
  color: #ee8aa4;
}

li {
  list-style: none;
}

.text.is_emphasis {
  font-weight: bold;
  color: #e97996;
}

.text.is_warning {
  color: #ff3333;
}





/********** 内容 **********/
/***** アルバム一覧 *****/
.album-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 10px;
}

.album {
  width: 200px;
  border-radius: 16px;
  box-shadow: 0 2px 10px #dddddd;
  overflow: hidden;
}

.album:hover {
  cursor: pointer;
}


/*** サムネイル ***/
.album-thumbnail-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.album-thumbnail-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.album-thumbnail {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #d9d9d9;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: all 300ms 0s ease;
}

.album-thumbnail[data-file-name]:not([style*="cloudfront"]) {
  background-image: url(https://assets.angel-live.com/common/agent/img/loading.png) !important;
  background-size: 32px 32px;
  background-position: center;
  background-repeat: no-repeat;
}

.album-thumbnail-wrap .album-thumbnail {
  background-image: url(https://assets.angel-live.com/common/images/icon_block.svg);
  background-size: 30px 30px;
  background-position: center;
  background-repeat: no-repeat;
}

.album-thumbnail:hover {
  transform: scale(1.15);
  cursor: pointer;
}

.album-thumbnail-wrap .album-thumbnail:hover {
  transform: initial;
  cursor: initial;
}


/*** 詳細 ***/
.album-detail {
  padding: 8px;
}

.album-detail-title {
  display: -webkit-box;
  min-height: 3em;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5em;
  text-overflow: ellipsis;
  overflow: hidden;
  word-wrap: break-word;
  word-break: break-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}


/*** 画像・動画数 ***/
.album-detail-image-count-wrap {
  display: flex;
  align-items: center;
  column-gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1;
  color: #999999;
}

.album-detail-image-count {
  position: relative;
  display: block;
  padding-left: 16px;
}

.album-detail-image-count::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: block;
  content: '';
  width: 14px;
  height: 14px;
  background: url(https://assets.angel-live.com/common/images/icon_image_border.svg) 0 0 no-repeat;
  background-size: cover;
  filter: brightness(0) saturate(100%) invert(71%) sepia(1%) saturate(0%) hue-rotate(155deg) brightness(88%) contrast(84%);
}

.album-detail-image-count.is_video::before {
  background-image: url(https://assets.angel-live.com/common/images/icon_video.svg);
}


/*** 女性情報 ***/
.album-detail-profile {
  display: flex;
  align-items: center;
  column-gap: 8px;
}

.album-detail-profile__image {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.album-detail-profile__name {
  font-size: 14px;
  font-weight: bold;
}



/***** ページネーション *****/
/*** ページャー ***/
.pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 40px auto 20px;
  color: #ee8aa4;
}

.pager-item:not(.is_dot) {
  list-style: none;
  box-sizing: border-box;
  width: 42px;
  height: 42px;
  border: 1px solid #ffd4de;
  border-radius: 42px;
  box-shadow: 0 3px 5px rgba(255, 225, 234, .5);
  font-size: 12px;
  font-weight: bold;
  line-height: 42px;
  text-align: center;
  color: inherit;
  cursor: pointer;
}

.pager-item.is_current {
  background: linear-gradient(to right, #ff88a7, #fa87cc);
  color: #ffffff;
  cursor: auto;
  pointer-events: none;
}

.pager-item .pager-item__inner {
  display: block;
  width: 100%;
  height: 42px;
  line-height: 42px;
  text-decoration: none;
  color: inherit;
}

.pager-item.is_prev .pager-item__inner,
.pager-item.is_next .pager-item__inner {
  position: relative;
  width: 100%;
  cursor: pointer;
}

.pager-item.is_prev .pager-item__inner::before {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  content: '';
  width: 2px;
  height: 9px;
  background: #ee8aa4;
  border-radius: 5px;
}

.pager-item.is_prev .pager-item__inner::after {
  position: absolute;
  top: 23px;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  content: '';
  width: 2px;
  height: 9px;
  background: #ee8aa4;
  border-radius: 5px;
}

.pager-item.is_next .pager-item__inner::before {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  content: '';
  width: 2px;
  height: 9px;
  background: #ee8aa4;
  border-radius: 5px;
}

.pager-item.is_next .pager-item__inner::after {
  position: absolute;
  top: 23px;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  content: '';
  width: 2px;
  height: 9px;
  background: #ee8aa4;
  border-radius: 5px;
}




/***** 購入アルバムなし *****/
.section {
  line-height: 1.5;
}

.section:first-child {
  margin: 60px 0;
}

.section-title {
  margin-bottom: 15px;
  border-bottom: 2px solid #ee8aa4;
  font-size: 20px;
}

.section-text {
  font-size: 16px;
}

.section-text:not(:last-child) {
  margin-bottom: 20px;
}

a.section-btn {
  box-sizing: border-box;
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 17px 24px;
  background: linear-gradient(to right, #ff88a7, #fa87cc);
  border-radius: 50px;
  box-shadow: 0 0 10px #ffe0e7;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  color: #ffffff;
  cursor: pointer;
}

a.section-btn:hover {
  text-decoration: none;
}

.section-note-list-item {
  list-style: none;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 16px;
}

.section-note-list-item:not(:last-child) {
  margin-bottom: 5px;
}