/*=======================================================
blog：一覧
=======================================================*/
.post-block { 
	margin: 5em auto 0;
	}

#new-post-list .post-item{ 
	width: 32%;
	margin: 0 1.4em 3em 0;
	border-radius: 30px;
	box-shadow: 0 11px 38px 0 rgb(51 51 51 / 10%);
}
#new-post-list .post-item:nth-child(3n){ 
	width: 32%;
	margin: 0 0 3em 0;
	border-radius: 30px;
	box-shadow: 0 11px 38px 0 rgb(51 51 51 / 10%);
	}

@media screen and (max-width:896px){
	#new-post-list .post-item{ 
	width: 100%;
	margin: 0 0 1.5em 0;
	}
#new-post-list .post-item:nth-child(3n){ 
	width: 100%;
	margin: 0 0 1.5em 0;
	}
#new-post-list .post-item:last-of-type{ 
	margin: 0 0 2em 0;
	}
}

#new-post-list .post-thumbnail{ 
	width: 100%;
	max-height: 275px;
	overflow: hidden;
	border-radius: 30px 30px 0 0;
}

/*post-hover img*/
#new-post-list .post-thumbnail img{
	vertical-align: top;
	width: 100%;
	height: auto;
	border-radius: 30px 30px 0 0;
	object-fit: cover;
	transition: all 1s;
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	-o-transition: all 1s;
}

#new-post-list .post-thumbnail img:hover{
	border-radius: 30px 30px 0 0;
	transform: scale(1.2,1.2);
	transition: all 1s;
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	-o-transition: all 1s;
	opacity: 0.8;
}

#new-post-list .post-title{ 
	display: inline-block;
	color: #111;
	font-size: 1.5rem;
	line-height: 1.7;
	font-weight: 600;
	padding: 0 1.5em 1.5em;
}
@media screen and (max-width: 896px){
	#new-post-list .post-title{ 
	height: auto;
	}
}

#new-post-list .post-date{ 
	font-size: 1.2rem;
	color: #999;
	padding: 1em 1.8em 0.3em;
	box-sizing: border-box;	
	display: block;
}
 

/*pagination
-------------------------------------------*/

.wp-pagenavi { 
    width: 100%;
	text-align: center;
	padding: 1em 0;
}
.wp-pagenavi .pages{ 
	display: none!important;
}
.wp-pagenavi { 
    justify-content: center;
	margin: 0 0.2em;
	color: #666;
}
.wp-pagenavi a,
.wp-pagenavi span{
	color: #666!important;
    text-align: center!important;
	border: none!important;
	margin-right: 0.3em;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	font-family: 'Akshar', sans-serif!important;
	font-size: 3rem!important;
}

.wp-pagenavi a:hover {
	color: #bc8f14!important;
	transform:translateY(-5px)!important;
}
.wp-pagenavi .current{
	color: #bc8f14!important;
	font-weight: 400!important;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {/* 記号の削除 */
    display: none;
}

/*=======================================================
single
=======================================================*/
#post-area {  
	width: 750px;
	box-sizing: border-box;
	}
@media screen and (max-width: 896px){
	#post-area {  
	width: 100%;
	}
}

#side-area{ 
	width: 250px;
	margin-left: 50px;
}
@media screen and (max-width: 896px){
	#side-area{ 
	display: none;
	}
}

#main-content{
	margin-bottom: 5em;
}
@media screen and (max-width: 896px){
	#main-content{
	margin-bottom: 3em;
	}
}

#main-content h1{  
	font-size: 1.68rem;
	font-weight: 600;
	margin-bottom: 1em;
	}

#main-content h2{  
	font-size: 1.6rem;
	font-weight: 600;
	background: #e6e6e6;
	padding: 0.3em 0.5em;
	box-sizing: border-box;
	margin: 1.5em 0;
	}

#main-content h3{   
	font-size: 1.6rem;
	font-weight: 600;
	border-bottom: 3px solid #111;
		padding: 0.3em 0.5em;
	box-sizing: border-box;
	margin: 1.5em 0;
	}

