/* =================================
   Sponsorship Page
================================= */

/* ================================
   趣意書ボタン（色は変更しない）
================================= */
.dnbt {
    display: inline-block;
    padding: 15px 25px;
    font-size: 1.2rem;
    background: #E8EEAE;
    color: #000000;
    border: 1px solid #CCDB2A;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none; /* prevents underline */
}

.dnbt:hover {
    text-decoration: none; /* prevents hover underline */
    transform: translateY(-2px);
}


/* Center the button */
.button-wrap {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}


/* ================================
   Table Section Titles
================================= */
.table-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #ec3c71;
}


/* ================================
   Table Container
================================= */
.infotab {
    margin-top: 25px;
}


/* ================================
   Tables
================================= */
.sptab {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    background: #ffffff;
}

.sptab th,
.sptab td {
    border: 1px solid #ddd;
    padding: 12px 10px;
    text-align: center;
}

.sptab th {
    background-color: #fef0f4;
    color: #ec3c71;
    font-weight: 600;
}

.sptab tr:nth-child(even) td {
    background-color: #fafafa;
}


/* ================================
   Notes Styling
================================= */
.content-section p.mt-md {
    font-size: 0.95rem;
    color: #555;
}


/* ================================
   Responsive
================================= */
@media (max-width: 768px) {

    .dnbt {
        width: 100%;
        padding: 12px;
    }

    .sptab th,
    .sptab td {
        font-size: 0.85rem;
        padding: 10px 6px;
    }

    .sptab {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}