.key-visual {
    max-height: 216px;
    max-width: 560px;
    display: flex;
    justify-content: center;
    margin: 32px 16px;
    border-radius: 8px;
    background-color: #000000;
}

.key-visual img {
    width: auto;
    opacity: 0.4;
}

.kv-text {
    width: 300px;
    height: 0;
    position: relative;
    top: -156px;
    left: calc(50% - 136px);
    color: #FFF;
    font-size: 28px;
    font-weight: 600;
    z-index: 1;
}

.menu-area {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 560px;
    margin-right: auto;
    margin-left: auto;
}

.menu-icon {
    display: flex;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid #E4E4E4;
    background-color: #FFF;
}

.menu-icon:hover {
    color: #212529;
}

@media screen and (min-width: 768px) {
    .menu-area {
        flex-direction: column;
    }
    
    .menu-icon {
        width: 560px;
        height: 120px;
        margin: 8px 0;
        justify-content: center;
        align-items: center;
    }

    .menu-icon span {
        margin-left: 16px;
    }
}

@media screen and (max-width: 767px) {
    .menu-area {
        flex-direction: row;
        justify-content: space-between;
        margin-left: 16px;
        margin-right: 16px;
    }
    
    .menu-icon {
        width: 160px;
        height: 160px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .menu-icon span {
        margin-top: 2rem;
    }

    .sp-mb-8 {
        margin-bottom: 16px;
    }
}
