/* blockname */
.archive {
    padding: 65px 0;
}
.archive-inner {
    margin: 0 auto;
    width: 85%;
    max-width: 1270px;
}
.archive-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.archive-card {
    background: #f1eee7;
    border: 2px solid #f1eee7;
    border-radius: 4px;
    padding: 25px;
}
.archive-card.no-bg {
    background: #fff;
}
.archive-card__image {
    height: 0;
    overflow: hidden;
    padding: 0 0 100%;
    position: relative;
    width: 100%;
}
.archive-card__image img {
    height: 100%;
    margin: auto;
    object-fit: cover;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
}
.archive-card__ttl {
    color: #8a6e20;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 14px;
    font-weight: bold;
    margin: 10px 0 0;
}
.archive-card__price {
    margin: 20px 0 0;
}
.archive-card__price .price-tag {
    background: #614d16;
    color: #fff;
    display: block;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 12px;
    margin: 0 0 10px;
    padding: 1px 20px 2px;
    width: 100%;
    max-width: max-content;
}
.archive-card__price .price {
    color:#614d16;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 13px;
    line-height:1.8;
    letter-spacing:1.5px;
}
.archive-card__txt {
    margin: 10px 0 0;
}
.archive-card__txt p {
    color: #808080;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 14px;
}

@media screen and (max-width: 968px) {}

@media screen and (max-width: 768px) {
.archive-inner {
    width: 100%;
}
.archive-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
}
.archive-card {
    background: #fff;
    border: 1px solid #f3f3f3;
    border-radius: 0px;
    padding: 10px 10px 40px;
}
.archive-card__ttl {
    color: #797979;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    text-decoration: none;
    text-align:center;
}
.archive-card__price .price-tag {
    background: none;
    color: #232525;
    display: block;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 12px;
    margin: 0 auto;
    padding: 1px 20px 2px;
    width: 100%;
    max-width: max-content;
}
.archive-card__price .price {
    color: #232525;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 12px;
    text-align:center;
}
.archive-card__txt p {
    text-align:center;
}


}