.section-guide .guide-item-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    text-decoration: none;
}

.section-guide .guide-item-img img {
    width: 100%;
    display: block;
}

.section-guide .guide-item-title {
    font-size: clamp(1.25rem, 2vw, 22px);
    color: var(--color2);
    text-align: center;
    transition: 0.3s;
}

.section-guide a.guide-item-wrap:hover .guide-item-title {
    color: var(--color1);
}