@charset "utf-8";
/*
 * 投稿関連のCSSを制御
 * 
 * */

/*ページネーション （各投稿タイプ共通）
---------------------------------------------------------------------------------------------------*/
.card-paging {
	text-align: center;
	font-weight: 600;
	margin-top: 40px;
}
.card-paging .page-numbers{
    display: inline-block;
    width: 37px;
    height: 37px;
    line-height: 37px;
    background: #fff;
    color: #777;
    border-radius: 50px;
    font-size: 16px;
    margin: 0 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,.18);
}
.card-paging .page-numbers:hover{
    transform: translateY(-3px);
}
.card-paging .current{
    box-shadow: initial;
    background: #ddd;
    color: #fff;
    pointer-events: none;
}
.card-paging .dots{
	box-shadow: initial!important;
	background: none;
	color: #777777;
	pointer-events: none;
}
/*▼スマホ用CSS▼*/
@media screen and (max-width: 767px) {
	.card-paging {
		margin-top: 20px;
	}
}
/*▲スマホ用CSS▲*/

/*記事が投稿されていません （各投稿タイプ共通）
---------------------------------------------------------------------------------------------------*/
.not-found{
    text-align: center;
    padding: 30px;
}
.not-found a{
    font-weight: 600;
    display: inline-block;
    padding: 10px 20px;
    background: #333;
    color: #fff;
    border-radius: 200px;
    box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), inset 0 -2px 0 rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0,0,0,.6);
    transition: all ease .3s;
}
.not-found a:hover{
    transform: translateY(-5px);
}
/*▼スマホ用CSS▼*/
@media screen and (max-width: 767px) {
	.not-found{
		padding: 15px;
	}
}
/*▲スマホ用CSS▲*/

/*ウィジェットタイトル*/
.sidebar-box .widget-title{
    padding-left: 0;
    border-left: 0;
    padding-bottom: 2px;
    border-bottom: 2px solid #2b2b2b;
    font-size: 18px;
}
/*目次（TOC+）
---------------------------------------------------------------------------------------------------*/
.sidebar-box .toc_widget_list li{
    font-size: 16px;
}
.sidebar-box .toc_widget_list > li{
    margin-bottom: 10px;
}
.sidebar-box .toc_widget_list > li:last-child{
    margin-bottom: 0;
}
.sidebar-box .toc_widget_list > li > ul > li{
    padding-left: 16px;
}

/*サイドバーを上部固定（ポスト、カスタム）
---------------------------------------------------------------------------------------------------*/
.sticky-section-wrapper > .elementor-column-wrap > .elementor-widget-wrap{
    display: block!important;
}
.sticky-section-wrapper .sticky-section{
    position: sticky;
    top: 0;
}



/*デフォルトカードスタイル（お知らせ）
---------------------------------------------------------------------------------------------------*/
.card_news-container{
    list-style: none;
    margin: 0;
}
.card_news:first-child{
    border-top: 1px solid #DDDDDD;
}
.card_news{
    padding: 15px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #DDDDDD;
}
.card_news-date{
    flex-shrink: 0;
    font-size: 14px;
    line-height: 1;
    font-weight: bold;
    color: #36414B;
    width: 130px;
}
.card_news-catBox{
    width: 116px;
    text-align: center;
    flex-shrink: 0;
}
.elementor .card_news-catBox a{
    display: block;
    width: 100%;
    font-weight: bold;
    font-size: 12px;
    line-height: 1;
    padding: 7px 0;
	transition: all ease .3s;
}
.elementor .card_news-catBox a:hover{
	transform: translateX(5px);
}
.elementor h4.card_news-title{
	margin-bottom: 0;
	padding-left: 20px;
	font-size: 14px;
}
/*▼スマホ用CSS▼*/
@media screen and (max-width: 767px) {
.card_news{
		flex-wrap: wrap;
}
.elementor h4.card_news-title{
		width: 100%;
		margin-top: 15px;
		padding-left: 0!important;
}
}
/*▲スマホ用CSS▲*/

