@charset "utf-8";

/* =============================================
共通
============================================= */
.cta--float__link.cta__button::after {
    display: none;
}

.header__logo {
    width: 220px;
}

@media (max-width: 1023px) {
    .header__logo {
        width: 190px;
    }

    .header__list-item {
        border-top: 1px dashed #ced3d3 !important;
    }
}

/* =============================================
アーカイブ
============================================= */
.post-type-archive-blog {
    background: #F2F5F5;
}

.cloudt-banner {
    display: block;
    margin: 60px auto 0;
    max-width: 1080px;
    border: solid 2px #33B1CD;
    width: 90vw;
}

.archive-wrapper {
    width: 90vw;
    max-width: 1080px;
    margin: 60px auto;
    background: #fff;
    padding: 40px;
}

.category-section:not(:last-of-type) {
    margin-bottom: 50px;
}

.category-heading {
    color: #33B1CD;
    margin-bottom: 30px;
    text-align: left;
    border: solid 6px #E0F2F7;
    padding: 14px;
    text-align: center;
    background: #E0F2F7;
}

.card-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
}

.card__link {
    text-align: left;
}

.card__image {
    margin-bottom: 12px;
}

.card__micro {
    background: #33B1CD;
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 6px;
}

.card__heading {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    margin: 0;
    text-align: left;
    color: #33B1CD;
}

.post-type-archive-blog .breadcrumbs>span {
    max-width: 1080px;
}

@media (max-width: 767px) {
    .cloudt-banner {
        margin-top: 80px;
    }

    .archive-wrapper {
        margin-top: 20px;
        padding: 20px;
    }

    .category-heading {
        font-size: 20px;
        padding: 10px;
    }

    .card-wrapper {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }

}