@charset "utf-8"; /* =================================================== カラー =================================================== */ @colorMain: #214a88; //メインカラー @colorSub: #ff9c00; //サブカラー 詳細ボタンなど @colorBorder: #dfe1e5; //ボーダーカラー @colorLightBG: #f5f7f9; //薄い背景色 bodyの背景と同化はNG  フォームやテーブルの見出し背景,カテゴリー背景 @colorPager:#c0d2ec;//ページャー背景 @colorPagerCurrent:#4e70a4;//ページャー背景current /* =========================================================================================== 基準のline-height =========================================================================================== */ @BaseLineHeight: 1.6; /* =========================================================================================== フォント 設定 =========================================================================================== */ // 游書体がWindowsで細くなってしまう問題の解決 // family名にMyYuGothicM,MyYuMinchoMを指定(Chrome 62にも対応) @font-face { font-family: "MyYuGothicM"; font-weight: normal; src: local("YuGothic-Medium"), /*Postscript name*/ local("YuGothic-Regular"); /*Mediumがないとき*/ } @font-face { font-family: "MyYuGothicM"; font-weight: bold; src: local("YuGothic-Bold"); /*Postscript name*/ } @font-face { font-family: "MyYuMinchoM"; font-weight: normal; src: local("YuMincho-Medium"), /*Postscript name*/ local("YuMincho-Regular"); /*Mediumがないとき*/ } @font-face { font-family: "MyYuMinchoM"; font-weight: bold; src: local("YuMincho-Bold"); /*Postscript name*/ } body { font-size: 15px; line-height: @BaseLineHeight; color: #111; font-family: MyYuGothicM, '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック', 'Yu Gothic', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', 'Meiryo', sans-serif; } a, a:active, a:link, a:visited { color: #111; } /* =========================================================================================== ボタン 設定 =========================================================================================== */ .moreBtn { a { display: inline-block; background: @colorSub; font-weight: bold; padding: 6px 20px 6px 40px; color: #fff; min-width: 150px; text-align: center; position: relative; &::before { position: absolute; content: ''; left: 20px; top: 0; bottom: 0; margin: auto; border-top: 2px solid #fff; border-right: 2px solid #fff; transform: rotate(45deg); width: 6px; height: 6px; } } } /* =========================================================================================== メインイメージ設定 =========================================================================================== */ .mainImgArea { width: 100%; margin: 0 0 20px; .mainImgContent { max-width: 100%; margin: 0 auto; text-align: center; background-repeat: no-repeat; background-position: center center; display: flex; justify-content: center; align-items: center; } .mainImgContent p { width: @contentWidth; font-weight: bold; font-size: 35px; color: @colorMain; } } /* =========================================================================================== 見出し設定 =========================================================================================== */ /*== h2はビルダー・システムで共通とする =======================*/ .h2LaySets { font-size: 28px; font-weight: bold; color: @colorMain; span { display: inline-block; border-bottom: 1px solid @colorMain; padding-bottom: 8px; } } .fl-module-heading h2.fl-heading { // ビルダーのH2 .h2LaySets; } h2.pageTitle { // アーカイブ・シングルシステムページの見出し .h2LaySets; margin-bottom: 20px; } /*== h3 =======================*/ .h3LaySets { font-size: 20px; font-weight: bold; color: @colorSub; } .fl-module-heading h3.fl-heading { // ビルダーのH3 .h3LaySets; } /*== h4 =======================*/ .h4LaySets { font-size: 17px; border-bottom: 1px solid #dfe1e5; background: url('../images/ico_h04.jpg') no-repeat 0 50%; background-size: calc(6px / 2) calc(30px / 2); padding: 5px 0 5px 15px !important; } .fl-module-heading h4.fl-heading { // ビルダーのH4 .h4LaySets; } /*== h5 =======================*/ .h5LaySets { font-size: 16px; border-bottom: 1px solid @colorMain; padding: 0 0 7px !important; } .fl-module-heading h5.fl-heading { // ビルダーのH5 .h5LaySets; } /*== h6 =======================*/ .h6LaySets { font-size: 15px; font-weight: bold; color: @colorMain; } .fl-module-heading h6.fl-heading { // ビルダーのH6 .h6LaySets; } /* =========================================================================================== bb layout =========================================================================================== */ #mainContent .fl-row:not(.c_banner) .fl-row-content-wrap { .fl-rich-text, .voiceComment { line-height: 1.75; } } /* =========================================================================================== コンタクトバナー =========================================================================================== */ .c_banner { width: 700px; .c_tel { line-height: 1; a { color: inherit; } } .c_btn a.fl-button { // background: none; border: 0; position: static !important; top:0 !important; font-weight: bold; } // .fl-photo-img { // -o-object-fit: cover; // object-fit: cover; // } }