@charset "UTF-8";
/*
Author: あそびラボ
*/

/* ビジュアルエディタのフォント変更 */
#tinymce{
	font-family: "メイリオ", Meiryo, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, 
	"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
/* 記事内見出し */
.bl_post_lv2Heading{
    margin: 0 0 25px;
    padding: 2px 10px 5px 25px;
    background: #B6B3FF;
    border: 1px solid #B6B3FF;
    border-radius: 20px;
    font-size: 22px;
    color: #fff;
    line-height: 1.4;
}
p + .bl_post_lv2Heading{
	margin-top: 2em;
}
/* 記事内小見出し */
.bl_post_lv3Heading{
	margin: 0 0 20px;
	padding: 0 0 18px 34px;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.4;
	background: url(images/common/h3_line.svg) bottom left / 672px 39px no-repeat;
	position: relative;
}
.bl_post_lv3Heading::before{
    content: "";
    position: absolute;
    background: url(images/common/h3_icon.svg) top left / contain no-repeat;
    width: 22px;
    height: 30px;
    color: #BFDEFF;
    top: 0;
    left: 0;
}
p + .bl_post_lv3Heading{
	margin-top: 2em;
}
/* テキスト */
#tinymce p,.bl_post_cont p{
	margin-bottom:1em;
}
.bl_post_sTxt{
	font-size: 0.8em;
}
.bl_post_lTxt{
	font-size: 1.2em;
}
.bl_post_llTxt{
	font-size: 1.4em;
}
.bl_post_xlTxt{
	font-size: 1.8em;
}
/* リンクタグ */
#tinymce a,.bl_post_cont a{
	color: #e25e31;
	text-decoration: underline;
}
/* イタリック文字 */
#tinymce em,.bl_post_cont em{
	font-family: "游ゴシック", "游ゴシック体";
	font-weight: 500;
	font-style: italic;
}
/* 蛍光マーカー */
.underline_red {
	background: linear-gradient(transparent 60%, #ff7f7f 60%);
}
.underline_blue {
	background: linear-gradient(transparent 60%, #66ccff 60%);
}
.underline_green {
	background: linear-gradient(transparent 60%, #66FFCC 60%);
}
.underline_yellow {
	background: linear-gradient(transparent 60%, #ffff66 60%);
}
/* インデント */
.txt_indent{
	display: inline-block;
	padding: 0 0 0 1em;
}
/* マージン */
.m_20{
	margin-bottom: 20px!important;
}
.m_30{
	margin-bottom: 30px!important;
}
.m_40{
	margin-bottom: 40px!important;
}
/* 画像 */
#tinymce img,.bl_post img{
	max-width: 100%;
	width: auto;
	height: auto;
	display:block;
	float: none!important;
}
#tinymce img.alignright,
.bl_post img.alignright{
	margin: 0 0 0 auto;
}
#tinymce img.alignleft,
.bl_post img.alignleft{
	margin: 0 auto 0 0; 
}
#tinymce img.aligncente,
.bl_post img.aligncenter{
	margin: 0 auto;
}
/* テーブル */
#tinymce table,
.bl_post table {
	border: 1px solid #000!important;
}
#tinymce table th,#tinymce table td,
.bl_post table th,.bl_post table td {
	border: 1px solid #000!important;
	padding: 10px!important;
	background: #fff!important;
}


/* 点線ボックス */
.bl_dottedBox {
	border-top: 1px dashed #000;
	border-bottom: 1px dashed #000;
	padding: 10px 0;
	margin: 0 0 30px;
}
.bl_dottedBox p:last-of-type {
	margin: 0;
}

/* グレーボックス */
.bl_grayBox {
	border: 2px solid #ccc;
	padding: 20px;
	margin: 30px 0 30px;
	background: #ccc;
}
.bl_grayBox p:last-of-type {
	margin: 0;
}

/* タイトル付きボックス */
.bl_boxWithTtl {
	margin: 1em 0;
}
.bl_boxWithTtl + .bl_post_lv2Heading,
.bl_boxWithTtl + .bl_post_lv3Heading{
	margin-top: 1.5em;
}
.bl_boxWithTtl_ttl {
	color: #fff;
	border-radius: 10px 10px 0 0;
	padding: 3px 12px 5px;
	margin: 0;
	display: inline-block;
}
.bl_boxWithTtl_txt {
	padding: 16px;
}
.bl_boxWithTtl.red .bl_boxWithTtl_ttl {
	background-color: #f84a3c;
}
.bl_boxWithTtl.red .bl_boxWithTtl_txt {
	border: 1px solid #f84a3c;
}
.bl_boxWithTtl.yellow .bl_boxWithTtl_ttl {
	background-color: #fcc80b;
	color: #222;
}
.bl_boxWithTtl.yellow .bl_boxWithTtl_txt {
	border: 1px solid #fcc80b;
}
.bl_boxWithTtl.gray .bl_boxWithTtl_ttl {
	background-color: #ccc;
	color: #222;
}
.bl_boxWithTtl.gray .bl_boxWithTtl_txt {
	border: 1px solid #ccc;
}

/* 目次 */
#toc_container{
	background: #fff;
	border: 1px solid #aaa;
  padding: 16px;
  margin-bottom: 1em;
	width: auto;
  display: table;
  font-size: 95%;
}
#toc_container p.toc_title{
	text-align: center;
	font-weight: 700;
	margin: 0;
	padding: 0;
}
#toc_container p.toc_title+ul.toc_list{
	margin-top: 0.4em;
}
#toc_container a{
	text-decoration: none;
	text-shadow: none;
	position: relative;
}
#toc_container ul ul{
	margin-left: 1em;
}
#toc_container ul ul a::before{
	content: '▶︎';
	color: #b3a6a6;
}
@media screen and (max-width : 750px){
/* 記事内見出し */
  .bl_post_lv2Heading{
	  padding: 15px 20px;
      font-size: 28px;
  }
/* 記事内小見出し */
  .bl_post_lv3Heading{
	  padding-left: 50px;
      font-size: 28px;
      background: url(images/common/h3_line.svg) bottom left / 670px 39px no-repeat;
  }
  .bl_post_lv3Heading::before{
    width: 32px;
    height: 40px;
    left: 0;
  }
  #toc_container{
    padding: 20px;
  }
}

/* Mac,iPad Safari */
@media only screen and (min-device-width:768px){
    _::-webkit-full-page-media, _:future, :root .bl_post_lv3Heading::before {
        height: calc(100% - 7px);
    }
}
