@charset "utf-8";
/* Generic-child-joint : main.content ONLY
    固定ページ・投稿ページ・カスタム投稿タイプページで投稿できる要素に対する装飾と
    下層ページで汎用的に使える汎用スタイル
    ※一部editor-style.cssと同期
        【投稿アイテム用スタイル】
        ・メールアドレス記載時ルール
　　　　・メインコンテンツ内ヘッダ・h要素・画像キャプション
        ・リスト（ul , ol）
        ・定義リスト（dl）
        ・テーブル（table）
        ・PDF EmbedderでPDFを埋め込んだときのスタイル上書き
        ・Advances Editor Tools 追加スタイル
        【汎用スタイル】
        【メディアクエリ 】
*/
/*
    font-family: "IBM Plex Sans", sans-serif;
    font-family: "Noto Sans JP", sans-serif;
    font-family: "Noto Serif JP", serif;
*/
/* Color 
Blue : #3778ac rgba(55,120,172,1.00)
Red : #d5413d rgba(213,65,61,1.00)
*/


/*【投稿アイテム用スタイル】*/
/*メールアドレス記載時ルール------------------------------------------*/
/*メールアドレスの表記：以下htmlコード記載例
<span class="mail-address">hoge<span class="domain">domain.jp</span></span>
*/
.mail-address span.domain::before{ content: "@"; display: inline; }

/* メインコンテンツ内ヘッダ・h要素
------------------------------------------------------------ */
/*メインコンテンツ - メインカラム - エントリーコンテンツ - h1 大見出し（見出し1） */
main.content .entry-content h1 {
	border-top: rgba(55,120,172,.25) solid 5px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2rem;
    font-weight: normal;
    padding: .5rem 0;
    position: relative;
}
main.content .entry-content h1::before{
	background-color: rgba(55,120,172,1.00);
	content: '';
	height: 5px;
	position: absolute;
        top: -5px;
        left: 0;
	width: 20%;
}
/*メインコンテンツ - メインカラム - エントリーコンテンツ - h2 明朝見出し（見出し2） */
main.content .entry-content h2{
    color: rgba(213,65,61,1.00);
    font-family: "Noto Serif JP", serif;
    font-size: 1.5rem;
}
/*メインコンテンツ - メインカラム - エントリーコンテンツ - h3 背景カラー見出し（見出し3） */
main.content .entry-content h3{
    background-color: rgba(55,120,172,.50);
    color: #fff;
    display: flex;
    flex-wrap: nowrap;
    font-size: 1.5em;
    justify-content: flex-start;
    padding: .5rem;
}

main.content .entry-content h3:not(:first-of-type){
    margin-top: 2em;
}
main.content .entry-content h3::before {
    background-color: #fff;
    content: "";
    display: block;
    margin: .25rem;
    width: 5px;
}
/*メインコンテンツ - メインカラム - エントリーコンテンツ - h4 サブ見出し（見出し4） */
main.content .entry-content h4{
	border-top: 3px solid #eee;
    font-size: 1.5em;
    padding: .5rem 0;
	position: relative;
}
main.content .entry-content h4::before{
	background-color: rgba(55,120,172,.50);
	content: '';
	height: 3px;
	position: absolute;
        top: -3px;
        left: 0;
	width: 20%;
}
/*メインコンテンツ - メインカラム - エントリーコンテンツ - h5 小見出し（見出し5） */
main.content .entry-content h5{
    border-bottom: rgba(55,120,172,1.00) solid 2px;
    border-left: rgba(55,120,172,1.00) solid 4px;
    color: rgba(55,120,172,1.00);
    font-size: 1.25em;
    padding: .5rem;
}
/*メインコンテンツ - メインカラム - エントリーコンテンツ - h6 小見出し2（見出し6） */
main.content .entry-content h6{
    font-size: 1.125em;
}
main.content .entry-content h6::before{
    content: "●";
    color: rgba(55,120,172,1.00);
    display: inline;
    padding: 0 .25rem 0 0;
}

