* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body, html {
    background-color: #F2F2F2; /* 背景色を指定 */
    color: #323232; /* テキストの色を指定 */
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300; /* Light ウェイト (300) を指定 */
    /* font-family: 'Hiragino Kaku Gothic ProN', sans-serif; */
    overflow-x: hidden; /* 横方向のスクロールを防ぐ */
    width: 100%;
    height: auto; /* 高さをコンテンツに合わせる */
}

/* テーブルのスタイル調整 */
.company-table {
    width: 80%; /* テーブル全体の幅を80%に設定 */
    margin: 20px auto; /* 上下左右に余白を設定し、中央揃え */
    border-collapse: collapse; /* テーブルの枠を一体化 */
    border-spacing: 0; /* セルの間のスペースを0に設定 */
    background-color: #F2F2F2; /* 背景色を白に設定 */
    font-size: 1rem; /* フォントサイズを指定 */
    color: #323232; /* テキスト色を指定 */
}

/* テーブルのセルとヘッダーにスタイルを適用 */
.company-table th,
.company-table td {
    padding: 15px 20px; /* セル内の余白を設定 */
    text-align: left; /* テキストを左揃え */
    vertical-align: middle; /* テキストをセルの中央に配置 */
    text-align: left;
}

/* テーブル全体のボーダーを削除（横線のみ表示） */
.company-table th {
    background-color: #f4f4f4; /* ヘッダー背景色を設定 */
    color: #323232; /* ヘッダーテキスト色を指定 */
    font-weight: bold; /* ヘッダーフォントを太字に */
    width: 300px; /* ヘッダーの幅を広げる */
    min-width: 200px; /* 最小幅を設定 */
    white-space: nowrap; /* テキストを改行させない */
    font-size: 1rem; /* フォントサイズを指定 */
    text-align: center;
}

/* テーブルデータのセルスタイル */
.company-table td {
    background-color: #F2F2F2; /* セル背景色を白に設定 */
    color: #323232; /* セルのテキスト色を設定 */
    /* font-family: 'Hiragino Kaku Gothic ProN', sans-serif;  */
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300; /* Light ウェイト (300) を指定 */
    width: auto; /* データセルの幅を自動設定 */
}

/* 各行のボトムボーダーを調整 */
.company-table tr {
    border-bottom: 1px solid #ddd; /* 行ごとにボーダーを設定 */
}

/* リンクのスタイル */
.company-table a {
    color: #4cc313; /* リンクの色をブランドカラーに設定 */
    text-decoration: none; /* 下線を削除 */
}

.company-table a:hover {
    text-decoration: underline; /* ホバー時に下線を追加 */
}

/* テーブルの行にホバー効果を追加 */
.company-table tr:hover {
    background-color: #f9f9f9; /* ホバー時に背景色を変更 */
}

/* 各セクションの背景と余白を調整 */
.contact-section {
    background-color: #F2F2F2; /* セクションの背景色を指定 */
    padding: 50px 0; /* 上下の余白を設定 */
}

/* セクションタイトルのスタイル */
.section-title {
    /* font-family: 'Hiragino Kaku Gothic ProN', sans-serif;  */
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300; /* Light ウェイト (300) を指定 */
    font-size: 1.8rem; /* フォントサイズを設定 */
    color: #323232; /* テキスト色を指定 */
    margin-bottom: 30px; /* タイトル下の余白を設定 */
    text-align: center; /* タイトルを中央揃え */
}

/* レスポンシブ対応 */
@media only screen and (max-width: 768px) {
    .company-table {
        width: 100%; /* テーブルの幅を100%に設定 */
    }

    .company-table th,
    .company-table td {
        display: block; /* テーブルをブロック表示に変更 */
        width: 100%; /* 幅を100%に設定 */
        box-sizing: border-box; /* ボックスサイズを設定 */
    }

    .company-table th {
        background-color: #eee; /* ヘッダー背景色を変更 */
        border-bottom: 2px solid #323232; /* ヘッダーのボトムボーダーを太めに設定 */
    }

    .footer-container {
        flex-direction: column; /* コンテナ内の要素を縦並びに */
        align-items: center; /* 要素を中央に配置 */
    }

    .footer-logo {
        margin-bottom: 1rem; /* 画像の下に余白を追加 */
    }

    .footer-links {
        display: none;
    }

    .footer-links li {
        margin: 0.5rem 0; /* 各リンク間に余白を設定 */
    }

    .footer-links ul {
        display: none;
    }

}
