/*
Theme Name: スマートフィットネス採用 子テーマ (Twenty Twenty-Four Child)
Theme URI: https://recruit.studio-akane.com/
Description: Twenty Twenty-Fourテーマのカスタム子テーマ。既存の「私たちについて」見出しを非表示にします。
Author: スマートフィット採用
Author URI: https://recruit.studio-akane.com/
Template: twentytwentyfour
Version: 1.0.0
*/


/* --- 会社概要テーブルのカスタムスタイル (再現性優先) --- */

/* 1. テーブル全体の調整（幅、ボーダーリセット） */
.company-profile-table table {
    width: 100% !important; /* 幅を確実に100%に */
    table-layout: fixed !important; 
    border: none !important;
    border-collapse: collapse !important; 
}

/* 2. 行の下にのみ罫線を適用 */
.company-profile-table tr {
    border-bottom: 1px solid #e4e4e4 !important; 
}

/* 3. 最後の行の下の罫線は削除 */
.company-profile-table tr:last-child {
    border-bottom: none !important;
}

/* 4. セル内のパディング（余白）を調整（フォント上下の白） */
.company-profile-table td,
.company-profile-table th {
    padding: 1.5rem 0.5rem !important; /* 上下の余白を確保 */
    border: none !important; 
}

/* 5. 左側の項目列の幅と右余白を調整（見出し右余白） */
.company-profile-table tr th:first-child,
.company-profile-table tr td:first-child {
    width: 30% !important; /* 項目名の幅を確実に30%に設定 */
    padding-right: 2rem !important; /* 右側の余白を増やす */
    text-align: left !important; 
}

/* --- スマホでのテーブル横スクロール対応（必要であれば） --- */
 @media (max-width: 600px) {
    .company-profile-table {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
} 
