.content .outline__switch::before {
content: "［ Table of contents OPEN ］";
}
.content .outline__toggle:checked + .outline__switch::before {
content: "［ Table of contents CLOSE ］";
}

/*検索窓の文字消去*/
.searchHead input::placeholder {
	font-size: 0;
}

/*---------行間のカスタマイズ--------*/
p { line-height: 29px; /*高さ*/ }

/*---------スマホだけ横空白小さく-----*/
@media only screen and (max-width: 480px){
	.l-wrapper {
	margin: 20px 0px;
	}
}

/* 記事2-3カラムの位置調整 */
.wp-block-column {
	margin-top: 20px!important;
}

/*カラム縦狭める*/
.wp-block-column {
	margin-bottom:-1em;
}

/*サイトロゴカスタマイズ*/
/*パソコン表示*/
.siteTitle__logo {
height: 74px;/*サイズ調整*/
}
/*スマホ表示*/
@media screen and (max-width:480px) {
.siteTitle__logo {
height:62px;/*サイズ調整*/
}
}

/*目次のカスタマイズ*/
.content .outline{
position:relative;
border: solid 3px #D5D8DC;
border-radius:5px;
}

.content .outline__number{
width:1.9em;
height:1.9em;
padding:0;
line-height:1.8em;
text-align:center;
background:#89c3eb;
color:#fff;
border-radius:50%;
}

.outline__title{
color:#4DB6AC;
font-weight:bold;
font-size:18px;
}


/*文字下マーカー*/
.marker_line80 { background:linear-gradient(transparent 80%, #E6B0AA 0%); }

/************************************
** ■メインカラムのフレームのカスタマイズ
************************************/
.l-main.u-shadow, /*シャドウフレーム設定時*/
.l-main.u-border { /*ボーダーフレーム設定時*/
	border:1px solid #AEB6BF; /*枠線設定*/
	border-radius: 2px; /*角丸コーナー*/
	box-shadow: 0px 0px 10px #909497; /*影*/
	margin-top: -15px;
}

/************************************
** ■サイドカラムのフレームのカスタマイズ
************************************/
.l-sidebar.u-shadowfix, /*シャドウフレーム設定時*/
.l-sidebar.u-borderfix { /*ボーダーフレーム設定時*/
	border:1px solid #AEB6BF; /*枠線設定*/
	border-radius: 8px; /*角丸コーナー*/
}

/*---------リストボタン-----*/
.content ul>li:before {
content: "・";
transform: scale(3);
padding-bottom:2px;
color:#444;
}

/*サイト幅を変えるコード*/
.container{
max-width:1300px;
}
.l-wrapper {
max-width:1300px;
}

/*スマホのグローバルメニューの点滅矢印消す*/
.globalNavi::after{
    display: none;
}