/* 投稿の更新日非表示 */ .c-meta__item--modified{ display: none; } /* 投稿のカテゴリー非表示 */ .c-meta__item--categories{ display: none; } /* 固定ページのタイトル背景 */ .c-page-header { background-color: #0a988c; } .c-page-header__content { color: #fff; } /* 見出しのデフォルト設定を非表示 */ .c-entry__content > h2 { border-left: none; background-color: transparent; padding: 0; } .c-entry__content > h3 { border-bottom: none; background-color: transparent; padding: 0; } /* h2見出しデザイン */ .c-entry__content > h2 { position: relative; color: #333; text-shadow: 0 0 2px white; } .c-entry__content > h2:before { content: ""; position: absolute; background: #0a988c; width: 50px; height: 50px; border-radius: 50%; top: 50%; /* border: dashed 1px white; */ left: -15px; -webkit-transform: translateY(-50%); transform: translateY(-50%); z-index: -1; } /* h3見出しデザイン */ .c-entry__content > h3 { position: relative; padding-left: 20px; } .c-entry__content > h3:before { content: ""; display: inline-block; position: absolute; top: 0; left: 0; bottom: -7px; width: 7px; height: 100%; border-radius: 10px; background: #0a988c; } /* 固定ページの下余白 */ .l-contents__inner:last-child { margin-bottom: 0; padding-bottom: 0; } /* メニューの区切り線 */ .c-navbar__item:not(:first-child):before { content: ""; display: inline-block; width: 1.5px; height: 20%; background-color: #333333; position: absolute; left: 0; top: 50%; transform: translateY(-50%); } /* TOPのインフォメーション */ .smb-container__body { margin-top: -150px; } /* お知らせの日時の色変更 */ .c-meta__item--published { color: #0A988C; } /* カテゴリ非表示 */ .c-entry-summary__term { display: none; } /* 投稿ページの投稿者名を非表示 */ .c-meta__item--author { display: none; } /* TOPページのモバイル表示でのカラム上下入れ替え */ @media screen and (max-width:781px){ .reverse{ flex-direction: column-reverse; }