/* ファイルアップロードドロップエリアの CSS */

.uploader {
  position: relative;
  max-width: 500px;
  height: 200px;
  background: white;
  overflow: hidden;
}

.uploader:before {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 24px; bottom: 24px;
  left: 24px; right: 24px;
  border-radius: 8px;
  border: dashed 4px gray;
  color: gray;
  font-size: 1.2em;
  content: 'ファイルアップロード';
  pointer-events: none;
}

.uploader input {
  display: block;
  position: absolute;
  top: 0; left: 0;
  width: 999px; height: 999px;
  font-size: 999px;
  opacity: 0;
}