/* =========================
   資料請求ボタン（大きめ＋オレンジ系）
   ========================= */
.btn-doc{
  display: inline-flex;
  margin-left: auto;
  align-items: center;
  justify-content: center;

  /* サイズ感（大きめ） */
  height: 44px;              /* 画像っぽい高さ */
  padding: 0 22px;           /* 横幅にゆとり */
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .02em;

  /* オレンジのグラデ */
  background: linear-gradient(180deg, #ff9a1f 0%, #f57c00 100%);
  color: #fff;
  text-decoration: none;

  /* 角丸（画像の雰囲気に合わせて控えめ） */
  border-radius: 8px;

  /* 立体感（軽い影＋下側の縁っぽさ） */
  box-shadow:
    0 2px 0 rgba(0,0,0,0.10),
    0 8px 18px rgba(245, 124, 0, 0.25);

  /* 枠線はほぼ無し（必要なら微妙に） */
  border: 1px solid rgba(255,255,255,0.22);

  transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
}

.btn-doc:hover{
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow:
    0 3px 0 rgba(0,0,0,0.10),
    0 10px 22px rgba(245, 124, 0, 0.30);
}

.btn-doc:active{
  transform: translateY(0);
  box-shadow:
    0 1px 0 rgba(0,0,0,0.12),
    0 6px 14px rgba(245, 124, 0, 0.22);
}

/* キーボード操作の見やすさ */
.btn-doc:focus-visible{
  outline: 3px solid rgba(245, 124, 0, 0.35);
  outline-offset: 3px;
}
