
.archive {
	padding: 1rem 0 5rem;
	background-image: url("https://www.tknet.co.jp/wp/wp-content/themes/tknet/images/bg.webp");
	background-repeat: repeat;
	background-size: 1366px auto;
}
.archive-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 12rem 2rem;
}

.archive-title {
	margin: 0 0 5rem;
	font-size: 3rem;
	font-family: "sicselifgothice", sans-serif;
	font-weight: 400;
	font-style: normal;
	text-align: center;
	color: #094C1F;
	letter-spacing: 2px;
}

.archive-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.4rem;
    list-style: none;
    padding: 0;
}

.archive-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.archive-item:hover {
    transform: translateY(-4px);
}

.archive-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.archive-meta {
    padding: 1rem 1.6rem 0;
    font-size: 1.2rem;
    color: #666;
    display: flex;
    gap: 1rem;
}

.archive-item-title {
    font-size: 1.8rem;
    padding: 0.5rem 1.6rem 1rem;
}

.archive-excerpt {
    font-size: 1.4rem;
    padding: 0 1.6rem 1.6rem;
    color: #444;
}

.pagination {
    margin-top: 4rem;
    text-align: center;
}