#main-content h4{  
	font-size: 1.5rem;
	box-sizing: border-box;
	margin: 1.5em 0;
	font-weight: 600;
	}

#main-content p{ 
	margin-bottom: 2em;
	line-height: 2.5;
	}

#main-content .post-thumbnail img{
	width: 100%;
	height: 450px;
	object-fit: cover;
	margin-bottom: 3em;
}
@media screen and (max-width: 896px){
	#main-content .post-thumbnail img{
	height: auto;
	margin-bottom: 1.8em;
	}
}


/*パンくずリスト
----------------------------------*/
 .breadcrumb{ 
	margin: 0 auto 1em;
	display: flex;
	font-size: 1.2rem;
	color: #111;
}

 .breadcrumb a,
 .breadcrumb i{ 
	 color: #111;
	 margin-right: 0.6em;
}

.breadcrumb a:hover{
	text-decoration: underline;
	opacity: 0.7;
}


/*投稿記事
----------------------------------*/
#main-content .post-date{
	color: #999;
	font-size: 1.6rem;
}

#main-content .post-tag{
	margin-bottom: 3em;
	font-size: 1.3rem;
	color: #999;
}
#main-content .post-tag li{
	background:  #ccbb75;
	padding: 0.2em 1.5em;
	margin: 0.8em 0.8em 0 0;
	border-radius: 20px;
	line-height: 2.2;
}
#main-content .post-tag a{
	color: #fff;
}

/*About me
----------------------------------*/
.aboutme-area{ 
	width: 100%;
	border-top: 1px solid #111;
	margin-bottom: 3em;
}

.aboutme-ttl{
	font-size: 3rem;
	padding: 0.5em 0 0.5em 0;
}

@media screen and (max-width: 896px){
.aboutme-ttl{
	text-align: center;
	}
}

.aboutme-photo{
	width: 150px;
}
.aboutme-photo img{ 
	width: 150px;
	height: 150px;
	border-radius: 50%;
	box-sizing: border-box;
}
@media screen and (max-width: 896px){
	.aboutme-photo{
	width: 180px;
	margin: 0 auto;
	}
.aboutme-photo img{ 
	width: 180px;
	height: 180px;
	}	
}

.aboutme-name{
	font-size: 1.6rem;
}
@media screen and (max-width: 896px){
	.aboutme-name{
	text-align: center;
	}
} 

.aboutme-txt{ 
	width: 85%;
	margin: 0 0 0 1.5em;
}
@media screen and (max-width: 896px){
	.aboutme-txt{ 
	width: 100%;
	margin: 2em 0 0 0;
	}
}


/*おすすめ記事
----------------------------------*/
.awasete-ttl{
	font-size: 1.8rem;
	font-weight: 600;
	position: relative;
	padding: 0 0 0 8px;
	margin-bottom: 1.5em;
}

.awasete-ttl::before{ 
	content: '';
	width: 3px;
	height: 80%;
	background: #111;
	border-radius: 8px;
	position: absolute;
	top: 10%;
	left: 0;
}

.awasete-list{ 
	width: 100%;
	margin-bottom: 3em;
	padding-bottom: 1em;
	border-bottom: 1px solid #ccc;
	box-sizing: border-box;
}

.awasete-thumbnail { 
	width:35%;
	display: block;
	padding: 0 0 1em 1em;
	box-sizing: border-box;
}

.awasete-thumbnail img {
	width: 100%;
	height: 120px;
	object-fit: cover;
}

.awasete-post{ 
	width: 60%;
	margin-left: 1em;
}

.awasete-post-ttl{
	font-size: 1.5rem;
	line-height: 1.5;
	color: #111;
	font-weight: 600;
}
.awasete-post-ttl a{
	color: #111;
}

.awasete-post-date{
	color: #999;
	font-size: 1.4rem;
}
.awasete-post-date a{
	color: #999;
}


/*目次：TOC
----------------------------------*/

/*自動目次の非表示*/
#table-of-contents{
	display: none;
}

