@charset "UTF-8";
/* 記事自体のCSSの記述（管理画面でも使うようにファイル分け） */

/* -------------------------------------------------------	 */
/* 					カラーコード						 */
/* -------------------------------------------------------	 */
@import "../style.css";


/* -------------------------------------------------------	 */
/* 					共通設定								 */
/* -------------------------------------------------------	 */
article.contents
{
	background-color:var(--color_contents_background);
	color:var(--color_text_black);
	padding:var(--width_mobile_padding);
	font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;
	overflow:auto;
}


/* --------------------------------------------------------------------------------------------------------	 */
/* 				以下editor_style.cssコピー用																 */
/* --------------------------------------------------------------------------------------------------------	 */

article.contents p{
	margin-bottom:1em;
	font-size:16px;
	line-height:1.8em;
	letter-spacing:0.03em;
}

article.contents img{
	margin-bottom:1.0em;
}
article.contents p img{
	margin-bottom:0;
}
article.contents em{
	font-style:normal;
	font-weight:bold;
	color:#000;
}

/* リンクテキスト */
article.contents a:link{
	text-decoration:underline;
}
article.contents a:hover{
	text-decoration:none;
}



/* -------------------------------------------------------	 */
/* 			記事情報										 */
/* -------------------------------------------------------	 */
article.contents .post_info{
	display:flex;
	justify-content:right;
	margin-bottom:10px;
}
article.contents .post_info_a{
	width:50%;
}
article.contents .post_info_b{
	width:50%;
	text-align:right;
}
/* --------------------------------	 */
/* 			カテゴリー				 */
/* --------------------------------	 */
article.contents .post_info_a ul{
	margin:0;
}
article.contents .post_info_a li{
	display:inline-block;
	padding:0;
	margin:0;
}
article.contents .post_info_a a{
	display:block;
	padding:3px 8px;
	color:#fff;
	font-size:14px;
	text-decoration:none;
	background-color:var(--color_category);
	box-sizing:border-box;
	border-radius:5px;
}
article.contents .post_info_a a:hover{
	opacity:0.6;
}

/* --------------------------------	 */
/* 			日付					 */
/* --------------------------------	 */
article.contents .post_info_b{
	font-size:14px;
	margin-bottom:0;
	line-height:1.9em;
}
article.contents .post_info_b i{
	margin-right:0.2em;
}



/* -------------------------------------------------------	 */
/* 					見出し									 */
/* -------------------------------------------------------	 */
article.contents h2,
article.contents h3,
article.contents h4{
	clear:both;
}
/* --------------------------------	 */
/* 			H1						 */
/* --------------------------------	 */
article.contents h1{
	font-size:26px;
	margin:calc( -1 * var(--width_mobile_padding) );
	margin-bottom:10px;
	padding:15px 20px;
	background:#afdbc8;
	color:#000;
	position:relative;
}
article.contents h1:after{
	position:absolute;
	bottom:0;
	right:0;
	content:'';
	border-color:transparent transparent #fff transparent;
	border-width: 0 0 20px 40px;
	border-style: solid;
}
article.contents h1 + p{
	margin-top:1em;
}

/* 固定ページ */
article.page h1{
	text-align:center;
	margin-top:0px;
	background:none;
}
article.page h1 span{
	border-bottom:solid 1px var(--color_text_base);
	padding:5px 10px;
}


/* --------------------------------	 */
/* 			H2						 */
/* --------------------------------	 */
article.contents h2{
	margin-top:60px;
	margin-left:-15px;
	margin-right:-15px;
	padding:15px;
	padding-left:60px;
	background-color:var(--color_main);
	color:#fff;
	font-size:26px;
	position:relative;
}
article.contents h2:before{
	position: absolute;
	top:18px;
	left:20px;
	font-weight:bold;
	font-family:FontAwesome;
	content:"\f1b2";
}
article.contents h1 + h2{
	margin-top:30px;
}


/* --------------------------------	 */
/* 			H3						 */
/* --------------------------------	 */
article.contents h3{
	margin-top:40px;
	border-bottom:solid 1px var(--color_main);
	border-left:solid 1em var(--color_main);
	padding:10px;
	padding-left:15px;
	background-color:#edf3ff;
	font-size:19px;
	color:#000;
}
article.contents h2 + h3{
	margin-top:0;
}

