/* カスタム CSS をここに入力してください */

/* ファイルダウンロードのボタン背景色変更 */
.wp-block-file a.wp-block-file__button {
    background-color: #5CC65F;/*ボタンの背景色*/
    font-weight: bold;/*文字ちょっと太く*/
		padding: 5px 10px; /* パディングを調整してサイズを変更 */
}

/* ページ内リンクの位置ずれ解消 */
a.pagelink{
   display: block;
    padding-top: 150px;
    margin-top:  -50px;
}

/* 例1: 投稿コンテンツ内のファイルブロックのファイル名 */
/* body, .entry-content, .single-post などのクラスを組み合わせて詳細度を上げる */
body.single-post .wp-block-file__file-name,
.entry-content .wp-block-file__file-name,
.wp-block-file a { /* IDを持つaタグも含む可能性のある汎用セレクタ */
    font-size: 14px !important; /* 希望の文字サイズに調整 */
    font-weight: bold !important;  /* テキストを太字に指定 */
    text-decoration: none !important; /* 下線を非表示 */
}

/* Template Library ボタンを非表示にする（特定のクラスを組み合わせる） */
.components-button.gutenkit-template-library-btn {
    display: none !important;
}

/* Essential Blocks ボタンを非表示にする（一般的なクラスとIDを組み合わせる） */
/* 開発者ツールで Essential Blocks ボタンのクラスとIDを再度確認し、正確に記述してください */
.components-button.eb-admin-toolbar-item,
.components-button#eb-panel-button,
.components-button.essential-blocks-button,
.components-button.gutenkit-essential-blocks-btn {
    display: none !important;
}

.gutenkit-template-library-btn {
    display: none !important;
}

/* Sugar Calendar h2タイトル文字サイズ */
.single .entry-title {
    font-size: 18px; /* ここを小さくしたいサイズに変更 */
    /* その他のプロパティはそのまま */
    padding: 0 0 20px;
    margin: 0 0 15px;
    border-bottom: 1px solid #f1f1f1;
    letter-spacing: .6px;
}