/* 導入事例 */

.catch {
     font-size: 1.8rem;
    color: #000;
    font-weight: bold; 
}

.wrapper2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
}

.card {
    display: flex;
    flex-direction: column;
    width: 30%;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 0;
    border-radius: 0.25rem;
    box-shadow: 0 10px 20px #ccc;
    color: #333;
    text-decoration: none;
    transition: 0.5s;
}

.card-image {
    width: 100%;
    object-fit: contain;
}

.card-box {
    padding: 0.5rem;
}

.card-title {
    margin-bottom: 0.1rem;
    font-size: 2.5rem;
    color: #006400;
    font-weight: bold;
    text-align: center;
}

.card-description {
    margin-bottom: 0.5rem;
    line-height: 1.0;
    text-align: center;
}

.card:hover {
    box-shadow: 0 10px 20px #999;
}