/**
 * Misconceptions Section Block Frontend Styles
 */

.will-misconceptions-section {
    margin-bottom: 0 !important;
}

.will-misconceptions-section img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.will-misconceptions-section img:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.will-misconceptions-section .bg-white {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.will-misconceptions-section .bg-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* pタグのマージンをリセット */
.will-misconceptions-section p {
    margin: 0;
}

