@charset "utf-8"; /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━ */ /* */ /* ● base.css */ /* 共通部品 CSS */ /* ・サイト全般の共通処理をインポート */ /* */ /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━ */ /* ++++++++++++++++++++++++++++++++++++++++++++++++ */ /* 各種import */ /* ++++++++++++++++++++++++++++++++++++++++++++++++ */ // コンテンツタイプ(通常:default) $contents-type: "default"; // 基本プロパティをインポート @import "config"; // 共通部品をインポート @import "reset_browser"; @import "common_element/index"; @import "effect/index"; @import "modules/index"; @import "format/index"; /* ++++++++++++++++++++++++++++++++++++++++++++++++ */ /* 個別設定 */ /* ++++++++++++++++++++++++++++++++++++++++++++++++ */ .ContentsDivision { } /* ++++++++++++++++++++++++++++++++++++++++++++++++ */ /* 印刷設定 */ /* ++++++++++++++++++++++++++++++++++++++++++++++++ */ @media print { // グローバルメニューを隠す .GlobalMenuArea{ display: none!important; } main, footer{ [class$='Area']{ padding-left: 0!important; } } // ハンバーガーメニュー、言語ボタンを隠す .SiteHeaderBlock { .BlockContents, .BlockFooter{ display: none!important; } } // ページ幅をリセット .PageWidthSetter{ width: 100%!important; max-width: initial!important; } // ローカルメニュー幅をリセット .LocalNaviBlock .BlockContents .ContentsMenuList li{ width: auto!important; } }