@charset "UTF-8";
@import url("./css/reset.css");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url(../style.css);
/**変数**/
:root {
	--keycolor: #E59751;
	--text_color: #333;
	--white: #fff;

	--font-ttl: 'Shippori Mincho', serif;
	--font-ttl_english: "Poppins", sans-serif;
	
	--sidebar-width: 260px;  /* サイドバーのwidthを固定幅とする */
}
/****/


a { transition: 0.3s; }
a:hover {transition: 0.3s; }




#main {
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
}
#blog_content {
	width: calc( 100% - 280px);
	max-width: 800px;
}
#blog_content img{
	height: auto;
}
#sidebar { width: 240px; }
.content_box a{
	padding-bottom: 2px;
	border-bottom: 1px solid var(--keycolor);
	color: var(--keycolor);
	line-height: 1.8;
}
@media screen and ( max-width:768px ) {
	#main {
		flex-direction: column-reverse;
	}
	#blog_content { width: 100%; margin-bottom: 60px; }
	#sidebar { width: 100%; }
}

.works_blog_content{
	width: 100% !important;
	max-width: none !important;
}

/* パンクズ */
.breadcrumbs{
	margin-bottom: 100px;
	font-size: 12px;
}

.breadcrumbs span a{
	font-size: 12px;
}

/* */
#archive .first_ttl{
	padding: 110px 0 140px;
}

@media screen and (max-width:768px){
	#archive .lw_ttl_top{
		padding: 60px 0 140px;
	}
}

.blog_page_link { background: var(--keycolor); }

/* 一覧ページへのリンク */
.blog_page_link .inner ul{
	margin-bottom: 110px;
	padding-top: 40px;
	display: flex;
	justify-content: space-between;
}

.blog_page_link ul li{
	width: 22%;
}

.blog_page_link ul li a{
	width: 100%;
	padding:  16px 0;
	font-size: 18px;
	font-family: 'Shippori Mincho', serif;
	color: #222;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}


.blog_page_link ul li a span{
	font-size: 12px;
}

/* pagination */
.pagination .nav-links .page-numbers {
	display: flex;
	justify-content: center;
}
.pagination .nav-links .page-numbers li {
	margin: 50px 5px;
}
.pagination .nav-links .page-numbers li a {
	display: block;
	padding: 10px 15px;
	color: var(--text_color);
	border: 1px solid var(--keycolor);
}
.pagination .nav-links .page-numbers li span {
	display: block;
	padding: 10px 15px;
	color: var(--white);
	border: 1px solid var(--keycolor);
	background-color: var(--keycolor);
}

.pagination .nav-links .page-numbers.dots{
	color: var(--text_color);
	border: unset;
	background-color: unset;
}


.column_blog.detail #blog_content h2.title {
	margin-bottom: 20px;
	font-size: 24px;
	font-weight: bold;
}

.column_blog.detail #blog_content .date{
	color: #7F7F7F;
	margin-bottom: 14px;
}ß

.column_blog.detail #blog_content .date span{
	padding: 4px 8px;
	font-weight: normal;
	color: var(--white);
	font-size: 14px;
	background-color: var(--keycolor);
}

.column_blog.detail #blog_content .img_box{
	margin-bottom: 40px;
}

.column_blog.detail #blog_content .content_box {
	margin-bottom: 40px;
}

.column_blog.detail #blog_content .content_box p { line-height: 1.6; padding-bottom: 20px; }

.column_blog.detail #blog_content .content_box h1 {
	margin-bottom: 12px;
	line-height: 36px;
	font-size: 32px;
	font-family: var(--font-ttl);
	font-weight: bold;
	margin-bottom: 1.0em;
}

.column_blog.detail #blog_content .content_box h2 {
	margin-top: 30px;
	padding: 5px 0 5px 10px;
	line-height: 36px;
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 1.0em;
	border-left: 3px solid var(--keycolor);
	color: var(--text_color);
}
.column_blog.detail #blog_content .content_box h3{
	margin-top: 30px;
	padding: 10px 16px;
	line-height: 36px;
	font-size: 20px;
	font-weight: bold;
	color: var(--white);
	margin-bottom: 1.0em;
	background-color: var(--keycolor);
}
.column_blog.detail #blog_content .content_box h4 {
	margin-top: 30px;
	padding: 10px 5px;
	line-height: 36px;
	font-size: 18px;
	font-weight: bold;margin-bottom: 1.0em;
	border-bottom: 1px solid var(--keycolor);
}
.column_blog.detail #blog_content .content_box h5 { line-height: 36px; font-size: 16px; font-weight: bold; margin-bottom: 1.0em;  }
.column_blog.detail #blog_content .content_box h6 { font-size: 14px; font-weight: bold; margin-bottom: 1.0em;  }
.column_blog.detail #blog_content .content_box figure{ margin-bottom: 20px; display: flex; justify-content: space-between; }
.column_blog.detail #blog_content .content_box figure img{ max-width: 100%; }