/* メインコンテンツ内画像キャプション・引用
------------------------------------------------------------ */
/*メインコンテンツ - メインカラム - エントリーコンテンツ - 画像キャプション */
main.content .entry-content .wp-caption-text{
    color: #666;
    font-size: .75rem;
    margin: 0 auto 1em;
    max-width: fit-content;
}
/*メインコンテンツ - メインカラム - エントリーコンテンツ - 引用 */
blockquote {
    background: #f7f7f7;
    border: 3px solid #ddd;
    margin: 0;
    padding: 1rem 2rem;
    position: relative;
}
blockquote::before {
    color: #ddd;
    content: "\f10d";
    display: block;
    font-family: FontAwesome;
    font-size: 1.5rem;
    position: absolute;
        left: .5rem;
        top: .5rem;
}
blockquote::after {
    color: #ddd;
    content: "\f10e";
    display: block;
    font-family: FontAwesome;
    font-size: 1.5rem;
    position: absolute;
        bottom: .5rem;
        right: .5rem;
}

/* リスト
ul li , ol li , ul class="no-mark" ul , ol , li , .no-mark
---------------------------------------------------- */
/* リスト形式（デフォルト・discあり） */
.content ul {
	margin: 0 auto 1.5em 1.5em;
	padding: 0;
}
.content ul li {
	line-height: 1.25;
    margin: 0 0 1em;
}
.content ul li:last-child {
	margin-bottom: 0;
}
/* 順序リスト形式 */
.content ol {
	list-style-type: decimal;
	margin: 0 auto 1.5em 1.5em;
	padding: 0;
}
.content ol li {
	line-height: 1.25;
    margin: 0 0 1em;
}
.content ol li:last-child {
	margin-bottom: 0;
}
/* リスト形式（・discなし） */
.content ul.no-mark {
	margin: 0 auto 1.5em auto;
	padding: 0;
}
.content ul.no-mark li {
	list-style-type: none;
    margin: 0 0 .5em;
}

/* 定義リスト
dl , dt , dd
---------------------------------------------------- */
.content dl {
	margin: 0 auto 1.5em auto;
	padding: 0;
}
.content dl dt {
    font-weight: bold;
    margin: 0 0 .5em;
}

/* テーブル
table thead tbody tfoot tr th td 
---------------------------------------------------- */
/* 基本 */
.content table {
    background-color: #fff;
    line-height: 1.25;
	margin: 0 auto 1.5em auto;
	padding: 0;
	width: 100%;
	word-break: break-all;
}
.content table th,
.content table td {
	border: 1px solid #ddd;
    line-height: 150%;
	padding: .75em;
    vertical-align: middle;
	overflow-wrap: anywhere;
}
.content table th {
	background-color: rgba(55,120,172,0.15);
}
.content table td ul{
    margin: 0;
}
.content table td ul li{
    line-height: 150%;
    list-style-position: inside;
    margin: 0;
}
.content table td dl {
    margin: .5em auto 0 ;
}
.content table td dl:first-child {
    margin: 0 auto;
}
.content table td dl dt {
    margin: 0;
}
/* セル均等割テーブル */
.content table.fix {
	table-layout: fixed;
}
/*PDF EmbedderでPDFを埋め込んだときのスタイル上書き---------------------------*/
main.content .entry-content div.pdfemb-viewer {
    background-color: #f7f7f7;
    border: #ddd solid 1px ;
}

/*リンクの種類によるアイコン付与---------------------------*/
/*common*/
.content a::before{
    content: "";
    display: inline;
    font-family: FontAwesome;
    padding: 0 .25em 0 0;
}
/*外部サイトへのリンク（リンク先が target="_blank" の時）*/
.content a[target="_blank"]::before{
    content: "\f24d";
}
/*PDFファイルリンク（拡張子.pdf）*/
.content a[href$='.pdf']::before ,
.content a[href$='.pdf'][target="_blank"]::before{
    color: #c1272d;
    content: "\f1c1";
}
/*Wordファイルリンク（拡張子：.doc .docx）*/
.content a[href$='.doc']::before , a[href$='.docx']::before,
.content a[href$='.doc'][target="_blank"]::before , a[href$='.docx'][target="_blank"]::before{ 
    color: #0069A8;
    content: "\f1c2";
}
/*EXCELファイルリンク（拡張子：.xls　.xlsx）*/
.content a[href$='.xls']::before , a[href$='.xlsx']::before,
.content a[href$='.xls'][target="_blank"]::before , a[href$='.xlsx'][target="_blank"]::before{ 
    color: #39b54A;
    content: "\f1c3";
}
/*PowerPointファイルリンク（拡張子：.ppt）*/
.content a[href$='.ppt']::before,
.content a[href$='.ppt'][target="_blank"]::before{ 
    color: #f25a24;
    content: "\f1c4";
}
/*その他ファイルリンク（拡張子：.zip）*/
.content a[href$='.zip']::before,
.content a[href$='.zip'][target="_blank"]::before{
    color: #9079b6;
    content: "\f019";
}
/*メールアドレス（mailto:）*/
.content a[href^="mailto:"]::before{
    content: "\f003";
}
/*電話番号リンク（tel:）*/
.content a[href^="tel:"]{
    color: rgba(123,161,48,1.00);
    text-decoration: underline;
}
.content a[href^="tel:"]:hover{
    text-decoration: none;
}
.content a[href^="tel:"]::before{
    content: "\f095";
}

