@charset "UTF-8";

.product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 24px;
    margin-top: 80px;
}

.product_item {
    display: flex;
    flex-direction: column;
    padding: 16px 24px 40px;
    border: 1px solid var(--c-border);
    background: #f7f2d9;
}

.product_ttl {
    margin-bottom: 12px;
    font-weight: 550;
    font-size: 28px;
    line-height: 1.5;
}

.product_img {
}

.product_text {
    margin-top: 16px;
    margin-bottom: auto;
    font-size: 18px;
}

.product_contact {
    margin-top: 32px;
    text-align: center;
}

.product_contact > a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 240px;
    padding: 8px 12px;
    background: var(--c-blue-light);
    color: var(--c-white);
    font-weight: 550;
    font-size: 18px;
}

@media screen and (max-width: 1251.98px) {
    .product {
        margin-top: 60px;
    }

    .product_item {
        padding: 16px 16px 32px;
    }

    .product_ttl {
        font-size: 22px;
    }

    .product_img {
    }

    .product_text {
        font-size: 15px;
    }

    .product_contact {
    }

    .product_contact > a {
    }
}

@media screen and (max-width: 767.98px) {
    .product {
    grid-template-columns: 1fr;
    gap: 24px;
    }

    .product_item {
    }

    .product_ttl {
    font-size: 20px;
    }

    .product_img {
    }

    .product_text {
    }

    .product_contact {
    }

    .product_contact > a {
    font-size: 16px;
    max-width: 100%;
    }
}