#toc_container{
	width: 100%!important;
	border-top: none!important;
	border-left: none!important;
	border-right: none!important;
	border-bottom: 1px solid #111!important; 
	box-sizing: border-box!important;
	margin: 4em 0 6em!important;
	background: none!important;
}


/* 目次エリア */
#toc_container p.toc_title + ul.toc_list{
	padding: 0 1.5em 1.5em;
	box-sizing: border-box;
}

/* 目次 Contents title*/
#toc_container .toc_title{ 
	font-family: 'Urbanist', sans-serif;
	font-size: 3rem;
	color: #111;
	margin-bottom: 1em!important;
	text-transform: capitalize;
	text-align: center;
	align-items: center;
	display : -webkit-box; 
	display : -webkit-flex; 
	display : -ms-flexbox;  
	display : flex;
}
#toc_container .toc_title::after,
#toc_container .toc_title::before{ 
	content: "";
	height: 1px;
	background: #111;
	flex-grow: 1;
}

#toc_container .toc_title::before{
	margin-right: 2rem;
}

#toc_container .toc_title::after{
	margin-left: 1rem;
}

/* リスト共通スタイル */
#toc_container ul.toc_list li{
	position: relative;
	padding: 0;
	margin: 0 0 1em 0;
}
 
/* 目次リンク共通スタイル */
#toc_container ul.toc_list li a{
	position:relative;
	display: inline-block;
	transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
}
#toc_container ul.toc_list a,
#toc_container ul.toc_list a:visited{
	color: #333;
}

#toc_container ul.toc_list li a:hover{
	color: #808080;
}
 
/* 親の目次 */
#toc_container ul.toc_list > li > a{ 
	font-size: 1.5rem;
	margin: 0 0 1em 1em;
	line-height: 1.5;
	font-weight: 600;
	color: #111;
}
 
/* 親の目次(左側の連番) */
#toc_container ul.toc_list > li::before,
#toc_container ul.toc_list > li::after{
	position:absolute;
	top: 0;
	left: 0;
}

/* 子の目次 */
#toc_container ul.toc_list > li > ul{ 
	margin: 0 0 0 2em!important;
	font-size: 1.4rem;
	line-height: 2;
}

#toc_container ul.toc_list > li ul li a{ 
	font-weight: normal;
	margin-left: 1.2em;
}

#toc_container ul ul{
	margin-left: 0!important;
}
 
/* 子の目次の左側のアイコン */
#toc_container ul.toc_list > li ul li::before{
	content: '';
	position:absolute;
	top: 8px;
	xtransform: translateY(-50%);
	left: 0;
	width: 10px;
	height: 10px;
	background: #4d4d4d;
	border-radius: 8px;
	display: inline-block;
}

/* 表示／非表示トグル */
#toc_container .toc_toggle a{
	display: none;
}
#toc_container .toc_number{
	display: none;
}
/* 連番背景 */
#toc_container ul.toc_list > li::before{ 
display: none;
}

/* 連番 */
#toc_container ul.toc_list > li::after{ 
	display: none!important;
}
/* テーマによるリストの装飾を一旦無効化 */
#toc_container ul.toc_list li::before{
	content:none;
	padding:0;
	margin:0;
	width:0;
	height:0;
	background:none;
	box-shadow:none;
}

/*=======================================================
search
=======================================================*/
.search-block{
	position: relative;
	width: 100%;
	height: 3em;
	overflow: hidden;
	border: 1px solid #999;
	padding: 3px 10px;
	box-sizing: border-box;
	border-radius: 20px;
	margin-bottom: 2em;
}

.search-block input[type="text"]{ 
	height: 2.5em;
	border: none;
}

.search-block input[type="text"]:focus{
	outline: none;
}

.search-block input[type="submit"]{ 
	cursor: pointer;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 1.5rem;
	color: #111;
	background: none;
	width: 2.5em;
	height: 2.5em;
	position:absolute;
	top: 3%;
	right: 0;
	outline: none;
	border: none;
}