@charset "utf=8";

.blog-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
}

.blog-main {
	width: 70%;
}

.blog-side {
	width: 25%;
}

/* ==========================================
blog
========================================== */

.blog-item {
    border-bottom: 1px solid #E6E6E6;
}

.blog-link {
    display: block;
    padding: 3rem 2rem;
    position: relative;
    transition: .3s;
}

.blog-link:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 2rem;
    transform: translateY(-50%);
	width: 16px;
	height: 7px;
	background: url(../../../../uploads/arrow_right.svg) no-repeat center / contain;
	z-index: 2;
}

/*.blog-item:last-child {
    border-bottom: 1px solid #E6E6E6;
}*/

.blog-item:first-child .blog-link {
    padding: 0 2rem 3rem
}

.blog-flex {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 96%;
}

.blog-date {
    font-family: var(--font-family01);
}

.blog-category {
    padding: 0 1rem;
    color: var(--fifth);
    background: var( --tertiary);
}

.blog-title {
    margin: 1.5rem 0 0;
    font-size: clamp(15px, 13.786px + 0.324vw, 20px);
    width: 97%;
}

.blog-link:hover {
    color: var(--fifth);
}

/* ==========================================
アーカイブ・カテゴリ
========================================== */

/* .archive-list,
.category-list {
	font-size: 1.8rem;
} */

.archive-list {
	margin: 1rem 0 0 1rem;
}

.archive-month-list {
    display: none;
	margin: 0 0 0 1rem;
}

.archive-list-year {
    cursor: pointer;
    position: relative;
    padding-right: 20px;
}

.archive-list-year:hover {
    text-decoration: underline;
}

.archive-list-year::after {
    content: "＋";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.archive-list-year.is-active::after {
    content: "－";
}

.archive-month-link:hover {
    text-decoration: underline;
}

.category-box {
    margin: 5rem 0 0;
    /* border: 0.1rem solid var(--primary);
    background: var(--white); */
}

.category-box:first-child {
    margin: 0;
}

.category-title {
    /* background-color: var(--primary); */
    /* color: #ffffff; */
    margin: 0;
    padding: 0 1rem 1rem;
    font-weight: bold;
    font-size: clamp(16px, 14.544px + 0.388vw, 22px);
    border-bottom: 1px solid #E6E6E6;
}

.category-list {
    margin: 1rem 0 0 1rem;
}

.category-list-link:hover {
    text-decoration: underline;
}


/* ==========================================
詳細
========================================== */

.blog-detail {
    background: var(--white);
    border-top: solid 5px var(--primary);
    box-shadow: 0 0.2rem 0.5rem rgb(0 0 0 / 16%);
    padding: 6rem 5rem;
}

.blog-detail-title {
    border-bottom: solid 1px #E6E6E6;
    padding: 0 0 1.5rem;
    margin: 1rem 0 0;
}

.blog-detail-category {
	word-break: unset !important;
    overflow: unset !important;
    text-overflow: unset !important;
    white-space: unset !important;
}

.blog-detail-img {
    text-align: center;
    margin: 3rem 0 0;
}

.blog-detail-content {
    margin: 3rem 0 0;
}

.blog-detail-btn-box {
    text-align: center;
    margin: 6rem auto 0;
}

.blog-detail-btn {
    width: 24.2rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border: 1px solid rgba(51, 50, 48, .3);
    border-radius: 100vmax;
	font-size: 16px;
    margin: 3rem auto 0;
	transition: .3s;
}

.blog-detail-btn:hover {
	background: rgba(51, 50, 48, .05);
}

/* ==========================================
ページャー
========================================== */

.wp-pagenavi {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
}

.pagination-page {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 4rem;
	height: 4rem;
	border-style: solid;
	border-width: 1px;
	border-radius: 50%;
	text-align: center;
}

.pagination-current-color {
	background: var(--primary);
	color: var(--white);
}

.pagination-page-color {
	border-color: var(--primary);
	color: var(--primary);
}

.pagination-page-color:hover {
	background: var(--primary);
	color: var(--white);
}

.pagination-first, .pagination-last {
	font-size: 1.2rem;
	border-style: solid;
	border-width: 1px;
	padding: 0.4rem 0.5rem 0.2rem;
}

.pagination-first-color, .pagination-last-color {
	border-color: var(--primary);
	color: var(--primary);
}

.pagination-first-color:hover, .pagination-last-color:hover {
	background: var(--primary);
	color: var(--white);
}


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 768px) {

.blog-row {
    flex-direction: column;
    gap: 3rem;
}

.blog-main {
	width: 100%;
}

.blog-side {
	width: 100%;
}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 576px) {


.blog-detail {
    padding: 3rem 2rem;
}


}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */