@charset "UTF-8";

.info-section {
    /* max-width: 1200px; */
    margin: 0 auto;
    text-align: center;
}
.info-list {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 50px;
}
.info-item {
    flex: 1 1 calc(20% - 20px);
    display: flex;
    flex-direction: column;
}
.info-title,
.info-text {
    font-size: 15px;
}
.info-title {
    min-height: 40px;
}
.info-text {
    font-size: 15px;
    line-height: 1.6;
    min-height: 60px; 
    display: inline-block;
}
.info-img {
    width: 100%;
    /* display: flex;
    align-items: center;
    justify-content: center; */
    margin-bottom: 10px;
}
.info-img img {
    width: 100%;
}
.info-itembox {
    padding: 10px 5px;
    width: 100%;
    color: #333; 
    flex: 1;
    flex-direction: column; 
    justify-content: center; 
    text-align: center;
    line-height: 1.5;
    background-color: #fff;
}
.more-link {
    margin-top: 10px;
    text-align: right;
}
.more-link a {  
    text-decoration: underline;
    color: #56aad1;
}
.more-link a:hover {
    text-decoration: underline;
    background-color: #56aad1;
    color: #fff;
}

@media (max-width: 768px) {
    .info-list {
        flex-direction: column;
    }
    .info-item {
        flex: 1 1 100%;
        margin-bottom: 70px;
    }
    .info-item:nth-child(2),
    .info-item:nth-child(3),
    .info-item:nth-child(4) {
        margin-bottom: 50px;
    }
    .info-item:last-child {
        margin-bottom: 0;
    }
    .more-link {
        font-size: 12px;
        text-align: center;
        margin-top: 0;
    }
    .info-title {
        font-size: 18px;
    }

}