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

/* ---------- Common Sections ---------- */
.page-section {
    margin-bottom: 2.5em;
}

.section-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 0.8em;
    color: #F72C5B;
    text-align: center;
}

.section-text {
    font-size: 1em;
    line-height: 1.6;
    text-align: center;
}

.center-button {
    display: flex;
    justify-content: center;
    margin-top: 1.5em;
}



/* ==============================
   Sponsorship Table
============================== */

.sponsorship-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-top: 2em;
}

.sponsorship-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    font-size: 1em;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.sponsorship-table thead {
    background-color: #F72C5B;
    color: white;
}

.sponsorship-table th,
.sponsorship-table td {
    border: 1px solid #ddd;
    padding: 1em;
    text-align: left;
    vertical-align: top;
}

.sponsorship-table th {
    font-weight: 600;
}

.sponsorship-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.sponsorship-table tbody tr:hover {
    background-color: #fff5f8;
}

@media (max-width: 600px) {
    .sponsorship-table {
        font-size: 0.9em;
        min-width: 100%;
    }

    .sponsorship-table-wrapper {
        border: 1px solid #eee;
        border-radius: 6px;
    }

    .sponsorship-table th,
    .sponsorship-table td {
        padding: 0.7em;
    }
}

/* ==============================
   Sponsorship Details (Accordion)
============================== */

.sponsorship-details-section {
    margin-top: 3em;
}

.sponsorship-list {
    list-style: none;
    padding: 0;
}

.sponsorship-item {
    background: #f9f9f9;
    color: #f10139;
    border: 1px solid #ddd;
    padding: 1em 2em;
    cursor: pointer;
    border-radius: 6px;
    font-weight: bold;
    position: relative;
    transition: background 0.3s ease;
}

.sponsorship-item::before {
    content: "■";
    padding-right: 1em;
    color: #bd0058;
}

.sponsorship-detail {
    display: none;
    font-weight: normal;
    font-size: 0.95em;
    line-height: 1.6;
    border-top: 1px solid #eee;
}

/* ==============================
   Morning Session / Detail Blocks
============================== */

.morning-session-section {
    max-width: 960px;
    margin: 1em auto;
    padding: 2em 2.5em;
    border-radius: 12px;
    font-family: 'Noto Sans JP', sans-serif;
    color: #4a4a4a;
}

.ms-title {
    font-size: 1.8em;
    color: #f72c5b;
    font-weight: 700;
    margin-bottom: 0.5em;
    letter-spacing: 0.05em;
}

.ms-content {
    font-size: 1em;
    line-height: 1.7;
}

.ms-list {
    padding-left: 1.3em;
    margin: 0;
}

.ms-list>li {
    list-style: none;
    margin-bottom: 1.2em;
}

.ms-list strong {
    color: #c51c48;
    font-weight: 600;
}

.ms-list a {
    color: #f72c5b;
    text-decoration: underline;
}

.ms-list a:hover {
    color: #c51c48;
}

/* ==============================
   Tables inside Details
============================== */

.ms-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 14px;
}

.ms-table th,
.ms-table td {
    border: 1px solid #ccc;
    padding: 8px 12px;
}

.ms-table thead {
    background-color: #f5f5f5;
    font-weight: bold;
}

.ms-table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

/* ==============================
   Apply Buttons (ORIGINAL)
============================== */

.morning-apply-button {
    margin-top: 1em;
}

.morning-apply-button a {
    color: white;
    text-decoration: none;
}




/* ==============================
   Application Banner
============================== */

.moushikomi {
    text-align: center;
    padding: 1em;
    color: white;
    background: linear-gradient(120deg, #f98ca5, #f72c5b, #ff6b90, #f98ca5);
    background-size: 400% 400%;
    animation: movingGradient 5s ease infinite;
}

@keyframes movingGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.moushikomi p {
    font-size: 1.5rem;
    font-weight: bold;
    padding: 20px;
}

.moushikomi a {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.8em 1.6em;
    font-size: 1.3em;
    border-radius: 12px;
    background-color: white;
    color: #F72C5B;
    border: 2px solid #F72C5B;
    text-decoration: none;
    font-family: 'Noto Sans JP', sans-serif;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.moushikomi a:hover {
    background-color: #f98ca5;
    color: white;
    border-color: white;
    transform: translateY(-2px);
}

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