/* --------------------------------	 */
/* 			H4						 */
/* --------------------------------	 */
article.contents h4{
	padding:9px 0 9px 45px;
	margin:2em 0 1em 0;
	font-size:18px;
	background-color:#eeecde;
	border-radius:2px;
	position:relative;
	color:#000;
}
article.contents h4:before{
	position:absolute;
	top:12px;
	left:15px;
	font-weight:bold;
	font-family:FontAwesome;
	content:"\f054";
}
article.contents h3 + h4{
	margin-top:0;
}



/* -------------------------------------------------------	 */
/* 					文字装飾								 */
/* -------------------------------------------------------	 */
/* 太字黒テキスト */
article.contents strong{
	font-weight:bold;
	color:#000;
}

/* 太字黒赤テキスト */
article.contents strong.red,
article.contents span.red{
	color:#f00;
	font-weight:bold;
}

/* マーカーテキスト */
article.contents strong.mark,
article.contents span.mark_gr{
	color:#000;
	padding: 2px;
	background:linear-gradient(
		rgba(255,255,255,0) 65%,
		#99ffaa 65%
	);
}

/* 小文字 */
article.contents small{
	font-size:12px;
	line-height:1.3em;
}

/* 背景付き */
article.contents p.is-style-bg,
article.contents p.bg{
	border-radius:3px;
	background:#fff1a5;
	padding:10px 15px;
}



/* -------------------------------------------------------	 */
/* 					リスト									 */
/* -------------------------------------------------------	 */
article.contents ul,
article.contents ol{
	margin-bottom:1.0em;
	margin-top:1.0em;
}
article.contents ul{
	list-style:disc;
}
article.contents li{
	padding-left:0.5em;
	margin-left:1.7em;
	margin-bottom:0.4em;
}
article.contents li:last-of-type{
	margin-bottom:0;
}

/* テーブルの中のリスト */
article.contents table ul,
article.contents table ol{
	margin-bottom:0.5em;
	margin-top:0.5em;
}
article.contents table li{
	margin-bottom:0.2em;
	padding-left:0.3em;
	margin-left:1.5em
}


/* --------------------------------	 */
/* 		番号付きリスト				 */
/* --------------------------------	 */
article.contents ol{
	counter-reset:list-count;
	list-style:none;
	border:solid 2px #666;
	border-radius:2px;
	padding:15px 15px 15px 10px;
	margin:2em 0;
	position:relative;
	background:#fffdf3;
}
article.contents ol > li::before{
	display:inline-block;
	position:absolute;
	left:17px;
	counter-increment:list-count;
	content:counter(list-count);
	background:#ea3a11;
	width:28px;
	height:28px;
	border-radius:2px;
	font-weight:bold;
	color:#fff;
	font-size:1.2em;
	text-align:center;
	line-height:1.3em;
}
article.contents ol li{
	margin-bottom:1em;
	margin-left:2.7em;
}
article.contents ol li:last-of-type{
	border-bottom:none;
	margin-bottom:0;
}

/* --------------------------------	 */
/* 		説明付きリスト				 */
/* --------------------------------	 */
article.contents dl{
	border:solid 3px #ccc;
	margin:2em 0;
	padding:1em 1.3em;
}
/* 項目名 */
article.contents dt{
	font-size:16px;
	font-weight:bold;
	padding-top:0.5em;
	border-top:dashed 1px #999;
}
article.contents dt:first-of-type{
	padding-top:0;
	border:none;
}
/* 説明 */
article.contents  dd{
	font-size:14px;
	margin-left:1.5em;
	margin-bottom:0.5em;
}
article.contents  dd:last-of-type{
	margin-bottom:0;
}
/* -------------------------------------------------------	 */
/* 					テーブル								 */
/* -------------------------------------------------------	 */
article.contents table{
	margin-left:auto;
	margin-right:auto;
	margin-top:20px;
	margin-bottom:20px;
	border-collapse:collapse;
	width:100%;
	border-bottom:solid 1px #9f9f9f;
}
article.contents th,
article.contents td,
article.contents td p{
	font-size:14px;
	margin-bottom:0.5em;
}
article.contents td p:last-of-type{
	margin-bottom:0;
}

/* キャプション */
article.contents table caption{
	margin-top:10px;
	margin-bottom:10px;
	text-align:left;
	padding-left:10px;
	border-left:solid 10px var(--color_main);
	font-weight:bold;
}


