.column {
    background: url(../../images/new/wave-bg5.png) no-repeat;
    background-position: center bottom;
    background-size: 1920px;
    padding: 100px 0 223px;
}
.column-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1520px;
}
.column-cards {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 25px;
}
.column-card {
    background: #fff;
    border-radius: 30px;
    width: calc((100% - (25px * 2)) / 3);
}
.column-card a {
    display: block;
    height: 100%;
    padding: 16px 16px 82px;
    position: relative;
}
.column-card__image {
    border-radius: 30px;
    line-height: 0;
    overflow: hidden;
}
.column-card__text {
    padding: 25px 0 0;
}
.column-card__cat {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin: 0 0 10px;
}
.column-card__date {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 10px;
}
.column-card__ttl {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 10px;
}
.column-card__ex {
    font-size: 14px;
    font-weight: 500;
}
.column-card__btn {
    background: var(--main-theme-color);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 52px;
    margin: 35px auto 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 16px;
    width: calc(100% - 32px);
    max-width: 355px;
}
.column-card__btn::after {
    background: url(../../images/new/icon-solid-arrow-r-g.svg) no-repeat;
    background-position: center;
    background-size: 8px;
    background-color: #fff;
    border-radius: 50%;
    content: "";
    display: block;
    height: 28px;
    margin: auto;
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    width: 28px;
}
.column-card__btn p {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}
@media screen and (max-width: 968px) {
    .column-card {
        width: calc((100% - (25px * 1)) / 2);
    }
}
@media screen and (max-width: 768px) {
    .column-cards {
        gap: 20px;
    }
    .column-card {
        width: 100%;
    }
    .column-card__date {
        font-size: 18px;
    }
    .column-card__ttl {
        font-size: 18px;
    }
}