/*----------------------------------
*
*  アーカイブ　テンプレート
*
*-----------------------------------*/
.archive #main{
    background: var(--mpbr-all-bg-color);
}
#post-archive{
    max-width: 1100px;
	width: 90vw;
    margin: auto;
    padding: 10rem 0;
}
.archive-title{
    font-size: 2rem;
    border-left: 5px solid var(--mpbr-all-color);
    padding-left: 3.5rem;
    padding-bottom: 0.5rem;
    margin: 0;
}
.archive-title span{
    display: block;
    color: var(--mpbr-all-color);
    font-size: 4.8rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.3rem;
    margin: 0 auto 1rem;
}
.archive-contents .post-loop{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1.81818181818%;
	row-gap: 2rem;
    margin-top: 8rem;
}
.archive-contents .post-box{
    width: 32.1212121212%;
    background: #fff;
    padding: 2rem;
}
.archive-contents .post-box01{
	display: flex;
    align-items: center;
}
.archive-contents .post-box01 .date{
	margin: 0;
    font-size: 1.4rem;
}
.archive-contents .post-box01 .cat{
    font-size: 1.2rem;
    line-height: 1.3;
    border: 1px solid;
    color: var(--mpbr-all-color);
    padding: 1px 5px 3px;
    margin: 0 0 0 10px;
}
.archive-contents .post-box02 h2{
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.3;
    margin: 1rem 0;
}
.archive-contents .post-box02 .excerpt{
    text-align: justify !important;
    font-size: 1.4rem;
    line-height: 1.75;
    max-height: calc(1.75em * 3);
    color: #949996;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    margin: 1rem 0;
}
.archive-contents .post-box03 .more-btn{
    margin: 0;
}
.archive-contents .post-box03 .more-btn a{
    position: relative;
    display: block;
    border: none;
    border-radius: 0;
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: 0.1rem;
    text-align: center;
    background: var(--mpbr-all-sub-color);
    color: #fff;
    width: 100%;
    padding: 1rem 1rem 1.2rem 0;
}
.archive-contents .post-box03 .more-btn a:hover{
    background: var(--mpbr-all-sub-hover-color);
    color: #fff;
}
.archive-contents .post-box03 .more-btn a::before, 
.archive-contents .post-box03 .more-btn a::after {
    content: "";
    position: absolute;
    top: calc(50% - 0.5px);
    right: 20px;
    width: 11px;
    height: 1px;
    border-radius: 9999px;
    background-color: #ffffff;
    transform-origin: calc(100% - 0.5px) 50%;
}
.archive-contents .post-box03 .more-btn a::before {
    transform: rotate(48deg);
}
.archive-contents .post-box03 .more-btn a::after {
    transform: rotate(-48deg);
}


/********************************
window size
*********************************/
/** desktop large size **/
@media (min-width:1441px){
}
/** desktop size **/
@media only screen and (min-width: 1200px) and (max-width: 1440px) {
}
/** note size **/
@media only screen and (min-width: 992px) and (max-width: 1199px) {
}
/** pad size **/
@media only screen and (min-width: 768px) and (max-width: 991px) {
}
/** sp size **/
@media (max-width:767px){
.archive-title {
    font-size: 1.6rem;
    padding-left: 2.5rem;
}
.archive-title span {
    font-size: 3.6rem;
}
.archive-contents .post-loop {
    margin-top: 4rem;
}
.archive-contents .post-box {
    width: 100%;
}
}
/** pad & sp size **/
@media (max-width:991px){
	
	
	
}