/* セル */
article.contents th,
article.contents td{
	padding:5px 10px 5px 10px;
}
/* セルの色 */
article.contents tr:nth-child(odd) td{
	background-color:#f0f0f0;
}
article.contents td{
	border-right:solid 1px #fff;
	border-top:solid 1px #fff;
}
article.contents table tr td:last-of-type{
	border-right:none;
}
article.contents tr:nth-child(even) td{
	border-right: solid 1px #f0f0f0;
}
article.contents td.bg_orange,
article tr:nth-child(odd) td.bg_orange{
	background-color:#fff0c0;
}

/* 見出しセル */
article.contents th{
	background-color:#575d67;
	color:#fff;
	text-align:left;
	border-top:solid 1px #ffffff;
	border-left:solid 1px #fff;
	text-align:center;
}
article.contents tr th:first-of-type{
	border-left:none;
}

article.contents thead th{
	font-size:16px;
	background-color:var(--color_main);
	padding:7px;
	text-align:center;
}

/* --------------------------------	 */
/* 	メリット・デメリットテーブル	 */
/* --------------------------------	 */
article.contents .melideme tr td,
article.contents .melideme tr th,
article.contents .melideme tr td:last-of-type{
	border:solid 1px #333;
}
/* メリットセル */
article.contents .melideme .meli th{
	background-color:#247ddb;
}
article.contents .melideme .meli td{
	background-color:#cee8ff;
}
/* デメリットセル */
article.contents .melideme .deme th{
	background-color:#df3535;
}
article.contents .melideme .deme td{
	background-color:#ffe3e3;
}

/* --------------------------------	 */
/* 		メーター表記のテーブル		 */
/* --------------------------------	 */
article.contents table.meter_table{
	width:100%;
	line-height:1.2em;
	border-top:solid 1px #d9d9d9;
	border-bottom:solid 1px #d9d9d9;
}
article.contents table.meter_table th,
article.contents table.meter_table td{
	padding-top:5px;
	padding-bottom:5px;
}
article.contents table.meter_table th{
	color:var(--color_text_base);
	height:38px;
	font-size:14px;
	width:30%;
	background-color:#9fceff;
}
article.contents table.meter_table tr{
	border-top:solid 4px #fff;
}
article.contents table.meter_table tr:first-of-type{
	border-top:none;
}
article.contents table.meter_table tr:first-of-type th{
	border-top:none;
}
article.contents table.meter_table td{
	background-color:#fff;
	border:none;
}
article.contents table.meter_table tr:nth-child(2n+1) td{
	background-color:#f3f3f3;
}
article.contents td meter{
	width:100%;
}
/* メーターテキスト */
article.contents .td_meter{
	display:flex;
}
article.contents .td_meter_left{
	width:40px;
	font-size:26px;
	padding-left:3px;
}
article.contents .td_meter_right{
	width:calc(100% - 26px);
}
/* メーターグラフ */
article.contents .meter_img{
	display:flex;
	height:20px;
}
article.contents .meter_img .green{
	background:#2a9f58;
}
article.contents .meter_img .gray{
	background:#c4c4c4;
}
/* レベル0 */
article.contents .meter_level_0 .gray{
	width:100%;
	border-radius:5px;
}
/* レベル1 */
article.contents .meter_level_1 .green{
	width:25%;
	border-top-left-radius:5px;
	border-bottom-left-radius:5px;
}
article.contents .meter_level_1 .gray{
	width:75%;
	border-top-right-radius:5px;
	border-bottom-right-radius:5px;
}
/* レベル2 */
article.contents .meter_level_2 .green{
	width:50%;
	border-top-left-radius:5px;
	border-bottom-left-radius:5px;
}
article.contents .meter_level_2 .gray{
	width:50%;
	border-top-right-radius:5px;
	border-bottom-right-radius:5px;
}
/* レベル3 */
article.contents .meter_level_3 .green{
	width:75%;
	border-top-left-radius:5px;
	border-bottom-left-radius:5px;
}
article.contents .meter_level_3 .gray{
	width:25%;
	border-top-right-radius:5px;
	border-bottom-right-radius:5px;
}
/* レベル4 */
article.contents .meter_level_4 .green{
	width:100%;
	border-radius:5px;
}

/* -------------------------------------------------------	 */
/* 					画像									 */
/* -------------------------------------------------------	 */
article.contents figure.aligncenter,
article.contents img.aligncenter{
	text-align:center;
	max-width:100%;
}

