/* タイトルのスタイル */

.goukaku-title {
    font-size: 32px;
    color: #BD0013;
    font-weight: bold;
    letter-spacing: 6px;
    text-align: center;
}


/* 赤線のスタイル */

.goukaku-section .red-line {
    display: block;
    width: 100px;
    height: 2px;
    background-color: #BD0013;
    margin: 40px auto;
}


/* Container for the list */

.acceptance-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    /* Space between items */
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
    justify-content: space-around;
    /* Space around items */
}


/* Each item in the list */

.acceptance-item {
    flex: 1 1 calc(33.333% - 20px);
    /* Adjusted to ensure proper centering */
    box-sizing: border-box;
    padding: 2px;
    max-width: 230px;
    /* Added to prevent items from stretching too wide */
}


/* Responsive adjustments */

@media (max-width: 1024px) {
    .acceptance-item {
        flex: 1 1 calc(50% - 20px);
        /* Adjusted for 2 columns */
    }
}

@media (max-width: 768px) {
    .acceptance-item {
        flex: 1 1 100%;
        /* 1 column on small screens */
    }
}


/* Align text inside each item */

.acceptance-item p {
    margin: 0;
    text-align: left;
    width: 100%;
}