@charset "UTF-8";
/* ===========================
   ファイルアップロードエリア
=========================== */
.wpcr-upload-area .wpcr-upload-label {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}
.wpcr-upload-area .wpcr-upload-box {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 2px dashed #ccc;
  border-radius: 8px;
  background: #fafafa;
  cursor: pointer;
  width: 100%;
}
.wpcr-upload-area .wpcr-upload-box .wpcr-upload-icon {
  font-size: 28px;
}
.wpcr-upload-area .wpcr-upload-box .wpcr-upload-hint {
  font-size: 12px;
  color: #888;
}

/* ===========================
   プレビューエリア
=========================== */
.wpcr-preview-area {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.wpcr-preview-area .wpcr-preview-item {
  position: relative;
  display: inline-block;
}
.wpcr-preview-area .wpcr-preview-item img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  border: 1px solid #ddd;
}
.wpcr-preview-area .wpcr-preview-item video {
  width: 160px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  border: 1px solid #ddd;
}

/* ===========================
   削除ボタン
=========================== */
.wpcr-remove-btn {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  background: #ff4d4d;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  cursor: pointer;
  padding: 0;
}

/* ===========================
   表示ボタン
=========================== */
.wpcr3_show_btn {
  border: none;
  background: initial;
  text-decoration: underline;
}

.wpcr3_show_btn:hover {
  border: none;
  background: initial;
}

/* ===========================
   エラーメッセージ
=========================== */
.wpcr-error-msg {
  margin-top: 8px;
  color: #ff4d4d;
  font-size: 12px;
}

/* ===========================
   レビュー表示：メディアエリア
=========================== */
.wpcr-media-display {
  display: flex !important;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
  margin-bottom: 12px;
  align-items: flex-start;
}
.wpcr-media-display img {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 6px;
  border: 1px solid #ddd;
}
@media screen and (max-width: 768px) {
  .wpcr-media-display {
    flex-direction: column;
    gap: 10px;
  }
  .wpcr-media-display img {
    max-width: 100%;
  }
  .wpcr-media-display .wpcr-video-wrapper {
    max-width: 100%;
  }
}

/* ===========================
   総合評価エリア
=========================== */
#wpcr-summary {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: start;
  -webkit-justify-content: start;
  align-items: center;
  width: 100%;
  font-size: 14px;
  margin: -40px 0;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  #wpcr-summary {
    margin: -30px 0;
  }
}
#wpcr-summary .wpcr3_aggregateRating {
  font-size: 14px;
  margin-bottom: 0;
  display: block !important;
}
#wpcr-summary .wpcr-scroll-link {
  font-size: 14px;
  text-decoration: underline;
  cursor: pointer;
  letter-spacing: 1px;
}

/* ===========================
   フォーム：項目間隔
=========================== */
.wpcr3_div_2 {
  max-width: 500px;
  width: 100%;
}

.wpcr3_table_2 {
  width: 100%;
  font-size: 14px;
}
.wpcr3_table_2 .wpcr3_review_form_rating_field td {
  vertical-align: middle;
}
.wpcr3_table_2 tr td {
  padding: 8px 0;
}
.wpcr3_table_2 .wpcr3_leave_text {
  font-size: 14px;
}

.wpcr3_respond_2 input[type=text] {
  width: 100%;
  max-width: 500px;
}

.wpcr3_respond_2 textarea {
  max-width: 500px !important;
}

.wpcr3_review .wpcr3_review_customs {
  display: flex !important;
  display: -webkit-flex !important;
  gap: 10px;
}
.wpcr3_review .wpcr3_review_customs .wpcr3_review_custom {
  margin-right: 0 !important;
}

/* ===========================
   ブランド名非表示
=========================== */
.wpcr3_item_name {
  display: none;
}

/* ===========================
   スピナー
=========================== */
.wpcr-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-top-color: #fff;
  border-radius: 50%;
  animation: wpcr-spin 0.6s linear infinite;
  margin-right: 6px;
  vertical-align: middle;
}

@keyframes wpcr-spin {
  to {
    transform: rotate(360deg);
  }
}
/* ===========================
   フォーム：スマホ対応
=========================== */
@media screen and (max-width: 768px) {
  .wpcr-review-area {
    overflow: hidden;
    box-sizing: border-box;
  }
  .wpcr3_respond_1,
  .wpcr3_respond_2,
  .wpcr3_div_2 {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }
  .wpcr3_table_2 {
    width: 100%;
    table-layout: fixed;
  }
  .wpcr3_table_2 td:first-child {
    width: 90px;
    word-break: break-all;
  }
  .wpcr3_table_2 td:last-child {
    width: auto;
  }
  .wpcr3_table_2 td:last-child input[type=text],
  .wpcr3_table_2 td:last-child textarea {
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
    min-width: 100%;
  }
}
/* ===========================
   動画ラッパー
=========================== */
.wpcr-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 250px;
}
.wpcr-video-wrapper video {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}/*# sourceMappingURL=wpcr-media.css.map */