article.contents figure,
article.contents p img{
	display:block;
	margin-left:auto;
	margin-right:auto;
	margin-bottom:1em;
}
article.contents figure img{
	margin-bottom:0;
}


/* --------------------------------	 */
/* 		影付き						 */
/* --------------------------------	 */
article.contents .is-style-img_shadow img,
article.contents .frame{
	box-shadow:0 0 4px #666;
}

/* --------------------------------	 */
/* 		キャプション付				 */
/* --------------------------------	 */
article.contents .caption_img img{
	display:block;					/* 画像の右にテキストは出さない */
	margin-left:auto;
	margin-right:auto;
}
article.contents figure figcaption,
article.contents .caption_img{
	margin-top:0.3em;
	text-align:center;
	margin-bottom:1.3em;
	font-size:14px;
}
article.contents figure figcaption{
	margin-bottom:0;
}



/* -------------------------------------------------------	 */
/* 					引用									 */
/* -------------------------------------------------------	 */
article.contents blockquote{
	background-color:#fafafa;
	padding:20px 30px 20px 30px;
	border:solid 1px #cccccc;
	border-radius:2px;
	box-shadow:0px 1px 3px rgba(0,0,0,0.2);
	position:relative;
	margin:1.5em 5px;
}
/* 引用符 */
article.contents blockquote:before,
article.contents blockquote:after
{
	position:absolute;
	font-family:Fontawesome;
	font-size:40px;
	opacity:0.1;
}
article.contents blockquote:before{
	top:0px;
	left:10px;
	content:"\f10d";
}
article.contents blockquote:after{
	bottom:0px;
	right:10px;
	content:"\f10e";
}
/* 引用元テキスト */
article.contents blockquote p.source{
	text-align:right;
	margin-bottom:0;
}
article.contents blockquote p.source i{
	margin-left:10px;
}
/* 引用中のリスト、余白調整 */
article.contents blockquote ul{
	margin:20px;
	margin-right:0;
}
article.contents blockquote li{
	padding-left:0.2em;
}


/* -------------------------------------------------------	 */
/* 					挿入パーツ								 */
/* -------------------------------------------------------	 */



/* --------------------------------	 */
/* 			関連リンクボタン		 */
/* --------------------------------	 */
article.contents .link-icon,
article.contents .link-icon-ex,
article.contents span.outlink{
	display:inline-block;
	color:#fff;
	background-color:var(--color_main);
	padding:8px 7px 10px 7px;
	font-size:14px;
	margin-right:7px;
	line-height: 10px;
	border-radius:2px;
}

/* 外部リンクボタン */
article.contents .link-icon-ex,
article.contents p.link_botton_ex span.outlink,
article.contents span.outlink_ex{
	background-color:#ab1a1a;
}

/* 以下旧エディタ用の不要処理 */
article.contents p.link_botton{
	text-indent:-50px;
	margin-left:50px;
}
/* 外部リンクボタン */
article.contents p.link_botton_ex{
	text-indent:-88px;
	margin-left:88px;
}
article.contents p.link_botton_ex .fa{
	display:inline;
	margin-left:0.5em;
}
article.contents p.link_botton_ex a{
	vertical-align:middle;
}


/* --------------------------------	 */
/* 			ボタンリンク			 */
/* --------------------------------	 */
article.contents p.wp-block-oc-blocks-button-link{
	text-align:center
}
article.contents p.wp-block-oc-blocks-button-link a{
	display:inline-block;
	text-decoration:none;
	padding:10px 20px;
	color:#fff;
	background-color:#e32828;
	font-size:18px;
	border-radius:5px;
	font-weight:bold;
	line-height:1.3em;
	box-shadow:0 5px 0px #8a1818;
}
article.contents p.wp-block-oc-blocks-button-link a:hover{
	transform:translateY(4px);
	transition-timing-function:ease;
	transition-duration:0.2s;
	box-shadow:0 1px 0px #8a1818;
}



/* --------------------------------	 */
/* 			注釈ブロック(note)		 */
/* --------------------------------	 */
article.contents .box_note{
	margin:1.0em 0;
	background-color:#f2e6d3;
	padding:15px;
}
article.contents .box_note{
	margin-bottom:1em;
}