/*Advances Editor Tools 追加スタイル------------------------------------------*/
/*下点線追加*/
main.content .entry-content .border-btm{
    border-bottom: #ddd dashed 1px;
    padding: .5rem;
}
/*強調枠 - 青ライン*/
p.border-blue{
    border: rgba(55,120,172,.50) solid 2px;
    padding: 1rem;
}
/*強調枠 - グレー背景*/
p.bg-gray{
    background-color: #f7f7f7;
    padding: 1rem;
}
/*ボタンリンク（ハイパーリンクに追加）*/
a.btn {
    background-color: rgba(55,120,172,1.00);
    border: 1px solid rgba(55,120,172,1.00);
    color: #fff;
    display: inline-block;
    padding:1em 2em;
    text-align: center;
    text-decoration: none !important;
    transition: all .3s;
}
a.btn:hover {
    background-color: #fff;
    color: rgba(55,120,172,1.00);
    text-decoration: none;
}
/*グレーボタンリンク（ハイパーリンクに追加）*/
a.btn_gray {
    background-color: #eee;
    border: 2px solid #eee;
    color: #333;
    display: inline-block;
    padding: 1em 2em;
    text-align: center;
    text-decoration: none !important;
    transition: .3s;
}
a.btn_gray:hover {
    background-color: #f7f7f7;
}
/*動画ボタンリンク（ハイパーリンクに追加）*/
a.btn_movie {
    background-color: rgba(55,120,172,1.00);
    border: 1px solid rgba(55,120,172,1.00);
    color: #fff;
    display: inline-block;
    padding:1em 2em;
    text-align: center;
    text-decoration: none !important;
    transition: all .3s;
}
a.btn_movie:hover {
    background-color: #fff;
    color: rgba(55,120,172,1.00);
    text-decoration: none;
}
a.btn_movie::after {
    content: "\f144";
    font-family: FontAwesome;
    font-size: 1.5rem;
    padding: 0 0 0 .5rem;
}

