@charset "utf-8";

/* フレームワーク版 画像拡大ポップアップ */
.img_popup {
  display: inline-block;
  width: calc(33.33333% - 13.33333px);
}
.img_popup img {
  width: 90%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 0.75;
}
.popup_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9998;
}
.popup_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: fixed;
  top: 50%;
  left: 0px;
  transform: translate(0%, -50%);
  padding: 20px;
  z-index: 9999;
  overflow: auto;
  text-align: center;
  width: 100%;
  height: 100%;
}
.popup_close {
  position: fixed;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 36px;
  color: #fff;
  background: #c0c0c0;
  border-radius: 20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-weight: bold;
  z-index: 19999;
  text-align: center;
}
.popup_image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.popup_copyright {
  margin-top: 10px;
  font-size: 12px;
  color: #666;
  text-align: center;
}
.popup_prev {
  position: fixed;
  top: calc(50% - 20px);
  left: 10px;
  z-index: 19999;
  cursor: pointer;
  font-size: 36px;
  color: #fff;
  text-align: center;
}
.popup_next {
  position: fixed;
  top: calc(50% - 20px);
  right: 10px;
  z-index: 19999;
  cursor: pointer;
  font-size: 36px;
  color: #fff;
  text-align: center;
}
/* フレームワーク版 画像拡大ポップアップ ここまで */

/* レビュー評価表示 */
.review_rate_info {
  display: flex;
  align-items: center;
  margin-top: 2px;
  position: relative;
  height: 33px;
}
.review_rate_img1, .review_rate_img1b {
  font-size: 22px;
  color: #e0ceaa;
  overflow: hidden;
  margin-left: -110px;
  display: none;
}
.review_rate_img2 {
  font-size: 22px;
  color: #cccccc;
  overflow: hidden;
  display: none;
}
.review_rate_count {
  font-size: 18px;
  /*font-weight:bold;*/
  color: #000;
  position: absolute;
  left: 120px;
  white-space: nowrap;
}
/* レビュー評価表示 ここまで */

/* 画像ファイルアップロード */
#jquery_upimage_preview {
  display: inline-block;
}
#jquery_upimage_label {
    width: 120px;
    height: 120px;
    background: url(/img/button_file.png) center center / contain no-repeat;
    display: inline-block;
    cursor: pointer;
}
#jquery_upimage_label input{
    display: none;
}
#jquery_upimage_preview img{
  height: 120px;
  margin-right: 4px;
  object-fit: cover;
}
/* 画像ファイルアップロード ここまで */