/* ヘッダー */
header {
    padding-left: 10px;
    padding-right: 10px;
}

/* ボディ */
body {
    background-color: rgb(255, 255, 255);
}

/* 会社概要 */
.corp-title {
    background-color: rgb(220, 255, 255) !important;
}

/* スマホサイズ */
@media (max-width: 767px) {

    /* ニュースリスト */
    .news_list {
        height: 500px;
    }

    /* 回覧板リスト */
    .circular_board_list {
        height: 500px;
    }
}

/* タブレットサイズ */
@media (max-width: 991px) {

    /* ニュースリスト */
    .news_list {
        height: 500px;
    }

    /* 回覧板リスト */
    .circular_board_list {
        height: 500px;
    }
}

/* PCサイズ */
@media (min-width: 992px) {

    /* ニュースリスト */
    .news_list {
        height: 300px;
    }

    /* 回覧板リスト */
    .circular_board_list {
        height: 300px;
    }
}

/* PCサイズ */
@media (min-width: 1199px) {

    /* ニュースリスト */
    .news_list {
        height: 300px;
    }

    /* 回覧板リスト */
    .circular_board_list {
        height: 300px;
    }
}