@charset "Shift_JIS";

/* 写真ギャラリー用CSS */
.pictureGallery {
  line-height: 1.5;
  overflow: hidden;
}
.pictureGallery__listWrap {
  position: relative;
}
.pictureGallery__list, /* slick適用前の崩れ防止 */
.pictureGallery__list .slick-track {
  display: flex;
}
.pictureGallery__list.slick-slider {
  display: block;
}
.pictureGallery__listItem {
  position: relative;
  flex: 0 0 740px;
}
.pictureGallery__listItem:focus {
  outline: none;
}
.pictureGallery__img,
.pictureGallery__thumbImg {
  display: block;
  position: relative;
  padding-bottom: 75%;
}
.pictureGallery__img img,
.pictureGallery__thumbImg img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pictureGallery__comments {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 10px 8px;
  background-color: rgba(0, 0, 0, .6);
  color: #fff;
  overflow-wrap: break-word;
  box-sizing: border-box;
}

/* スライドボタン */
.pictureGallery__prevBtn,
.pictureGallery__nextBtn {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 34px;
  height: 80px;
  margin: auto;
}
.pictureGallery__nextBtn {
  right: 0;
}
.pictureGallery__prevBtn > button,
.pictureGallery__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;
}
.pictureGallery__prevBtn > button {
  border-radius: 0 4px 4px 0;
}
.pictureGallery__nextBtn > button {
  border-radius: 4px 0 0 4px;
}
.pictureGallery__prevBtn > button::before,
.pictureGallery__nextBtn > button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 14px;
  height: 24px;
  margin: auto;
}
.pictureGallery__prevBtn > button::before {
  background: url('/ou/d/cs/pc/image/icon_chevron_left_white.svg') no-repeat 0 0 / 14px auto;
}
.pictureGallery__nextBtn > button::before {
  background: url('/ou/d/cs/pc/image/icon_chevron_right_white.svg') no-repeat 0 0 / 14px auto;
}

/* サムネイル */
.pictureGallery__thumbListWrap {
  margin-top: 15px;
  overflow-y: hidden;
  overflow-x: auto;
}
.pictureGallery__thumbList {
  display: flex;
}
.pictureGallery__thumbListItem {
  flex: 0 0 80px;
  cursor: pointer;
}
.pictureGallery__thumbListItem:not(:last-of-type) {
  margin-right: 8px;
}
.pictureGallery__thumbListItem:hover {
  opacity: .6;
}
.pictureGallery__thumbListItem.isCurrent {
  position: relative;
  cursor: default;
  pointer-events: none;
}
.pictureGallery__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;
}

/* もっとみるリンク */
.pictureGallery__moreLink {
  margin-top: 16px;
}