.column_blog.list #blog_content {
	
}
.column_blog.list #blog_content > ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	row-gap: 50px;
}
.column_blog.list #blog_content > ul > li {
	width: 48%;
	position: relative;
}
.column_blog.list .works_blog_content > ul > li{
	width: 32%;
}
.column_blog.list .works_blog_content > ul::after{
	content: "";
	display: block;
	width: 32%;
}
.column_blog.list #blog_content > ul > li:last-child {
	margin-bottom: 0px;
}
.column_blog.list #blog_content > ul > li > a {
	color: var(--text_color);
}
.column_blog.list #blog_content > ul > li > a .title{
	font-weight: bold;
}
.column_blog.list #blog_content > ul > li > a .imgbox {
	position: relative;
	
}
.column_blog.list #blog_content > ul > li > a .imgbox img {
	width: 100%;
	height: auto;
	object-fit: cover;
	object-position: center;
	aspect-ratio: 16/10;
}
.column_blog.list #blog_content > ul > li > a .textbox {
}

@media screen and ( max-width:980px) {
	.blog_page_link ul li{
		width: 48%;
	}

	.blog_page_link .inner ul{
		flex-wrap: wrap;
		row-gap: 20px;
	}

	.blog_page_link ul li a{
		font-size: 20px;
		row-gap: 0;
	}
}

@media screen and ( max-width:768px ) {
	.blog_page_link .inner ul{
		padding-top: 20px;
	}

	.column_blog.detail #blog_content h2.title {
		font-size: 1.8rem;
		line-height: 1.6;
	}

	.column_blog.list #blog_content > ul > li > a {
		flex-direction: column;
		font-size: 1.4rem;
	}
	.column_blog.list #blog_content > ul > li > a .imgbox {
		width: 100%;
	}
	.column_blog.list #blog_content > ul > li > a .imgbox img {
		max-width: 640px;
	}
	.column_blog.list #blog_content > ul > li > a .textbox {
		width: 100%;
	}

	.column_blog.detail #blog_content .content_box figure{
		flex-direction: column;
	}
	.column_blog.detail #blog_content .content_box figure img{
		width: 100%;
	}
}

.column_blog.list #blog_content > ul > li .textbox_date_cate {
	margin-bottom: 4px;
}

.column_blog.list #blog_content > ul > li > a .textbox .date {
	color: #7F7F7F;
	display: inline-block;
	letter-spacing: 0.1rem;
}

.column_blog.list #blog_content > ul > li > a .textbox .date .blog_category{
	display: block;
	padding: 0 8px;
	font-size: 12px;
	letter-spacing: 0.05rem;
	color: var(--keycolor-white);
	background-color: var(--keycolor);
}

.column_blog.list #blog_content > ul > li > a .textbox .title {

}
@media screen and ( max-width:768px ) {
	.column_blog.list #blog_content > ul > li > a .textbox .title {
	}
	.column_blog.list #blog_content > ul > li > a .textbox {
	}

	.blog_page_link .inner ul{
		margin-bottom: 40px;
	}

}


@media screen and ( max-width:480px ){
	.column_blog.list #blog_content > ul > li > a .textbox .date {
		flex-direction: column;
		align-items: self-start;
	}

	.blog_page_link ul li a{
		font-size: 18px;
		row-gap: 0;
	}

	.blog_page_link ul li a span{
		font-size: 14px;
	}
}

#sidebar .side_box .cat_list{
	position: relative;
}

#sidebar .side_box .cat_list::before{
	content: "";
	width: 1px;
	height: calc(100% - 50px);
	background-color: #E59751;
	position: absolute;
	bottom: 19px;
	left: 8px;
}

#sidebar .side_box .cat_list li:not(:first-of-type){
	padding-left: 24px;
	position: relative;
}

#sidebar .side_box .cat_list li:not(:first-of-type)::before{
	content: "";
	width: 10px;
	height: 1px;
	background-color: #E59751;
	position: absolute;
	top: 50%;
	left: 8px;
	transform: translateY(-50%);
}

