
/* CSS Document */
.archive main{
	padding: 200px 0 200px;
}
.archive-title{
	text-align: center;
	color: #cfaf74;
}
.archive-title h1{
	font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.13em;
}
.archive-title h1 + p{
	font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.25em;
}
.archive-title p.cate-info{
	width: 100%;
	max-width: 250px;
	text-align: center;
	padding: 0.75em 1em;
	margin: 15px auto 0;
	color: #ffffff;
	background-color: #cfaf74;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	font-size: 0.8rem;
	letter-spacing: 0.025em;
	line-height: 1.1em;
}
.archive-item-wrap{
	width: 90%;
	max-width: 1100px;
	margin: 60px auto 0;
	display: flex;
	flex-wrap: wrap;
}
article.archive-item{
	width: calc(100% / 3 - 30px);
	position: relative;
	padding-bottom: 8px;
	margin: 0px 15px;
}
article.archive-item:nth-of-type(n+4){
	margin-top: 60px;
}
article.archive-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 2px;
    background-color: #cfaf74;
    transition: .3s ease;
}
article.archive-item:hover::after{
    width: 100%;
}
article.archive-item a.cate-name{
	font-size: 0.8rem;
	letter-spacing: 0.025em;
	display:inline-block;
	width: auto;
	position: absolute;
	top: 26px;
	right: 0;
	z-index: 5;
	color: #ffffff;
	background-color: #cfaf74;
	padding: 0.75em 1em 0.75em 2em;
	-webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 15% 100%);
	clip-path: polygon(0 0, 100% 0%, 100% 100%, 15% 100%);
	transition: .3s ease;
}
article.archive-item a.cate-name:hover{
	color: #cfaf74;
	background-color: #ffffff;
}
article.archive-item p.date{
	font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.13em;
}
article.archive-item .archive-img{
	margin-top: 8px;
}
article.archive-item .archive-img img{
	width: 100%;
    height: 200px;
    object-fit: cover;
}
article.archive-item h2{
	font-size: 1.1rem;
    line-height: 1.3em;
    letter-spacing: 0.13em;
    text-align: justify;
    margin-top: 8px;
}
article.archive-item p.discription{
    font-size: 0.9rem;
    line-height: 1.6em;
    letter-spacing: 0.13em;
    margin-top: 8px;
    text-align: justify;
}
article.archive-item p.archive-more{
    color: #cfaf74;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.6em;
    letter-spacing: 0.13em;
    margin-top: 20px;
    text-align: right;
}

/*調整用*/
@media screen and (max-width:1000px) {
	
}

/*スマートフォン*/
@media screen and (max-width:780px) {
	.archive main{
		padding: 120px 0;
	}
	.archive-item-wrap{
		margin: 40px auto 0;
	}
	article.archive-item{
		width: 100%;
		margin: 0 auto;
	}
	article.archive-item:nth-of-type(n+2){
		margin-top: 40px;
	}
}