article.contents .box_note p,
article.contents .box_note .title{
	font-size:14px;
	line-height:1.7em;
	margin-bottom:0.7em;
}
article.contents .box_note .text p:last-of-type{
	margin-bottom:0;
}
/* タイトル */
article.contents .box_note .title{
	margin-top:-5px;
	margin-left:-15px;
}
article.contents .box_note .title,
article.contents .box_note .title span{
	display:inline-block;
	font-size:14px;
	color:#fff;
	background-color:#ec6f00;
	padding:2px 10px 4px 10px;
}
/* 画像のキャプション */
article.contents .box_note .caption_img{
	font-size:13px;
}


/* --------------------------------	 */
/* 		まとめチェックリスト		 */
/* --------------------------------	 */
/* リストボックス */
article.contents ul.is-style-check-list,
article.contents ul.check_list{
	margin-bottom:1em;
	margin-top:3.5em;
	border:solid 3px #e63444;
	padding:15px;
	padding-bottom:10px;
	background-color:#fffff3;;
	clear:both;
	position:relative;
}
/* タイトル */
article.contents ul.is-style-check-list:before,
article.contents .check_list:before{
	position:absolute;
	top:-35px;
	left:-3px;
	width:70px;
	height:25px;
	display:block;
	font-family:'Avenir','Arial',sans-serif,FontAwesome;
	content:'POINT';
	background:#e63444;
	font-size:22px;
	font-weight:bold;
	letter-spacing:0.05em;
	color:#fff;
	padding:5px 15px;
}

/* リスト */
article.contents  ul.is-style-check-list li,
article.contents .check_list li{
	position:relative;
	border-bottom:dashed 1px #e63444;
	list-style-type:none;
	margin-bottom:1.0em;
	padding-bottom:0.5em;
	padding-left:0.7em;
}
article.contents ul.is-style-check-list li:last-child,
article.contents .check_list li:last-child{
	margin-bottom:0px;
	border-bottom:none;
}
article.contents ul.is-style-check-list li:before,
article.contents .check_list li:before{
	position:absolute;
	top:0;
	left: 0.5em;
	font-family:FontAwesome;
	content:'\f046';
	color:#e63444;
	font-size:22px;
	margin-left:-36px;
	margin-right:15px;
}


/* --------------------------------	 */
/* 		著者プロフィール			 */
/* --------------------------------	 */
article.contents .profile{
	background-color:#eaf79a;
	padding:10px;
	margin-bottom:1em;
	position:relative;
	border:solid 1px #666;
}

article.contents .profile_a_2column{
	display:flex;
	margin-bottom:8px;
}
article.contents .profile_a_2column_a{
	width:55%;
	margin-right:5%;
	box-sizing:border-box;
}
article.contents .profile_a_2column_b{
	width:40%;
	background:#fff;
	width:100%;
	display:flex;
	flex-flow:column;
}
article.contents .profile_info{
	display:flex;
	flex-flow:column;
	flex-grow:2;
	justify-content: center;
}


/* この記事の著者は */
article.contents .profile .title_text{
	background-color:#333;
	color:#fff;
	padding:0 10px;
	font-size:14px;
	margin-bottom:1.0em;
	position:relative;
	text-align:center;
}
article.contents .profile .title_text:after{
  position: absolute;
  content: '';
  top: 100%;
  left: calc( 30% );
  border:5px solid transparent;
  border-top:5px solid #333;
  border-right:5px solid #333;
  width: 0;
  height: 0;
}

/* 画像 */
article.contents .profile img{
	margin-bottom:0;
}

/* 著者名 */
article.contents .profile .profile_name{
	font-size:26px;
	font-weight:bold;
	margin-bottom:0;
	text-align:center;
	line-height:1.3em;
	color:#000;
}
/* 肩書き */
article.contents .profile .profile_title{
	text-align:center;
	margin-bottom:0;
}

/* プロフィール紹介文 */
article.contents .profile .profile_text p{
	font-size:14px;
	margin-bottom:0.5em;
	line-height:1.5em;
}
article.contents .profile .profile_text p:last-of-type{
	margin-bottom:0;
}

/* 末尾リンク */
article.contents .profile .profile_text p a{
	font-size:16px;
}


