@charset "utf-8";
/*
	* 基本スタイルシート
	* CMSのパーツ、テンプレートのスタイル
	* ver1
	* Copyright (C) ●●など
	* 更新履歴
		└ 
*/
/* ////////////////////////////////////////////////////////////////////////////////////////////////////
	CMSスタイル設定
//////////////////////////////////////////////////////////////////////////////////////////////////// */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	テンプレート > 子ページの目次を表示する > 通常版
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.st_pageList a{
	text-decoration: none;
	transition: all .3s ease;
}
.st_pageList > li a{
	border-bottom: 2px dotted #bebebe;
}
.st_pageList li > a{
	display: block;
	position: relative;
	margin: .5rem 0;
	padding: 15px calc(18px + 20px) 15px 15px;
	font-size: var(--fontSize18);
}
.st_pageList li > a::after{
	/* content: "";
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	border: 5px solid transparent;
	border-left: 8px solid var(--accentColor); */

	content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: bold;
    font-size: 10px;
    line-height: 1;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background-color: var(--mainColorLight);
    color: #fff;
    border-radius: 999px;
    letter-spacing: 0;
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
	transition: all .3s ease;
}
.st_pageList li > a:hover::after{
	right: 15px;
}
.st_pageList li > a:hover{
	opacity: 1;
	background-color: #e6f3f3;
	text-decoration: none;
	border-radius: 5px 5px 0 0;
}
.st_pageList .children{
	padding-left: 30px;
}
.st_pageList .children > li a{
	border-bottom: 2px dotted #bebebe;
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	テンプレート > 子ページの目次を表示する > アイコン版
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* .st_pageList a{
	display: block;
	padding: 10px;
	font-size: var(--fontSize18);
    font-weight: 700;
    padding-left: calc(20px + 10px);
    position: relative;
	list-style: none;
	border-bottom: 1px dashed #9b9b9c;
}

.st_pageList .children{
	padding-left: 30px;
}

.st_pageList > li a::before{
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f15b";
	color: #6bc48f;
	position: absolute;
	top: 23px;
	left: 0;
	font-size: var(--fontSize20);
}
.st_pageList > li  li{
	padding-bottom: 0;
}

.st_pageList > li li a::before{
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f105";
	color: #6bc48f;
	position: absolute;
	top: 24px;
	left: 0;
	font-size: var(--fontSize16);
}
@media screen and (max-width:576px){
	.st_editor .ptn_importantIconList li{
		font-size: var(--fontSize18);
	}
	.st_editor .ptn_importantIconList .wp-block-list > li::before{
		top: 20px;
	}
	.st_editor .ptn_importantIconList .wp-block-list > li li::before{
		top: 22px;
	}
} */


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	テンプレート > 子ページの目次を2カラム表示する
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.st_pageList.st_pageList__col2{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.st_pageList.st_pageList__col2 li{
	width: calc(50% - 1rem);
}
@media screen and (max-width: 576px){
	.st_pageList.st_pageList__col2{
		display: block;
	}
	.st_pageList.st_pageList__col2 li{
		width: 100%;
	}
}
/* ******************************************************************************************
	パーツ > ページャー
****************************************************************************************** */
.bl_pager{
	display: flex;
	justify-content: space-between;
	margin-top: calc(1.5rem + 5rem);/* editor相殺分 + 余白 */
}
.bl_pager_prev, .bl_pager_next{
	width: calc(50% - 1rem);
}
.bl_pager_prev a, .bl_pager_next a{
	display: block;
	position: relative;
	margin: 0 auto;
	padding-top: 1rem;
	padding-bottom: 1rem;
	border: 1px solid var(--black);
	border-radius: 5px;
	color: var(--black);
	text-decoration: none;
}
.bl_pager_prev a:before, .bl_pager_next a:before{
	position: absolute;
	top: 0;
	bottom: 0;
	width: 12px;
	height: 12px;
	margin: auto;
	color: var(--black);
}
.bl_pager_prev a{
	display: flex;
	align-items: center;
	height: 100%;
	padding-right: 1.25rem;
	padding-left: 2.5rem;
}
.bl_pager_next a{
	padding-right: 2.5rem;
	padding-left: 1.25rem;
}
/*左向き, 右向きの矢印*/
.bl_pager_prev a, .bl_pager_next a{
	position: relative;
}
.bl_pager_prev a:before, .bl_pager_next a:before{
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	transition: .3s;
	width: 13px;
	height: 13px;
	margin: auto;
	border-top: 2px solid var(--black);
	border-right: 2px solid var(--black);
}
/*左向きの矢印*/
.bl_pager_prev a:before{
	right: auto;
	left: 1rem;
	transform: rotate(-135deg);
}
/*右向きの矢印*/
.bl_pager_next a:before{
	right: 1rem;
	left: auto;
	transform: rotate(45deg);
}

@media (max-width:768px){
	.bl_pager{
		display: block;
	}
	.bl_pager_prev, .bl_pager_next{
		width: 100%;
	}
	.bl_pager_prev + .bl_pager_next{
		margin-top: 1rem;
	}
}
/* ******************************************************************************************
	404ページ
****************************************************************************************** */
.st_editor .el_errorUrl{
	padding: 10px 0;
	border-bottom: 3px solid var(--mainColor);
	font-size: 1.1rem;
	letter-spacing: 2px;
}
.st_editor .el_errorUrl:before{
	content: "\f138";
	padding-right: 10px;
	color: var(--mainColor);
	font-weight: bold;
	font-size: 1rem;
	font-family: "Font Awesome 5 Free";
}
.st_editor .bl_errorList li::marker{
	color: var(--mainColor);
	font-size: 1.125rem;
}