#feature .icon {
    width: 15%;
    z-index: 5;
}
#feature-first {
    position: relative;
}
#feature-first .icon {
    position: absolute;
    right: -5%;
    bottom: 0;
}
#feature-first .main-block {
    display: grid;
    grid-template-columns: repeat(2, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 20px;
}
#feature-first .item {
    width: 100%;
    display: flex;
    flex-direction: column;
}
#feature-first .item .ttl {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#feature-first .item .txt {
    width: 11.6%;
    margin-bottom: 5px;
}
#feature-first .item:first-child .num {
    width: 16.8%;
}
#feature-first .item .num {
    width: 20.8%;
}
#feature-first .item .card {
    width: 100%;
    border-radius: 30px;
    background-color: #fff;
    padding: 65px 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
#feature-first .item h2 {
    text-align: center;
    font-weight: bold;
    font-size: 24px;
    line-height: 2.1;
    margin-bottom: 10px;
}
#feature-first .item p {
    font-size: 16px;
    line-height: 2.7;
    margin-bottom: 45px;
}
#feature-first .item p span {
    color: #C22F4D;
    font-weight: bold;
}
#feature-first .item .card img {
    border-radius: 30px;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background-color: #EEE;
}
@media screen and (max-width: 768px) {
    #feature .icon {
        width: 15%;
        z-index: 5;
    }
    #feature-first {
        position: relative;
    }
    #feature-first .icon {
        width: 25%;
        position: absolute;
        right: -35px;
        bottom: -55px;
    }
    #feature-first .main-block {
        grid-template-columns: repeat(1, minmax(100%, 1fr));
        gap: 50px;
        margin-top: 0;
    }
    #feature-first .item .txt {
        width: 11.6%;
        margin-bottom: 5px;
    }
    #feature-first .item:first-child .num {
        width: 16.8%;
    }
    #feature-first .item .num {
        position: relative;
        z-index: 5;
        width: 20.8%;
        margin-bottom: -5px;
    }
    #feature-first .item .card {
        border-radius: 24px;
        padding: 35px 20px;
        height: 100%;
    }
    #feature-first .item h2 {
        font-size: 16px; /* 修正済み */
        line-height: 1.9;
        margin-bottom: 10px;
    }
    #feature-first .item p {
        font-size: 14px; /* 修正済み */
        line-height: 2.1;
        margin-bottom: 20px;
    }
    #feature-first .item .card img {
        border-radius: 25px;
    }
}