/* --------------------------------	 */
/* 				Q&A					 */
/* --------------------------------	 */
/* Q&A共通 */
article.contents h3.is-style-qa-q,
article.contents h3.qa_q,
article.contents .is-style-qa-a,
article.contents .qa_a{
	position:relative;
	margin-bottom:1.5em;
	padding:10px 0 0.7em 50px;
	font-weight:normal;
	font-size:1.00rem;
	line-height:2.0em;
	color:#000;
}
article.contents h3.is-style-qa-q:after,
article.contents h3.qa_q:after,
article.contents .is-style-qa-a:after,
article.contents .qa_a:after{
	position:absolute;
	top:0.2em;
	left:5px;
	font-size:28px;
	font-weight:bold;
	color:#fff;
	padding:0 0.3em;
	border-radius:5px;
}

/* Q側限定 */
article.contents h3.is-style-qa-q,
article.contents h3.qa_q{
	border:none;
	margin-bottom:20px;
	padding-right:10px;
	background-color:#e0e0e0;
	font-weight:bold;
	font-size:17px
}
article.contents h3.is-style-qa-q:after,
article.contents h3.qa_q:after{
	content:'Q.';
	color:#4b8aff;
}

/* A側限定 */
article.contents .is-style-qa-a,
article.contents .qa_a{
	background-color: #eaf0ff;
}
article.contents .is-style-qa-a:after,
article.contents .qa_a:after{
	content:'A.';
	color:#fd2f2f;
}

/* --------------------------------	 */
/* 				吹き出し			 */
/* --------------------------------	 */
article.contents .voice_chat{
	margin:2em 0;
}

/* 段落分け */
article.contents .voice_left,
article.contents .voice_right
{
	display:flex;
}
article.contents figure.icon{
	width:25%;
}
article.contents .voice_left .hukidasi{
	margin-left:20px;
}
article.contents .voice_right .hukidasi{
	margin-right:20px;
}
article.contents .hukidasi{
	position:relative;
	width:75%;
	box-sizing:border-box;
	color:#000;
	border-radius:5px;
	z-index:0;
	padding:10px 12px;
	border:solid 1px #666;
}

article.contents .voice_left + .voice_right,
article.contents .voice_right + .voice_left{
	margin-top:1em;
}


/* アイコン画像 */
article.contents .voice_left figure,
article.contents .voice_right figure{
	margin-bottom:0;
}
article.contents figure.icon img{
	max-width:100%;
	height:auto;
	box-shadow:none;
	margin-bottom:0.2em;
}
/* アイコン画像下の名前 */
article.contents figure.icon figcaption.name{
	font-size:12px;
	text-align:center;
}

/* 吹き出しカラー※シッポとも合わせること */
article.contents .voice_left .hukidasi{
	background-color:#fbfff3;
}
article.contents .voice_right .hukidasi{
	background-color:#ffecd3;
}

/* 吹き出しのシッポ */
article.contents .voice_left .hukidasi:before,
article.contents .voice_right .hukidasi:before,
article.contents .voice_left .hukidasi:after,
article.contents .voice_right .hukidasi:after
{
	content:"";
	position:absolute;
	display:block;
	width:0px;
	height:0px;
	top:8px;
	z-index:0;
	border:solid 15px transparent;
	border-width:15px;
}
article.contents .voice_left .hukidasi:before,
article.contents .voice_left .hukidasi:after
{
	left:-30px;
	border-right:solid 25px #fbfff3;
	border-right-width:17px;

}
article.contents .voice_right .hukidasi:before,
article.contents .voice_right .hukidasi:after
{
	right:-30px;
	border-left:solid 25px #ffecd3;
	border-left-width:17px;
}

/* 吹き出しシッポ枠線 */
article.contents .voice_left .hukidasi:after {
	left:-32px;
	border-right:solid 25px #666;
	z-index:-1;
	border-right-width:16px;

}
article.contents .voice_right .hukidasi:after {
	right:-32px;
	border-left:solid 25px #666;
	z-index:-1;
	border-left-width:16px;
}


/* --------------------------------	 */
/* 			外部埋め込み			 */
/* --------------------------------	 */
/* Twitterツイート引用 */
article.contents .twitter-tweet{
	margin:0 auto;
}

/* GoogleMap */
article.contents .ggmap{
	position:relative;
	padding-bottom:55%;
	padding-top:30px;
	height:0;
	overflow:hidden;
	margin-bottom:20px;
}
article.contents .ggmap iframe,
article.contents .ggmap object,
article.contents .ggmap embed{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}


