@charset "UTF-8";

/*
Theme Name: Cocoon Child
Template: cocoon-master
Author: わいひら
Author URI: https://wp-cocoon.com/
Description: Cocoon専用の子テーマです。
Version: 1.1.2
*/

/* ページ文字サイズ変更 */
.postid-106 #main .entry-content {
    font-size: 12px !important;
}


/* 投稿ID106限定でサイドバーを狭く、メインを広く */
.postid-106 #main {
    width: 76%; /* メインカラムを広めに */
}

.postid-106 #sidebar {
    width: 22%; /* サイドバーを狭く */
}


/* 長過ぎカスタムCSS対策 これで編集画面負荷軽減になる？意味あるか分からん */
function my_custom_styles() {
    wp_enqueue_style('my-custom-style', get_stylesheet_directory_uri() . '/custom.css');
}
add_action('wp_enqueue_scripts', 'my_custom_styles');