/* 【汎用スタイル】
    ・テキスト装飾
    ・margin・padding スタイル
    ・width スタイル
    ・フレキシブルボックス（.flex , flex-sb , flex-c ）
---------------------------------------------------- */
/*テキスト装飾------------------------------------------*/
/*文字の横位置*/
.al-l{ text-align: left; }
.al-r{ text-align: right; }
.al-c{ text-align: center; }
/*文字の縦位置*/
.vl-t{ vertical-align: top!important; }/*上寄せ*/
.vl-m{ vertical-align: middle!important; }/*中央寄せ*/
.vl-b{ vertical-align: bottom!important; }/*下寄せ*/
/*フォントの装飾*/
.b{ font-weight: bold!important; } /*太字*/
.txtBld { font-weight: bold!important; } /*太字*/
.normal{ font-weight: normal!important; }/*太字を解除*/
/*フォントサイズの設定*/
.big{ font-size: 1.2em!important; }
.big2{ font-size: 1.5em!important; }
.big3{ font-size: 1.8em!important; }
.small{ font-size: 0.8em!important; }
.f08em{ font-size: 0.8em; }
.f09em{ font-size: 0.9em; }
.f10em{ font-size: 1.0em; }
.f11em{ font-size: 1.1em; }
.f12em{ font-size: 1.2em; }
.f13em{ font-size: 1.3em; }
.f14em{ font-size: 1.4em; }
.f15em{ font-size: 1.5em; }
.f16em{ font-size: 1.6em; }
.f17em{ font-size: 1.7em; }
.f18em{ font-size: 1.8em; }
.f19em{ font-size: 1.9em; }
.f20em{ font-size: 2.0em; }
.f21em{ font-size: 2.1em; }
.f22em{ font-size: 2.2em; }
.f23em{ font-size: 2.3em; }
.f24em{ font-size: 2.4em; }
.f25em{ font-size: 2.5em; }
.f26em{ font-size: 2.6em; }
.f27em{ font-size: 2.7em; }
.f28em{ font-size: 2.8em; }
.f29em{ font-size: 2.9em; }
.f30em{ font-size: 3.0em; }
/*フォントの色設定*/
.red{ background-color: transparent !important; color: #e53935!important; }/*赤*/
.blue{background-color: transparent !important; color: #0000dd!important; }/*青*/
.green{background-color: transparent !important; color: #4caf50!important; }/*緑*/
.yellow{background-color: transparent !important; color: #ffff00!important; }/*黄*/
.navy{background-color: transparent !important; color: #3f51b5!important; }/*紺*/
.orange{background-color: transparent !important; color: #ff9800!important; }/*橙*/
.pink{background-color: transparent !important; color: #ec407a!important; }/*ピンク*/
.purple{background-color: transparent !important; color: #9c27b0!important; }/*紫*/
.olive{background-color: transparent !important; color: #808000!important; }/*オリーブ*/
.lime{background-color: transparent !important; color: #00ff00!important; }/*黄緑*/
.aqua{background-color: transparent !important; color: #00bcd4!important; }/*水色*/
.black{background-color: transparent !important; color: #000!important; }/*黒*/
.gray{background-color: transparent !important; color: #ccc!important; }/*灰*/
.white{background-color: transparent !important; color: #fff!important; }/*白*/
.brown{background-color: transparent !important; color: #6d4c33!important; }/*茶*/
/*マーカー表示（背景に着色）*/
.box-key-green,
.box-yellow,
.box-orange,
.box-pink,
.box-lime,
.box-gray{ padding: 2px; }
.box-key-green{ background-color: #00beaf; }/*キーカラー*/
.box-yellow{ background-color: #ff6; }/*黄*/
.box-orange{ background-color: #f90; }/*橙*/
.box-pink{ background-color: #ffccff; }/*ピンク*/
.box-lime{ background-color: #9f9; }/*黄緑*/
.box-gray{ background-color: #ccc; }/*灰*/

/*margin・paddingスタイル------------------------------------------*/
/* 下マージンリセット */
.no-mb { margin-bottom: 0 !important; }
/*周りのブロックからの距離（margin）*/
.m0{ margin: 0!important; }/*周りからのmarginを0に*/
.m0-t{ margin-top: 0!important; }/*上からのmarginを0に*/
.m0-r{ margin-right: 0!important; }/*右からのmarginを0に*/
.m0-b{ margin-bottom: 0!important; }/*下からのmarginを0に*/
.m0-l{ margin-left: 0!important; }/*左からのmarginを0に*/
.m5{ margin: 5px!important; }
.m5-t{ margin-top: 5px!important; }
.m5-r{ margin-right: 5px!important; }
.m5-b{ margin-bottom: 5px!important; }
.m5-l{ margin-left: 5px!important; }
.m10{ margin: 10px!important; }
.m10-t{ margin-top: 10px!important; }
.m10-r{ margin-right: 10px!important; }
.m10-b{ margin-bottom: 10px!important; }
.m10-l{ margin-left: 10px!important; }
.m15{ margin: 15px!important; }
.m15-t{ margin-top: 15px!important; }
.m15-r{ margin-right: 15px!important; }
.m15-b{ margin-bottom: 15px!important; }
.m15-l{ margin-left: 15px!important; }
.m20{ margin: 20px!important; }
.m20-t{ margin-top: 20px!important; }
.m20-r{ margin-right: 20px!important; }
.m20-b{ margin-bottom: 20px!important; }
.m20-l{ margin-left: 20px!important; }
.m25{ margin: 25px!important; }
.m25-t{ margin-top: 25px!important; }
.m25-r{ margin-right: 25px!important; }
.m25-b{ margin-bottom: 25px!important; }
.m25-l{ margin-left: 25px!important; }
.m30{ margin: 30px!important; }
.m30-t{ margin-top: 30px!important; }
.m30-r{ margin-right: 30px!important; }
.m30-b{ margin-bottom: 30px!important; }
.m30-l{ margin-left: 30px!important; }
.m40{ margin: 40px!important; }
.m40-t{ margin-top: 40px!important; }
.m40-r{ margin-right: 40px!important; }
.m40-b{ margin-bottom: 40px!important; }
.m40-l{ margin-left: 40px!important; }
.m50{ margin: 50px!important; }
.m50-t{ margin-top: 50px!important; }
.m50-r{ margin-right: 50px!important; }
.m50-b{ margin-bottom: 50px!important; }
.m50-l{ margin-left: 50px!important; }
.m60{ margin: 60px!important; }
.m60-t{ margin-top: 60px!important; }
.m60-r{ margin-right: 60px!important; }
.m60-b{ margin-bottom: 60px!important; }
.m60-l{ margin-left: 60px!important; }
.m70{ margin: 70px!important; }
.m70-t{ margin-top: 70px!important; }
.m70-r{ margin-right: 70px!important; }
.m70-b{ margin-bottom: 70px!important; }
.m70-l{ margin-left: 70px!important; }
.m80{ margin: 80px!important; }
.m80-t{ margin-top: 80px!important; }
.m80-r{ margin-right: 80px!important; }
.m80-b{ margin-bottom: 80px!important; }
.m80-l{ margin-left: 80px!important; }
.m90{ margin: 90px!important; }
.m90-t{ margin-top: 90px!important; }
.m90-r{ margin-right: 90px!important; }
.m90-b{ margin-bottom: 90px!important; }
.m90-l{ margin-left: 90px!important; }
.m100{ margin: 100px!important; }
.m100-t{ margin-top: 100px!important; }
.m100-r{ margin-right: 100px!important; }
.m100-b{ margin-bottom: 100px!important; }
.m100-l{ margin-left: 100px!important; }
.m120{ margin: 120px!important; }
.m120-t{ margin-top: 120px!important; }
.m120-r{ margin-right: 120px!important; }
.m120-b{ margin-bottom: 120px!important; }
.m120-l{ margin-left: 120px!important; }
.m150{ margin: 150px!important; }
.m150-t{ margin-top: 150px!important; }
.m150-r{ margin-right: 150px!important; }
.m150-b{ margin-bottom: 150px!important; }
.m150-l{ margin-left: 150px!important; }
.m200{ margin: 200px!important; }
.m200-t{ margin-top: 200px!important; }
.m200-r{ margin-right: 200px!important; }
.m200-b{ margin-bottom: 200px!important; }
.m200-l{ margin-left: 200px!important; }
.m300{ margin: 300px!important; }
.m300-t{ margin-top: 300px!important; }
.m300-r{ margin-right: 300px!important; }
.m300-b{ margin-bottom: 300px!important; }
.m300-l{ margin-left: 300px!important; }
/*周りのブロックからの距離（padding）*/
.p0{ padding: 0!important; }
.p0-t{ padding-top: 0!important; }
.p0-r{ padding-right: 0!important; }
.p0-b{ padding-bottom: 0!important; }
.p0-l{ padding-left: 0!important; }
.p5{ padding: 5px!important; }
.p5-t{ padding-top: 5px!important; }
.p5-r{ padding-right: 5px!important; }
.p5-b{ padding-bottom: 5px!important; }
.p5-l{ padding-left: 5px!important; }
.p10{ padding: 10px!important; }
.p10-t{ padding-top: 10px!important; }
.p10-r{ padding-right: 10px!important; }
.p10-b{ padding-bottom: 10px!important; }
.p10-l{ padding-left: 10px!important; }
.p15{ padding: 15px!important; }
.p15-t{ padding-top: 15px!important; }
.p15-r{ padding-right: 15px!important; }
.p15-b{ padding-bottom: 15px!important; }
.p15-l{ padding-left: 15px!important; }
.p20{ padding: 20px!important; }
.p20-t{ padding-top: 20px!important; }
.p20-r{ padding-right: 20px!important; }
.p20-b{ padding-bottom: 20px!important; }
.p20-l{ padding-left: 20px!important; }
.p25{ padding: 25px!important; }
.p25-t{ padding-top: 25px!important; }
.p25-r{ padding-right: 25px!important; }
.p25-b{ padding-bottom: 25px!important; }
.p25-l{ padding-left: 25px!important; }
.p30{ padding: 30px!important; }
.p30-t{ padding-top: 30px!important; }
.p30-r{ padding-right: 30px!important; }
.p30-b{ padding-bottom: 30px!important; }
.p30-l{ padding-left: 30px!important; }
.p40{ padding: 40px!important; }
.p40-t{ padding-top: 40px!important; }
.p40-r{ padding-right: 40px!important; }
.p40-b{ padding-bottom: 40px!important; }
.p40-l{ padding-left: 40px!important; }
.p50{ padding: 50px!important; }
.p50-t{ padding-top: 50px!important; }
.p50-r{ padding-right: 50px!important; }
.p50-b{ padding-bottom: 50px!important; }
.p50-l{ padding-left: 50px!important; }
.p60{ padding: 60px!important; }
.p60-t{ padding-top: 60px!important; }
.p60-r{ padding-right: 60px!important; }
.p60-b{ padding-bottom: 60px!important; }
.p60-l{ padding-left: 60px!important; }
.p70{ padding: 70px!important; }
.p70-t{ padding-top: 70px!important; }
.p70-r{ padding-right: 70px!important; }
.p70-b{ padding-bottom: 70px!important; }
.p70-l{ padding-left: 70px!important; }
.p80{ padding: 80px!important; }
.p80-t{ padding-top: 80px!important; }
.p80-r{ padding-right: 80px!important; }
.p80-b{ padding-bottom: 80px!important; }
.p80-l{ padding-left: 80px!important; }
.p90{ padding: 90px!important; }
.p90-t{ padding-top: 90px!important; }
.p90-r{ padding-right: 90px!important; }
.p90-b{ padding-bottom: 90px!important; }
.p90-l{ padding-left: 90px!important; }
.p100{ padding: 100px!important; }
.p100-t{ padding-top: 100px!important; }
.p100-r{ padding-right: 100px!important; }
.p100-b{ padding-bottom: 100px!important; }
.p100-l{ padding-left: 100px!important; }

/*widthスタイル------------------------------------------*/
.w05{ width: 5%; }
.w10{ width: 10%; }
.w15{ width: 15%; }
.w20{ width: 20%; }
.w25{ width: 25%; }
.w30{ width: 30%; }
.w35{ width: 35%; }
.w40{ width: 40%; }
.w45{ width: 45%; }
.w48{ width: 48%; }
.w50{ width: 50%; }
.w55{ width: 55%; }
.w60{ width: 60%; }
.w65{ width: 65%; }
.w70{ width: 70%; }
.w75{ width: 75%; }
.w80{ width: 80%; }
.w85{ width: 85%; }
.w90{ width: 90%; }
.w95{ width: 95%; }
.w100{ width: 100%; }

/* フレキシブルボックス
.flex , flex-sb , flex-c 
---------------------------------------------------- */
/*flex（デフォルト） */
.flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
/*flex-sb（始終端を揃えて子要素を均等配置） */
.flex-sb {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
/*flex-c（子要素を中央揃え） */
.flex-c {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}


/*【メディアクエリ】*/
@media(max-width:1024px) {}
@media(min-width:769px) {}
@media(max-width:768px) {
/*----- 【各ページ・複数ページ 共通】 -----*/
/* メインコンテンツ内ヘッダ・h要素
------------------------------------------------------------ */
    /*メインコンテンツ - メインカラム - エントリーコンテンツ - h2 明朝見出し（見出し2） */
    main.content .entry-content h2{
        font-size: 1.5em;
    }
    /*メインコンテンツ - メインカラム - エントリーコンテンツ - h3 背景カラー見出し（見出し3） */
    main.content .entry-content h3{
        font-size: 1.5em;
    }
    
/* ブロック要素
div class="article-body article-sub" .article-sbody , .article-sub
---------------------------------------------------- */
    .content .article-body {
        margin: 0 auto 25px auto;
    }
    .content .article-body .article-sub  {
        margin: 0 auto 12.5px auto;
    }
    
/* 【汎用スタイル】*/
/*フレキシブルボックス
.flex , flex-sb , flex-c
（汎用スタイル使用時は768px以下でflexible解除・子要素横幅100%）
---------------------------------------------------- */
    /*flex（デフォルト） */
    .flex , .flex-sb , .flex-c {
        flex-direction: column;
        justify-content: flex-start;
    }
    .flex > div , .flex-sb > div , .flex-c > div ,
    .flex > p , .flex-sb > p , .flex-c > p {
        width: 100% !important;
    }
}
@media(max-width:767px) {}
@media(max-width:576px) {
/* 投稿からの右寄せ・左寄せ・中央寄せのリセット
---------------------------------------------------- */
    .alignleft , 
    .alignright , 
    .aligncenter {
        clear: both;
        display: block;
        float: none;
        margin: 30px auto;
    }
    
/* テーブル
table thead tbody tfoot tr th td 
---------------------------------------------------- */
    /* 基本 */
    .content table th,
    .content table td {
        width: auto !important;
        word-break: keep-all;
    }
    /*スクロールヒントスタイル上書き*/
    .scroll-hint-icon {
        top: 25px;
    }    
}
@media(max-width:350px) {}