/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 10 2026 | 13:32:25 */
/* ===== 学校評価 年度リスト（横並び） ===== */
.eval-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
}
/* wpautop対策（入れ子ショートコードのbr無効化） */
.eval-list br {
    display: none;
}

.eval-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
background: #fff;
    border: 1.5px solid #9db8c8;
    border-radius: 8px;
    padding: 16px 20px;
   box-shadow: 0 4px 10px rgba(0,0,0,0.12);
    transition: box-shadow 0.2s, transform 0.2s;
}
.eval-row:hover {
    box-shadow: 0 8px 18px rgba(0,0,0,0.18);
    transform: translateY(-1px);
}

.eval-info {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
    min-width: 0;
}
.eval-year {
    font-size: 1.1em;
    font-weight: bold;
    color: #2c5f7a;
    white-space: nowrap;
}
.eval-title {
    font-size: 0.92em;
    color: #475569;
}

.eval-btn {
    flex-shrink: 0;
    background: #5c8da8;
    color: #fff !important;
    text-decoration: none !important;
    padding: 9px 22px;
    border-radius: 8px;
    font-size: 0.9em;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}
.eval-btn:hover {
    background: #3b6f8a;
}

/* スマホ：縦積みに */
@media (max-width: 575px) {
    .eval-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .eval-btn {
        width: 100%;
        text-align: center;
    }
}

