/* Contact Form 7 ドラッグ&ドロップ拡張用スタイル */

.cf7-dropzone {
  border: 2px dashed #a0a0a0;
  border-radius: 8px;
  padding: 28px 16px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  background-color: #fafafa;
}

.cf7-dropzone:hover {
  border-color: #6b6b6b;
}

.cf7-dropzone.is-dragover {
  border-color: #2271b1;
  background-color: #f0f6fc;
}

.cf7-dropzone-text {
  margin: 0;
  color: #555555;
  font-size: 14px;
}

.cf7-preview-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
}

.cf7-preview-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 96px;
}

.cf7-preview-thumb {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  border: 1px solid #e0e0e0;
}

.cf7-preview-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cf7-preview-name {
  font-size: 11px;
  margin-top: 6px;
  max-width: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #333333;
}

.cf7-preview-remove {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: none;
  background: #d63638;
  color: #ffffff;
  cursor: pointer;
  line-height: 1;
  font-size: 13px;
  font-weight: bold;
  padding: 0;
}

.cf7-preview-remove:hover {
  background: #b32d2e;
}
