@charset "utf-8";
/*
Theme Name:		紅茶房ブログ SP
Description:	
Version:		1.0
License:		
License URI:	
Tags:	
*/

/* ---------------------------------
共通
--------------------------------- */
img {
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
}

/* ---------------------------------
アーカイブ
--------------------------------- */
.blog-archive {
	padding: 50px 15px;
}

.blog-archive__inner {
	width: 100%;
	margin: 0 auto;
}

/* ---------------------------------
パンくず
--------------------------------- */
.breadcrumb {
	margin-bottom: 25px;
	font-size: 12px;
}

.breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.breadcrumb__item {
	display: flex;
	align-items: center;
}

.breadcrumb__item:not(:last-child)::after {
	content: ">";
	margin-left: 6px;
	color: #999;
}

.breadcrumb__item a {
	color: #333;
	text-decoration: none;
}

/* ---------------------------------
一覧
--------------------------------- */
.blog-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 35px;
}

.blog-card {
	width: 100%;
}

.blog-card__thumb-link {
	display: block;
	overflow: hidden;
	border-radius: 8px;
	text-decoration: none;
}

.blog-card__thumb {
	height: 180px;
	
	overflow: hidden;
	
	box-sizing: border-box;
}

.blog-card__thumb img {
	display: block;
	width: 100%;
	height: 100% !important;
	object-fit: cover;
}

.blog-card__body {
	padding-top: 15px;
}

.blog-card__date {
	display: block;
	font-size: 12px;
	color: #888;
	margin-bottom: 8px;
}

.blog-card__cat {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 5px 12px;
	font-size: 11px;
	line-height: 1;
	background: #f4f4f4;
	color: #333;
	text-decoration: none;
	border-radius: 999px;
	margin-bottom: 10px;
}

.blog-card__title {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.6;
	margin: 0 0 10px;
}

.blog-card__title a {
	color: inherit;
	text-decoration: none;
}

.blog-card__excerpt {
	font-size: 13px;
	line-height: 1.8;
	color: #555;
	margin: 0;
}

/* ---------------------------------
ページャー
--------------------------------- */
.pagination {
	margin-top: 40px;
}

.pagination__list {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.pagination__item a,
.pagination__item span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 10px;
	border: 1px solid #ddd;
	background: #fff;
	color: #333;
	text-decoration: none;
	font-size: 13px;
	box-sizing: border-box;
}

.pagination__item .current {
	background: #333;
	color: #fff;
	border-color: #333;
}

/* ---------------------------------
記事なし
--------------------------------- */
.blog-archive__empty {
	text-align: center;
	padding: 60px 0;
	font-size: 14px;
}

/* ---------------------------------
シングル
--------------------------------- */
.blog-single {
	padding: 50px 15px;
}

.blog-single__inner {
	width: 100%;
	margin: 0 auto;
}

.single-post {
	width: 100%;
}

.single-post__date {
	display: block;
	font-size: 12px;
	color: #888;
	margin-bottom: 8px;
}

.single-post__cat {
	display: inline-block;
	padding: 5px 12px;
	border-radius: 999px;
	background: #f4f4f4;
	font-size: 11px;
	margin-bottom: 12px;
}

.single-post__title {
	font-size: 26px;
	font-weight: 700;
	line-height: 1.5;
	margin: 0 0 25px;
}

.single-post__thumbnail {
	margin-bottom: 25px;
}

.single-post__thumbnail img {
	display: block;
	width: 100%;
	height: auto;
}

.single-post__content {
	font-size: 14px;
	line-height: 2;
	color: #333;
}

.single-post__content h2 {
	font-size: 22px;
	line-height: 1.6;
	margin: 40px 0 15px;
}

.single-post__content h3 {
	font-size: 18px;
	line-height: 1.6;
	margin: 30px 0 10px;
}

.single-post__content p {
	margin: 0 0 1.6em;
}

.single-post__content ul,
.single-post__content ol {
	margin: 0 0 1.6em 1.4em;
	padding: 0;
}

.single-post__content li {
	margin-bottom: .5em;
}

.single-post__content img {
	display: block;
	max-width: 100%;
	height: auto;
}

.single-post__pager {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-top: 50px;
	padding-top: 25px;
	border-top: 1px solid #ddd;
}

.single-post__pager-prev,
.single-post__pager-next,
.single-post__pager-archive {
	width: 100%;
	text-align: center;
}

.single-post__pager a {
	color: inherit;
	text-decoration: none;
}

.single-post__pager-archive a {
	display: block;
	padding: 12px;
	border: 1px solid #ddd;
	text-decoration: none;
}





.blog-category-nav {
	margin: 30px 0 40px;
	padding: 20px;
	background: #f8f4ec;
	border-radius: 8px;
}

.blog-category-nav__lead {
	margin: 0 0 12px;
	font-size: 15px;
	font-weight: bold;
	color: #5a3b20;
}

.blog-category-nav__list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.blog-category-nav__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 18px;
	border: 1px solid #8b5a2b;
	border-radius: 999px;
	background: #fff;
	color: #5a3b20;
	font-size: 14px;
	text-decoration: none;
	transition: 0.3s;
}

.blog-category-nav__link:hover {
	background: #8b5a2b;
	color: #fff;
}



