/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 28 2026 | 07:31:49 */
/* 英語UIの枠 */
.wpcf7 .cf7-file-ui{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* 英語の“ボタン” */
.wpcf7 .cf7-file-btn{
  display: inline-block;
  padding: 6px 10px;
  border: 1px solid #ccc;
  background: #f7f7f7;
  border-radius: 4px;
  user-select: none;
}

/* ファイル名/未選択 */
.wpcf7 .cf7-file-txt{
  font-size: 14px;
}

/*
  ここが重要：
  input[type=file] を完全に透明化して英語ボタン部分に被せる
  → 見た目は英語、クリックはネイティブ
*/
.wpcf7 .cf7-file-ui input[type="file"]{
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}