@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}
/*固定ページの投稿日、更新日、投稿者名を非表示にする*/
.page .date-tags,
.page .author-info {
    display: none;
}
/* テーブル全体のレイアウトを固定 */
.custom-table-ratio table {
    width: 100%;
    table-layout: fixed; /* 列の幅を強制的に固定するために必要 */
    border-collapse: collapse;
}

/* 1列目（左）を30%に設定 */
.custom-table-ratio table tr td:nth-child(1),
.custom-table-ratio table tr th:nth-child(1) {
    width: 30%;
}

/* 2列目（右）を70%に設定 */
.custom-table-ratio table tr td:nth-child(2),
.custom-table-ratio table tr th:nth-child(2) {
    width: 70%;
}
/* 投稿ID 84のページのみ適用 */
.postid-84 .wp-block-table table {
    width: 100%;
    table-layout: fixed;
}

.postid-84 .wp-block-table td:nth-child(1) {
    width: 30%;
}

.postid-84 .wp-block-table td:nth-child(2) {
    width: 70%;
}