@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){
  /*必要ならばここにコードを書く*/
}


/*追加*/
.wiki-status-table th {
    font-weight: bold;
    vertical-align: middle;
}
.wiki-status-table td {
    background: #fff;
    vertical-align: middle;
}
/* スマホで見やすくするために、はみ出す場合はスクロールさせる */
.unit-basic-info {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

    /* 全体：表の文字を中央に寄せ、枠線を強制する */
    .wiki-unit-container table {
        border-collapse: collapse !important;
        width: 100% !important;
        margin-bottom: 30px !important;
        table-layout: auto !important;
    }

    /* ヘッダー：背景グレー、文字白、太枠 */
    .wiki-unit-container th {
        background-color: #666 !important;
        color: #fff !important;
        border: 2px solid #333 !important;
        padding: 10px !important;
        text-align: center !important;
    }

    /* データ部分：背景白、中央寄せ、枠線 */
    .wiki-unit-container td {
        background-color: #fff !important;
        color: #333 !important;
        border: 1px solid #ccc !important;
        padding: 10px !important;
        text-align: center !important;
    }
    /* TablePress固有のクラスにも強制適用 */
    .tablepress, .tablepress th, .tablepress td {
        border: 1px solid #333 !important;
    }
    
    
    
    /* 概要ボックス：少し目立たせて導入らしく */
.unit-summary-box {
    background-color: #fcfcfc;
    border-left: 5px solid #666; /* バーバリアンならグレー、後で色変えも可能 */
    padding: 15px 20px;
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 15px;
    color: #444;
}
/* 戦略セクション：しっかり見出しを付けて読ませる */
.unit-strategy-section {
    margin-top: 50px;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #eee;
}
.strategy-title {
    position: relative;
    padding-left: 15px;
    border-bottom: 2px solid #333;
    margin-bottom: 20px;
    font-weight: bold;
}
.strategy-title::before {
    content: "💡"; /* 電球マークで攻略情報感を出す */
    margin-right: 8px;
}