/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 18 2026 | 05:29:31 */
/* ===================================================
   WordPress標準「ファイル」ブロック（PDF）の装飾
=================================================== */
.wp-block-file {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  background-color: #ffffff;
  border: 1px solid #d0dbe5;
  border-left: 5px solid #e03131;
  border-radius: 6px;
  padding: 14px 18px;             /* 上下の余白を少し広げて文字サイズに最適化 */
  margin: 16px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}

/* ホバー時に少し浮き上がる演出 */
.wp-block-file:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

/* ファイル名リンクの装飾（文字サイズを標準化） */
.wp-block-file a:first-child {
  font-size: 1rem !important;     /* サイト基本の標準サイズ（15px相当） */
  line-height: 1.5 !important;
  font-weight: 600;
  color: #333333 !important;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

/* ファイル名の先頭に小さな「PDF」バッジを自動表示 */
.wp-block-file a:first-child::before {
  content: "PDF";
  display: inline-block;
  background-color: #e03131;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 3px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.wp-block-file a:first-child:hover {
  color: #0693e3 !important;
  text-decoration: underline !important;
}

/* ダウンロードボタンの装飾 */
.wp-block-file__button {
  background-color: #0693e3 !important;
  color: #ffffff !important;
  border-radius: 4px !important;
  padding: 8px 18px !important;
  font-size: 14px !important;     /* ボタン文字も13pxから標準的な14pxに拡大 */
  font-weight: 600;
  text-decoration: none !important;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.wp-block-file__button:hover {
  background-color: #0070b9 !important;
  color: #ffffff !important;
}