#sidebar h3 {
	margin-bottom: 18px;
	padding-bottom: 10px;
	font-size: 20px;
	font-weight: bold;
	color: var(--keycolor);
	letter-spacing: 0.1rem;
	border-bottom: 1px solid #C1C1C1;
}


#sidebar ul li {
	border-bottom: 1px solid #ccc;
}

#sidebar ul li a {
	padding: 14px 0;
	position:relative;
	display: block;
	font-size: 14px;
	font-weight: bold;
}

#sidebar .box2 ul li{
	line-height: 1rem;
}

#sidebar .box2 ul li a{
	font-size: 16px;
	color: var(--text_color);
}

#sidebar .box2 ul li a:not(:last-of-type){
	margin-bottom: 14px;
}

#sidebar ul li a .date{
	color: #c1c1c1;
	font-weight: normal;
}

#sidebar ul li a .title{
	font-size: 1.4rem;
	color: var(--text_color);
}

#sidebar .box2 ul li{
	border-bottom: none;
}



.prev_next_link {
	display: flex;
	justify-content: space-between;
	padding: 50px 0 80px;
}

.prev_next_link a {
	display: block;
	width: 220px;
	box-sizing: border-box;
	padding: 20px ;
	font-size: 1.8rem;
	font-weight: bold;
	color: var(--keycolor);
	text-align: center;
	border: 1px solid var(--keycolor);
	border-radius: 50px;
	transition: all 0.3s;
	position: relative;
	transition: all 0.3s ease-in-out;
}

.prev_next_link a:hover{
	color: var(--white);
	border: 1px solid var(--text_color);
	background-color: var(--text_color);
	transition: all 0.3s ease-in-out;
}

.prev_next_link .link_list{
	color: var(--keycolor);
}

.prev_next_link .back_page,
.prev_next_link .next_page {
	width: 220px;
}

.prev_next_link .back_page a::before,
.prev_next_link .next_page a::before
{
	content: "";
	width: 24px;
	height: 16px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.prev_next_link .back_page a::before{
	background: url(../img/page_back.svg) center / cover no-repeat;
	left: 20px;
}

.prev_next_link .next_page a::before{
	background: url(../img/page_next.svg) center / cover no-repeat;
	right: 20px;
}


.prev_next_link .back_page a:hover::before{
	background: url(../img/page_back_hover.svg) center / cover no-repeat;
}

.prev_next_link .next_page a:hover::before{
	background: url(../img/page_next_hover.svg) center / cover no-repeat;
}

/* シングルページカテゴリー */

@media screen and ( max-width:768px ) {
	#sidebar{
	margin-bottom: 40px;
	}

	#sidebar .side_box {
		padding-bottom: 10px;
		border-bottom: 1px solid #C1C1C1;
	}

	#sidebar h3{
		font-size: 18px;
		margin-bottom: 4px;
		padding-bottom: 2px;
	}

	#sidebar ul li a{
		padding: 10px 0;
	}

	#sidebar .box2 ul li a{
		font-size: 14px;
	}
	#sidebar .side_box .cat_list::before{
		height: calc(100% - 44px);
		bottom: 15px;
	}
	.prev_next_link {
		flex-wrap: wrap;
	}
	
	.prev_next_link a {
		display: block;
		margin-inline: auto;
	}
	.prev_next_link > div:nth-child(1) {
		order: 1;
		width: 48%;
	}
	.prev_next_link > div:nth-child(2) {
		order: 3;
		width: fit-content;
		margin: 20px auto 0;
	}
	.prev_next_link > div:nth-child(3) {
		order: 2;
		width: 48%;
	}
}

@media screen and ( max-width:500px ){
	.prev_next_link {
		flex-direction: column;
		row-gap: 10px;
	}
	.prev_next_link a {
		margin-inline: auto;
	}
	.prev_next_link > div:nth-child(1) {
		order: 1;
		width: 100%;
	}
	.prev_next_link > div:nth-child(2) {
		order: 3;
		width: 100%;
		margin-top: 0px;
	}
	.prev_next_link > div:nth-child(3) {
		order: 2;
		width: 100%;
	}

}

.single .pankuzu { margin-bottom: 50px; }


.content_title.type3 { margin-bottom: 0; }


/**** 一覧ページ ****/
#archive{
	margin-bottom: 80px;
}