/* --------------------------------	 */
/* 	末尾のあわせて読みたいリスト	 */
/* --------------------------------	 */
article.contents .relate_link_block{
	margin-top:2em;
	margin-bottom:1em;
}
/* タイトル */
article.contents .relate_link_block .head_text{
	display:inline-block;
	background-color:#337ec1;
	color:#fff;
	padding:2px 10px;
	margin-bottom:0;
	font-size:14px;
	border-top-right-radius:5px;
}
article.contents .relate_link_block .head_text:before{
	font-family:FontAwesome;
	content:"\f058";
	margin-right:0.5em;
}

/* 各項目リスト */
article.contents .relate_link_block ul{
	margin-top:0;
	margin-bottom:0;
}
article.contents .relate_link_block li{
	display:block;
	margin:0;
	padding:0;
	background-color:#e2effd;
	margin-bottom:3px;
	border-left:solid 10px #337ec1;
	font-size:15px;
	list-style:none;
}

article.contents .relate_link_block li a{
	display:block;
	color:var(--color_text_base);
	padding:8px 10px;
	text-indent:-1.6em;
	padding-left:2.2em;
}
article.contents .relate_link_block li a:before{
	font-family:FontAwesome;
	content:"\f101";
	margin-right:0.5em;
}

/* 旧テーマ処理 */
article.contents .relate_link_block .relates ul{
	margin:0;
}




/* -------------------------------------------------------	 */
/* 					ショートコード							 */
/* -------------------------------------------------------	 */
/* --------------------------------	 */
/* 			リンクカード			 */
/* --------------------------------	 */
article.contents .link_card{
	margin:1em auto;
	position:relative;
	background-color:#ffe5a8;
	padding:10px;
	padding-left:15px;
	border-radius:2px;
}
article.contents .link_card:hover{
	background-color:#eebc49;
	transition-property:background-color;
	transition-timing-function:ease;
	transition-duration:0.3s;
}
article.contents .link_card:hover img{
	filter:brightness(0.6);
	transition-property:filter;
	transition-timing-function:ease;
	transition-duration:0.3s;
}
article.contents .link_card a{
	color:#000;
	text-decoration:none;
}
/* タイトル */
article.contents .link_card p.head_text{
	position:absolute;
	top:0;
	left:0;
	font-size:13px;
	background-color:#eaac1f;
	padding:2px 7px 3px 7px;
	border-top-left-radius:2px;
	border-bottom-right-radius:2px;
}

/* 2カラム */
article.contents .link_card_2box{
	display:flex;
}
article.contents .link_card_2box_a{
	width:57%;
	margin-top:27px;
	margin-bottom:0;
	font-size:15px;
	line-height:1.5em;
	font-weight:bold;
}
article.contents .link_card_2box_b{
	width:40%;
	margin-left:3%;
}

/* 記事名テキストのアイコン */
article.contents .link_card_2box_a i{
	margin-left:0.5em;
	text-decoration:underline;
}

/* サムネイル画像 */
article.contents .link_card img{
	margin-bottom:0;
}


