.file-upload-wrapper {
  position: relative;
  border: 1px solid #005d3b;
  border-radius: 5px;
  width: 100%;
  height: 35px;
}
.file-upload-wrapper:after {
  content: attr(data-text);
  font-size: 14px;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  display: block;
  width: calc(100% - 40px);
  pointer-events: none;
  z-index: 20;
  height: 32px;
  line-height: 32px;
  color: #999;
  border-radius: 5px 10px 10px 5px;
  font-weight: 300;
  margin-left: 6px;
}
.file-upload-wrapper:before {
  content: "選択";
  font-family: ヒラギノ角ゴ Pro W3, Hiragino Kaku Gothic Pro, Osaka, メイリオ, Meiryo, ＭＳ Ｐゴシック, MS PGothic, sans-serif;
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  height: 34px;
  background: #005d3b;
  color: #fff;
  font-weight: 700;
  z-index: 25;
  font-size: 14px;
  line-height: 34px;
  padding: 0 15px;
  text-transform: uppercase;
  pointer-events: none;
  border-radius: 0 5px 5px 0;
}
.file-upload-wrapper:hover:before {
  opacity: 0.7;
}
.file-upload-wrapper input {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
  margin: 0;
  padding-left: 5px;
  display: block;
  cursor: pointer;
  width: 100%;
}