@charset "Shift_JIS";

/* 写真モーダル用CSS */
.pictureModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #3b1800;
  font-family: -apple-system, BlinkMacSystemFont, YuGothic, '\30D2\30E9\30AE\30CE\89D2\30B4\0020\0050\0072\006F\004E\0020\0057\0033', 'Hiragino Kaku Gothic ProN', '\30E1\30A4\30EA\30AA', Meiryo, '\FF2D\FF33\0020\FF30\30B4\30B7\30C3\30AF', 'MS PGothic', sans-serif;
  line-height: 1.5;
  overflow-wrap: break-word;
  z-index: 1001;
}
.pictureModal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .6);
}
.pictureModal__inner {
  position: relative;
  top: 50%;
  width: 950px;
  max-height: calc(100% - 40px);
  margin: auto;
  padding: 20px 0;
  border-radius: 4px;
  background: #fff;
  transform: translateY(-50%);
}
.pictureModal__basicTitle {
  position: relative;
  margin: 0 105px;
  padding-left: 12px;
  font-size: 18px;
  font-weight: bold;
}
.pictureModal__basicTitle::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  height: calc(100% - 3px);
  margin: auto;
  border-radius: 2px;
  background: #e77611;
}
.pictureModal__contents {
  max-height: calc(100vh - 127px);
  margin-top: 20px;
  padding: 0 105px;
  border-top: 1px solid #e0dbd7;
  overflow-x: hidden;
  overflow-y: auto;
}
.pictureModal__contentsInner {
  position: relative;
  width: 740px;
}
.pictureModal__list {
  overflow: hidden;
}
.pictureModal__list .slick-track {
  display: flex;
}
.pictureModal__pictureContent {
  position: relative;
}
.pictureModal__picture,
.pictureModal__thumb {
  display: block;
  position: relative;
  padding-bottom: 75%;
}
.pictureModal__picture img,
.pictureModal__thumb img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pictureModal__page {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  width: 60px;
  margin: 0 auto;
  border-radius: 4px;
  background: rgba(0, 0, 0, .6);
  color: #fff;
  line-height: 28px;
  text-align: center;
  box-sizing: border-box;
}
.pictureModal__infoContent {
  margin-top: 16px;
}
.pictureModal__comments,
.pictureModal__date {
  margin-top: 4px;
}

/* いいねボタン */
.pictureModal__nice {
  display: flex;
  margin-top: 16px;
}
.pictureModal__niceBtn {
  display: block;
  width: 80px;
  height: 24px;
  padding: 0;
  border: 1px solid #938c89;
  border-radius: 4px;
  background: linear-gradient(#fff, #eae6e5);
  color: #3b1800;
  font-size: 12px;
  font-weight: bold;
  line-height: 22px;
  cursor: pointer;
}
.pictureModal__niceBtn:hover {
  background: linear-gradient(#f4f0ef, #ddd6d3);
  color: #595656;
}
.isNice .pictureModal__niceBtn {
  border-color: #ccc;
  background: #ccc;
  color: #fff;
}
.pictureModal__niceNum {
  position: relative;
  top: -1px;
  margin-left: 9px;
  padding: 0 8px;
  border: 1px solid #918b8a;
  border-radius: 4px;
  line-height: 24px;
}
.pictureModal__niceNum::before {
  content: '';
  position: absolute;
  top: 7px;
  left: -5px;
  border-top: 5px solid transparent;
  border-right: 5px solid #918b8a;
  border-bottom: 5px solid transparent;
}
.pictureModal__niceNum::after {
  content: '';
  position: absolute;
  top: 7px;
  left: -4px;
  border-top: 5px solid transparent;
  border-right: 5px solid #fff;
  border-bottom: 5px solid transparent;
}

/* サムネイル */
.pictureModal__thumbListWrap {
  position: absolute;
  top: 0;
  width: 100%;
  margin-top: calc(75% + 16px);
  overflow-y: hidden;
  overflow-x: auto;
}
.pictureModal__thumbList {
  display: flex;
}
.pictureModal__thumbListItem {
  flex: 0 0 80px;
  cursor: pointer;
}
.pictureModal__thumbListItem:not(:last-of-type) {
  margin-right: 8px;
}
.pictureModal__thumbListItem:hover {
  opacity: .6;
}
.pictureModal__thumbListItem.isCurrent {
  position: relative;
  cursor: default;
  pointer-events: none;
}
.pictureModal__thumbListItem.isCurrent::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #e78a13;
  box-sizing: border-box;
  z-index: 1;
}

/* スライドボタン */
.pictureModal__slideBtn {
  position: absolute;
  top: 0;
  width: 100%;
}
.pictureModal__prevBtn,
.pictureModal__nextBtn {
  position: absolute;
  top: 0;
  width: 34px;
  height: 80px;
  margin-top: calc((75% - 80px) / 2);
}
.pictureModal__nextBtn {
  right: 0;
}
.pictureModal__prevBtn > button,
.pictureModal__nextBtn > button {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(145, 139, 138, .6);
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
}
.pictureModal__prevBtn > button {
  border-radius: 0 4px 4px 0;
}
.pictureModal__nextBtn > button {
  border-radius: 4px 0 0 4px;
}
.pictureModal__prevBtn > button::before,
.pictureModal__nextBtn > button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 14px;
  height: 24px;
  margin: auto;
}
.pictureModal__prevBtn > button::before {
  background: url('/ou/d/cs/pc/image/icon_chevron_left_white.svg') no-repeat 0 0 / 14px auto;
}
.pictureModal__nextBtn > button::before {
  background: url('/ou/d/cs/pc/image/icon_chevron_right_white.svg') no-repeat 0 0 / 14px auto;
}

/* 閉じるボタン */
.pictureModal__closeBtn {
  position: absolute;
  top: 26px;
  right: 20px;
}
.pictureModal__closeBtn > span {
  display: block;
  width: 16px;
  height: 16px;
  background: url('/ou/d/cs/pc/image/icon_close_round_gray.svg') no-repeat 0 0 / 16px auto;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
}