/* --------------------------------------------------------------------------------------------------------	 */
/* 					PC版(641px以上での表示)																	 */
/* --------------------------------------------------------------------------------------------------------	 */
@media (min-width:641px){

	article.contents p{
		font-size:17px;
	}

	/* -------------------------------------------------------	 */
	/* 					記事ページ								 */
	/* -------------------------------------------------------	 */
	article.contents{
		padding:20px 30px;
		border-radius:2px;
	}

	/* -------------------------------------------------------	 */
	/* 			記事情報										 */
	/* -------------------------------------------------------	 */
	article.contents .post_info_a{
		width:auto;
		margin-right:1em;
	}
	article.contents .post_info_b{
		width:auto;
	}

	/* -------------------------------------------------------	 */
	/* 					見出し									 */
	/* -------------------------------------------------------	 */
	article.contents h1{
		font-size:28px;
		margin:0px 0px 10px -30px;
		padding:20px 20px 20px 35px;
	}

	/* --------------------------------	 */
	/* 			H2						 */
	/* --------------------------------	 */
	article.contents h2{
		margin-left:-30px;
		margin-right:-30px;
	}


	/* -------------------------------------------------------	 */
	/* 					リスト									 */
	/* -------------------------------------------------------	 */
	article.contents li{
		font-size:17px;
	}

	/* -------------------------------------------------------	 */
	/* 					テーブル								 */
	/* -------------------------------------------------------	 */
	/* セル */
	article.contents th,
	article.contents td{
		padding:7px 12px;
	}


	/* -------------------------------------------------------	 */
	/* 					画像									 */
	/* -------------------------------------------------------	 */
	article.contents figure.aligncenter{
		max-width:70%;
	}
	/* 横並び */
	article.contents .caption_right,
	article.contents .alignright{
		max-width:47%;
		float:right;
		margin-left:1.0em;
	}
	article.contents .caption_left,
	article.contents .alignleft{
		max-width:47%;
		float:left;
		margin-right:1.0em;
	}
	article.contents .caption_img .caption_right,
	article.contents .caption_img .alignright,
	article.contents .caption_img .caption_left,
	article.contents .caption_img .alignleft{
		max-width:100%;
		float:none;
		margin:0 auto;
	}

	/* --------------------------------	 */
	/* 		画像ギャラリー				 */
	/* --------------------------------	 */
	article.contents .wp-block-gallery{
		display:flex;
		flex-wrap:wrap;
	}
	article.contents .wp-block-gallery figure{
		width:49% !important;
		margin-right:2%;
		margin-left:0;
	}
	article.contents .wp-block-gallery figure:nth-of-type(2n){
		margin-right:0;
	}

	/* --------------------------------	 */
	/* 		キャプション付				 */
	/* --------------------------------	 */
	article.contents .caption_center{
		margin-left:auto;
		margin-right:auto;
	}

	/* ミドルサイズ */
	article.contents .size_middle{
		max-width:500px;
	}

	/* 横2列 */
	article.contents .img_2box{
		display:flex;
	}
	article.contents .img_2box .img_box{
		width:49%;
		margin-right:2%;
	}
	article.contents .img_2box .img_box:last-of-type{
		margin-right:0;
	}


	/* -------------------------------------------------------	 */
	/* 					引用									 */
	/* -------------------------------------------------------	 */
	article.contents blockquote{
		margin-left:30px;
		margin-right:30px;
	}

	/* -------------------------------------------------------	 */
	/* 					挿入パーツ								 */
	/* -------------------------------------------------------	 */
	/* --------------------------------	 */
	/* 		著者プロフィール			 */
	/* --------------------------------	 */
	article.contents .profile{
		padding:15px;
		display:flex;
	}
	article.contents .profile_a{
		width:25%;
		margin-right:2%;
	}
	article.contents .profile_b{
		width:73%;
	}

	/* 写真と名前と肩書 */
	article.contents .profile_a_2column{
		margin-bottom:0;
		display:block;
	}
	article.contents .profile_a_2column_a{
		width:100%;
		margin-right:0;
	}
	article.contents .profile_a_2column_b{
		width:100%;
	}

	/* この記事を書いたのは */
	article.contents .profile .title_text{
		margin-bottom:0.7em;
	}
	/* 著書名 */
	article.contents .profile .profile_name{
		font-size:22px;
		font-weight:normal;
	}

	/* 肩書 */
	article.contents .profile .profile_title{
		font-size:15px;
		margin-bottom:0.5em;
	}
	/* 紹介文 */
	article.contents .profile .profile_text p{
		font-size:15px;
		margin-bottom:1.0em;
	}


	/* --------------------------------	 */
	/* 				吹き出し			 */
	/* --------------------------------	 */
	article.contents figure.icon{
		width:100px;
	}
	article.contents .hukidasi{
		width:calc(100% - 220px);
		padding:1em;
	}
	article.contents .voice_right .hukidasi{
		margin-left:120px;
	}
	article.contents .voice_left .hukidasi{
		margin-right:120px;
	}


	/* -------------------------------------------------------	 */
	/* 					ショートコード							 */
	/* -------------------------------------------------------	 */
	/* --------------------------------	 */
	/* 			リンクカード			 */
	/* --------------------------------	 */
	/* タイトル */
	article.contents .link_card p.head_text{
		padding:3px 10px 5px 10px;
	}
	/* 2カラム */
	article.contents .link_card_2box_a{
		width:77%;
		margin-top:37px;
		padding-left:7px;
		box-sizing:border-box;
		font-size:17px;
		font-weight:normal;
	}
	article.contents .link_card_2box_b{
		width:20%;
		margin-left:3%;
	}


}