body {
    background-color: unset;
    background-image: url('../images/message-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.main {
    padding: 202px 0 120px;
}

.main__container {
    width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
}

.message__content {
    width: 1080px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    row-gap: 64px;
}

.message__item {
    width: 344px;
    height: 234px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url('../images/message-item-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.message__item-text {
    color: white;
    font-size: 32px;
    font-weight: 500;
}

/*
.message__item {
    width: 344px;
    padding: 24px 68px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    border: 1px solid #bababa;
    background-color: #32345b;
}

.message__item-image {
    width: 200px;
    height: 80px;
}

.message__item-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0;
}

.message__item-button {
    width: 208px;
    height: 42px;
    border: 1px solid white;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0;
    cursor: pointer;
}
*/

@media (max-width: 1440px) {
    .main {
        padding: 14.028vw 0 8.333vw;
    }
    
    .main__container {
        width: 100%;
        margin: 0 auto;
        gap: 4.444vw;
    }
    
    .message__content {
        width: 75vw;
        margin: 0 auto;
        gap: 1.667vw;
        row-gap: 4.444vw;
    }
    
    .message__item {
        width: 23.889vw;
        height: 16.25vw;
    }

    .message__item-text {
        font-size: 2.222vw;
    }


    /*
    .message__item {
        width: 23.889vw;
        padding: 1.667vw 4.722vw;
        gap: 1.111vw;
    }
    
    .message__item-image {
        width: 13.889vw;
        height: 5.556vw;
    }
    
    .message__item-text {
        font-size: 1.389vw;
    }
    
    .message__item-button {
        width: 14.444vw;
        height: 2.917vw;
        font-size: 1.111vw;
    }
    */


}

@media (max-width: 768px) {

    body {
        background-color: unset;
        background-image: url('../images/sp-message-bg.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .main {
        padding: 32.267vw 0 17.067vw;
    }
    
    .main__container {
        width: 89.4vw;
        margin: 0 auto;
        gap: 6.4vw;
    }
    
    .message__content {
        width: 89.4vw;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 1.4vw;
        row-gap: 2.133vw;
    }

    .message__item {
        width: 44vw;
        height: 40.533vw;
        background-image: url('../images/sp-message-item-bg.png');
    }

    .message__item-text {
        font-size: 4.267vw;
    }
    
    /*
    .message__item {
        width: 43.867vw;
        padding: 3.2vw 3.333vw;
        gap: 4.267vw;
    }
    
    .message__item-image {
        width: 26.667vw;
        height: 10.667vw;
    }
    
    .message__item-text {
        font-size: 4.267vw;
    }
    
    .message__item-button {
        width: 37.333vw;
        height: 8vw;
        font-size: 3.733vw;
    }
    */
}